-- -- PostgreSQL database dump -- SET client_encoding = 'UTF8'; SET standard_conforming_strings = off; SET check_function_bodies = false; SET client_min_messages = warning; SET escape_string_warning = off; SET search_path = public, pg_catalog; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: auth_group; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE auth_group ( id integer NOT NULL, name character varying(80) NOT NULL ); ALTER TABLE public.auth_group OWNER TO mdorn; -- -- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE auth_group_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.auth_group_id_seq OWNER TO mdorn; -- -- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE auth_group_id_seq OWNED BY auth_group.id; -- -- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('auth_group_id_seq', 140, true); -- -- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE auth_group_permissions ( id integer NOT NULL, group_id integer NOT NULL, permission_id integer NOT NULL ); ALTER TABLE public.auth_group_permissions OWNER TO mdorn; -- -- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE auth_group_permissions_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.auth_group_permissions_id_seq OWNER TO mdorn; -- -- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE auth_group_permissions_id_seq OWNED BY auth_group_permissions.id; -- -- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('auth_group_permissions_id_seq', 1, false); -- -- Name: auth_message; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE auth_message ( id integer NOT NULL, user_id integer NOT NULL, message text NOT NULL ); ALTER TABLE public.auth_message OWNER TO mdorn; -- -- Name: auth_message_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE auth_message_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.auth_message_id_seq OWNER TO mdorn; -- -- Name: auth_message_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE auth_message_id_seq OWNED BY auth_message.id; -- -- Name: auth_message_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('auth_message_id_seq', 4960, true); -- -- Name: auth_permission; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE auth_permission ( id integer NOT NULL, name character varying(50) NOT NULL, content_type_id integer NOT NULL, codename character varying(100) NOT NULL ); ALTER TABLE public.auth_permission OWNER TO mdorn; -- -- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE auth_permission_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.auth_permission_id_seq OWNER TO mdorn; -- -- Name: auth_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE auth_permission_id_seq OWNED BY auth_permission.id; -- -- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('auth_permission_id_seq', 75, true); -- -- Name: auth_user; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE auth_user ( id integer NOT NULL, username character varying(30) NOT NULL, first_name character varying(30) NOT NULL, last_name character varying(30) NOT NULL, email character varying(75) NOT NULL, password character varying(128) NOT NULL, is_staff boolean NOT NULL, is_active boolean NOT NULL, is_superuser boolean NOT NULL, last_login timestamp with time zone NOT NULL, date_joined timestamp with time zone NOT NULL ); ALTER TABLE public.auth_user OWNER TO mdorn; -- -- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE auth_user_groups ( id integer NOT NULL, user_id integer NOT NULL, group_id integer NOT NULL ); ALTER TABLE public.auth_user_groups OWNER TO mdorn; -- -- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE auth_user_groups_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.auth_user_groups_id_seq OWNER TO mdorn; -- -- Name: auth_user_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE auth_user_groups_id_seq OWNED BY auth_user_groups.id; -- -- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('auth_user_groups_id_seq', 384, true); -- -- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE auth_user_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.auth_user_id_seq OWNER TO mdorn; -- -- Name: auth_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE auth_user_id_seq OWNED BY auth_user.id; -- -- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('auth_user_id_seq', 515, true); -- -- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE auth_user_user_permissions ( id integer NOT NULL, user_id integer NOT NULL, permission_id integer NOT NULL ); ALTER TABLE public.auth_user_user_permissions OWNER TO mdorn; -- -- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE auth_user_user_permissions_id_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.auth_user_user_permissions_id_seq OWNER TO mdorn; -- -- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE auth_user_user_permissions_id_seq OWNED BY auth_user_user_permissions.id; -- -- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('auth_user_user_permissions_id_seq', 1, false); -- -- Name: core_emailkey; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE core_emailkey ( email character varying(75) NOT NULL, key character varying(16) NOT NULL ); ALTER TABLE public.core_emailkey OWNER TO mdorn; -- -- Name: core_userprofile; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE core_userprofile ( id integer NOT NULL, user_id integer NOT NULL, shipping_id integer, billing_id integer ); ALTER TABLE public.core_userprofile OWNER TO mdorn; -- -- Name: core_userprofile_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE core_userprofile_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.core_userprofile_id_seq OWNER TO mdorn; -- -- Name: core_userprofile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE core_userprofile_id_seq OWNED BY core_userprofile.id; -- -- Name: core_userprofile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('core_userprofile_id_seq', 298, true); -- -- Name: django_admin_log; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE django_admin_log ( id integer NOT NULL, action_time timestamp with time zone NOT NULL, user_id integer NOT NULL, content_type_id integer, object_id text, object_repr character varying(200) NOT NULL, action_flag smallint NOT NULL, change_message text NOT NULL, CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0)) ); ALTER TABLE public.django_admin_log OWNER TO mdorn; -- -- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE django_admin_log_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.django_admin_log_id_seq OWNER TO mdorn; -- -- Name: django_admin_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE django_admin_log_id_seq OWNED BY django_admin_log.id; -- -- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('django_admin_log_id_seq', 6494, true); -- -- Name: django_cache; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE django_cache ( cache_key character varying(255) NOT NULL, value text NOT NULL, expires timestamp with time zone NOT NULL ); ALTER TABLE public.django_cache OWNER TO mdorn; -- -- Name: django_content_type; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE django_content_type ( id integer NOT NULL, name character varying(100) NOT NULL, app_label character varying(100) NOT NULL, model character varying(100) NOT NULL ); ALTER TABLE public.django_content_type OWNER TO mdorn; -- -- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE django_content_type_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.django_content_type_id_seq OWNER TO mdorn; -- -- Name: django_content_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE django_content_type_id_seq OWNED BY django_content_type.id; -- -- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('django_content_type_id_seq', 25, true); -- -- Name: django_flatpage; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE django_flatpage ( id integer NOT NULL, url character varying(100) NOT NULL, title character varying(200) NOT NULL, content text NOT NULL, enable_comments boolean NOT NULL, template_name character varying(70) NOT NULL, registration_required boolean NOT NULL ); ALTER TABLE public.django_flatpage OWNER TO mdorn; -- -- Name: django_flatpage_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE django_flatpage_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.django_flatpage_id_seq OWNER TO mdorn; -- -- Name: django_flatpage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE django_flatpage_id_seq OWNED BY django_flatpage.id; -- -- Name: django_flatpage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('django_flatpage_id_seq', 10, true); -- -- Name: django_flatpage_sites; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE django_flatpage_sites ( id integer NOT NULL, flatpage_id integer NOT NULL, site_id integer NOT NULL ); ALTER TABLE public.django_flatpage_sites OWNER TO mdorn; -- -- Name: django_flatpage_sites_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE django_flatpage_sites_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.django_flatpage_sites_id_seq OWNER TO mdorn; -- -- Name: django_flatpage_sites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE django_flatpage_sites_id_seq OWNED BY django_flatpage_sites.id; -- -- Name: django_flatpage_sites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('django_flatpage_sites_id_seq', 72, true); -- -- Name: django_session; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE django_session ( session_key character varying(40) NOT NULL, session_data text NOT NULL, expire_date timestamp with time zone NOT NULL ); ALTER TABLE public.django_session OWNER TO mdorn; -- -- Name: django_site; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE django_site ( id integer NOT NULL, domain character varying(100) NOT NULL, name character varying(50) NOT NULL ); ALTER TABLE public.django_site OWNER TO mdorn; -- -- Name: django_site_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE django_site_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.django_site_id_seq OWNER TO mdorn; -- -- Name: django_site_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE django_site_id_seq OWNED BY django_site.id; -- -- Name: django_site_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('django_site_id_seq', 1, true); -- -- Name: django_template; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE django_template ( id integer NOT NULL, name character varying(100) NOT NULL, content text NOT NULL, creation_date timestamp with time zone NOT NULL, last_changed timestamp with time zone NOT NULL ); ALTER TABLE public.django_template OWNER TO mdorn; -- -- Name: django_template_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE django_template_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.django_template_id_seq OWNER TO mdorn; -- -- Name: django_template_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE django_template_id_seq OWNED BY django_template.id; -- -- Name: django_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('django_template_id_seq', 17, true); -- -- Name: django_template_sites; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE django_template_sites ( id integer NOT NULL, template_id integer NOT NULL, site_id integer NOT NULL ); ALTER TABLE public.django_template_sites OWNER TO mdorn; -- -- Name: django_template_sites_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE django_template_sites_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.django_template_sites_id_seq OWNER TO mdorn; -- -- Name: django_template_sites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE django_template_sites_id_seq OWNED BY django_template_sites.id; -- -- Name: django_template_sites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('django_template_sites_id_seq', 138, true); -- -- Name: donate_donation; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE donate_donation ( id integer NOT NULL, created timestamp with time zone NOT NULL, modified timestamp with time zone NOT NULL, user_id integer NOT NULL, organization_id integer, charity_id integer, featured boolean NOT NULL, anonymous boolean NOT NULL, status character varying(12) NOT NULL, type character varying(12) NOT NULL, capital numeric(7,2) NOT NULL, is_distributed boolean NOT NULL, distribution_date date, distrubution_notes text, notify_friends text NOT NULL, notify_charity boolean NOT NULL, letter_date date, fedex_tracking_number character varying(50), fedex_cost numeric(7,2), fedex_notifications text, fedex_reimburse boolean NOT NULL, donor_address_id integer, block_capital numeric(7,2) NOT NULL ); ALTER TABLE public.donate_donation OWNER TO mdorn; -- -- Name: donate_donation_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE donate_donation_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.donate_donation_id_seq OWNER TO mdorn; -- -- Name: donate_donation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE donate_donation_id_seq OWNED BY donate_donation.id; -- -- Name: donate_donation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('donate_donation_id_seq', 446, true); -- -- Name: donate_hold; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE donate_hold ( id integer NOT NULL, expires timestamp with time zone NOT NULL, user_id integer, session_key character varying(255), donation_id integer NOT NULL, extended boolean NOT NULL, remote_address inet NOT NULL, user_agent character varying(512) NOT NULL, count smallint, CONSTRAINT donate_hold_count_check CHECK ((count >= 0)) ); ALTER TABLE public.donate_hold OWNER TO mdorn; -- -- Name: donate_hold_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE donate_hold_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.donate_hold_id_seq OWNER TO mdorn; -- -- Name: donate_hold_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE donate_hold_id_seq OWNED BY donate_hold.id; -- -- Name: donate_hold_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('donate_hold_id_seq', 1406, true); -- -- Name: donate_purchase; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE donate_purchase ( id integer NOT NULL, created timestamp with time zone NOT NULL, modified timestamp with time zone NOT NULL, email character varying(75) NOT NULL, donation_id integer NOT NULL, billing_address_id integer NOT NULL, shipping_address_id integer, trans_id character varying(255) NOT NULL, cc_last_digits character varying(12) NOT NULL, total_cost numeric(7,2), tax_cost numeric(7,2), shipping_option_id integer, status character varying(25) NOT NULL, cc_name character varying(255) NOT NULL, ip_address character varying(255) NOT NULL, tracking_code character varying(255) NOT NULL, confirmation timestamp with time zone, comment text NOT NULL, tix_count smallint, share_contact_info boolean NOT NULL, user_id integer ); ALTER TABLE public.donate_purchase OWNER TO mdorn; -- -- Name: donate_purchase_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE donate_purchase_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.donate_purchase_id_seq OWNER TO mdorn; -- -- Name: donate_purchase_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE donate_purchase_id_seq OWNED BY donate_purchase.id; -- -- Name: donate_purchase_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('donate_purchase_id_seq', 169, true); -- -- Name: donate_shippingoption; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE donate_shippingoption ( id integer NOT NULL, status integer NOT NULL, activate_date timestamp with time zone, deactivate_date timestamp with time zone, title character varying(255) NOT NULL, price numeric(7,2) NOT NULL ); ALTER TABLE public.donate_shippingoption OWNER TO mdorn; -- -- Name: donate_shippingoption_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE donate_shippingoption_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.donate_shippingoption_id_seq OWNER TO mdorn; -- -- Name: donate_shippingoption_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE donate_shippingoption_id_seq OWNED BY donate_shippingoption.id; -- -- Name: donate_shippingoption_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('donate_shippingoption_id_seq', 5, true); -- -- Name: flatblocks_flatblock; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE flatblocks_flatblock ( id integer NOT NULL, slug character varying(255) NOT NULL, header character varying(255), content text ); ALTER TABLE public.flatblocks_flatblock OWNER TO mdorn; -- -- Name: flatblocks_flatblock_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE flatblocks_flatblock_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.flatblocks_flatblock_id_seq OWNER TO mdorn; -- -- Name: flatblocks_flatblock_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE flatblocks_flatblock_id_seq OWNED BY flatblocks_flatblock.id; -- -- Name: flatblocks_flatblock_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('flatblocks_flatblock_id_seq', 3, true); -- -- Name: organize_address; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE organize_address ( id integer NOT NULL, created timestamp with time zone NOT NULL, modified timestamp with time zone NOT NULL, status integer NOT NULL, activate_date timestamp with time zone, deactivate_date timestamp with time zone, addressee character varying(200), street_1 character varying(200) NOT NULL, street_2 character varying(200), city character varying(200) NOT NULL, state character varying(200) NOT NULL, postal_code character varying(10) NOT NULL, country character varying(100) NOT NULL, is_billing boolean NOT NULL, is_shipping boolean NOT NULL, market_id integer ); ALTER TABLE public.organize_address OWNER TO mdorn; -- -- Name: organize_address_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE organize_address_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.organize_address_id_seq OWNER TO mdorn; -- -- Name: organize_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE organize_address_id_seq OWNED BY organize_address.id; -- -- Name: organize_address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('organize_address_id_seq', 1322, true); -- -- Name: organize_market; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE organize_market ( id integer NOT NULL, title character varying(255) NOT NULL, slug character varying(50) NOT NULL, status integer DEFAULT 1 NOT NULL, activate_date timestamp with time zone, deactivate_date timestamp with time zone ); ALTER TABLE public.organize_market OWNER TO mdorn; -- -- Name: organize_market_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE organize_market_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.organize_market_id_seq OWNER TO mdorn; -- -- Name: organize_market_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE organize_market_id_seq OWNED BY organize_market.id; -- -- Name: organize_market_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('organize_market_id_seq', 50, true); -- -- Name: organize_organization; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE organize_organization ( id integer NOT NULL, created timestamp with time zone NOT NULL, modified timestamp with time zone NOT NULL, status integer NOT NULL, activate_date timestamp with time zone, deactivate_date timestamp with time zone, address_id integer, charity boolean NOT NULL, verified boolean NOT NULL, group_id integer, title character varying(255) NOT NULL, slug character varying(50) NOT NULL, email character varying(75) NOT NULL, website character varying(200), teaser text, description text, has_detail boolean DEFAULT false NOT NULL, color_logo character varying(200), banner character varying(200), mono_logo character varying(200), contact_name character varying(255), fein character varying(20), "national" boolean NOT NULL, orgtype character varying(50), can_post_willcall boolean NOT NULL ); ALTER TABLE public.organize_organization OWNER TO mdorn; -- -- Name: organize_organization_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE organize_organization_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.organize_organization_id_seq OWNER TO mdorn; -- -- Name: organize_organization_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE organize_organization_id_seq OWNED BY organize_organization.id; -- -- Name: organize_organization_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('organize_organization_id_seq', 127, true); -- -- Name: south_migrationhistory; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE south_migrationhistory ( id integer NOT NULL, app_name character varying(255) NOT NULL, migration character varying(255) NOT NULL, applied timestamp with time zone ); ALTER TABLE public.south_migrationhistory OWNER TO mdorn; -- -- Name: south_migrationhistory_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE south_migrationhistory_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.south_migrationhistory_id_seq OWNER TO mdorn; -- -- Name: south_migrationhistory_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE south_migrationhistory_id_seq OWNED BY south_migrationhistory.id; -- -- Name: south_migrationhistory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('south_migrationhistory_id_seq', 44, true); -- -- Name: tickets_eticket; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE tickets_eticket ( id integer NOT NULL, tix_id integer NOT NULL, file character varying(100) NOT NULL ); ALTER TABLE public.tickets_eticket OWNER TO mdorn; -- -- Name: tickets_eticket_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE tickets_eticket_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.tickets_eticket_id_seq OWNER TO mdorn; -- -- Name: tickets_eticket_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE tickets_eticket_id_seq OWNED BY tickets_eticket.id; -- -- Name: tickets_eticket_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('tickets_eticket_id_seq', 55, true); -- -- Name: tickets_event; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE tickets_event ( id integer NOT NULL, venue_id integer NOT NULL, title character varying(255) NOT NULL, date timestamp with time zone NOT NULL, description text, type character varying(8) NOT NULL, market_id integer, start_date timestamp with time zone ); ALTER TABLE public.tickets_event OWNER TO mdorn; -- -- Name: tickets_event_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE tickets_event_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.tickets_event_id_seq OWNER TO mdorn; -- -- Name: tickets_event_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE tickets_event_id_seq OWNED BY tickets_event.id; -- -- Name: tickets_event_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('tickets_event_id_seq', 263, true); -- -- Name: tickets_event_markets; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE tickets_event_markets ( id integer NOT NULL, event_id integer NOT NULL, market_id integer NOT NULL ); ALTER TABLE public.tickets_event_markets OWNER TO mdorn; -- -- Name: tickets_event_markets_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE tickets_event_markets_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.tickets_event_markets_id_seq OWNER TO mdorn; -- -- Name: tickets_event_markets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE tickets_event_markets_id_seq OWNED BY tickets_event_markets.id; -- -- Name: tickets_event_markets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('tickets_event_markets_id_seq', 2312, true); -- -- Name: tickets_tix; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE tickets_tix ( id integer NOT NULL, donation_id integer NOT NULL, event_id integer NOT NULL, count smallint NOT NULL, price numeric(7,2) NOT NULL, format character varying(8) NOT NULL, seating_type character varying(8) NOT NULL, seating_info character varying(255) NOT NULL, details text NOT NULL, extra text, is_block boolean NOT NULL, block_count smallint, CONSTRAINT tickets_tix_block_count_check CHECK ((block_count >= 0)), CONSTRAINT tickets_tix_count_check CHECK ((count >= 0)) ); ALTER TABLE public.tickets_tix OWNER TO mdorn; -- -- Name: tickets_tix_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE tickets_tix_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.tickets_tix_id_seq OWNER TO mdorn; -- -- Name: tickets_tix_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE tickets_tix_id_seq OWNED BY tickets_tix.id; -- -- Name: tickets_tix_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('tickets_tix_id_seq', 500, true); -- -- Name: tickets_venue; Type: TABLE; Schema: public; Owner: mdorn; Tablespace: -- CREATE TABLE tickets_venue ( id integer NOT NULL, created timestamp with time zone NOT NULL, modified timestamp with time zone NOT NULL, title character varying(255) NOT NULL, slug character varying(50) NOT NULL, description text, address_id integer NOT NULL, review boolean NOT NULL, has_willcall boolean NOT NULL ); ALTER TABLE public.tickets_venue OWNER TO mdorn; -- -- Name: tickets_venue_id_seq; Type: SEQUENCE; Schema: public; Owner: mdorn -- CREATE SEQUENCE tickets_venue_id_seq INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.tickets_venue_id_seq OWNER TO mdorn; -- -- Name: tickets_venue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: mdorn -- ALTER SEQUENCE tickets_venue_id_seq OWNED BY tickets_venue.id; -- -- Name: tickets_venue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mdorn -- SELECT pg_catalog.setval('tickets_venue_id_seq', 809, true); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE auth_group ALTER COLUMN id SET DEFAULT nextval('auth_group_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE auth_group_permissions ALTER COLUMN id SET DEFAULT nextval('auth_group_permissions_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE auth_message ALTER COLUMN id SET DEFAULT nextval('auth_message_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE auth_permission ALTER COLUMN id SET DEFAULT nextval('auth_permission_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE auth_user ALTER COLUMN id SET DEFAULT nextval('auth_user_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE auth_user_groups ALTER COLUMN id SET DEFAULT nextval('auth_user_groups_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE auth_user_user_permissions ALTER COLUMN id SET DEFAULT nextval('auth_user_user_permissions_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE core_userprofile ALTER COLUMN id SET DEFAULT nextval('core_userprofile_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE django_admin_log ALTER COLUMN id SET DEFAULT nextval('django_admin_log_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE django_content_type ALTER COLUMN id SET DEFAULT nextval('django_content_type_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE django_flatpage ALTER COLUMN id SET DEFAULT nextval('django_flatpage_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE django_flatpage_sites ALTER COLUMN id SET DEFAULT nextval('django_flatpage_sites_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE django_site ALTER COLUMN id SET DEFAULT nextval('django_site_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE django_template ALTER COLUMN id SET DEFAULT nextval('django_template_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE django_template_sites ALTER COLUMN id SET DEFAULT nextval('django_template_sites_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE donate_donation ALTER COLUMN id SET DEFAULT nextval('donate_donation_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE donate_hold ALTER COLUMN id SET DEFAULT nextval('donate_hold_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE donate_purchase ALTER COLUMN id SET DEFAULT nextval('donate_purchase_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE donate_shippingoption ALTER COLUMN id SET DEFAULT nextval('donate_shippingoption_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE flatblocks_flatblock ALTER COLUMN id SET DEFAULT nextval('flatblocks_flatblock_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE organize_address ALTER COLUMN id SET DEFAULT nextval('organize_address_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE organize_market ALTER COLUMN id SET DEFAULT nextval('organize_market_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE organize_organization ALTER COLUMN id SET DEFAULT nextval('organize_organization_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE south_migrationhistory ALTER COLUMN id SET DEFAULT nextval('south_migrationhistory_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE tickets_eticket ALTER COLUMN id SET DEFAULT nextval('tickets_eticket_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE tickets_event ALTER COLUMN id SET DEFAULT nextval('tickets_event_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE tickets_event_markets ALTER COLUMN id SET DEFAULT nextval('tickets_event_markets_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE tickets_tix ALTER COLUMN id SET DEFAULT nextval('tickets_tix_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: mdorn -- ALTER TABLE tickets_venue ALTER COLUMN id SET DEFAULT nextval('tickets_venue_id_seq'::regclass); -- -- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: mdorn -- COPY auth_group (id, name) FROM stdin; 1 Group for Frank Lloyd Wright Preservation Trust 2 Group for Heritage YMCA Group 3 Group for Imerman Angels 4 Group for J. Kyle Braid Foundation 5 Group for North Central College 6 Group for Rotary International 7 Group for Serra Club 8 Group for Special Olympics Illinois 9 Group for Sts. Peter & Paul Catholic School 10 Group for Winning Workplace Solutions 12 Group for Little Friends, Inc. 13 Group for MidAmerica Service Dogs' Foundation, Inc. 14 Group for Aunt Martha's Youth Service Center, Inc. 16 Group for Little Heroes Pediatric Cancer Research Foundation 17 Group for The University of Chicago Cancer Research Foundation 18 Group for theater 20 Group for Rob Koranda Scholarship Foundation 21 Group for St. Francis High School 22 Group for The CARA Program 23 Group for Ronald McDonald House Charities of Chicagoland & Northwest Indiana 24 Group for San Miguel Schools 25 Group for Our Children's Homestead 26 Group for Juvenile Diabetes Research Foundation 27 Group for NCO Youth & Family Services 28 Group for Chicago International Charter School 29 Group for ALS Association Greater Chicago Chapter 30 Group for Next Level Foundation 31 Group for Hinsdale Central High School Foundation 32 Group for Naperville Responds To Our Veterans 33 Group for Nettelhorst School 34 Group for Arranmore Center for the Arts 39 Group for Ss. Peter & Paul School 15 Group for Naperville Area Humane Society 50 Group for Arranmore Center 51 Group for CareLink Foundation 52 Group for Naperville Education Foundation 53 Group for DuPage Children's Museum 54 Group for St. James Parish & School Arlington Heights 55 Group for PACT, Inc 56 Group for University of St. Francis 57 Group for National Institute for Community 58 Group for Casa De Luz 59 Group for Israel Sports Center for Disabled 60 Group for Children's Memorial Hospital 61 Group for Comer Children's Hospital 62 Group for Hesed House 63 Group for Luther North High School 64 Group for Muscular Distrophy Assocaition 65 Group for Turning Pointe Autism Foundation 66 Group for A.D.O.P.T. Pet Shelter 67 Group for Pending Approval 68 Group for Samaritan Interfaith Counseling Center 69 Group for Naperville CARES 70 Group for Marist High School Chicago 71 Group for Ray Graham Association for People with Disabilities 72 Group for Ovarian Cancer Research Fund 73 Group for Fenwick High School 74 Group for Resurrection Development Foundation 75 Group for Boy Scouts of America Rainbow Council 76 Group for Advocate Healthcare Charitable Foundation 77 Group for Marklund Children's Home 78 Group for test 79 Group for St. Patrick's Residence 80 Group for Chicago Fire Junior 81 Group for Keep Going for Mark 82 Group for Peace House Africa 83 Group for Kaleidoscope, Inc. 84 Group for AIDS Foundation of Chicago 85 Group for Operation: MOMS Cookies Inc. 86 Group for Natasha McShane Foundation 87 Group for Voices for Illinois Children 88 Group for Naperville Central High School Athletic Booster Club 89 Group for St. Michael Parish 90 Group for Pioneer Clubs 91 Group for Noreen Fraser Foundation 92 Group for Chicago Hope Academy 93 Group for Keshet 94 Group for Habitat for Humanity Illinois 95 Group for The Morton Arboretum 96 Group for Little City Foundation 97 Group for Neumann Family Services 98 Group for Hinsdale Center for the Arts 99 Group for Opportunity Enterprises 100 Group for the carelink foundation 101 Group for Autism Society of Illinois 102 Group for Bright Pink NFP 103 Group for Evantson Township High School Educational Foundation 104 Group for Casa by Charleston 105 Group for Applied Discovery, Inc. 106 Group for ALS of Michigan 107 Group for Trevian Football 108 Group for Catholic Charities of the Archdiocese of Chicago 109 Group for Community Health Charities of America 110 Group for Retail ROI at The Giving Back Fund 111 Group for Saint Ignatius College Prep 112 Group for Mercy Home for Boys & Girls 113 Group for The Youth Campus 114 Group for Montini Catholic High School 115 Group for Marmion Academy 116 Group for Benedictine University 117 Group for NAMI DuPage 118 Group for Piano Forte Founation, NFP 119 Group for The Salvation Army Metropolitan Division 120 Group for The Dempster Family Foundation 121 Group for Tix4Cause, LLC 122 Group for Autism Speaks 123 Group for Benet Academy 124 Group for The Illinois Society for the Prevention of Blindness 125 Group for Edward Foundation 126 Group for Girls on the Run Chicago 127 Group for Kelly Cares Foundation 128 Group for Detroit Public School Foundation 129 Group for Zanies Comedy Night Club Chicago 130 Group for District 99 Education Foundation 131 Group for iFred 132 Group for Good Sheperd Church of Naperville 134 Group for Paramount Theater 135 Group for Mount Carmel High School 136 Group for Cancer Research Institute 138 Group for Labels for Love Inc. 139 Group for Western Illinois University 140 Group for Joliet Area Historical Museum \. -- -- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: mdorn -- COPY auth_group_permissions (id, group_id, permission_id) FROM stdin; \. -- -- Data for Name: auth_message; Type: TABLE DATA; Schema: public; Owner: mdorn -- COPY auth_message (id, user_id, message) FROM stdin; \. -- -- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: mdorn -- COPY auth_permission (id, name, content_type_id, codename) FROM stdin; 1 Can add permission 1 add_permission 2 Can change permission 1 change_permission 3 Can delete permission 1 delete_permission 4 Can add group 2 add_group 5 Can change group 2 change_group 6 Can delete group 2 delete_group 7 Can add user 3 add_user 8 Can change user 3 change_user 9 Can delete user 3 delete_user 10 Can add message 4 add_message 11 Can change message 4 change_message 12 Can delete message 4 delete_message 13 Can add content type 5 add_contenttype 14 Can change content type 5 change_contenttype 15 Can delete content type 5 delete_contenttype 16 Can add session 6 add_session 17 Can change session 6 change_session 18 Can delete session 6 delete_session 19 Can add site 7 add_site 20 Can change site 7 change_site 21 Can delete site 7 delete_site 22 Can add log entry 8 add_logentry 23 Can change log entry 8 change_logentry 24 Can delete log entry 8 delete_logentry 25 Can add flat page 9 add_flatpage 26 Can change flat page 9 change_flatpage 27 Can delete flat page 9 delete_flatpage 28 Can add email key 10 add_emailkey 29 Can change email key 10 change_emailkey 30 Can delete email key 10 delete_emailkey 31 Can add user profile 11 add_userprofile 32 Can change user profile 11 change_userprofile 33 Can delete user profile 11 delete_userprofile 34 Can add address 12 add_address 35 Can change address 12 change_address 36 Can delete address 12 delete_address 37 Can add organization 13 add_organization 38 Can change organization 13 change_organization 39 Can delete organization 13 delete_organization 40 Can add donation 14 add_donation 41 Can change donation 14 change_donation 42 Can delete donation 14 delete_donation 43 Can add hold 15 add_hold 44 Can change hold 15 change_hold 45 Can delete hold 15 delete_hold 46 Can add shipping option 16 add_shippingoption 47 Can change shipping option 16 change_shippingoption 48 Can delete shipping option 16 delete_shippingoption 49 Can add purchase 17 add_purchase 50 Can change purchase 17 change_purchase 51 Can delete purchase 17 delete_purchase 52 Can add venue 18 add_venue 53 Can change venue 18 change_venue 54 Can delete venue 18 delete_venue 55 Can add event 19 add_event 56 Can change event 19 change_event 57 Can delete event 19 delete_event 58 Can add tix 20 add_tix 59 Can change tix 20 change_tix 60 Can delete tix 20 delete_tix 61 Can add e-ticket 21 add_eticket 62 Can change e-ticket 21 change_eticket 63 Can delete e-ticket 21 delete_eticket 64 Can add Flat block 22 add_flatblock 65 Can change Flat block 22 change_flatblock 66 Can delete Flat block 22 delete_flatblock 67 Can add migration history 23 add_migrationhistory 68 Can change migration history 23 change_migrationhistory 69 Can delete migration history 23 delete_migrationhistory 70 Can add market 24 add_market 71 Can change market 24 change_market 72 Can delete market 24 delete_market 73 Can add template 25 add_template 74 Can change template 25 change_template 75 Can delete template 25 delete_template \. -- -- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: mdorn -- COPY auth_user (id, username, first_name, last_name, email, password, is_staff, is_active, is_superuser, last_login, date_joined) FROM stdin; 23 antoniom antonio moton antoniom@example.com sha1$249c7$dec9ebf90ea629a395cd3bf0f104399174a2dd2d f t f 2010-02-05 11:41:13.330077-06 2010-02-05 11:41:13.300077-06 27 larson4k Karla Larson larson4k@example.com sha1$4d06a$5a542d30abd53983bf1957719c183c0228cf05bd f t f 2010-02-07 07:50:36.880077-06 2010-02-07 07:50:36.840077-06 12 pmack pmack@example.com sha1$9f737$e0976931b010111978e2b34a8480e49ca8ecf5e6 f t f 2010-02-04 10:58:31.000077-06 2010-02-04 10:58:31.000077-06 44 akisting Ann Kisting akisting@example.com sha1$05a71$922f3f2e9de55cf0fe3f514b71ed8212dcae5a0a f t f 2010-02-10 09:23:12.630077-06 2010-02-10 09:23:12.560077-06 11 mnorgaard Mary Norgaard mnorgaard@example.com sha1$bcb67$5f45c466114dc20997f2f68780f1139f99abbc90 f t f 2010-03-02 13:34:58.740638-06 2010-02-04 10:58:06-06 38 hhookstadt Heidi Hookstadt hhookstadt@example.com sha1$09ae4$27848236a007da8fa29a4d3a933ee2ef07aba3e5 f t f 2010-02-09 09:04:56.850077-06 2010-02-09 09:04:56.770077-06 19 kenkoranda Ken Koranda kenkoranda@example.com sha1$32411$8a8fee0e4e73fc58306234f5aa35467c120fb07a f t f 2010-02-04 19:09:24.320077-06 2010-02-04 19:09:24.240077-06 8 mnnjd1 Mary Nemetz mnnjd1@aol.com sha1$4bde8$a4122e2fa1d77ea6e57f25a75789ec22d0d190cd t t t 2010-02-04 19:33:40.140077-06 2010-01-30 13:58:45-06 14 mbvosper marnie vosper mbvosper@example.com sha1$df6a2$804c784b8c2f31cfff9115c89767eb29767bce1a f t f 2010-02-04 11:45:47.210077-06 2010-02-04 11:45:47.040077-06 20 cmeklir craig meklir cmeklir@example.com sha1$60a64$6dbb248f12104963f956c4ca1c85b9d8a4c1af91 f t f 2010-02-05 05:42:07.920077-06 2010-02-05 05:42:07.880077-06 15 rboydob Rebecca Obarski rboydob@example.com sha1$6d255$45673a70363a9e1e8809bebe1990af56941d1b2c f t f 2010-02-04 11:54:03.830077-06 2010-02-04 11:54:03.760077-06 16 murbis Maureen Thomas murbis@example.com sha1$9b170$79f3e96508e148aff07a5fa3b4056f52ab0c517b f t f 2010-02-04 12:45:35.800077-06 2010-02-04 12:45:35.590077-06 13 katherine Katherine Koschwanez katherine@example.com sha1$b04f1$ec187a3bb5b701f9b6950faaf45b3c5bfc06b0c8 f t f 2010-02-05 10:01:42.950077-06 2010-02-04 11:45:18.550077-06 21 kevinryan Kevin Ryan kevinryan@example.com sha1$36db8$b9bfea7ad959dffcc27b151b6db2498995ef4315 f t f 2010-02-12 14:47:07-06 2010-02-05 11:00:54-06 33 blaney Brad Laney blaney@example.com sha1$77d0d$4728e3934014daac75324709f068aade991da142 f t f 2010-02-08 16:50:01-06 2010-02-08 16:50:01-06 25 sbessett Sara Bessette sbessett@example.com sha1$75e4a$5edb9e79194bcd8523ac2574d2584facf48cfaba f t f 2010-04-08 14:06:28.637873-05 2010-02-05 20:33:06.340077-06 55 cdlucenti Christopher Lucenti cdlucenti@example.com sha1$30f01$0717949943ac4abb41dd5cf2d14c65a6744117f5 f t f 2010-02-23 15:19:41.790638-06 2010-02-17 13:17:03.480077-06 36 gvandenhombergh Gaye Van Den Hombergh gvandenhombergh@example.com sha1$16408$4b8817406a5efda27d885841e4fa420c5ff2c002 f t f 2010-02-08 16:56:06-06 2010-02-08 16:56:06-06 43 kimmcgaw Kimberly McGaw kimmcgaw@example.com sha1$05bf4$a051d56a596fc9a96c12f9eb505c7c70b0b61df1 f t f 2010-02-09 18:13:34.230077-06 2010-02-09 18:13:34.190077-06 40 brianjfitz Brian Fitz brianjfitz@example.com sha1$1a6a4$0f964ef7be0fa760db7c3b2224f969575fdc1b97 f t f 2010-02-09 16:15:33.770077-06 2010-02-09 16:15:33.730077-06 47 nicolascott Nicola Scott nicolascott@example.com sha1$69e17$1ad732a7f3839256d5862cf01fbda4bdce2906df f t f 2010-02-11 09:44:52.960077-06 2010-02-10 16:18:07-06 18 Fglowaty Frank Glowaty Fglowaty@example.com sha1$afb0f$b4d802660c42108c59ab1b2adf72d96ed67c62c4 f t f 2010-03-31 15:02:17.487873-05 2010-02-04 16:29:27-06 45 lizkuhn Liz Kuhn lizkuhn@example.com sha1$5a8a4$c47832b54caae36688fd0fa16c30f9de95b93620 f t f 2010-02-10 10:55:08.480077-06 2010-02-10 10:55:08.370077-06 41 dalemancuso Dale Mancuso dalemancuso@att.net sha1$0533a$9230b1251d70659f13628853560dcc020beac32d t t t 2010-03-08 16:49:16.819089-06 2010-02-09 16:33:43-06 35 gcarr George Carr gcarr@example.com sha1$1d717$df2d1d4e384e4a0a7253f01abf5a37b0c0dff14c f t f 2010-02-24 11:40:05.090638-06 2010-02-08 16:52:45-06 48 kathleenmalecki Kathleen Malecki kathleenmalecki@example.com sha1$42ca5$999ef48f101fcfeaa57c0fe84de1c419bb41a07b f t f 2010-02-11 09:42:52.190077-06 2010-02-10 17:08:12-06 51 wreid William Reid wreid@example.com sha1$a92ff$6bbdcd957165f32c525252e92aca2ec6f74d8762 f t f 2010-02-11 13:48:07.540077-06 2010-02-11 13:48:07.400077-06 3 ted Ted Stenstrom ted@example.com sha1$d8ca5$eb0534b0083f98c57378fdc0ba85f1490f0824a3 f t f 2010-01-18 12:01:51-06 2010-01-18 12:01:51-06 53 patbenton Pat Benton patbenton@example.com sha1$0d51a$57ff0ade6acaa9eb35e4659dc5160b7586505374 f t f 2010-02-17 08:53:22.190077-06 2010-02-17 08:53:22.110077-06 34 pennycoate Penny Coate pennycoate@example.com sha1$903cd$ec8fefdbbabdc935f9dc538d200a9794e3bc61a6 f t f 2010-02-22 15:39:33.820638-06 2010-02-08 16:51:32-06 5 christine Christine Mortensen christine@example.com sha1$8ff8e$40d36e42d4b5706d796d76a03c241a053d138972 f t f 2010-01-19 08:59:56-06 2010-01-19 08:59:56-06 4 jeff Jeff Baker jeff@example.com sha1$b955e$450b9bbfeb099f33409fc910f6c3677db04a530b f t f 2010-02-22 09:04:33-06 2010-01-18 12:02:29-06 71 brookecook Brooke Cook brookecook@example.com sha1$2fef6$d9629ecdae06a98da9cc3eb11b12f33eca67143e f t f 2010-02-27 10:10:40.660638-06 2010-02-27 10:10:40.560638-06 56 jbowers Jane Bowers jbowers@example.com sha1$101b2$ab9444edb6663a9e50ffe6aa2690cf6d8acd0b32 f t f 2010-04-02 11:26:26.907873-05 2010-02-17 16:21:35-06 70 jepco24 james jannusch jepco24@example.com sha1$f5b3b$f3fa5a2deb3e724e80eb1f4ab8d0303339ccdb15 f t f 2010-02-26 21:04:03.140638-06 2010-02-26 21:04:03.000638-06 7 tmiers Tom Miers tmiers@tix4cause.com sha1$aa24f$885d98f75f0e2540ceda273111cfb595aa51b0b5 t t t 2010-05-11 11:45:45.416349-05 2010-01-29 12:01:08-06 2 patrick Patrick McCormack patrick@example.com sha1$2fb64$5a859a2d118daf295da2e5f3156025c7424eed60 f t f 2010-03-16 13:50:53-05 2010-01-18 12:00:22-06 37 bonniebeetz Bonnie Beetz bonniebeetz@example.com sha1$ee8d3$fdee1b21732302c5dc149d4a187daefd158299fa f t f 2010-11-03 16:21:41.503008-05 2010-02-08 17:34:32-06 1 trent Trent Jurewicz trent@example.com sha1$8a502$79c7038c8b90dd9bf2c96e866b5e42dc6b7da7fc f t f 2010-04-11 13:56:40-05 2010-01-18 08:56:36-06 9 mmcbride Michelle McBride mmcbride@tix4cause.com sha1$048b9$c5bb304e660de6ad92453cf8f61ca8ec2f34244d t t t 2010-07-28 09:29:50.371757-05 2010-01-29 11:54:11-06 26 jsmiers Jonathan Miers jsmiers@example.com sha1$e3885$95048517d21e056b90a8377d233d7d78ed32b681 f t f 2010-05-20 09:28:53.683861-05 2010-02-06 14:25:36.940077-06 50 jankoranda Jan Koranda jankoranda@example.com sha1$f9dfe$b56c5453aa552ebb42a16acbecdfc6df90665a6c f t f 2010-05-11 14:05:26.000031-05 2010-02-11 09:23:53-06 6 kevin Kevin Nemetz kevin@tix4cause.com sha1$7840c$796554f8a35a235a65c3ba79eb74bab98ffbb88b t t t 2010-11-14 08:09:27.69176-06 2010-01-29 15:08:16-06 28 amaldrich Adrian Aldrich amaldrich@example.com sha1$0c050$739b45bf0e321d8f241326bc14ea1df1f5bec246 f t f 2010-07-14 11:06:45.392126-05 2010-02-08 10:48:19.040077-06 54 awood Angie Wood awood@example.com sha1$2499f$8918c68e2e0ad31cbf9dca16df484496b829c97e f t f 2010-08-06 14:21:10.306882-05 2010-02-17 10:37:53-06 52 sarahhamilton Sarah Hamilton sarahhamilton@example.com sha1$087c5$953502e6f171af034d0c4fa2f1cad688b57146b8 f t f 2010-10-28 12:57:42.775065-05 2010-02-12 09:54:09-06 30 jkoranda John Koranda jkoranda@tix4cause.com sha1$8be79$3dcbfd6c6dcb20100b50d87625dd72136c41efec t t t 2010-11-17 12:18:52.682443-06 2010-02-08 14:56:07-06 24 kevinspahn Kevin Spahn kevinspahn@example.com sha1$b1ffb$bd105009a70509485da7b2c34c73c97a3f6c5371 f t f 2010-10-13 22:26:25.071269-05 2010-02-05 16:48:29.580077-06 31 kmclaughlin Kathy McLaughlin kmclaughlin@example.com sha1$9e8f9$fcd8c76ff71b3cd5659153c353825dc55a994446 f t f 2010-07-22 11:16:42.478832-05 2010-02-08 16:10:15-06 57 integralapproach Josh Rosenfeld integralapproach@gmail.com sha1$a612e$8295776a8775c9b12aa68f0be852a5b644bd5db8 t t f 2010-03-05 19:27:05-06 2010-02-17 17:49:19-06 58 etyrybak Ety Rybak etyrybak@example.com sha1$fe21b$0efd807fef7d98477baa52c49431844a1e18907f f t f 2010-02-19 00:22:58.650638-06 2010-02-19 00:22:58.520638-06 72 rasrealtor Robert Silvestri rasrealtor@example.com sha1$2de98$26aa6264eb17cf64a3eeceb9d3ce812134276518 f t f 2010-03-01 12:50:16.040638-06 2010-03-01 12:50:15.890638-06 60 jimmcbride Jim McBride jimmcbride@example.com sha1$85805$63a1f8c60c53d6703cc039111224d274b228e115 f t f 2010-02-19 10:00:15-06 2010-02-19 10:00:15-06 82 hart277 Travis Hartinger hart277@example.com sha1$3f3e8$85f0b06710e822ef4959e27bb64afd98d7611c09 f t f 2010-03-01 14:08:39.270638-06 2010-03-01 14:08:39.170638-06 62 jmeltzer Jerry Meltzer jmeltzer@example.com sha1$f6a7f$d0bca7827ac48f8ac0b2465e93eafc98f3efc9ed f t f 2010-02-19 11:22:48.430638-06 2010-02-19 11:22:48.350638-06 73 ampjt Judy Treml ampjt@example.com sha1$254f2$1df1c9311cae7835c5c512cb3cf55e9fc55bd2a0 f t f 2010-03-01 12:52:49.960638-06 2010-03-01 12:52:49.910638-06 63 gpb22rcm George Blakeslee gpb22rcm@example.com sha1$6d52c$f3c8c13b50ec426e99f864038b65b728dd8b47be f t f 2010-02-19 11:26:04.100638-06 2010-02-19 11:26:04.080638-06 64 ropamoca Robynn Williams ropamoca@example.com sha1$e7ec5$8f321a212fbc138921ec0ea6fefde7f95e1bd29d f t f 2010-02-22 12:22:33.970638-06 2010-02-22 12:22:33.840638-06 89 larsonspencer1 Susan Larson Spencer larsonspencer1@example.com sha1$157f3$6346ed73bf676d3534794294588ee3dc20148cc9 f t f 2010-03-01 21:19:39.950637-06 2010-03-01 21:19:39.820638-06 65 stevenvanspankeren Steven Van Spankeren stevenvanspankeren@example.com sha1$09fd5$5d21bb859cce907cfbddf084903c864bdd1207b0 f t f 2010-02-24 10:45:22.490638-06 2010-02-24 10:45:22.360638-06 74 cubguy77 ERIC TISON cubguy77@example.com sha1$a188a$1484beb16d35b4e5419ed154f9e9a1161e15978b f t f 2010-03-01 13:18:36.870638-06 2010-03-01 13:18:36.800638-06 66 trishlynch Trish Lynch trishlynch@example.com sha1$2f4b0$7195153adb43b215ec51040103ec91aa9c2c21be f t f 2010-02-24 21:25:28.680638-06 2010-02-24 21:15:59-06 83 zdresser Zach Dresser zdresser@example.com sha1$5ccf0$8ae75cac45f909e645bffca0a8582ceb446468fd f t f 2010-03-01 15:01:38.280638-06 2010-03-01 15:01:38.250638-06 67 heatherleepastor Heather Pastor heatherleepastor@example.com sha1$ba345$c23990d9b68477ba619e743877cc55aa144c103d f t f 2010-02-25 12:59:01.240638-06 2010-02-25 12:59:01.140638-06 75 fresh5986 Ronald Stahl fresh5986@example.com sha1$b9c63$604d7db52f1c32470055f4d9253743742df7f49f f t f 2010-03-01 13:20:30.940638-06 2010-03-01 13:20:30.920638-06 68 nascar24188 Patricia Cole nascar24188@example.com sha1$aee05$bd11c535bab589888fbf980dd628056e4e3d2c09 f t f 2010-02-25 13:43:48.490638-06 2010-02-25 13:43:48.460638-06 69 parkersburg Louis Marchi parkersburg@example.com sha1$dfc5a$7981cb4e7cef90a09fdcb2bbb86aa84f1a577a78 f t f 2010-02-26 15:19:35.590638-06 2010-02-26 15:19:35.460638-06 76 lisat2005 L T lisat2005@example.com sha1$710c7$eb72df64c33b324f830849387476f2db295a18f8 f t f 2010-03-01 13:31:16.350638-06 2010-03-01 13:31:16.260638-06 84 ninski321 Nina Pigott ninski321@example.com sha1$90332$5858bbf7adbdff874f97b41bb7191973b2c078ef f t f 2010-03-01 15:17:01.000638-06 2010-03-01 15:17:00.930637-06 77 mikesteidele mikE steidele mikesteidele@example.com sha1$34c08$4a4604affee59bd811d229492c4d7853eae41bf0 f t f 2010-03-01 13:32:36.840638-06 2010-03-01 13:32:36.790638-06 79 mikec MIKE CARRELL mikec@example.com sha1$0d26d$980cf93022c4accd1e3a68712c6cdb743c831ecb f t f 2010-03-01 13:42:01.280638-06 2010-03-01 13:42:01.250638-06 85 mmclaughlin52 mike McLaughlin mmclaughlin52@example.com sha1$7fb86$c0ac8b024e43626c09d06a09120ae3d846eb0d5d f t f 2010-03-01 15:45:37.210638-06 2010-03-01 15:45:37.190638-06 80 lparapet john parapetti lparapet@example.com sha1$86057$496708af7f8929fd87fd287cc5df1d7e9ac5e97b f t f 2010-03-01 13:48:11.710638-06 2010-03-01 13:48:11.650638-06 90 rogerhannah Roger Hannah rogerhannah@example.com sha1$eac54$638eda70156ec41f666ef499f516cebc9e68f0ba f t f 2010-03-02 01:01:41.550638-06 2010-03-02 01:01:41.490638-06 86 elm3320 Scott Elman elm3320@example.com sha1$fa4e6$73e4f9b712a6f3c8097a9639b82ce25a830d106f f t f 2010-03-01 16:28:28.390638-06 2010-03-01 16:28:28.310638-06 87 tryelb55 Edward Barnash tryelb55@example.com sha1$c4033$8d15ffac5273222bd1b49c836bce5ff6ed3ccbd5 f t f 2010-03-01 17:36:12.240638-06 2010-03-01 17:36:12.170638-06 81 irkarki steven doepke irkarki@example.com sha1$4a38e$f3ac78fe49ea7b5fb6eefe8650f1c827f44f9f7d f t f 2010-04-01 11:49:28.807873-05 2010-03-01 14:03:14.760638-06 91 corrigane Erinn Corrigan corrigane@example.com sha1$80a2e$77f33c632075493b04b77e6dd8c879ddeee0de6d f t f 2010-03-02 09:05:50.700638-06 2010-03-02 09:05:50.660638-06 95 asg855 allen glazer asg855@example.com sha1$79a33$d5c614846c0580800f45164f1da7cca4d61420ef f t f 2010-03-02 11:46:12.960638-06 2010-03-02 11:46:12.840638-06 92 sarahhamilton08 Sarah Hamilton sarahhamilton08@example.com sha1$319d9$71e48292e93af8fa7cf2f4d9a2ea3a699a954aec f t f 2010-03-02 09:31:16.620638-06 2010-03-02 09:31:16.520638-06 98 michaelkotynek Michael Kotynek michaelkotynek@example.com sha1$4a917$598a70e61b3113a4d9e78688a475d184842ff97f f t f 2010-03-02 14:09:01.610638-06 2010-03-02 14:09:01.550638-06 96 meganehenderson Megan Henderson meganehenderson@example.com sha1$44d12$7915dfe6ed8e30a02ad8deb84656013a222daa2a f t f 2010-03-02 11:47:00.590638-06 2010-03-02 11:47:00.560637-06 97 ErinMiskov Erin Miskov ErinMiskov@example.com sha1$8f9ff$4af9ead900c91b13745fbc887a74e8c3b9cd8b32 f t f 2010-03-02 12:35:42-06 2010-03-02 12:35:42-06 99 jeslyn617 Lynne Guerrero jeslyn617@example.com sha1$6eb8f$85c53be47a241441028ca024b2f572736df48624 f t f 2010-03-02 15:00:27.860638-06 2010-03-02 15:00:27.830638-06 100 tobied50 Thomas Dolan tobied50@example.com sha1$f720a$5c54b3b6138be3b3492aaec829d14f58e6f478d8 f t f 2010-03-02 17:37:03.530638-06 2010-03-02 17:37:03.490638-06 101 skuggiaiko June Kendall skuggiaiko@example.com sha1$59a3f$a718095a955bb5a60d906d521232403896381b4f f t f 2010-03-02 17:40:33.410638-06 2010-03-02 17:40:33.370638-06 102 marsh9800 Marsha Manwarren marsh9800@example.com sha1$abac3$267302e56123eb6544fc981f61147f57429bace5 f t f 2010-03-02 20:34:10.030638-06 2010-03-02 20:34:09.910638-06 103 johnlanda John Landa johnlanda@example.com sha1$b2a10$4a949cf8a8f399c0050218ae10c4bbacc490b345 f t f 2010-03-02 22:23:39.090638-06 2010-03-02 22:23:38.990638-06 104 bfinn317 Brian Finnegan bfinn317@example.com sha1$71396$6462dafed39d1cbefb8f1e9a9fea84dbe985749e f t f 2010-03-03 09:25:51.789089-06 2010-03-03 09:25:51.719089-06 94 nnovak Nuala Novak nnovak@example.com sha1$3e336$01a5d51c694a18af73aeb57990af4aad6127c265 f t f 2010-03-26 11:14:11.397873-05 2010-03-02 10:41:48.410638-06 106 pfritz Patrick Fritz pfritz@example.com sha1$e42da$85ef70267faa7b8a686f6a8c66a8ed87ec5b9339 f t f 2010-03-03 11:21:41.809089-06 2010-03-03 11:21:41.729089-06 107 kingc82 Kingdon Clark kingc82@example.com sha1$f2f02$9f3719a2d0d09d29da36e9a5210c1e8666634ed3 f t f 2010-03-03 11:23:55.989089-06 2010-03-03 11:23:55.929089-06 105 stuartbuck Stuart Buck stuartbuck@example.com sha1$433d0$3d2ec4d597ea02d5aa04558d639615bfe26ea0a1 f t f 2010-03-03 14:00:28.769089-06 2010-03-03 10:56:02-06 108 bbaldwin BARRY BALDWIN bbaldwin@example.com sha1$fa9ea$497d979c17fc197d7f2425ff856ac897c1d59bd6 f t f 2010-03-03 12:23:51.699088-06 2010-03-03 12:23:51.649089-06 109 mjmcgreevy Mike McGreevy mjmcgreevy@example.com sha1$7d65d$0a2bc29beed82cf45404b5c2ee79d6320f27f746 f t f 2010-03-03 13:09:23.839089-06 2010-03-03 13:09:23.779089-06 138 tfschuster Terry Schuster tfschuster@example.com sha1$5b7fd$983630e5654c65fbbb5d9237a6a04f1b56ec37ac f t f 2010-11-12 07:09:34.350153-06 2010-03-18 21:40:49.777873-05 78 mikez68 Mike Zaworski mikez68@example.com sha1$b7989$840e30c626851a12ecd3da7bfdd660d26a19be8e f t f 2010-09-12 21:42:25.157509-05 2010-03-01 13:37:21.960638-06 125 dtstein Doug Stein dtstein@example.com sha1$ab346$e2cca28dc3ae3acfc169c9131e952d8e76915ee2 f t f 2010-03-07 16:39:25.189089-06 2010-03-07 16:39:25.079089-06 133 cassidybri Brian Cassidy cassidybri@example.com sha1$8460e$9c3d8aa0384e8ab160086c306d1d1a72f2c51b41 f t f 2010-03-14 18:44:52.447873-05 2010-03-14 18:44:52.277873-05 126 ginak Gina Schmidt ginak@example.com sha1$a75be$70e55d576422d57fabcf706935a350fba83ea724 f t f 2010-03-08 10:41:14.159089-06 2010-03-08 10:41:14.099089-06 114 mharbeke Mark Harbeke mharbeke@example.com sha1$9db81$a2aa01b11c7691355b9c77b5012c1be13b6dd56f f t f 2010-03-03 17:35:32.689089-06 2010-03-03 17:30:39.239089-06 115 markharbeke Mark Harbeke markharbeke@example.com sha1$6ee42$6aee3b055fb716eb6b98a81e76b50f2add135f57 f t f 2010-03-03 17:40:25.299089-06 2010-03-03 17:40:25.259089-06 116 thekrolicks Jennifer Krolick thekrolicks@example.com sha1$4dc30$092962f55953e46fe8751ce8b66f347f65f2a27f f t f 2010-03-04 08:42:36.519089-06 2010-03-04 08:42:36.419089-06 118 lisapatel Lisa Patel lisapatel@example.com sha1$b52fe$cc004968032c232e2dd1942523341590be62075a f t f 2010-03-04 10:37:08-06 2010-03-04 10:37:08-06 119 dshaffer100 Doug Shaffer dshaffer100@example.com sha1$e45c9$0680839a4bfb4b3138bbd9050973d40eff722fd7 f t f 2010-03-04 11:06:24.319089-06 2010-03-04 11:06:24.219089-06 120 lmcdowel22 Lakeisha McDowell lmcdowel22@example.com sha1$518cd$ad0bc8d9b323ae9d330487283da02927655e92de f t f 2010-03-04 14:18:19.039089-06 2010-03-04 14:18:18.999089-06 128 davidmarkham David Markham davidmarkham@example.com sha1$0a34d$698b556018e2fbdad975c5813618e958e7dc2eb3 f t f 2010-03-08 11:06:39.929089-06 2010-03-08 11:06:39.869089-06 134 carol2r Carol Rynning carol2r@example.com sha1$2e601$fe8a40bf712de54cf0f764f143dfbb231e277111 f t f 2010-03-16 20:53:57.227873-05 2010-03-16 20:53:57.137873-05 129 lainikuumba Sistah Rfuaw Diarra lainikuumba@example.com sha1$15750$b2f0c69a7f436d440f16e40d3eb4d110b423c7b3 f t f 2010-03-08 15:35:25.029089-06 2010-03-08 15:35:24.969089-06 139 timmcgrath334 tim mcgrath timmcgrath334@example.com sha1$325c1$b48ec74fd28fa8cd9998ebdd71edd392538ee132 f t f 2010-03-19 09:53:40.647873-05 2010-03-19 09:53:40.597873-05 130 agulotta Elizabeth Gulotta agulotta@example.com sha1$0a390$ea1ca19294b2f7f0657b29daa75480d4fbf0becf f t f 2010-03-08 16:47:50.499089-06 2010-03-08 16:47:50.399089-06 131 thanschman Tom Hanschman thanschman@example.com sha1$b640a$3f9aec6bdcc98be88e78d53ffd791ce5782a9324 f t f 2010-03-09 11:23:51.179089-06 2010-03-09 11:23:51.039089-06 136 jsteak jeremy chapman jsteak@example.com sha1$78bfe$024a8774ddbb72de1a10118f380935feb7cd2e5c f t f 2010-03-17 18:02:58.247873-05 2010-03-17 18:02:58.227873-05 132 kerr111 Maribeth Kerr kerr111@example.com sha1$12240$00be187f2f6b7347bcb52b7b22d75cb4ee53fcc1 f t f 2010-03-13 16:37:26.845982-06 2010-03-13 16:37:26.665982-06 141 edoyle67 Ed Doyle edoyle67@example.com sha1$4d0bb$10364586642104c481b321fab36ffa02f5a35a09 f t f 2010-03-20 16:44:25.627873-05 2010-03-20 16:44:25.577873-05 127 helenday Helen Day helenday@example.com sha1$a9938$8f84e82a7d40e752c2ff7608cf524b51ae4ba942 f t f 2010-03-24 11:22:03.457873-05 2010-03-08 10:45:19.599089-06 147 jeanneanderko Jeanne Anderko jeanneanderko@example.com sha1$bf29e$3028b2bad88a64dfddffc047669a63d6e34b8bf9 f t f 2010-03-26 10:58:06-05 2010-03-26 10:58:06-05 145 mcurran Mary Curran mcurran@example.com sha1$5b98a$a591e0baa01615bb5536cb975b49136fd08bed54 f t f 2010-03-24 11:54:24.377873-05 2010-03-24 11:54:24.297873-05 146 weigel William Weigel weigel@example.com sha1$bd352$f55f6a95317c9b1c197ca0e63a3be7d5249119d6 f t f 2010-03-25 11:13:07.417873-05 2010-03-25 11:13:07.277873-05 152 lorreleon lorre Mendelson lorreleon@example.com sha1$08005$96a30fcd461e4160c45cbe413d2825731870fae5 f t f 2010-03-31 12:57:18.577873-05 2010-03-31 12:57:18.547873-05 149 vidalilly4 Lilly Vida vidalilly4@aol.com vidalilly4@example.com sha1$a6f92$01a82b46ca800ec6e6a9868958958120936b8b72 f t f 2010-03-29 19:15:31.087873-05 2010-03-29 19:15:31.057873-05 150 amyemcp Amye McPherson amyemcp@example.com sha1$4b5e3$a6a62e6731de2889d6b00d9c1e06a0756cf3abc9 f t f 2010-03-30 16:48:16.507873-05 2010-03-30 16:48:16.457873-05 137 lvansomeren Larry VanSomeren lvansomeren@example.com sha1$5ba2e$78331ce6426525abb0dc721f9f78c06d53f229a6 f t f 2010-04-01 16:53:21.747873-05 2010-03-18 17:07:18-05 155 mattrustige Matt Rustige mattrustige@example.com sha1$6361e$3cef417bd9ec33810a1a148ba04b521a59c327c7 f t f 2010-04-02 08:33:36.787873-05 2010-04-02 08:33:36.747873-05 156 ss3815 Scott Slattery ss3815@example.com sha1$5a1f8$2c55ea2da80479a6c497990d941f4aa866ba4cf3 f t f 2010-04-02 09:09:56.427873-05 2010-04-02 09:09:56.387873-05 148 jackpersin Jack Persin jackpersin@example.com sha1$13d0d$47dceb01827bc7218f1c8319c7de4eff61831fe8 f t f 2010-04-04 18:17:27.227873-05 2010-03-26 13:51:50-05 121 kirstinsamp Kirstin Samp kirstinsamp@example.com sha1$71dc8$16912ca2fc6ac9227a416b4317ebbc6d21cd9523 f t f 2010-04-14 16:55:14.007637-05 2010-03-04 14:24:52-06 158 billmurphy26 Bill Murphy billmurphy26@example.com sha1$033ab$946ed4327d3df77422d8b1e5585f27b31f1b113a f t f 2010-04-05 08:04:40.597873-05 2010-04-05 08:04:40.477873-05 157 jamesjannusch james jannusch jamesjannusch@example.com sha1$79d42$8df332c1d97e84a27d6fc51dd4c9191c4f238e89 f t f 2010-04-02 19:58:45-05 2010-04-02 19:58:45-05 159 wfmartin William Martin wfmartin@example.com sha1$972cb$09900bb8522bc4e664b4ab7b44b658d7f0e787a2 f t f 2010-04-06 08:36:35.327873-05 2010-04-06 08:36:35.267873-05 160 bsheehan Bob Sheehan bsheehan@example.com sha1$29fd2$e7d08ee7363eb4cc17bcdd811f712ccd0ea35cae f t f 2010-04-06 15:50:28.207873-05 2010-04-06 15:50:28.147873-05 175 max9393 Max Hanson max9393@example.com sha1$908ba$806e05d7ac930ef858302c6110b9dcbde06cb647 f t f 2010-04-13 16:52:02.649407-05 2010-04-13 16:52:02.549407-05 144 katefloyd Kate Floyd katefloyd@example.com sha1$578ac$db1f679cf11b630854ff948e24d61dbdde4414a8 f t f 2010-09-17 09:32:11.443613-05 2010-03-23 11:18:22-05 151 sgreenerobb Shannon Greene Robb sgreenerobb@example.com sha1$0e4ac$5e6696a66c9cab266087817afc323b6a09986e4e f t f 2010-03-31 12:05:01-05 2010-04-01 16:41:40-05 161 patriciaborrowdale Patricia Borrowdale patriciaborrowdale@example.com sha1$3c4da$f7aee5c9ab76a660156860cb5ceaf5578258ea3d f t f 2010-07-26 18:12:52.022891-05 2010-04-06 17:46:41-05 154 nicoleseidlitz Nicole Seidlitz nicoleseidlitz@example.com sha1$76650$28982852884bdd0fd6d50f2db804dcf910901a9b f t f 2010-08-25 09:35:46.313367-05 2010-04-01 16:47:09-05 135 julielichter Julie Lichter julielichter@example.com sha1$b1c70$07f91fd3093483a1e4611e0132b1ed976387e700 f t f 2010-03-25 17:07:19-05 2010-03-17 14:21:54-05 140 juliesharpe Julie Sharpe juliesharpe@example.com sha1$4bba5$8faae3c02b67c8fa251926337d37dfa7e103a7f2 f t f 2010-03-19 14:41:36-05 2010-03-19 14:41:36-05 153 jrosenfeld Josh Rosenfeld jrosenfeld@example.com sha1$6d3c5$b805d0723bde890d45d85347de0289a36030e0e8 f f f 2010-03-31 16:07:28-05 2010-03-31 14:52:26-05 122 susankoranda Sue Koranda susankoranda@example.com sha1$99453$baffdea9b46241a1de9d603425e87841ad65656d f t f 2010-07-12 11:25:57.573724-05 2010-03-04 14:37:38-06 124 mnemetz Mary Nemetz mnemetz@tix4cause.com sha1$253f2$3a1ea89f05b1596fac7ae13ed44cd0eacdab9275 t t t 2010-11-15 08:57:51.239882-06 2010-03-05 09:49:49-06 176 nblair Noreen Blair nblair@example.com sha1$9a235$b9afa435a93a955786bf47512a0c52b4612c03af f t f 2010-05-20 20:00:46.232422-05 2010-04-14 11:13:13.171209-05 143 baseball5905 ronald primeau baseball5905@example.com sha1$f04a6$91047dd5df5100daf09d38b0943a1611db1feb02 f t f 2010-06-30 20:46:46.820311-05 2010-03-23 07:00:15.507873-05 113 bmorgridge Ben Morgridge bmorgridge@example.com sha1$d9829$7cc6d85051f53fd1092f5ab41295e88643d927a1 f t f 2010-08-30 16:26:40.255505-05 2010-03-03 16:34:17.629089-06 163 rosiesajak Rosie Sajak rosiesajak@example.com sha1$d4f87$f65de2e66dc7d5ef142479ac10cb60bedd339087 f t f 2010-10-22 09:38:56.053053-05 2010-04-07 08:32:33-05 177 stuartnitzkin Stuart Nitzkin stuartnitzkin@example.com sha1$c00aa$054aaadd5bc4f06a1d87e0d70a53ba20c0a11bc6 f t f 2010-04-14 17:34:25-05 2010-04-14 17:34:25-05 165 lindachalk Linda Chalk lindachalk@example.com sha1$3d6cb$cb4ab0782727879e30cd4c469d8dbd782d27db44 f t f 2010-04-07 13:28:50-05 2010-04-07 13:28:50-05 166 barb0705 Barb Johnson barb0705@example.com sha1$59427$67b97d6c44d17967124510cdf1f656c9e23c7ae1 f t f 2010-04-07 21:37:41.497873-05 2010-04-07 21:37:41.467873-05 167 chadwoehrle Chad Woehrle chadwoehrle@example.com sha1$718ca$49c49ac48712697268b5c0bbcd4ff5d344169a1c f t f 2010-04-08 09:37:21-05 2010-04-08 09:37:21-05 168 johnkorzenowski John Korzenowski johnkorzenowski@example.com sha1$1c464$66c96bef454e01c7e166f197101d194f19ce5c90 f t f 2010-04-08 10:17:07-05 2010-04-08 10:17:07-05 169 rickkrieg Rick Krieger rickkrieg@example.com sha1$42797$4e898e4a32a63df728fe5d3703828c3dab7d5c86 f t f 2010-04-08 13:02:53.527873-05 2010-04-08 13:02:53.507873-05 171 tragar89 tracy gardon tragar89@example.com sha1$ec232$e69763a9725cf489245bc8b60f4abd2273b8ba85 f t f 2010-04-12 11:03:48.067873-05 2010-04-12 11:03:47.957873-05 172 maureendvorak Maureen Dvorak maureendvorak@example.com sha1$942a0$29b97c5da24098b41dce1946b3a2ff03e4f9f22b f t f 2010-04-12 15:40:20-05 2010-04-12 15:40:20-05 187 jungpj PATRICK JUNG jungpj@example.com sha1$69e11$f020fbec424aaaa6845c494b2c1db20d9ed091bb f t f 2010-04-23 10:57:45.606949-05 2010-04-23 10:57:45.598591-05 179 m_banane Meredith Banane m_banane@example.com sha1$35334$5f419d17535ff1af3b12a1b2f7c6f6ac6b02087f f t f 2010-04-17 19:18:00.812699-05 2010-04-17 19:18:00.804103-05 180 johnoleary John Oleary johnoleary@example.com sha1$cfdff$ab829fb47345466e10fc20df21f3c0080f296956 f t f 2010-04-20 14:58:52-05 2010-04-20 14:58:52-05 183 maryensor Mary Ensor maryensor@example.com sha1$d29d4$9baed8a462cf0ff9ba71845632a897a095ce4bcd f t f 2010-04-21 16:26:37-05 2010-04-21 16:26:37-05 188 mmesaf Marwan Mesaf mmesaf@example.com sha1$d7ba6$d31d0e9bf33ec744ada999cb45b076863e138f44 f t f 2010-04-24 21:33:02.910876-05 2010-04-24 21:33:02.898338-05 195 cea1225 Michael Donohue cea1225@example.com sha1$c74cc$b5e8cea440475fd3dac56fa5d2cad11c6772e637 f t f 2010-04-24 21:37:38.808838-05 2010-04-24 21:37:38.801192-05 189 amarie229 Anne Wehrmeyer amarie229@example.com sha1$f726c$0c6a67e609be34bb435ddb556ebc4e3552877b9b f t f 2010-04-24 21:33:30.64763-05 2010-04-24 21:33:30.639659-05 184 sthompson Shannon Thompson sthompson@example.com sha1$6ee7c$48b4782aa14873e4f5be911b4ddef84da2203c67 f t f 2010-04-22 15:58:58.012499-05 2010-04-22 15:58:58.004455-05 170 mtimpone mtimpone@example.com sha1$fb351$955244f8f742ec9df34bcebb801b55ed280f6ddd f t f 2010-04-11 21:17:14-05 2010-04-11 13:57:14-05 190 jamesdai9 James Dai jamesdai9@example.com sha1$921d9$6405bb1f3f8025f9b9f9b20a2144466c15303277 f t f 2010-04-24 21:34:16.864629-05 2010-04-24 21:34:16.857378-05 182 TomHayes Tom Hayes TomHayes@example.com sha1$09f77$b1a3c0cdef91ab0b5dffd6301457f37e25d6af4a f t f 2010-04-24 21:35:03.662924-05 2010-04-21 14:30:04-05 185 vfleck Vern Selk vfleck@example.com sha1$7a342$4044c618a2a3011c59105c8b9958068e510a2e53 f t f 2010-04-22 19:39:24.329201-05 2010-04-22 19:39:24.321599-05 186 tonysaldana tony saldana tonysaldana@example.com sha1$f4844$c02ab5681fa110dc74e5894d10fdfa396d88fbe3 f t f 2010-04-23 08:58:24.288909-05 2010-04-23 08:58:24.280844-05 196 tc300 Teri Van Wieren tc300@example.com sha1$fb652$a48ddf6c28bc692a35aadbb7590716ee1a2b9821 f t f 2010-04-24 21:39:14.488511-05 2010-04-24 21:39:14.481317-05 206 dayt14 Thomas Day dayt14@example.com sha1$dd492$c1a5ed0fb7c5c854a164566b3f261250d6eed051 f t f 2010-04-25 13:38:53.366568-05 2010-04-25 13:38:53.358459-05 191 lindam913 linda mankoff lindam913@example.com sha1$ac84a$36a870a755043f0588033bc1bb4ccd848714d28c f t f 2010-04-24 21:35:22.946625-05 2010-04-24 21:35:22.938694-05 197 dfischers Don Fischer dfischers@example.com sha1$b60fa$ad988967b91e605618dd5ff1ca927c4046b5a3a2 f t f 2010-04-24 21:41:12.930944-05 2010-04-24 21:41:12.923319-05 192 mikeoconnell Mike O'Connell mikeoconnell@example.com sha1$34f8e$bdb9c9533931a42043e16d6a7258a7a1e5d12048 f t f 2010-04-24 21:36:08.875173-05 2010-04-24 21:36:08.867578-05 193 rick_whitlow Patrick Whitlow rick_whitlow@example.com sha1$4e0ab$21ae62a44016b40134dbe390f0fc954aab179043 f t f 2010-04-24 21:37:14.515052-05 2010-04-24 21:37:14.507416-05 201 kellycleaningser KATHY KELLY kellycleaningser@example.com sha1$c8a0c$ded40f664d53ae04cdcb331498e93e95362c04b2 f t f 2010-04-24 22:32:16.323079-05 2010-04-24 22:32:16.315033-05 194 ratdo99 Stuart Hoskins ratdo99@example.com sha1$43ae1$7894a95de6f2053f49eac341c2b2f89858610aac f t f 2010-04-24 21:37:25.782871-05 2010-04-24 21:37:25.77471-05 198 bucrew5 Michael Bukowski bucrew5@example.com sha1$05b6f$647c209421f548facecb9ae024183f15de60f31c f t f 2010-04-24 21:49:34.865867-05 2010-04-24 21:49:34.857735-05 199 fekershaw felicia kershaw fekershaw@example.com sha1$3c9e8$db25c71f22f0840f7b23c3024e1e1afdf08a0901 f t f 2010-04-24 21:58:04.493143-05 2010-04-24 21:58:04.484808-05 200 fish4northern Duane Ward fish4northern@example.com sha1$b399d$e8613014fd17707075bc27964ae6f65ea575608c f t f 2010-04-24 22:07:29.210649-05 2010-04-24 22:07:29.202301-05 123 cbrown Ceal Brown cbrown@tix4cause.com sha1$39c32$797a8d7769b592bfbf9dcf4abbb00abef42bc474 t t t 2010-11-11 12:15:53.105729-06 2010-03-05 09:49:08-06 203 lmedders925 lisa medders lmedders925@example.com sha1$be390$6ed5ad65cb0610c86f07d4069ac757a2237847ae f t f 2010-04-25 09:41:38.222001-05 2010-04-25 09:41:38.214071-05 205 pssimon Philip Simon pssimon@example.com sha1$53bd7$ae021eb3ceeeb1d187250d19e9a73eee7fdae296 f t f 2010-04-25 11:41:00.569113-05 2010-04-25 11:41:00.561504-05 164 bethhopson Beth Hopson bethhopson@example.com sha1$b5ba2$463acf906fb8b4bd5cdd06fa08f0273b296e08d5 f t f 2010-10-05 14:59:06.02934-05 2010-04-07 13:08:38-05 207 ddman62 Steve Blair ddman62@example.com sha1$48714$80900603df81edbd71c96baddcf7aafb86922671 f t f 2010-04-25 14:45:01.009435-05 2010-04-25 14:45:01.001285-05 22 ksnodgrass Kevin Snodgrass ksnodgrass@tix4cause.com sha1$740ab$a5259411ed1fbf7e7a2b98b6041889ec6d0f9d7f t t t 2010-11-15 09:25:36.524453-06 2010-02-05 11:41:12-06 209 jguardi687 Jamie Guardi jguardi687@example.com sha1$8c756$cea1cab787154a03eadef35deca6a28f46272942 f t f 2010-05-17 08:23:41.388847-05 2010-04-25 20:53:07.679008-05 210 faith23p Faith Pales faith23p@example.com sha1$85946$2cb56dc01884dd044fb5ffdab262b73c340c807f f t f 2010-04-25 21:45:49.672171-05 2010-04-25 21:45:49.663699-05 204 jharring020202 Jean Harrington jharring020202@example.com sha1$847e9$17214c2ddc4e4d66ec74f373789d886bed73642a f t f 2010-04-30 10:08:06.038369-05 2010-04-25 11:11:57.247767-05 211 tjsturk Teresa Sturk tjsturk@example.com sha1$2761d$814c795b3e68d482e507fa9ca5321dabf38468a4 f t f 2010-04-26 09:14:57.706454-05 2010-04-26 09:14:57.698156-05 178 mikelindenau mike lindenau mikelindenau@example.com sha1$b4c94$95c689c935a01ce3ab4e95578144faee66bdf503 f t f 2010-06-25 21:16:21.436047-05 2010-04-14 22:57:07.230917-05 212 sayersn Nicholas Sayers sayersn@example.com sha1$48c9a$7490c2065d973db0a0a7153e6eb30755411053d4 f t f 2010-04-26 12:49:00.457092-05 2010-04-26 12:49:00.448939-05 208 jamesmbarker102864 James Barker jamesmbarker102864@example.com sha1$40d1d$ccf1df39723238deebbe92c146f29617892bc511 f t f 2010-06-16 10:08:09.89498-05 2010-04-25 15:31:50.418298-05 213 erikortiz11 erik ortiz erikortiz11@example.com sha1$8d358$80e511d669b117b448316159d1a1c60853179c0d f t f 2010-04-26 13:16:41.086305-05 2010-04-26 13:16:41.077878-05 214 tallgrass Chris Warning tallgrass@example.com sha1$33e06$608dc7376e6271fd43fecc01930f544da518a8fc f t f 2010-04-26 18:47:28.027582-05 2010-04-26 18:47:28.019339-05 202 rayredmond Ray Redmond rayredmond@example.com sha1$bc4ea$161fd7aaa6f02dfc1d6c12a92fcd402bf1e8ec9d f t f 2010-10-31 16:47:52-05 2010-04-25 07:54:51-05 243 hershbergerjaime Jaime Hershberger hershbergerjaime@example.com sha1$90c70$755a0ca5e5ab4465af7ba37f48fd6df10c450c1e f t f 2010-11-09 09:36:02.911463-06 2010-05-04 11:34:11.644021-05 216 justbobb1 Robert Wysocki justbobb1@example.com sha1$a4f59$23f2713cd4ddc2b26b75c81e3f8c0ba8ad32b1b4 f t f 2010-04-26 19:52:42.060917-05 2010-04-26 19:52:42.052629-05 217 labrell Ron Abrell labrell@example.com sha1$1d2a5$4cf11524c8215310e36f74e5291739a750919ff5 f t f 2010-04-27 12:39:58.736865-05 2010-04-27 12:39:58.728827-05 241 suenatiello Sue Natiello suenatiello@example.com sha1$3f5aa$0df47b261d7fb7733cf45c9469656c43b8d3fd1a f t f 2010-05-03 17:17:22.444-05 2010-05-03 17:17:22.435004-05 218 bridgetmaher Bridget Maher bridgetmaher@example.com sha1$ffc49$e08f2077a69c010a92ee1331cd83f56a431ee8ba f t f 2010-04-27 17:03:40.414723-05 2010-04-27 17:03:40.406589-05 231 bmknuckles Barbara Knuckles bmknuckles@example.com sha1$c058b$69d12c2d32e4190471ade29dbcc967e12d7aac05 f t f 2010-04-30 09:35:51.480787-05 2010-04-30 09:35:51.472425-05 219 bleech89 Erik Mack bleech89@example.com sha1$b7123$685686cc8a5d7f4857ce39fe50d314880bb65c74 f t f 2010-04-27 18:28:03.797805-05 2010-04-27 18:28:03.789415-05 220 alitapt alita tucker alitapt@example.com sha1$c861d$6294101fee9339b3f6d5e3007c7c5b14315c4171 f t f 2010-04-27 19:18:26.80391-05 2010-04-27 19:18:26.795785-05 234 sandyboston Sandy Boston sandyboston@example.com sha1$51ef6$5a95ae08c417c2459e20a5d68789b103c2f9c91a f t f 2010-06-19 15:24:41.266383-05 2010-04-30 12:36:39-05 221 kellyappraisal pat kelly kellyappraisal@example.com sha1$9a4e4$71bda1ffc931164257fb14253097cefbf9c4e4aa f t f 2010-04-28 11:18:07.65959-05 2010-04-28 11:08:20.025665-05 233 russpaluch Russ Paluch russpaluch@example.com sha1$0ed7b$bc87f950e0464cb5b25ce683e237fd64f64e66da f t f 2010-04-30 12:34:27-05 2010-04-30 12:34:27-05 223 tjurewicz trent jurewicz tjurewicz@example.com sha1$ed5ae$74f462d8d80d10f0fc3d9fc513c2dc2dfad8bf49 f t f 2010-04-28 14:55:08.095839-05 2010-04-28 14:55:08.087993-05 224 hucek3 Justin Hucek hucek3@example.com sha1$28f78$372218cd52f7033ece607965177d8c9e0a585855 f t f 2010-04-28 15:25:41.877737-05 2010-04-28 15:25:41.870009-05 225 pmorris191 Patrick Morrissey pmorris191@example.com sha1$bbdd3$2d15026bdbcc422ff12164ffe55d593000089b5b f t f 2010-04-28 21:51:55.619371-05 2010-04-28 21:51:55.611203-05 264 markpoulin Mark Poulin markpoulin@example.com sha1$05f33$aa4f4346c17186e64ca3a31fe40a635e44e9edea f t f 2010-07-07 11:36:14.619835-05 2010-05-12 11:47:14.942027-05 249 rpar12 Roger Parish rpar12@example.com sha1$d698a$4a376b8b46192b93115fcd0851309c0ad3a2d3b3 f t f 2010-05-05 17:02:52.181663-05 2010-05-05 17:02:52.172822-05 235 tquevillon Tom Quevillon tquevillon@example.com sha1$a12f1$2869c54103260b1624534e64f2493b33bb0b0d32 f t f 2010-04-30 14:18:05.458535-05 2010-04-30 14:18:05.450828-05 227 richard10824 richard bubbett richard10824@example.com sha1$a5a65$7b645ae94c9c684f071c8a6865176339f2facbd5 f t f 2010-04-29 15:08:16.227558-05 2010-04-29 15:08:16.219375-05 228 bobthom Bob Thom bobthom@example.com sha1$41980$8e2665c5422477f4acd6cb5c3f657cb7cc697b45 f t f 2010-04-29 15:48:58.888809-05 2010-04-29 15:48:58.880861-05 242 squezze frank turner squezze@example.com sha1$8fca2$91bb2703945c30d01dca59200df3572b47521deb f t f 2010-05-03 21:36:17.271353-05 2010-05-03 21:36:17.262079-05 229 wms13 nicole kesten wms13@example.com sha1$9ecc4$c1675f59df03eb915dcdcd2721fd75f37a2c1d74 f t f 2010-04-29 18:22:44.105468-05 2010-04-29 18:22:44.097384-05 246 scassa Susan Cassa scassa@example.com sha1$76e3e$fe02658d3b7d9786e3a766a0d68ef8f6825fc500 f t f 2010-05-04 20:29:16.369773-05 2010-05-04 20:29:16.360672-05 237 rajabhatia Raja Bhatia rajabhatia@example.com sha1$f6b20$5bb97fe9a95b8e9ecabcdf976ab9109c4df41cad f t f 2010-05-03 12:37:47.440391-05 2010-05-03 12:37:47.440391-05 261 dsartoris David Sartoris dsartoris@tix4cause.com sha1$5ba48$baf1b3abcda96ee640ff592a6e9045c145b583e8 t t t 2010-07-06 11:50:57.044524-05 2010-05-11 10:33:29-05 238 raja_mrskin_com Raja Bhatia raja_mrskin_com@example.com sha1$a0361$02ceab3175f1c5de9ae4dce2e949e419fbf8de55 f t f 2010-05-03 13:51:13.331366-05 2010-05-03 13:49:27.894876-05 239 lsojka Lynn Sojka lsojka@example.com sha1$b8bb4$81fe39021633aaac840fc4ff819e65fcb8c2519a f t f 2010-05-03 14:10:28.862996-05 2010-05-03 14:10:28.853602-05 232 sandraboston Sandra Boston sandraboston@example.com sha1$401c8$e8349c13fef2559a048e819bf38f623d0ecae387 f t f 2010-04-30 11:06:00-05 2010-04-30 11:06:00-05 240 valadez_emmanuel Emmanuel Valadez valadez_emmanuel@example.com sha1$e8cfc$2282adfc8dd3fb37ec4dae8cf7a22730b91cf149 f t f 2010-05-03 14:37:44.3884-05 2010-05-03 14:37:44.378981-05 247 jjaznak Julie Nakamura jjaznak@example.com sha1$278a9$fcefb1a3f999300d7edc34a818b3bb9851b7b5b0 f t f 2010-05-04 21:18:02.688441-05 2010-05-04 21:18:02.679117-05 254 princedoug doug prince princedoug@example.com sha1$b8e0d$3a3bb6d104e9910dbe80693453a4155c857f3b82 f t f 2010-05-06 14:50:30.559372-05 2010-05-06 14:50:30.549587-05 248 jlange1970 James Lange jlange1970@example.com sha1$db926$02d99fbe893485054ceb8aec3dcb02d0f80522d1 f t f 2010-05-05 08:24:53.37808-05 2010-05-05 08:24:53.368702-05 250 mslaby Slaby Foundation mslaby@example.com sha1$864a1$ec5ef4d0b3df885cde22f048398b21136ff97f3a f t f 2010-05-06 08:12:09.24869-05 2010-05-06 08:12:09.239359-05 252 elaineasher Elaine Asher elaineasher@example.com sha1$cb697$a6d6dfcfba1e51db46ea01a8119a5fbd2b6b3d62 f t f 2010-05-06 10:37:22-05 2010-05-06 10:37:22-05 245 bgeene Brad Geene bgeene@example.com sha1$2331a$6fc289cf33a32a1732930c42c18e6085ab2031ff f t f 2010-05-05 16:13:44.677536-05 2010-05-04 18:13:20.897435-05 253 doncrosby Don Crosby doncrosby@example.com sha1$286ed$66c0569eacf147809556ed0deb03c5f13b135a87 f t f 2010-05-06 12:19:57-05 2010-05-06 12:19:57-05 257 lindakolaya Linda Kolaya lindakolaya@example.com sha1$de0e4$c90cce18bd98fdac257b3cddf45c21c7a63c35dc f t f 2010-05-10 10:05:44.672017-05 2010-05-10 10:04:12-05 255 jepco24_sbcglobal_net james jannusch jepco24_sbcglobal_net@example.com sha1$37e21$4d086c40357873fc8de4832d982a04e050ea82af f t f 2010-05-07 07:13:09.989766-05 2010-05-07 07:13:09.980473-05 256 angie Angela McMahon angie@example.com sha1$35635$68327b0ed7ab2c06525fbe2276a7a16b49022851 f t f 2010-09-02 09:25:54.446198-05 2010-05-09 12:17:12.091241-05 251 marymeg0 Mary Fecht marymeg0@example.com sha1$e51ee$1779360cd067f070fc84ef3df72eaafe5fe417cd f t f 2010-05-09 21:56:20.031852-05 2010-05-06 10:20:30.841832-05 260 janetderrick Janet Derrick janetderrick@example.com sha1$44d35$46a2cd69c52c878ab0faeabbee322a23472f16b6 f t f 2010-11-01 12:19:00.846052-05 2010-05-10 14:46:22-05 258 jnania John Nania jnania@example.com sha1$9fd05$948bb69837bf453c3ce3dabbe22d0dda98bb1011 f t f 2010-05-10 11:19:27.140968-05 2010-05-10 11:19:27.131366-05 259 jimraaf Jim Raaf jimraaf@example.com sha1$5effb$be8bc0d1afcdc1b74bcb9381821f87a8e579c480 f t f 2010-05-10 11:46:39.543407-05 2010-05-10 11:46:39.534618-05 244 tpiczkowski Tim Iczkowski tpiczkowski@example.com sha1$50917$5ae0fe5f9ec501f4dd0abc434ff2c1d999665766 f t f 2010-06-01 06:53:00.991497-05 2010-05-04 16:14:56.204626-05 262 mbglenn Mary Beth Glenn mbglenn@example.com sha1$55058$164e49c84714179828217e82b28b5567392df409 f t f 2010-05-12 10:03:51-05 2010-05-12 10:03:51-05 263 lgreen526 Lynne Green lgreen526@example.com sha1$b5f4d$314e88492d9f528b6db267d591916420883c8eda f t f 2010-05-12 10:10:37.172391-05 2010-05-12 10:10:37.162755-05 265 mdorn Matt Dorn matt.dorn@gmail.com sha1$2d931$12829ed51f81b753373943d54597a5b722937b5d t t t 2010-11-19 17:55:05.767689-06 2010-05-12 15:51:45-05 226 kirksaflarski Kirk Saflarski kirksaflarski@example.com sha1$fee67$1d25949a057ccc9d0356e5f9c3390abf943b8f7b f t f 2010-09-22 13:33:52.833264-05 2010-04-29 11:00:24.429119-05 266 tchannell Todd Channell tchannell@example.com sha1$411f7$163236d664674b7805b51e65f9c40257416b3c96 f t f 2010-05-13 11:33:18.213094-05 2010-05-13 11:33:18.203564-05 307 tommoran Tom Moran tommoran@example.com sha1$db869$ec85b64625be38ec92868fe0ba64c24cd85062c0 f t f 2010-10-14 15:36:24.935941-05 2010-06-04 11:32:46-05 281 dawfletch Debra Fletcher dawfletch@example.com sha1$87ad2$6c6ef856d6b3f603b4947abea799326d8a2973fd f t f 2010-05-20 08:20:01.537702-05 2010-05-20 08:20:01.528097-05 268 abarrett826 Amy Briddick abarrett826@example.com sha1$cbb83$305b08f3fd23602a9ab8f208ba05543865dc988c f t f 2010-05-13 12:51:10.013316-05 2010-05-13 12:40:47.67086-05 269 darcyhorath Darcy Horath darcyhorath@example.com sha1$39cc8$751f883abd8b5741380a0dbf5aa62b046a559bf6 f t f 2010-05-13 22:12:03.105364-05 2010-05-13 22:12:03.096183-05 285 madelenebernar Madelene Bernar madelenebernar@example.com sha1$8fb2a$bfbc0ad80ff9c298c0b7be00ccf1d15342914ce4 f t f 2010-09-14 14:42:01.427837-05 2010-05-21 10:12:12-05 270 nicolle Nicolle Austin nicolle@example.com sha1$472c8$5bf3dd99b8134b22a0d8b1bbf8a5247f92068a46 f t f 2010-05-14 13:22:33.941756-05 2010-05-14 13:22:33.932688-05 271 rskurz Ray Kurz rskurz@example.com sha1$c7085$3e43531f87779f3a746da116919a4889d67a6ad4 f t f 2010-05-14 15:34:14.87094-05 2010-05-14 15:34:14.861372-05 292 meredithcouling Meredith Couling meredithcouling@example.com sha1$eeb72$6d8e338f6542ba715ca8786e1a7688e84175d2af f t f 2010-05-25 14:37:58.903092-05 2010-05-25 14:37:58.893478-05 272 williamheffernan William (Bill) Heffernan williamheffernan@example.com sha1$8769e$3226c0c498b0996a7d0f23090b0fb57ca3b529bd f t f 2010-05-14 15:52:28-05 2010-05-14 15:52:28-05 273 goddessofjodum Jodie Hurckes goddessofjodum@example.com sha1$72cfd$c1276c5a43e21aa1f98af1f1a67be29e5298bb65 f t f 2010-05-17 10:57:05.346672-05 2010-05-17 10:57:05.337168-05 274 aengfer Angela Engfer aengfer@example.com sha1$fcb3a$c59956d64c66283279bc9c85a31f416624c85a6e f t f 2010-08-18 12:33:07.609852-05 2010-05-17 11:07:42-05 283 andrewmattila Andrew Mattila andrewmattila@example.com sha1$2a6eb$beeb9709975734175549d984e6c2c6142ec263f9 f t f 2010-05-20 13:45:48.541685-05 2010-05-20 12:48:44.437255-05 276 pkbulger Michael Bulger pkbulger@example.com sha1$0fb23$d42f9107d9ff7e6fa482bcced0b3f25554c28ca2 f t f 2010-05-18 13:54:41.601227-05 2010-05-18 13:54:41.591538-05 277 danielroebke Daniel Roebke danielroebke@example.com sha1$3a621$caffe73ac27e005a182418d0916800d991503c5b f t f 2010-05-19 10:49:32.47476-05 2010-05-19 10:49:32.465767-05 301 chifrank Ethan Franklin chifrank@example.com sha1$2bfe3$a2a188dbf00d1c9eddf1950e7cde9bc5ed87128b f t f 2010-05-31 09:16:55.699086-05 2010-05-31 09:16:55.690184-05 284 anajeiram Jana Anderson anajeiram@example.com sha1$39e96$dd6ee86b31409a0ce1734a5d6753602b0f73196d f t f 2010-05-20 14:57:47.949663-05 2010-05-20 14:57:47.940484-05 286 dpojman Dave Pojman dpojman@example.com sha1$c9e0c$8b15c8cd36b27e837be98546b9de77cafe369b0e f t f 2010-05-21 13:32:09.447567-05 2010-05-21 13:32:09.438466-05 279 wbessette Wayne Bessette wbessette@example.com sha1$97265$4c11d60a73ddf5465b02185a3f359e7246134f21 f t f 2010-05-19 14:27:04.517601-05 2010-05-19 14:11:43-05 280 jbab9496 Rob Blair jbab9496@example.com sha1$c7eac$2d2169b7e0c857f14e6e080b96fa0b62b26e8d9f f t f 2010-05-19 18:27:07.312639-05 2010-05-19 18:27:07.303301-05 287 mjlicht Michael Licht mjlicht@example.com sha1$ee6ee$3b9b6bea91850731f25738c124bb95df66a952ce f t f 2010-05-22 20:52:12.189511-05 2010-05-22 20:52:12.180071-05 305 kwis3 Christine Gonda kwis3@example.com sha1$33dda$b6035122138e0b31b33e35e0c8b787a8b2f748cc f t f 2010-06-02 13:31:16.111838-05 2010-06-02 13:31:16.102395-05 294 chultquist Chris Hultquist chultquist@example.com sha1$922a0$2238b23bfcf57b250034720e477b2e939356f610 f t f 2010-05-26 11:20:37.31063-05 2010-05-26 11:20:37.301385-05 298 mrebmann Matthew Rebmann mrebmann@example.com sha1$ca44a$fe3aaf095ea97da228e82c71bf98e38cd4fb1b23 f t f 2010-05-28 12:40:33.031129-05 2010-05-28 10:10:49-05 312 markrice Mark Rice markrice@example.com sha1$e0d18$8d77ffb43bce09e62c9258522a7c3c627b76de6e f t f 2010-09-23 10:31:50.880137-05 2010-06-08 09:55:32.325386-05 275 mallen Michael Allen mallen@tix4cause.com sha1$89af8$be656ae3096bd05afa0942d49ff8185d0800f261 t t t 2010-08-11 13:12:32.625111-05 2010-05-17 13:02:37-05 291 gailniermeyer gail niermeyer gailniermeyer@example.com sha1$1ba56$78a976c243581f6c6ef7b61839b8751063c335da f t f 2010-05-25 10:29:25.185134-05 2010-05-25 10:29:25.175682-05 289 nboden Natalie Boden nboden@example.com sha1$8e3ef$211d47b2c9e29d392afedb20316e7126c3396f26 f t f 2010-05-25 10:52:09.489468-05 2010-05-24 15:31:30-05 302 Ptanzillo Paul Tanzillo Ptanzillo@example.com sha1$c7dd8$4e1c42a34c0458864e1dc032b99e946aa90c188a f t f 2010-06-01 10:32:39.228472-05 2010-06-01 10:25:34-05 295 chrishultquist Christopher Hultquist chrishultquist@example.com sha1$d7397$fa087feaf5a06abc4bd18dd1d436605d22353a07 f t f 2010-07-30 12:04:24.280813-05 2010-05-26 20:59:21-05 296 pmorich Peter Morich pmorich@example.com sha1$a0b81$541aa5f82b5c1a942d3e0dcfdf3df98e45b55da8 f t f 2010-05-27 10:56:59.175298-05 2010-05-27 10:56:59.165634-05 309 ccbiggz Craig Morris ccbiggz@example.com sha1$79e94$4e73c30fcb36d6f481a3df6d2eabbcc91c3d0c43 f t f 2010-06-05 12:53:18.046663-05 2010-06-05 12:53:18.037683-05 297 dancasey Dan Casey dancasey@example.com sha1$36423$d59f2247be2be12f1fce712e5c8638bf7168370c f t f 2010-05-27 14:10:07.061206-05 2010-05-27 14:10:07.052232-05 300 rotten_robby Rob Henderson rotten_robby@example.com sha1$81c2b$67a9d53d0710794c81a7b7a722a91a7b6f2d1a92 f t f 2010-05-29 10:54:29.133446-05 2010-05-29 10:54:29.124538-05 282 sarmbruster Stevie Armbruster sarmbruster@example.com sha1$6d700$6a254b191c70b2e90fb8f1cc7aba7545e562f654 f t f 2010-11-01 11:02:52.315926-05 2010-05-20 11:22:49-05 304 lleidinger-avila Loren Leidinger-Avila lleidinger-avila@example.com sha1$2c98b$32010275d5ad1cfa4de2300bbe2b9b453237f1b0 f t f 2010-06-01 15:28:50-05 2010-06-01 15:28:50-05 299 bmarks Bob Marks bmarks@example.com sha1$a631c$0ca55075418c4174ea8ef6af393580721c4cb883 f t f 2010-06-02 11:47:00.198819-05 2010-05-28 13:52:28-05 308 sweetkiki143 Karen Sweeney-Lemus sweetkiki143@example.com sha1$ebde0$f2f7fa0bca989ad4b848b791435e9d984458ea58 f t f 2010-06-04 22:43:34.381572-05 2010-06-04 22:43:34.371992-05 310 rholdredge Rosemary Holdredge rholdredge@example.com sha1$a2a10$b43ccea35553830212a29860a62c48c28d271c54 f t f 2010-06-07 12:54:08.880374-05 2010-06-07 12:54:08.870816-05 311 jonresnick Jon Resnick jonresnick@example.com sha1$a0eba$8d7fc776342869b972a8aea90f39fb9ffbb60f77 f t f 2010-06-07 15:25:19.106462-05 2010-06-07 15:09:17.529673-05 290 tmaki Tracy Maki tmaki@example.com sha1$8cf64$189462103a0f60346213bb236e1ff94460ce3907 f t f 2010-06-08 11:19:30.830072-05 2010-05-25 09:57:41-05 306 deborahtrippiedi Deborah Trippiedi deborahtrippiedi@example.com sha1$8b2cc$1fab79e98e7863e876e2cce406ef6400f55b53aa f t f 2010-10-08 07:02:08.853671-05 2010-06-02 15:49:36-05 313 joelkirstein Joel Kirstein joelkirstein@example.com sha1$219ff$128b73dd588a50e2f6f7272bc5aa337a433b2853 f t f 2010-06-08 15:33:19.863738-05 2010-06-08 14:07:00-05 303 katiekautza Katie Kautza katiekautza@example.com sha1$df212$2775c94dbbfff2a8a4a1a0a48da4cbb9e6ecebb2 f t f 2010-07-28 14:54:56.08546-05 2010-06-01 14:45:33.86381-05 314 shawngavin Shawn Gavin shawngavin@example.com sha1$3bf1a$5d6308f483fc73c9dc391ac0fe449e8f9011b842 f t f 2010-06-09 11:28:34-05 2010-06-09 11:28:34-05 315 paultanzillo Paul Tanzillo paultanzillo@example.com sha1$11923$bd21f49da2d53eaf661ee6e64f1e2d945452c338 f t f 2010-06-10 13:38:19.158745-05 2010-06-09 11:30:30-05 288 kkautza Katie Kautza kkautza@tix4cause.com sha1$3e295$331060c71c638d134ffa18f521fd3f256f7cf664 t t t 2010-08-13 11:37:54.236551-05 2010-05-24 09:56:39-05 267 audramoran Audra Moran audramoran@example.com sha1$8335e$caa60c3c3c357fc7238ece8f478a83a4f8a4a53f f t f 2010-07-23 09:14:34.51879-05 2010-05-13 12:26:57-05 316 brianduggan Brian Duggan brianduggan@example.com sha1$4bb54$1b8b271db62bb67cf9659763fa1a2caef82fcb7d f t f 2010-06-11 10:36:14.08973-05 2010-06-11 10:36:14.0802-05 317 Lizlong Liz Long Lizlong@example.com sha1$73a73$4336529cb5a0d3127e2627ddabf6873ca927a861 f t f 2010-06-11 11:28:59-05 2010-06-11 11:28:59-05 318 jimfrench Jim French jimfrench@example.com sha1$a5707$6b5f25f354a7373ea5519079766e9e5dfaf11466 f t f 2010-06-12 07:22:14.504656-05 2010-06-12 07:22:14.494735-05 319 mpc1535 Michael Chan mpc1535@example.com sha1$714fa$1fa1aac13641621dc702665e0c27f985f265ff82 f t f 2010-06-13 17:11:31.816697-05 2010-06-13 17:11:31.807507-05 351 lavner Lindsay Avner lavner@example.com sha1$e0c74$0f4a58a9c656208b548b82ee38a7fc926b6b8162 f t f 2010-08-30 14:02:45.251317-05 2010-07-13 16:32:25-05 320 freebird9r Leslie Free freebird9r@example.com sha1$9e9eb$781af7db875e1de2a904a46dad754697bb74c02c f t f 2010-06-13 23:00:34.245964-05 2010-06-13 23:00:34.236947-05 339 colleenbraid Colleen Braid colleenbraid@example.com sha1$e21aa$422d24377d387b649b66c994178062269228c1f8 f t f 2010-07-02 16:50:18-05 2010-07-02 16:50:18-05 322 pigsrule C Whalen pigsrule@example.com sha1$084fe$f1dc5c84c075f833811b1e1c2efb212596aa67be f t f 2010-06-14 12:12:11.582327-05 2010-06-14 12:12:11.573666-05 323 Jdoe Jdoe@example.com sha1$bd968$2e56ce0e9d8b7a333a31819c0549c41ef8c0e985 f t f 2010-06-15 10:20:36.945545-05 2010-06-15 10:20:36.945554-05 333 ckolodziej Caren Kolodziej ckolodziej@example.com sha1$e93f8$4addbfa2a29bd55a46beb96c20f336aa85e84ae8 f t f 2010-08-23 14:15:06.216954-05 2010-06-24 11:20:40-05 335 shivanshpandey86 shivansh pandey shivanshpandey86@example.com sha1$6a291$7a200d9b4415af61b54354c6ec437d6a6d6a3d38 f t f 2010-06-29 23:44:52.8424-05 2010-06-29 23:44:52.830664-05 325 kendallbox Kendall Drew kendallbox@example.com sha1$e261d$c16a6681f62265416b4a2ad67f1e8fd2687cf118 f t f 2010-06-16 09:02:08.047625-05 2010-06-16 07:19:55.930596-05 326 rkaffka Richard Kaffka rkaffka@example.com sha1$abb7f$3ab1ee4adbf5ee8e4ce8e334264211a05cfadb04 f t f 2010-06-16 10:51:58-05 2010-06-16 10:51:58-05 340 rjpatter Jason Patterson rjpatter@example.com sha1$bb4e8$08bdd8a96a112535d42c090d47ce7116b31612ea f t f 2010-07-05 10:05:37.753221-05 2010-07-05 10:05:37.741935-05 321 mbucek Monica Bucek mbucek@example.com sha1$2ab29$d190ea57bcd25d1e8df232f9322eea63dfd31e6e f t f 2010-06-17 10:56:18.922082-05 2010-06-14 11:48:47.761154-05 328 kmcappelletti Kelly Cappelletti kmcappelletti@example.com sha1$158b4$80d42d83ded7aa3544a28f05a560737b7fb3a24e f t f 2010-06-17 21:42:08.831311-05 2010-06-17 21:42:08.820405-05 336 eschmidt17 Eric Schmidt eschmidt17@example.com sha1$1634a$e32df2e7b70c7333afaab0ab8be1d5c3249a3203 f t f 2010-06-30 12:41:18.219943-05 2010-06-30 12:41:18.208711-05 329 glenndomovic Glenn Domovic glenndomovic@example.com sha1$952be$1289759282144bd0e3e2cc26d91f91f0c4919590 f t f 2010-06-18 09:50:26.280934-05 2010-06-18 09:50:26.269659-05 331 lynnekurdziel Lynne Kurdziel lynnekurdziel@example.com sha1$9ab25$69162c46ca322069bb5efa9bda537edf4900903f f t f 2010-06-23 14:55:45-05 2010-06-23 14:55:45-05 341 mortonbarb Barbara Morton mortonbarb@example.com sha1$577b4$4f37fbdf004b1ba45b47f1b782995476eb14f622 f t f 2010-07-05 11:30:29.913363-05 2010-07-05 11:30:29.903143-05 342 crosa Colleen Rosa crosa@example.com sha1$b4443$e45a76b3fce6efd0c03fcf6c5c068c6ec46185cf f t f 2010-07-06 14:44:13-05 2010-07-06 14:44:13-05 332 bburgstone Bobbi Burgstone bburgstone@example.com sha1$07331$9f76ffc3f83f79aa12636d510dce405475deaf96 f t f 2010-09-20 13:06:10.468696-05 2010-06-24 10:06:00-05 343 nacevedo Nelson Acevedo nacevedo@example.com sha1$7c725$3e043a97cf145f816515c60dfc6642527d82eb9d f t f 2010-07-06 15:07:05-05 2010-07-06 15:07:05-05 357 Test Test@example.com sha1$0d793$33b83821acdbee67ec62f39758ded4df7f1b0941 f t f 2010-07-20 11:29:52-05 2010-07-20 11:29:52-05 338 rblum Robert Blum rblum@example.com sha1$4c5ae$bc08c77d85c6a936d66418cea7d2639e1514c14e f t f 2010-06-30 20:30:20.712051-05 2010-06-30 20:30:20.701093-05 347 nileno Leah Sanzeri nileno@example.com sha1$c5de1$9c780a4af8567322e50432c0b2bf0b5ba027b41f f t f 2010-07-08 21:11:35.78038-05 2010-07-08 21:11:35.769645-05 327 yellowtypebrett Brett Krueger yellowtypebrett@example.com sha1$e2720$bb5c335da79356ca879bb9445839b79254a172e8 f t f 2010-07-09 19:49:08.2617-05 2010-06-16 19:38:25.199627-05 353 dthielmann Daniel Theilmann dthielmann@example.com sha1$b33dc$e4e621cd83eea1e85b1df3b458cf51a99ffd3e02 f t f 2010-07-15 14:18:45.871335-05 2010-07-15 14:16:36-05 355 timmbellazzini Timm Bellazzini timmbellazzini@example.com sha1$bdc2f$c2bdb28c05228cb28ad349aacce92b7891cce0d4 f t f 2010-07-16 10:03:53.48674-05 2010-07-16 10:03:53.475588-05 345 allisonthomas Allison Thomas allisonthomas@example.com sha1$e62b3$b7dc3a23cc25bb838314930eca20756e4fa99689 f t f 2010-07-08 11:07:53.687339-05 2010-07-08 10:26:53-05 346 ganchca Ted Ganchiff ganchca@example.com sha1$95454$d3ab291efa5ab45cff4cf261fc53281aa1b19a0f f t f 2010-07-08 11:58:11.24026-05 2010-07-08 11:58:11.229513-05 349 mkbetz Mary Kay Betz mkbetz@example.com sha1$2dc45$1aa70aa13d9ebd8bd56ac8c81af38e8850dce529 f t f 2010-07-19 10:54:17.401036-05 2010-07-13 14:44:46-05 350 memason Mary Ellen Mason memason@example.com sha1$8efff$f26630734fee86553002f5ef0954e3f96ee4558d f t f 2010-07-13 15:22:15.345752-05 2010-07-13 15:21:03-05 352 elizabethmazur Elizabeth Mazur elizabethmazur@example.com sha1$92fa5$9b02edb705f999d15876dbc9bac8dae9887da8ea f t f 2010-09-07 16:11:56.19738-05 2010-07-15 13:14:09-05 110 juliehasel Julie Hasel juliehasel@example.com sha1$524ba$323706b2757079e8af336338097b96e35b5b99af f t f 2010-08-27 10:39:44.573307-05 2010-03-03 13:56:48-06 337 ogant Tim Ogan ogant@example.com sha1$3a06a$2f554b95f7f712112eefeb0c56b59625b90599ac f t f 2010-08-09 15:24:09.578429-05 2010-06-30 15:53:57.863442-05 358 mimileclair Mimi LeClair mimileclair@example.com sha1$4bee5$f2f510b33ded14aa6299e1b9d13389410ab0cdff f t f 2010-07-20 16:31:53.587458-05 2010-07-20 15:00:51-05 354 packerslaw H L Nelson packerslaw@example.com sha1$f2e68$5e560403b71fcd09044b16056b747059416371a6 f t f 2010-07-15 23:03:12.175804-05 2010-07-15 23:03:12.164375-05 356 frjimschwab Jim Schwab frjimschwab@example.com sha1$ce4cb$217f7f6a0b0895b8ff6686dd908d535fc890d09d f t f 2010-07-19 17:27:39.489805-05 2010-07-19 17:27:39.479137-05 359 kellyptacek Kelly Ptacek kellyptacek@example.com sha1$981be$6e2003213ef7be819e3c57001ff2fef38539acb1 f t f 2010-07-20 15:03:16-05 2010-07-20 15:03:16-05 360 ngershon Neil Gershon ngershon@example.com sha1$e33ff$d23cc766b611cddc0997977e960420fa5afc5301 f t f 2010-07-20 15:16:49.841105-05 2010-07-20 15:16:49.829624-05 361 mccarthy James McCarthy mccarthy@example.com sha1$5aaf8$bed07eb1aafc1c1c0b388a29eb6baa0ffe8fb4dc f t f 2010-07-20 16:57:56.738313-05 2010-07-20 16:57:56.727511-05 362 sueburstein Sue Burstein sueburstein@example.com sha1$48e64$1618a1ada9f5dc70f619e805b0c84e4c232fa26d f t f 2010-07-21 14:29:59-05 2010-07-21 14:29:59-05 348 allegrettim Marguerite Allegretti allegrettim@example.com sha1$86236$af5d172b2c3077d55b07cc0a84e123fd5294204a f t f 2010-07-21 16:35:51.755949-05 2010-07-13 13:27:58-05 363 dbthornton David Thornton dbthornton@example.com sha1$6c0a0$38f801fea02160978e0d2b23c7dc6e856acb4e94 f t f 2010-07-22 10:24:25.132983-05 2010-07-22 10:24:25.122634-05 364 gordontjohnson Gordon Johnson gordontjohnson@example.com sha1$b5f17$d4e57678393feae66c835cc653fd2ed093c2d0ca f t f 2010-07-22 10:48:46.490725-05 2010-07-22 10:48:46.480246-05 334 Jimsheehan Jim Sheehan Jimsheehan@example.com sha1$05be2$dac7dcacf40af29bfd853be7ba49ece11cb20c03 f t f 2010-08-23 10:43:53.098845-05 2010-06-24 11:46:42-05 390 danldever Daniel Dever danldever@example.com sha1$e8cb6$7dc800cff80ea5fc18531f977b83df1cb91ad5ae f t f 2010-08-05 10:11:58.326034-05 2010-08-05 10:11:58.314523-05 382 marcells Jeff Lowell marcells@example.com sha1$29b29$8a8d559c09f2731cbccc67dead2d73936557e2ea f t f 2010-08-02 11:39:54.856231-05 2010-08-02 11:39:54.845191-05 366 morganhenington Morgan Hennington morganhenington@example.com sha1$dfb81$3bfa0bfa288b8da7caa41130ef564f39197e6914 f t f 2010-07-23 10:00:34-05 2010-07-23 09:57:05-05 367 glolan Gloria Lange glolan@example.com sha1$85b7a$1e6b316754b214b9daa2e5560a2e8a614720bccf f t f 2010-07-23 10:37:52.558979-05 2010-07-23 10:37:52.54807-05 368 maribethcleary Maribeth Cleary Rosenthal maribethcleary@example.com sha1$6e47b$5585c76c25dcf07ef38b9c0e28db9e1f41007f9f f t f 2010-07-23 11:24:02-05 2010-07-23 11:24:02-05 369 ashleyparr Ashley Parr ashleyparr@example.com sha1$6c328$e64b339bd222578a0a7fb2f887bb0510336cca3c f t f 2010-07-23 20:48:14.26934-05 2010-07-23 20:48:14.258931-05 398 gervase1 Mike Gervase gervase1@example.com sha1$43b47$c44559aa65ae20002125e33b2a2be874f8e5fa4b f t f 2010-08-07 09:33:00.416288-05 2010-08-07 09:33:00.405666-05 383 MichaelSullivan Michael Sullivan MichaelSullivan@example.com sha1$95d3c$b6b0216612acd48135e79939fb5897c32f56eaab f t f 2010-08-02 14:36:47-05 2010-08-02 14:36:47-05 371 becky Becky Oldham becky@example.com sha1$5d9da$2b4c0fcc743a456e68b32f5514148e1e9453e202 f t f 2010-07-26 14:28:40.202107-05 2010-07-26 14:28:40.191006-05 372 daynabernard Dayna Bernard daynabernard@example.com sha1$78ada$0e73ded5df9dda478941bfb119281e871c421591 f t f 2010-07-26 15:42:10.274122-05 2010-07-26 14:39:25-05 373 kand1831 nancy allen kand1831@example.com sha1$5d4a1$255225c5438f01d94a2d598ca8e3627e43482c5a f t f 2010-07-27 14:50:43.771041-05 2010-07-27 14:50:43.760204-05 374 shondellmh shondell houston shondellmh@example.com sha1$3acc8$08fb5b99c9e5c3fbc4f0895e879729b8498bcfc9 f t f 2010-07-28 00:20:30.667681-05 2010-07-28 00:20:30.65729-05 391 maureenconnelly Maureen Connelly maureenconnelly@example.com sha1$38f90$b6d2a6ba7ae1f1fbaf45e59853f8dac56a42191b f t f 2010-08-05 12:10:56.088584-05 2010-08-05 12:06:15-05 376 khale Kyler Hale khale@example.com sha1$fb84f$b87e81eafce4a48f0d1a6782c9b86253733dad52 f t f 2010-07-28 09:29:37-05 2010-07-28 09:29:37-05 399 agewurz Anita Gewurz agewurz@example.com sha1$4521b$8a8b056b8eb90b665c8fc9fdfcff6efffe1dda10 f t f 2010-08-07 10:13:24.3169-05 2010-08-07 10:13:24.306695-05 377 jeremyfoster Jeremy Foster jeremyfoster@example.com sha1$85a4f$78452ad5545d2757f5c3e9a0cda4d39701abc244 f t f 2010-07-29 11:40:18.381585-05 2010-07-29 11:31:46-05 378 giedre Giedre Trahan giedre@example.com sha1$02ec5$c307253b39d7903ee5f15ac69ae654cbfe0bb5a2 f t f 2010-07-29 14:06:25.864409-05 2010-07-29 14:06:25.853578-05 392 mrosenthal Mary Beth Rosenthal mrosenthal@example.com sha1$d6d6e$1511166c55e974e8c4a7a7e79005407665c2396e f t f 2010-08-05 13:39:24.663353-05 2010-08-05 13:38:23-05 379 boxoffice Brian Lynch boxoffice@example.com sha1$3a39e$6fc7c13eaff1eba62b2f6a329da79d0714ed3cd8 f t f 2010-07-30 20:02:30.984982-05 2010-07-30 20:02:30.973033-05 380 schumajm Jim Schumacher schumajm@example.com sha1$caa72$d38e05e604fba7c47ea8436bf1a482f673a98eba f t f 2010-08-01 14:09:33.106596-05 2010-08-01 14:09:33.095681-05 381 joegelchion Joe Gelchion joegelchion@example.com sha1$c359d$04b5cd96e27f22ad8377f9d7a22b9c9bf380d51a f t f 2010-08-02 10:09:39-05 2010-08-02 10:09:39-05 386 alessard Adrienne Lessard alessard@example.com sha1$27ee0$6a1a8fb6874ff6c6c8ed8966327d7955c3dd7e07 f t f 2010-08-04 14:40:17.730864-05 2010-08-04 13:51:37-05 385 brianbrewer Brian Brewer brianbrewer@example.com sha1$458bb$a3cb88e68d9ecd7b647009199f437608c2b92444 f t f 2010-08-04 11:03:38-05 2010-08-04 11:01:51-05 388 bonniemjohnson Bonnie Johnson bonniemjohnson@example.com sha1$ce1f8$149f24ac02bb96b20de5076b46301c2f133737fc f t f 2010-08-04 15:39:04-05 2010-08-04 15:39:04-05 393 carlosfournier Carlos Fournier carlosfournier@example.com sha1$672cd$81becdfd6dca131b4f596b789affff0b6000a076 f t f 2010-09-29 17:07:18.983789-05 2010-08-05 16:29:28-05 389 irishbayer Keith Bayer irishbayer@example.com sha1$8b913$6e8a93cbd7714bd1811e84ac43ff9b7b4567abea f t f 2010-08-04 17:53:32.325543-05 2010-08-04 17:53:32.3149-05 394 stephanieheller Stephanie Heller stephanieheller@example.com sha1$4d050$fcbe1b415b03e58fd573047bbf51a2e33c2e0875 f t f 2010-08-05 16:59:04-05 2010-08-05 16:59:04-05 395 ryanbergin Ryan Bergin ryanbergin@example.com sha1$e9293$631978188ebe5fbe56cddb17026d2b0c591a06b0 f t f 2010-08-05 17:48:04-05 2010-08-05 17:48:04-05 400 steve_fischoff Steve Fischoff steve_fischoff@example.com sha1$2bbb9$e650f43d660ae4cafa75de9dabcc3d1533c0f81e f t f 2010-08-17 09:43:10.056483-05 2010-08-07 12:09:31.179737-05 397 joechivari Joe Chivari joechivari@example.com sha1$dd07d$e33d9b1719103353056008836c47480c02355f8e f t f 2010-08-06 16:33:53-05 2010-08-06 16:33:53-05 403 richp Richard Puglisi richp@example.com sha1$3e72a$5c292912c9d2539803f2bc336fc5b921fbae4830 f t f 2010-08-11 21:58:09-05 2010-08-11 21:58:09-05 401 ckos2 Catherine Kos ckos2@example.com sha1$9495b$b1dbce70e64f78f0d7ad517ffb966ea0d200afa0 f t f 2010-08-08 19:00:17.89861-05 2010-08-08 19:00:17.887357-05 410 susanheiserman Susan Heiserman susanheiserman@example.com sha1$88852$dd358a990d29ff85d166fa0a651bfa79f910bb1e f t f 2010-11-12 14:16:04.050455-06 2010-08-18 14:56:36-05 402 mkreinke97 Matthew Reinke mkreinke97@example.com sha1$5707a$8dd2d75f7e9000b2fedf7430f23d35830934274f f t f 2010-08-09 01:32:31.575814-05 2010-08-09 01:32:31.565129-05 396 ericguthrie Eric Guthrie ericguthrie@example.com sha1$2c0ea$b7b7e54402b20c9b8a5567738d439fba5376a1d9 f t f 2010-08-10 14:52:18.235951-05 2010-08-06 16:32:35-05 406 rhapsodylsnyder Rhapsody Snyder rhapsodylsnyder@example.com sha1$15e4d$9d7c36bb2b009ba1793ba6aee1592f28e333963e f t f 2010-08-16 15:03:20-05 2010-08-16 15:03:20-05 408 michelleoconnor Michelle O'Connor michelleoconnor@example.com sha1$59d77$055f07212fa8096848c0e11ea4ed653998db333c f t f 2010-08-17 10:57:29-05 2010-08-17 10:57:29-05 405 BenJohnson Ben Johnson BenJohnson@example.com sha1$709c4$558b66710270a3a96e170cd1362de2237a023791 f t f 2010-08-12 17:33:47-05 2010-08-12 17:33:47-05 409 michellebreedlovesells Michelle Breedlove-Sells michellebreedlovesells@example.com sha1$ee44d$c183a983ed97e4858acefd00d018c1a6e742488d f t f 2010-08-17 12:08:23-05 2010-08-17 12:06:14-05 411 Virginiawise Virginia Wise Virginiawise@example.com sha1$cff8a$1d4ef91eae7be90228928b72bd7a06656659f5e6 f t f 2010-08-18 17:29:38-05 2010-08-18 17:29:38-05 278 adurish Aubrey Durish adurish@example.com sha1$db005$694efdc01c567a13423117bd40a1b7b5ffe6bd00 f t f 2010-08-19 14:09:29.143849-05 2010-05-19 11:50:53-05 412 drjameshawkins Jim Hawkins drjameshawkins@example.com sha1$d482e$3ee36bfab75b22ed2d1b23c4933e686a60087ad5 f t f 2010-08-18 21:27:29.673294-05 2010-08-18 21:27:29.665254-05 384 theresabattaglia Teresa Battaglia theresabattaglia@example.com sha1$963a2$b0276c47b9ade3c50cf6e74e016154ee566fff3b f t f 2010-09-20 10:46:51.841905-05 2010-08-03 15:52:12-05 370 teresabattaglia Teresa Battaglia teresabattaglia@example.com sha1$22f5f$064e17c725074640712ea05c3b933cbed45d86c6 f t f 2010-10-14 10:52:26.780451-05 2010-07-26 12:36:09-05 404 angelajadkins Angela J Adkins angelajadkins@example.com sha1$3a9cf$53e1f0d8794d2c3302ffda91a9565e55f1de138d f t f 2010-10-19 15:27:22.217582-05 2010-08-12 14:33:20-05 413 transhield Patrick Hammes transhield@example.com sha1$009ab$e90b4630fb767cb959d28a95b9d9f8d1df9edaaa f t f 2010-08-19 21:06:58.592448-05 2010-08-19 21:06:58.585504-05 437 joshwhiteside Josh Whiteside joshwhiteside@example.com sha1$a370a$d3b69f0a8ed8a1a7c6529a5d3d2c1190f56299cb f t f 2010-09-03 14:46:23.951413-05 2010-09-02 16:06:46.981282-05 414 epgraham23 Edward Graham epgraham23@example.com sha1$7d080$d5985dc02936b41182d680ca46ec2e1f0533aa7f f t f 2010-08-21 10:35:56.956598-05 2010-08-21 10:35:56.94952-05 430 tngolfgal Cheryl Jenks tngolfgal@example.com sha1$5ac3c$575519f35c707951db97e8f2f6624523286077f5 f t f 2010-08-31 10:12:34.490282-05 2010-08-31 10:12:34.483333-05 416 mmeyer811 Mike Meyer mmeyer811@example.com sha1$6a022$4a58ed665ccc44f3974225ff4f260985f8d777a0 f t f 2010-08-23 13:47:05.139381-05 2010-08-23 13:47:05.132332-05 424 kleisner Katie Leisner kleisner@example.com sha1$17cce$e60d2185a58302439745fd90677c6b9eda829ce0 f t f 2010-10-25 09:37:02.856023-05 2010-08-27 10:58:35.59567-05 417 adamdufault Adam Dufault adamdufault@example.com sha1$80e07$7c461f3c815ee4d0534751d93fc8183cc716ccad f t f 2010-08-23 14:12:40-05 2010-08-23 14:12:40-05 418 juliemurphywiu Julie Murphy juliemurphywiu@example.com sha1$94410$760b7796334452bdbfed9acecccf7e533f7c1f54 f t f 2010-08-24 09:17:21.344472-05 2010-08-24 09:02:31-05 432 jbarker Jim Barker jbarker@example.com sha1$0258c$b8d89a41f50f4a7c2298bc32ffd16f88f461d5fc f t f 2010-08-31 14:37:49.980868-05 2010-08-31 14:37:49.973762-05 415 georgebeutel George Beutel georgebeutel@example.com sha1$0857a$dc2c34d7f49229cbce0bd28ed7eb318f5ef5ef5b f t f 2010-08-24 11:41:19.899733-05 2010-08-23 09:42:31-05 420 marycarson Mary Carson marycarson@example.com sha1$d18d1$ac4b1dcfd51b0fecd77fd7fca27a92e2ec425e93 f t f 2010-08-24 11:55:11-05 2010-08-24 11:55:11-05 439 joefuller Susan Fuller joefuller@example.com sha1$54c67$2af63ac93ca16e0e6c7a6b2e9b2af9d725fe3283 f t f 2010-09-04 14:26:12.37299-05 2010-09-04 14:26:12.365319-05 433 tbuscemi Tony Buscemi tbuscemi@example.com sha1$b70ed$b25e2b9d8b8eec8aed184c6eb3b35a17e1a80557 f t f 2010-08-31 16:30:26.922218-05 2010-08-31 16:30:26.915539-05 421 ejfournier8 E.J. Fournier ejfournier8@example.com sha1$6792a$dcae32e47c200987df7314ef14f38d16326aa6fd f t f 2010-08-24 18:56:33.857021-05 2010-08-24 17:40:27.61727-05 422 mikebrick Mike Brick mikebrick@example.com sha1$d6257$8681631961fa13e65fc50e8a55c9847d4d5ee241 f t f 2010-08-25 10:54:50-05 2010-08-25 10:54:50-05 423 lavondawilliams LaVonda Williams lavondawilliams@example.com sha1$dbead$6f41d1c9bc859807be63bb99d48cf4cba4bbac02 f t f 2010-08-26 16:09:48-05 2010-08-26 16:09:48-05 425 alanlatshaw Alan Latshaw alanlatshaw@example.com sha1$75b8d$f55edae82973bd01b428820378dcc5a4dd9a10e9 f t f 2010-08-27 11:39:50.195687-05 2010-08-27 11:39:50.188539-05 426 scottsouthwell Scott Southwell scottsouthwell@example.com sha1$0e99f$ea402c74c07033a604b53b29c03bd213b4c22404 f t f 2010-08-27 11:51:38-05 2010-08-27 11:51:38-05 434 rjbennett1 Ryan Bennett rjbennett1@example.com sha1$966a9$a1832a3a639dbc0543ffdf08e0810fc376d4b8d9 f t f 2010-09-02 10:03:50.541025-05 2010-09-02 10:03:50.533497-05 427 swashing1963 Sir George Washington swashing1963@example.com sha1$c49fd$6810446e299311b0f721516d75310bf07edfd187 f t f 2010-08-27 16:54:19.69625-05 2010-08-27 16:54:19.6892-05 428 pattipeterson Patti Peterson pattipeterson@example.com sha1$4423c$eea22c04d524cdadbde676b1316fa2d093b43f16 f t f 2010-08-28 10:26:24-05 2010-08-28 10:26:24-05 440 novitsky Jim Novitsky novitsky@example.com sha1$70f67$6092eec7b724ef8b95b865639a3f2f78fb4fb454 f t f 2010-09-05 22:29:53.356941-05 2010-09-05 22:29:53.349532-05 445 elginbiz Nancy Potter elginbiz@example.com sha1$8caa1$216096724d12e3420d98c31f48b17e857be04269 f t f 2010-09-12 21:40:45.191058-05 2010-09-12 21:40:45.183822-05 436 christaselig Christa Selig christaselig@example.com sha1$61db2$a42e60a89534845904779555242e0517786dd73e f t f 2010-09-02 14:37:04.543182-05 2010-09-02 14:37:04.535674-05 441 hpickerl Margo Pickerl hpickerl@example.com sha1$5b048$5a8cc034ade7f2baad7b849b58c1fdba732e797b f t f 2010-09-06 12:58:59.422886-05 2010-09-06 12:58:59.415681-05 454 seck11 Stephen Eck seck11@example.com sha1$5a66b$9d2ab205af0e1f2c5807a5f78b59a9f8fee2a00e f t f 2010-09-22 09:40:19.164545-05 2010-09-22 09:40:19.157426-05 443 jkeogh Jill Keogh jkeogh@example.com sha1$1ecbb$d0053a1874a22e1896f37188f0e6ce68cba66864 f t f 2010-11-08 15:19:27.169245-06 2010-09-10 09:54:55-05 438 jdno123 Jennifer Nojiri jdno123@example.com sha1$917aa$2a00e701bcd80fbc7fddc6d083d0e5c31c6f09c3 f t f 2010-09-03 08:48:29.471482-05 2010-09-03 08:48:29.4643-05 435 pixie19638 julie williams pixie19638@example.com sha1$a7711$50e21bdbdaa7376745527365c41716cc524e0000 f t f 2010-09-03 09:12:16.411318-05 2010-09-02 12:15:49.992325-05 448 chaner Eric Chan chaner@example.com sha1$e178f$7adeb3630013989c954a66b51a39e2bb98d543b2 f t f 2010-09-17 09:50:11.090776-05 2010-09-16 17:17:43-05 446 mlbuffo Lisa Buffo mlbuffo@example.com sha1$392ff$d0d0ce072cbd57a94fac114ecbc0ff5f0861f595 f t f 2010-09-15 21:33:50.826379-05 2010-09-15 21:33:50.782136-05 431 susanhalford Susan Halford susanhalford@example.com sha1$42f90$a782e3afd726d0d6e4834d5bb8b7e7d651de958b f t f 2010-11-10 14:50:09.476296-06 2010-08-31 10:14:43-05 447 gabrielanello Gabriel Anello gabrielanello@example.com sha1$09710$40720915b0d8dfc5df2000ab07caf02d31fe2d93 f t f 2010-09-17 14:40:35.087805-05 2010-09-16 16:48:46-05 449 meghanmoreno Meghan Moreno meghanmoreno@example.com sha1$0cecb$47391a3cf4e6c213a286fdaa07b47023df329a82 f t f 2010-09-20 11:34:06-05 2010-09-20 11:34:06-05 453 quixcfo Daniel Gorey quixcfo@example.com sha1$e0824$08b13eb849c7dc7178434941c46fb940ae08bcfb f t f 2010-09-21 17:26:31.660573-05 2010-09-21 17:26:31.652905-05 456 viebranz Scott Viebranz viebranz@example.com sha1$b80cf$9339a370d9d8a4ff035b9b123b9676355d02e7b9 f t f 2010-09-23 11:10:53.854609-05 2010-09-23 11:10:53.84647-05 451 jjaeger John Jaeger jjaeger@example.com sha1$0bb1c$a2035f5f752272343a639a6575fa7b8e7259ae5b f t f 2010-09-20 20:13:58.387633-05 2010-09-20 20:13:58.380438-05 455 roderick Roderick Kelly roderick@example.com sha1$0a2c9$648060d9e0cb4f1ac25249c6735357f1b836ad5d f t f 2010-09-22 17:26:07.235935-05 2010-09-22 17:26:07.228484-05 457 jennihenry Jenni Henry jennihenry@example.com sha1$378b0$eb522f39ad57ed5f63cd788cb30001cb68e149fa f t f 2010-09-29 09:52:11.854359-05 2010-09-24 11:54:02-05 458 ccubed26 Andrew Cores ccubed26@example.com sha1$8f578$b46530eb7a1e559a1c15091431a9ba1cd5154721 f t f 2010-09-27 06:23:55.836367-05 2010-09-27 06:23:55.828772-05 459 rstasi Rita Stasi rstasi@example.com sha1$90b55$5629ef9aa593222adc70859e0eb0713610e4c7ec f t f 2010-09-27 10:10:16.919005-05 2010-09-27 10:10:16.911827-05 461 deschaafk Kevin DeSchaaf deschaafk@example.com sha1$fb1ac$71c9f874e924357374c0922ad042920508155e75 f t f 2010-09-27 10:47:24.719101-05 2010-09-27 10:47:24.711908-05 460 sramirez Susan Ramirez sramirez@example.com sha1$63299$c9a7bdc956bbc6140a34a49a19eca0de76dad255 f t f 2010-09-28 15:06:07.305705-05 2010-09-27 10:25:04.22514-05 462 mlacourciere Michelle Lacourciere mlacourciere@example.com sha1$9936f$775a2fb3e5534ef88c2af3eabba6ec6074ce1570 f t f 2010-09-28 11:27:38.261202-05 2010-09-28 11:27:38.253244-05 463 denniscrowley Dennis Crowley denniscrowley@example.com sha1$06a4c$6f4471d326407ca905956e62c9f2ff929fd2ca60 f t f 2010-09-30 09:18:58-05 2010-09-30 09:18:58-05 464 chandragreer Chandra Greer chandragreer@example.com sha1$cb563$4176ba89a300b9c01ff04552b19cf3d27fde9fc8 f t f 2010-09-30 15:52:11-05 2010-09-30 15:52:11-05 465 rwalker Rick Walker rwalker@example.com sha1$3e64a$83363c808e602cbfc209a6b46b755683fecd406e f t f 2010-10-02 05:17:25.96679-05 2010-10-02 05:17:25.959005-05 474 jlowey John Lowey jlowey@example.com sha1$0de54$6a3e266b0997435cac47c1e43de7a74d92284cd1 f t f 2010-10-12 11:35:44.549324-05 2010-10-12 11:35:44.541967-05 489 blake535 Blake Govan blake535@example.com sha1$5060d$d2ff83a5ac70e0dbcfe51dfee6fda6939d30b18b f t f 2010-10-26 16:52:04.844512-05 2010-10-26 16:52:04.836786-05 504 jpvaile john vaile jpvaile@example.com sha1$bd51a$39b24d68ff3fba9ad5cf3eed3cc62bc9ead215cf f t f 2010-11-08 13:10:57.095672-06 2010-11-08 13:10:57.088439-06 470 lrodriguez Leslie Rodriguez lrodriguez@example.com sha1$1168e$e860292b822e646b7bdaabc4ce6df4e5b78772b8 f t f 2010-10-12 16:33:17.812082-05 2010-10-05 14:33:58.236894-05 484 sorgatz825 Erika Sorgatz sorgatz825@example.com sha1$c84c5$13bc5b22b1169e84d4b4c19e121c2c3b81cb6fc5 f t f 2010-10-21 11:10:09.950148-05 2010-10-21 11:10:09.942495-05 475 jkeogh42 Iskabibble Jones jkeogh42@example.com sha1$8d26d$7e39cac4b72a919a6e01667530ef7366574819cb f t f 2010-10-13 12:15:02.205936-05 2010-10-13 12:15:02.19815-05 485 dunlea Sean Dunlea dunlea@example.com sha1$5c8a0$358cd66a54831e04d8d5b0f43c3e11ec0f3032e3 f t f 2010-10-22 13:37:09.841713-05 2010-10-22 13:37:09.83396-05 466 paulberrettini Paul Berrettini paulberrettini@example.com sha1$42fd0$f94a78a2579b570cdb634ac72f2da0f05b1d5690 f t f 2010-10-04 17:20:33.425565-05 2010-10-04 12:32:57-05 490 devisharma Devi Sharma devisharma@example.com sha1$5adeb$046f6dbc10b6476e7ad00db8a8565d6506286090 f t f 2010-10-27 10:25:28-05 2010-10-27 10:25:28-05 477 eighthgreen RON CIBULSKIS eighthgreen@example.com sha1$f3baa$238e34f089b16e1a1c73115ef9d5dfc338661a4f f t f 2010-10-14 09:34:44.833257-05 2010-10-14 09:34:44.825161-05 469 stacylynette stacy maclowry stacylynette@example.com sha1$0d0f7$342ca0e2b3b747c7d4f7f8ce1000ca367b66c660 f t f 2010-10-05 13:26:01.193677-05 2010-10-05 13:26:01.186368-05 491 kathylally Kathy Lally kathylally@example.com sha1$4f8c9$46fbe0ae71b4f6069e6196ababaeef301df120a7 f t f 2010-10-27 14:21:04-05 2010-10-27 14:21:04-05 495 craignadborne Craig Nadborne craignadborne@example.com sha1$b860a$e1ab59e87bc5f725c6a891f272ef7fd43ec9c7c8 f t f 2010-10-29 17:32:17.36344-05 2010-10-29 17:32:17.355007-05 472 jenna Jenna Dalgety jenna@example.com sha1$92aec$a5d89728fc3fbe26f9899a096157ee526e99245e f t f 2010-10-07 15:57:50.063156-05 2010-10-07 15:57:50.055508-05 478 jeandives Jeanne Naughton jeandives@example.com sha1$9301c$00d9b6a56e9f90ff31ea021f491f09d0bc37d4ce f t f 2010-10-15 10:19:21.854004-05 2010-10-15 10:19:21.845908-05 476 kathryn Kathryn Goetzke kathryn@example.com sha1$cf4e5$ed2036761c9b770599b0f31b0f915c794a394bde f t f 2010-10-23 15:11:32.401062-05 2010-10-13 17:42:50.043096-05 471 pattilarson Patti Larson pattilarson@example.com sha1$c09b3$8efd2f3d02cba97475b1fd98d9d017e6f965cc24 f t f 2010-10-08 17:41:25.959096-05 2010-10-06 13:46:26-05 479 karlierenn Karlie Renn karlierenn@example.com sha1$1ed34$3b5bbf554263b1d93952a7947710a2ea0fed6c8f f t f 2010-10-15 10:31:25.334264-05 2010-10-15 10:21:15-05 473 dselzer David Selzer dselzer@example.com sha1$16081$e6fe277636e27c8295cf50a1aa97ad460f1d51e8 f t f 2010-10-12 09:18:26.070833-05 2010-10-12 09:18:26.063612-05 498 ediehf Edythe Friley ediehf@example.com sha1$c522f$90db79bd3ecfe3ea2bc886feabaa083e6a14afee f t f 2010-11-01 16:46:35.633116-05 2010-11-01 16:46:35.625474-05 480 briancorcoran Brian Corcoran briancorcoran@example.com sha1$25e3c$b27ab3a04ff4fc7c1ac803701196641576c71a5d f t f 2010-10-15 10:39:18.244967-05 2010-10-15 10:38:14-05 481 vwalshrock Vince Walsh-Rock vwalshrock@example.com sha1$96889$8bc336db30342fb591c271c5a8cf9cce8a244525 f t f 2010-10-18 12:47:45.284123-05 2010-10-18 12:47:45.276567-05 486 cogonowski Cheryl Ogonowski cogonowski@example.com sha1$a5f18$fd815668787f8704e38bd8d7e6fde2412ee31239 f t f 2010-10-24 18:20:05.57021-05 2010-10-24 18:20:05.562126-05 488 rmustafa Rubina Mustafa rmustafa@example.com sha1$da740$4126a8b9d0cdf2f474e3d6167df9175332249bc5 f t f 2010-11-02 14:38:34.09034-05 2010-10-26 14:59:27.242687-05 503 dhealy Dan Healy dhealy@example.com sha1$b652c$46ae34be4ee553a9393daddab8151185026a025c f t f 2010-11-07 09:46:55.478914-06 2010-11-07 09:46:55.471143-06 483 lizbrennan lizbrennan@example.com sha1$a2b72$09ca30d4aa576af7bbb02245ef5b20cca212acbf f t f 2010-10-20 09:26:53.113202-05 2010-10-20 09:26:20-05 492 rudge Kevin Rudge rudge@example.com sha1$5077d$c7f769aba705b5da9d2f231ea868daff873b5b29 f t f 2010-10-29 10:36:18.392337-05 2010-10-28 15:52:29.616469-05 487 jkmoffitt Joan Moffitt jkmoffitt@example.com sha1$64f71$c88a1fadc4dd84e2b635a8d9c04a5fece79bf72d f t f 2010-10-24 20:34:09.481396-05 2010-10-24 20:34:09.473899-05 112 LindseyLopez Sara Fichtner LindseyLopez@example.com sha1$3d6d0$e786ef3b110ce7c8ffa7a69ed6c9a4d41d14b624 f t f 2010-10-26 12:36:22.35795-05 2010-03-03 15:54:13-06 501 sharonrivest sharon rivest sharonrivest@example.com sha1$797ad$d8b1d742b0dc21c74b063f97f25b8dfcc9c9570f f t f 2010-11-06 15:55:36.406866-05 2010-11-06 15:55:36.398749-05 468 reginafortushniak Regina Fortushniak reginafortushniak@example.com sha1$fa1f7$1786029afdeca2b5b044298f8ca5245fa1e81d18 f t f 2010-11-17 13:06:15.447041-06 2010-10-04 15:21:48-05 49 maptherapy MICHAEL PESOLA maptherapy@example.com sha1$758ec$86bf653cfc7942a72bd9464fe6e2859e74121e20 f t f 2010-02-10 22:30:27.470077-06 2010-02-10 22:30:27.390077-06 42 bdrendel Brad Drendel bdrendel@example.com sha1$6dc34$d78433b33f77a36b64d6cf594ff4b8da846db523 f t f 2010-02-09 18:06:16.750077-06 2010-02-09 18:06:16.710077-06 59 robinperlen robin perlen robinperlen@example.com sha1$564ad$336badff675f2dd8bf21a1bed0f25ab70a45ccea f t f 2010-02-19 08:25:20.900638-06 2010-02-19 06:31:59.060638-06 61 summerdaze3 Jill Swanson summerdaze3@example.com sha1$5d255$a4812c0c1bc93a215d38df9b638e9526924bf369 f t f 2010-02-19 10:59:51.170638-06 2010-02-19 10:59:51.150638-06 88 jasoneugenehancock Jason Hancock jasoneugenehancock@example.com sha1$a05b3$cc2492e55c4c35a75b5bdb0f465fdba7d7e58868 f t f 2010-03-01 19:18:29.680638-06 2010-03-01 19:18:29.600638-06 117 annettegway Annette Gannaway annettegway@example.com sha1$b0929$0a3cc5ce7eb1c5df58f531ddb0567acbb91d28f3 f t f 2010-03-04 09:06:13.639089-06 2010-03-04 09:06:13.569089-06 142 levellebrown Levelle Brown levellebrown@example.com sha1$c67d1$b0aa4cbf149468a060c90a97937719dffb0a8695 f t f 2010-03-22 19:30:38.267873-05 2010-03-22 19:28:49-05 174 michaelvickery Michael Vickery michaelvickery@example.com sha1$f6bc0$10250361b7f11abae306ca2d53d9bae522c504a2 f t f 2010-04-15 08:16:50.61217-05 2010-04-13 11:52:51-05 173 jalvarez303 Joni Alvarez jalvarez303@example.com sha1$f8852$057c4b66ce1530e777c1aa90369252f9181d10d3 f t f 2010-04-13 10:59:54.168982-05 2010-04-12 19:36:36.537873-05 181 cloudninesterling Mary Jennifer D. Pruim cloudninesterling@example.com sha1$15ac2$8db479b5c56fe904dbdb44c132d2e89ab6473f0f f t f 2010-04-20 17:06:41.617011-05 2010-04-20 17:06:41.608971-05 215 sua106 Sidney Scott Johnson sua106@example.com sha1$98beb$acdd6c5b954433150260fe108415f4d627141ee6 f t f 2010-04-26 19:19:04.189362-05 2010-04-26 19:16:07.2039-05 222 sbleclerc Simon Bujold Leclerc sbleclerc@example.com sha1$9faeb$b49e3036248ec50ff844fe74f0789618b1108557 f t f 2010-04-28 12:39:04.477148-05 2010-04-28 12:39:04.469057-05 230 leadtrader John E. Picchietti leadtrader@example.com sha1$c6b45$fa39270c4f738ace8f17b2afac5f6d371f23be1b f t f 2010-07-21 16:08:06.864781-05 2010-04-30 07:51:40-05 236 terrycicero Terry Cicero terrycicero@example.com sha1$ca58c$dd54c05f328b2e8ebeb8c48fa3eb00ceb6fcb5c7 f t f 2010-11-12 14:43:02.554295-06 2010-04-30 21:41:42.717539-05 293 craigmorris Craig Morris craigmorris@example.com sha1$94d3a$d60fb803bcd29991f916e1357070ac9b2b8a7e71 f t f 2010-05-25 17:37:30-05 2010-05-25 17:37:30-05 324 vbreckenridge Valencia Breckenridge vbreckenridge@example.com sha1$ea383$1a96aec0b379ca79626540a70368e2009f99e983 f t f 2010-07-02 11:13:32.194074-05 2010-06-15 15:13:51-05 330 ssweeney Sharon Sweeney ssweeney@example.com sha1$ff61a$421322f58729879e811293f27d163ec4769ce622 f t f 2010-06-22 14:56:42.757802-05 2010-06-22 14:55:02-05 365 clarenelson125 clare nelson clarenelson125@example.com sha1$9413f$9cd05397a3784fdbbc56c6618f0256cf7670f3c2 f t f 2010-07-22 13:42:39.035947-05 2010-07-22 13:42:39.024896-05 375 jgallisdorfer James Gallisdorfer jgallisdorfer@example.com sha1$95aec$2c2c4150ed8a918fb0de72c45230ff5429cb97be f t f 2010-10-18 13:22:32.822657-05 2010-07-28 09:16:48.258662-05 407 linneaknapp Linnea Knapp linneaknapp@example.com sha1$a6429$1ca9a7ba556b66b1a1c5ab43a1a6926b5d2e7521 f t f 2010-08-17 09:58:54.365766-05 2010-08-17 09:58:54.35818-05 419 scottviebranz Scott Viebranz scottviebranz@example.com sha1$96b04$6ff43695afe79bb4c6fae707ce09c2825fa1cd01 f t f 2010-08-24 11:01:52.008608-05 2010-08-24 10:59:10-05 442 susanramirez Susan Ramirez susanramirez@example.com sha1$e0c42$230df55152769536ed54d9098ad25bed76430e63 f t f 2010-09-09 14:59:22-05 2010-09-09 14:59:22-05 452 jmcbrayer12 Jonathan McBrayer jmcbrayer12@example.com sha1$a6c90$2e120f271d952b5e90fc58553c70068c5c2b1a61 f t f 2010-09-21 11:46:53.798836-05 2010-09-21 11:46:53.791801-05 482 davidpcumming David Cumming davidpcumming@example.com sha1$74442$ad0f002290b4336cb55548bb11d48ee3aac61945 f t f 2010-10-31 14:06:48.48129-05 2010-10-19 15:12:04.021266-05 496 jefilpo Matthew Filpovich jefilpo@example.com sha1$d746e$f2a52b1cbcb502203eac1ce1949e7a4a250d5d7b f t f 2010-11-01 11:30:50.666706-05 2010-11-01 11:30:50.659986-05 494 nance2 Nancy White nance2@example.com sha1$5d631$e48d2abfb691d085e4da8fd4c32f469d79c4c3e7 f t f 2010-10-29 13:37:03.587487-05 2010-10-29 13:37:03.579723-05 499 jl_cadman Julie Cadman jl_cadman@example.com sha1$75daa$688df887f73975ffc77e792707bdfce231519851 f t f 2010-11-02 14:39:57.209787-05 2010-11-02 14:39:57.202201-05 429 veronicaporter NCO Youth and Family Services veronica.porter@sbcglobal.net sha1$682a5$9039ded533c4bf41b83949be9b56cbd7ad048acd t t t 2010-11-02 16:03:36.589378-05 2010-08-30 12:58:29-05 497 charlesanderson charles anderson charlesanderson@example.com sha1$17aa9$2c0716ac6d69a0abfb41a26eded45b09b34f3f89 f t f 2010-11-16 12:14:06.451361-06 2010-11-01 16:25:35.488562-05 500 niceejones Nicee Jones niceejones@example.com sha1$657f9$ba853e03a1a63fe01cb86b2e1d9ad75ec8fdddc7 f t f 2010-11-04 14:32:34.490411-05 2010-11-04 14:32:34.482564-05 505 stannardoni Stan Nardoni stannardoni@example.com sha1$c170a$ffc8acf08c4f8b862a8955c66bd0418eadad49d6 f t f 2010-11-08 15:41:40-06 2010-11-08 15:41:40-06 502 wildpettrone Charles Pettrone wildpettrone@example.com sha1$45490$a9928fc141a8d85efc33beb10d0b9867d69ad03e f t f 2010-11-07 08:18:35.980475-06 2010-11-07 08:18:35.956246-06 344 danashepherd Dana Shepherd- Rice danashepherd@example.com sha1$440eb$e4f5c7d23963782860a4b86ee3ae11dc36aae653 f t f 2010-11-15 12:13:12.537837-06 2010-07-07 15:39:48-05 506 hollyfecht Holly Fecht hollyfecht@example.com sha1$6e885$f3a2f6fc5b9ae4293028158c71207076fb86f23b f t f 2010-11-09 16:18:51-06 2010-11-09 16:18:51-06 444 katiearko Katie Arko katiearko@example.com sha1$ed23e$93cce0231b50f902df4fc137a6a417d6979d2a97 f t f 2010-11-10 14:18:32.44862-06 2010-09-10 13:21:03-05 467 bobhudetz Bob Hudetz bobhudetz@example.com sha1$2e383$6096508dd2841d70ed6ce7b27b39886ce4ba5bf9 f t f 2010-11-11 12:44:23.07897-06 2010-10-04 14:50:10.614609-05 507 philcaruso Phil Caruso philcaruso@example.com sha1$84f18$3edf4fa886e12e6be5b72f2ee125f3b83a5ecd57 f t f 2010-11-11 10:27:12.436076-06 2010-11-11 10:27:12.428763-06 508 juliemurphy Julie Murphy juliemurphy@example.com sha1$82b4c$812b7765af24a242058767ed4a60bae7e60f2f8e f t f 2010-11-11 14:27:35.781022-06 2010-11-11 14:24:38-06 509 karenrogers Karen Rogers karenrogers@example.com sha1$0dba1$90d5b387a5e2f283c466a96ba2f6423361619ed0 f t f 2010-11-12 09:59:15-06 2010-11-12 09:59:15-06 510 grzywa Elisabeth Grzywa grzywa@example.com sha1$7a15c$300b10cadaed5dbce0c663db4b9f87b4aa4a2490 f t f 2010-11-12 15:56:54.497131-06 2010-11-12 15:56:54.489791-06 493 irvin99 Irvin Schlussel irvin99@example.com sha1$bca88$36a2d88453ea544971390535571cccad7d5bfa17 f t f 2010-11-13 22:00:19.975624-06 2010-10-29 13:30:02.194572-05 511 nicetruck8 Janine Carter nicetruck8@example.com sha1$87c90$93465a630174f1ba6cb7c8023769dc25c80b4722 f t f 2010-11-12 16:21:51.122651-06 2010-11-12 16:21:51.11416-06 512 chasnilles chuck nilles chasnilles@example.com sha1$2942d$2fb53cc0b51b199a82e24ae6824ae9003a19f851 f t f 2010-11-13 08:34:39.009594-06 2010-11-13 08:34:39.001578-06 513 ebill22 Erika Miller ebill22@example.com sha1$25a22$ed538af88b4b160d8df5ef2471a0f6b5898a11df f t f 2010-11-13 14:16:12.339472-06 2010-11-13 14:16:12.331502-06 514 rshbg ron golden rshbg@example.com sha1$82817$9b32a75f359088b8526d709111d18e555ae53a1d f t f 2010-11-15 09:52:35.427231-06 2010-11-15 09:51:19.099477-06 515 kslaughter Kathy Slaughter kslaughter@example.com sha1$e8a5a$11d0d745a80933b168884f6c97a52e3b446e4440 f t f 2010-11-15 14:48:26.613108-06 2010-11-15 14:48:26.605601-06 \. -- -- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: mdorn -- COPY auth_user_groups (id, user_id, group_id) FROM stdin; 1 11 2 4 31 8 6 33 3 9 36 10 376 6 5 19 50 13 20 47 6 21 48 12 22 52 14 23 54 15 24 56 2 28 35 7 30 34 4 32 66 21 56 110 22 57 112 24 58 121 25 59 122 20 60 57 18 378 265 128 382 506 139 64 142 30 65 144 28 66 147 31 68 148 32 71 18 9 384 22 115 75 154 17 78 161 51 79 163 53 80 164 33 81 165 54 84 172 52 85 174 57 86 174 58 87 177 59 88 183 62 89 135 27 90 140 29 92 233 65 93 234 66 98 252 16 99 257 68 100 260 69 101 262 71 102 267 72 103 272 74 105 282 77 106 278 56 107 285 79 108 289 17 109 290 82 110 37 5 111 293 83 112 295 54 113 304 84 114 306 85 115 232 66 116 314 87 117 315 88 118 324 90 119 326 89 120 151 34 121 331 92 124 339 4 126 342 97 128 344 96 129 345 99 130 274 75 132 349 101 133 351 102 135 352 95 136 348 103 138 9 91 139 358 2 140 359 5 141 362 106 144 366 95 146 368 107 147 370 108 149 372 25 151 376 26 154 381 5 156 383 5 158 384 108 161 386 98 164 385 78 165 388 78 168 391 113 169 392 107 170 393 112 171 394 110 172 395 111 173 396 116 174 397 115 179 275 72 180 404 117 182 357 78 183 408 114 187 405 105 188 406 118 194 410 118 195 409 120 196 411 119 198 417 78 199 418 5 201 419 33 203 422 78 212 423 122 213 428 123 217 442 124 219 444 121 224 443 78 232 449 125 234 332 94 235 457 126 240 466 127 241 468 128 242 471 127 247 431 132 249 483 70 253 490 136 254 491 82 383 508 139 \. -- -- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: mdorn -- COPY auth_user_user_permissions (id, user_id, permission_id) FROM stdin; \. -- -- Data for Name: core_emailkey; Type: TABLE DATA; Schema: public; Owner: mdorn -- COPY core_emailkey (email, key) FROM stdin; kevsnod586@gmail.com 6cc46687efbdce9a chadw@korzenowskidesign.com 1a1f78d8f973f7bb ufoxy1@aol.com 7e5130a671008edc stephdegodny@me.com 1d033b59f6f4329 kpryandds@aol.com 7b45541b641016fa chasefaull@gmail.com 9a95c622a3cbf888 edwardcheney@yahoo.com c30e0820716c038d l1hauser@sbcglobal.ne a41088e997e289ef whitneyschluter@johngreenerealtor.com cd8ca26fc24317c9 sklehm07976@aol.com 2436d0deb64c826a jackie@jmcarey.com 7026d91aef7c1c0c grass63@aol.com 9c943d7396a9b2aa OliverL2@comcast.net 870aeca0f66504f6 macenasbusch@ameritech.net d3ed1d9de1c2c0 jmhasel@hotmail.com c23114dad4bb9e41 jkoski@mortonarb.org bf5090657c5822e7 Admiral094@aol.com bb54b3a0b9dababf gpleopip@aol.com 9ee627fc79e17a9c beutelfarm@sbcglobal.net c13be2e0e0bb990d heatherleepastor@uahoo.com 5b7b8f05469976eb larryvansomeren@yahoo.com c4f6001047eea0f5 michelle@noreenfraser.org 4124669be852692d amy.vanpolen@bridgecommunities.org aee26024f90dc41f mattduskfan@sbcglobal.net eb7cf147c9482296 nancyrosman@yahoo.com 5f35e28068549226 cstubler@lindengrouphealth.com 51f11d6a7a49856c angelesclan@netzero.net 17b3cf5410f85d3a bosuss@ameritech.net 94109f8a3a22c76d egculbertson@gmail.com 91f35ab27959b2aa deggers@wowway.com e25ae7c7f64f78c1 dana.serrata@hhovv.org 7e2c0da00b2d9b30 hollyaker@gmail.com e3b5936431d77eb4 outcast_jda@hotmail.com 4ecba338c7995511 rss2763@aol.com b89ccbc460e41ff karenbardwell@yahoo.com 71ad2b9ded695402 mrskin@skintertainment.com 763d4798ae7c1d13 rollingthunder12@sbcglobal.net a67afab5e90b71bf kmiller@websolete.com b39e1ee8ad065e3c alysonnmayy@aim.com 6428df1901c3c3c7 mdorn@psclistens.com e3db7cd15d1933f7 laurelhensel@yahoo.com bb2f8d344211ee8b mrebmann4281@wowway.com 9edb5f87b6628d48 larezzo@handaltd.com 4fe32dbd23a820e5 bjcovelli@comcast.net a34d767a8cc39ca7 maryweiler@sbcglobal.net 568eb8585bf5825 tomsandfigs@sbcgliobal.net 6349159d6ae0113d losdog181@hotmail.com 919e3531bb6315fc ticzkowski@aquaamerica.com 814b489f8d48d649 carpenter1360@comcast.net 8eb0428dd3b40c39 mdslaby@yahoo.com 29efd2031d36119b oscarod75@yahoo.com 98db0c16d41fc2ec joelkirstein@johngreenecommercial.com 1bf9e9fc8828d641 jeremycfoster@comcast.net ac1e8274886b5044 spike91893@yahoo.com 81e0e8e93657df73 leah4782@yahoo.com de9e196d59bbdc3e chultquist@mesirowfinancial.com 1eb6f4f193c4029b coltscam18@yahoo.com 1e93a6ae062acddc liz@zanies.com c2d6767f561b4850 NIERMEYER@GMAIL.COM 2bbaaa820a65a477 Douglaross@aol.com 29af6e204667a2b7 amccaff2@illinois.edu 646f97d364fa5066 mcleary@marketxusa.com 63c6000e7e0e2ffe lukebobek@yahoo.com aeadb682157ac26d ksnodgr@luc.edu 9c8db79e1a71ef80 twish2001@yahoo.com 376f513827a95d68 thekevbo586@hotmail.com 82802e8f197c8349 Remma@ameritech.net 221ff9de5ca07cbb hnixon@ironfinancial.com 3f7eeae88438181c drfishhead@aol.com d17b058a23a22a2e lorcole71@yahoo.com 645e40407b991c76 awennink@aol.com 1016ce40667a7635 nathan.ledesma@gmail.com 83e54e73b237bde6 joleary@tosv.com d16b76732102ff8c vmvasquez30@yahoo.com c6658b13cd1ea8b5 saxman5000@yahoo.com 3d733428495a044e lidiadevonshire@aol.com 515609a3b54c9b06 sharonlsweeney@comcast.net 541e5ad32ea0dbbb nina@33clubchicago.com f87012b425cffcef matt_dorn@yahoo.com 16d46d6f1677d985 tcfive@gmail.com 6edd4eb6f0b5834b mallar_solai@yahoo.com 53d2d3b272661be6 twism2121@hotmail.com 390769773e70221 sandyhollyboston@yahoo.com 5e3ec3b9da2f27e3 ckolodziej@dupagechildrensmuseum.org ed0275064d0a101a rgsv8@hotmail.com 9c142a92c0bba969 ljc2002@comcast.net af2b09821754b83d hec_94@hotmail.com 8640c79ac922a2be pettersona@dupage.edu 68ca2685d27dad75 tim.hoffmeister@midwestmech.com a7acd25ccf44b76a docnsa5@aol.com c68007c708d905b9 kkautza.tix4cause@gmail.com 3cbbcd42a8c61c64 dbahl@inplas.com e0ef3934d35662d1 tonytzoubris@sbcglobal.net 687c6acced8ebe79 sdeem1788@gmail.com 17cc523f973104c tfreyer26@gmail.com 88635911bdfe9b93 r.mroz@sbcglobal.net 62ff7fbaa9bd134 bfgeorge@ameritech.net 4d8014b561aea468 niravbm@gmail.com 391526886515ad9b davexxx888@aim.com 35d783ed72bcd72d dabird73@yahoo.com ca2886bc8b9fe75a ekmeyer82@sbcglobal.net 7c71c890f06a872e kimswale@yahoo.com f1fc0cee3c7c66b jkgresh@gmail.com 75b8c2ab178f31e8 marymason15@aol.com 5e78eda57e22ab8f Raltice51@sbcglobal.net a6722777f0b4743 cityb0y0071@yahoo.com af611dadab8dc8a2 Raltice@sbcglobal.net 83e9e176b56cc51e coverttracking@yahoo.com 9eaa91a1b9b3b963 dfabr@yahoo.com 6fa20fd3f08f2dc7 drcole@adjust2wellness.com 6f82e01b9ebaa5a5 pattihaidu@aol.com 4d0d31472efbe647 mike-nancy.schmit@att.net 9f9d2082ad17ecbb mollymacari@gmail.com e6e5428a465b5dfd megan_msu@yahoo.com 4ff1472ed01716b0 netprint@aol.com f0364ed2c94b7fbe karen.okeefe@officedepot.com e7be5ee658fe2e7b sahalford@yahoo.com 3b40fd09172daff9 jldarland@gmail.com 30029fd14ac9f183 szwiren@gmail.com e31f70a745acf922 Ann.Kong@c-e.com d12da4b2d9a35a6 llopez@sanmiguelchicago.org 8844b81797a9b3da lisa@troop341.org afdf52025eeb4ca9 buffin847@yahoo.com 1644ddbac9b2a5ac CHUCANT@HOTMAIL.COM ff092602ad5f537c tscottboyd@comcast.net c1ef8c7d96a32ea6 ccarriza@steelcase.com 18879448a2572829 kevin_koch1@yahoo.com 4c34fe0702cfb515 tchid@hotmail.com 24780f36d33434ac billneyen@yahoo.com 8626f2f5c2ee70a5 BallC@NYRedCross.org b5d12bbd9292071f tbattaglia@catholiccharities.net 7ec61e05f493f2c6 shelfman@statewidedisaster.com f32c1257f127f0df pbailer@cityyear.org 1f3418e09380da1c Edeam6065@aol.com 4adcc159413fc0dd sharpkenneth@sbcglobal.net 5bf3ac269c54d34a nsbaker30@gmail.com f9ff11933dce0b2d krobarb@yahoo.com 9e569e888620d06 Se.mulcahy@sbcglobal.net 6c6846bc48d9f042 melanie.berger@parsons.com 6436a0358daf1da3 Carone_128@yahoo.com fc6766afbe11db92 ronaldhilliard2@yahoo.com e81ae92f82f4acf1 se.mulcahy@sbcglobal.net 2a81a87eed13fdb3 tix4cause@conrath.net 96c5cfa844bd587a rbrown@plunkettcooney.com a98c9cc8b551b158 allstate-electric@sbcglobal.net 61d9a4b047bf82ba sstritzinger@supremeheating.com 42708c1e2f5fcd36 tstreiff@gmail.com 433ae8e703bd6d59 llavin23@yahoo.com f1fd02b174503bbd timmcdermott@comcast.net e08373a4ff24e282 rusty.herbst@jci.com 155fd60f1a9676fd smcbride@gradecheck.net 4a87bb7cbb3f4a04 brianschlossberg@aol.com 1867e3e15541e979 jjkiely@jjkpc.com 6992caf081a25bdc crouse.alan@yahoo.com 2c9521246541918f sevenhens@comcast.net b59c0bb697b0906a dcreitman@gmail.com 9030b10782a7bac1 randallbarthel@hotmail.com e7466ed86135bdd9 trogers158@aol.com 6350756cf94b7090 barry@iwasit.com d5da6faa1f56ca16 pamela928@aol.com 2283e1f63b91318f vicki.hazzard@gmail.com e7744b5da544dfe2 cathy.hussar@yahoo.com f8e7c269a1579d6c megan.zlatos@gmail.com a9f1252279935d4e tbednar@sfhsnet.org d2ae60aab8b66bec suzbaker@twmi.rr.com 1a20bfe255427ee2 \. -- -- Data for Name: core_userprofile; Type: TABLE DATA; Schema: public; Owner: mdorn -- COPY core_userprofile (id, user_id, shipping_id, billing_id) FROM stdin; 1 1 \N \N 2 2 \N \N 5 14 \N \N 4 13 34 33 6 7 \N \N 7 16 \N 35 9 21 37 36 233 418 \N \N 13 25 \N \N 14 26 \N \N 18 23 \N \N 19 31 \N \N 235 421 \N 1109 21 40 \N 44 22 41 \N \N 23 42 \N \N 24 45 46 45 25 47 48 47 26 27 \N \N 28 48 52 51 30 53 \N \N 31 55 \N \N 32 56 56 55 33 59 \N \N 34 61 \N 57 35 64 60 59 36 34 \N \N 38 11 \N \N 39 65 \N \N 40 66 \N \N 41 67 \N 63 42 68 \N \N 43 69 \N \N 44 70 68 67 45 74 71 70 46 75 73 72 47 76 77 76 48 80 \N \N 49 83 \N \N 50 85 \N \N 51 81 \N \N 52 88 \N \N 53 90 \N \N 54 91 \N \N 55 96 \N \N 56 98 80 79 57 101 82 81 58 103 \N \N 37 35 \N 83 59 104 \N \N 60 106 \N \N 61 105 \N \N 63 114 \N \N 64 115 \N \N 65 120 \N \N 66 121 \N \N 67 122 \N \N 68 57 \N \N 69 125 \N \N 70 129 \N \N 71 130 \N \N 72 92 \N \N 73 94 \N \N 75 123 \N \N 76 133 \N \N 77 135 \N \N 171 110 1117 1116 79 137 \N \N 80 139 \N \N 81 142 \N \N 83 146 \N \N 84 149 121 120 85 148 \N \N 86 18 \N \N 87 153 \N \N 88 156 \N \N 239 427 1124 1123 91 163 \N \N 93 169 \N \N 94 171 \N \N 95 164 \N \N 96 178 \N \N 97 174 164 163 98 179 \N \N 99 184 \N \N 100 186 \N 176 242 432 1136 1135 102 190 \N \N 101 189 \N 179 103 201 181 180 104 202 183 182 246 436 \N \N 154 282 \N \N 155 285 \N \N 105 204 187 186 106 207 \N \N 107 211 \N \N 108 213 \N \N 109 205 \N \N 110 215 \N \N 111 221 \N \N 112 223 \N \N 113 224 191 190 187 303 \N \N 156 310 \N \N 74 124 1105 1171 114 227 193 192 115 229 \N \N 12 24 1200 455 117 54 \N \N 118 235 202 203 119 236 \N \N 120 238 \N \N 121 239 \N \N 122 240 207 206 123 242 \N \N 182 344 1237 1237 125 247 \N 210 157 311 \N 314 124 245 212 214 126 249 \N \N 127 250 \N \N 128 254 \N \N 129 255 218 217 132 257 \N \N 133 259 220 58 27 50 224 225 135 263 \N 227 136 209 \N \N 137 268 \N \N 158 312 \N \N 138 270 233 232 174 333 \N \N 140 176 \N \N 141 279 241 242 142 280 \N \N 143 264 \N \N 144 284 \N \N 145 287 \N \N 146 289 \N \N 147 292 \N \N 148 275 \N \N 149 300 296 295 150 244 \N \N 151 302 \N \N 152 299 \N \N 153 306 \N \N 159 234 \N \N 160 290 \N \N 161 313 321 320 162 307 \N \N 163 315 \N \N 164 318 \N \N 166 322 \N \N 165 321 \N 331 167 325 \N \N 131 208 336 335 168 324 \N \N 170 328 \N \N 82 143 171 172 172 78 \N \N 179 337 931 930 173 330 644 643 205 379 \N 1061 176 335 \N \N 181 340 \N \N 177 336 884 883 178 332 \N \N 180 338 \N 906 183 345 \N \N 184 274 \N \N 185 347 954 953 92 161 \N 956 169 327 \N 957 78 138 961 962 188 353 \N \N 29 30 149 963 15 9 \N 325 186 350 973 972 16 28 \N 976 197 365 \N \N 190 354 \N \N 191 355 \N \N 192 154 \N \N 193 349 \N \N 194 360 1033 1032 195 358 \N \N 116 230 196 195 189 348 \N 1049 196 363 1051 1052 200 372 \N \N 198 267 \N \N 199 366 \N \N 201 376 \N \N 202 377 \N \N 203 378 \N \N 11 22 41 40 204 295 \N 1060 206 382 \N 1063 207 370 \N \N 208 385 \N \N 232 415 1105 1103 209 386 1068 1067 210 388 \N \N 211 389 \N \N 212 390 \N \N 213 352 \N \N 214 391 \N \N 215 392 \N \N 175 334 1105 760 234 419 \N \N 216 384 1073 1071 236 351 \N \N 217 400 \N 1077 130 256 1105 1111 218 401 \N 1078 219 402 \N \N 220 396 \N \N 238 425 \N \N 221 403 \N 1083 222 406 \N \N 223 407 \N 1088 225 409 \N \N 226 278 \N \N 227 410 \N \N 228 412 1093 1092 20 37 \N 1096 229 375 \N \N 230 413 \N 1098 231 414 \N 1099 62 113 1133 84 243 433 \N \N 244 434 1140 1139 247 437 1146 1145 245 435 1142 1141 248 438 \N \N 249 439 \N \N 251 444 \N \N 252 445 1105 1158 89 144 1105 1162 253 447 1170 1169 254 448 1168 1167 134 243 319 319 255 451 1105 1173 256 393 \N \N 257 452 \N \N 258 453 \N \N 259 454 1177 1176 260 456 \N \N 240 429 1157 1179 261 458 \N \N 262 460 \N \N 263 461 \N \N 3 6 1180 42 264 457 \N \N 237 424 1105 1181 265 467 1189 1188 266 469 1193 1192 267 470 1196 1195 268 112 1199 1198 269 468 \N \N 270 471 \N \N 271 472 \N \N 272 473 1105 \N 273 474 \N \N 274 475 \N \N 275 476 \N \N 241 431 1105 1134 276 479 \N \N 277 480 \N \N 278 482 \N \N 279 404 \N \N 280 483 \N \N 281 484 \N \N 282 485 1105 \N 283 486 1243 1244 284 488 \N 1253 224 52 1105 1090 285 489 \N 1255 286 492 1261 1261 287 481 \N \N 288 493 \N \N 289 496 \N \N 290 260 \N \N 291 497 \N 1289 292 498 \N 1291 293 499 \N 1298 250 443 1309 1306 294 508 \N \N 295 510 1105 \N 296 512 \N 1318 297 514 1321 1320 298 515 \N \N 139 265 1275 1322 \. -- -- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: mdorn -- COPY django_admin_log (id, action_time, user_id, content_type_id, object_id, object_repr, action_flag, change_message) FROM stdin; 1 2010-02-04 09:26:19.330077-06 2 14 1 1 2 Changed charity. 2 2010-02-04 09:26:35.190077-06 2 14 2 2 2 Changed charity. 3 2010-02-04 09:33:00.520077-06 2 14 3 3 2 Changed charity. 4 2010-02-04 09:33:11.470077-06 2 14 4 4 2 Changed charity. 5 2010-02-04 09:33:29.270077-06 2 14 5 5 2 Changed charity. 6 2010-02-04 09:33:41.090077-06 2 14 6 6 2 Changed charity. 7 2010-02-04 09:33:52.200077-06 2 14 7 7 2 Changed charity. 8 2010-02-04 09:34:23.430077-06 2 13 6 Frank Lloyd Wright Preservation Trust 2 Changed status. 9 2010-02-04 09:34:39.120077-06 2 13 7 Rotary International 2 Changed status. 10 2010-02-04 09:36:28.840077-06 2 13 6 Frank Lloyd Wright Preservation Trust 2 Changed charity. 11 2010-02-04 09:36:40.400077-06 2 13 7 Rotary International 2 Changed charity. 12 2010-02-04 09:45:18.100077-06 1 15 7 Hold on 5 3 13 2010-02-04 09:49:47.840077-06 2 13 2 Heritage YMCA Group 2 Changed email. 14 2010-02-04 09:50:14.320077-06 2 13 5 Winning Workplace Solutions 2 Changed email. 15 2010-02-04 09:50:35.570077-06 2 13 1 Sts. Peter & Paul Catholic School 2 Changed email. 16 2010-02-04 09:50:52.270077-06 2 13 4 Special Olympics Illinois 2 Changed email. 17 2010-02-04 09:51:10.330077-06 2 13 10 Serra Club 2 Changed email. 18 2010-02-04 09:51:22.130077-06 2 13 3 North Central College 2 Changed email. 19 2010-02-04 10:00:29.190077-06 2 9 9 /faqs/ -- FAQs 2 Changed content. 20 2010-02-04 10:10:52.990077-06 1 9 9 /faqs/ -- FAQs 2 Changed content. 21 2010-02-04 10:12:02.980077-06 1 9 9 /faqs/ -- FAQs 2 Changed content. 22 2010-02-04 10:12:29.540077-06 1 9 9 /faqs/ -- FAQsFrequently Asked Questions about Tix4Cause 2 Changed title and content. 23 2010-02-04 10:12:51.270077-06 1 9 9 /faqs/ -- Frequently Asked Questions about Tix4Cause 2 Changed title. 24 2010-02-04 10:15:14.520077-06 1 9 9 /faqs/ -- Frequently Asked Questions about Tix4Cause 2 Changed content. 25 2010-02-04 10:31:50.990077-06 1 9 9 /faqs/ -- Frequently Asked Questions about Tix4Cause 2 Changed content. 26 2010-02-04 10:50:06.660077-06 2 3 10 ksnodgrass 1 27 2010-02-04 10:50:45.580077-06 2 3 10 ksnodgrass 2 Changed first_name, last_name, is_staff and is_superuser. 28 2010-02-04 10:51:30.970077-06 2 3 10 ksnodgrass 2 Changed email. 29 2010-02-04 10:53:50.720077-06 1 9 9 /faqs/ -- Frequently Asked Questions about Tix4Cause 2 Changed content. 30 2010-02-04 10:54:38.390077-06 1 9 9 /faqs/ -- Frequently Asked Questions about Tix4Cause 2 Changed content. 31 2010-02-04 10:58:06.350077-06 6 3 11 mnorgaard 1 32 2010-02-04 10:58:31.020077-06 2 3 12 pmack 1 33 2010-02-04 11:00:45.870077-06 6 3 11 mnorgaard 2 Changed first_name, last_name, email and groups. 34 2010-02-04 11:02:01.280077-06 1 9 9 /faqs/ -- Frequently Asked Questions about Tix4Cause 2 Changed content. 35 2010-02-04 11:06:32.540077-06 6 19 8 Chicago Blackhawks vs Phoenix Coyotes 1 36 2010-02-04 11:09:06.810077-06 6 14 8 8 1 37 2010-02-04 11:19:23.810077-06 2 13 8 Imerman Angels 2 Changed email. 38 2010-02-04 11:27:25.790077-06 2 14 8 8 2 Changed status. 40 2010-02-04 11:40:12.460077-06 2 14 9 9 2 Changed featured. 41 2010-02-04 12:07:18.190077-06 6 13 5 Winning Workplaces 2 Changed title and slug. 42 2010-02-04 12:09:37.350077-06 6 13 1 Sts. Peter & Paul Catholic School 2 Changed description. 43 2010-02-04 12:12:15.600077-06 6 13 1 Sts. Peter & Paul Catholic School 2 Changed description. 44 2010-02-04 12:13:16.310077-06 2 13 1 Sts. Peter & Paul Catholic School 2 Changed description. 53 2010-02-04 15:01:08.800077-06 6 17 1 Purchase #1 by katherine@naglehiggins.com 2 Changed tracking_code. 55 2010-02-04 15:10:29.860077-06 6 17 1 Purchase #1 by katherine@naglehiggins.com 2 Payment captured successful. 60 2010-02-04 15:47:46.570077-06 6 21 1 etickets/5/Billyelliott4c.pdf 1 62 2010-02-04 15:59:07.500077-06 6 17 2 Purchase #2 by murbis@aol.com 2 Payment captured successful. 64 2010-02-04 16:25:21.320077-06 2 3 17 jbower 1 65 2010-02-04 16:26:04.060077-06 2 3 17 jbower 2 Changed first_name, last_name and groups. 67 2010-02-04 16:29:27.860077-06 6 3 18 Fglowaty 1 68 2010-02-04 16:30:02.260077-06 6 3 18 Fglowaty 2 Changed first_name, last_name, email and groups. 69 2010-02-04 17:08:23.920077-06 6 9 1 /about-us/ -- About Us 2 No fields changed. 70 2010-02-04 17:12:02.000077-06 2 9 6 /online-sales-terms/ -- Online Sales Terms 2 Changed content. 71 2010-02-04 17:15:48.940077-06 2 9 6 /online-sales-terms/ -- Online Sales Terms 2 Changed content. 73 2010-02-04 20:25:42.340077-06 6 14 8 8 2 Changed capital. Changed price and details for tix "4 tix 4 Chicago Blackhawks vs. Phoenix Coyotes". 74 2010-02-04 20:35:46.190077-06 6 21 2 etickets/5/Billy_Elliot3t4c.pdf 1 75 2010-02-05 06:42:31.330077-06 6 14 8 8 2 Changed status. 81 2010-02-05 12:16:33.080077-06 6 3 22 ksnodgrass 2 Changed username and is_superuser. 82 2010-02-05 12:17:36.960077-06 6 3 22 ksnodgrass 2 Changed is_staff. 83 2010-02-05 15:21:43.440077-06 22 9 10 /convert-tickets/ -- Convert Your Paper Tickets to e-Tickets 2 Changed content. 84 2010-02-05 15:58:53.380077-06 1 22 3 meta-description 1 85 2010-02-05 20:43:33.530077-06 22 9 10 /convert-tickets/ -- Convert Your Paper Tickets to e-Tickets 2 Changed content. 86 2010-02-06 14:05:13.240077-06 6 14 7 7 2 Changed capital. Changed price for tix "2 tix 4 Chicago Bulls vs. Philadelphia 76ers". 87 2010-02-06 14:06:20.120077-06 6 14 6 6 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Dallas Mavericks". 88 2010-02-06 14:06:33.810077-06 6 14 6 6 2 No fields changed. 89 2010-02-06 14:08:57.780077-06 6 14 1 1 2 Changed capital. Changed price for tix "2 tix 4 Chicago Blackhawks vs. Detroit Red Wings". 90 2010-02-07 08:59:58.600077-06 6 14 2 2 2 Changed price for tix "2 tix 4 John Mayer with Special Guest Michael Franti & Spearhead". 91 2010-02-07 09:00:30.970077-06 6 14 2 2 2 Changed details for tix "2 tix 4 John Mayer with Special Guest Michael Franti & Spearhead". 92 2010-02-08 14:42:51.760077-06 2 14 7 7 2 Changed featured. 93 2010-02-08 14:43:18.740077-06 2 14 6 6 2 Changed featured. 94 2010-02-08 14:43:26.170077-06 2 14 5 5 2 Changed featured. 95 2010-02-08 14:43:33.810077-06 2 14 4 4 2 Changed featured. 96 2010-02-08 14:43:41.950077-06 2 14 3 3 2 Changed featured. 97 2010-02-08 14:43:51.910077-06 2 14 2 2 2 Changed featured. 98 2010-02-08 14:43:58.230077-06 2 14 1 1 2 Changed featured. 99 2010-02-08 14:56:07.470077-06 22 3 30 jkoranda 1 100 2010-02-08 14:56:49.110077-06 22 3 30 jkoranda 2 Changed first_name, last_name, email, is_staff and is_superuser. 101 2010-02-08 14:57:11.420077-06 22 3 30 jkoranda 2 Changed first_name. 102 2010-02-08 14:57:33.780077-06 22 3 29 johnkoranda 3 103 2010-02-08 15:46:41.620077-06 22 19 10 Billy Elliot the Musical 1 104 2010-02-08 15:47:20.240077-06 22 19 10 Billy Elliot the Musical 2 Changed date. 105 2010-02-08 15:51:44.100077-06 22 14 10 10 1 106 2010-02-08 16:00:14.980077-06 22 14 10 10 2 Changed capital. Changed count, seating_info and details for tix "2 tix 4 Billy Elliot the Musical". 107 2010-02-08 16:04:49.140077-06 22 17 2 Purchase #2 by murbis@aol.com 2 Changed comment. 108 2010-02-08 16:05:49.050077-06 22 14 10 10 2 No fields changed. 109 2010-02-08 16:06:44.730077-06 22 14 10 10 2 Changed status. 110 2010-02-08 16:10:15.420077-06 22 3 31 kmclaughlin 1 111 2010-02-08 16:11:09.290077-06 22 3 31 kmclaughlin 2 Changed first_name, last_name, email and groups. 112 2010-02-08 16:19:51.960077-06 22 14 2 2 2 Changed capital. Changed price and details for tix "2 tix 4 John Mayer with Special Guest Michael Franti & Spearhead". 113 2010-02-08 16:20:36.690077-06 22 14 2 2 2 Changed capital. Changed price for tix "2 tix 4 John Mayer with Special Guest Michael Franti & Spearhead". 114 2010-02-08 16:41:33.870077-06 22 3 32 rspencer 1 115 2010-02-08 16:41:51.080077-06 22 3 32 rspencer 2 Changed first_name, last_name and groups. 116 2010-02-08 16:50:01.730077-06 22 3 33 blaney 1 117 2010-02-08 16:50:41.310077-06 22 3 33 blaney 2 Changed first_name, last_name and email. 118 2010-02-08 16:50:53.830077-06 22 3 33 blaney 2 Changed groups. 119 2010-02-08 16:51:32.950077-06 22 3 34 pjohnson 1 120 2010-02-08 16:51:54.610077-06 22 3 34 pjohnson 2 Changed first_name, last_name and groups. 121 2010-02-08 16:52:46.000077-06 22 3 35 gcarr 1 122 2010-02-08 16:54:04.760077-06 22 3 35 gcarr 2 Changed first_name, last_name, email and groups. 123 2010-02-08 16:56:06.670077-06 22 3 36 gvandenhombergh 1 124 2010-02-08 16:56:30.280077-06 22 3 36 gvandenhombergh 2 Changed first_name, last_name, email and groups. 125 2010-02-08 17:05:11.380077-06 22 3 32 rspencer 3 126 2010-02-08 17:34:32.570077-06 22 3 37 bbeetz 1 127 2010-02-08 17:35:37.650077-06 22 3 37 bbeetz 2 Changed first_name, last_name, email and groups. 128 2010-02-09 12:19:58.720077-06 22 3 39 kevinsnod 1 129 2010-02-09 13:45:17.430077-06 22 17 3 Purchase #3 by kpryandds@aol.com 2 Changed comment. 130 2010-02-09 13:51:49.310077-06 22 9 10 /convert-tickets/ -- Convert Your Paper Tickets to e-Tickets 2 Changed content. 131 2010-02-09 21:06:48.160077-06 6 13 7 Sunrise Rotary 2 Changed title, slug, description, email and charity. 132 2010-02-09 21:07:10.710077-06 6 13 7 Sunrise Rotary 2 Changed status. 133 2010-02-10 15:17:44.120077-06 22 3 46 nscott 1 134 2010-02-10 15:32:49.410077-06 22 3 46 nscott 2 Changed first_name, last_name and email. 135 2010-02-10 15:33:15.190077-06 22 13 7 Rotary Club of Naperville Sunrise 2 Changed title. 136 2010-02-10 15:34:07.850077-06 22 2 11 Rotary Club of Naperville Sunrise 1 137 2010-02-10 15:34:47.650077-06 22 3 46 nscott 2 Changed groups. 138 2010-02-10 15:51:49.010077-06 22 17 4 Purchase #4 by brianjfitz@aol.com 2 Payment captured successful. 139 2010-02-10 16:01:31.660077-06 22 13 7 Rotary Club of Naperville Sunrise 2 Changed email. 140 2010-02-10 16:05:45.130077-06 22 3 46 nscott 2 No fields changed. 141 2010-02-10 16:07:51.700077-06 22 3 17 jbower 2 No fields changed. 142 2010-02-10 16:08:04.550077-06 22 3 46 nscott 2 No fields changed. 143 2010-02-10 16:09:51.160077-06 22 3 46 nscott 2 No fields changed. 144 2010-02-10 16:17:35.540077-06 22 3 46 nscott 3 145 2010-02-10 16:17:48.880077-06 22 13 7 Rotary Club of Naperville Sunrise 2 No fields changed. 146 2010-02-10 16:18:07.650077-06 22 3 47 nscott 1 147 2010-02-10 16:18:43.780077-06 22 3 47 nscott 2 Changed first_name, last_name, email and groups. 148 2010-02-10 17:06:27.950077-06 22 13 11 Little Friends, Inc. 1 149 2010-02-10 17:08:12.340077-06 22 3 48 kmalecki 1 150 2010-02-10 17:08:34.120077-06 22 3 48 kmalecki 2 Changed first_name, last_name, email and groups. 151 2010-02-10 17:08:57.160077-06 22 2 11 Rotary Club of Naperville Sunrise 3 152 2010-02-10 17:09:44.360077-06 22 13 11 Little Friends, Inc. 2 Changed status. 153 2010-02-10 17:10:17.360077-06 22 13 11 Little Friends, Inc. 2 Changed status. 154 2010-02-10 17:10:45.310077-06 22 13 11 Little Friends, Inc. 2 Changed status. 155 2010-02-10 17:16:01.030077-06 22 13 11 Little Friends, Inc. 2 Changed charity. 156 2010-02-10 17:16:23.350077-06 22 13 11 Little Friends, Inc. 2 Changed status and charity. 157 2010-02-10 17:34:17.780077-06 22 13 11 Little Friends, Inc. 2 Changed status and charity. 158 2010-02-11 09:23:14.240077-06 22 13 12 MidAmerica Service Dogs' Foundation, Inc. 1 159 2010-02-11 09:23:53.830077-06 22 3 50 jankoranda 1 160 2010-02-11 09:24:26.730077-06 22 3 50 jankoranda 2 Changed first_name, last_name, email, is_active and groups. 161 2010-02-11 09:24:52.100077-06 22 3 50 jankoranda 2 Changed is_active. 162 2010-02-11 09:42:23.830077-06 22 3 47 nicolascott 2 Changed username. 163 2010-02-11 09:42:40.060077-06 22 3 48 kathleenmalecki 2 Changed username. 164 2010-02-12 09:50:50.300077-06 22 13 13 Aunt Martha's Youth Service Center, Inc. 1 165 2010-02-12 09:54:09.520077-06 22 3 52 sarahhamilton 1 166 2010-02-12 09:54:48.740077-06 22 3 52 sarahhamilton 2 Changed first_name, last_name, email and groups. 167 2010-02-12 10:05:07.550077-06 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed status and charity. 168 2010-02-12 10:07:02.120077-06 6 9 1 /about-us/ -- About Us 2 Changed content. 169 2010-02-12 10:07:25.490077-06 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed status and mono_logo. 170 2010-02-12 10:09:28.880077-06 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed charity. 171 2010-02-12 10:09:55.450077-06 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed status and charity. 172 2010-02-12 10:10:14.620077-06 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed status and charity. 173 2010-02-12 12:43:01.280077-06 2 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed status and charity. 174 2010-02-12 12:46:04.850077-06 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed status, charity, color_logo and mono_logo. 175 2010-02-12 12:46:31.810077-06 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed status and charity. 176 2010-02-12 12:52:38.140077-06 2 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed status and charity. 177 2010-02-12 13:44:02.100077-06 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed mono_logo. 178 2010-02-12 13:45:03.190077-06 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed status and charity. 179 2010-02-12 13:47:51.630077-06 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed status. 180 2010-02-12 14:11:20.820077-06 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 No fields changed. 181 2010-02-12 14:11:31.380077-06 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed charity. 182 2010-02-12 14:16:02.050077-06 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed charity and mono_logo. 183 2010-02-12 14:16:13.340077-06 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed status. 184 2010-02-12 14:55:37.740077-06 6 19 11 Our Home, Our Earth DuPage Symphony Orchestra 1 185 2010-02-12 14:57:11.030077-06 6 14 11 11 1 186 2010-02-12 14:57:30.190077-06 6 14 11 11 2 No fields changed. 187 2010-02-12 14:57:59.530077-06 6 14 11 11 2 Changed featured. 188 2010-02-12 15:01:37.760077-06 6 16 2 Pick Up at Tix 4 Cause Office ($0.00) 1 189 2010-02-12 15:07:23.530077-06 6 14 11 11 2 Changed format and details for tix "4 tix 4 Our Home, Our Earth DuPage Symphony Orchestra". 190 2010-02-12 15:08:48.570077-06 6 14 11 11 2 Changed details for tix "4 tix 4 Our Home, Our Earth DuPage Symphony Orchestra". 191 2010-02-12 15:10:50.580077-06 6 3 21 kevinryan 2 Changed username. 192 2010-02-12 16:10:18.440077-06 6 13 11 Little Friends, Inc. 2 Changed status, description, charity, color_logo and mono_logo. 193 2010-02-12 16:11:03.730077-06 6 13 11 Little Friends, Inc. 2 Changed status and charity. 194 2010-02-13 08:55:02.030077-06 6 9 1 /about-us/ -- About Us 2 Changed content. 195 2010-02-13 20:03:53.010077-06 6 14 11 11 2 Changed status and featured. 196 2010-02-15 10:50:51.910077-06 22 14 9 9 2 Changed distribution_date and distrubution_notes. 197 2010-02-15 10:51:51.740077-06 22 14 5 5 2 Changed distribution_date and distrubution_notes. 198 2010-02-15 10:53:00.440077-06 22 14 8 8 2 Changed distribution_date and distrubution_notes. 199 2010-02-15 11:48:58.470077-06 22 21 3 etickets/1/Blackhawks vs. Redwings, March 7.pdf 1 200 2010-02-15 11:50:35.630077-06 22 14 1 1 2 Changed distribution_date and distrubution_notes. 201 2010-02-15 14:52:19.800077-06 22 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed status, description, charity, color_logo and mono_logo. 202 2010-02-15 14:55:22.040077-06 22 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed status and charity. 203 2010-02-15 15:09:57.620077-06 22 13 14 Naperville Humane Society 1 204 2010-02-15 19:14:58.300077-06 6 13 15 Little Heroes Pediatric Cancer Research Foundation 1 205 2010-02-15 19:25:44.240077-06 6 13 14 Naperville Humane Society 2 Changed status, description, email and charity. 206 2010-02-15 20:01:15.330077-06 6 13 11 Little Friends, Inc. 2 Changed charity. 207 2010-02-15 20:03:50.250077-06 6 13 11 Little Friends, Inc. 2 Changed status, color_logo and mono_logo. 208 2010-02-15 20:07:58.870077-06 6 13 11 Little Friends, Inc. 2 Changed charity and mono_logo. 209 2010-02-15 20:08:51.900077-06 6 13 11 Little Friends, Inc. 2 Changed charity. 210 2010-02-16 09:30:10.950077-06 22 13 16 The University of Chicago Cancer Research Foundation 1 211 2010-02-16 09:31:16.290077-06 22 13 15 Little Heroes Pediatric Cancer Research Foundation 2 Changed slug. 212 2010-02-16 10:41:18.140077-06 22 13 11 Little Friends, Inc. 2 Changed color_logo and mono_logo. 213 2010-02-16 10:47:30.010077-06 22 13 16 The University of Chicago Cancer Research Foundation 2 Changed status, charity and color_logo. 214 2010-02-16 10:51:49.000077-06 22 13 11 Little Friends, Inc. 2 Changed status and charity. 215 2010-02-16 12:08:27.850077-06 22 13 14 Naperville Humane Society 2 Changed email. 216 2010-02-16 14:02:00.860077-06 22 13 14 Naperville Area Humane Society 2 Changed title and slug. 217 2010-02-16 15:31:10.080078-06 22 13 16 The University of Chicago Cancer Research Foundation 2 Changed status and charity. 218 2010-02-16 19:34:45.360077-06 6 13 14 Naperville Area Humane Society 2 Changed color_logo. 219 2010-02-17 08:47:32.010077-06 22 13 11 Little Friends, Inc. 2 Changed status and charity. 220 2010-02-17 10:37:53.180077-06 6 3 54 awood 1 221 2010-02-17 10:38:47.230077-06 6 3 54 awood 2 Changed first_name, last_name, email and groups. 222 2010-02-17 16:47:32.340077-06 6 3 56 jbowers 2 Changed groups. 223 2010-02-18 10:07:32.360077-06 22 13 15 Little Heroes Pediatric Cancer Research Foundation 2 Changed color_logo. 224 2010-02-18 11:25:27.370077-06 22 3 17 jbower 3 225 2010-02-19 09:35:37.680638-06 22 13 15 Little Heroes Pediatric Cancer Research Foundation 2 Changed slug. 226 2010-02-19 09:57:16.300638-06 22 13 15 Little Heroes Pediatric Cancer Research Foundation 2 Changed email. 227 2010-02-19 09:58:56.650638-06 22 14 12 12 2 Changed details for tix "2 tix 4 Chicago Bulls v. Memphis Grizzlies". 228 2010-02-19 09:59:18.370638-06 22 14 13 13 2 Changed details for tix "2 tix 4 Chicago Bulls v. Memphis Grizzlies". 229 2010-02-19 10:00:15.750638-06 22 3 60 jimmcbride 1 230 2010-02-19 10:00:35.300638-06 22 3 60 jimmcbride 2 Changed first_name and last_name. 231 2010-02-19 10:01:11.570638-06 22 14 14 14 2 Changed user. 232 2010-02-19 10:01:26.030638-06 22 14 15 15 2 Changed user. 233 2010-02-19 10:02:15.480638-06 22 14 15 15 2 Changed status and featured. 234 2010-02-19 10:02:28.210638-06 22 14 14 14 2 Changed status and featured. 235 2010-02-19 10:02:43.910638-06 22 14 13 13 2 Changed status and featured. 236 2010-02-19 10:03:02.670638-06 22 14 12 12 2 Changed status and featured. 237 2010-02-19 10:05:18.270638-06 22 14 15 15 2 Changed seating_type and seating_info for tix "2 tix 4 Chicago Blackhawks v. St. Louis Blues". 238 2010-02-19 10:06:03.930638-06 22 14 14 14 3 239 2010-02-19 10:06:37.410638-06 22 14 13 13 2 Changed seating_type and seating_info for tix "2 tix 4 Chicago Bulls v. Memphis Grizzlies". 240 2010-02-19 10:07:06.900638-06 22 14 12 12 2 Changed seating_type and seating_info for tix "2 tix 4 Chicago Bulls v. Memphis Grizzlies". 241 2010-02-19 10:07:49.870638-06 22 14 15 15 2 No fields changed. 242 2010-02-19 11:38:39.640638-06 22 3 34 pennyjohnson 2 Changed username and email. 243 2010-02-19 13:04:20.150638-06 6 17 5 Purchase #5 by summerdaze3@gmail.com 2 Payment captured successful. 244 2010-02-19 13:16:40.570638-06 6 21 4 etickets/7/Bullsvs76ers,22010.pdf 1 245 2010-02-19 13:35:43.730638-06 6 21 5 etickets/6/BullsvsMavericks30610.pdf 1 246 2010-02-19 13:39:11.930638-06 22 3 22 ksnodgrass 2 Changed groups. 247 2010-02-19 13:39:19.060638-06 6 17 3 Purchase #3 by kpryandds@aol.com 2 No fields changed. 248 2010-02-19 13:39:28.990638-06 6 17 3 Purchase #3 by kpryandds@aol.com 2 No fields changed. 249 2010-02-19 13:40:52.630638-06 22 3 22 ksnodgrass 2 Changed groups. 250 2010-02-20 09:20:57.570638-06 6 17 6 Purchase #6 by jim.raaf@gmail.com 2 Payment captured successful. 251 2010-02-20 09:23:28.860638-06 6 17 6 Purchase #6 by jim.raaf@gmail.com 2 No fields changed. 252 2010-02-20 09:29:27.930638-06 6 3 35 gcarr 2 No fields changed. 253 2010-02-22 09:17:25.090638-06 6 3 34 pennycoate 2 Changed username and last_name. 254 2010-02-22 11:23:20.320638-06 6 14 6 6 2 Changed distribution_date and distrubution_notes. 255 2010-02-22 11:24:39.170638-06 6 14 7 7 2 Changed distribution_date and distrubution_notes. 256 2010-02-22 12:04:54.930638-06 22 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed status and charity. 257 2010-02-22 12:11:42.060638-06 6 3 34 pennycoate 2 No fields changed. 258 2010-02-22 14:34:57.890638-06 22 17 7 Purchase #7 by ropamoca@comcast.net 2 Payment captured successful. 259 2010-02-22 17:07:56.230638-06 6 14 16 16 2 Changed featured. 260 2010-02-22 17:09:13.120638-06 6 14 16 16 2 Changed status. 261 2010-02-22 17:16:39.000638-06 22 14 16 16 2 Changed seating_info for tix "2 tix 4 Chicago Blackhawks vs Vancover Canucks at United Center". 262 2010-02-22 17:18:26.430638-06 22 14 16 16 2 Changed details for tix "2 tix 4 Chicago Blackhawks vs Vancover Canucks at United Center". 263 2010-02-22 19:25:52.750638-06 22 17 8 Purchase #8 by gpleopip@aol.com 2 Payment captured successful. 264 2010-02-22 19:58:27.490638-06 22 14 16 16 2 Changed distribution_date and distrubution_notes. 265 2010-02-23 08:45:00.160638-06 6 14 4 4 2 No fields changed. 266 2010-02-23 11:25:39.790638-06 22 14 4 4 2 Changed price for tix "2 tix 4 The Joffrey Ballet - CINDERELLA". 267 2010-02-23 11:28:16.660638-06 22 21 7 etickets/4/Joffrey Ballet - Cinderella, 2:26:10 1 268 2010-02-23 11:35:34.770638-06 22 21 7 etickets/4/Joffrey Ballet - Cinderella, 2:26:10 2 No fields changed. 269 2010-02-23 11:37:10.350638-06 22 14 4 4 2 Changed price for tix "2 tix 4 The Joffrey Ballet - CINDERELLA". 270 2010-02-23 11:37:20.250638-06 22 14 4 4 2 No fields changed. 271 2010-02-23 14:20:21.340638-06 22 21 9 etickets/17/Chicago Blackhawks vs Phoenix Coyotes, 3:23:10.pdf 1 272 2010-02-23 14:48:28.110638-06 22 14 17 17 2 Changed status. Changed seating_info and details for tix "2 tix 4 Chicago Blackhawks vs Phoenix Coyotes at the United Center". 273 2010-02-23 14:50:50.650638-06 22 14 18 18 2 Changed status. Changed seating_type, seating_info and details for tix "2 tix 4 Chicago White Sox vs Texas Rangers". 274 2010-02-23 14:52:04.960638-06 22 14 17 17 2 Changed featured. 275 2010-02-23 14:52:13.100638-06 22 14 18 18 2 Changed featured. 276 2010-02-23 15:51:04.150638-06 1 18 33 Allstate areaa 3 277 2010-02-23 15:51:26.650638-06 1 19 16 Chicago White Sox vs Texas Rangers 2 Changed venue. 278 2010-02-23 15:51:34.610638-06 1 18 34 U.S. Celluular Field 3 279 2010-02-23 15:59:17.440638-06 22 19 17 Chicago Bulls vs. Portland Trailblazers 1 280 2010-02-23 16:14:29.390638-06 22 14 19 19 1 281 2010-02-23 16:14:44.780638-06 22 14 19 19 2 Changed featured. 282 2010-02-23 16:26:04.140638-06 6 13 18 Ronald McDonald House of Chicago and Northwest Indiana 1 283 2010-02-23 16:29:27.730638-06 6 13 18 Ronald McDonald House of Chicago and Northwest Indiana 2 Changed status and description. 284 2010-02-23 16:35:06.050638-06 6 13 18 Ronald McDonald House of Chicago and Northwest Indiana 2 Changed status, email, charity and color_logo. 285 2010-02-23 17:10:25.600638-06 22 13 19 Rob Koranda Scholarship Foundation 1 286 2010-02-23 17:11:29.020638-06 22 13 18 Ronald McDonald House of Chicago and Northwest Indiana 2 Changed description. 287 2010-02-23 19:31:26.650638-06 6 14 19 19 2 No fields changed. 288 2010-02-24 10:40:00.470638-06 2 14 20 20 3 289 2010-02-24 10:40:31.400638-06 2 19 18 aasdfasdf 3 290 2010-02-24 18:36:12.360638-06 6 13 18 Ronald McDonald House of Chicago and Northwest Indiana 2 Changed status and charity. 291 2010-02-24 20:12:37.230638-06 6 3 6 kevin 2 Changed groups. 292 2010-02-24 21:11:03.800638-06 6 13 20 St. Francis High School 1 293 2010-02-24 21:15:59.610638-06 6 3 66 trishlynch 1 294 2010-02-24 21:16:59.380638-06 6 3 66 trishlynch 2 Changed first_name, last_name, email and groups. 295 2010-02-24 22:35:14.410638-06 1 18 35 asdfasdfas 3 296 2010-02-25 09:07:49.700638-06 22 14 21 21 2 Changed count, seating_info and details for tix "2 tix 4 Chicago Cubs vs Oakland Athletics". 297 2010-02-25 09:10:54.230638-06 22 19 22 Chicago Cubs vs. Oakland Athletics 1 298 2010-02-25 09:12:12.200638-06 22 14 24 24 1 299 2010-02-25 09:12:31.170638-06 22 14 21 21 2 Changed featured. Changed details for tix "2 tix 4 Chicago Cubs vs Oakland Athletics". 300 2010-02-25 09:12:33.950638-06 22 19 19 Chicago Cubs vs Oakland Athletics 2 No fields changed. 301 2010-02-25 09:13:04.170638-06 22 19 19 Chicago Cubs vs. Oakland Athletics 2 Changed title. 302 2010-02-25 12:17:25.810638-06 22 13 21 The CARA Program 1 303 2010-02-25 13:13:25.230638-06 22 17 9 Purchase #9 by heatherleepastor@yahoo.com 2 Payment captured successful. 304 2010-02-25 14:53:36.480638-06 22 21 10 etickets/3/Cirque du Soleil - ALEGRIA, 3:5:10 1 305 2010-02-25 16:32:29.830638-06 22 14 3 3 2 Changed distribution_date and distrubution_notes. 306 2010-02-25 16:32:46.770638-06 22 14 23 23 3 307 2010-02-25 16:32:46.770638-06 22 14 22 22 3 308 2010-02-25 17:45:01.060638-06 6 14 25 25 2 No fields changed. 381 2010-03-02 15:37:01.270638-06 6 3 6 kevin 2 Changed groups. 309 2010-02-25 17:55:29.140638-06 6 14 25 25 2 Changed status and capital. Changed count and seating_info for tix "2 tix 4 Chicago Bulls vs. Utah Jazz\r\nHarris Club tickets with parking pass". 310 2010-02-25 17:58:52.730638-06 6 14 25 25 2 Changed user. 311 2010-02-25 17:59:21.280638-06 6 14 25 25 2 Changed featured. 312 2010-02-25 18:03:20.060638-06 6 19 23 Chicago Bulls vs. Utah Jazz "Exclusive Harris Club Seating" 2 Changed title. 313 2010-02-25 18:04:27.160638-06 6 14 25 25 2 Changed details for tix "2 tix 4 Chicago Bulls vs. Utah Jazz "Exclusive Harris Club Seating"". 314 2010-02-25 18:05:18.470638-06 22 14 25 25 2 Changed seating_info for tix "2 tix 4 Chicago Bulls vs. Utah Jazz "Exclusive Harris Club Seating"". 315 2010-02-25 18:05:34.360638-06 22 14 25 25 2 Changed details for tix "2 tix 4 Chicago Bulls vs. Utah Jazz "Exclusive Harris Club Seating"". 316 2010-02-25 18:06:30.380638-06 22 14 25 25 2 Changed details for tix "2 tix 4 Chicago Bulls vs. Utah Jazz "Exclusive Harris Club Seating"". 317 2010-02-25 18:07:18.330638-06 6 14 26 26 1 318 2010-02-25 18:07:34.820638-06 6 14 25 25 2 No fields changed. 319 2010-02-25 18:07:53.610638-06 6 14 26 26 2 Changed details for tix "2 tix 4 Chicago Bulls vs. Utah Jazz "Exclusive Harris Club Seating"". 320 2010-02-25 18:08:16.750638-06 6 14 25 25 2 Changed seating_type for tix "2 tix 4 Chicago Bulls vs. Utah Jazz "Exclusive Harris Club Seating"". 321 2010-02-25 18:09:50.900638-06 22 14 26 26 2 Changed seating_info for tix "2 tix 4 Chicago Bulls vs. Utah Jazz "Exclusive Harris Club Seating"". 322 2010-02-25 18:14:15.510638-06 6 19 24 Chicago Blackhawks vs Edmonton Oilers + "Exclusive Harris Club Seating" 1 323 2010-02-25 18:16:18.100638-06 6 14 27 27 1 324 2010-02-25 18:17:26.350638-06 6 14 28 28 1 325 2010-02-25 18:22:06.840638-06 22 14 27 27 2 Changed seating_info for tix "2 tix 4 Chicago Blackhawks vs Edmonton Oilers + "Exclusive Harris Club Seating"". 405 2010-03-03 23:36:38.279089-06 1 13 9 J. Kyle Braid Foundation 2 Changed color_logo and mono_logo. 326 2010-02-25 18:22:34.910638-06 22 14 28 28 2 Changed seating_info for tix "2 tix 4 Chicago Blackhawks vs Edmonton Oilers + "Exclusive Harris Club Seating"". 327 2010-02-25 18:23:05.510638-06 22 19 24 Chicago Blackhawks vs. Edmonton Oilers "Exclusive Harris Club Seating" 2 Changed title. 328 2010-02-26 09:42:28.300638-06 22 17 10 Purchase #10 by jan@koranda71.com 2 Payment captured successful. 329 2010-02-26 09:44:19.990638-06 22 14 19 19 2 Changed distribution_date and distrubution_notes. 330 2010-02-26 17:15:10.860638-06 22 13 22 Ronald McDonald House Charities of Chicagoland & Northwest Indiana 1 331 2010-02-26 17:16:24.400638-06 22 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed title and status. 332 2010-02-26 17:16:38.770638-06 22 13 18 Ronald McDonald House of Chicago and Northwest Indiana 3 333 2010-02-26 17:16:58.710638-06 22 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed charity. 334 2010-02-26 17:25:21.400638-06 22 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed description. 335 2010-02-26 17:25:43.930638-06 22 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed status and charity. 336 2010-02-26 17:40:26.480638-06 6 12 60 Robynn Williams (plainfield, IL) 2 No fields changed. 337 2010-02-27 07:55:41.270638-06 6 14 4 4 2 Changed featured. 338 2010-02-27 07:57:04.480638-06 6 14 4 4 2 Changed status. 339 2010-02-27 14:21:46.130638-06 6 17 11 Purchase #11 by jepco24@sbcglobal.net 2 Payment captured successful. 340 2010-02-27 14:24:25.530638-06 6 14 29 29 3 341 2010-02-28 14:04:34.290638-06 6 19 26 Million Dollar Quartet 1 342 2010-02-28 14:08:18.090638-06 6 14 30 30 1 343 2010-02-28 14:09:21.380638-06 6 14 30 30 2 No fields changed. 344 2010-02-28 14:20:16.140638-06 6 14 31 31 1 345 2010-02-28 14:34:16.540638-06 6 19 27 Patt LuPone & Mandy Patinkin 1 346 2010-02-28 14:35:13.050638-06 6 19 27 Patt LuPone & Mandy Patinkin 2 No fields changed. 347 2010-02-28 14:40:30.090638-06 6 14 32 32 1 348 2010-02-28 14:43:13.860638-06 6 21 11 etickets/31/LuPone & Patinkin Tix.pdf 1 349 2010-02-28 20:26:38.080638-06 6 19 26 Million Dollar Quartet 2 No fields changed. 350 2010-02-28 20:26:48.540638-06 6 19 26 Million Dollar Quartet 2 No fields changed. 351 2010-02-28 21:17:22.300638-06 2 14 30 30 2 Changed price for tix "2 tix 4 Million Dollar Quartet". 352 2010-02-28 21:20:09.260638-06 1 14 31 31 3 353 2010-03-01 11:13:31.520638-06 22 14 30 30 2 Changed seating_info and details for tix "2 tix 4 Million Dollar Quartet". 354 2010-03-01 11:15:11.110638-06 22 14 32 32 2 Changed seating_info and details for tix "2 tix 4 Patt LuPone & Mandy Patinkin". 355 2010-03-01 11:16:33.620638-06 22 14 31 31 3 356 2010-03-01 11:16:33.670638-06 22 14 29 29 3 357 2010-03-01 11:19:52.800638-06 22 21 8 etickets/18/Chicago White Sox vs. Texas Rangers, 6:1:10 .pdf 2 Changed file. 358 2010-03-01 11:36:25.070638-06 22 22 1 contact-info 2 Changed content. 359 2010-03-01 13:38:19.930638-06 22 17 12 Purchase #12 by mattduskfan@sbcglobal.net 2 Payment captured successful. 360 2010-03-01 13:38:32.740638-06 22 17 13 Purchase #13 by fresh5986@yahoo.com 2 Payment captured successful. 361 2010-03-01 13:38:47.520638-06 22 17 14 Purchase #14 by irkarki@yahoo.com 2 Payment captured successful. 362 2010-03-01 13:39:43.560638-06 22 17 15 Purchase #15 by lisat2005@yahoo.com 2 Payment captured successful. 363 2010-03-01 14:39:41.890638-06 22 22 1 contact-info 2 Changed content. 364 2010-03-02 09:39:42.020638-06 22 3 93 benjaminmorgridge 1 365 2010-03-02 09:42:41.890638-06 22 3 93 benjaminmorgridge 3 366 2010-03-02 09:57:40.830638-06 22 14 28 28 2 Changed distribution_date and distrubution_notes. 367 2010-03-02 10:01:03.520638-06 22 17 16 Purchase #16 by deggers@wowway.com 2 Payment captured successful. 368 2010-03-02 10:10:15.870638-06 22 21 12 etickets/10/Billy Elliot the Musical, 6:4:10 1 369 2010-03-02 10:23:16.340638-06 22 14 10 10 2 Changed distribution_date and distrubution_notes. 370 2010-03-02 12:35:42.290638-06 6 3 97 ErinMiskov 1 371 2010-03-02 12:36:30.850638-06 6 3 97 ErinMiskov 2 Changed first_name, last_name and email. 372 2010-03-02 12:39:13.000638-06 6 14 33 33 1 373 2010-03-02 14:15:08.700638-06 22 13 23 San Miguel Schools 1 374 2010-03-02 14:58:37.780638-06 22 13 23 San Miguel Schools 2 Changed status, charity and color_logo. 375 2010-03-02 15:02:16.210638-06 22 17 17 Purchase #17 by michael.kotynek@us.mcd.com 2 Payment captured successful. 376 2010-03-02 15:12:30.530638-06 22 14 18 18 2 Changed distribution_date and distrubution_notes. 377 2010-03-02 15:19:00.420638-06 22 14 17 17 2 Changed distribution_date and distrubution_notes. 378 2010-03-02 15:19:53.360638-06 22 14 28 28 2 Changed distrubution_notes. 379 2010-03-02 15:22:07.810638-06 22 14 10 10 2 Changed distrubution_notes. 380 2010-03-02 15:30:38.120638-06 22 14 12 12 2 Changed distribution_date and distrubution_notes. 382 2010-03-02 15:40:28.990638-06 6 3 6 kevin 2 Changed groups. 383 2010-03-02 16:48:50.400638-06 6 14 27 27 2 Changed distribution_date and distrubution_notes. 384 2010-03-02 16:59:24.390638-06 6 19 27 Patti LuPone & Mandy Patinkin 2 Changed title. 385 2010-03-03 10:56:02.129089-06 6 3 105 stuartbuck 1 386 2010-03-03 11:03:40.049089-06 6 3 105 stuartbuck 2 Changed first_name, last_name and email. 387 2010-03-03 11:04:22.689089-06 6 14 33 33 2 Changed user. 388 2010-03-03 11:05:16.209089-06 6 14 35 35 3 389 2010-03-03 11:05:39.999089-06 6 14 34 34 3 390 2010-03-03 11:05:54.879089-06 6 14 34 34 3 391 2010-03-03 12:03:49.889089-06 1 7 1 www.tix4cause.com 2 Changed domain and name. 392 2010-03-03 13:48:03.279089-06 6 13 21 The CARA Program 2 Changed status. 393 2010-03-03 13:49:23.049089-06 6 13 21 The CARA Program 2 Changed charity. 394 2010-03-03 13:56:48.969089-06 6 3 110 juliehasel 1 395 2010-03-03 13:57:49.349089-06 6 3 110 juliehasel 2 Changed first_name, last_name, email and groups. 396 2010-03-03 14:23:37.419089-06 22 3 111 johndoe 1 397 2010-03-03 14:58:12.279089-06 22 3 111 johndoe 3 398 2010-03-03 15:01:05.749089-06 6 17 17 Purchase #17 by michael.kotynek@us.mcd.com 2 Changed tracking_code, confirmation and comment. 399 2010-03-03 15:54:13.629089-06 6 3 112 LindseyLopez 1 400 2010-03-03 15:55:17.099089-06 6 3 112 LindseyLopez 2 Changed first_name, last_name, email and groups. 401 2010-03-03 23:14:42.119089-06 1 13 10 Serra Club 2 No fields changed. 402 2010-03-03 23:32:00.299089-06 1 13 10 Serra Club 2 Changed color_logo. 403 2010-03-03 23:35:14.459089-06 1 13 2 Heritage YMCA Group 2 Changed color_logo and mono_logo. 404 2010-03-03 23:36:00.249089-06 1 13 8 Imerman Angels 2 Changed color_logo and mono_logo. 406 2010-03-03 23:37:32.909089-06 1 13 3 North Central College 2 Changed color_logo and mono_logo. 407 2010-03-03 23:38:13.429089-06 1 13 7 Rotary Club of Naperville Sunrise 2 Changed color_logo and mono_logo. 408 2010-03-03 23:38:46.249089-06 1 13 4 Special Olympics Illinois 2 Changed color_logo and mono_logo. 409 2010-03-03 23:39:31.469089-06 1 13 1 Sts. Peter & Paul Catholic School 2 Changed color_logo and mono_logo. 410 2010-03-03 23:40:12.819089-06 1 13 5 Winning Workplaces 2 Changed color_logo and mono_logo. 411 2010-03-04 09:02:01.959089-06 22 14 33 33 2 Changed distribution_date and distrubution_notes. 412 2010-03-04 09:02:09.859089-06 22 17 19 Purchase #19 by bmorgridge@rmhccni.org 2 Payment captured successful. 413 2010-03-04 09:24:55.729089-06 6 14 33 33 2 Changed details for tix "4 tix 4 Chicago Bulls v. Memphis Grizzlies". 414 2010-03-04 10:37:08.819089-06 22 3 118 lisapatel 1 415 2010-03-04 10:37:31.249089-06 22 3 118 lisapatel 2 Changed first_name, last_name and email. 416 2010-03-04 14:06:28.569089-06 22 3 30 jkoranda 2 No fields changed. 417 2010-03-04 14:23:38.979089-06 30 13 24 Our Children's Homestead 1 418 2010-03-04 14:24:52.709089-06 30 3 121 kirstinsamp 1 419 2010-03-04 14:26:43.789089-06 30 3 121 kirstinsamp 2 Changed first_name, last_name, email and groups. 420 2010-03-04 14:35:14.529089-06 30 13 19 Rob Koranda Scholarship Foundation 2 Changed teaser and color_logo. 421 2010-03-04 14:36:53.089089-06 30 13 19 Rob Koranda Scholarship Foundation 2 Changed email. 422 2010-03-04 14:37:38.979089-06 30 3 122 susankoranda 1 423 2010-03-04 14:38:35.989089-06 30 3 122 susankoranda 2 Changed first_name, last_name, email and groups. 424 2010-03-04 15:55:36.859089-06 22 13 2 Heritage YMCA Group 2 No fields changed. 425 2010-03-04 16:03:09.219089-06 22 13 2 Heritage YMCA Group 2 Changed color_logo. 426 2010-03-04 16:18:45.519089-06 22 3 22 ksnodgrass 2 Changed groups. 427 2010-03-05 07:15:56.059089-06 6 13 17 theater 3 428 2010-03-05 09:49:08.469089-06 22 3 123 cbrown 1 429 2010-03-05 09:49:33.979089-06 22 3 123 cbrown 2 Changed first_name, last_name, email, is_staff and is_superuser. 430 2010-03-05 09:49:49.209088-06 22 3 124 mnemetz 1 431 2010-03-05 09:50:11.999089-06 22 3 124 mnemetz 2 Changed first_name, last_name, email, is_staff and is_superuser. 432 2010-03-05 11:07:20.299088-06 124 17 7 Purchase #7 by ropamoca@comcast.net 2 Payment capture *FAILED*: The transaction cannot be found. 433 2010-03-05 11:08:31.999089-06 124 17 7 Purchase #7 by ropamoca@comcast.net 2 Payment capture *FAILED*: The transaction cannot be found. 434 2010-03-05 11:18:36.629089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 435 2010-03-05 11:19:49.989089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 436 2010-03-05 12:12:21.559089-06 124 14 15 15 2 Changed distribution_date and distrubution_notes. 437 2010-03-05 12:51:44.589089-06 124 14 32 32 2 Changed distribution_date and distrubution_notes. 438 2010-03-05 12:52:10.119089-06 124 17 7 Purchase #7 by ropamoca@comcast.net 2 Payment capture *FAILED*: The transaction cannot be found. 439 2010-03-05 12:52:42.669089-06 124 17 18 Purchase #18 by carrgj@sbcglobal.net 2 Payment captured successful. 440 2010-03-05 13:45:47.339089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 441 2010-03-05 13:46:31.979089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 442 2010-03-05 13:47:23.349089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 443 2010-03-05 13:49:09.699089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 444 2010-03-05 13:50:53.089089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 445 2010-03-05 13:52:09.019089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 446 2010-03-05 13:52:43.609089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 447 2010-03-05 13:53:22.879089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 448 2010-03-05 13:54:45.269089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 449 2010-03-05 13:56:58.959089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 450 2010-03-05 14:50:47.519089-06 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed description. 451 2010-03-05 15:29:32.409089-06 22 14 13 13 2 Changed status. 452 2010-03-05 18:09:34.619089-06 22 14 26 26 2 Changed price and details for tix "2 tix 4 Chicago Bulls vs. Utah Jazz "Exclusive Harris Club Seating"". 453 2010-03-05 18:10:12.379089-06 22 14 26 26 2 Changed details for tix "2 tix 4 Chicago Bulls vs. Utah Jazz "Exclusive Harris Club Seating"". 454 2010-03-05 19:49:48.629089-06 9 3 57 integralapproach 2 Changed is_staff and groups. 455 2010-03-06 11:26:20.459089-06 6 12 86 Winning Worplaces (Evanston, IL) 1 456 2010-03-06 11:29:04.739089-06 6 13 5 Winning Workplaces 2 Changed address, website and description. 457 2010-03-06 11:39:14.719089-06 6 13 5 Winning Workplaces 2 Changed has_detail and description. 458 2010-03-06 11:40:52.929089-06 6 13 5 Winning Workplaces 2 Changed has_detail. 459 2010-03-06 11:42:08.819089-06 6 13 5 Winning Workplaces 2 No fields changed. 460 2010-03-07 16:53:02.649089-06 6 13 5 Winning Workplaces 2 Changed has_detail. 461 2010-03-07 16:54:24.369089-06 6 13 5 Winning Workplaces 2 Changed has_detail. 462 2010-03-07 17:07:17.649089-06 6 12 87 Heritage YMCA (Naperville, IL) 1 463 2010-03-07 17:12:20.269089-06 6 13 2 Heritage YMCA Group 2 Changed address, website and description. 464 2010-03-07 17:13:35.679089-06 6 13 2 Heritage YMCA Group 2 Changed has_detail and description. 465 2010-03-07 17:16:31.219089-06 6 13 2 Heritage YMCA Group 2 No fields changed. 466 2010-03-07 17:16:33.719089-06 6 13 2 Heritage YMCA Group 2 No fields changed. 467 2010-03-07 17:24:09.449089-06 6 12 88 Aunt Martha's Youth Service Center (Olympia Fields, IL) 1 468 2010-03-07 17:26:45.669089-06 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed address, website, has_detail and banner. 469 2010-03-07 17:27:27.099089-06 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 No fields changed. 470 2010-03-07 17:31:36.749089-06 6 13 8 Imerman Angels 2 No fields changed. 471 2010-03-07 17:33:58.939089-06 6 12 89 Imerman Angels (Chicago, IL) 1 472 2010-03-07 17:35:26.469089-06 6 13 8 Imerman Angels 2 Changed address, website and description. 473 2010-03-07 17:36:54.159089-06 6 13 8 Imerman Angels 2 No fields changed. 474 2010-03-07 17:40:24.349089-06 6 13 8 Imerman Angels 2 Changed description. 475 2010-03-07 17:42:17.679089-06 6 13 8 Imerman Angels 2 No fields changed. 476 2010-03-07 17:50:18.029089-06 6 13 9 J. Kyle Braid Foundation 2 Changed website, description and banner. 477 2010-03-07 17:51:45.259089-06 6 13 9 J. Kyle Braid Foundation 2 No fields changed. 478 2010-03-07 17:54:12.429089-06 6 12 90 Little Friends, Inc (Naperville, IL) 1 479 2010-03-07 17:55:46.579089-06 6 13 11 Little Friends, Inc. 2 Changed address, website, description and banner. 5709 2010-10-06 19:05:23.633305-05 123 14 350 350 1 480 2010-03-07 18:00:20.989089-06 6 12 91 Little Heroes (Chicago, IL) 1 481 2010-03-07 18:01:16.299089-06 6 13 15 Little Heroes Pediatric Cancer Research Foundation 2 Changed address and website. 482 2010-03-07 18:01:38.459089-06 6 13 15 Little Heroes Pediatric Cancer Research Foundation 2 No fields changed. 483 2010-03-07 18:03:09.359089-06 6 12 92 Little Heroes Pediatric Cancer Research (Chicago, IL) 1 484 2010-03-07 18:03:41.839089-06 6 13 15 Little Heroes Pediatric Cancer Research Foundation 2 Changed address and description. 485 2010-03-07 18:04:51.829089-06 6 13 15 Little Heroes Pediatric Cancer Research Foundation 2 Changed banner. 486 2010-03-07 18:05:37.069089-06 6 13 15 Little Heroes Pediatric Cancer Research Foundation 2 No fields changed. 487 2010-03-07 18:12:43.249089-06 6 12 93 Mid America Service Dogs (Hinsdale, IL) 1 488 2010-03-07 18:13:20.739089-06 6 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed address, website, description and banner. 489 2010-03-07 18:14:25.849089-06 6 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 No fields changed. 490 2010-03-07 18:20:12.049089-06 6 13 14 Naperville Area Humane Society 2 Changed website and description. 491 2010-03-07 18:22:37.719089-06 6 12 94 Naperville Area Humane Society (Naperville, IL) 1 492 2010-03-07 18:23:35.199089-06 6 13 14 Naperville Area Humane Society 2 Changed address and banner. 493 2010-03-07 18:24:24.599089-06 6 13 14 Naperville Area Humane Society 2 No fields changed. 494 2010-03-07 18:26:27.369089-06 6 12 95 North Central College (Naperville, IL) 1 495 2010-03-07 18:28:31.659089-06 6 13 3 North Central College 2 Changed address, website, description and banner. 496 2010-03-07 18:33:05.629089-06 6 12 96 Our Children's Homestead (Naperville, IL) 1 497 2010-03-07 18:35:03.819089-06 6 13 24 Our Children's Homestead 2 Changed address, website, description and banner. 498 2010-03-07 18:35:06.009089-06 6 13 24 Our Children's Homestead 2 No fields changed. 499 2010-03-07 18:37:42.159089-06 6 13 19 Rob Koranda Scholarship Foundation 2 Changed description. 500 2010-03-07 18:42:29.509089-06 6 12 97 Ronald McDonald House Charities (Oak Brook Hills, IL) 1 501 2010-03-07 18:43:23.929089-06 6 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed address, website and description. 502 2010-03-07 18:50:39.989089-06 6 12 98 Naperville Sunrise Rotary (Naperville, IL) 1 503 2010-03-07 18:51:37.849089-06 6 12 99 Naperville Sunrise Rotary (Naperville, IL) 1 504 2010-03-07 18:52:11.499089-06 6 13 7 Rotary Club of Naperville Sunrise 2 Changed teaser, address, website, description and banner. 505 2010-03-07 18:55:55.069089-06 6 12 100 San Miguel School (Chicago, IL) 1 506 2010-03-07 18:57:18.449089-06 6 13 23 San Miguel Schools 2 Changed address, website, description and banner. 507 2010-03-07 18:58:10.029089-06 6 13 23 San Miguel Schools 2 No fields changed. 508 2010-03-08 09:38:33.559089-06 22 14 35 35 3 509 2010-03-08 09:38:33.569089-06 22 14 34 34 3 510 2010-03-08 11:19:29.099089-06 6 14 26 26 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Utah Jazz "Exclusive Harris Club Seating"". 511 2010-03-08 11:19:50.809089-06 6 14 26 26 2 No fields changed. 512 2010-03-08 11:20:06.389089-06 6 14 25 25 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Utah Jazz "Exclusive Harris Club Seating"". 513 2010-03-08 11:20:22.659089-06 6 14 25 25 2 No fields changed. 514 2010-03-08 16:46:36.189089-06 22 3 41 dalemancuso 2 No fields changed. 515 2010-03-08 16:47:43.329088-06 22 3 41 dalemancuso 2 No fields changed. 516 2010-03-08 16:49:09.689089-06 22 3 41 dalemancuso 2 Changed is_staff and is_superuser. 517 2010-03-09 13:56:31.329089-06 6 14 26 26 2 Changed status. 518 2010-03-09 13:56:52.869089-06 6 14 25 25 2 Changed status. 519 2010-03-09 14:18:12.969089-06 6 13 17 theater 3 520 2010-03-09 14:18:27.649089-06 6 13 17 theater 3 521 2010-03-09 14:28:56.929089-06 6 19 29 Chicago Wolves vs Texas Stars 1 522 2010-03-09 14:34:23.559089-06 6 14 36 36 1 523 2010-03-09 14:35:19.079089-06 6 21 13 etickets/35/Wolves Tix 19-20.pdf 1 524 2010-03-09 14:36:45.399089-06 6 19 29 Chicago Wolves vs Texas Stars 2 Changed date. 525 2010-03-09 14:39:43.719089-06 6 14 37 37 1 526 2010-03-09 14:40:40.709089-06 6 21 14 etickets/35/Wolves Tix 21-22.pdf 1 527 2010-03-09 14:42:47.219089-06 6 14 37 37 2 Changed seating_info for tix "2 tix 4 Chicago Wolves vs Texas Stars". 528 2010-03-09 14:43:07.229089-06 6 14 36 36 2 Changed seating_info for tix "2 tix 4 Chicago Wolves vs Texas Stars". 529 2010-03-10 10:09:33.859089-06 22 14 37 37 2 Changed seating_info and details for tix "2 tix 4 Chicago Wolves vs Texas Stars". 530 2010-03-10 11:22:39.909089-06 22 13 10 Serra Club 2 Changed has_detail. 531 2010-03-10 11:22:59.849089-06 22 13 10 Serra Club 2 Changed has_detail. 532 2010-03-11 09:29:34.059089-06 124 13 15 Little Heroes Pediatric Cancer Research Foundation 2 Changed has_detail. 533 2010-03-11 10:31:19.579089-06 22 13 8 Imerman Angels 2 Changed description. 534 2010-03-11 10:33:12.409089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 535 2010-03-11 10:33:43.279089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 536 2010-03-11 10:36:44.959089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 537 2010-03-11 10:41:05.149089-06 22 9 1 /about-us/ -- About Us 2 Changed content. 538 2010-03-11 10:42:35.459089-06 22 13 11 Little Friends, Inc. 2 Changed teaser and description. 539 2010-03-11 10:43:19.289089-06 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed teaser and description. 540 2010-03-11 10:43:28.599089-06 22 13 2 Heritage YMCA Group 2 No fields changed. 541 2010-03-11 10:44:54.269089-06 22 13 8 Imerman Angels 2 Changed description. 542 2010-03-11 10:45:03.459089-06 22 13 9 J. Kyle Braid Foundation 2 No fields changed. 543 2010-03-11 10:45:16.909089-06 22 13 11 Little Friends, Inc. 2 No fields changed. 544 2010-03-11 10:45:31.039089-06 22 13 15 Little Heroes Pediatric Cancer Research Foundation 2 No fields changed. 545 2010-03-11 10:46:25.039089-06 22 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed teaser and description. 546 2010-03-11 10:46:55.469089-06 22 13 14 Naperville Area Humane Society 2 Changed teaser and description. 547 2010-03-11 10:47:05.559089-06 22 13 3 North Central College 2 No fields changed. 548 2010-03-11 10:47:16.459089-06 22 13 24 Our Children's Homestead 2 No fields changed. 549 2010-03-11 10:47:29.329089-06 22 13 19 Rob Koranda Scholarship Foundation 2 No fields changed. 550 2010-03-11 10:49:17.839089-06 22 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed teaser and description. 551 2010-03-11 10:50:24.169089-06 22 13 7 Rotary Club of Naperville Sunrise 2 No fields changed. 552 2010-03-11 10:50:33.629089-06 22 13 23 San Miguel Schools 2 No fields changed. 5710 2010-10-06 19:06:22.328571-05 123 14 351 351 1 553 2010-03-11 10:50:57.849089-06 22 13 10 Serra Club 2 Changed description. 554 2010-03-11 10:51:23.509089-06 22 13 4 Special Olympics Illinois 2 Changed description. 555 2010-03-11 10:52:23.619089-06 22 13 20 St. Francis High School 2 Changed teaser. 556 2010-03-11 10:53:06.949089-06 22 13 20 St. Francis High School 2 Changed teaser and description. 557 2010-03-11 10:53:47.329089-06 22 13 1 Sts. Peter & Paul Catholic School 2 Changed teaser and description. 558 2010-03-11 10:54:08.389089-06 22 13 21 The CARA Program 2 Changed description. 559 2010-03-11 10:54:48.969089-06 22 13 16 The University of Chicago Cancer Research Foundation 2 Changed description. 560 2010-03-11 10:56:15.939089-06 22 13 5 Winning Workplaces 2 Changed description. 561 2010-03-11 10:57:22.679089-06 22 13 5 Winning Workplaces 2 Changed has_detail and description. 562 2010-03-11 10:58:27.419089-06 22 13 5 Winning Workplaces 2 Changed description. 563 2010-03-11 10:59:04.639089-06 22 13 5 Winning Workplaces 2 No fields changed. 564 2010-03-11 13:09:47.399089-06 124 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed has_detail. 565 2010-03-11 14:59:42.559089-06 123 13 13 Aunt Martha's Youth Service Center, Inc. 2 No fields changed. 566 2010-03-11 15:02:48.859089-06 123 13 8 Imerman Angels 2 Changed has_detail. 567 2010-03-11 15:03:01.609089-06 123 13 13 Aunt Martha's Youth Service Center, Inc. 2 No fields changed. 568 2010-03-11 15:03:17.499089-06 123 13 2 Heritage YMCA Group 2 No fields changed. 569 2010-03-11 15:03:25.629089-06 123 13 8 Imerman Angels 2 No fields changed. 570 2010-03-11 15:05:35.209089-06 123 13 9 J. Kyle Braid Foundation 2 Changed has_detail. 571 2010-03-11 15:06:43.339089-06 123 13 11 Little Friends, Inc. 2 Changed has_detail. 572 2010-03-11 15:06:58.309089-06 123 13 11 Little Friends, Inc. 2 No fields changed. 573 2010-03-11 15:07:41.449089-06 123 13 15 Little Heroes Pediatric Cancer Research Foundation 2 No fields changed. 574 2010-03-11 15:08:29.739089-06 123 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed has_detail. 575 2010-03-11 15:09:22.229089-06 123 13 14 Naperville Area Humane Society 2 Changed has_detail. 576 2010-03-11 15:09:57.449089-06 123 13 3 North Central College 2 Changed has_detail. 577 2010-03-11 15:13:02.779089-06 123 13 24 Our Children's Homestead 2 Changed has_detail. 578 2010-03-11 15:14:07.869089-06 123 13 19 Rob Koranda Scholarship Foundation 2 Changed has_detail. 579 2010-03-11 15:14:52.599089-06 123 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 No fields changed. 580 2010-03-11 15:15:15.889089-06 123 13 7 Rotary Club of Naperville Sunrise 2 Changed has_detail. 581 2010-03-11 15:15:52.479088-06 123 13 23 San Miguel Schools 2 Changed has_detail. 582 2010-03-11 15:16:24.989089-06 123 13 23 San Miguel Schools 2 No fields changed. 583 2010-03-11 15:16:46.879089-06 123 13 10 Serra Club 2 Changed has_detail. 584 2010-03-11 15:18:50.869089-06 123 13 10 Serra Club 2 No fields changed. 585 2010-03-11 15:20:06.209089-06 123 13 4 Special Olympics Illinois 2 Changed has_detail. 586 2010-03-11 15:21:28.159089-06 123 13 20 St. Francis High School 2 Changed has_detail. 587 2010-03-11 15:22:02.229089-06 123 13 1 Sts. Peter & Paul Catholic School 2 Changed has_detail. 588 2010-03-11 15:46:19.459089-06 123 13 1 Sts. Peter & Paul Catholic School 2 No fields changed. 589 2010-03-11 15:50:45.099089-06 123 13 21 The CARA Program 2 Changed has_detail. 590 2010-03-11 15:51:41.739089-06 123 13 5 Winning Workplaces 2 No fields changed. 591 2010-03-11 16:18:10.819089-06 123 13 9 J. Kyle Braid Foundation 2 Changed email. 592 2010-03-16 08:25:49.327873-05 6 3 3 ted 2 Changed is_staff and is_superuser. 593 2010-03-16 08:26:10.327873-05 6 3 5 christine 2 Changed is_staff and is_superuser. 594 2010-03-16 08:26:32.187873-05 6 3 4 jeff 2 Changed is_staff and is_superuser. 595 2010-03-16 10:39:47.187873-05 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed teaser. 596 2010-03-16 10:40:23.777873-05 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed teaser. 597 2010-03-16 10:40:46.207873-05 22 13 11 Little Friends, Inc. 2 Changed teaser. 598 2010-03-16 10:41:18.357873-05 22 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed teaser. 599 2010-03-16 10:41:34.887873-05 22 13 14 Naperville Area Humane Society 2 Changed teaser. 600 2010-03-16 10:42:32.767873-05 22 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed teaser. 601 2010-03-16 10:43:09.427873-05 22 13 20 St. Francis High School 2 Changed teaser. 602 2010-03-16 10:43:26.017873-05 22 13 1 Sts. Peter & Paul Catholic School 2 Changed teaser. 603 2010-03-16 10:55:19.437873-05 124 13 14 Naperville Area Humane Society 2 Changed description. 604 2010-03-16 10:57:48.817873-05 124 13 14 Naperville Area Humane Society 2 Changed description. 605 2010-03-16 10:58:26.987873-05 124 13 14 Naperville Area Humane Society 2 No fields changed. 821 2010-03-27 12:40:20.507873-05 6 14 37 37 2 Changed status and featured. 606 2010-03-16 10:59:10.467873-05 124 13 14 Naperville Area Humane Society 2 No fields changed. 607 2010-03-16 11:00:33.617873-05 124 13 14 Naperville Area Humane Society 2 No fields changed. 608 2010-03-17 08:04:57.827873-05 6 12 101 University of Chicago Cancer Research Foundation (Chicago, IL) 1 609 2010-03-17 08:07:02.287873-05 6 13 16 The University of Chicago Cancer Research Foundation 2 Changed status, address, website, email, charity and has_detail. 610 2010-03-17 08:45:09.797873-05 6 14 5 5 2 No fields changed. 611 2010-03-17 10:00:56.047873-05 22 13 25 Juvenile Diabetes Research Foundation 1 612 2010-03-17 10:02:11.307873-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed color_logo. 613 2010-03-17 10:02:23.897873-05 22 13 25 Juvenile Diabetes Research Foundation 2 No fields changed. 614 2010-03-17 10:02:35.857873-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed charity. 615 2010-03-17 10:03:08.527873-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed status. 616 2010-03-17 10:03:35.107873-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed status and charity. 617 2010-03-17 10:04:44.067873-05 22 14 24 24 2 Changed status. 618 2010-03-17 10:05:11.997873-05 22 14 21 21 2 Changed status. 619 2010-03-17 11:50:44.337873-05 6 14 24 24 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Oakland Athletics". 620 2010-03-17 11:50:57.637873-05 6 14 24 24 2 No fields changed. 621 2010-03-17 11:51:20.977873-05 6 14 21 21 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Oakland Athletics". 622 2010-03-17 11:51:33.387873-05 6 14 21 21 2 No fields changed. 623 2010-03-17 13:28:14.177873-05 124 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed website. 624 2010-03-17 13:42:03.747873-05 30 13 11 Little Friends, Inc. 2 Changed website. 625 2010-03-17 13:43:47.977872-05 6 12 102 NCO Youth & Family Services (Naperville, IL) 1 626 2010-03-17 13:50:54.357872-05 6 12 103 NCO Youth & Family Services (Naperville, IL) 1 627 2010-03-17 13:53:55.317873-05 6 13 26 NCO Youth & Family Services 1 628 2010-03-17 13:55:26.467873-05 124 13 14 Naperville Area Humane Society 2 Changed banner. 629 2010-03-17 13:57:53.577873-05 30 14 24 24 2 Changed charity. 630 2010-03-17 14:03:47.677873-05 124 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed banner. 631 2010-03-17 14:05:02.877873-05 124 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed banner. 632 2010-03-17 14:07:25.547873-05 6 13 26 NCO Youth & Family Services 2 Changed color_logo. 633 2010-03-17 14:10:19.957873-05 6 13 26 NCO Youth & Family Services 2 Changed color_logo. 634 2010-03-17 14:21:54.977873-05 6 3 135 julielichter 1 635 2010-03-17 14:22:34.157873-05 6 3 135 julielichter 2 Changed first_name, last_name, email, is_staff and groups. 636 2010-03-17 14:27:44.947873-05 6 13 26 NCO Youth & Family Services 2 Changed color_logo. 637 2010-03-17 14:28:13.467873-05 6 13 26 NCO Youth & Family Services 2 No fields changed. 638 2010-03-17 15:05:47.627873-05 22 13 8 Imerman Angels 2 Changed banner. 639 2010-03-17 16:08:23.537873-05 6 13 26 NCO Youth & Family Services 2 No fields changed. 640 2010-03-17 16:09:40.317873-05 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed color_logo. 641 2010-03-17 17:25:10.037873-05 22 13 11 Little Friends, Inc. 2 Changed banner. 642 2010-03-17 17:36:47.387873-05 22 13 24 Our Children's Homestead 2 Changed banner. 643 2010-03-17 17:39:01.917873-05 22 13 24 Our Children's Homestead 2 No fields changed. 644 2010-03-17 17:47:36.507873-05 22 13 24 Our Children's Homestead 2 No fields changed. 645 2010-03-18 10:44:46.407873-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed mono_logo and banner. 646 2010-03-18 10:45:03.937873-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed status. 647 2010-03-18 10:45:17.917873-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed charity. 648 2010-03-18 10:45:39.857873-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed status and charity. 649 2010-03-18 12:24:05.847873-05 22 13 3 North Central College 2 Changed description. 650 2010-03-18 12:25:14.407873-05 22 13 3 North Central College 2 Changed banner. 651 2010-03-18 12:25:52.617873-05 22 13 3 North Central College 2 Changed banner. 652 2010-03-18 16:43:13.037873-05 6 3 6 kevin 2 Changed groups. 653 2010-03-18 16:59:45.897873-05 30 19 30 Bulls vs. Heat 1 654 2010-03-18 17:00:20.777873-05 30 19 31 Bulls vs. Heat 1 655 2010-03-18 17:07:18.607873-05 30 3 137 lvansomeren 1 656 2010-03-18 17:08:16.407873-05 30 3 137 lvansomeren 2 Changed first_name, last_name and email. 657 2010-03-18 17:12:09.257873-05 30 3 137 lvansomeren 2 Changed email. 658 2010-03-18 17:18:35.807873-05 30 14 38 38 1 659 2010-03-18 17:22:20.187873-05 30 14 39 39 1 660 2010-03-19 10:41:59.847873-05 22 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed banner. 661 2010-03-19 10:42:51.837873-05 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed mono_logo. 662 2010-03-19 10:43:43.077873-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed mono_logo. 663 2010-03-19 10:43:58.317873-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed mono_logo. 664 2010-03-19 10:44:22.627873-05 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed mono_logo. 665 2010-03-19 11:10:35.517873-05 22 12 108 Chicago International Charter School (Chicago, IL) 1 666 2010-03-19 11:11:55.547873-05 22 13 27 Chicago International Charter School 1 667 2010-03-19 11:12:33.737873-05 22 13 27 Chicago International Charter School 2 Changed address and email. 668 2010-03-19 11:15:09.707873-05 22 19 28 Chicago Bulls vs. Utah Jazz 2 Changed title. 669 2010-03-19 11:15:41.387873-05 22 19 31 Chicago Bulls vs. Miami Heat 2 Changed title. 670 2010-03-19 11:15:57.017873-05 22 19 30 Chicago Bulls vs. Miami Heat 2 Changed title. 671 2010-03-19 11:16:31.297873-05 22 19 29 Chicago Wolves vs. Texas Stars 2 Changed title. 672 2010-03-19 14:31:47.347873-05 6 13 28 ALS Association Greater Chicago Chapter 1 673 2010-03-19 14:32:58.307873-05 6 12 109 ALS Assoc. Greater Chicago Chapter (Chicago, IL) 1 674 2010-03-19 14:33:47.917873-05 6 13 28 ALS Association Greater Chicago Chapter 2 Changed address, website, email, charity, has_detail and description. 675 2010-03-19 14:33:52.607872-05 6 13 28 ALS Association Greater Chicago Chapter 2 No fields changed. 676 2010-03-19 14:38:09.347873-05 6 13 28 ALS Association Greater Chicago Chapter 2 Changed description, color_logo and banner. 677 2010-03-19 14:41:36.437873-05 6 3 140 juliesharpe 1 678 2010-03-19 14:42:06.087873-05 6 3 140 juliesharpe 2 Changed first_name, last_name, email, is_staff and groups. 679 2010-03-19 16:02:30.647873-05 6 12 110 ALS Assoc. Greater Chicago Chapter (Chicago, IL) 1 680 2010-03-19 16:02:53.437873-05 6 13 28 ALS Association Greater Chicago Chapter 2 Changed address. 681 2010-03-19 17:10:09.597873-05 6 13 16 The University of Chicago Cancer Research Foundation 2 Changed website. 682 2010-03-19 17:11:26.737873-05 6 13 16 The University of Chicago Cancer Research Foundation 2 Changed website. 683 2010-03-19 17:12:40.947873-05 6 13 16 The University of Chicago Cancer Research Foundation 2 Changed website. 684 2010-03-19 17:14:56.957873-05 6 13 16 The University of Chicago Cancer Research Foundation 2 Changed website. 685 2010-03-19 17:21:27.017873-05 6 13 16 The University of Chicago Cancer Research Foundation 2 Changed website. 686 2010-03-19 17:29:16.327873-05 6 13 28 ALS Association Greater Chicago Chapter 2 Changed mono_logo. 687 2010-03-19 17:30:09.387873-05 6 13 28 ALS Association Greater Chicago Chapter 2 Changed mono_logo. 688 2010-03-19 17:33:16.317873-05 6 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed mono_logo. 689 2010-03-22 10:34:24.397873-05 22 3 30 jkoranda 2 No fields changed. 690 2010-03-22 10:36:39.597873-05 30 19 32 Chicago Bulls vs. Phoenix Suns 1 691 2010-03-22 10:37:10.237873-05 30 19 33 Chicago Bulls vs. Phoenix Suns 1 692 2010-03-22 10:38:58.227873-05 30 14 40 40 1 693 2010-03-22 10:40:45.697873-05 30 14 41 41 1 694 2010-03-22 11:10:12.447873-05 22 14 41 41 2 Changed featured. 695 2010-03-22 11:10:27.487873-05 22 14 40 40 2 Changed featured. 696 2010-03-22 12:20:08.667873-05 22 13 27 Chicago International Charter School 2 Changed teaser, website, charity, has_detail, description, color_logo and banner. 697 2010-03-22 12:20:47.847873-05 22 13 27 Chicago International Charter School 2 Changed status. 698 2010-03-22 12:21:48.497873-05 22 13 27 Chicago International Charter School 2 Changed color_logo and banner. 699 2010-03-22 12:23:30.617873-05 22 13 27 Chicago International Charter School 2 Changed color_logo and banner. 5711 2010-10-06 19:08:08.071207-05 123 14 352 352 1 700 2010-03-22 12:24:15.237873-05 22 13 27 Chicago International Charter School 2 Changed banner. 701 2010-03-22 12:24:40.847873-05 22 13 27 Chicago International Charter School 2 Changed banner. 702 2010-03-22 12:34:37.457873-05 22 13 27 Chicago International Charter School 2 Changed color_logo and banner. 703 2010-03-22 12:35:08.197873-05 22 13 27 Chicago International Charter School 2 Changed color_logo. 704 2010-03-22 12:35:20.997873-05 22 13 27 Chicago International Charter School 2 Changed color_logo. 705 2010-03-22 12:35:46.347873-05 22 13 27 Chicago International Charter School 2 Changed color_logo. 706 2010-03-22 14:43:46.597873-05 22 13 27 Chicago International Charter School 2 Changed teaser and description. 707 2010-03-22 14:45:13.667873-05 22 13 1 Sts. Peter & Paul Catholic School 2 No fields changed. 708 2010-03-22 14:45:46.227873-05 22 13 27 Chicago International Charter School 2 Changed description. 709 2010-03-22 14:46:45.017873-05 22 13 28 ALS Association Greater Chicago Chapter 2 Changed teaser. 710 2010-03-22 14:47:05.217873-05 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed description. 711 2010-03-22 14:49:08.897873-05 22 13 27 Chicago International Charter School 2 Changed description. 712 2010-03-22 14:50:44.537873-05 22 13 8 Imerman Angels 2 Changed description. 713 2010-03-22 14:51:13.957873-05 22 13 11 Little Friends, Inc. 2 Changed description. 714 2010-03-22 14:51:55.427873-05 22 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed description. 715 2010-03-22 14:52:39.017873-05 22 13 26 NCO Youth & Family Services 2 Changed teaser. 716 2010-03-22 14:53:40.397873-05 22 13 14 Naperville Area Humane Society 2 Changed description. 717 2010-03-22 14:54:05.187873-05 22 13 27 Chicago International Charter School 2 Changed description. 718 2010-03-22 14:55:45.877873-05 22 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed teaser. 719 2010-03-22 14:56:39.967873-05 22 13 20 St. Francis High School 2 Changed description. 720 2010-03-22 14:57:24.907873-05 22 13 1 Sts. Peter & Paul Catholic School 2 Changed description. 721 2010-03-22 14:57:42.777873-05 22 13 16 The University of Chicago Cancer Research Foundation 2 No fields changed. 722 2010-03-22 14:58:32.197873-05 22 13 5 Winning Workplaces 2 Changed description. 723 2010-03-22 14:59:00.017873-05 22 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed description. 724 2010-03-22 15:00:03.687873-05 22 13 28 ALS Association Greater Chicago Chapter 2 Changed teaser. 725 2010-03-22 15:01:26.947873-05 22 13 26 NCO Youth & Family Services 2 Changed teaser. 726 2010-03-22 15:02:27.777873-05 22 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed teaser. 727 2010-03-22 15:04:24.307873-05 22 12 110 ALS Assoc. Greater Chicago Chapter (Chicago, IL) 2 Changed street_1 and street_2. 728 2010-03-22 15:06:53.207873-05 22 12 89 Imerman Angels (Chicago, IL) 2 Changed street_1 and street_2. 729 2010-03-22 15:07:35.327873-05 22 12 89 Imerman Angels (Chicago, IL) 2 Changed street_1 and street_2. 730 2010-03-22 15:08:05.427873-05 22 12 109 ALS Assoc. Greater Chicago Chapter (Chicago, IL) 3 731 2010-03-22 15:08:12.277873-05 22 12 110 ALS Assoc. Greater Chicago Chapter (Chicago, IL) 2 Changed street_1. 732 2010-03-22 15:08:20.707873-05 22 12 110 ALS Assoc. Greater Chicago Chapter (Chicago, IL) 2 Changed street_2. 733 2010-03-22 15:08:31.597873-05 22 12 108 Chicago International Charter School (Chicago, IL) 2 Changed street_1 and street_2. 734 2010-03-22 15:09:32.657873-05 22 12 102 NCO Youth & Family Services (Naperville, IL) 3 735 2010-03-22 15:09:51.677873-05 22 12 110 ALS Association of Greater Chicago Chapter (Chicago, IL) 2 Changed addressee. 736 2010-03-22 15:10:34.367873-05 22 12 101 University of Chicago Cancer Research Foundation (Chicago, IL) 2 Changed street_1. 737 2010-03-22 15:11:18.457873-05 22 12 100 San Miguel Schools (Chicago, IL) 2 Changed addressee and street_1. 738 2010-03-22 15:11:43.057873-05 22 13 27 Chicago International Charter School 2 No fields changed. 739 2010-03-22 15:12:11.797873-05 22 13 23 San Miguel Schools Chicago 2 Changed title and slug. 740 2010-03-22 15:12:21.427873-05 22 12 100 San Miguel Schools Chicago (Chicago, IL) 2 Changed addressee. 741 2010-03-22 15:13:05.997873-05 22 12 98 Naperville Sunrise Rotary (Naperville, IL) 3 742 2010-03-22 15:13:29.727872-05 22 12 99 Rotary Club of Naperville Sunrise (Naperville, IL) 2 Changed addressee. 743 2010-03-22 15:13:56.087873-05 22 12 97 Ronald McDonald House Charities (Oak Brook Hills, IL) 2 Changed street_1. 744 2010-03-22 15:14:07.747873-05 22 12 96 Our Children's Homestead (Naperville, IL) 2 Changed street_1. 745 2010-03-22 15:14:51.757873-05 22 12 95 North Central College (Naperville, IL) 2 Changed street_1. 746 2010-03-22 15:20:02.277873-05 22 12 94 Naperville Area Humane Society (Naperville, IL) 2 Changed street_1. 747 2010-03-22 15:20:21.907872-05 22 12 93 Mid America Service Dogs' Foundation (Hinsdale, IL) 2 Changed addressee. 822 2010-03-29 09:55:56.677873-05 6 13 32 Nettelhorst School 1 748 2010-03-22 15:20:41.687873-05 22 12 92 Little Heroes Pediatric Cancer Research Foundation (Chicago, IL) 2 Changed addressee and street_1. 749 2010-03-22 15:21:53.697873-05 22 12 91 Little Heroes (Chicago, IL) 3 750 2010-03-22 15:22:15.057873-05 22 12 90 Little Friends, Inc. (Naperville, IL) 2 Changed addressee and street_1. 751 2010-03-22 15:22:31.467872-05 22 12 89 Imerman Angels (Chicago, IL) 2 No fields changed. 752 2010-03-22 15:22:52.127873-05 22 12 87 Heritage YMCA (Naperville, IL) 2 Changed street_1. 753 2010-03-22 15:23:03.357873-05 22 12 86 Winning Worplaces (Evanston, IL) 2 Changed street_1. 754 2010-03-22 15:26:01.357873-05 22 12 103 NCO Youth & Family Services (Naperville, IL) 2 Changed street_1. 755 2010-03-22 15:30:05.227873-05 22 13 26 NCO Youth & Family Services 2 Changed teaser and description. 756 2010-03-22 15:30:31.477873-05 22 13 26 NCO Youth & Family Services 2 Changed description. 757 2010-03-22 15:30:56.877873-05 22 13 26 NCO Youth & Family Services 2 Changed description. 758 2010-03-22 15:31:21.697873-05 22 13 26 NCO Youth & Family Services 2 No fields changed. 759 2010-03-22 17:07:34.427873-05 22 13 28 ALS Association Greater Chicago Chapter 2 Changed mono_logo. 760 2010-03-22 17:10:12.317873-05 22 13 28 ALS Association Greater Chicago Chapter 2 Changed mono_logo. 761 2010-03-22 17:11:01.187873-05 22 13 28 ALS Association Greater Chicago Chapter 2 Changed mono_logo. 762 2010-03-22 19:26:39.637873-05 30 13 29 Next Level Foundation 1 763 2010-03-22 19:28:49.957873-05 30 3 142 levellebrown 1 764 2010-03-22 19:29:57.137873-05 30 3 142 levellebrown 2 Changed first_name, last_name, email and groups. 765 2010-03-23 11:02:42.827873-05 124 12 111 Juvenile Diabetes Research Foundation (New York, New York) 1 842 2010-03-30 15:37:50.587873-05 124 13 33 Arranmore Center for the Arts 3 5712 2010-10-06 19:09:06.435312-05 123 14 353 353 1 766 2010-03-23 11:07:02.687873-05 124 13 25 Juvenile Diabetes Research Foundation 2 Changed address, email, charity, has_detail, description and mono_logo. 767 2010-03-23 11:08:13.607873-05 124 13 25 Juvenile Diabetes Research Foundation 2 Changed status. 768 2010-03-23 11:16:51.547873-05 6 14 39 39 2 Changed price and details for tix "2 tix 4 Chicago Bulls vs. Miami Heat". 769 2010-03-23 11:17:26.007873-05 6 14 38 38 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Miami Heat". 770 2010-03-23 11:18:06.177873-05 6 14 38 38 2 Changed details for tix "2 tix 4 Chicago Bulls vs. Miami Heat". 771 2010-03-23 11:18:22.757873-05 22 3 144 katefloyd 1 772 2010-03-23 11:19:24.147873-05 22 3 144 katefloyd 2 Changed first_name, last_name, email and groups. 773 2010-03-23 11:22:29.677873-05 6 12 112 Next Level Foundation (Naperville, IL) 1 774 2010-03-23 11:22:50.077873-05 6 13 29 Next Level Foundation 2 Changed address and has_detail. 775 2010-03-23 11:24:27.167873-05 6 13 29 Next Level Foundation 2 No fields changed. 776 2010-03-23 15:12:01.387873-05 6 13 29 Next Level Foundation 2 No fields changed. 777 2010-03-24 10:14:56.017873-05 30 14 38 38 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Miami Heat". 778 2010-03-24 10:15:11.987873-05 30 14 39 39 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Miami Heat". 779 2010-03-24 10:15:40.467873-05 30 14 40 40 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Phoenix Suns". 780 2010-03-24 10:15:56.407873-05 30 14 41 41 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Phoenix Suns". 781 2010-03-24 16:23:19.577873-05 22 13 24 Our Children's Homestead 2 Changed banner. 782 2010-03-25 09:38:59.527873-05 30 14 39 39 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Miami Heat". 783 2010-03-25 09:39:12.377873-05 30 14 38 38 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Miami Heat". 784 2010-03-25 13:27:43.307873-05 124 14 39 39 2 Changed distribution_date and distrubution_notes. 785 2010-03-25 13:32:50.077872-05 124 14 39 39 2 No fields changed. 786 2010-03-25 13:33:12.117873-05 124 17 24 Purchase #24 by angelesclan@netzero.net 2 Payment captured successful. 787 2010-03-25 13:37:56.227873-05 124 14 38 38 2 Changed distribution_date and distrubution_notes. 788 2010-03-25 13:38:17.097873-05 124 17 23 Purchase #23 by angelesclan@netzero.net 2 Payment captured successful. 789 2010-03-25 14:06:28.547873-05 22 13 28 ALS Association Greater Chicago Chapter 2 Changed banner. 790 2010-03-25 14:07:12.957873-05 22 13 28 ALS Association Greater Chicago Chapter 2 Changed banner. 791 2010-03-25 14:25:08.717873-05 6 17 22 Purchase #22 by cstubler@lindengrouphealth.com 2 Changed tracking_code, confirmation and comment. 792 2010-03-25 14:25:44.687873-05 6 17 22 Purchase #22 by cstubler@lindengrouphealth.com 2 Payment captured successful. 793 2010-03-25 14:27:45.327873-05 6 14 40 40 2 Changed distribution_date and distrubution_notes. 794 2010-03-25 14:29:01.647873-05 6 17 22 Purchase #22 by cstubler@lindengrouphealth.com 2 No fields changed. 795 2010-03-25 17:48:08.207873-05 6 13 26 NCO Youth & Family Services 2 Changed teaser. 796 2010-03-26 10:25:49.257873-05 6 14 37 37 2 Changed price for tix "2 tix 4 Chicago Wolves vs. Texas Stars". 797 2010-03-26 10:26:01.547873-05 6 14 37 37 2 No fields changed. 798 2010-03-26 10:26:16.797873-05 6 14 36 36 2 Changed price for tix "2 tix 4 Chicago Wolves vs. Texas Stars". 799 2010-03-26 10:26:36.727873-05 6 14 36 36 2 No fields changed. 800 2010-03-26 10:57:02.927873-05 30 13 30 Hinsdale Central High School Foundation 1 801 2010-03-26 10:58:06.167873-05 30 3 147 jeanneanderko 1 802 2010-03-26 10:59:07.057873-05 30 3 147 jeanneanderko 2 Changed first_name, last_name, email and groups. 803 2010-03-26 13:46:50.267873-05 30 13 31 Naperville Responds To Our Veterans 1 804 2010-03-26 13:48:05.877873-05 30 19 34 Chicago Bulls vs. Milwaukee Bucks 1 805 2010-03-26 13:48:40.717873-05 30 19 35 Chicago Bulls vs. Milwaukee Bucks 1 806 2010-03-26 13:49:11.067873-05 30 19 36 Chicago Bulls vs. Boston Celtics 1 807 2010-03-26 13:49:36.937873-05 30 19 37 Chicago Bulls vs. Boston Celtics 1 808 2010-03-26 13:50:17.137873-05 30 19 34 Chicago Bulls vs. Milwaukee Bucks 2 Changed date. 809 2010-03-26 13:51:50.517873-05 30 3 148 jackpersin 1 810 2010-03-26 13:52:26.787873-05 30 3 148 jackpersin 2 Changed first_name, last_name, email and groups. 811 2010-03-26 13:53:21.257873-05 30 13 31 Naperville Responds To Our Veterans 2 Changed email and charity. 812 2010-03-26 13:56:58.127873-05 30 14 42 42 1 813 2010-03-26 13:58:22.037873-05 30 14 43 43 1 814 2010-03-26 13:59:43.347873-05 30 14 44 44 1 815 2010-03-26 14:01:22.427873-05 30 14 45 45 1 816 2010-03-26 14:15:56.447873-05 30 14 42 42 2 Changed seating_info for tix "2 tix 4 Chicago Bulls vs. Milwaukee Bucks". 817 2010-03-26 14:35:42.077873-05 6 13 16 The University of Chicago Cancer Research Foundation 2 Changed banner. 818 2010-03-26 14:55:43.717873-05 6 13 16 The University of Chicago Cancer Research Foundation 2 Changed color_logo. 819 2010-03-26 17:51:40.757873-05 30 13 31 Naperville Responds To Our Veterans 2 Changed email. 820 2010-03-27 12:39:39.897873-05 6 14 36 36 2 Changed status and featured. 823 2010-03-29 09:59:00.737873-05 6 13 32 Nettelhorst School 2 Changed teaser. 824 2010-03-29 10:00:12.737873-05 6 12 119 Nettelhorst School (Chicago, IL) 1 825 2010-03-29 10:03:27.997873-05 6 13 32 Nettelhorst School 2 Changed address, website, email, charity, has_detail, description and banner. 826 2010-03-29 10:04:43.237873-05 6 13 32 Nettelhorst School 2 Changed status. 827 2010-03-29 10:05:09.887873-05 6 13 32 Nettelhorst School 2 Changed charity and has_detail. 828 2010-03-29 10:09:01.807873-05 30 13 31 Naperville Responds To Our Veterans 2 Changed teaser and description. 829 2010-03-29 10:23:34.947873-05 22 13 32 Nettelhorst Community Group 2 Changed title, slug and teaser. 830 2010-03-29 10:24:23.107873-05 22 13 32 Nettelhorst Community Group 2 Changed description. 831 2010-03-29 15:40:47.027873-05 22 16 1 FedEx 2-Day Ground ($11.00) 2 Changed title. 832 2010-03-30 09:10:50.817873-05 6 14 41 41 2 Changed distribution_date and distrubution_notes. 833 2010-03-30 09:11:21.577873-05 6 17 25 Purchase #25 by vidalilly4@aol.com 2 Payment captured successful. 834 2010-03-30 09:11:59.867873-05 6 17 25 Purchase #25 by vidalilly4@aol.com 2 No fields changed. 835 2010-03-30 15:24:26.307873-05 124 12 122 Arranmore Center for the Arts (Oswego, IL) 1 836 2010-03-30 15:27:59.727873-05 124 12 123 (Oswego, IL) 1 837 2010-03-30 15:28:47.307873-05 124 12 124 Arranmore Center for the Arts (Oswego, IL) 1 838 2010-03-30 15:29:02.477873-05 124 13 33 Arranmore Center for the Arts 1 839 2010-03-30 15:35:19.717873-05 124 12 125 Arranmore Center for the Arts (Oswego, IL) 1 840 2010-03-30 15:36:24.077873-05 124 13 33 Arranmore Center for the Arts 3 841 2010-03-30 15:37:11.787873-05 124 13 33 Arranmore Center for the Arts 3 843 2010-03-30 15:38:16.297873-05 124 13 33 Arranmore Center for the Arts 3 844 2010-03-30 15:41:22.867873-05 124 13 33 Arranmore Center for the Arts 3 845 2010-03-30 15:41:59.777873-05 124 13 33 Arranmore Center for the Arts 3 846 2010-03-30 15:43:07.667873-05 124 13 33 Arranmore Center for the Arts 3 847 2010-03-30 16:32:22.237873-05 30 3 148 jackpersin 2 No fields changed. 848 2010-03-30 16:33:09.877873-05 30 13 31 Naperville Responds To Our Veterans 2 Changed has_detail. 849 2010-03-31 10:26:40.657872-05 6 14 47 47 1 850 2010-03-31 10:29:36.877873-05 6 19 39 Chicago Bulls vs. Charlotte Bobcats 1 851 2010-03-31 10:32:02.307873-05 6 14 47 47 2 Added tix "4 tix 4 Chicago Bulls vs. Charlotte Bobcats". 852 2010-03-31 10:32:15.607873-05 6 14 47 47 2 No fields changed. 853 2010-03-31 10:34:21.097873-05 6 14 47 47 2 No fields changed. 854 2010-03-31 10:38:44.047873-05 6 13 1 Sts. Peter & Paul Catholic School 2 Changed description. 855 2010-03-31 10:39:57.987873-05 6 13 1 Sts. Peter & Paul Catholic School 2 Changed description. 856 2010-03-31 11:22:51.637873-05 22 13 17 theater 3 857 2010-03-31 11:22:59.347873-05 22 13 17 theater 3 858 2010-03-31 11:23:14.017873-05 22 13 17 theater 2 Changed slug and charity. 859 2010-03-31 11:24:11.637873-05 124 12 126 Arranmore Center for the Arts (Oswego, IL) 1 860 2010-03-31 12:05:01.797873-05 124 3 151 shannongreenerobb 1 861 2010-03-31 12:06:00.637873-05 124 3 151 shannongreenerobb 2 Changed groups. 862 2010-03-31 12:07:32.217873-05 6 13 26 NCO Youth & Family Services 2 Changed color_logo. 863 2010-03-31 12:08:25.297873-05 6 13 26 NCO Youth & Family Services 2 Changed banner. 864 2010-03-31 12:08:33.197873-05 124 3 151 shannongreenerobb 2 Changed first_name, last_name and email. 865 2010-03-31 12:08:38.617873-05 6 13 26 NCO Youth & Family Services 2 Changed banner. 866 2010-03-31 12:25:38.837873-05 124 12 127 Arranmore Center for the Arts (Oswego, IL) 1 867 2010-03-31 12:29:45.837873-05 22 3 18 Fglowaty 2 No fields changed. 868 2010-03-31 12:35:38.927873-05 124 12 128 Arranmore Center for the Arts (Oswego, IL) 1 869 2010-03-31 12:39:41.727873-05 124 12 128 Arranmore Center for the Arts (Oswego, IL) 2 No fields changed. 870 2010-03-31 12:43:48.077873-05 124 12 129 Arranmore Center for the Arts (Oswego, IL) 1 871 2010-03-31 12:59:59.567873-05 124 14 21 21 2 Changed distribution_date and distrubution_notes. 872 2010-03-31 13:00:18.407873-05 124 17 21 Purchase #21 by beutelfarm@sbcglobal.net 2 Payment captured successful. 873 2010-03-31 13:04:00.137873-05 124 14 24 24 2 Changed distribution_date and distrubution_notes. 874 2010-03-31 13:04:26.037873-05 124 17 20 Purchase #20 by beutelfarm@sbcglobal.net 2 Payment captured successful. 875 2010-03-31 14:52:26.477873-05 6 3 153 JoshRosenfeld 1 876 2010-03-31 14:52:55.787873-05 6 3 153 JoshRosenfeld 2 Changed first_name, last_name, email and is_superuser. 877 2010-03-31 15:03:15.467873-05 1 14 1 1 2 Changed letter_date. 878 2010-03-31 15:06:20.667873-05 22 13 34 Ss. Peter & Paul School Naperville 2 Changed title, slug, has_detail, contact_name and fein. 879 2010-03-31 15:07:30.837873-05 22 13 1 Ss. Peter & Paul Catholic School Naperville 2 Changed title, slug, description, contact_name and fein. 880 2010-03-31 15:07:46.807873-05 22 13 34 Ss. Peter & Paul School Naperville 2 Changed status. 881 2010-03-31 15:21:59.677873-05 6 14 46 46 2 Changed seating_info and details for tix "2 tix 4 Cubs vs Nationals\r\n\r\nSection 436 - great view, great seats!\r\n\r\nRow 3 seats 1/2". 882 2010-03-31 15:22:30.497873-05 6 19 38 Cubs vs Nationals 2 Changed title. 883 2010-03-31 15:23:17.777873-05 6 14 46 46 2 Changed featured. 884 2010-03-31 15:24:07.087873-05 6 19 38 Cubs vs Nationals 2 No fields changed. 885 2010-03-31 15:31:07.407873-05 124 19 38 Chicago Cubs vs Washington Nationals 2 Changed title. 886 2010-03-31 15:34:12.597873-05 124 14 46 46 2 Changed featured. 887 2010-03-31 15:52:49.507873-05 124 12 131 Arranmore Center for the Arts (Oswego, IL) 1 888 2010-03-31 15:59:38.517873-05 6 13 30 Hinsdale Central High School Foundation 2 Changed has_detail, description, contact_name and fein. 889 2010-03-31 16:07:15.537873-05 22 3 153 jrosenfeld 2 Changed username and is_staff. 890 2010-03-31 16:07:51.137873-05 22 13 34 Ss. Peter & Paul School Naperville 3 891 2010-03-31 16:11:50.587873-05 22 3 153 jrosenfeld 2 Changed groups. 892 2010-03-31 17:07:31.037873-05 6 13 1 Ss. Peter & Paul Catholic School Naperville 2 Changed teaser. 893 2010-04-01 08:58:15.007873-05 124 12 132 Arranmore Center for the Arts (Oswego, IL) 1 894 2010-04-01 09:49:20.467873-05 124 12 132 Arranmore Center for the Arts (Oswego, IL) 3 895 2010-04-01 09:49:20.487873-05 124 12 131 Arranmore Center for the Arts (Oswego, IL) 3 896 2010-04-01 09:49:20.487873-05 124 12 129 Arranmore Center for the Arts (Oswego, IL) 3 897 2010-04-01 09:49:20.487873-05 124 12 128 Arranmore Center for the Arts (Oswego, IL) 3 898 2010-04-01 09:49:20.487873-05 124 12 127 Arranmore Center for the Arts (Oswego, IL) 3 899 2010-04-01 09:49:20.497873-05 124 12 126 Arranmore Center for the Arts (Oswego, IL) 3 900 2010-04-01 09:49:20.537873-05 124 12 125 Arranmore Center for the Arts (Oswego, IL) 3 901 2010-04-01 09:49:20.537873-05 124 12 124 Arranmore Center for the Arts (Oswego, IL) 3 902 2010-04-01 12:03:40.067873-05 124 17 2 Purchase #2 by murbis@aol.com 2 No fields changed. 903 2010-04-01 14:23:34.307873-05 22 14 2 2 2 Changed letter_date, distribution_date and distrubution_notes. 904 2010-04-01 14:41:02.357873-05 22 14 44 44 2 Changed letter_date, distribution_date and distrubution_notes. 905 2010-04-01 14:41:18.647873-05 22 17 27 Purchase #27 by outcast_jda@hotmail.com 2 Payment captured successful. 906 2010-04-01 14:50:13.657873-05 22 14 45 45 2 Changed letter_date, distribution_date and distrubution_notes. 907 2010-04-01 14:50:19.617873-05 22 17 26 Purchase #26 by hollyaker@gmail.com 2 Payment captured successful. 908 2010-04-01 15:01:13.867873-05 22 14 47 47 2 Changed details for tix "4 tix 4 Chicago Bulls vs. Charlotte Bobcats". 909 2010-04-01 15:01:32.177873-05 22 14 47 47 2 Changed letter_date. 910 2010-04-01 15:01:42.227873-05 22 14 46 46 2 Changed letter_date. 911 2010-04-01 15:04:38.727873-05 22 14 43 43 2 Changed letter_date. 912 2010-04-01 15:05:00.327873-05 22 14 42 42 2 Changed letter_date. 913 2010-04-01 15:05:11.297873-05 22 14 41 41 2 Changed letter_date. 914 2010-04-01 15:05:19.207873-05 22 14 40 40 2 Changed letter_date. 915 2010-04-01 15:05:28.387873-05 22 14 39 39 2 Changed letter_date. 916 2010-04-01 15:05:41.787873-05 22 14 38 38 2 Changed letter_date. 917 2010-04-01 15:05:56.977873-05 22 14 37 37 2 Changed letter_date. 918 2010-04-01 15:06:09.787873-05 22 14 36 36 2 Changed letter_date. 919 2010-04-01 15:06:21.327873-05 22 14 33 33 2 Changed letter_date. 5713 2010-10-06 19:10:11.354474-05 123 14 354 354 1 920 2010-04-01 15:06:32.937873-05 22 14 32 32 2 Changed letter_date. 921 2010-04-01 15:06:46.157873-05 22 14 30 30 2 Changed letter_date. 922 2010-04-01 15:07:02.877873-05 22 14 28 28 2 Changed letter_date. 923 2010-04-01 15:07:24.607873-05 22 14 27 27 2 Changed letter_date. 924 2010-04-01 15:07:38.377873-05 22 14 26 26 2 Changed letter_date. 925 2010-04-01 15:07:52.377873-05 22 14 25 25 2 Changed letter_date. 926 2010-04-01 15:08:03.147873-05 22 14 24 24 2 Changed letter_date. 927 2010-04-01 15:08:13.497873-05 22 14 21 21 2 Changed letter_date. 928 2010-04-01 15:08:27.427873-05 22 14 19 19 2 Changed letter_date. 929 2010-04-01 15:08:39.067873-05 22 14 18 18 2 Changed letter_date. 930 2010-04-01 15:08:58.547873-05 22 14 17 17 2 Changed letter_date. 931 2010-04-01 15:09:09.687873-05 22 14 16 16 2 Changed letter_date. 932 2010-04-01 15:09:20.117873-05 22 14 15 15 2 Changed letter_date. 933 2010-04-01 15:09:31.357873-05 22 14 13 13 2 Changed letter_date. 934 2010-04-01 15:09:46.047873-05 22 14 12 12 2 Changed letter_date. 935 2010-04-01 15:09:58.817873-05 22 14 11 11 2 Changed letter_date. 936 2010-04-01 15:10:11.497873-05 22 14 10 10 2 Changed letter_date. 937 2010-04-01 15:10:23.477873-05 22 14 9 9 2 Changed letter_date. 938 2010-04-01 15:10:35.597873-05 22 14 8 8 2 Changed letter_date. 939 2010-04-01 15:10:47.267873-05 22 14 7 7 2 Changed letter_date. 940 2010-04-01 15:11:00.367873-05 22 14 6 6 2 Changed letter_date. 941 2010-04-01 15:11:11.477873-05 22 14 5 5 2 Changed letter_date. 942 2010-04-01 15:11:21.567873-05 22 14 4 4 2 Changed letter_date. 943 2010-04-01 15:11:30.947873-05 22 14 3 3 2 Changed letter_date. 944 2010-04-01 15:12:00.907873-05 22 14 1 1 2 Changed letter_date. 945 2010-04-01 15:16:08.687873-05 22 13 28 ALS Association Greater Chicago Chapter 2 Changed description, contact_name and fein. 946 2010-04-01 15:17:17.717873-05 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed description, contact_name and fein. 947 2010-04-01 15:19:37.237873-05 22 12 137 CARA Program (Chicago, IL) 1 948 2010-04-01 15:20:23.437873-05 22 13 21 CARA Program 2 Changed title, slug, address, website, description, contact_name and fein. 949 2010-04-01 15:21:41.767873-05 22 13 27 Chicago International Charter School 2 Changed description, contact_name and fein. 950 2010-04-01 15:22:47.487873-05 22 13 2 Heritage YMCA Group 2 Changed description, contact_name and fein. 951 2010-04-01 15:24:22.747873-05 22 12 138 Hinsdale Central High School Foundation (Clarendon Hills, IL) 1 952 2010-04-01 15:24:56.877873-05 22 13 30 Hinsdale Central High School Foundation 2 Changed address, contact_name and fein. 953 2010-04-01 15:29:13.577873-05 22 13 8 Imerman Angels 2 Changed email, description, contact_name and fein. 954 2010-04-01 15:35:44.007873-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed status, charity, has_detail, description, contact_name and fein. 955 2010-04-01 15:35:54.387873-05 22 13 25 Juvenile Diabetes Research Foundation 2 No fields changed. 956 2010-04-01 15:37:24.737873-05 22 13 11 Little Friends, Inc. 2 Changed description, contact_name and fein. 957 2010-04-01 15:39:20.667873-05 22 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed description, contact_name and fein. 958 2010-04-01 15:40:32.227873-05 22 13 26 NCO Youth & Family Services 2 Changed description, contact_name and fein. 959 2010-04-01 15:41:41.027873-05 22 13 14 Naperville Area Humane Society 2 Changed description, contact_name and fein. 960 2010-04-01 15:43:33.867873-05 22 12 139 Naperville Responds to Our Veterans (Naperville, IL) 1 961 2010-04-01 15:44:09.647873-05 22 13 31 Naperville Responds To Our Veterans 2 Changed address, description, contact_name and fein. 962 2010-04-01 15:48:25.577873-05 22 13 29 Next Level Foundation 2 Changed description, contact_name and fein. 963 2010-04-01 15:50:36.197873-05 22 13 24 Our Children's Homestead 2 Changed description, contact_name and fein. 964 2010-04-01 15:52:09.297873-05 22 12 140 Rob Koranda Scholarship Foundation (Naperville, IL) 1 965 2010-04-01 15:53:35.967873-05 22 13 19 Rob Koranda Scholarship Foundation 2 Changed address, description, contact_name and fein. 966 2010-04-01 15:54:20.867873-05 22 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed description, contact_name and fein. 967 2010-04-01 15:55:07.727873-05 22 13 7 Rotary Club of Naperville Sunrise 2 Changed description, contact_name and fein. 968 2010-04-01 15:55:50.137873-05 22 13 23 San Miguel Schools Chicago 2 Changed description, contact_name and fein. 969 2010-04-01 15:57:04.747873-05 22 12 141 Serra Club (Wheaton, IL) 1 970 2010-04-01 15:58:59.307873-05 22 13 10 Serra Club 2 Changed address, website, description, contact_name and fein. 971 2010-04-01 16:00:54.767873-05 22 12 142 Special Olympics Illinois (Normal, IL) 1 972 2010-04-01 16:01:48.427873-05 22 13 4 Special Olympics Illinois 2 Changed address, website, description, contact_name and fein. 973 2010-04-01 16:03:37.707873-05 22 12 143 St. Francis High School Wheaton (Wheaton, IL) 1 1051 2010-04-06 17:47:08.457873-05 22 3 161 patriciaborrowdale 2 Changed first_name, last_name, email and groups. 974 2010-04-01 16:04:44.877873-05 22 13 20 St. Francis High School 2 Changed address, website, description, contact_name and fein. 975 2010-04-01 16:06:31.437873-05 22 13 16 The University of Chicago Cancer Research Foundation 2 Changed email, description, contact_name and fein. 976 2010-04-01 16:22:27.397873-05 22 12 144 Arranmore Center for the Arts (Oswego, IL) 1 977 2010-04-01 16:24:25.527873-05 22 13 35 Kevin 1 978 2010-04-01 16:24:33.357873-05 22 13 35 Kevin 3 979 2010-04-01 16:25:46.607873-05 22 13 36 Arranmore Center 1 980 2010-04-01 16:25:59.147873-05 22 13 36 Arranmore Center for the Arts 2 Changed title. 981 2010-04-01 16:26:09.397873-05 22 13 36 Arranmore Center for the Arts 2 Changed slug. 982 2010-04-01 16:26:57.767873-05 22 13 36 Arranmore Center for the Arts 2 Changed address, website, email, contact_name and fein. 983 2010-04-01 16:29:45.757873-05 6 14 47 47 2 Changed price for tix "4 tix 4 Chicago Bulls vs. Charlotte Bobcats". 984 2010-04-01 16:29:56.787873-05 6 14 47 47 2 No fields changed. 985 2010-04-01 16:31:03.617873-05 6 14 47 47 2 Changed price for tix "4 tix 4 Chicago Bulls vs. Charlotte Bobcats". 986 2010-04-01 16:41:06.217873-05 22 3 151 shannongreenerobb 2 Changed date_joined. 987 2010-04-01 16:41:39.147873-05 22 2 15 Group for Naperville Area Humane Society 2 Changed name. 988 2010-04-01 16:41:52.887873-05 6 13 16 The University of Chicago Cancer Research Foundation 2 Changed email. 989 2010-04-01 16:42:07.057873-05 22 2 48 Group for Arranmore Center 3 990 2010-04-01 16:42:07.077873-05 22 2 45 Group for Kevin 3 991 2010-04-01 16:42:07.097873-05 22 2 19 Group for Ronald McDonald House of Chicago and Northwest Indiana 3 992 2010-04-01 16:43:02.677873-05 22 13 16 The University of Chicago Cancer Research Foundation 2 Changed email. 993 2010-04-01 16:47:09.927873-05 6 3 154 nicoleseidutz 1 994 2010-04-01 16:48:31.067873-05 6 3 154 nicoleseidutz 2 Changed first_name, last_name, email and groups. 995 2010-04-02 07:45:10.197873-05 6 14 47 47 2 Changed price for tix "4 tix 4 Chicago Bulls vs. Charlotte Bobcats". 996 2010-04-02 07:46:51.807873-05 6 13 1 Ss. Peter & Paul Catholic School Naperville 2 Changed teaser. 997 2010-04-02 07:48:24.977873-05 6 13 1 Ss. Peter & Paul Catholic School Naperville 2 No fields changed. 998 2010-04-02 07:48:51.637873-05 6 13 1 Ss. Peter & Paul Catholic School Naperville 2 Changed teaser. 999 2010-04-02 08:28:40.647873-05 6 3 154 nicoleseidlitz 2 Changed username and last_name. 1000 2010-04-02 09:08:44.937873-05 30 14 47 47 2 Changed count, price and seating_info for tix "2 tix 4 Chicago Bulls vs. Charlotte Bobcats". 1001 2010-04-02 09:10:04.897873-05 30 19 40 Chicago Bulls vs. Charlotte Bobcats 1 1002 2010-04-02 09:13:15.067873-05 30 14 48 48 1 1003 2010-04-02 09:19:53.077873-05 30 14 48 48 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Charlotte Bobcats". 1004 2010-04-02 09:20:07.277873-05 30 14 47 47 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Charlotte Bobcats". 1005 2010-04-02 09:59:33.897873-05 22 13 1 Ss. Peter & Paul Catholic School Naperville 2 Changed teaser. 1006 2010-04-02 11:51:10.947873-05 30 14 47 47 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Charlotte Bobcats". 1007 2010-04-02 11:59:03.337873-05 6 14 48 48 2 Changed status. 1008 2010-04-02 11:59:19.137873-05 6 14 47 47 2 Changed status. 1009 2010-04-05 10:19:56.907873-05 124 12 145 Arranmore Center for the Arts (Oswego, IL) 1 1010 2010-04-05 10:25:05.377873-05 22 13 37 Arranmore Center 1 1011 2010-04-05 10:25:17.697873-05 22 13 37 Arranmore Center for the Arts 2 Changed title and slug. 1012 2010-04-05 10:25:30.537873-05 22 13 37 Arranmore Center for the Arts 2 No fields changed. 1013 2010-04-05 10:33:22.527873-05 22 13 2 Heritage YMCA Group 2 Changed contact_name. 1014 2010-04-05 10:46:19.897873-05 22 13 27 Chicago International Charter School 2 Changed description. 1015 2010-04-05 10:47:33.967873-05 22 13 27 Chicago International Charter School 2 No fields changed. 1016 2010-04-05 10:59:13.797873-05 124 13 37 Arranmore Center for the Arts 2 Changed teaser, website, description and fein. 1017 2010-04-05 11:00:26.047873-05 124 13 37 Arranmore Center for the Arts 2 Changed color_logo and banner. 1018 2010-04-05 11:04:58.807873-05 124 13 37 Arranmore Center for the Arts 2 Changed color_logo. 1019 2010-04-05 11:06:23.297873-05 124 13 37 Arranmore Center for the Arts 2 Changed color_logo. 1020 2010-04-05 11:42:33.477873-05 22 3 7 tmiers 2 No fields changed. 1021 2010-04-05 14:11:14.037873-05 22 3 22 ksnodgrass 2 Changed groups. 1022 2010-04-05 16:43:11.437873-05 6 14 50 50 3 1023 2010-04-05 16:43:11.437873-05 6 14 49 49 3 1024 2010-04-05 16:43:44.187873-05 6 14 46 46 2 Changed price for tix "2 tix 4 Chicago Cubs vs Washington Nationals ". 1025 2010-04-06 07:33:15.957873-05 6 14 46 46 2 Changed status and featured. 1026 2010-04-06 08:53:10.937873-05 30 18 37 Chicago Theatre 1 1027 2010-04-06 08:54:40.417873-05 30 18 37 The Chicago Theatre 2 Changed title. 1028 2010-04-06 08:55:23.447873-05 30 18 37 Chicago Theatre 2 Changed title. 1029 2010-04-06 08:55:33.867873-05 30 18 37 Chicago Theatre 2 Changed description. 1030 2010-04-06 08:56:33.677873-05 30 19 42 Tracy Morgan 1 1031 2010-04-06 08:56:58.677873-05 30 19 43 Tracy Morgan 1 1032 2010-04-06 08:58:51.587873-05 30 19 44 Chicago Cubs vs. Houston Astros 1 1033 2010-04-06 08:59:27.447873-05 30 19 45 Chicago Cubs vs. Houston Astros 1 1034 2010-04-06 09:07:11.837873-05 30 14 51 51 1 1035 2010-04-06 09:09:27.057873-05 30 14 52 52 1 1036 2010-04-06 09:11:48.227873-05 30 14 53 53 1 1037 2010-04-06 09:13:22.207873-05 30 14 54 54 1 1038 2010-04-06 09:13:37.447873-05 30 14 51 51 2 Changed featured. 1039 2010-04-06 09:34:51.337873-05 30 14 43 43 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Milwaukee Bucks". 1040 2010-04-06 09:35:19.577873-05 30 14 42 42 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Milwaukee Bucks". 1041 2010-04-06 10:06:03.897873-05 30 14 43 43 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Milwaukee Bucks". 1042 2010-04-06 10:06:26.587873-05 30 14 42 42 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Milwaukee Bucks". 1043 2010-04-06 12:29:07.377873-05 22 13 1 Ss. Peter & Paul Catholic School Naperville 2 Changed banner. 1044 2010-04-06 12:34:10.957873-05 22 12 146 Ss. Peter & Paul Catholic School Naperville (Naperville, IL) 1 1045 2010-04-06 12:34:41.017873-05 22 13 1 Ss. Peter & Paul Catholic School Naperville 2 Changed address, website, contact_name and fein. 1046 2010-04-06 17:38:48.937873-05 22 12 147 CareLink Foundation (West Chicago, IL) 1 1047 2010-04-06 17:43:33.987873-05 22 13 38 CareLink Foundation 1 1048 2010-04-06 17:44:17.757873-05 22 13 38 CareLink Foundation 2 Changed banner. 1049 2010-04-06 17:45:32.237873-05 22 13 38 CareLink Foundation 2 Changed description. 1050 2010-04-06 17:46:41.757873-05 22 3 161 patriciaborrowdale 1 1052 2010-04-06 17:50:11.337873-05 22 3 161 patriciaborrowdale 2 Changed email. 1053 2010-04-06 17:50:30.547873-05 22 13 38 CareLink Foundation 2 Changed email. 1054 2010-04-06 18:11:31.367873-05 30 14 43 43 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Milwaukee Bucks". 1055 2010-04-06 18:11:52.107873-05 30 14 42 42 2 Changed price for tix "2 tix 4 Chicago Bulls vs. Milwaukee Bucks". 1056 2010-04-06 18:17:26.317873-05 22 13 38 CareLink Foundation 2 Changed banner. 1057 2010-04-06 18:30:44.297873-05 22 13 31 Naperville Responds To Our Veterans 2 Changed color_logo and banner. 1058 2010-04-06 18:31:12.057873-05 22 13 31 Naperville Responds To Our Veterans 2 Changed banner. 1059 2010-04-06 18:41:05.957873-05 22 14 30 30 2 Changed notify_friends. 1060 2010-04-06 18:46:15.717873-05 22 14 54 54 2 Changed user and notify_friends. 1061 2010-04-06 18:47:10.967873-05 22 14 54 54 2 Changed user. 1062 2010-04-06 18:52:23.327873-05 22 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed description. 1063 2010-04-06 21:25:20.117873-05 6 12 150 Naperville Education Foundation (Naperville, IL) 1 1064 2010-04-06 21:29:59.477873-05 6 13 39 Naperville Education Foundation 1 1065 2010-04-06 21:33:04.497873-05 6 13 39 Naperville Education Foundation 2 Changed website. 1066 2010-04-06 21:37:01.947873-05 6 13 39 Naperville Education Foundation 2 Changed fein. 1067 2010-04-07 08:03:24.917873-05 30 12 151 DuPage Children's Museum (Naperville, IL) 1 1068 2010-04-07 08:14:08.957873-05 30 13 40 DuPage Children's Museum 1 1069 2010-04-07 08:19:22.177873-05 30 13 40 DuPage Children's Museum 2 Changed color_logo and mono_logo. 1070 2010-04-07 08:32:10.607873-05 30 13 40 DuPage Children's Museum 2 Changed fein. 1071 2010-04-07 08:32:33.597873-05 30 3 163 rosiesajak 1 5714 2010-10-06 19:13:16.221641-05 123 14 355 355 1 1072 2010-04-07 08:33:07.427873-05 30 3 163 rosiesajak 2 Changed first_name, last_name, email and groups. 1073 2010-04-07 09:27:54.427873-05 22 13 39 Naperville Education Foundation 2 Changed contact_name. 1074 2010-04-07 09:44:41.787873-05 30 13 40 DuPage Children's Museum 2 Changed description. 1075 2010-04-07 10:23:17.157873-05 22 14 55 55 3 1076 2010-04-07 10:51:43.557873-05 123 13 32 Nettelhorst Community Group 2 Changed description, contact_name, fein and color_logo. 1077 2010-04-07 11:20:42.127873-05 22 14 56 56 2 Changed seating_info and details for tix "4 tix 4 Chicago Cubs vs. Milwaukee Brewers". 1078 2010-04-07 11:41:27.777873-05 123 14 42 42 2 Changed distrubution_notes. 1079 2010-04-07 11:42:20.937873-05 123 17 29 Purchase #29 by jkoranda@tix4cause.com 2 Payment captured successful. 1080 2010-04-07 11:46:41.417873-05 123 14 43 43 2 Changed distrubution_notes. 1081 2010-04-07 11:47:46.437873-05 123 17 28 Purchase #28 by jkoranda@tix4cause.com 2 Payment captured successful. 1082 2010-04-07 12:20:17.787873-05 123 14 42 42 2 Changed distribution_date. 1083 2010-04-07 12:21:09.257873-05 123 14 43 43 2 Changed distribution_date. 1084 2010-04-07 12:24:49.907873-05 123 14 42 42 2 Changed distrubution_notes. 1085 2010-04-07 12:25:07.607873-05 123 14 43 43 2 Changed distrubution_notes. 1086 2010-04-07 12:51:40.197873-05 123 13 32 Nettelhorst Community Group 2 Changed teaser, charity and description. 1087 2010-04-07 13:06:42.637873-05 123 13 32 Nettelhorst Community Group 2 Changed status, email, has_detail, description, contact_name and fein. 1088 2010-04-07 13:08:38.627873-05 123 3 164 bethhopson 1 1089 2010-04-07 13:11:09.437873-05 123 3 164 bethhopson 2 Changed first_name, last_name, email and groups. 1090 2010-04-07 13:14:08.457873-05 22 12 152 St. James Parish & School Arlington Heights (Arlington Heights, IL) 1 1091 2010-04-07 13:17:20.117873-05 123 13 32 Nettelhorst Community Group 2 Changed description. 1092 2010-04-07 13:19:15.557873-05 22 13 41 St. James Parish & School Arlington Heights 1 1093 2010-04-07 13:23:21.647873-05 22 13 41 St. James Parish & School Arlington Heights 2 Changed status, charity, has_detail, color_logo and banner. 1094 2010-04-07 13:24:55.017873-05 22 13 41 St. James Parish & School Arlington Heights 2 Changed color_logo and banner. 1095 2010-04-07 13:27:53.367873-05 22 13 41 St. James Parish & School Arlington Heights 2 Changed color_logo and banner. 1096 2010-04-07 13:28:50.577873-05 22 3 165 lindachalk 1 1097 2010-04-07 13:29:08.307873-05 22 3 165 lindachalk 2 Changed first_name, last_name, email and groups. 1098 2010-04-07 14:07:39.867873-05 6 13 26 NCO Youth & Family Services 2 Changed banner. 1099 2010-04-07 14:13:05.177873-05 123 13 32 Nettelhorst Community Group 2 Changed email and contact_name. 1100 2010-04-07 14:14:12.647873-05 30 13 40 DuPage Children's Museum 2 Changed mono_logo. 1101 2010-04-07 14:32:00.487873-05 123 14 56 56 2 Changed status, featured and letter_date. 1102 2010-04-07 14:35:43.997873-05 30 13 42 PACT, Inc 1 1103 2010-04-07 14:53:38.117873-05 22 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed description. 1104 2010-04-07 14:56:32.927873-05 30 14 52 52 2 Changed seating_info for tix "2 tix 4 Tracy Morgan". 1105 2010-04-07 14:56:59.697873-05 30 14 51 51 2 Changed seating_info for tix "2 tix 4 Tracy Morgan". 1106 2010-04-07 14:58:14.417873-05 30 13 42 PACT, Inc 2 Changed status, charity and has_detail. 1107 2010-04-07 14:59:27.157873-05 30 13 42 PACT, Inc 2 Changed status, charity and has_detail. 1108 2010-04-07 16:38:42.267873-05 22 14 57 57 3 1109 2010-04-08 09:35:23.037873-05 22 19 49 Chicago White Sox vs. Minnesota Twins 1 1110 2010-04-08 09:37:21.367873-05 22 3 167 chadwoehrle 1 1111 2010-04-08 09:37:58.007873-05 22 3 167 chadwoehrle 2 Changed first_name, last_name and email. 1112 2010-04-08 09:42:53.587873-05 22 14 58 58 1 1113 2010-04-08 09:59:42.297873-05 22 14 58 58 2 Changed details for tix "4 tix 4 Chicago White Sox vs. Minnesota Twins". 1114 2010-04-08 10:02:40.517873-05 22 3 157 jamesjannusch 2 No fields changed. 1115 2010-04-08 10:17:07.207873-05 22 3 168 johnkorzenowski 1 1116 2010-04-08 10:17:42.667873-05 22 3 168 johnkorzenowski 2 Changed first_name, last_name and email. 1117 2010-04-08 10:49:34.437873-05 22 14 59 59 2 Changed featured and letter_date. 1118 2010-04-08 11:01:12.597873-05 22 14 59 59 2 Changed status. Changed seating_info for tix "6 tix 4 Chicago Bulls vs Boston Celtics". 1119 2010-04-08 11:05:18.697873-05 22 19 51 Mark Knopfler 1 1120 2010-04-08 11:07:46.537873-05 6 14 30 30 2 Changed seating_info for tix "2 tix 4 Million Dollar Quartet". 1121 2010-04-08 11:09:49.757873-05 22 14 60 60 1 1122 2010-04-08 11:20:47.807873-05 22 14 60 60 2 Changed details for tix "2 tix 4 Mark Knopfler". 1123 2010-04-08 11:48:03.857873-05 22 14 56 56 2 Changed capital. Changed count and seating_info for tix "2 tix 4 Chicago Cubs vs. Milwaukee Brewers". 1124 2010-04-08 11:49:17.767873-05 22 14 61 61 1 1125 2010-04-08 11:50:06.107873-05 22 14 56 56 2 Changed letter_date. 1126 2010-04-08 11:53:37.847873-05 22 13 38 CareLink Foundation 2 No fields changed. 1127 2010-04-08 13:00:33.677873-05 22 13 11 Little Friends, Inc. 2 Changed description. 1128 2010-04-08 13:17:56.007873-05 22 3 22 ksnodgrass 2 Changed groups. 1129 2010-04-08 13:26:49.497873-05 22 12 153 University of St. Francis (Joliet, IL) 1 1130 2010-04-08 13:27:25.607873-05 22 13 43 University of St. Francis 1 1131 2010-04-08 13:34:12.477873-05 22 13 43 University of St. Francis 2 Changed color_logo and banner. 1132 2010-04-08 13:34:25.937873-05 22 13 43 University of St. Francis 2 Changed status, charity and has_detail. 1133 2010-04-08 13:35:12.177873-05 22 13 43 University of St. Francis 2 Changed color_logo. 1134 2010-04-08 13:38:12.947873-05 22 13 43 University of St. Francis 2 Changed color_logo. 1135 2010-04-08 13:38:55.747873-05 22 13 43 University of St. Francis 2 Changed status. 1136 2010-04-08 15:26:11.857873-05 22 13 43 University of St. Francis 2 Changed status. 1137 2010-04-08 15:28:31.087873-05 22 3 22 ksnodgrass 2 Changed groups. 1138 2010-04-09 10:51:54.147873-05 22 14 51 51 2 Changed seating_info for tix "2 tix 4 Tracy Morgan". 1139 2010-04-09 10:52:03.447873-05 22 14 52 52 2 No fields changed. 1140 2010-04-09 12:11:23.807873-05 123 14 52 52 2 Changed seating_info for tix "2 tix 4 Tracy Morgan". 1141 2010-04-09 12:12:09.717873-05 123 14 51 51 2 Changed seating_info for tix "2 tix 4 Tracy Morgan". 1142 2010-04-09 13:25:12.277873-05 22 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed description. 1143 2010-04-09 13:38:04.777873-05 30 14 52 52 2 Changed price for tix "2 tix 4 Tracy Morgan". 1144 2010-04-09 13:38:21.247873-05 30 14 51 51 2 Changed price for tix "2 tix 4 Tracy Morgan". 1145 2010-04-09 13:39:45.037873-05 30 14 54 54 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Houston Astros". 1695 2010-05-04 10:14:15.67113-05 30 14 104 104 2 Changed status and featured. 1146 2010-04-09 13:39:59.997873-05 30 14 53 53 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Houston Astros". 1147 2010-04-09 14:20:11.957873-05 30 19 52 Chicago White Sox vs. Minnesota Twins 1 1148 2010-04-09 14:22:00.687873-05 30 14 58 58 2 Changed count and seating_info for tix "2 tix 4 Chicago White Sox vs. Minnesota Twins". 1149 2010-04-09 14:24:11.317873-05 30 14 62 62 1 1150 2010-04-09 14:25:21.607873-05 6 13 37 Arranmore Center for the Arts 2 Changed color_logo. 1151 2010-04-09 14:25:23.687873-05 30 14 62 62 2 Changed seating_info for tix "2 tix 4 Chicago White Sox vs. Minnesota Twins". 1152 2010-04-09 14:25:41.317873-05 30 14 58 58 2 Changed seating_info for tix "2 tix 4 Chicago White Sox vs. Minnesota Twins". 1153 2010-04-09 14:26:38.457873-05 6 13 37 Arranmore Center for the Arts 2 Changed color_logo. 1154 2010-04-09 14:39:45.617873-05 30 13 37 Arranmore Center for the Arts 2 Changed color_logo. 1155 2010-04-11 12:07:51.887873-05 6 14 62 62 2 Changed featured. 1156 2010-04-11 12:10:13.667873-05 6 14 58 58 2 Changed status and featured. 1157 2010-04-11 12:10:30.707873-05 6 14 62 62 2 Changed status. 1158 2010-04-11 13:57:14.827873-05 1 3 170 mtimpone 1 1159 2010-04-11 13:57:32.967873-05 1 3 170 mtimpone 2 Changed is_staff and is_superuser. 1160 2010-04-12 10:11:56.287873-05 6 13 32 Nettelhorst School 2 Changed title, slug, teaser and description. 1161 2010-04-12 10:25:55.187873-05 22 13 43 University of St. Francis 2 Changed status, charity and has_detail. 1162 2010-04-12 10:26:13.337873-05 22 13 43 University of St. Francis 2 Changed color_logo and banner. 1163 2010-04-12 10:34:28.627873-05 22 13 28 ALS Association Greater Chicago Chapter 2 Changed description. 1164 2010-04-12 10:34:56.197873-05 22 13 37 Arranmore Center for the Arts 2 No fields changed. 1165 2010-04-12 10:36:11.017873-05 22 13 38 CareLink Foundation 2 Changed description. 1166 2010-04-12 11:05:43.107873-05 123 13 21 CARA Program 2 Changed website and description. 1167 2010-04-12 11:11:24.967873-05 123 13 21 CARA Program 2 Changed description. 1168 2010-04-12 15:40:20.457873-05 6 3 172 maureendvorak 1 1169 2010-04-12 15:41:12.197873-05 6 3 172 maureendvorak 2 Changed first_name, last_name, email and groups. 1170 2010-04-12 16:09:00.277873-05 6 14 59 59 2 Changed price for tix "6 tix 4 Chicago Bulls vs Boston Celtics". 1171 2010-04-12 16:10:21.627873-05 6 14 59 59 2 Changed details for tix "6 tix 4 Chicago Bulls vs Boston Celtics". 1172 2010-04-12 17:26:16.077873-05 30 14 52 52 2 Changed price for tix "2 tix 4 Tracy Morgan". 1173 2010-04-12 17:26:31.027873-05 30 14 51 51 2 Changed price for tix "2 tix 4 Tracy Morgan". 1174 2010-04-12 17:51:13.887873-05 30 13 42 PACT, Inc 3 1175 2010-04-13 09:00:36.127105-05 6 14 59 59 2 Changed price for tix "6 tix 4 Chicago Bulls vs Boston Celtics". 1176 2010-04-13 11:08:12.310072-05 6 12 154 National Institute for Community (Romeoville, IL) 1 1177 2010-04-13 11:14:18.640072-05 6 13 44 National Institute for Community 1 1178 2010-04-13 11:19:03.330072-05 6 12 155 Casa De Luz (Romeoville, IL) 1 1179 2010-04-13 11:21:45.690072-05 6 13 45 Casa De Luz 1 1180 2010-04-13 11:22:29.800072-05 6 13 45 Casa De Luz 2 Changed color_logo. 1181 2010-04-13 11:23:28.360072-05 6 13 45 Casa De Luz 2 Changed color_logo. 1182 2010-04-13 11:27:36.990072-05 6 13 45 Casa De Luz 2 Changed color_logo. 1183 2010-04-13 11:41:01.690072-05 6 13 45 Casa De Luz 2 Changed color_logo. 1184 2010-04-13 11:50:58.160072-05 22 14 56 56 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Milwaukee Brewers". 1185 2010-04-13 11:51:31.360072-05 22 14 61 61 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Milwaukee Brewers". 1186 2010-04-13 11:52:51.980072-05 6 3 174 michaelvickery 1 1187 2010-04-13 11:53:21.960072-05 6 3 174 michaelvickery 2 Changed first_name, last_name, email and groups. 1188 2010-04-13 12:28:58.920444-05 6 13 45 Casa De Luz 2 Changed teaser and description. 1189 2010-04-13 16:08:21.229407-05 22 14 59 59 2 Changed status and capital. Changed price for tix "6 tix 4 Chicago Bulls vs Boston Celtics". 1190 2010-04-13 16:48:23.499407-05 22 14 59 59 2 Changed status. 1191 2010-04-13 16:53:26.199407-05 22 14 59 59 2 Changed distribution_date and distrubution_notes. 1192 2010-04-13 16:53:39.349407-05 22 17 30 Purchase #30 by max9393@gmail.com 2 Payment captured successful. 1193 2010-04-14 09:57:34.500238-05 22 14 61 61 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Milwaukee Brewers". 1194 2010-04-14 09:57:56.550238-05 22 14 56 56 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Milwaukee Brewers". 1195 2010-04-14 10:38:51.940995-05 124 14 56 56 2 Changed distribution_date and distrubution_notes. 1196 2010-04-14 10:39:34.860995-05 124 17 32 Purchase #32 by chasefaull@gmail.com 2 Payment captured successful. 1197 2010-04-14 10:45:05.610995-05 124 14 61 61 2 Changed distribution_date and distrubution_notes. 1198 2010-04-14 10:45:56.100995-05 124 17 31 Purchase #31 by chasefaull@gmail.com 2 Payment captured successful. 1199 2010-04-14 10:54:24.140995-05 124 14 56 56 2 Changed distrubution_notes. 1200 2010-04-14 10:54:27.260995-05 6 13 44 National Institute for Community 2 Changed banner. 1201 2010-04-14 10:55:48.840995-05 124 14 61 61 2 Changed distrubution_notes. 1202 2010-04-14 11:07:07.831209-05 124 17 31 Purchase #31 by chasefaull@gmail.com 2 Changed comment. 1203 2010-04-14 11:07:34.431209-05 124 17 32 Purchase #32 by chasefaull@gmail.com 2 Changed comment. 1204 2010-04-14 11:10:06.881209-05 124 14 56 56 2 Changed distrubution_notes. 1205 2010-04-14 11:10:41.951209-05 124 14 61 61 2 Changed distrubution_notes. 1206 2010-04-14 13:56:19.549916-05 22 14 56 56 2 No fields changed. 1207 2010-04-14 13:59:06.689916-05 22 13 38 CareLink Foundation 2 Changed contact_name. 1208 2010-04-14 16:28:18.457637-05 22 14 53 53 2 Changed capital and letter_date. Changed price for tix "2 tix 4 Chicago Cubs vs. Houston Astros". 1209 2010-04-14 16:28:42.347637-05 22 14 54 54 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Houston Astros". 1210 2010-04-14 16:30:55.507637-05 22 14 51 51 2 Changed capital and letter_date. Changed price for tix "2 tix 4 Tracy Morgan". 1211 2010-04-14 16:31:15.547637-05 22 14 52 52 2 Changed capital. Changed price for tix "2 tix 4 Tracy Morgan". 1212 2010-04-14 16:35:11.707637-05 6 13 46 Israel Sports Center for Disabled 1 1213 2010-04-14 16:35:57.187637-05 6 13 46 Israel Sports Center for Disabled 2 Changed status and description. 1214 2010-04-14 16:37:01.647637-05 6 13 46 Israel Sports Center for Disabled 2 Changed status and description. 1215 2010-04-14 17:13:03.937414-05 6 13 46 Israel Sports Center for Disabled 2 Changed status. 1216 2010-04-14 17:34:25.337414-05 6 3 177 stuartnitzkin 1 1217 2010-04-14 17:35:09.767414-05 6 3 177 stuartnitzkin 2 Changed first_name, last_name, email and groups. 1218 2010-04-15 09:00:51.464442-05 6 13 45 Casa De Luz 2 Changed fein. 5715 2010-10-06 19:14:10.711751-05 123 14 356 356 1 1219 2010-04-15 10:49:35.0462-05 6 14 30 30 2 Changed price for tix "2 tix 4 Million Dollar Quartet". 1220 2010-04-15 10:50:50.6762-05 6 13 15 Little Heroes Pediatric Cancer Research Foundation 2 Changed description, contact_name and fein. 1221 2010-04-15 15:20:43.865232-05 22 14 54 54 2 Changed letter_date. 1222 2010-04-15 15:21:47.275232-05 30 14 54 54 2 Changed letter_date, distribution_date and distrubution_notes. 1223 2010-04-15 15:22:13.035232-05 30 17 33 Purchase #33 by whitneyschluter@johngreenerealtor.com 2 Payment captured successful. 1224 2010-04-15 15:23:11.325232-05 30 14 53 53 2 Changed distribution_date and distrubution_notes. 1225 2010-04-15 15:23:37.835232-05 30 17 34 Purchase #34 by whitneyschluter@johngreenerealtor.com 2 Payment captured successful. 1226 2010-04-15 17:15:46.051539-05 6 14 30 30 2 Changed details for tix "2 tix 4 Million Dollar Quartet". 1227 2010-04-15 17:16:10.001539-05 6 14 30 30 2 Changed details for tix "2 tix 4 Million Dollar Quartet". 1228 2010-04-15 17:16:39.921539-05 6 14 30 30 2 Changed seating_info for tix "2 tix 4 Million Dollar Quartet". 1229 2010-04-20 09:27:00.519837-05 6 14 60 60 2 Changed status. Changed details for tix "2 tix 4 Mark Knopfler". 1230 2010-04-20 10:17:47.084266-05 6 14 60 60 2 Changed price for tix "2 tix 4 Mark Knopfler". 1231 2010-04-20 14:49:10.167554-05 6 13 47 Children's Memorial Hospital 1 1232 2010-04-20 14:50:02.100646-05 6 13 47 Children's Memorial Hospital 2 Changed color_logo. 1233 2010-04-20 14:50:58.156575-05 6 13 47 Children's Memorial Hospital 2 Changed color_logo. 1234 2010-04-20 14:52:58.049832-05 6 13 47 Children's Memorial Hospital 2 No fields changed. 1235 2010-04-20 14:54:43.1365-05 6 14 60 60 2 Changed status. 1236 2010-04-20 14:56:24.045089-05 6 19 54 White Sox vs Anaheim Angels 1 1237 2010-04-20 14:58:52.103986-05 6 3 180 johnoleary 1 1238 2010-04-20 14:59:20.477344-05 6 3 180 johnoleary 2 Changed first_name, last_name and email. 1239 2010-04-20 15:01:54.626232-05 6 14 64 64 1 1240 2010-04-20 15:02:49.656362-05 6 14 64 64 2 Changed details for tix "2 tix 4 White Sox vs Anaheim Angels". 1241 2010-04-20 15:03:42.983633-05 6 19 55 White Sox vs Minnesota 1 1242 2010-04-20 15:08:04.536602-05 6 14 65 65 1 1243 2010-04-20 15:08:25.614687-05 6 14 65 65 2 No fields changed. 1244 2010-04-20 15:08:39.803708-05 6 14 64 64 2 No fields changed. 1245 2010-04-20 15:09:13.492307-05 6 14 65 65 2 Changed distribution_date. 1246 2010-04-20 15:15:39.94542-05 6 14 60 60 2 Changed distribution_date. 1247 2010-04-20 15:16:07.803725-05 6 14 52 52 2 Changed letter_date and distribution_date. 1248 2010-04-20 15:16:36.830168-05 6 14 51 51 2 Changed distribution_date. 1249 2010-04-20 15:17:04.365411-05 6 14 46 46 2 Changed distribution_date. 1250 2010-04-20 17:42:48.256221-05 30 19 55 White Sox vs Minnesota 2 Changed date. 1251 2010-04-20 17:43:37.043744-05 30 19 54 White Sox vs Anaheim Angels 2 Changed date. 1252 2010-04-20 21:34:17.33351-05 6 14 60 60 2 Changed status. 1253 2010-04-21 10:16:51.498354-05 22 19 53 Chicago Cubs vs. Arizona Diamondbacks 2 Changed title. 1254 2010-04-21 11:01:27.773582-05 22 13 46 Israel Sports Center for Disabled 2 Changed teaser and description. 1255 2010-04-21 11:02:03.189797-05 22 13 46 Israel Sports Center for the Disabled 2 Changed title and slug. 1256 2010-04-21 11:03:56.074119-05 22 13 47 Children's Memorial Hospital 2 Changed teaser. 1257 2010-04-21 11:04:50.396408-05 22 13 47 Children's Memorial Hospital 2 Changed teaser. 1258 2010-04-21 11:18:01.342435-05 22 14 65 65 2 Changed capital. Changed price for tix "2 tix 4 White Sox vs Minnesota". 1259 2010-04-21 11:18:24.273066-05 22 14 64 64 2 Changed capital. Changed price for tix "2 tix 4 White Sox vs Anaheim Angels". 1260 2010-04-21 11:51:47.382936-05 6 13 48 Comer Children's Hospital 1 1261 2010-04-21 11:52:00.758917-05 6 13 48 Comer Children's Hospital 2 Changed status. 1262 2010-04-21 13:06:12.824962-05 22 14 65 65 2 Changed seating_info and details for tix "2 tix 4 White Sox vs Minnesota". 1263 2010-04-21 13:06:54.704156-05 22 14 65 65 2 No fields changed. 1264 2010-04-21 13:09:14.685885-05 22 14 46 46 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs Washington Nationals ". 1265 2010-04-21 13:11:06.330891-05 22 14 60 60 2 Changed status. 1266 2010-04-21 13:50:36.457263-05 6 12 169 Hesed House (Aurora, IL) 1 1267 2010-04-21 13:52:11.835297-05 6 13 49 Hesed House 1 1268 2010-04-21 13:55:00.280915-05 6 13 49 Hesed House 2 Changed color_logo. 1269 2010-04-21 14:06:03.366291-05 6 13 49 Hesed House 2 Changed color_logo. 1270 2010-04-21 14:27:22.547542-05 22 21 16 etickets/62/stubhub_commay 2 d backs.htm 3 1271 2010-04-21 14:30:04.406454-05 6 3 182 TomHayes 1 1272 2010-04-21 14:30:25.34037-05 6 3 182 TomHayes 2 Changed first_name, last_name and email. 1273 2010-04-21 14:31:24.670429-05 6 14 66 66 2 Changed user. 1274 2010-04-21 14:31:27.752265-05 22 19 53 Chicago Cubs vs. Arizona Diamondbacks 2 No fields changed. 1275 2010-04-21 14:32:19.859456-05 22 21 16 etickets/62/stubhub_commay 2 d backs.htm 3 1276 2010-04-21 14:52:57.286125-05 22 14 67 67 1 1277 2010-04-21 14:58:44.849051-05 22 14 67 67 3 1278 2010-04-21 14:58:55.276056-05 22 14 67 67 3 1279 2010-04-21 14:59:09.116526-05 22 14 63 63 3 1280 2010-04-21 15:00:03.156886-05 22 14 63 63 2 Changed seating_info and details for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1281 2010-04-21 15:08:40.875143-05 22 14 63 63 2 Changed status. 1282 2010-04-21 15:09:03.593079-05 22 14 63 63 2 Changed featured and letter_date. 1283 2010-04-21 15:15:00.354967-05 22 21 16 etickets/62/stubhub_commay 2 d backs.htm 3 1284 2010-04-21 15:39:33.415135-05 22 21 16 etickets/62/stubhub_commay 2 d backs.htm 3 1285 2010-04-21 15:44:35.226029-05 6 13 49 Hesed House 2 Changed color_logo. 1286 2010-04-21 16:26:37.298676-05 6 3 183 maryensor 1 1287 2010-04-21 16:38:33.269237-05 6 3 183 maryensor 2 Changed first_name, last_name, email and groups. 1288 2010-04-21 16:45:58.05791-05 22 19 57 Chicago Cubs vs. Los Angeles Dodgers 1 1289 2010-04-21 16:51:40.656024-05 22 14 68 68 1 1290 2010-04-21 16:52:41.735753-05 22 19 58 Chicago Cubs vs. St. Louis Cardinals 1 1291 2010-04-21 16:55:06.310522-05 22 14 69 69 1 1292 2010-04-21 16:55:24.612638-05 22 14 69 69 2 Changed featured. 1293 2010-04-21 16:56:02.3663-05 22 14 46 46 2 Changed distribution_date. Changed seating_info and details for tix "2 tix 4 Chicago Cubs vs Washington Nationals ". 1294 2010-04-21 16:56:16.319248-05 22 14 46 46 2 No fields changed. 1295 2010-04-21 16:56:46.809593-05 22 14 65 65 2 Changed distribution_date. 1296 2010-04-21 16:56:56.430493-05 22 14 65 65 2 No fields changed. 1297 2010-04-21 16:57:07.49367-05 22 14 64 64 2 Changed distribution_date. 1298 2010-04-21 16:57:32.946919-05 22 14 65 65 2 No fields changed. 1299 2010-04-21 16:59:45.863151-05 22 14 64 64 2 Changed seating_info for tix "2 tix 4 White Sox vs Anaheim Angels". 1300 2010-04-21 17:10:27.460586-05 22 14 63 63 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1301 2010-04-21 17:11:34.418799-05 22 14 63 63 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1302 2010-04-21 17:12:41.79666-05 22 14 69 69 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. St. Louis Cardinals". 1303 2010-04-21 17:13:18.758275-05 22 14 63 63 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1304 2010-04-22 09:36:38.75995-05 22 14 68 68 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Los Angeles Dodgers". 1305 2010-04-22 09:37:06.726137-05 22 14 68 68 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Los Angeles Dodgers". 1306 2010-04-22 10:25:16.808493-05 6 12 173 Luther North High School (Chicago, IL) 1 1307 2010-04-22 10:25:55.641166-05 6 13 50 Luther North High School 1 1308 2010-04-22 10:44:18.326123-05 22 21 17 etickets/69/Chicago White Sox vs. L.A. Angels, 7:5:2010.pdf 2 Changed file. 1309 2010-04-22 10:44:39.500568-05 22 21 17 etickets/69/Chicago White Sox vs. L.A. Angels, 7:5:2010.pdf 2 No fields changed. 1310 2010-04-22 10:45:58.854818-05 22 19 59 White Sox vs Los Angeles Angels of Anaheim 2 Changed title and date. 1311 2010-04-22 10:48:00.845065-05 22 14 70 70 2 Changed status. Changed seating_info and details for tix "4 tix 4 White Sox vs Los Angeles Angels of Anaheim". 1312 2010-04-22 11:36:57.573568-05 22 14 69 69 2 Changed distribution_date and distrubution_notes. 1313 2010-04-22 11:37:43.548161-05 22 14 47 47 2 Changed distribution_date and distrubution_notes. 1314 2010-04-22 11:38:22.232212-05 22 14 48 48 2 Changed distribution_date and distrubution_notes. 1315 2010-04-22 11:39:55.985379-05 22 19 60 Chicago Cubs vs. St. Louis Cardinals 1 1316 2010-04-22 11:41:47.388315-05 22 14 71 71 1 1317 2010-04-22 11:42:29.942147-05 22 21 18 etickets/70/Chicago Cubs vs St. Louis Cardinals- Seat 101.pdf 1 1318 2010-04-22 11:43:05.393783-05 22 21 18 etickets/70/Chicago Cubs vs St. Louis Cardinals- Seat 101.pdf 3 1319 2010-04-22 11:43:34.427189-05 22 21 19 etickets/70/Chicago Cubs vs St. Louis Cardinals- Seat 101.pdf 1 1320 2010-04-22 11:44:21.30541-05 22 14 71 71 2 Changed status. 1321 2010-04-22 12:08:49.710056-05 6 13 32 Nettelhorst School 2 Changed description. 1322 2010-04-22 13:13:36.075054-05 22 14 60 60 2 Changed status. 1323 2010-04-22 13:24:22.736588-05 22 19 51 Mark Knopfler 2 Changed date. 1324 2010-04-22 13:24:36.037667-05 22 14 60 60 2 No fields changed. 1325 2010-04-22 13:25:50.369931-05 22 14 70 70 2 Changed featured. 1326 2010-04-22 13:34:39.469587-05 22 14 60 60 2 Changed status. 1327 2010-04-22 13:35:07.218959-05 22 14 60 60 2 Changed distribution_date. 1328 2010-04-22 13:37:30.307152-05 22 19 51 Mark Knopfler 2 Changed date. 1329 2010-04-22 14:41:41.418636-05 6 14 66 66 2 Changed featured and letter_date. Changed seating_info and details for tix "4 tix 4 Chicago Cubs vs Washington Nationals". 1330 2010-04-22 14:42:09.235849-05 6 14 66 66 2 No fields changed. 1331 2010-04-22 14:42:34.08346-05 6 14 66 66 2 Changed status. 1332 2010-04-22 15:10:23.156065-05 22 13 43 University of St. Francis 2 Changed status. 1333 2010-04-22 15:12:51.457984-05 22 13 43 University of St. Francis 2 Changed charity and has_detail. 1334 2010-04-22 16:11:55.601183-05 22 13 43 University of St. Francis 2 Changed status, charity and has_detail. 1335 2010-04-22 17:21:38.41581-05 6 3 135 julielichter 2 Changed is_staff. 1336 2010-04-22 17:22:04.814494-05 6 3 140 juliesharpe 2 Changed is_staff. 1337 2010-04-22 17:22:40.652817-05 6 3 170 mtimpone 2 Changed is_staff and is_superuser. 1338 2010-04-22 17:23:14.531189-05 6 3 2 patrick 2 Changed is_staff and is_superuser. 1339 2010-04-22 17:23:41.098317-05 6 3 1 trent 2 Changed is_staff and is_superuser. 1340 2010-04-22 17:27:58.768614-05 22 14 10 10 2 Changed letter_date. 1341 2010-04-22 17:28:30.226441-05 6 14 32 32 2 Changed letter_date. 1342 2010-04-22 18:06:53.621429-05 6 14 60 60 2 Changed distribution_date and distrubution_notes. 1343 2010-04-23 09:23:33.070929-05 124 14 65 65 2 Changed distribution_date and distrubution_notes. 1344 2010-04-23 09:23:56.298746-05 124 17 35 Purchase #35 by baseball5905@hotmail.com 2 Payment captured successful. 1345 2010-04-23 09:36:21.843598-05 124 14 72 72 2 Changed status and letter_date. 1346 2010-04-23 09:45:14.332887-05 22 19 61 Chicago Cubs vs. Washington Nationals 2 Changed title. 1347 2010-04-23 09:47:08.276011-05 22 19 54 Chicago White Sox vs. Los Angeles Angels of Anaheim 2 Changed title. 1348 2010-04-23 09:47:31.494268-05 22 19 59 Chicago White Sox vs. Los Angeles Angels of Anaheim 2 Changed title. 1349 2010-04-23 09:47:45.289653-05 22 19 55 Chicago White Sox vs. Minnesota Twins 2 Changed title. 1350 2010-04-23 09:48:17.173441-05 124 19 62 Chicago Cubs vs Washington Nationals 1 1351 2010-04-23 09:50:50.641555-05 22 19 55 Chicago White Sox vs. Minnesota Twins 2 Changed date. 1352 2010-04-23 09:51:04.656182-05 22 19 55 Chicago White Sox vs. Minnesota Twins 2 Changed date. 1353 2010-04-23 10:43:44.506364-05 22 19 63 Chicago Cubs vs. Chicago White Sox 2 Changed title. 1354 2010-04-23 11:01:58.644631-05 22 14 73 73 2 Changed status, featured and letter_date. Changed seating_info and details for tix "2 tix 4 Chicago Cubs vs. Chicago White Sox". 1355 2010-04-23 13:07:51.751723-05 124 14 63 63 2 Changed distribution_date and distrubution_notes. 1356 2010-04-23 13:08:54.478858-05 124 17 37 Purchase #37 by jungpj@gmail.com 2 Payment captured successful. 1357 2010-04-23 13:15:44.425341-05 124 14 63 63 2 Changed distrubution_notes. 1358 2010-04-23 13:48:02.993741-05 6 14 66 66 2 Changed status. 1359 2010-04-23 14:34:49.779931-05 6 14 46 46 2 Changed status. 1360 2010-04-23 14:36:53.135361-05 22 14 72 72 2 Changed featured. 1361 2010-04-23 16:29:38.807908-05 6 14 66 66 2 Changed status. 1362 2010-04-23 16:30:02.681007-05 6 14 66 66 2 Changed status. 1363 2010-04-23 17:36:48.234265-05 6 17 36 Purchase #36 by baseball5905@hotmail.com 2 Payment capture *FAILED*: The transaction cannot be found. 1364 2010-04-23 18:34:32.024264-05 22 14 72 72 2 Changed seating_info and details for tix "4 tix 4 Chicago Cubs vs. Washington Nationals ". 1365 2010-04-23 18:38:03.767386-05 22 9 1 /about-us/ -- About Us 2 Changed content. 1366 2010-04-24 11:07:17.916486-05 6 19 64 Chicago White Sox vs Cleveland Indians 1 1367 2010-04-24 11:11:45.949101-05 6 14 74 74 1 1368 2010-04-24 11:53:58.734381-05 6 14 66 66 2 Changed price for tix "4 tix 4 Chicago Cubs vs Washington Nationals". 1369 2010-04-24 13:41:48.611938-05 6 14 72 72 2 Changed status. 1370 2010-04-24 13:42:33.173244-05 6 14 66 66 2 Changed status. 1371 2010-04-24 13:43:18.864557-05 6 14 46 46 2 Changed status. 1372 2010-04-24 14:20:51.756367-05 6 14 75 75 1 1373 2010-04-24 15:20:40.43884-05 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed color_logo. 1374 2010-04-24 15:25:26.839196-05 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed color_logo. 1375 2010-04-24 21:30:20.958528-05 6 14 75 75 2 Changed status and featured. 1376 2010-04-25 12:19:23.221622-05 6 14 66 66 2 Changed status. 1377 2010-04-25 12:19:44.503406-05 6 14 72 72 2 Changed status. 1378 2010-04-25 12:19:59.760203-05 6 14 46 46 2 Changed status. 1379 2010-04-25 12:29:44.620161-05 6 14 66 66 2 Changed price for tix "4 tix 4 Chicago Cubs vs Washington Nationals". 1380 2010-04-25 12:31:02.866886-05 6 14 46 46 2 Changed price for tix "2 tix 4 Chicago Cubs vs Washington Nationals ". 1381 2010-04-26 09:27:10.873525-05 124 17 36 Purchase #36 by baseball5905@hotmail.com 2 Changed status. 1382 2010-04-26 09:42:02.243274-05 22 14 74 74 2 Changed seating_info for tix "2 tix 4 Chicago White Sox vs Cleveland Indians". 1383 2010-04-26 09:43:14.946076-05 22 19 56 Chicago Cubs vs. Washington Nationals 2 Changed title. 1384 2010-04-26 09:43:25.938185-05 22 19 38 Chicago Cubs vs. Washington Nationals 2 Changed title. 1385 2010-04-26 09:43:34.576518-05 22 19 62 Chicago Cubs vs. Washington Nationals 2 Changed title. 1386 2010-04-26 09:43:46.502087-05 22 19 64 Chicago White Sox vs. Cleveland Indians 2 Changed title. 1387 2010-04-26 09:44:49.318021-05 22 19 16 Chicago White Sox vs. Texas Rangers 2 Changed title. 1388 2010-04-26 09:46:18.315987-05 22 19 65 Chicago Cubs vs. Pittsburgh Pirates 2 Changed title. 1389 2010-04-26 09:47:47.220118-05 22 19 67 Chicago White Sox vs. Toronto Blue Jays 2 Changed title. 1390 2010-04-26 09:50:49.056998-05 22 14 78 78 2 Changed seating_info and details for tix "2 tix 4 Chicago White Sox vs. Toronto Blue Jays". 1391 2010-04-26 09:54:35.706635-05 22 14 77 77 2 Changed charity. Changed seating_info and details for tix "4 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1392 2010-04-26 09:55:48.606641-05 22 14 76 76 2 Changed seating_info and details for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1393 2010-04-26 10:05:50.862052-05 30 14 52 52 2 Changed price for tix "2 tix 4 Tracy Morgan". 1394 2010-04-26 10:06:25.829789-05 30 14 51 51 2 Changed price for tix "2 tix 4 Tracy Morgan". 1395 2010-04-26 10:22:22.418937-05 22 21 24 etickets/77/mothersdayreal3theotheris4.htm 3 1396 2010-04-26 10:22:22.42206-05 22 21 23 etickets/77/mothersday3.htm 3 1397 2010-04-26 10:22:22.423363-05 22 21 22 etickets/75/15403369.htmJUNE 30.htm 3 1398 2010-04-26 10:22:22.424538-05 22 21 21 etickets/75/15403368.htmJUNE 30.htm 3 1399 2010-04-26 10:22:37.074135-05 22 21 24 etickets/77/mothersdayreal3theotheris4.htm 3 1400 2010-04-26 10:22:42.062953-05 22 21 23 etickets/77/mothersday3.htm 3 1401 2010-04-26 10:22:45.848865-05 22 21 22 etickets/75/15403369.htmJUNE 30.htm 3 1402 2010-04-26 10:22:56.14327-05 22 21 22 etickets/75/15403369.htmJUNE 30.htm 3 1403 2010-04-26 10:23:17.747246-05 22 21 21 etickets/75/15403368.htmJUNE 30.htm 3 1404 2010-04-26 10:23:30.591585-05 22 21 16 etickets/62/stubhub_commay 2 d backs.htm 3 1405 2010-04-26 10:23:47.643719-05 22 21 22 etickets/75/15403369.htmJUNE 30.htm 3 1406 2010-04-26 10:24:45.125646-05 22 21 22 etickets/75/15403369.htmJUNE 30.htm 3 1407 2010-04-26 10:26:37.122409-05 22 14 78 78 3 1408 2010-04-26 10:26:37.124638-05 22 14 76 76 3 1409 2010-04-26 10:27:08.57902-05 22 21 21 etickets/75/15403368.htmJUNE 30.htm 3 1410 2010-04-26 10:55:24.410069-05 22 14 75 75 2 Changed seating_info for tix "2 tix 4 Chicago White Sox vs. Cleveland Indians". 1411 2010-04-26 11:18:58.028428-05 22 21 21 etickets/75/15403368.htmJUNE 30.htm 3 1412 2010-04-26 11:19:24.68071-05 22 21 25 etickets/77/Chicago Cubs vs. Pittsburgh Pirates, 6:30:2010 - Seat 9.pdf 1 1413 2010-04-26 11:20:04.721625-05 22 21 25 etickets/77/Chicago Cubs vs. Pittsburgh Pirates, 6:30:2010 - Seat 9.pdf 3 1414 2010-04-26 11:20:18.34837-05 22 21 26 etickets/77/Chicago White Sox vs. Toronto Blue Jays, 5:9:2010- Seat 3.pdf 1 1415 2010-04-26 11:20:30.316749-05 22 21 27 etickets/77/Chicago White Sox vs. Toronto Blue Jays, 5:9:2010- Seat 4.pdf 1 1416 2010-04-26 11:25:14.273356-05 22 14 78 78 2 Changed featured. 1417 2010-04-26 11:25:31.271848-05 22 14 78 78 2 Changed status. 1418 2010-04-26 11:25:48.369892-05 22 14 76 76 2 Changed status and featured. 1419 2010-04-26 11:28:18.23639-05 22 12 188 Oriental Theatre (Chicago, IL) 1 1420 2010-04-26 11:28:36.679187-05 22 18 50 Oriental Theatre 1 1421 2010-04-26 11:29:30.448734-05 22 19 68 Billy Elliot the Musical 1 1422 2010-04-26 11:33:41.836039-05 22 14 79 79 1 1423 2010-04-26 11:34:20.027262-05 22 19 68 Billy Elliot the Musical, 7/2/2010 2 Changed title. 1424 2010-04-26 11:34:58.649973-05 22 21 28 etickets/78/Billy Elliot the Musical, 7:2:2010.pdf 1 1425 2010-04-26 11:35:32.963264-05 22 14 79 79 2 Changed status. 1426 2010-04-26 11:36:18.892129-05 22 19 68 Billy Elliot the Musical 2 Changed title. 1427 2010-04-26 12:15:05.466248-05 6 14 72 72 2 Changed status. 1428 2010-04-26 12:15:19.130519-05 6 14 66 66 2 Changed status. 1429 2010-04-26 12:15:39.680038-05 6 14 52 52 2 Changed status. 1430 2010-04-26 12:15:57.688917-05 6 14 51 51 2 Changed status. 1431 2010-04-26 12:16:14.705175-05 6 14 46 46 2 Changed status. 1432 2010-04-26 13:24:36.845432-05 124 14 73 73 2 Changed distribution_date and distrubution_notes. 1433 2010-04-26 13:25:00.385167-05 124 17 39 Purchase #39 by amarie229@hotmail.com 2 Payment captured successful. 1434 2010-04-26 14:19:16.006492-05 6 14 66 66 2 Changed price for tix "4 tix 4 Chicago Cubs vs. Washington Nationals". 1435 2010-04-26 14:19:25.456859-05 6 14 66 66 2 No fields changed. 1436 2010-04-27 07:02:59.584852-05 6 14 66 66 2 Changed status. 1437 2010-04-27 07:03:51.366735-05 6 14 60 60 2 Changed featured. 1438 2010-04-27 10:10:48.180707-05 6 14 72 72 2 Changed price for tix "4 tix 4 Chicago Cubs vs. Washington Nationals ". 1439 2010-04-27 10:39:58.633957-05 30 14 46 46 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Washington Nationals ". 1440 2010-04-27 10:47:15.382915-05 30 14 52 52 2 Changed price for tix "2 tix 4 Tracy Morgan". 1441 2010-04-27 10:48:14.547274-05 30 14 51 51 2 Changed price for tix "2 tix 4 Tracy Morgan". 1442 2010-04-27 12:38:21.076868-05 22 14 79 79 2 Changed letter_date. 1443 2010-04-27 13:45:14.253489-05 30 19 69 Chicago Cubs vs. Arizona Diamondbacks 1 1444 2010-04-27 13:49:33.096923-05 30 14 80 80 1 1445 2010-04-27 13:51:16.730418-05 30 14 81 81 1 1446 2010-04-27 13:51:57.467828-05 30 14 80 80 2 Changed event for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1447 2010-04-27 13:52:21.980933-05 30 14 80 80 2 Changed event for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1448 2010-04-27 13:52:40.197324-05 30 14 81 81 2 Changed event for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1449 2010-04-27 13:55:25.003598-05 30 14 81 81 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1450 2010-04-27 13:55:37.710824-05 30 14 80 80 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1451 2010-04-27 14:23:01.304465-05 22 19 70 Chicago Cubs vs. Arizona Diamondbacks 1 1452 2010-04-27 14:27:58.039513-05 22 14 82 82 1 1453 2010-04-27 14:31:35.676842-05 22 21 29 etickets/81/Chicago Cubs vs. Arizona Diamondbacks, 4:30:10 - Seat 7.pdf 1 1454 2010-04-27 14:31:50.899791-05 22 21 30 etickets/81/Chicago Cubs vs. Arizona Diamondbacks, 4:30:10 - Seat 8.pdf 1 1455 2010-04-27 14:39:08.721643-05 22 14 82 82 2 Changed charity, status, capital, featured and letter_date. Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1456 2010-04-27 14:41:31.051375-05 22 14 70 70 2 Changed letter_date. 1457 2010-04-27 14:41:37.594019-05 22 14 71 71 2 Changed letter_date. 1458 2010-04-27 14:41:51.43283-05 22 14 74 74 2 Changed letter_date. 1459 2010-04-27 14:41:58.271594-05 22 14 75 75 2 Changed letter_date. 1460 2010-04-27 14:42:04.34437-05 22 14 77 77 2 Changed letter_date. 1461 2010-04-27 14:42:09.20014-05 22 14 78 78 2 Changed letter_date. 1462 2010-04-27 14:42:40.74902-05 22 14 82 82 2 Changed seating_info for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1463 2010-04-27 14:45:23.75621-05 22 19 69 Chicago Cubs vs. Arizona Diamondbacks 2 Changed date. 1464 2010-04-27 15:46:23.087296-05 30 14 46 46 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Washington Nationals ". 1465 2010-04-27 16:06:06.160687-05 22 14 46 46 2 Changed distribution_date and distrubution_notes. 1466 2010-04-27 16:06:18.067285-05 22 17 42 Purchase #42 by jkoranda@tix4cause.com 2 Payment captured successful. 1467 2010-04-27 16:14:22.234583-05 22 14 81 81 2 Changed featured. 1468 2010-04-27 16:15:15.851312-05 22 14 76 76 2 Changed featured. 1469 2010-04-27 16:15:34.316534-05 22 14 1 1 2 Changed featured. 1470 2010-04-27 16:15:43.227793-05 22 14 2 2 2 Changed featured. 1471 2010-04-27 16:15:53.537336-05 22 14 3 3 2 Changed featured. 1472 2010-04-27 16:16:07.899564-05 22 14 5 5 2 Changed featured. 1473 2010-04-27 16:16:19.582647-05 22 14 6 6 2 Changed featured. 1474 2010-04-27 16:16:30.045593-05 22 14 7 7 2 Changed featured. 1475 2010-04-27 16:16:39.352486-05 22 14 8 8 2 Changed featured. 1476 2010-04-27 16:17:00.294208-05 22 14 9 9 2 Changed featured. 1477 2010-04-27 16:17:12.917924-05 22 14 10 10 2 Changed featured. 1478 2010-04-27 16:17:23.295983-05 22 14 12 12 2 Changed featured. 1479 2010-04-27 16:17:34.443186-05 22 14 13 13 2 Changed featured. 1480 2010-04-27 16:17:46.075974-05 22 14 15 15 2 Changed featured. 1481 2010-04-27 16:17:57.963805-05 22 14 16 16 2 Changed featured. 1482 2010-04-27 16:18:06.911214-05 22 14 17 17 2 Changed featured. 1483 2010-04-27 16:18:17.734427-05 22 14 18 18 2 Changed featured. 1484 2010-04-27 16:18:28.021808-05 22 14 19 19 2 Changed featured. 1485 2010-04-27 16:18:37.656909-05 22 14 38 38 2 Changed featured. 1486 2010-04-27 16:18:45.693163-05 22 14 39 39 2 Changed featured. 1487 2010-04-27 16:18:55.210053-05 22 14 40 40 2 Changed featured. 1488 2010-04-27 16:19:07.823917-05 22 14 21 21 2 Changed featured. 1489 2010-04-27 16:19:16.710652-05 22 14 41 41 2 Changed featured. 1490 2010-04-27 16:19:26.006769-05 22 14 24 24 2 Changed featured. 1491 2010-04-27 16:19:35.420197-05 22 14 25 25 2 Changed featured. 1492 2010-04-27 16:19:44.186996-05 22 14 42 42 2 Changed featured. 1493 2010-04-27 16:19:51.76758-05 22 14 43 43 2 Changed featured. 1494 2010-04-27 16:20:00.510368-05 22 14 44 44 2 Changed featured. 1495 2010-04-27 16:20:07.783555-05 22 14 45 45 2 Changed featured. 1496 2010-04-27 16:20:27.980157-05 22 14 26 26 2 Changed featured. 1497 2010-04-27 16:20:35.906366-05 22 14 27 27 2 Changed featured. 1498 2010-04-27 16:20:50.168536-05 22 14 46 46 2 Changed featured. 1499 2010-04-27 16:20:59.189301-05 22 14 28 28 2 Changed featured. 1500 2010-04-27 16:21:08.913026-05 22 14 47 47 2 Changed featured. 1501 2010-04-27 16:21:16.21274-05 22 14 30 30 2 Changed featured. 1502 2010-04-27 16:21:25.801795-05 22 14 32 32 2 Changed featured. 1503 2010-04-27 16:21:36.2824-05 22 14 33 33 2 Changed featured. 1504 2010-04-27 16:21:48.649942-05 22 14 48 48 2 Changed featured. 1505 2010-04-27 16:21:57.365283-05 22 14 51 51 2 Changed featured. 1506 2010-04-27 16:22:05.849806-05 22 14 52 52 2 Changed featured. 1507 2010-04-27 16:22:21.07966-05 22 14 53 53 2 Changed featured. 1508 2010-04-27 16:22:35.196651-05 22 14 54 54 2 Changed featured. 1509 2010-04-27 16:22:43.089544-05 22 14 56 56 2 Changed featured. 1510 2010-04-27 16:22:50.270533-05 22 14 59 59 2 Changed featured. 1511 2010-04-27 16:22:57.935841-05 22 14 61 61 2 Changed featured. 1512 2010-04-27 16:23:05.873801-05 22 14 63 63 2 Changed featured. 1513 2010-04-27 16:23:13.087088-05 22 14 64 64 2 Changed featured. 1514 2010-04-27 16:23:56.80187-05 22 14 72 72 2 Changed featured. 1515 2010-04-27 16:24:15.010299-05 22 14 71 71 2 Changed featured. 1516 2010-04-27 16:24:26.995191-05 22 14 68 68 2 Changed featured. 1517 2010-04-27 16:24:57.89653-05 22 14 75 75 2 Changed featured. 1518 2010-04-27 16:25:07.230506-05 22 14 74 74 2 Changed featured. 1519 2010-04-27 16:25:19.964487-05 22 14 73 73 2 Changed featured. 1520 2010-04-27 16:25:32.071624-05 22 14 69 69 2 Changed featured. 1521 2010-04-27 16:25:44.944403-05 22 14 60 60 2 Changed featured. 1522 2010-04-27 16:25:57.845965-05 22 14 52 52 2 Changed featured. 1523 2010-04-27 16:26:06.154516-05 22 14 51 51 2 Changed featured. 1524 2010-04-27 16:26:23.653032-05 22 14 32 32 2 Changed featured. 1525 2010-04-27 16:27:39.172543-05 22 14 2 2 2 Changed featured. 1526 2010-04-27 16:28:50.143277-05 22 14 9 9 2 Changed featured. 1527 2010-04-27 16:30:29.733965-05 22 14 11 11 2 No fields changed. 1528 2010-04-27 16:54:52.587206-05 22 14 2 2 2 Changed featured. 1529 2010-04-27 16:55:02.25796-05 22 14 9 9 2 Changed featured. 1530 2010-04-27 16:55:16.993248-05 22 14 32 32 2 Changed featured. 1531 2010-04-27 16:55:30.122588-05 22 14 60 60 2 Changed featured. 1532 2010-04-28 11:15:37.535199-05 22 14 83 83 2 Changed letter_date. Changed format, seating_info and details for tix "4 tix 4 Cubs vs. Arizona Diamondbacks". 1533 2010-04-28 11:15:47.679569-05 22 14 83 83 2 Changed status. 1534 2010-04-28 11:16:16.059152-05 22 19 71 Cubs vs. Arizona Diamondbacks 2 Changed date. 1535 2010-04-28 11:16:47.651213-05 22 14 83 83 2 Changed featured. 1536 2010-04-28 11:43:56.122987-05 123 14 64 64 2 Changed distribution_date and distrubution_notes. 1537 2010-04-28 11:44:43.46174-05 123 17 40 Purchase #40 by ray.redmond@comcast.net 2 Payment captured successful. 1538 2010-04-28 11:50:14.598918-05 123 14 77 77 2 Changed status. 1539 2010-04-28 14:40:43.894785-05 22 19 71 Chicago Cubs vs. Arizona Diamondbacks 2 Changed title. 1540 2010-04-28 15:34:10.042379-05 22 14 77 77 2 Changed capital. Changed count for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1541 2010-04-28 15:36:09.826854-05 22 14 84 84 1 1542 2010-04-28 15:36:27.044811-05 22 14 77 77 2 Changed seating_info for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1543 2010-04-28 15:38:03.887278-05 22 14 84 84 2 No fields changed. 1544 2010-04-28 15:38:26.562323-05 22 14 84 84 2 Changed event for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1545 2010-04-28 15:38:54.435732-05 22 14 84 84 2 No fields changed. 1546 2010-04-28 15:42:16.263626-05 22 19 66 Chicago Cubs vs. Arizona Diamondbacks 2 Changed date. 1547 2010-04-28 15:45:33.243624-05 22 19 66 Chicago Cubs vs. Arizona Diamondbacks 2 Changed date. 1548 2010-04-28 15:46:01.819713-05 22 19 66 Chicago Cubs vs. Arizona Diamondbacks 5/1 2 Changed title. 1549 2010-04-28 15:46:38.977222-05 22 14 84 84 2 Changed event and seating_info for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks 5/1". 1550 2010-04-28 15:46:53.871348-05 22 14 77 77 2 Changed seating_info for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks 5/1". 1551 2010-04-28 15:48:14.232488-05 22 19 66 Chicago Cubs vs. Arizona Diamondbacks 2 Changed title. 1552 2010-04-28 15:49:00.066155-05 22 14 65 65 2 Changed featured. 1553 2010-04-28 15:49:09.650653-05 22 14 66 66 2 Changed featured. 1554 2010-04-28 15:50:22.534631-05 22 14 82 82 2 Changed featured. 1555 2010-04-28 15:50:32.161412-05 22 14 82 82 2 Changed featured. 1556 2010-04-28 15:51:07.076732-05 22 14 82 82 2 Changed featured. 1557 2010-04-28 16:35:34.093663-05 22 14 84 84 2 Changed distribution_date and distrubution_notes. 1558 2010-04-28 16:35:38.966359-05 22 17 43 Purchase #43 by hucek3@comcast.net 2 Payment captured successful. 1559 2010-04-28 21:01:26.279253-05 6 14 77 77 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1560 2010-04-29 12:48:35.291722-05 30 14 72 72 2 Changed status. 1561 2010-04-29 12:49:01.396544-05 30 14 81 81 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1562 2010-04-29 12:49:17.070913-05 30 14 80 80 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1563 2010-04-29 12:52:51.892912-05 30 14 81 81 2 No fields changed. 1564 2010-04-29 13:47:49.212523-05 123 14 77 77 2 Changed featured. 1565 2010-04-29 13:52:44.683613-05 22 14 78 78 2 Changed capital. Changed price for tix "2 tix 4 Chicago White Sox vs. Toronto Blue Jays". 1566 2010-04-29 13:53:13.225438-05 22 14 76 76 2 Changed capital and letter_date. Changed price for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1567 2010-04-29 13:54:16.116933-05 22 14 71 71 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. St. Louis Cardinals". 1568 2010-04-29 13:55:02.890941-05 22 14 70 70 2 Changed capital. Changed price for tix "4 tix 4 Chicago White Sox vs. Los Angeles Angels of Anaheim". 1569 2010-04-29 13:55:26.482856-05 22 14 68 68 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Los Angeles Dodgers". 1570 2010-04-29 13:55:48.499302-05 22 14 83 83 2 Changed capital. Changed price for tix "4 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1571 2010-04-29 13:57:18.94284-05 22 14 71 71 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. St. Louis Cardinals". 1572 2010-04-29 15:05:42.26325-05 123 14 74 74 2 Changed distribution_date and distrubution_notes. 1573 2010-04-29 15:05:57.199391-05 123 17 38 Purchase #38 by mrebmann4281@wowway.com 2 Payment captured successful. 1574 2010-04-29 16:18:21.290831-05 22 14 83 83 2 Changed capital. Changed price for tix "4 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1575 2010-04-29 16:18:39.395946-05 22 14 82 82 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1576 2010-04-29 17:07:08.702716-05 22 14 81 81 2 Changed distribution_date and distrubution_notes. 1577 2010-04-29 17:07:14.116985-05 22 17 45 Purchase #45 by jkoranda@tix4cause.com 2 Payment captured successful. 1578 2010-04-29 17:07:41.448171-05 22 14 80 80 2 Changed distribution_date and distrubution_notes. 1579 2010-04-29 17:07:47.055791-05 22 17 44 Purchase #44 by jkoranda@tix4cause.com 2 Payment captured successful. 1580 2010-04-29 17:17:04.506683-05 22 17 41 Purchase #41 by jharring020202@yahoo.com 2 Payment captured successful. 1581 2010-04-29 17:30:51.642172-05 22 14 74 74 2 Changed distrubution_notes. 1582 2010-04-29 17:36:32.863056-05 22 14 83 83 2 Changed capital. Changed price for tix "4 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1583 2010-04-29 17:36:51.214851-05 22 14 83 83 2 No fields changed. 1584 2010-04-29 17:37:58.802552-05 22 14 82 82 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1585 2010-04-29 17:38:17.217489-05 22 14 83 83 2 Changed capital. Changed price for tix "4 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1586 2010-04-29 17:38:31.208527-05 22 14 84 84 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1587 2010-04-29 17:39:14.097168-05 22 14 84 84 2 No fields changed. 1588 2010-04-29 17:40:16.139089-05 22 14 84 84 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1589 2010-04-29 17:40:33.610448-05 22 14 77 77 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1590 2010-04-29 17:42:17.683521-05 22 14 71 71 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. St. Louis Cardinals". 1591 2010-04-29 19:29:01.569465-05 22 14 83 83 2 Changed capital. Changed price for tix "4 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1592 2010-04-29 19:29:26.953436-05 22 14 82 82 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1593 2010-04-29 19:30:25.998279-05 22 14 77 77 2 Changed capital. Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1594 2010-04-30 08:41:41.801958-05 30 14 52 52 2 Changed format for tix "2 tix 4 Tracy Morgan". 1595 2010-04-30 08:44:24.733898-05 30 14 51 51 2 Changed format for tix "2 tix 4 Tracy Morgan". 1596 2010-04-30 08:54:28.156371-05 30 12 194 Turning Pointe Autism Foundation (Naperville, IL) 1 1597 2010-04-30 08:59:59.21374-05 30 13 52 Turning Pointe Autism Foundation 1 1598 2010-04-30 09:04:12.050214-05 30 13 52 Turning Pointe Autism Foundation 2 Changed color_logo and banner. 1599 2010-04-30 09:16:16.596771-05 30 12 197 A.D.O.P.T. Pet Shelter (Naperville, IL) 1 1600 2010-04-30 09:17:28.185045-05 30 13 53 A.D.O.P.T. Pet Shelter 1 1601 2010-04-30 09:26:53.844459-05 30 13 53 A.D.O.P.T. Pet Shelter 2 Changed color_logo and banner. 1602 2010-04-30 09:51:41.803587-05 22 14 83 83 2 Changed featured, distribution_date and distrubution_notes. 1603 2010-04-30 09:52:20.312628-05 22 14 82 82 2 Changed featured. 1604 2010-04-30 10:03:21.564919-05 22 17 46 Purchase #46 by leadtrader@comcast.net 2 Payment captured successful. 1605 2010-04-30 10:28:25.221581-05 6 14 82 82 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1606 2010-04-30 10:29:07.725281-05 6 14 77 77 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1607 2010-04-30 10:29:43.5647-05 6 14 52 52 2 Changed price for tix "2 tix 4 Tracy Morgan". 1608 2010-04-30 10:30:23.248059-05 6 14 51 51 2 Changed price for tix "2 tix 4 Tracy Morgan". 1609 2010-04-30 10:58:47.21222-05 123 13 53 A.D.O.P.T. Pet Shelter 2 Changed fein. 1610 2010-04-30 11:00:53.767249-05 123 12 198 A.D.O.P.T. Pet Shelter (Naperville, IL) 1 1611 2010-04-30 11:02:30.65321-05 123 13 53 A.D.O.P.T. Pet Shelter 2 Changed address. 1612 2010-04-30 11:06:00.663212-05 123 3 232 sandraboston 1 1613 2010-04-30 11:06:41.41329-05 30 12 199 Goodman Theatre (Chicago, IL) 1 1614 2010-04-30 11:06:46.580186-05 30 18 51 Goodman Theatre 1 1615 2010-04-30 11:07:35.257808-05 123 3 232 sandraboston 2 Changed first_name, last_name, email and groups. 1616 2010-04-30 11:07:47.651524-05 30 19 72 The Good Negro 1 1617 2010-04-30 11:11:21.840203-05 30 14 85 85 1 1618 2010-04-30 11:38:52.016049-05 30 14 52 52 2 Changed price for tix "2 tix 4 Tracy Morgan". 1619 2010-04-30 11:39:14.773758-05 30 14 51 51 2 Changed price for tix "2 tix 4 Tracy Morgan". 1620 2010-04-30 12:34:27.148636-05 30 3 233 russpaluch 1 1621 2010-04-30 12:34:53.630557-05 30 3 233 russpaluch 2 Changed first_name, last_name, email and groups. 1622 2010-04-30 12:35:53.159845-05 30 13 52 Turning Pointe Autism Foundation 2 Changed email and fein. 1623 2010-04-30 12:36:39.285258-05 30 3 234 sandyboston 1 1624 2010-04-30 12:37:09.570544-05 30 3 234 sandyboston 2 Changed first_name, last_name, email and groups. 1625 2010-04-30 16:36:45.493347-05 6 12 204 Miller Park (Milwaukee, WI) 1 1626 2010-04-30 16:37:01.828111-05 6 18 52 Miller Park 1 1627 2010-04-30 16:47:52.161039-05 30 12 205 First Midwest Bank Amphitheatre (Tinley Park, IL) 1 1628 2010-04-30 16:51:03.272368-05 30 18 53 First Midwest Bank Amphitheatre 1 1629 2010-04-30 16:52:01.883665-05 30 19 74 Tim McGraw with Lady Antebellum 1 1630 2010-04-30 16:56:07.15172-05 30 14 87 87 1 1631 2010-04-30 16:56:39.977368-05 6 14 86 86 2 Changed featured and letter_date. Changed seating_info and details for tix "2 tix 4 Chicago Cubs vs. Oakland Athletics". 1632 2010-04-30 16:57:20.663359-05 6 14 86 86 2 Changed status. 1633 2010-04-30 19:42:35.597483-05 30 14 82 82 2 Changed status. 1634 2010-04-30 19:43:31.686273-05 30 14 77 77 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Arizona Diamondbacks". 1635 2010-05-03 14:15:23.935129-05 6 13 41 St. James Parish & School Arlington Heights 2 No fields changed. 1636 2010-05-03 14:15:44.888723-05 22 13 53 A.D.O.P.T. Pet Shelter 2 No fields changed. 1637 2010-05-03 14:49:17.304988-05 6 14 86 86 2 No fields changed. 1638 2010-05-03 15:01:59.650089-05 6 14 11 11 3 1639 2010-05-03 15:03:46.582954-05 6 14 11 11 2 Deleted tix "4 tix 4 Our Home, Our Earth DuPage Symphony Orchestra". 1640 2010-05-03 15:05:17.540086-05 6 14 11 11 2 Changed status. 1641 2010-05-03 15:07:04.905965-05 6 14 32 32 2 Deleted tix "2 tix 4 Patti LuPone & Mandy Patinkin". 1642 2010-05-03 15:14:41.071319-05 22 14 85 85 2 Changed status. 1643 2010-05-03 15:19:00.352347-05 22 14 4 4 2 Deleted tix "2 tix 4 The Joffrey Ballet - CINDERELLA". 1644 2010-05-03 15:19:41.618315-05 22 14 30 30 2 Deleted tix "2 tix 4 Million Dollar Quartet". 1645 2010-05-03 15:21:25.278587-05 22 14 51 51 2 Deleted tix "2 tix 4 Tracy Morgan". 1646 2010-05-03 15:22:00.667382-05 22 14 85 85 2 Deleted tix "2 tix 4 The Good Negro". 1647 2010-05-03 15:22:19.78952-05 22 14 5 5 2 Deleted tix "3 tix 4 Billy Elliot the Musical ". 1648 2010-05-03 15:22:47.387831-05 22 14 10 10 2 Deleted tix "2 tix 4 Billy Elliot the Musical". 1649 2010-05-03 15:25:28.286152-05 22 14 51 51 2 Added tix "2 tix 4 Tracy Morgan". 1650 2010-05-03 15:30:37.841287-05 22 14 52 52 2 Changed distrubution_notes. 1651 2010-05-03 15:30:45.342412-05 22 17 47 Purchase #47 by nathan.ledesma@gmail.com 2 Payment captured successful. 1652 2010-05-03 15:31:25.768474-05 22 14 51 51 2 Changed distribution_date and distrubution_notes. 1653 2010-05-03 15:31:43.525115-05 22 14 52 52 2 Changed distribution_date. 1654 2010-05-03 15:31:49.608003-05 22 17 48 Purchase #48 by nathan.ledesma@gmail.com 2 Payment captured successful. 1655 2010-05-03 15:41:08.028903-05 22 3 22 ksnodgrass 2 Changed groups. 1656 2010-05-03 16:00:59.67408-05 22 14 77 77 2 Changed distribution_date and distrubution_notes. 1657 2010-05-03 16:01:04.989839-05 22 17 50 Purchase #50 by jkoranda@tix4cause.com 2 Payment captured successful. 1658 2010-05-03 16:07:59.31817-05 22 13 27 Chicago International Charter School 2 Changed description. 1659 2010-05-03 17:51:20.224261-05 6 3 153 jrosenfeld 2 Changed is_active, is_staff and is_superuser. 1660 2010-05-04 09:34:44.470845-05 30 19 75 Chicago White Sox vs. Seattle Mariners 1 1661 2010-05-04 09:40:33.032941-05 30 14 88 88 1 1662 2010-05-04 09:41:34.326371-05 30 14 89 89 1 1663 2010-05-04 09:42:46.279673-05 30 14 90 90 1 1664 2010-05-04 09:43:57.742419-05 30 14 91 91 1 1665 2010-05-04 09:45:22.836277-05 30 14 92 92 1 1666 2010-05-04 09:46:16.031451-05 30 14 93 93 1 1667 2010-05-04 09:47:07.578049-05 30 14 94 94 1 1668 2010-05-04 09:48:08.637087-05 30 14 95 95 1 1669 2010-05-04 09:48:52.273898-05 30 14 95 95 2 Changed seating_info for tix "4 tix 4 Chicago White Sox vs. Seattle Mariners". 1670 2010-05-04 09:50:21.378464-05 30 14 96 96 1 1671 2010-05-04 09:51:39.069348-05 30 14 97 97 1 1672 2010-05-04 09:53:54.310632-05 30 14 98 98 1 1673 2010-05-04 09:54:52.961425-05 30 14 99 99 1 1674 2010-05-04 09:56:38.24213-05 30 14 100 100 1 1675 2010-05-04 09:57:21.727434-05 30 14 101 101 1 1676 2010-05-04 09:58:20.67815-05 30 14 102 102 1 1677 2010-05-04 09:58:34.379887-05 30 14 102 102 2 Changed details for tix "5 tix 4 Chicago White Sox vs. Seattle Mariners". 1678 2010-05-04 09:59:28.387012-05 30 14 103 103 1 1679 2010-05-04 10:00:12.138599-05 30 14 104 104 1 1680 2010-05-04 10:01:00.916153-05 30 14 105 105 1 1681 2010-05-04 10:01:47.855921-05 30 14 106 106 1 1682 2010-05-04 10:02:43.587925-05 30 14 107 107 1 1683 2010-05-04 10:03:36.379137-05 30 14 108 108 1 1684 2010-05-04 10:04:21.133579-05 30 14 109 109 1 1685 2010-05-04 10:05:12.354663-05 30 14 110 110 1 1686 2010-05-04 10:08:37.532635-05 30 14 111 111 1 1687 2010-05-04 10:10:25.220543-05 30 14 112 112 1 1688 2010-05-04 10:11:25.125872-05 30 14 111 111 2 Changed status. 1689 2010-05-04 10:11:58.050038-05 30 14 110 110 2 Changed status and featured. 1690 2010-05-04 10:12:19.206305-05 30 14 109 109 2 Changed status and featured. 1691 2010-05-04 10:12:53.099862-05 30 14 108 108 2 Changed status and featured. 1692 2010-05-04 10:13:13.696402-05 30 14 107 107 2 Changed status and featured. 1693 2010-05-04 10:13:30.96881-05 30 14 106 106 2 Changed status and featured. 1694 2010-05-04 10:13:56.387838-05 30 14 105 105 2 Changed status and featured. 1696 2010-05-04 10:14:41.61303-05 30 14 103 103 2 Changed status and featured. 1697 2010-05-04 10:15:06.732836-05 30 14 102 102 2 Changed status and featured. 1698 2010-05-04 10:15:39.044933-05 30 14 101 101 2 Changed status and featured. 1699 2010-05-04 10:16:36.250667-05 30 14 100 100 2 Changed status and featured. 1700 2010-05-04 10:17:04.06871-05 30 14 99 99 2 Changed status and featured. 1701 2010-05-04 10:18:09.537707-05 30 14 97 97 2 Changed status and featured. 1702 2010-05-04 10:18:28.179052-05 30 14 98 98 2 Changed status and featured. 1703 2010-05-04 10:18:56.950981-05 30 14 96 96 2 Changed status and featured. 1704 2010-05-04 10:19:18.204656-05 30 14 95 95 2 Changed status and featured. 1705 2010-05-04 10:21:15.355616-05 30 14 94 94 2 Changed status and featured. 1706 2010-05-04 10:21:55.48883-05 30 14 93 93 2 Changed status and featured. 1707 2010-05-04 10:22:18.117367-05 30 14 92 92 2 Changed status and featured. 1708 2010-05-04 10:22:41.411931-05 30 14 90 90 2 Changed status and featured. 1709 2010-05-04 10:23:24.811907-05 30 14 91 91 2 Changed status and featured. 1710 2010-05-04 10:23:49.164876-05 30 14 89 89 2 Changed status and featured. 1711 2010-05-04 10:24:11.559608-05 22 14 2 2 2 Deleted tix "2 tix 4 John Mayer with Special Guest Michael Franti & Spearhead". 1712 2010-05-04 10:24:13.333805-05 30 14 88 88 2 Changed status and featured. 1713 2010-05-04 10:24:35.796141-05 22 14 60 60 2 Deleted tix "2 tix 4 Mark Knopfler". 1714 2010-05-04 10:25:58.437363-05 22 14 3 3 2 Deleted tix "4 tix 4 Cirque du Soleil - ALEGRIA". 1715 2010-05-04 10:26:30.61323-05 22 14 52 52 2 Deleted tix "2 tix 4 Tracy Morgan". 1716 2010-05-04 10:26:48.496192-05 22 14 51 51 2 Deleted tix "2 tix 4 Tracy Morgan". 1717 2010-05-04 10:31:30.735819-05 22 14 5 5 2 Added tix "3 tix 4 Billy Elliot the Musical". 1718 2010-05-04 10:32:59.591909-05 22 14 10 10 2 Changed letter_date. Added tix "10 tix 4 Billy Elliot the Musical". 1719 2010-05-04 10:33:22.543267-05 22 14 5 5 2 Changed seating_info for tix "3 tix 4 Billy Elliot the Musical". 1720 2010-05-04 10:36:12.7013-05 22 14 87 87 2 Deleted tix "2 tix 4 Tim McGraw with Lady Antebellum". 1721 2010-05-04 10:37:59.136109-05 22 14 87 87 2 Added tix "2 tix 4 Tim McGraw with Lady Antebellum". 1722 2010-05-04 10:42:13.1582-05 22 14 87 87 2 Changed featured. 1723 2010-05-04 11:34:42.138115-05 30 14 112 112 2 Changed featured. 1724 2010-05-04 11:35:41.237118-05 30 14 70 70 2 Changed featured. 1725 2010-05-04 13:12:44.84034-05 22 13 15 Little Heroes Pediatric Cancer Research Foundation 2 Changed slug and contact_name. 1726 2010-05-04 13:37:16.676713-05 123 13 15 Little Heroes Pediatric Cancer Research Foundation 2 Changed slug and contact_name. 1727 2010-05-04 14:20:32.853654-05 22 19 68 Billy Elliot the Musical 2 No fields changed. 1728 2010-05-04 14:21:37.705352-05 22 19 68 Billy Elliot the Musical, 7/2/2010 2 Changed title. 1729 2010-05-04 14:26:14.238425-05 22 21 31 etickets/114/Billy Elliot the Musical, 7:2:2010.pdf 1 1730 2010-05-04 14:27:05.40191-05 22 19 68 Billy Elliot the Musical 2 Changed title. 1731 2010-05-04 14:28:09.39227-05 22 14 79 79 2 Changed featured, distribution_date and distrubution_notes. 1732 2010-05-04 14:46:43.631924-05 22 14 79 79 2 No fields changed. 1733 2010-05-04 14:46:51.46829-05 22 17 49 Purchase #49 by tquevillon@gmail.com 2 Payment captured successful. 1734 2010-05-04 15:02:28.959999-05 22 19 76 Shrek the Musical 1 1735 2010-05-04 15:04:24.325305-05 22 14 113 113 1 1736 2010-05-04 15:04:46.025331-05 22 14 113 113 2 Changed status. 1737 2010-05-04 15:05:26.041286-05 22 19 76 Shrek The Musical 2 Changed title. 1738 2010-05-04 15:06:49.837523-05 22 21 31 etickets/114/Billy Elliot the Musical, 7:2:2010.pdf 3 1739 2010-05-04 15:08:22.547452-05 22 21 32 etickets/116/Shrek the Musical, 7:31:2010.pdf 1 1740 2010-05-04 15:09:23.288207-05 22 14 51 51 2 Changed featured. 1741 2010-05-04 15:09:46.557081-05 22 14 82 82 2 Changed featured. 1742 2010-05-04 15:09:57.699856-05 22 14 80 80 2 Changed featured. 1743 2010-05-04 15:10:18.996847-05 22 14 85 85 2 Changed featured. 1744 2010-05-04 15:11:00.161874-05 22 14 52 52 2 Changed featured. 1745 2010-05-04 15:11:11.241831-05 22 14 87 87 2 Changed featured. 1746 2010-05-04 15:12:54.699659-05 22 14 86 86 2 Changed featured. 1747 2010-05-04 15:13:15.869327-05 22 14 71 71 2 Changed featured. 1748 2010-05-04 15:13:26.132929-05 22 14 70 70 2 Changed featured. 1749 2010-05-04 19:05:13.462999-05 6 14 71 71 2 Changed status. 1750 2010-05-05 10:15:45.647555-05 22 14 86 86 2 Changed distribution_date and distrubution_notes. 1751 2010-05-05 10:16:22.234537-05 22 17 51 Purchase #51 by larezzo@handaltd.com 2 Payment captured successful. 1752 2010-05-05 10:30:11.195196-05 22 14 78 78 2 Changed distribution_date and distrubution_notes. 1753 2010-05-05 10:30:46.275207-05 22 17 52 Purchase #52 by jjaznak@yahoo.com 2 Payment captured successful. 1754 2010-05-05 10:32:38.514819-05 22 14 68 68 2 Changed featured. 1755 2010-05-05 10:32:53.479584-05 22 14 76 76 2 Changed featured. 1756 2010-05-05 10:35:37.937685-05 22 14 75 75 2 Changed distribution_date and distrubution_notes. 1757 2010-05-05 10:41:59.565802-05 22 14 71 71 2 Changed status. 1758 2010-05-05 10:42:17.157571-05 22 14 71 71 2 Changed featured. 1759 2010-05-05 10:57:49.31038-05 22 14 71 71 2 Changed status. 1760 2010-05-05 11:03:09.740171-05 22 14 71 71 2 Changed status. 1761 2010-05-05 11:19:07.757474-05 22 14 71 71 2 Changed status. 1762 2010-05-05 11:19:29.065411-05 22 14 71 71 2 Changed status. 1763 2010-05-05 11:24:06.367216-05 22 14 10 10 2 Changed count for tix "2 tix 4 Billy Elliot the Musical". 1764 2010-05-05 11:30:18.474138-05 22 17 53 Purchase #53 by ksnodgrass@tix4cause.com 2 Changed status. 1765 2010-05-05 11:30:49.691876-05 22 14 71 71 2 Changed status. 1766 2010-05-05 11:43:16.863863-05 22 3 153 jrosenfeld 2 Changed email and groups. 1767 2010-05-05 12:35:22.212961-05 22 14 71 71 2 Changed status. 1768 2010-05-05 13:51:33.665276-05 22 14 71 71 2 Changed status. 1769 2010-05-05 13:59:55.990561-05 6 3 6 kevin 2 Changed groups. 1770 2010-05-05 16:12:48.943566-05 22 14 71 71 2 Changed status. 1771 2010-05-05 16:22:23.551675-05 22 17 54 Purchase #54 by bgeene@gmail.com 2 Payment captured successful. 1772 2010-05-05 16:22:39.719775-05 22 14 71 71 2 Changed distribution_date and distrubution_notes. 1773 2010-05-05 19:44:17.229303-05 6 19 79 Chicago Symphony 2 Changed title. 1774 2010-05-06 09:15:38.697468-05 22 13 54 Pending Approval 1 1775 2010-05-06 09:16:22.234248-05 22 13 54 Pending Approval 3 1776 2010-05-06 09:16:27.851801-05 22 14 117 117 2 Changed charity. Deleted tix "2 tix 4 Chicago Symphony". 1777 2010-05-06 09:16:42.25425-05 22 14 116 116 2 Changed charity. Deleted tix "2 tix 4 Chicago Symphony". 1778 2010-05-06 09:27:53.485958-05 22 14 78 78 2 Changed featured. 1779 2010-05-06 09:28:06.991537-05 22 14 77 77 2 Changed featured. 1780 2010-05-06 09:30:01.283445-05 22 14 76 76 2 Changed seating_info for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1781 2010-05-06 09:37:05.229612-05 22 14 118 118 3 1782 2010-05-06 09:44:05.706717-05 22 19 78 Chicago Cubs vs. Pittsburgh Pirates, 5/14/ 2 Changed title. 1783 2010-05-06 09:44:14.581641-05 22 19 78 Chicago Cubs vs. Pittsburgh Pirates, 5/14 2 Changed title. 1784 2010-05-06 09:44:37.147451-05 22 19 77 Chicago Cubs vs. Pittsburgh Pirates, 5/14 2 Changed title. 1785 2010-05-06 09:44:52.719146-05 22 14 115 115 2 Changed seating_info for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates, 5/14". 1786 2010-05-06 09:45:05.132673-05 22 14 114 114 2 Changed seating_info for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates, 5/14". 1787 2010-05-06 10:37:05.499394-05 22 3 22 ksnodgrass 2 Changed groups. 1788 2010-05-06 10:37:22.183785-05 6 3 252 elaineasher 1 1789 2010-05-06 10:38:30.26445-05 6 3 252 elaineasher 2 Changed first_name, last_name, email and groups. 1790 2010-05-06 11:19:19.723394-05 22 19 81 Billy Elliot the Musical, 8/4 1 1791 2010-05-06 11:21:53.337285-05 22 14 119 119 1 1792 2010-05-06 11:22:12.519897-05 22 19 81 Billy Elliot the Musical 2 Changed title. 1793 2010-05-06 11:23:07.089194-05 22 19 82 Chicago Cubs vs. Colorado Rockies, 5/18 1 1794 2010-05-06 11:24:31.364037-05 22 14 120 120 1 1795 2010-05-06 11:24:45.977775-05 22 19 82 Chicago Cubs vs. Colorado Rockies 2 Changed title. 1796 2010-05-06 11:26:04.670929-05 22 14 76 76 2 Changed featured. 1797 2010-05-06 12:19:57.055458-05 30 3 253 doncrosby 1 1798 2010-05-06 12:20:23.255054-05 30 3 253 doncrosby 2 Changed first_name, last_name and email. 1799 2010-05-06 12:23:03.390881-05 30 19 83 Chicago Blackhawks vs. Vancouver Canucks 1 1800 2010-05-06 12:25:44.451467-05 30 14 121 121 1 1801 2010-05-06 12:29:14.663389-05 30 14 121 121 2 Changed details for tix "2 tix 4 Chicago Blackhawks vs. Vancouver Canucks". 1802 2010-05-06 14:00:18.962118-05 30 14 121 121 2 Changed status. 1803 2010-05-06 14:52:47.204627-05 22 14 112 112 2 Changed featured. 1804 2010-05-06 14:54:13.489264-05 22 14 112 112 2 Changed featured. 1805 2010-05-07 09:55:50.743229-05 124 14 121 121 2 Changed distribution_date and distrubution_notes. 1806 2010-05-07 09:56:08.880868-05 124 17 55 Purchase #55 by prince.doug@gmail.com 2 Payment captured successful. 1807 2010-05-07 10:06:39.069437-05 22 14 111 111 2 Changed featured. 1808 2010-05-07 12:50:12.316181-05 30 14 122 122 2 Changed featured and letter_date. Changed seating_info for tix "4 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1809 2010-05-07 12:51:47.77195-05 30 14 123 123 2 Changed letter_date. Changed seating_info for tix "3 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1810 2010-05-07 12:52:33.742087-05 30 14 124 124 2 Changed featured and letter_date. Changed seating_info for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1811 2010-05-07 12:53:29.36527-05 30 14 120 120 2 Changed featured. 1812 2010-05-07 12:55:15.39181-05 30 14 68 68 2 Changed featured. 1813 2010-05-07 12:55:33.547811-05 30 14 122 122 2 Changed status. 1814 2010-05-07 12:55:51.229182-05 30 14 123 123 2 Changed status. 1815 2010-05-07 12:56:07.368479-05 30 14 124 124 2 Changed status. 1816 2010-05-07 13:15:25.342508-05 30 14 124 124 2 Changed featured. 1817 2010-05-07 13:15:48.881255-05 30 14 120 120 2 Changed featured. 1818 2010-05-07 14:45:44.960792-05 6 14 115 115 2 Changed status and letter_date. 1819 2010-05-07 14:46:35.453966-05 6 19 77 Chicago Cubs vs. Pittsburgh Pirates 2 Changed title. 1820 2010-05-07 14:47:36.2301-05 6 14 114 114 3 1821 2010-05-07 17:20:31.6013-05 30 12 219 Samaritan Interfaith Counseling Center (Naperville, IL) 1 1822 2010-05-07 17:21:07.760892-05 30 13 55 Samaritan Interfaith Counseling Center 1 1823 2010-05-10 09:20:56.883828-05 22 14 125 125 2 Changed charity. Changed seating_info for tix "4 tix 4 Cubs vs. Pirates\r\nSaturday, May 15, 2010 at 12:05 PM\r\nSection 404\r\nRow 1\r\nSeats 101, 102, 103, 104". 1824 2010-05-10 09:21:35.525972-05 22 14 126 126 2 Changed charity. Changed seating_info for tix "4 tix 4 Cubs vs. Pirates\r\nSunday, May 16, 2010\r\n1:20 pm\r\nSection 404\r\nRow 1\r\nSeats 101, 102, 103, 104". 1825 2010-05-10 09:22:25.653037-05 22 19 85 Cubs vs. Pirates, 5/15 2 Changed title. 1826 2010-05-10 09:22:48.73598-05 22 19 86 Cubs vs. Pirates, 5/16 2 Changed title. 1827 2010-05-10 09:23:09.187413-05 22 19 78 Chicago Cubs vs. Pittsburgh Pirates, 5/14 3 1828 2010-05-10 10:04:12.810342-05 30 3 257 lindakolaya 1 1829 2010-05-10 10:04:58.274863-05 30 3 257 lindakolaya 2 Changed first_name, last_name, email and groups. 1830 2010-05-10 14:05:32.204196-05 124 14 122 122 2 Changed distribution_date and distrubution_notes. 1831 2010-05-10 14:06:03.151087-05 124 17 57 Purchase #57 by jim.raaf@gmail.com 2 Payment captured successful. 1832 2010-05-10 14:38:01.423114-05 30 12 221 Naperville CARES (Naperville, IL) 1 1833 2010-05-10 14:44:06.596106-05 30 13 56 Naperville CARES 1 1834 2010-05-10 14:45:54.33755-05 30 13 56 Naperville CARES 2 No fields changed. 1835 2010-05-10 14:46:22.402918-05 30 3 260 janetderrick 1 1836 2010-05-10 14:46:47.630321-05 30 3 260 janetderrick 2 Changed first_name, last_name, email and groups. 1837 2010-05-10 15:38:21.949136-05 22 12 222 Marist High School Chicago (Chicago, IL) 1 1838 2010-05-10 15:39:53.362858-05 22 13 57 Marist High School Chicago 1 1839 2010-05-10 15:41:02.863174-05 22 14 126 126 2 Changed charity, status and letter_date. 1840 2010-05-10 15:41:26.026447-05 22 14 125 125 2 Changed charity, status and letter_date. 1841 2010-05-10 15:41:58.878721-05 22 19 85 Chicago Cubs vs. Pittsburgh Pirates 2 Changed title. 1842 2010-05-10 15:42:16.236585-05 22 19 86 Chicago Cubs vs. Pittsburgh Pirates 2 Changed title. 1843 2010-05-10 15:42:34.516597-05 22 14 120 120 2 Changed featured. 1844 2010-05-10 15:42:45.126492-05 22 14 125 125 2 Changed featured. 1845 2010-05-10 15:42:52.12575-05 22 14 126 126 2 Changed featured. 1846 2010-05-11 08:30:36.311709-05 6 19 84 Chicago Cubs vs. Pittsburgh Pirates 5/14 2 Changed title. 1847 2010-05-11 08:32:44.58656-05 6 14 115 115 2 Added tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates 5/14". 1848 2010-05-11 08:35:32.793012-05 6 14 111 111 2 Changed featured. 1849 2010-05-11 09:28:45.045285-05 124 19 65 Chicago Cubs vs. Pittsburgh Pirates June 30, 2010 2 Changed title. 1850 2010-05-11 09:29:19.022449-05 124 19 65 Chicago Cubs vs. Pittsburgh Pirates 6/30 2 Changed title. 1851 2010-05-11 10:33:29.285199-05 22 3 261 dsartoris 1 1852 2010-05-11 10:49:45.509217-05 22 3 261 dsartoris 2 Changed first_name, last_name, email and is_staff. 1853 2010-05-11 11:09:40.832856-05 22 19 84 Chicago Cubs vs. Pittsburgh Pirates 2 Changed title. 1854 2010-05-11 11:09:48.930811-05 22 19 65 Chicago Cubs vs. Pittsburgh Pirates 2 Changed title. 1855 2010-05-11 11:12:22.783128-05 22 14 115 115 2 Changed featured. 5716 2010-10-06 19:15:04.865687-05 123 14 357 357 1 1856 2010-05-11 11:13:33.38243-05 22 19 84 Chicago Cubs vs. Pittsburgh Pirates, 5/14 2 Changed title. 1857 2010-05-11 11:13:52.123734-05 22 19 84 Chicago Cubs vs. Pittsburgh Pirates 2 Changed title. 1858 2010-05-11 11:31:55.448468-05 6 12 223 Chemically Imbalanced Theater (Chicago, IL ) 1 1859 2010-05-11 11:32:04.13444-05 6 18 63 Chemically Imbalanced Theater 1 1860 2010-05-11 11:43:59.319832-05 22 12 223 Chemically Imbalanced Theater (Chicago, IL ) 2 Changed street_1. 1861 2010-05-11 11:47:35.917533-05 6 19 87 Dummy - Improv 1 1862 2010-05-11 11:49:29.826884-05 6 19 87 Dummy - Improv 2 Changed venue. 1863 2010-05-11 11:50:13.657952-05 6 19 88 Dummy - Improv 1 1864 2010-05-11 11:51:10.159903-05 6 19 89 Ring Around the Guillotine 1 1865 2010-05-11 11:51:52.591245-05 6 19 90 Ring Around the Guillotine 1 1866 2010-05-11 11:53:00.222762-05 6 19 91 Desperately Seeking 1 1867 2010-05-11 12:01:50.6143-05 6 19 92 Desperately Seeking 1 1868 2010-05-11 12:08:13.996844-05 6 19 93 Desperately Seeking 1 1869 2010-05-11 12:17:43.805017-05 6 14 127 127 1 1870 2010-05-11 12:20:06.13342-05 6 14 128 128 1 1871 2010-05-11 12:20:35.633588-05 6 14 127 127 2 Changed seating_info for tix "2 tix 4 Dummy - Improv". 1872 2010-05-11 12:22:29.284621-05 6 14 129 129 1 1873 2010-05-11 12:24:56.017229-05 6 14 130 130 1 1874 2010-05-11 12:25:28.99154-05 6 14 129 129 2 Changed details for tix "2 tix 4 Dummy - Improv". 1875 2010-05-11 12:25:44.436985-05 6 14 128 128 2 Changed details for tix "4 tix 4 Dummy - Improv". 1876 2010-05-11 12:26:23.500506-05 6 14 127 127 2 Changed details for tix "2 tix 4 Dummy - Improv". 1877 2010-05-11 12:44:18.974163-05 6 14 130 130 2 Deleted tix "4 tix 4 Ring Around the Guillotine". 1878 2010-05-11 12:46:16.999493-05 6 14 130 130 2 Added tix "4 tix 4 Ring Around the Guillotine". 1879 2010-05-11 12:47:33.028062-05 6 14 130 130 2 Changed status and letter_date. 1880 2010-05-11 12:48:35.997118-05 6 14 130 130 2 Changed format for tix "4 tix 4 Ring Around the Guillotine". 1881 2010-05-11 13:16:17.865088-05 123 17 56 Purchase #56 by JEPCO24@sbcglobal.net 2 Changed status, confirmation and comment. 1882 2010-05-11 13:41:45.240434-05 30 19 94 Chicago White Sox vs. Baltimore Orioles 1 1883 2010-05-11 13:46:30.254104-05 6 14 130 130 2 No fields changed. 1884 2010-05-11 13:47:50.09965-05 6 14 131 131 1 1885 2010-05-11 13:49:05.261203-05 6 14 131 131 2 Changed status. 1886 2010-05-11 13:49:58.356184-05 30 14 132 132 1 1887 2010-05-11 13:52:05.0054-05 6 14 133 133 1 1888 2010-05-11 13:54:08.545087-05 6 14 134 134 1 1889 2010-05-11 13:55:29.69701-05 6 14 135 135 1 1890 2010-05-11 13:56:29.818342-05 6 14 136 136 1 1891 2010-05-11 13:59:51.153739-05 6 14 137 137 1 1892 2010-05-11 14:10:33.678287-05 6 14 129 129 2 Changed status. 1893 2010-05-11 14:10:53.572765-05 6 14 136 136 2 Changed status and letter_date. 1894 2010-05-11 14:14:02.760359-05 6 14 138 138 1 1895 2010-05-11 14:14:28.428191-05 6 14 127 127 2 Changed count for tix "4 tix 4 Dummy - Improv". 1896 2010-05-11 14:14:57.286826-05 6 14 128 128 2 Changed letter_date. Changed event for tix "4 tix 4 Dummy - Improv ". 1897 2010-05-11 14:15:38.267743-05 6 14 128 128 2 Changed status. 1898 2010-05-11 14:17:29.189354-05 6 14 127 127 2 Changed status. 1899 2010-05-11 14:18:28.843291-05 6 14 138 138 2 No fields changed. 1900 2010-05-11 14:18:45.908927-05 6 14 127 127 2 No fields changed. 1901 2010-05-11 14:19:29.126223-05 6 14 129 129 2 Changed letter_date. Changed count and format for tix "4 tix 4 Dummy - Improv". 1902 2010-05-11 14:20:42.543556-05 6 14 129 129 2 Changed status. 1903 2010-05-11 14:25:45.580633-05 6 14 139 139 1 1904 2010-05-11 14:26:33.84476-05 6 14 139 139 2 No fields changed. 1905 2010-05-11 14:27:38.213201-05 6 14 139 139 2 No fields changed. 1906 2010-05-11 14:31:28.660676-05 6 14 139 139 2 No fields changed. 1907 2010-05-11 14:33:17.851893-05 6 14 140 140 1 1908 2010-05-11 15:50:55.848419-05 123 17 56 Purchase #56 by JEPCO24@sbcglobal.net 2 Payment captured successful. 1909 2010-05-11 16:18:48.553194-05 6 14 140 140 2 No fields changed. 1910 2010-05-11 16:27:19.945119-05 6 14 141 141 1 1911 2010-05-11 16:27:57.896064-05 6 14 141 141 2 Changed status. 1912 2010-05-11 16:34:48.519909-05 6 14 140 140 2 No fields changed. 1913 2010-05-11 16:35:03.746372-05 6 14 141 141 2 No fields changed. 1914 2010-05-11 16:38:08.964831-05 6 14 142 142 1 1915 2010-05-11 16:38:53.844445-05 6 14 134 134 2 No fields changed. 1916 2010-05-11 16:41:25.915017-05 6 14 143 143 1 1917 2010-05-11 16:42:29.658949-05 6 14 144 144 1 1918 2010-05-11 16:43:28.611537-05 6 14 145 145 1 1919 2010-05-11 16:44:25.105647-05 6 14 146 146 1 1920 2010-05-11 16:45:37.683756-05 6 14 146 146 2 Changed featured. 1921 2010-05-12 08:59:25.468132-05 124 14 98 98 2 Changed distribution_date and distrubution_notes. 1922 2010-05-12 08:59:44.907017-05 124 17 58 Purchase #58 by jan@koranda71.com 2 Payment captured successful. 1923 2010-05-12 10:00:05.545953-05 22 12 226 Ray Graham Association for People with Disabilities (Downers Grove, IL) 1 1924 2010-05-12 10:02:25.467482-05 22 13 58 Ray Graham Association for People with Disabilities 1 1925 2010-05-12 10:02:39.590389-05 22 13 58 Ray Graham Association for People with Disabilities 2 Changed status. 1926 2010-05-12 10:03:51.135675-05 22 3 262 mbglenn 1 1927 2010-05-12 10:04:24.092941-05 22 3 262 mbglenn 2 Changed first_name, last_name, email and groups. 1928 2010-05-12 10:56:48.317595-05 124 14 119 119 2 Changed distribution_date and distrubution_notes. 1929 2010-05-12 10:59:29.310141-05 124 17 59 Purchase #59 by lgreen526@att.net 2 Payment captured successful. 1930 2010-05-12 11:00:05.67426-05 124 17 59 Purchase #59 by lgreen526@att.net 2 Changed comment. 1931 2010-05-12 11:02:49.576328-05 124 14 112 112 2 Changed distribution_date and distrubution_notes. 1932 2010-05-12 11:46:33.03401-05 124 12 228 (New York, New York) 1 1933 2010-05-12 11:54:05.746018-05 124 13 59 Ovarian Cancer Research Fund 1 1934 2010-05-12 11:57:51.331364-05 124 13 59 Ovarian Cancer Research Fund 2 Changed website. 1935 2010-05-12 15:51:45.695318-05 22 3 265 mdorn 1 1936 2010-05-12 15:52:04.861994-05 22 3 265 mdorn 2 Changed first_name, last_name, email, is_staff and is_superuser. 1937 2010-05-12 18:27:42.402578-05 123 12 228 (New York, New York) 2 Changed street_1. 1938 2010-05-12 18:30:04.813851-05 123 12 228 Ovarian Cancer Research Fund (New York, New York) 2 Changed addressee. 1939 2010-05-12 18:30:15.861514-05 123 12 228 Ovarian Cancer Research Fund (New York, New York) 2 No fields changed. 1940 2010-05-12 18:35:36.565812-05 123 12 228 Ovarian Cancer Research Fund (New York, New York) 2 Changed street_1. 5717 2010-10-06 19:15:59.796206-05 123 14 358 358 1 1941 2010-05-13 03:58:57.751858-05 30 14 125 125 2 Changed count for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1942 2010-05-13 03:59:57.770595-05 30 14 125 125 2 Changed seating_info for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1943 2010-05-13 04:03:01.32045-05 30 14 147 147 1 1944 2010-05-13 04:03:04.34413-05 30 14 148 148 1 1945 2010-05-13 04:04:01.983894-05 30 14 148 148 3 1946 2010-05-13 09:54:40.98132-05 22 14 147 147 2 Changed letter_date. 1947 2010-05-13 09:55:33.876727-05 22 14 115 115 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1948 2010-05-13 09:55:50.129677-05 22 14 124 124 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1949 2010-05-13 09:56:22.286143-05 22 14 123 123 2 Changed price for tix "3 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1950 2010-05-13 09:57:00.87187-05 22 14 122 122 2 Changed price for tix "4 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1951 2010-05-13 09:57:57.241038-05 22 14 147 147 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1952 2010-05-13 09:58:10.479985-05 22 14 126 126 2 Changed price for tix "4 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1953 2010-05-13 09:58:26.949672-05 22 14 125 125 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1954 2010-05-13 10:30:07.340708-05 22 14 126 126 2 Changed featured. 1955 2010-05-13 10:30:16.095297-05 22 14 125 125 2 Changed featured. 1956 2010-05-13 10:30:27.167817-05 22 14 121 121 2 Changed featured. 1957 2010-05-13 10:30:44.392297-05 22 14 112 112 2 Changed featured. 1958 2010-05-13 10:32:03.329766-05 22 14 126 126 2 Changed featured. 1959 2010-05-13 11:04:32.265773-05 22 14 120 120 2 Changed featured. 1960 2010-05-13 11:05:58.115474-05 22 14 142 142 2 Changed featured. 1961 2010-05-13 11:15:51.904751-05 22 14 138 138 2 Changed featured. 1962 2010-05-13 11:33:28.502017-05 124 14 147 147 2 Changed distribution_date and distrubution_notes. 1963 2010-05-13 11:33:52.414154-05 124 17 60 Purchase #60 by NIERMEYER@GMAIL.COM 2 Payment captured successful. 1964 2010-05-13 11:34:36.159914-05 22 14 125 125 2 Changed featured. 1965 2010-05-13 11:35:10.40912-05 22 14 120 120 2 Changed featured. 1966 2010-05-13 12:26:57.02026-05 123 3 267 audramoran 1 1967 2010-05-13 12:29:25.808674-05 123 3 267 audramoran 2 Changed first_name, last_name, email and groups. 1968 2010-05-13 16:37:54.48198-05 22 19 95 Chicago Cubs vs. Houston Astros, 7/19 1 1969 2010-05-13 16:39:35.034223-05 22 14 149 149 1 1970 2010-05-13 16:41:19.729853-05 22 19 96 Chicago Cubs vs. Pittsburgh Pirates, 6/29 1 1971 2010-05-13 16:42:18.988682-05 22 14 150 150 1 1972 2010-05-13 16:44:30.169007-05 22 19 97 Chicago Cubs vs. Oakland Athletics, 6/15 1 1973 2010-05-13 16:45:09.189846-05 22 14 151 151 1 1974 2010-05-13 16:45:45.217162-05 22 14 151 151 2 Changed status. 1975 2010-05-13 16:45:56.381666-05 22 19 97 Chicago Cubs vs. Oakland Athletics 2 Changed title. 1976 2010-05-13 16:46:14.62194-05 22 19 96 Chicago Cubs vs. Pittsburgh Pirates 2 Changed title. 1977 2010-05-13 16:46:30.367123-05 22 14 150 150 2 Changed status. 1978 2010-05-13 16:46:39.729285-05 22 19 95 Chicago Cubs vs. Houston Astros 2 Changed title. 1979 2010-05-13 16:46:55.686911-05 22 14 149 149 2 Changed status. 1980 2010-05-13 16:55:26.105675-05 22 19 98 Chicago Cubs vs. Colorado Rockies, 5/17 1 1981 2010-05-13 19:54:48.601755-05 6 14 123 123 2 Changed details for tix "3 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1982 2010-05-13 19:55:49.010433-05 6 14 115 115 2 Changed details for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1983 2010-05-13 19:57:01.161519-05 6 14 124 124 2 Changed details for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1984 2010-05-14 13:06:46.220602-05 30 14 147 147 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1985 2010-05-14 13:08:56.476553-05 30 14 147 147 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1986 2010-05-14 13:09:35.435837-05 30 14 125 125 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1987 2010-05-14 13:22:44.830414-05 30 14 123 123 2 Changed price for tix "3 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1988 2010-05-14 13:27:55.039164-05 30 14 123 123 2 Changed price for tix "3 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 1989 2010-05-14 13:36:00.061456-05 30 14 115 115 2 Changed status. 1990 2010-05-14 13:37:18.598267-05 30 14 111 111 2 Changed featured. 1991 2010-05-14 14:16:55.350922-05 124 14 124 124 2 Changed distribution_date and distrubution_notes. 1992 2010-05-14 14:17:17.328016-05 124 17 61 Purchase #61 by jkoranda@tix4cause.com 2 Payment captured successful. 1993 2010-05-14 14:21:31.061145-05 124 14 125 125 2 Changed distribution_date and distrubution_notes. 1994 2010-05-14 14:21:43.44884-05 124 17 62 Purchase #62 by nicolle@nicolleaustin.com 2 Payment captured successful. 1995 2010-05-14 14:24:10.575446-05 124 14 123 123 2 Changed distribution_date and distrubution_notes. 1996 2010-05-14 14:24:39.757597-05 124 17 63 Purchase #63 by jkoranda@tix4cause.com 2 Payment captured successful. 1997 2010-05-14 15:49:50.054275-05 30 12 235 Resurrection Development Foundation (Des Plaines, IL) 1 1998 2010-05-14 15:51:56.821387-05 30 13 61 Resurrection Development Foundation 1 1999 2010-05-14 15:52:28.690036-05 30 3 272 williamheffernan 1 2000 2010-05-14 15:52:37.489293-05 30 3 272 williamheffernan 2 Changed first_name. 2001 2010-05-14 15:53:35.56502-05 30 3 272 williamheffernan 2 Changed first_name, last_name, email and groups. 2002 2010-05-15 08:44:32.352986-05 6 14 153 153 2 Changed seating_info and details for tix "4 tix 4 House of Blues Presents Summer Slaughter". 2003 2010-05-15 08:48:56.521341-05 6 14 153 153 2 Changed status, featured and letter_date. 2004 2010-05-15 18:53:03.763733-05 6 14 126 126 2 Changed details for tix "4 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 2005 2010-05-15 21:51:16.950874-05 265 13 50 Luther North High School 2 No fields changed. 2006 2010-05-15 21:51:49.899269-05 265 13 50 Luther North High School 2 Changed color_logo. 2007 2010-05-16 11:18:35.42153-05 30 14 126 126 2 Changed price for tix "4 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 2008 2010-05-16 19:38:03.077874-05 6 17 64 Purchase #64 by jkoranda@tix4cause.com 2 Payment captured successful. 2009 2010-05-16 20:28:49.271722-05 6 13 49 Hesed House 2 Changed banner. 2010 2010-05-16 20:32:03.683064-05 6 13 47 Children's Memorial Hospital 2 Changed color_logo and banner. 2011 2010-05-16 20:39:39.189933-05 6 13 28 ALS Association Greater Chicago Chapter 2 Changed banner. 2012 2010-05-16 20:46:08.549313-05 6 13 28 ALS Association Greater Chicago Chapter 2 Changed banner. 2013 2010-05-16 20:53:24.897002-05 6 13 11 Little Friends, Inc. 2 Changed color_logo and banner. 2014 2010-05-16 21:03:38.60014-05 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed color_logo. 2159 2010-05-20 10:56:19.736774-05 22 14 126 126 2 Changed featured. 2015 2010-05-16 21:04:10.911691-05 6 13 13 Aunt Martha's Youth Service Center, Inc. 2 Changed banner. 2016 2010-05-16 21:06:10.310371-05 6 13 45 Casa De Luz 2 No fields changed. 2017 2010-05-16 21:09:13.382807-05 6 13 45 Casa De Luz 2 No fields changed. 2018 2010-05-16 21:10:35.349057-05 6 13 45 Casa De Luz 2 Changed banner. 2019 2010-05-16 21:13:38.13211-05 6 13 44 National Institute for Community 2 Changed color_logo. 2020 2010-05-16 21:17:33.021754-05 6 13 39 Naperville Education Foundation 2 No fields changed. 2021 2010-05-16 21:23:17.751061-05 6 13 26 NCO Youth & Family Services 2 Changed color_logo and banner. 2022 2010-05-16 21:24:17.528259-05 6 13 26 NCO Youth & Family Services 2 Changed color_logo. 2023 2010-05-16 21:29:20.681063-05 6 13 32 Nettelhorst School 2 Changed color_logo. 2024 2010-05-16 21:35:06.420826-05 6 13 46 Israel Sports Center for the Disabled 2 Changed color_logo and banner. 2025 2010-05-16 21:39:11.824779-05 6 13 37 Arranmore Center for the Arts 2 Changed banner. 2026 2010-05-16 21:42:06.849137-05 6 13 21 CARA Program 2 Changed description and banner. 2027 2010-05-16 21:51:22.183504-05 6 13 2 Heritage YMCA Group 2 Changed banner. 2028 2010-05-16 21:53:24.926118-05 6 13 2 Heritage YMCA Group 2 Changed color_logo. 2029 2010-05-17 08:06:32.597775-05 30 13 53 A.D.O.P.T. Pet Shelter 2 No fields changed. 2030 2010-05-17 08:07:37.628206-05 30 13 53 A.D.O.P.T. Pet Shelter 2 Changed color_logo. 2031 2010-05-17 08:09:19.627023-05 30 13 37 Arranmore Center for the Arts 2 No fields changed. 2032 2010-05-17 08:13:06.947012-05 30 13 40 DuPage Children's Museum 2 No fields changed. 2033 2010-05-17 08:14:28.85297-05 30 13 30 Hinsdale Central High School Foundation 2 No fields changed. 2034 2010-05-17 08:20:01.181411-05 30 13 56 Naperville CARES 2 Changed color_logo and banner. 2035 2010-05-17 08:22:23.219444-05 30 13 29 Next Level Foundation 2 Changed description. 2036 2010-05-17 08:24:04.509986-05 6 13 14 Naperville Area Humane Society 2 No fields changed. 2037 2010-05-17 08:24:35.080138-05 30 13 24 Our Children's Homestead 2 Changed description and banner. 2038 2010-05-17 08:27:52.814102-05 30 13 19 Rob Koranda Scholarship Foundation 2 Changed description and color_logo. 2039 2010-05-17 08:31:12.49077-05 6 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed color_logo and banner. 2040 2010-05-17 08:31:58.119442-05 30 13 52 Turning Pointe Autism Foundation 2 Changed color_logo. 2041 2010-05-17 08:32:34.266506-05 6 13 12 MidAmerica Service Dogs' Foundation, Inc. 2 Changed mono_logo and banner. 2042 2010-05-17 08:34:44.26156-05 30 13 23 San Miguel Schools Chicago 2 Changed color_logo. 2043 2010-05-17 08:35:03.895334-05 6 13 2 Heritage YMCA Group 2 Changed color_logo. 2044 2010-05-17 08:41:54.68197-05 6 13 9 J. Kyle Braid Foundation 2 Changed description, contact_name and fein. 2045 2010-05-17 08:43:47.32147-05 6 13 9 J. Kyle Braid Foundation 2 Changed color_logo. 2046 2010-05-17 08:59:51.371598-05 6 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed color_logo. 2047 2010-05-17 09:04:44.370645-05 6 13 7 Rotary Club of Naperville Sunrise 2 Changed banner. 2048 2010-05-17 09:12:52.472902-05 30 13 31 Naperville Responds For Our Veterans 2 Changed title, slug and description. 2049 2010-05-17 09:13:46.985924-05 30 12 139 Naperville Responds For Our Veterans (Naperville, IL) 2 Changed addressee. 2050 2010-05-17 09:47:20.329381-05 30 13 55 Samaritan Interfaith Counseling Center 2 No fields changed. 2051 2010-05-17 09:49:14.053406-05 30 14 120 120 2 Changed featured. 2052 2010-05-17 09:49:46.338863-05 30 14 68 68 2 Changed featured. 2053 2010-05-17 09:57:42.479123-05 30 14 120 120 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Colorado Rockies". 2054 2010-05-17 09:59:15.046561-05 22 14 154 154 1 2055 2010-05-17 09:59:52.850668-05 22 19 98 Chicago Cubs vs. Colorado Rockies 2 Changed title. 2056 2010-05-17 10:22:57.737837-05 22 14 154 154 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Colorado Rockies". 2057 2010-05-17 10:49:22.264663-05 22 12 236 Boy Scouts of America Rainbow Council (Morris, IL) 1 2058 2010-05-17 11:01:05.318071-05 22 13 62 Boy Scouts of America Rainbow Council 1 2059 2010-05-17 11:03:11.233842-05 22 13 62 Boy Scouts of America Rainbow Council 2 No fields changed. 2060 2010-05-17 11:04:19.670617-05 22 13 62 Boy Scouts of America Rainbow Council 2 No fields changed. 2061 2010-05-17 11:07:42.726286-05 22 3 274 smiller 1 2062 2010-05-17 11:08:01.787439-05 22 3 274 smiller 2 Changed first_name, last_name, email and groups. 2063 2010-05-17 11:24:42.485701-05 22 13 58 Ray Graham Association for People with Disabilities 2 Changed color_logo and banner. 2064 2010-05-17 11:27:45.231084-05 22 14 152 152 2 Changed details for tix "4 tix 4 Texas Rangers at Chicago White Sox". 2065 2010-05-17 11:46:11.265864-05 22 13 15 Little Heroes Pediatric Cancer Research Foundation 2 Changed color_logo and banner. 2066 2010-05-17 11:58:11.086727-05 6 19 89 Ring Around the Guillotine 5/16 2 Changed title. 2067 2010-05-17 11:58:34.340056-05 6 19 91 Desperately Seeking 5/16 2 Changed title. 2068 2010-05-17 11:59:54.93067-05 6 14 146 146 2 Changed status and featured. 2069 2010-05-17 12:00:16.60695-05 6 14 145 145 2 Changed status. 2070 2010-05-17 12:00:39.909208-05 6 14 133 133 2 Changed status. 2071 2010-05-17 12:00:55.176044-05 6 14 131 131 2 Changed status. 2072 2010-05-17 12:01:51.722569-05 6 14 139 139 2 Changed status. 2073 2010-05-17 12:24:18.177141-05 6 13 8 Imerman Angels 2 Changed color_logo. 2074 2010-05-17 12:25:46.752961-05 6 13 1 Ss. Peter & Paul Catholic School Naperville 2 Changed color_logo. 2075 2010-05-17 12:28:11.655597-05 6 13 7 Rotary Club of Naperville Sunrise 2 Changed color_logo. 2076 2010-05-17 12:37:08.405808-05 6 13 16 The University of Chicago Cancer Research Foundation 2 Changed banner. 2077 2010-05-17 12:43:34.968664-05 6 13 22 Ronald McDonald House Charities of Chicagoland and Northwest Indiana 2 Changed color_logo. 2078 2010-05-17 12:44:05.040002-05 6 13 20 St. Francis High School 2 Changed color_logo. 2079 2010-05-17 12:45:45.920583-05 6 13 5 Winning Workplaces 2 Changed description, contact_name, fein and color_logo. 2080 2010-05-17 12:46:19.835365-05 6 13 4 Special Olympics Illinois 2 Changed color_logo. 2081 2010-05-17 12:48:03.592409-05 6 13 10 Serra Club 2 Changed color_logo. 2082 2010-05-17 12:49:36.722165-05 6 13 3 North Central College 2 Changed description, contact_name, fein and color_logo. 2083 2010-05-17 13:02:37.927797-05 22 3 275 mallen 1 2084 2010-05-17 13:04:11.296428-05 22 3 275 mallen 2 Changed first_name, last_name, email and is_staff. 2085 2010-05-17 13:29:41.231147-05 22 12 237 Advocate Healthcare Charitable Foundation (Park Ridge, IL) 1 2086 2010-05-17 13:33:04.244206-05 22 13 63 Advocate Healthcare Charitable Foundation 1 2087 2010-05-17 13:33:26.488288-05 22 13 63 Advocate Healthcare Charitable Foundation 2 No fields changed. 2088 2010-05-17 13:33:39.627173-05 22 13 63 Advocate Healthcare Charitable Foundation 2 Changed status, charity and has_detail. 2089 2010-05-17 13:33:49.751354-05 22 13 63 Advocate Healthcare Charitable Foundation 2 Changed status. 2090 2010-05-17 13:34:12.164072-05 22 13 63 Advocate Healthcare Charitable Foundation 2 Changed status. 2091 2010-05-17 13:36:34.24101-05 22 13 63 Advocate Healthcare Charitable Foundation 2 No fields changed. 2092 2010-05-17 13:36:48.506372-05 22 13 63 Advocate Healthcare Charitable Foundation 2 Changed status. 2093 2010-05-17 13:37:28.090123-05 22 13 63 Advocate Healthcare Charitable Foundation 2 Changed status and color_logo. 2094 2010-05-17 13:38:36.904041-05 22 13 63 Advocate Healthcare Charitable Foundation 2 Changed charity, has_detail and color_logo. 2095 2010-05-17 13:39:12.06538-05 22 13 63 Advocate Charitable Foundation 2 Changed title and slug. 2096 2010-05-17 15:02:06.765494-05 22 14 154 154 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Colorado Rockies". 2097 2010-05-17 16:31:51.304847-05 6 13 21 CARA Program 2 Changed description and color_logo. 2098 2010-05-17 16:41:01.577211-05 6 13 57 Marist High School Chicago 2 Changed color_logo and banner. 2099 2010-05-17 17:09:29.35467-05 22 13 8 Imerman Angels 2 Changed color_logo and banner. 2100 2010-05-17 17:12:05.024859-05 22 13 57 Marist High School Chicago 2 Changed banner. 2101 2010-05-17 17:30:13.840494-05 6 13 57 Marist High School Chicago 2 Changed banner. 2102 2010-05-17 17:31:06.651082-05 6 13 57 Marist High School Chicago 2 Changed banner. 2103 2010-05-17 21:52:13.610146-05 6 14 154 154 2 Changed status and featured. 2104 2010-05-18 09:28:44.905244-05 22 13 63 Advocate Charitable Foundation 2 Changed status, charity, has_detail and description. 2105 2010-05-18 09:29:31.391159-05 22 13 63 Advocate Charitable Foundation 2 Changed status, charity and has_detail. 2106 2010-05-18 09:55:48.017694-05 22 13 63 Advocate Charitable Foundation 2 Changed status, charity and has_detail. 2107 2010-05-18 11:25:50.590806-05 123 13 59 Ovarian Cancer Research Fund 2 Changed color_logo. 2108 2010-05-18 11:26:50.996751-05 123 13 59 Ovarian Cancer Research Fund 2 No fields changed. 2109 2010-05-18 11:30:00.543019-05 30 13 61 Resurrection Development Foundation 2 Changed status, teaser and description. 2110 2010-05-18 11:31:49.237442-05 30 13 61 Resurrection Development Foundation 2 Changed color_logo. 2111 2010-05-18 11:34:28.685617-05 123 13 2 Heritage YMCA Group 2 Changed description. 2112 2010-05-18 11:36:55.140383-05 123 13 2 Heritage YMCA Group 2 Changed description. 2113 2010-05-18 11:38:08.628451-05 30 13 61 Resurrection Development Foundation 2 Changed banner. 2114 2010-05-18 11:42:21.295425-05 123 13 59 Ovarian Cancer Research Fund 2 No fields changed. 2115 2010-05-18 13:49:13.461817-05 6 19 82 Chicago Cubs vs. Colorado Rockies 2 No fields changed. 2116 2010-05-18 14:51:01.25062-05 22 14 155 155 2 Changed seating_info and details for tix "5 tix 4 Milwaukee Brewers vs. New York Mets at Miller Park". 2117 2010-05-18 15:25:54.294515-05 22 13 63 Advocate Charitable Foundation 2 Changed status, charity and has_detail. 2118 2010-05-18 15:37:46.148338-05 22 13 4 Special Olympics Illinois 2 Changed banner. 2119 2010-05-18 17:54:30.900499-05 6 14 120 120 2 Changed details for tix "2 tix 4 Chicago Cubs vs. Colorado Rockies". 2120 2010-05-18 21:05:52.155219-05 6 14 120 120 2 Changed status and featured. 2121 2010-05-19 09:56:41.673301-05 6 14 120 120 2 Deleted tix "2 tix 4 Chicago Cubs vs. Colorado Rockies". 2122 2010-05-19 10:15:32.940467-05 22 12 238 Soldier Field (Chicago, IL) 1 2123 2010-05-19 10:18:13.359285-05 22 18 80 Soldier Field 1 2124 2010-05-19 10:18:25.408196-05 124 14 152 152 2 Changed details for tix "4 tix 4 Texas Rangers at Chicago White Sox". 2125 2010-05-19 10:36:21.297638-05 124 14 156 156 2 Changed status, featured and letter_date. Changed seating_info and details for tix "2 tix 4 BON JOVI with Kid Rock". 2126 2010-05-19 11:24:17.384583-05 124 17 65 Purchase #65 by dan@nwtschicago.com 2 Payment captured successful. 2127 2010-05-19 11:29:27.597149-05 124 17 65 Purchase #65 by dan@nwtschicago.com 2 Changed comment. 2128 2010-05-19 11:31:19.570343-05 124 14 68 68 2 Changed distribution_date and distrubution_notes. 2129 2010-05-19 11:47:47.933009-05 22 13 43 University of St. Francis Joliet 2 Changed title, slug, email, has_detail and contact_name. 2130 2010-05-19 11:50:53.99069-05 22 3 278 adurish 1 2131 2010-05-19 11:51:18.619307-05 22 3 278 adurish 2 Changed first_name, last_name and email. 2132 2010-05-19 12:36:03.843351-05 6 14 156 156 2 Changed status. 2133 2010-05-19 12:39:19.055934-05 6 14 156 156 2 Changed status. 2134 2010-05-19 12:42:18.222826-05 6 14 156 156 2 Changed status. 2135 2010-05-19 13:01:23.441088-05 124 14 126 126 2 Changed distribution_date and distrubution_notes. 2136 2010-05-19 13:19:22.820628-05 6 14 156 156 2 Changed status. 2137 2010-05-19 13:26:04.632679-05 22 13 43 University of St. Francis Joliet 2 Changed charity, fein, color_logo and banner. 2138 2010-05-19 13:26:18.29464-05 22 13 43 University of St. Francis Joliet 2 Changed status. 2139 2010-05-19 13:28:48.946631-05 6 14 156 156 2 Changed status. 2140 2010-05-19 14:11:43.640658-05 22 3 279 wbesette 1 2141 2010-05-19 14:12:35.548973-05 22 3 279 wbesette 2 Changed first_name, last_name and email. 2142 2010-05-19 14:20:45.896455-05 22 14 157 157 2 Changed seating_info and details for tix "4 tix 4 Chicago White Sox vs. Los Angeles Angels of Anaheim". 2143 2010-05-19 14:21:16.628826-05 22 19 103 Chicago White Sox vs. Los Angeles Angels of Anaheim 2 Changed date. 2144 2010-05-19 14:22:47.448149-05 22 3 279 wbessette 2 Changed username and email. 2145 2010-05-19 14:23:58.666498-05 22 14 157 157 2 Changed status, featured and letter_date. 2146 2010-05-19 14:25:09.877624-05 22 14 157 157 2 Changed status. 2147 2010-05-19 14:26:49.289864-05 22 14 157 157 2 Changed status. 2148 2010-05-19 14:37:31.486968-05 22 14 158 158 2 Changed status and letter_date. Changed seating_info for tix "4 tix 4 Chicago White Sox vs. Kansas City Royals". 2149 2010-05-19 14:38:13.006467-05 22 14 157 157 2 Changed featured, distribution_date and distrubution_notes. 2150 2010-05-19 14:38:18.48158-05 22 17 66 Purchase #66 by wayne@waynebessette.com 2 Payment captured successful. 2151 2010-05-19 16:09:52.546058-05 6 13 55 Samaritan Interfaith Counseling Center 2 Changed color_logo. 2152 2010-05-19 16:10:44.080875-05 6 13 55 Samaritan Interfaith Counseling Center 2 No fields changed. 2153 2010-05-20 10:45:32.695804-05 22 14 160 160 2 Changed status, featured and letter_date. Changed seating_info for tix "4 tix 4 Chicago White Sox vs. Florida Marlins". 2154 2010-05-20 10:46:06.910911-05 22 19 106 Chicago White Sox vs. Florida Marlins 2 Changed date. 2155 2010-05-20 10:54:11.841349-05 22 14 151 151 2 Changed featured. 2156 2010-05-20 10:54:41.285258-05 22 14 156 156 2 Changed featured. 2157 2010-05-20 10:55:22.067664-05 22 14 122 122 2 Changed featured. 2158 2010-05-20 10:55:44.056007-05 22 14 125 125 2 Changed featured. 2160 2010-05-20 10:56:36.079354-05 22 14 115 115 2 Changed featured. 2161 2010-05-20 10:56:48.242265-05 22 14 68 68 2 Changed featured. 2162 2010-05-20 10:58:01.861418-05 22 14 111 111 2 Changed featured. 2163 2010-05-20 10:59:13.225332-05 22 19 90 Ring Around the Guillotine 5/23 2 Changed title. 2164 2010-05-20 10:59:32.042798-05 22 19 92 Desperately Seeking 5/23 2 Changed title. 2165 2010-05-20 11:00:59.375036-05 22 14 144 144 2 Changed featured. 2166 2010-05-20 11:01:20.077507-05 22 19 88 Dummy - Improv 5/26 2 Changed title. 2167 2010-05-20 11:02:39.066216-05 22 19 91 Desperately Seeking 2 Changed title. 2168 2010-05-20 11:02:50.316146-05 22 19 92 Desperately Seeking 2 Changed title. 2169 2010-05-20 11:02:59.870188-05 22 19 88 Dummy - Improv 2 Changed title. 2170 2010-05-20 11:03:10.293761-05 22 19 89 Ring Around the Guillotine 2 Changed title. 2171 2010-05-20 11:03:21.397679-05 22 19 90 Ring Around the Guillotine 2 Changed title. 2172 2010-05-20 11:04:43.004554-05 22 14 156 156 2 Changed featured. 2173 2010-05-20 11:06:27.722003-05 22 19 105 Chicago White Sox vs. Minnesota Twins 2 Changed title. 2174 2010-05-20 11:07:04.46039-05 22 19 101 Milwaukee Brewers vs. New York Mets 2 Changed title. 2175 2010-05-20 11:07:32.045066-05 22 19 99 Chicago White Sox vs. Texas Rangers 2 Changed title. 2176 2010-05-20 11:19:49.478442-05 22 12 243 Marklund Children's Home (Geneva, IL) 1 2177 2010-05-20 11:21:14.773517-05 22 13 64 Marklund Children's Home 1 2178 2010-05-20 11:22:49.503628-05 22 3 282 sarmbruster 1 2179 2010-05-20 11:23:18.764893-05 22 3 282 sarmbruster 2 Changed first_name, last_name, email and groups. 2180 2010-05-20 11:24:21.055343-05 22 3 278 adurish 2 Changed groups. 2181 2010-05-20 15:02:35.227484-05 124 14 155 155 2 Changed status and letter_date. 2182 2010-05-20 15:02:49.522919-05 22 12 244 Busch Stadium (St. Louis, MO) 1 2183 2010-05-20 15:02:57.706553-05 22 18 82 Busch Stadium 1 2184 2010-05-20 15:07:58.864698-05 22 14 155 155 2 Changed featured. 2185 2010-05-20 15:23:54.610143-05 22 13 64 Marklund Children's Home 2 Changed fein. 2186 2010-05-20 15:37:18.42087-05 22 13 64 Marklund Children's Home 2 Changed teaser and description. 2187 2010-05-20 15:53:45.259748-05 22 13 64 Marklund Children's Home 2 Changed status, color_logo and banner. 2188 2010-05-20 15:53:56.863702-05 22 13 64 Marklund Children's Home 2 Changed charity and has_detail. 2189 2010-05-21 09:03:11.809713-05 30 14 138 138 2 Changed status. 2190 2010-05-21 09:03:29.325635-05 30 14 137 137 2 Changed status. 2191 2010-05-21 09:04:04.531485-05 30 14 137 137 2 Changed status. 2192 2010-05-21 09:04:47.977133-05 30 14 127 127 2 Changed status. 2193 2010-05-21 09:05:13.131214-05 30 14 128 128 2 Changed status. 2194 2010-05-21 09:05:30.586375-05 30 14 127 127 2 Changed status. 2195 2010-05-21 09:06:14.910652-05 30 14 127 127 2 Changed status. 2196 2010-05-21 09:06:45.715388-05 30 14 127 127 2 Changed status. 2197 2010-05-21 09:07:51.678361-05 6 12 246 St. Patrick's Residence (Naperville, IL) 1 2198 2010-05-21 09:08:41.754122-05 30 14 137 137 2 Changed status. 2199 2010-05-21 09:14:26.997452-05 6 13 66 St. Patrick's Residence 1 2200 2010-05-21 09:17:53.080916-05 6 13 66 St. Patrick's Residence 2 Changed color_logo and banner. 2201 2010-05-21 09:19:19.018834-05 6 13 66 St. Patrick's Residence 2 Changed banner. 2202 2010-05-21 09:20:03.111567-05 6 13 66 St. Patrick's Residence 2 No fields changed. 2203 2010-05-21 09:22:06.880574-05 6 13 66 St. Patrick's Residence 2 Changed banner. 2204 2010-05-21 09:23:37.325387-05 6 13 66 St. Patrick's Residence 2 Changed banner. 2205 2010-05-21 09:27:30.486491-05 6 13 66 St. Patrick's Residence 2 Changed banner. 2206 2010-05-21 09:35:52.062467-05 30 14 160 160 2 Changed price for tix "4 tix 4 Chicago White Sox vs. Florida Marlins". 2207 2010-05-21 09:43:35.919769-05 6 13 66 St. Patrick's Residence 2 Changed website. 2208 2010-05-21 10:12:12.248004-05 6 3 285 madelenebernar 1 2209 2010-05-21 10:12:56.023303-05 6 3 285 madelenebernar 2 Changed first_name, last_name, email and groups. 2210 2010-05-21 11:28:24.134355-05 6 12 247 Toyota Park (Bridgeview, IL) 1 2211 2010-05-21 11:28:29.918229-05 6 18 84 Toyota Park 1 2212 2010-05-21 11:28:59.301987-05 6 18 16 Chicago 3 2213 2010-05-21 14:14:04.158854-05 6 12 248 Chicago Fire Juniors (Naperville, IL) 1 2214 2010-05-21 14:16:50.906773-05 6 13 67 Chicago Fire Junior 1 2215 2010-05-21 14:18:37.138573-05 6 13 67 Chicago Fire Juniors 2 Changed title, slug, color_logo and banner. 2216 2010-05-21 14:19:22.259012-05 6 13 67 Chicago Fire Juniors 2 Changed description. 2217 2010-05-22 08:09:31.056706-05 6 14 160 160 2 Changed status and featured. 2218 2010-05-22 08:50:15.327102-05 22 14 158 158 2 Changed featured. 2219 2010-05-22 08:50:28.223385-05 22 14 150 150 2 Changed featured. 2220 2010-05-22 08:50:40.480542-05 22 14 149 149 2 Changed featured. 2221 2010-05-22 08:50:53.702271-05 22 14 132 132 2 Changed featured. 2222 2010-05-22 08:54:01.415076-05 22 14 111 111 2 Changed featured. 2223 2010-05-22 08:54:17.011549-05 22 14 76 76 2 Changed featured. 2224 2010-05-22 09:00:17.888852-05 22 12 249 Keep Going for Mark (Lemont, IL) 1 2225 2010-05-22 09:07:26.246025-05 22 13 68 Keep Going for Mark 1 2226 2010-05-22 09:12:51.240641-05 22 13 68 Keep Going for Mark 2 Changed color_logo and banner. 2227 2010-05-22 09:13:25.333372-05 22 13 68 Keep Going for Mark 2 Changed status, charity and has_detail. 2228 2010-05-22 09:14:04.921942-05 22 13 68 Keep Going for Mark 2 Changed status, charity and has_detail. 2229 2010-05-23 21:55:50.461056-05 6 19 92 Desperately Seeking 5/23 2 Changed title. 2230 2010-05-23 21:56:16.583944-05 6 19 90 Ring Around the Guillotine 5/23 2 Changed title. 2231 2010-05-23 21:58:02.847531-05 6 14 144 144 2 Changed status and featured. 2232 2010-05-24 09:56:39.861705-05 22 3 288 kkautza 1 2233 2010-05-24 09:57:01.912949-05 22 3 288 kkautza 2 Changed first_name, last_name and email. 2234 2010-05-24 15:18:46.737006-05 22 13 16 The University of Chicago Cancer Research Foundation 2 Changed color_logo. 2235 2010-05-24 15:20:29.110654-05 22 13 16 The University of Chicago Cancer Research Foundation 2 No fields changed. 2236 2010-05-24 15:31:30.984339-05 22 3 289 nboden 1 2237 2010-05-24 15:32:04.783789-05 22 3 289 nboden 2 Changed first_name, last_name, email and groups. 2238 2010-05-25 09:39:01.493048-05 30 13 61 Resurrection Development Foundation 2 Changed banner. 2239 2010-05-25 09:51:35.786667-05 22 12 250 Peace House Africa (Eden Prairie, MN) 1 2240 2010-05-25 09:54:31.151118-05 22 13 69 Peace House Africa 1 2241 2010-05-25 09:55:31.285499-05 22 13 69 Peace House Africa 2 Changed description. 2242 2010-05-25 09:56:18.613332-05 22 13 69 Peace House Africa 2 No fields changed. 2243 2010-05-25 09:56:50.085181-05 22 13 37 Arranmore Center for the Arts 2 Changed description. 2244 2010-05-25 09:57:05.514826-05 22 13 69 Peace House Africa 2 Changed description. 2245 2010-05-25 09:57:41.975796-05 22 3 290 tmaki 1 2246 2010-05-25 09:57:57.081549-05 22 3 290 tmaki 2 Changed first_name, last_name, email and groups. 2247 2010-05-25 10:05:26.118467-05 22 13 69 Peace House Africa 2 Changed description. 2248 2010-05-25 10:36:22.311972-05 22 13 16 The University of Chicago Cancer Research Foundation 2 No fields changed. 2249 2010-05-25 10:40:09.322404-05 22 13 16 The University of Chicago Cancer Research Foundation 2 No fields changed. 2250 2010-05-25 10:41:15.526069-05 30 13 55 Samaritan Interfaith Counseling Center 2 Changed color_logo and banner. 2251 2010-05-25 10:42:54.176784-05 22 13 16 The University of Chicago Cancer Research Foundation 2 No fields changed. 2252 2010-05-25 10:46:19.199565-05 123 14 159 159 2 Changed seating_info and details for tix "4 tix 4 Chicago White Sox vs. Minnesota Twins". 2253 2010-05-25 10:53:41.255831-05 22 13 16 The University of Chicago Cancer Research Foundation 2 Changed banner. 2254 2010-05-25 10:55:03.878515-05 22 13 16 The University of Chicago Cancer Research Foundation 2 Changed banner. 2255 2010-05-25 11:06:29.064919-05 22 13 16 The University of Chicago Cancer Research Foundation 2 Changed color_logo. 2256 2010-05-25 11:36:39.151343-05 123 14 152 152 2 Changed charity, status and letter_date. 2257 2010-05-25 11:40:03.44753-05 123 14 152 152 2 Changed seating_info for tix "4 tix 4 Chicago White Sox vs. Texas Rangers". 2258 2010-05-25 11:55:45.703364-05 30 13 3 North Central College 2 Changed contact_name and fein. 2259 2010-05-25 11:57:01.985611-05 30 3 37 bonniebeetz 2 Changed username. 2260 2010-05-25 12:28:24.344987-05 123 13 59 Ovarian Cancer Research Fund 2 Changed banner. 2261 2010-05-25 12:28:56.17967-05 22 13 16 The University of Chicago Cancer Research Foundation 2 Changed color_logo. 2262 2010-05-25 13:07:40.806575-05 22 14 152 152 2 Changed featured. Changed seating_info for tix "4 tix 4 Chicago White Sox vs. Texas Rangers". 2263 2010-05-25 15:57:56.948573-05 22 13 43 University of St. Francis Joliet 2 No fields changed. 2264 2010-05-25 17:02:35.089485-05 30 12 252 Kaleidoscope, Inc. (Chicago, IL) 1 2265 2010-05-25 17:04:23.147026-05 30 13 70 Kaleidoscope, Inc. 1 2266 2010-05-25 17:06:05.996253-05 30 13 70 Kaleidoscope, Inc. 2 Changed color_logo and banner. 2267 2010-05-25 17:37:30.693487-05 30 3 293 craigmorris 1 2268 2010-05-25 17:38:00.465907-05 30 3 293 craigmorris 2 Changed first_name, last_name, email and groups. 2269 2010-05-26 08:08:07.062812-05 6 14 142 142 2 Changed status. 2270 2010-05-26 08:08:22.69377-05 6 14 142 142 2 Changed featured. 2271 2010-05-26 08:08:43.208752-05 6 14 144 144 2 No fields changed. 2272 2010-05-26 08:09:05.983722-05 6 14 141 141 2 Changed status. 2273 2010-05-26 08:09:25.063737-05 6 14 140 140 2 Changed status. 2274 2010-05-26 08:10:10.356533-05 6 14 144 144 2 No fields changed. 2275 2010-05-26 08:10:27.229344-05 6 14 143 143 2 Changed status. 2276 2010-05-26 08:10:42.998959-05 6 14 140 140 2 No fields changed. 2277 2010-05-26 08:10:56.46487-05 6 14 141 141 2 No fields changed. 2278 2010-05-26 08:11:07.717514-05 6 14 142 142 2 No fields changed. 2279 2010-05-26 08:12:11.700627-05 6 14 130 130 2 Changed status. 2280 2010-05-26 09:52:14.969128-05 30 13 61 Resurrection Health Care 2 Changed title. 2281 2010-05-26 09:54:21.649362-05 30 13 61 Resurrection Health Care 2 No fields changed. 2282 2010-05-26 10:30:28.015499-05 22 3 275 mallen 2 Changed is_superuser. 2283 2010-05-26 10:30:41.116939-05 22 3 288 kkautza 2 Changed is_staff and is_superuser. 2284 2010-05-26 10:37:13.622844-05 30 13 19 Rob Koranda Scholarship Foundation 2 Changed fein. 2285 2010-05-26 10:38:12.477527-05 30 13 19 Rob Koranda Scholarship Foundation 2 Changed website. 2286 2010-05-26 14:15:06.300238-05 124 14 149 149 2 Changed distribution_date and distrubution_notes. 2287 2010-05-26 14:15:59.992636-05 124 17 67 Purchase #67 by lidiadevonshire@aol.com 2 Payment captured successful. 2288 2010-05-26 14:41:47.501916-05 288 12 253 Fenway Park (Boston, MA) 1 2289 2010-05-26 14:42:19.706669-05 288 18 85 Fenway Park 1 2290 2010-05-26 14:52:17.058502-05 288 12 254 Gillette Stadium (Foxborough, MA) 1 2291 2010-05-26 14:52:28.124096-05 288 18 86 Gillette Stadium 1 2292 2010-05-26 14:56:56.44633-05 288 12 255 TD Garden (Boston, MA) 1 2293 2010-05-26 14:58:47.427013-05 288 18 87 TD Garden 1 2294 2010-05-26 15:01:23.101485-05 288 12 256 Harvard Stadium (Boston, MA) 1 2295 2010-05-26 15:01:28.961178-05 288 18 88 Harvard Stadium 1 2296 2010-05-26 15:10:25.879305-05 288 12 257 Comcast Center (Mansfield, MA) 1 2297 2010-05-26 15:10:36.081045-05 288 18 89 Comcast Center 1 2298 2010-05-26 15:13:26.472435-05 288 12 258 XL Center (Hartford, Connecticut) 1 2299 2010-05-26 15:13:30.15905-05 288 18 90 XL Center 1 2300 2010-05-26 15:21:04.945526-05 288 12 259 Lowell Memorial Auditorium (Lowell, MA) 1 2301 2010-05-26 15:21:12.795333-05 288 18 91 Lowell Memorial Auditorium 1 2302 2010-05-26 15:43:11.306556-05 30 13 55 Samaritan Interfaith Counseling Center 2 Changed banner. 2303 2010-05-26 20:59:21.149435-05 6 3 295 chrishultquist 1 2304 2010-05-26 21:00:52.717697-05 6 3 295 chrishultquist 2 Changed first_name, last_name, email and groups. 2305 2010-05-26 21:10:45.953562-05 6 19 107 The 39 Steps 1 2306 2010-05-26 21:15:30.228163-05 6 14 161 161 1 2307 2010-05-26 21:19:13.183985-05 6 14 161 161 2 Changed details for tix "2 tix 4 The 39 Steps". 2308 2010-05-27 09:16:52.905234-05 30 18 4 Bank of America Theater 2 Changed title. 2309 2010-05-27 09:37:24.819057-05 275 12 260 Yankee Stadium (Bronx, New York) 1 2310 2010-05-27 09:37:28.319438-05 275 18 92 Yankee Stadium 1 2311 2010-05-27 09:41:11.250164-05 275 12 261 Madison Square Garden (New York, New York) 1 2312 2010-05-27 09:41:23.733114-05 275 18 93 Madison Square Garden 1 2313 2010-05-27 09:48:22.349599-05 275 12 262 Arthur Ashe Stadium (Flushing, New York) 1 2314 2010-05-27 09:48:32.777888-05 275 18 94 Arthur Ashe Stadium 1 2315 2010-05-27 09:49:58.252628-05 275 12 263 Citi Field (Flushing, New York) 1 2316 2010-05-27 09:51:59.718713-05 275 18 95 Citi Field 1 2317 2010-05-27 09:52:53.025892-05 275 12 264 Louis Armstrong Stadium (Flushing, New York) 1 2318 2010-05-27 09:52:55.266268-05 275 18 96 Louis Armstrong Stadium 1 2319 2010-05-27 09:54:06.265075-05 275 12 265 USTA Billie Jean King National Tennis Center (Flushing, New York) 1 2320 2010-05-27 09:54:13.637354-05 275 18 97 USTA Billie Jean King National Tennis Center 1 2321 2010-05-27 09:57:08.082166-05 275 12 266 New Meadowlands Stadium (East Rutherford, New Jersey) 1 2322 2010-05-27 09:57:16.353001-05 275 18 98 New Meadowlands Stadium 1 2323 2010-05-27 09:58:08.056063-05 275 12 267 Prudential Center (Newark, New Jersey) 1 2324 2010-05-27 09:58:13.41249-05 275 18 99 Prudential Center 1 2325 2010-05-27 09:59:09.969631-05 275 12 268 Red Bull Arena (Harrison, New Jersey) 1 2326 2010-05-27 09:59:12.2049-05 275 18 100 Red Bull Arena 1 2327 2010-05-27 10:00:02.932835-05 275 12 269 Rutgers Stadium (Piscataway, New Jersey) 1 2328 2010-05-27 10:00:05.728307-05 275 18 101 Rutgers Stadium 1 2329 2010-05-27 10:01:13.439323-05 275 12 270 Nassau Veterans Memorial Coliseum (Uniondale, New York) 1 2330 2010-05-27 10:01:15.256716-05 275 18 102 Nassau Veterans Memorial Coliseum 1 2331 2010-05-27 10:02:53.700332-05 275 12 271 Ralph Wilson Stadium (Orchard Park, New York) 1 2332 2010-05-27 10:02:55.672477-05 275 18 103 Ralph Wilson Stadium 1 2333 2010-05-27 10:15:01.291793-05 288 12 272 South Shore Music Circus (Cohasset, MA) 1 2334 2010-05-27 10:15:14.78245-05 288 18 104 South Shore Music Circus 1 2335 2010-05-27 10:16:54.015377-05 288 12 273 New Hampshire Motor Speedway (Loudon, NH) 1 2336 2010-05-27 10:16:58.918573-05 288 18 105 New Hampshire Motor Speedway 1 2337 2010-05-27 10:24:04.234111-05 22 13 41 St. James Parish & School Arlington Heights 2 Changed color_logo and banner. 2338 2010-05-27 10:27:22.860136-05 22 13 41 St. James Parish & School Arlington Heights 2 Changed banner. 2339 2010-05-27 12:39:08.227148-05 275 12 274 Radio City Music Hall (New York, New York) 1 2340 2010-05-27 12:40:07.484173-05 275 18 107 Radio City Music Hall 1 2341 2010-05-27 12:41:48.794111-05 275 12 275 Carnegie Hall (New York, New York) 1 2342 2010-05-27 12:41:59.93544-05 275 18 108 Carnegie Hall 1 2343 2010-05-27 12:44:29.724823-05 275 12 276 Lincoln Center for Performing Arts (New York, New York) 1 2344 2010-05-27 12:44:38.104641-05 275 18 109 Lincoln Center for Performing Arts 1 2345 2010-05-27 14:10:00.679841-05 288 12 277 Bank of America Pavilion (Boston, MA) 1 2346 2010-05-27 14:10:03.956182-05 288 18 110 Bank of America Pavilion 1 2347 2010-05-27 14:12:11.814524-05 288 12 278 Agganis Arena (Boston, MA) 1 2348 2010-05-27 14:12:14.825696-05 288 18 111 Agganis Arena 1 2349 2010-05-27 14:14:30.906087-05 288 12 279 Verizon Wireless Arena (Manchester, NH) 1 2350 2010-05-27 14:14:36.114095-05 288 18 113 Verizon Wireless Arena 1 2351 2010-05-27 14:17:02.555904-05 288 12 280 Suffolk Downs (Boston , MA) 1 2352 2010-05-27 14:18:25.718585-05 288 18 114 Suffolk Downs 1 2353 2010-05-27 14:19:21.22848-05 288 12 281 DCU Center (Worcester, MA) 1 2354 2010-05-27 14:19:26.828687-05 288 18 115 DCU Center 1 2355 2010-05-27 14:21:18.393262-05 288 12 282 Boston Opera House (Boston, MA) 1 2356 2010-05-27 14:21:24.04831-05 288 18 116 Boston Opera House 1 2357 2010-05-27 14:22:58.399605-05 288 12 283 Colonial Theater (Boston, MA) 1 2358 2010-05-27 14:23:03.744982-05 288 18 117 Colonial Theater 1 2359 2010-05-27 14:26:25.546541-05 288 12 284 Boston Symphony Hall (Boston, MA) 1 2360 2010-05-27 14:26:58.653803-05 288 18 118 Boston Symphony Hall 1 2361 2010-05-27 14:34:32.746981-05 288 12 285 Capitol Center for the Arts (Concord, NH) 1 2362 2010-05-27 14:34:35.342724-05 288 18 119 Capitol Center for the Arts 1 2363 2010-05-27 14:38:03.50112-05 288 12 286 Berklee Performing Arts Center (Boston, MA) 1 2364 2010-05-27 14:38:54.644631-05 288 18 120 Berklee Performing Arts Center 1 2365 2010-05-27 14:40:11.539499-05 288 12 287 Orpheum Theater (Boston, MA) 1 2366 2010-05-27 14:40:17.456465-05 288 18 121 Orpheum Theater 1 2367 2010-05-27 14:43:24.047563-05 288 12 288 Worcester Palladium (Worcester, MA) 1 2368 2010-05-27 14:43:29.053787-05 288 18 122 Worcester Palladium 1 2369 2010-05-27 14:45:11.186801-05 288 12 289 Showcase Live (Foxborough, MA) 1 2370 2010-05-27 14:45:14.906265-05 288 18 123 Showcase Live 1 2371 2010-05-27 14:49:06.30421-05 288 12 290 Charles Playhouse (Boston, MA) 1 2372 2010-05-27 14:49:10.360446-05 288 18 124 Charles Playhouse 1 2373 2010-05-27 15:35:54.851963-05 6 14 152 152 2 Changed details for tix "4 tix 4 Chicago White Sox vs. Texas Rangers". 2374 2010-05-27 15:36:32.142342-05 6 14 159 159 2 Changed details for tix "4 tix 4 Chicago White Sox vs. Minnesota Twins". 2375 2010-05-27 15:37:34.603379-05 6 14 152 152 2 Changed seating_info for tix "4 tix 4 Chicago White Sox vs. Texas Rangers". 2376 2010-05-28 10:08:09.57336-05 22 14 74 74 2 Changed distrubution_notes. 2377 2010-05-28 10:10:49.517929-05 22 3 298 mrebmann 1 2378 2010-05-28 10:11:11.636718-05 22 3 298 mrebmann 2 Changed first_name, last_name and email. 2379 2010-05-28 12:06:48.858161-05 22 3 230 leadtrader 2 No fields changed. 2380 2010-05-28 12:09:55.835306-05 22 12 291 Ravinia (Highland Park, IL) 1 2381 2010-05-28 12:10:02.720272-05 22 18 130 Ravinia 1 2382 2010-05-28 12:45:09.273821-05 22 14 162 162 2 Changed status, featured and letter_date. Changed seating_info and details for tix "2 tix 4 Chicago White Sox vs. Cleveland Indians". 2383 2010-05-28 13:10:19.832844-05 22 14 163 163 2 Changed status, featured and letter_date. Changed seating_type and seating_info for tix "2 tix 4 Carrie Underwood". 2384 2010-05-28 13:14:02.733369-05 22 14 164 164 2 Changed status, featured and letter_date. Changed seating_type and seating_info for tix "2 tix 4 Sting performing with The Royal Philharmonic Concert Orchestra". 2385 2010-05-28 13:17:55.247088-05 22 14 163 163 2 Changed status. 2386 2010-05-28 13:18:06.950513-05 22 14 164 164 2 Changed status. 2387 2010-05-28 13:18:45.952665-05 22 14 165 165 2 Changed featured and letter_date. Changed seating_type and seating_info for tix "2 tix 4 Sheryl Crow with special guest Colbie Caillat". 2388 2010-05-28 13:52:28.755582-05 22 3 299 bmarks 1 2389 2010-05-28 13:52:46.124123-05 22 3 299 bmarks 2 Changed first_name, last_name and email. 2390 2010-05-28 14:01:30.39533-05 22 14 163 163 2 Changed status. 2391 2010-05-28 14:01:40.325037-05 22 14 164 164 2 Changed status. 2392 2010-05-28 14:02:28.632719-05 22 14 165 165 2 Changed status. 2393 2010-05-28 14:07:38.333387-05 22 12 292 Pebble Beach Golf Links (Pebble Beach, CA) 1 2394 2010-05-28 14:07:44.559886-05 22 18 132 Pebble Beach Golf Links 1 2395 2010-05-28 14:18:06.265975-05 22 14 166 166 2 Changed status, featured and letter_date. Changed price and details for tix "2 tix 4 The 2010 U.S. Open Championship". 2396 2010-05-28 14:19:38.17462-05 22 19 112 The 2010 U.S. Open Championship 2 Changed date. 2397 2010-05-28 14:22:16.629286-05 22 14 151 151 2 Changed featured. 2398 2010-05-28 15:22:43.584919-05 22 14 165 165 2 Changed distribution_date and distrubution_notes. 2399 2010-05-28 15:22:55.628253-05 22 17 68 Purchase #68 by tcfive@gmail.com 2 Payment captured successful. 2400 2010-05-28 16:41:11.228741-05 6 14 159 159 2 Changed charity, status and letter_date. 2401 2010-05-28 16:43:47.512523-05 6 14 138 138 2 Changed featured. 2402 2010-05-28 16:46:29.478092-05 6 19 88 Dummy - Improv 5-26 2 Changed title. 2403 2010-05-28 16:47:00.594403-05 6 14 138 138 2 Deleted tix "4 tix 4 Dummy - Improv 5-26". 2404 2010-05-28 16:48:05.978528-05 6 14 127 127 2 Changed status. 2405 2010-05-28 16:49:10.507278-05 6 14 161 161 2 Changed price and details for tix "2 tix 4 The 39 Steps". 2406 2010-05-28 17:15:24.140622-05 265 14 1 1 2 Changed user. 2407 2010-05-28 17:16:46.955759-05 265 14 1 1 2 Changed user. 2408 2010-05-29 16:18:17.894523-05 6 14 161 161 2 Changed price for tix "2 tix 4 The 39 Steps". 2409 2010-05-29 16:19:30.393886-05 6 14 155 155 2 Changed status. 2410 2010-05-29 16:19:45.919869-05 6 14 155 155 2 Changed featured. 2411 2010-05-29 16:22:09.346266-05 6 14 166 166 2 Changed price and details for tix "2 tix 4 The 2010 U.S. Open Championship". 2412 2010-05-31 22:07:55.924163-05 6 14 152 152 2 Changed price for tix "4 tix 4 Chicago White Sox vs. Texas Rangers". 2413 2010-06-01 08:11:06.870093-05 6 14 161 161 2 Changed status and featured. 2414 2010-06-01 10:12:33.078467-05 22 13 38 CareLink Foundation 2 Changed contact_name. 2415 2010-06-01 10:14:39.194493-05 22 13 38 CareLink Foundation 2 Changed contact_name. 2416 2010-06-01 10:17:57.832122-05 22 13 38 CareLink Foundation 2 No fields changed. 2417 2010-06-01 10:19:27.768168-05 6 14 166 166 2 Changed price for tix "2 tix 4 The 2010 U.S. Open Championship". 2418 2010-06-01 10:23:11.410813-05 22 3 162 ptanz 2 No fields changed. 2419 2010-06-01 10:24:16.77649-05 22 3 162 ptanz 2 No fields changed. 2420 2010-06-01 10:25:12.619235-05 22 3 162 ptanz 3 2421 2010-06-01 10:25:34.999123-05 22 3 302 Ptanzillo 1 2422 2010-06-01 10:26:06.558923-05 22 3 302 Ptanzillo 2 Changed first_name, last_name and email. 2423 2010-06-01 10:28:59.671772-05 22 14 56 56 2 Changed user. 2424 2010-06-01 10:31:47.533202-05 22 14 72 72 2 Changed user. 2425 2010-06-01 10:32:04.138122-05 22 14 61 61 2 Changed user. 2426 2010-06-01 10:37:35.879187-05 124 14 163 163 2 Changed distribution_date and distrubution_notes. 2427 2010-06-01 10:38:20.839539-05 124 17 69 Purchase #69 by rotten_robby@hotmail.com 2 Payment captured successful. 2428 2010-06-01 10:51:38.942941-05 124 14 164 164 2 Changed distribution_date and distrubution_notes. 2429 2010-06-01 10:52:39.355106-05 124 17 70 Purchase #70 by ljc2002@comcast.net 2 Payment captured successful. 2430 2010-06-01 11:10:24.662823-05 22 14 9 9 2 Deleted tix "2 tix 4 Carole King & James Taylor". 2431 2010-06-01 11:13:50.880627-05 22 14 159 159 2 Changed featured. 2432 2010-06-01 11:15:19.03766-05 22 14 151 151 2 Changed featured. 2433 2010-06-01 11:16:56.988178-05 22 19 90 Ring Around the Guillotine 2 Changed title. 2434 2010-06-01 11:17:05.635746-05 22 19 92 Desperately Seeking 2 Changed title. 2435 2010-06-01 11:17:22.329567-05 22 19 88 Dummy Improv 2 Changed title. 2436 2010-06-01 11:19:45.361942-05 22 19 93 Desperately Seeking 5/30 2 Changed title. 2437 2010-06-01 11:20:16.121523-05 22 14 136 136 2 Deleted tix "2 tix 4 Desperately Seeking 5/30". 2438 2010-06-01 11:20:35.438246-05 22 14 134 134 2 Deleted tix "4 tix 4 Desperately Seeking 5/30". 2439 2010-06-01 11:20:50.356734-05 22 14 135 135 2 Deleted tix "2 tix 4 Desperately Seeking 5/30". 2440 2010-06-01 11:28:19.018268-05 22 19 5 Billy Elliot the Musical 6/4 2 Changed title. 2441 2010-06-01 11:28:36.893601-05 22 19 93 Desperately Seeking 2 Changed title. 2442 2010-06-01 11:28:51.116265-05 22 19 10 Billy Elliot the Musical 6/4 2 Changed title. 2443 2010-06-01 11:29:10.210089-05 22 19 68 Billy Elliot the Musical 7/2 2 Changed title. 2444 2010-06-01 11:29:23.718885-05 22 19 76 Shrek The Musical 7/31 2 Changed title. 2445 2010-06-01 11:30:06.698439-05 22 19 81 Billy Elliot the Musical 8/4 2 Changed title. 2446 2010-06-01 11:30:35.411587-05 22 14 161 161 2 Deleted tix "2 tix 4 The 39 Steps". 2447 2010-06-01 11:31:03.56729-05 22 14 146 146 2 Deleted tix "4 tix 4 Desperately Seeking". 2448 2010-06-01 11:31:30.719462-05 22 14 145 145 2 Deleted tix "4 tix 4 Desperately Seeking". 2449 2010-06-01 11:33:37.365615-05 22 19 107 The 39 Steps 3 2450 2010-06-01 11:36:10.955978-05 22 14 144 144 2 Deleted tix "4 tix 4 Desperately Seeking". 2451 2010-06-01 11:36:25.384331-05 22 14 143 143 2 Deleted tix "4 tix 4 Desperately Seeking". 2452 2010-06-01 11:36:42.393424-05 22 14 142 142 2 Deleted tix "4 tix 4 Ring Around the Guillotine". 2453 2010-06-01 11:37:00.037751-05 22 14 141 141 2 No fields changed. 2454 2010-06-01 11:37:09.883516-05 22 14 141 141 2 Deleted tix "4 tix 4 Ring Around the Guillotine". 2455 2010-06-01 11:37:21.604276-05 22 14 140 140 2 Deleted tix "4 tix 4 Ring Around the Guillotine". 2456 2010-06-01 11:37:37.004113-05 22 14 139 139 2 Deleted tix "4 tix 4 Ring Around the Guillotine". 2457 2010-06-01 11:37:57.795646-05 22 14 137 137 2 Deleted tix "4 tix 4 Dummy - Improv ". 2458 2010-06-01 11:38:18.191184-05 22 14 133 133 2 Deleted tix "2 tix 4 Ring Around the Guillotine". 2459 2010-06-01 11:38:35.075916-05 22 14 131 131 2 No fields changed. 2460 2010-06-01 11:38:55.635222-05 124 14 152 152 2 Changed distribution_date and distrubution_notes. 2461 2010-06-01 11:39:09.969852-05 22 14 131 131 2 Deleted tix "2 tix 4 Ring Around the Guillotine". 2462 2010-06-01 11:39:12.914391-05 124 17 71 Purchase #71 by pettersona@dupage.edu 2 Payment captured successful. 2463 2010-06-01 11:39:27.444551-05 22 14 130 130 2 Deleted tix "4 tix 4 Ring Around the Guillotine". 2464 2010-06-01 11:39:39.70189-05 22 14 129 129 2 Deleted tix "4 tix 4 Dummy Improv". 2465 2010-06-01 11:39:52.337097-05 22 14 128 128 2 Deleted tix "4 tix 4 Dummy - Improv ". 2466 2010-06-01 11:40:10.159698-05 22 14 127 127 2 No fields changed. 2467 2010-06-01 11:44:00.920183-05 22 14 127 127 2 Deleted tix "4 tix 4 Dummy Improv". 2468 2010-06-01 11:45:39.05682-05 22 19 113 The 39 Steps 1 2469 2010-06-01 11:45:52.004889-05 22 19 10 Billy Elliot the Musical 2 Changed title. 2470 2010-06-01 11:45:56.949598-05 22 19 5 Billy Elliot the Musical 2 Changed title. 2471 2010-06-01 11:46:01.945027-05 22 19 68 Billy Elliot the Musical 2 Changed title. 2472 2010-06-01 11:46:06.714166-05 22 19 81 Billy Elliot the Musical 2 Changed title. 2473 2010-06-01 11:46:16.614539-05 22 19 76 Shrek The Musical 2 Changed title. 2474 2010-06-01 11:52:51.594194-05 22 14 134 134 2 Changed status. 2475 2010-06-01 11:53:06.36754-05 22 14 135 135 2 Changed status. 2476 2010-06-01 11:53:14.915673-05 22 14 136 136 2 Changed status. 2477 2010-06-01 11:54:38.476726-05 22 14 129 129 2 Changed status. 2478 2010-06-01 13:27:08.57262-05 22 19 115 Jonas Brothers 2 Changed title. 2479 2010-06-01 13:27:32.494258-05 22 14 169 169 2 Changed featured and letter_date. 2480 2010-06-01 13:31:45.865347-05 22 14 169 169 2 Changed status. Changed price, seating_info and details for tix "4 tix 4 Jonas Brothers". 2558 2010-06-07 13:42:10.789577-05 30 13 72 Operation: MOMS Cookies Inc. 2 Changed address and description. 2481 2010-06-01 13:33:15.827685-05 22 14 168 168 2 Changed status, featured and letter_date. Changed seating_info and details for tix "2 tix 4 Liza Minelli". 2482 2010-06-01 13:42:01.90042-05 22 14 117 117 3 2483 2010-06-01 13:42:01.903602-05 22 14 116 116 3 2484 2010-06-01 14:21:17.262971-05 22 19 112 The 2010 U.S. Open Championship 2 Changed date. 2485 2010-06-01 14:22:08.345785-05 22 14 166 166 2 Changed details for tix "2 tix 4 The 2010 U.S. Open Championship". 2486 2010-06-01 15:00:21.976078-05 22 14 167 167 3 2487 2010-06-01 15:05:26.4677-05 6 19 112 The 2010 U.S. Open Championship 2 No fields changed. 2488 2010-06-01 15:07:14.09864-05 6 14 166 166 2 Changed details for tix "2 tix 4 The 2010 U.S. Open Championship". 2489 2010-06-01 15:23:51.468976-05 22 12 303 AIDS Foundation of Chicago (Chicago, IL) 1 2490 2010-06-01 15:27:40.357737-05 22 13 71 AIDS Foundation of Chicago 1 2491 2010-06-01 15:27:46.316295-05 22 13 71 AIDS Foundation of Chicago 2 No fields changed. 2492 2010-06-01 15:28:50.424933-05 22 3 304 lleidinger-avila 1 2493 2010-06-01 15:29:32.655938-05 22 3 304 lleidinger-avila 2 Changed first_name, last_name, email and groups. 2494 2010-06-01 15:49:57.60546-05 124 14 159 159 2 Changed distribution_date and distrubution_notes. 2495 2010-06-01 15:50:19.566814-05 124 17 72 Purchase #72 by tim.hoffmeister@midwestmech.com 2 Payment captured successful. 2496 2010-06-01 16:49:05.699306-05 6 14 150 150 2 Changed featured. 2497 2010-06-02 08:48:24.373417-05 124 14 162 162 2 Changed distribution_date and distrubution_notes. 2498 2010-06-02 08:48:35.437997-05 124 17 73 Purchase #73 by mrskin@skintertainment.com 2 Payment captured successful. 2499 2010-06-02 12:23:09.312083-05 22 13 27 Chicago International Charter School 2 Changed color_logo. 2500 2010-06-02 15:26:08.420671-05 30 12 306 Operation MOMS Cookies Inc., NFP (Diamond, IL) 1 2501 2010-06-02 15:38:14.948862-05 30 13 72 Operation: MOMS Cookies Inc. 1 2502 2010-06-02 15:42:20.731446-05 30 13 72 Operation: MOMS Cookies Inc. 2 Changed color_logo. 2503 2010-06-02 15:45:26.738395-05 30 13 72 Operation: MOMS Cookies Inc. 2 Changed color_logo. 2504 2010-06-02 15:48:35.667156-05 30 13 72 Operation: MOMS Cookies Inc. 2 Changed banner. 2505 2010-06-02 15:49:36.010946-05 30 3 306 deborahtrippiedi 1 2506 2010-06-02 15:50:07.442488-05 30 3 306 deborahtrippiedi 2 Changed first_name, last_name, email and groups. 2507 2010-06-02 15:54:20.012506-05 30 14 170 170 1 2508 2010-06-02 17:07:08.060574-05 30 13 72 Operation: MOMS Cookies Inc. 2 Changed teaser. 2509 2010-06-02 17:46:17.43544-05 30 13 72 Operation: MOMS Cookies Inc. 2 Changed description. 2510 2010-06-02 17:52:39.746147-05 30 14 170 170 2 Changed status. Changed details for tix "2 tix 4 Tim McGraw with Lady Antebellum". 2511 2010-06-02 17:52:42.525685-05 30 14 170 170 2 Changed status. Changed details for tix "2 tix 4 Tim McGraw with Lady Antebellum". 2512 2010-06-02 17:56:36.685962-05 30 13 72 Operation: MOMS Cookies Inc. 2 Changed color_logo and banner. 2513 2010-06-02 18:05:14.949344-05 30 14 54 54 2 Changed letter_date. 2514 2010-06-03 09:13:01.745429-05 22 14 170 170 2 Changed featured. 2515 2010-06-03 09:13:28.972053-05 22 14 150 150 2 Changed featured. 2516 2010-06-03 09:14:47.000825-05 22 13 38 CareLink Foundation 2 Changed color_logo. 2517 2010-06-03 09:20:46.832048-05 22 13 38 CareLink Foundation 2 Changed color_logo. 2518 2010-06-03 09:25:02.541404-05 22 13 38 CareLink Foundation 2 Changed color_logo. 2519 2010-06-03 11:30:50.817874-05 6 14 133 133 2 Changed letter_date. 2520 2010-06-03 11:31:08.887988-05 6 14 135 135 2 Changed letter_date. 2521 2010-06-03 11:31:33.861967-05 6 14 134 134 2 Changed letter_date. 2522 2010-06-03 11:32:04.656792-05 6 14 131 131 2 Changed letter_date. 2523 2010-06-03 13:43:02.58573-05 6 12 307 Natasha McShane Foundation (Chicago, IL) 1 2524 2010-06-03 13:47:01.967734-05 6 13 73 Natasha McShane Foundation 1 2525 2010-06-03 13:51:39.629879-05 6 13 73 Natasha McShane Foundation 2 Changed banner. 2526 2010-06-03 13:54:40.719606-05 6 13 73 Natasha McShane Foundation 2 Changed banner. 2527 2010-06-03 13:57:56.215813-05 6 13 73 Natasha McShane Foundation 2 Changed banner. 2528 2010-06-03 13:59:53.709309-05 6 13 73 Natasha McShane Foundation 2 Changed color_logo. 2529 2010-06-03 15:49:03.870108-05 6 13 73 Natasha McShane Foundation 2 Changed banner. 2530 2010-06-03 15:50:48.807698-05 6 13 73 Natasha McShane Foundation 2 Changed description. 2531 2010-06-03 15:52:08.600577-05 6 13 73 Natasha McShane Foundation 2 No fields changed. 2532 2010-06-03 15:55:53.47137-05 6 13 73 Natasha McShane Foundation 2 Changed banner. 2533 2010-06-04 10:48:34.632579-05 6 14 170 170 2 Changed status. 2534 2010-06-04 11:32:46.848317-05 6 3 307 tommoran 1 2535 2010-06-04 11:33:46.072486-05 6 3 307 tommoran 2 Changed first_name, last_name and email. 2536 2010-06-04 12:17:41.893323-05 6 14 171 171 1 2537 2010-06-04 12:21:12.999048-05 6 19 116 Chicago White Sox vs Cleveland Indians 1 2538 2010-06-04 12:22:02.816714-05 6 14 171 171 2 Changed event for tix "4 tix 4 Chicago White Sox vs Cleveland Indians". 2539 2010-06-04 12:43:23.773313-05 6 21 38 etickets/176/Sox vs Indians100604-1148.pdf 1 2540 2010-06-05 19:20:03.992171-05 6 14 171 171 2 Changed details for tix "4 tix 4 Chicago White Sox vs Cleveland Indians". 2541 2010-06-05 19:20:23.097135-05 6 14 171 171 2 Changed price for tix "4 tix 4 Chicago White Sox vs Cleveland Indians". 2542 2010-06-05 19:21:15.817094-05 6 14 168 168 2 Changed price for tix "2 tix 4 Liza Minelli". 2543 2010-06-05 19:22:30.770348-05 6 14 166 166 2 Changed price for tix "2 tix 4 The 2010 U.S. Open Championship". 2544 2010-06-06 13:32:29.632535-05 6 14 171 171 2 Changed status. 2545 2010-06-06 13:34:52.686971-05 6 14 172 172 2 Changed featured and letter_date. Changed seating_info and details for tix "2 tix 4 Chicago Cubs vs. Chicago White Sox". 2546 2010-06-06 13:35:16.653347-05 6 14 172 172 2 Changed status. 2547 2010-06-06 13:38:11.027535-05 6 14 168 168 2 Changed price for tix "2 tix 4 Liza Minelli". 2548 2010-06-06 13:38:33.002135-05 6 14 168 168 2 No fields changed. 2549 2010-06-06 17:42:08.343391-05 265 14 174 174 3 2550 2010-06-06 17:42:08.346236-05 265 14 173 173 3 2551 2010-06-06 18:48:07.172842-05 6 14 168 168 2 Changed status. 2552 2010-06-07 09:36:02.418989-05 124 14 158 158 2 Changed distribution_date and distrubution_notes. 2553 2010-06-07 09:36:20.34964-05 124 17 74 Purchase #74 by bjcovelli@comcast.net 2 Payment captured successful. 2554 2010-06-07 11:16:30.981355-05 22 14 168 168 2 Deleted tix "2 tix 4 Liza Minelli". 2555 2010-06-07 11:17:15.406072-05 22 19 10 Billy Elliot the Musical 6/4 2 Changed title. 2556 2010-06-07 11:19:38.004535-05 22 14 5 5 2 Deleted tix "3 tix 4 Billy Elliot the Musical 6/4". 2557 2010-06-07 13:40:14.461135-05 30 12 313 Operation MOMS Cookies Inc., NFP (624 Davy Lane, Wilmington, IL 60481) 1 2559 2010-06-07 13:56:36.447688-05 30 13 72 Operation: MOMS Cookies Inc. 2 Changed description. 2560 2010-06-07 14:15:32.196608-05 30 13 56 Naperville CARES 2 Changed teaser. 2561 2010-06-07 14:30:22.274423-05 30 13 72 Operation: MOMS Cookies Inc. 2 Changed description. 2562 2010-06-08 08:48:50.881339-05 6 12 315 Voices for Illinois Children (208 S. LaSalle St. , Chicago, IL 60604) 1 2563 2010-06-08 09:03:34.268264-05 6 12 316 Voices for Illinois Children (208 S. LaSalle St., Chicago, IL 60604) 1 2564 2010-06-08 09:48:10.912162-05 22 13 38 CareLink Foundation 2 Changed teaser. 2565 2010-06-08 09:48:15.467994-05 6 12 317 Voices for Illinois Children (208 S. LaSalle St., Chicago, IL 60604) 1 2566 2010-06-08 09:48:51.494151-05 22 13 38 CareLink Foundation 2 Changed teaser and description. 2567 2010-06-08 09:49:16.434975-05 22 13 38 CareLink Foundation 2 Changed description. 2568 2010-06-08 09:49:30.819045-05 22 13 38 CareLink Foundation 2 Changed teaser. 2569 2010-06-08 09:50:04.74646-05 6 13 74 Voices for Illinois Children 1 2570 2010-06-08 09:54:20.182994-05 6 13 74 Voices for Illinois Children 2 Changed teaser and banner. 2571 2010-06-08 10:00:25.173499-05 6 13 74 Voices for Illinois Children 2 Changed description. 2572 2010-06-08 10:53:20.210457-05 30 3 232 sandraboston 2 Changed password. 2573 2010-06-08 12:07:53.664851-05 22 12 318 Joe's Bar on Weed Street (940 W. Weed St., Chicago, IL 60642) 1 2574 2010-06-08 12:08:15.989976-05 22 18 133 Joe's Bar on Weed Street 1 2575 2010-06-08 12:08:38.794712-05 22 18 9 Apollo Theater 2 Changed title. 2576 2010-06-08 12:44:26.139616-05 6 14 166 166 2 Changed price for tix "2 tix 4 The 2010 U.S. Open Championship". 2577 2010-06-08 13:42:20.548632-05 123 17 75 Purchase #75 by carpenter1360@comcast.net 2 Payment captured successful. 2578 2010-06-08 13:44:19.981221-05 123 14 172 172 2 Changed distribution_date and distrubution_notes. 2579 2010-06-08 13:58:11.357934-05 123 14 170 170 2 Changed distribution_date and distrubution_notes. 2580 2010-06-08 14:00:22.096625-05 30 14 170 170 2 Changed status and featured. 2581 2010-06-08 14:07:00.436132-05 30 3 313 joelkirstein 1 2582 2010-06-08 14:07:36.374608-05 30 3 313 joelkirstein 2 Changed first_name, last_name and email. 2583 2010-06-08 14:09:01.52132-05 123 14 170 170 2 Changed distrubution_notes. 2584 2010-06-08 14:17:43.450525-05 22 17 76 Purchase #76 by joelkirstein@johngreenecommercial.com 2 Payment captured successful. 2585 2010-06-08 15:16:42.815645-05 30 14 170 170 2 No fields changed. 2586 2010-06-08 17:03:19.889644-05 6 13 74 Voices for Illinois Children 2 Changed description. 2587 2010-06-09 09:12:39.848998-05 6 12 322 Naperville Central High School Athletic Booster Club (440 Aurora Ave, Naperville, IL 60540) 1 2588 2010-06-09 09:37:01.033011-05 6 13 75 Naperville Central High School Athletic Booster Club 1 2589 2010-06-09 09:41:09.047893-05 6 13 66 St. Patrick's Residence 2 Changed banner. 2590 2010-06-09 09:49:15.27035-05 6 13 66 St. Patrick's Residence 2 Changed description. 2591 2010-06-09 09:51:18.448098-05 6 13 66 St. Patrick's Residence 2 Changed teaser. 2592 2010-06-09 09:52:34.331828-05 6 13 66 St. Patrick's Residence 2 Changed teaser. 2593 2010-06-09 09:52:49.624871-05 6 13 66 St. Patrick's Residence 2 No fields changed. 2594 2010-06-09 09:57:16.906138-05 22 13 66 St. Patrick's Residence 2 Changed teaser. 2595 2010-06-09 09:58:44.635861-05 6 13 66 St. Patrick's Residence 2 Changed teaser. 2596 2010-06-09 09:59:15.09756-05 22 13 66 St. Patrick's Residence 2 Changed teaser. 2597 2010-06-09 09:59:53.368847-05 22 13 66 St. Patrick's Residence 2 No fields changed. 2598 2010-06-09 10:00:34.153076-05 22 13 66 St. Patrick's Residence 2 Changed teaser. 2599 2010-06-09 10:01:42.573368-05 22 13 66 St. Patrick's Residence 2 Changed teaser. 2600 2010-06-09 10:03:50.195347-05 22 13 66 St. Patrick's Residence 2 No fields changed. 2601 2010-06-09 10:09:18.191648-05 6 13 75 Naperville Central High School Athletic Booster Club 2 Changed status. 2602 2010-06-09 10:09:51.260774-05 6 13 75 Naperville Central High School Athletic Booster Club 2 No fields changed. 2603 2010-06-09 10:10:18.214611-05 6 13 75 Naperville Central High School Athletic Booster Club 2 Changed charity and has_detail. 2604 2010-06-09 10:57:39.521955-05 30 14 166 166 2 Changed price for tix "2 tix 4 The 2010 U.S. Open Championship". 2605 2010-06-09 11:28:34.204261-05 6 3 314 shawngavin 1 2606 2010-06-09 11:29:23.819047-05 6 3 314 shawngavin 2 Changed first_name, last_name, email and groups. 2607 2010-06-09 11:30:30.838287-05 6 3 315 paultanzillo 1 2608 2010-06-09 11:31:03.909807-05 6 3 315 paultanzillo 2 Changed first_name, last_name, email and groups. 2609 2010-06-09 15:21:10.561369-05 22 14 176 176 2 Changed charity, status, featured and letter_date. Changed details for tix "2 tix 4 Keith Anderson". 2610 2010-06-09 15:41:28.975251-05 6 13 67 Chicago Fire Juniors 2 No fields changed. 2611 2010-06-09 15:56:37.282728-05 6 12 323 Zanies Comdey Night Club (1548 N. Wells St. , Chicago, IL 606010) 1 2612 2010-06-09 15:59:50.520345-05 6 12 324 Zanies Comedy Night Club (1548 N. Wells St., Chicago, IL 60610) 1 2613 2010-06-09 15:59:53.747606-05 6 18 134 Zanies Comedy Night Club Chicago 1 2614 2010-06-09 16:00:03.510975-05 6 18 92 Yankee Stadium 2 No fields changed. 2615 2010-06-09 16:01:38.822124-05 6 14 166 166 2 Changed price for tix "2 tix 4 The 2010 U.S. Open Championship". 2616 2010-06-09 16:01:53.245984-05 6 14 166 166 2 No fields changed. 2617 2010-06-09 17:14:42.283435-05 6 13 66 St. Patrick's Residence 2 Changed teaser, description and banner. 2618 2010-06-09 17:16:56.393165-05 6 13 66 St. Patrick's Residence 2 Changed description. 2619 2010-06-09 17:18:34.160227-05 6 13 66 St. Patrick's Residence 2 No fields changed. 2620 2010-06-09 17:54:51.201623-05 6 13 75 Naperville Central High School Athletic Booster Club 2 Changed status. 2621 2010-06-09 17:58:39.720461-05 6 13 75 Naperville Central High School Athletic Booster Club 2 Changed charity, has_detail, color_logo and banner. 2622 2010-06-10 10:21:17.706052-05 22 14 177 177 2 Changed seating_info for tix "4 tix 4 Mike Young Stand up Comedy". 2623 2010-06-10 10:23:43.019785-05 22 19 122 Mike Young Stand-Up Comedy 2 Changed title. 2624 2010-06-10 11:01:33.8206-05 22 14 177 177 2 Changed status, featured and letter_date. 2625 2010-06-10 11:02:43.27106-05 22 14 177 177 2 Changed status. Deleted tix "4 tix 4 Mike Young Stand-Up Comedy". 2626 2010-06-10 11:25:05.820793-05 22 14 177 177 2 Changed featured and letter_date. 2627 2010-06-10 14:38:55.732884-05 22 14 177 177 2 Changed status, featured and letter_date. Added tix "4 tix 4 Mike Young Stand-Up Comedy". 2628 2010-06-11 11:28:59.718682-05 6 3 317 Lizlong 1 2629 2010-06-11 11:30:18.052228-05 6 3 317 Lizlong 2 Changed first_name, last_name and email. 2630 2010-06-11 13:54:24.494465-05 6 14 177 177 2 Changed user. 2631 2010-06-12 06:11:40.278033-05 6 14 166 166 2 No fields changed. 2632 2010-06-14 12:47:09.100531-05 22 14 177 177 2 No fields changed. 2633 2010-06-14 14:21:05.377496-05 22 14 151 151 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Oakland Athletics". 2634 2010-06-15 10:20:36.949088-05 22 3 323 Jdoe 1 2635 2010-06-15 10:57:42.890369-05 22 14 151 151 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Oakland Athletics". 2636 2010-06-15 13:12:18.33635-05 275 12 326 Richard Kaffka (310 S. Wheaton Ave, Wheaton, IL 60187) 1 2637 2010-06-15 13:27:02.504947-05 275 12 327 St. Michael Parish (310 S. Wheaton Ave, Wheaton, IL 60187) 1 2638 2010-06-15 14:16:00.007702-05 275 13 76 St. Michael Parish 1 2639 2010-06-15 14:17:17.017773-05 275 13 76 St. Michael Parish 3 2640 2010-06-15 14:25:23.623654-05 22 14 166 166 2 Changed details for tix "2 tix 4 The 2010 U.S. Open Championship". 2641 2010-06-15 15:07:27.934753-05 22 12 329 Pioneer Clubs (27W130 Saint Charles Rd., Carol Stream, IL 60188) 1 2642 2010-06-15 15:10:08.733608-05 22 13 77 Pioneer Clubs 1 2643 2010-06-15 15:10:48.550602-05 22 13 68 Keep Going for Mark 3 2644 2010-06-15 15:12:39.377064-05 22 13 68 Keep Going for Mark 3 2645 2010-06-15 15:12:57.470109-05 22 13 68 Keep Going for Mark 3 2646 2010-06-15 15:13:51.59162-05 22 3 324 vbreckenridge 1 2647 2010-06-15 15:14:17.205148-05 22 3 324 vbreckenridge 2 Changed first_name, last_name, email and groups. 2648 2010-06-15 16:43:45.090185-05 30 12 330 The Morton Arboretum (4100 IL Rt 53, Lisle, IL 60532) 1 2649 2010-06-15 16:43:48.974187-05 30 18 135 The Morton Arboretum 1 2650 2010-06-16 10:13:20.871106-05 22 12 334 Comer Children's Hospital at the University of Chicago (1170 E. 58th St., Chicago, IL 60637) 1 2651 2010-06-16 10:25:37.990659-05 275 13 76 St. Michael Parish 2 Changed status and banner. 2652 2010-06-16 10:27:50.122407-05 275 13 76 St. Michael Parish 2 Changed has_detail. 2653 2010-06-16 10:29:25.372691-05 123 17 77 Purchase #77 by amccaff2@illinois.edu 2 Payment captured successful. 2654 2010-06-16 10:29:51.333322-05 22 13 48 Comer Development Board - Comer Children's Hospital at the University of Chicago 2 Changed title, slug, teaser, address, website, charity, contact_name and fein. 2655 2010-06-16 10:30:34.049473-05 123 14 107 107 2 Changed distribution_date and distrubution_notes. 2656 2010-06-16 10:31:34.756478-05 22 12 334 Comer Development Board - Comer Children's Hospital at the University of Chicago (1170 E. 58th St., Chicago, IL 60637) 2 Changed addressee. 2657 2010-06-16 10:33:39.284764-05 22 12 327 St. Michael Parish (310 S. Wheaton Ave., Wheaton, IL 60187) 2 Changed street_1, country, is_billing and is_shipping. 2658 2010-06-16 10:51:58.333404-05 275 3 326 rkaffka 1 2659 2010-06-16 10:53:54.948791-05 22 12 337 Morton Arboretum (4100 Illinois Route 53, Lisle, IL 60532) 1 2660 2010-06-16 10:54:00.424231-05 22 18 136 Morton Arboretum 1 2661 2010-06-16 10:54:57.893914-05 275 3 326 rkaffka 2 Changed first_name, last_name, email and groups. 2662 2010-06-16 10:56:13.610714-05 275 13 76 St. Michael Parish 2 Changed email. 2663 2010-06-16 11:04:04.333271-05 22 14 178 178 2 No fields changed. 2664 2010-06-16 11:04:46.106818-05 22 19 123 In Tune With Trees Summer Concert Series: Kenny Loggins with special guest Malea McGuinness 2 No fields changed. 2665 2010-06-16 11:05:04.544465-05 22 19 123 In Tune With Trees Summer Concert Series: Kenny Loggins with special guest Malea McGuinness 2 No fields changed. 2666 2010-06-16 11:06:39.616641-05 22 19 124 Chicago Cubs vs. Los Angeles Angels of Anaheim 2 Changed title and date. 2667 2010-06-16 11:08:11.75692-05 22 14 179 179 2 Changed seating_info and details for tix "4 tix 4 Chicago Cubs vs. Los Angeles Angels of Anaheim". 2668 2010-06-16 11:08:27.242504-05 22 14 175 175 2 No fields changed. 2669 2010-06-16 11:14:44.555589-05 22 13 77 Pioneer Clubs 2 Changed status, charity and contact_name. 2670 2010-06-16 11:16:46.879794-05 22 13 77 Pioneer Clubs 2 Changed banner. 2671 2010-06-16 11:50:52.596286-05 123 17 77 Purchase #77 by amccaff2@illinois.edu 2 Changed comment. 2672 2010-06-16 11:56:27.397519-05 123 14 178 178 2 Changed status, featured and letter_date. 2673 2010-06-16 12:10:14.263966-05 22 14 179 179 2 Changed status, featured and letter_date. 2674 2010-06-16 12:10:56.338886-05 22 19 112 The 2010 U.S. Open Championship 2 Changed date. 2675 2010-06-16 12:11:50.751673-05 22 14 151 151 2 Changed status. 2676 2010-06-16 13:53:59.650752-05 22 3 261 dsartoris 2 Changed is_superuser. 2677 2010-06-16 13:56:51.018749-05 261 12 338 (13722 Champions Drive Houston, TX 77069-1399, Houston, , TX 77069-1399) 1 2678 2010-06-16 13:57:49.762039-05 261 12 339 (13722 Champions Drive , Houston, Tx 77069-1399) 1 2679 2010-06-16 13:57:55.321573-05 261 18 137 Champions Golf Club 1 2680 2010-06-16 13:58:25.232399-05 275 12 340 Georgia Dome (1 Georgia Dome Drive, Atlanta , Georgia 30313-1591) 1 2681 2010-06-16 13:58:29.792934-05 275 18 138 Georgia Dome 1 2682 2010-06-16 13:59:29.10506-05 275 12 341 Turner Field (755 Hank Aaron Drive , Atlanta , Georgia 30315) 1 2683 2010-06-16 13:59:34.845671-05 275 18 139 Turner Field 1 2684 2010-06-16 13:59:59.221286-05 261 12 342 (1900 Magnum Rd., Houston, TX 77092) 1 2685 2010-06-16 14:00:09.175624-05 275 12 343 Philips Arena (1 Philips Drive, Atlanta , Georgia 30303) 1 2686 2010-06-16 14:00:11.858464-05 275 18 140 Philips Arena 1 2687 2010-06-16 14:01:04.760134-05 275 12 344 Bobby Dodd Stadium (155 North Avenue, Atlanta , Georgia 30332) 1 2688 2010-06-16 14:01:08.198422-05 275 18 141 Bobby Dodd Stadium 1 2689 2010-06-16 14:02:21.934332-05 275 12 345 Sanford Stadium (Sanford Drive and Field Street, Athens, Georgia 30602) 1 2690 2010-06-16 14:02:37.192698-05 275 18 142 Sanford Stadium 1 2691 2010-06-16 14:14:32.662316-05 261 18 143 Delmar Stadium 1 2692 2010-06-16 14:15:54.333394-05 261 12 346 (3393 Blodgett Street, Houston, TX 77004) 1 2693 2010-06-16 14:15:57.838838-05 261 18 144 Alexander Durley Sports Complex 1 2694 2010-06-16 14:17:13.671223-05 261 12 347 (1600 River Oaks Boulevard, Houston, TX 77019) 1 2695 2010-06-16 14:17:25.701761-05 261 18 145 River Oaks Country Club 1 2696 2010-06-16 14:18:18.63525-05 261 12 348 (100 Grand Fairway Drive, The Woodlawns, TX 77381) 1 2697 2010-06-16 14:18:21.778252-05 261 18 146 TPC at The Woodlawns 1 2698 2010-06-16 14:19:09.697104-05 261 12 349 (1 Reliant Park, Houston, TX 77054) 1 2699 2010-06-16 14:19:19.006207-05 261 18 147 Reliant Stadium 1 2700 2010-06-16 14:20:09.555757-05 261 12 350 (9371 Richmond Ave., Houston, TX 77063) 1 2701 2010-06-16 14:20:14.071139-05 261 18 148 Ayva Center 1 2702 2010-06-16 14:20:59.401244-05 261 12 351 (615 Texas Ave, Houston, TX 77002) 1 2703 2010-06-16 14:21:02.37539-05 261 18 149 Alley Theatre 1 2704 2010-06-16 14:21:40.899407-05 261 12 352 (510 Texas St., Houston, TX 77002) 1 2705 2010-06-16 14:21:43.425898-05 261 18 150 Angelika Theater 1 2706 2010-06-16 14:22:24.109875-05 261 12 353 (701 Main Street, Beaumont, TX 77001) 1 2707 2010-06-16 14:22:26.216415-05 261 18 151 Beaumont Civic Center 1 2708 2010-06-16 14:23:18.171573-05 261 12 354 (500 Texas St., Houston, TX 77002) 1 2709 2010-06-16 14:23:22.773436-05 261 18 152 Brown Theater at Wortham Center 1 2710 2010-06-16 14:24:16.349726-05 261 12 355 (13755 S. Main St. , Houston, TX 77039) 1 2711 2010-06-16 14:24:19.532232-05 261 18 153 Butler Stadium 1 2712 2010-06-16 14:25:04.107468-05 261 12 356 (11903 Eastex Freeway, Houston, TX 77039) 1 2713 2010-06-16 14:25:06.103852-05 261 18 154 Club Escapade Houston 1 2714 2010-06-16 14:25:47.184176-05 261 12 357 (12710 Telge Road, Cypress, TX 77429) 1 2715 2010-06-16 14:25:49.496222-05 261 18 155 Cypress Saloon 1 2716 2010-06-16 14:26:35.197636-05 261 12 358 (1500 McKinney, Houston, TX 77010) 1 2717 2010-06-16 14:26:37.526372-05 261 18 156 Discovery Green 1 2718 2010-06-16 14:27:29.616924-05 261 12 359 (5115 Ih-10 South, Beaumont, TX 77705) 1 2719 2010-06-16 14:27:32.182574-05 261 18 157 Ford Park 1 2720 2010-06-16 14:29:50.786326-05 261 12 360 (4601 Bosque Blvd, Waco, Tx 76714) 1 2721 2010-06-16 14:29:53.608815-05 261 18 158 Heart O' Texas Coliseum 1 2722 2010-06-16 14:30:35.991522-05 261 12 361 (800 Bagby, Houston, TX 77002) 1 2723 2010-06-16 14:30:39.977538-05 261 18 159 Hobby Center 1 2724 2010-06-16 14:31:42.818162-05 261 12 362 (1204 Caroline St, Houston, TX 77002) 1 2725 2010-06-16 14:32:44.175078-05 261 18 160 House of Blues Houston 1 2726 2010-06-16 14:33:57.81375-05 261 12 363 (11620 North Lake Houston Parkway, Houston, TX 77044) 1 2727 2010-06-16 14:34:02.125459-05 261 18 161 Houston Motorsports Park 1 2728 2010-06-16 14:34:45.66482-05 261 12 364 (345 Fannin Street, Beaumont, Tx 77701) 1 2729 2010-06-16 14:34:47.986879-05 261 18 162 Jefforson Theatre 1 2730 2010-06-16 14:35:38.364107-05 261 12 365 (765 Pearl Street, Beaumont, Tx 77701) 1 2731 2010-06-16 14:35:42.215023-05 261 18 163 Julie Rogers Theatre 1 2732 2010-06-16 14:36:28.056164-05 261 12 366 (403 Westheimer Rd., Houston, TX 77006) 1 2733 2010-06-16 14:36:30.580563-05 261 18 164 Mango's Cafe 1 2734 2010-06-16 14:37:04.358601-05 261 12 367 (1503 Chartres Street, Houston, TX 77003) 1 2735 2010-06-16 14:37:06.503223-05 261 18 165 Meridian 1 2736 2010-06-16 14:37:38.889874-05 275 12 368 Calihan Hall (4001 W Mcnichols Rd, Detroit, MI 48221-3038) 1 2737 2010-06-16 14:37:40.890003-05 275 18 166 Calihan Hall 1 2738 2010-06-16 14:37:51.083974-05 261 12 369 (501 Crawford, Houston, TX 77002) 1 2739 2010-06-16 14:37:53.70784-05 261 18 167 Minute Maid Park 1 2740 2010-06-16 14:38:18.539229-05 275 12 370 Cobo Center (1 Washington Boulevard, Detroit, MI 48226-4420) 1 2741 2010-06-16 14:38:20.070143-05 275 18 168 Cobo Center 1 2742 2010-06-16 14:38:46.472939-05 261 12 371 (Seven Hope Blvd, Galveston, TX 77554) 1 2743 2010-06-16 14:38:48.488066-05 261 18 169 Moody Gardens Outdoor Amphitheater 1 2744 2010-06-16 14:38:49.001023-05 261 18 170 Moody Gardens Outdoor Amphitheater 1 2745 2010-06-16 14:39:01.200772-05 275 12 372 Comerica Park (2100 Woodward Avenue, Detroit, MI 48201-3470) 1 2746 2010-06-16 14:39:02.128595-05 275 18 171 Comerica Park 1 2747 2010-06-16 14:39:33.660148-05 261 12 373 (300 Westheimer Rd, Houston, TX 77006) 1 2748 2010-06-16 14:39:37.41725-05 261 18 172 Numbers 1 2749 2010-06-16 14:40:16.531555-05 261 12 374 (Scott and Holman, Houston, TX 77204) 1 2750 2010-06-16 14:40:18.634888-05 261 18 173 Robertson Stadium 1 2751 2010-06-16 14:40:26.776104-05 275 12 375 Ford Field (2000 Brush Street, Detroit, MI 48226-2251) 1 2752 2010-06-16 14:40:27.946972-05 275 18 174 Ford Field 1 2753 2010-06-16 14:41:06.198129-05 261 12 376 (7575 N. Sam Houston Pkwy West, Houston, TX 77064) 1 2754 2010-06-16 14:41:06.964287-05 275 12 377 Joe Louis Arena (600 Civic Center Drive, Detroit, MI 48226-4487) 1 2755 2010-06-16 14:41:08.32543-05 275 18 175 Joe Louis Arena 1 2756 2010-06-16 14:41:09.58052-05 261 18 176 Sam Houston Race Park 1 2757 2010-06-16 14:42:02.234711-05 275 12 378 Michigan State Fairgrounds Coliseum (1120 W. State Fair Ave., Detroit, MI 48203) 1 2758 2010-06-16 14:42:03.246379-05 261 12 379 (6011 W. Orem Dr., Houston, TX 77085) 1 2759 2010-06-16 14:42:04.281969-05 275 18 177 Michigan State Fairgrounds Coliseum 1 2760 2010-06-16 14:42:05.964309-05 261 18 178 The Kingdom Builders Center 1 2761 2010-06-16 14:42:53.112246-05 261 12 380 (1510 Polk St, Houston, Tx 77002) 1 2762 2010-06-16 14:42:56.529323-05 261 18 179 Toyota Center 1 2763 2010-06-16 14:43:12.39609-05 275 12 381 Palazzo di Bocce (4291 South Lapeer Road, Lake Orion, MI 48359) 1 2764 2010-06-16 14:43:13.384966-05 275 18 180 Palazzo di Bocce 1 2765 2010-06-16 14:43:37.942835-05 261 12 382 (520 Texas Ave., Houston, TX 77002) 1 2766 2010-06-16 14:43:41.386338-05 261 18 181 Verizon Wireless Theater 1 2767 2010-06-16 14:44:18.886555-05 275 12 383 The Palace of Auburn Hills (6 Championship Drive, Auburn Hills, MI 48326) 1 2768 2010-06-16 14:44:20.532366-05 275 18 182 The Palace of Auburn Hills 1 2769 2010-06-16 14:44:28.384367-05 261 12 384 (4215 Washington Ave, Houston, TX 77007) 1 2770 2010-06-16 14:44:31.730219-05 261 18 183 Walter's on Washington 1 2771 2010-06-16 14:45:03.397648-05 275 12 385 Detroit Symphony Hall (3711 Woodward Avenue, Detroit, MI 48201-2005) 1 2772 2010-06-16 14:45:04.909261-05 275 18 184 Detroit Symphony Hall 1 2773 2010-06-16 14:45:15.023137-05 261 12 386 (2005 Lake Robbins Dr., Woodlands, Tx 77380) 1 2774 2010-06-16 14:45:18.161303-05 261 18 185 Woodlands Pavilion 1 2775 2010-06-16 14:45:58.879766-05 275 12 387 DTE/Pine Knob Music Theater (7774 Sashabaw Rd, Clarkston, MI 48348) 1 2776 2010-06-16 14:46:01.437763-05 275 18 186 DTE/Pine Knob Music Theater 1 2777 2010-06-16 14:46:40.541745-05 275 12 388 Fisher Theater (3011 West Grand Boulevard, Detroit, MI 48202-3096) 1 2778 2010-06-16 14:46:42.900318-05 275 18 187 Fisher Theater 1 2779 2010-06-16 14:48:50.160856-05 275 12 389 Freedom Hill (14900 Metropolitan Parkway, Sterling Heights, MI 48312-3424) 1 2780 2010-06-16 14:48:52.238559-05 275 18 188 Freedom Hill 1 2781 2010-06-16 14:49:35.594352-05 275 12 390 Gem Theater (333 Madison Street, Detroit, MI 48226-2254) 1 2782 2010-06-16 14:49:49.718455-05 275 18 189 Gem Theater 1 2783 2010-06-16 14:51:17.480332-05 275 12 391 Masonic Temple Theater (500 Temple Street, Detroit, MI 48201-2659) 1 2784 2010-06-16 14:51:18.835986-05 275 18 190 Masonic Temple Theater 1 2785 2010-06-16 14:52:09.444297-05 275 12 392 Meadow Brook Music Theater (3554 Walton Blvd, Rochester Hills, MI 48309) 1 2786 2010-06-16 14:52:10.81353-05 275 18 191 Meadow Brook Music Theater 1 2787 2010-06-16 14:53:04.779198-05 275 12 393 Pontiac Silver Dome (200 Featherstone Road, Pontiac , MI 48342-1938) 1 2788 2010-06-16 14:53:49.443621-05 275 18 192 Pontiac Silverdome 1 2950 2010-06-17 13:50:39.790645-05 22 3 39 kevinsnod 3 2789 2010-06-16 14:54:18.398261-05 275 12 394 State Theater (4743 Cass Avenue, Detroit, MI 48201) 1 2790 2010-06-16 14:54:24.788785-05 275 18 193 State Theater 1 2791 2010-06-16 14:55:19.447876-05 275 12 395 Michigan Stadium (1000 South State Street, Ann Arbor, MI 48109-2201) 1 2792 2010-06-16 14:55:21.874659-05 275 18 194 Michigan Stadium 1 2793 2010-06-16 14:56:19.467718-05 275 12 396 Crisler Arena (333 East Stadium Boulevard, Ann Arbor, MI 48109) 1 2794 2010-06-16 14:56:20.4732-05 275 18 195 Crisler Arena 1 2795 2010-06-16 14:57:33.600697-05 275 12 397 Yost Ice Arena (1016 South State Street, Ann Arbor, MI 48104) 1 2796 2010-06-16 14:57:36.743476-05 275 18 196 Yost Ice Arena 1 2797 2010-06-16 14:58:11.504664-05 275 12 398 Cliff Keen Arena (1000 South State Street, Ann Arbor, MI 48109-2201) 1 2798 2010-06-16 14:58:15.078327-05 275 18 197 Cliff Keen Arena 1 2799 2010-06-16 14:59:15.410519-05 275 12 399 Brselin Center (1 Birch Road, East Lansing, MI 48824) 1 2800 2010-06-16 14:59:17.369573-05 275 18 198 Brselin Center 1 2801 2010-06-16 15:00:02.363709-05 275 12 400 Munn Ice Arena (1407 South Harrison Road, East Lansing, MI 48824) 1 2802 2010-06-16 15:00:04.2673-05 275 18 199 Munn Ice Arena 1 2803 2010-06-16 15:00:37.922286-05 275 12 401 Spartan Stadium (248 Jenison Fieldhouse, East Lansing, MI 48824) 1 2804 2010-06-16 15:00:39.51068-05 275 18 200 Spartan Stadium 1 2805 2010-06-17 09:51:44.050342-05 22 13 77 Pioneer Clubs 2 Changed banner. 2806 2010-06-17 10:58:42.903358-05 261 12 402 (29 N 7th Street, Minneapolis, MN 55403) 1 2807 2010-06-17 10:58:45.753785-05 261 18 201 7th Street Entry 1 2808 2010-06-17 11:00:04.285299-05 261 12 403 (88 17th Street North, Minneapolis, MN 55403) 1 2809 2010-06-17 11:00:07.225919-05 261 18 202 Basilica of St Mary 1 2810 2010-06-17 11:01:03.390093-05 261 12 404 (1785 Highway 210, Carlton, MN 55718) 1 2811 2010-06-17 11:01:05.649878-05 261 18 203 Black Bear Casino Resort 1 2812 2010-06-17 11:01:58.390889-05 261 12 405 (761 Washington Ave. North, Minneapolis, MN 55401) 1 2813 2010-06-17 11:02:01.246802-05 261 18 204 Bunkers 1 2814 2010-06-17 11:02:51.131426-05 261 12 406 (12600 Nicollet Ave, Burnsville, MN 55337) 1 2815 2010-06-17 11:02:53.399106-05 261 18 205 Burnsville Performing Arts Center 1 2816 2010-06-17 11:03:34.828447-05 261 12 407 (917 Cedar Ave, Minneapolis, MN 55404) 1 2817 2010-06-17 11:03:38.032402-05 261 18 206 Cabooze 1 2818 2010-06-17 11:04:22.480509-05 261 12 408 (1100 Canterbury Park, Shakopee, MN 55379) 1 2819 2010-06-17 11:04:25.454249-05 261 18 207 Canterbury Park 1 2820 2010-06-17 11:05:18.66903-05 261 12 409 (416 Cedar Avenue Sout, Minneapolis, MN 55454) 1 2821 2010-06-17 11:05:22.285984-05 261 18 208 Cedar Cultural Center 1 2822 2010-06-17 11:06:01.62108-05 261 12 410 (350 Harbor Drive, Duluth, MN 55802) 1 2823 2010-06-17 11:06:05.093015-05 261 18 209 DECC Arena 1 2824 2010-06-17 11:06:45.468744-05 261 12 411 (350 Harbor Drive, Duluth, MN 55802) 1 2825 2010-06-17 11:06:48.561497-05 261 18 210 DECC Auditorium 1 2826 2010-06-17 11:07:37.666113-05 261 12 412 (318 First Avenue North, Minneapolis, MN 55401) 1 2827 2010-06-17 11:07:40.448011-05 261 18 211 Fine Line Music Cafe 1 2828 2010-06-17 11:08:21.207683-05 261 12 413 (701 First Avenue North, Minneapolis, MN 55403) 1 2829 2010-06-17 11:08:23.781292-05 261 18 212 First Avenue 1 2830 2010-06-17 11:09:08.735439-05 261 12 414 (10 E Exchange St., St Paul, MN 55101) 1 2831 2010-06-17 11:09:11.42946-05 261 18 213 Fitzgerald Theater 1 2832 2010-06-17 11:09:57.821466-05 261 12 415 (777 Lady Luck Dr, Hinkley, MN 55037) 1 2833 2010-06-17 11:10:00.406949-05 261 18 214 Grand Casino Hinckley Amphitheater 1 2834 2010-06-17 11:10:45.486578-05 261 12 416 (777 Lady Luck Dr, Hinkley, MN 55037) 1 2835 2010-06-17 11:10:48.510763-05 261 18 215 Grand Casino Hinckley Event Center 1 2836 2010-06-17 11:11:55.880247-05 261 12 417 (777 Grand Avenue, Onamia, MN 55037) 1 2837 2010-06-17 11:12:00.047143-05 261 18 216 Grand casino Mille Lacs Event Center 1 2838 2010-06-17 11:12:39.393191-05 275 12 418 Rangers Ballpark in Arlington (1000 Ballpark Way, Arlington, TX 76011) 1 2839 2010-06-17 11:12:52.699825-05 275 18 217 Rangers Ballpark in Arlington 1 2840 2010-06-17 11:13:46.879488-05 275 12 419 Cowboys Stadium (900 E Randol Mill Rd, Arlington, TX 76011) 1 2841 2010-06-17 11:14:00.206757-05 261 12 420 (Stadium Dr, Duluth, MN 55812) 1 2842 2010-06-17 11:14:01.510545-05 275 18 218 Cowboys Stadium 1 2843 2010-06-17 11:14:03.795668-05 261 18 219 Griggs Field 1 2844 2010-06-17 11:14:52.849071-05 261 12 421 (824 Hennepin Ave., Minneapolis, MN 55403) 1 2845 2010-06-17 11:14:55.18738-05 261 18 220 Hennepin Stages 1 2846 2010-06-17 11:14:56.439776-05 275 12 422 American Airlines Center (2500 Victory Avenue, Dallas, TX 75201) 1 2847 2010-06-17 11:15:00.057955-05 275 18 221 American Airlines Center 1 2848 2010-06-17 11:15:42.352816-05 261 12 423 (Intersection of 12th st. and 4th ave., Saint Cloud, MN 56301) 1 2849 2010-06-17 11:15:44.704712-05 275 12 424 Pizza Hut Park (9200 World Cup Way, Frisco, TX 75034-4958) 1 2850 2010-06-17 11:15:45.886379-05 261 18 222 Husky Stadium 1 2851 2010-06-17 11:15:46.992913-05 275 18 223 Pizza Hut Park 1 2852 2010-06-17 11:15:48.462113-05 261 18 222 Husky Stadium 2 No fields changed. 2853 2010-06-17 11:16:50.466993-05 261 12 425 (39375 County Hwy 24, Morton, MN 56270) 1 2854 2010-06-17 11:16:52.107441-05 261 18 224 Jackpot Junction Casino Hotel 1 2855 2010-06-17 11:16:52.659512-05 275 12 426 Morton H. Meyerson Symphony Center (2301 Flora, Dallas , TX 75201) 1 2856 2010-06-17 11:16:54.557005-05 275 18 225 Morton H. Meyerson Symphony Center 1 2857 2010-06-17 11:17:42.79583-05 261 12 427 (101 W. Bayfield Street, Washburn, WI 54891) 1 2858 2010-06-17 11:17:44.718262-05 261 18 226 Lake Superior Big Top Chautauqua 1 2859 2010-06-17 11:17:54.729992-05 275 12 428 AT&T Performing Arts Center (2100 Ross Avenue, Dallas , TX 75201) 1 2860 2010-06-17 11:17:57.504448-05 275 18 227 AT&T Performing Arts Center 1 2861 2010-06-17 11:18:20.06734-05 261 12 429 (Intersection of 5th and Sibley Street, Saint Paul, MN 55101) 1 2862 2010-06-17 11:18:43.356754-05 275 12 430 House of Blues Dallas (2200 N. Lamar Street, Dallas , TX 75202) 1 2863 2010-06-17 11:18:44.894968-05 275 18 228 House of Blues Dallas 1 2864 2010-06-17 11:18:53.518452-05 261 12 431 (Intersection of 5th and Sibley Street, St Paul, MN 55101) 1 2865 2010-06-17 11:18:56.014401-05 261 18 229 Lowertown 1 2866 2010-06-17 11:19:26.68285-05 275 12 432 Granada Theater (3524 Greenville Avenue, Dallas , TX 75206) 1 2867 2010-06-17 11:19:29.172692-05 275 18 230 Granada Theater 1 2868 2010-06-17 11:20:05.343781-05 261 12 433 (500 South 11th Avenue, Minneapolis, MN 55415) 1 2869 2010-06-17 11:20:07.240108-05 261 18 231 Mall of America Field at the Hubert H. Humphrey Metrodome 1 2870 2010-06-17 11:20:16.110816-05 275 12 434 Palladium Ballroom (1135 South Lamar, Dallas , TX 75215) 1 2871 2010-06-17 11:20:19.579704-05 275 18 232 Palladium Ballroom 1 2872 2010-06-17 11:20:57.098012-05 261 12 435 (30 Civic Center Drive SE, Rochester, MN 55904) 1 2873 2010-06-17 11:21:00.122978-05 261 18 233 Mayo Civic Center Auditorium 1 2874 2010-06-17 11:21:59.654846-05 261 12 436 (30 Civic Center Drive SE, Rochester, MN 55904) 1 2875 2010-06-17 11:22:02.374886-05 261 18 234 Mayo Civic Center Presentation Hall 1 2876 2010-06-17 11:22:54.133744-05 261 12 437 (1265 Snelling Ave, St Paul, MN 55108) 1 2877 2010-06-17 11:22:57.984177-05 261 18 235 Minnesota State Fair Grandstand 1 2878 2010-06-17 11:23:43.498862-05 261 12 438 (13000 Zoo Boulevard, Apple Valley, MN 55124) 1 2879 2010-06-17 11:23:47.193596-05 261 18 236 Minnesota Zoo Amphitheater 1 2880 2010-06-17 11:24:44.955159-05 261 12 439 (2400 Mystic Lake Blvd, Prior Lake, MN 55372) 1 2881 2010-06-17 11:24:48.077254-05 261 18 237 Mystic Lake Casino Hotel 1 2882 2010-06-17 11:25:29.388705-05 261 12 440 (Intersection of 12th st. and 4th ave., Saint Cloud, mn 56301) 1 2883 2010-06-17 11:25:31.826147-05 261 18 238 National Hockey Center 1 2884 2010-06-17 11:26:19.0955-05 261 12 441 (910 Hennepin Avenue, Minneapolis, MN 55403) 1 2885 2010-06-17 11:26:21.079153-05 261 18 239 Orpheum Theatre 1 2886 2010-06-17 11:27:08.166958-05 261 12 442 (710 Hennepin Ave, Minneapolis, MN 55403) 1 2887 2010-06-17 11:27:10.220984-05 261 18 240 Pantages Theatre 1 2888 2010-06-17 11:28:03.311483-05 261 12 443 (310 West Rock Street, Mankato, MN 56001) 1 2889 2010-06-17 11:28:06.836416-05 261 18 241 Riverfront Park 1 2890 2010-06-17 11:28:48.364298-05 261 12 444 (1820 Raleigh Road, Somerset, WI 54025) 1 2891 2010-06-17 11:28:51.298503-05 261 18 242 Rivers Edge 1 2892 2010-06-17 11:29:48.022279-05 261 12 445 (175 West Kellogg Blvd, St Paul, MN 55102) 1 2893 2010-06-17 11:29:52.301323-05 261 18 243 Roy Wilkins Auditorium at St. Paul RiverCentre 1 2894 2010-06-17 11:30:33.526977-05 261 12 446 (805 Hennepin Ave, Minneapolis, MN 55402) 1 2895 2010-06-17 11:30:35.976441-05 261 18 244 State Theatre 1 2896 2010-06-17 11:31:29.929394-05 261 12 447 (201 East 4th Street, Saint Paul, MN 55101) 1 2897 2010-06-17 11:31:33.533743-05 261 18 245 Station 4 1 2898 2010-06-17 11:32:19.920742-05 261 12 448 (2009 University Ave SE, Minneapolis, MN 55455) 1 2899 2010-06-17 11:32:21.891553-05 261 18 246 TCF Bank Stadium 1 2900 2010-06-17 11:33:28.462222-05 261 12 449 (600 1st Avenue North, Minneapolis, MN 55403) 1 2901 2010-06-17 11:33:30.327603-05 261 18 247 Target Center 1 2902 2010-06-17 11:34:25.332729-05 261 12 450 (7121 10th Street North, Oakdale, MN 55128) 1 2903 2010-06-17 11:34:27.457901-05 261 18 248 The Bierstube 1 2904 2010-06-17 11:35:26.833702-05 261 12 451 (2004 Randolph Ave, Saint Paul, MN 55454) 1 2905 2010-06-17 11:35:29.270012-05 261 18 249 The O'Shaughnessy 1 2906 2010-06-17 11:36:21.304766-05 261 12 452 (629 Cedar Avenue, Minneapolis, MN 55454) 1 2907 2010-06-17 11:36:23.001073-05 261 18 250 Triple Rock Social Club 1 2908 2010-06-17 11:37:12.050311-05 261 12 453 (21778 Highview Avenue, Lakeville, MN 55044) 1 2909 2010-06-17 11:37:13.807951-05 261 18 251 Tumbleweed Express Minneapolis 1 2910 2010-06-17 11:37:53.868843-05 261 12 454 (1601 University Avenue, St Paul, MN 55108) 1 2911 2010-06-17 11:37:55.756075-05 261 18 252 Turf Club 1 2912 2010-06-17 11:38:46.322493-05 261 12 456 (1308 SE 4th Street, Minneapolis, MN 55414) 1 2913 2010-06-17 11:38:48.447459-05 261 18 253 Varsity Theater 1 2914 2010-06-17 11:39:35.754731-05 261 12 457 (199 Kellogg Blvd., Saint Paul, MN 55102) 1 2915 2010-06-17 11:39:39.185378-05 261 18 254 Xcel Energy Center 1 2916 2010-06-17 12:06:05.481144-05 22 19 125 Chicago Cubs vs. Pittsburgh Pirates 2 Changed title. 2917 2010-06-17 12:06:52.109306-05 22 14 180 180 2 Changed seating_info and details for tix "4 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 2918 2010-06-17 12:22:57.710255-05 6 14 180 180 2 Changed featured and letter_date. Changed details for tix "4 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 2919 2010-06-17 12:23:17.371854-05 6 14 180 180 2 Changed status. 2920 2010-06-17 12:23:21.002273-05 22 14 180 180 2 Changed status. 2921 2010-06-17 12:26:11.534682-05 22 13 8 Imerman Angels 2 Changed banner. 2922 2010-06-17 12:26:57.819025-05 22 13 8 Imerman Angels 2 Changed description. 2923 2010-06-17 12:38:43.591343-05 22 13 78 Noreen Fraser Foundation 1 2924 2010-06-17 13:07:24.835975-05 124 12 458 Staples Center ( 1111 S. Figueroa Street , Los Angeles, CA 90015) 1 2925 2010-06-17 13:07:52.173319-05 124 18 255 Staples Center 1 2926 2010-06-17 13:11:17.610687-05 124 12 459 Performing Arts Center of Los Angeles (135 North Grand Ave, Los Angeles, CA 90012) 1 2927 2010-06-17 13:11:31.769524-05 124 18 256 Performing Arts Center of Los Angeles 1 2928 2010-06-17 13:13:44.860716-05 124 12 460 Nokia Theatre (777 Chick Hearn Court, Los Angeles, CA 90015) 1 2929 2010-06-17 13:13:57.103671-05 124 18 257 Nokia Theatre 1 2930 2010-06-17 13:18:48.114318-05 124 12 461 Kodak Theatre (6801 Hollywood Boulevard, Los Angeles, CA 90028) 1 2931 2010-06-17 13:19:01.630425-05 124 18 258 Kodak Theatre 1 2932 2010-06-17 13:22:11.979141-05 124 12 462 Gibson Amphitheatre (100 Universal City Plaza, Universal City, CA 91608) 1 2933 2010-06-17 13:22:23.840265-05 124 18 259 Gibson Amphitheatre 1 2934 2010-06-17 13:25:27.315261-05 124 12 463 Los Angeles Coliseum (3911 South Figueroa Street, Los Angeles, CA 90037) 1 2935 2010-06-17 13:25:43.027575-05 124 18 260 Los Angeles Coliseum 1 2936 2010-06-17 13:27:29.766332-05 124 12 464 Rose Bowl Stadium (1001 Rose Bowl Drive, Pasadena, CA 91103) 1 2937 2010-06-17 13:27:35.224908-05 124 18 261 Rose Bowl Stadium 1 2938 2010-06-17 13:29:26.145608-05 124 12 465 Verizon Wireless Amphitheatre (8808 Irvine Center Drive, Irvine, CA 92618) 1 2939 2010-06-17 13:29:31.899356-05 124 18 262 Verizon Wireless Amphitheatre 1 2940 2010-06-17 13:35:24.581403-05 124 12 466 Avalon (1735 North Vine Street, Los Angeles, CA 90028) 1 2941 2010-06-17 13:36:10.266613-05 124 18 263 Avalon 1 2942 2010-06-17 13:39:00.059436-05 124 12 467 Fairplex (1101 W McKinley Avenue, Pomona, CA 91768) 1 2943 2010-06-17 13:39:05.045172-05 124 18 264 Fairplex 1 2944 2010-06-17 13:41:08.421876-05 124 12 468 Greek Theatre (2700 N Vermont Ave, Los Angeles, CA 90027) 1 2945 2010-06-17 13:41:13.98649-05 124 18 265 Greek Theatre 1 2946 2010-06-17 13:44:43.402555-05 124 12 469 Hollywood Bowl (2301 North Highland Avenue, Hollywood, CA 90068) 1 2947 2010-06-17 13:44:47.614251-05 124 18 266 Hollywood Bowl 1 2948 2010-06-17 13:48:30.545655-05 124 12 470 Home Depot Center (18400 S Avalon Blvd, Carson, CA 90746) 1 2949 2010-06-17 13:48:35.516282-05 124 18 267 Home Depot Center 1 2951 2010-06-17 13:52:18.300994-05 124 12 471 Honda Center (2695 E Katella Ave, Anaheim, CA 92806) 1 2952 2010-06-17 13:52:26.183323-05 124 18 268 Honda Center 1 2953 2010-06-17 13:53:57.46152-05 275 12 472 Citizens Bank Park (1 Citizens Bank Way, Philadelphia, PA 19148) 1 2954 2010-06-17 13:53:59.187163-05 275 18 269 Citizens Bank Park 1 2955 2010-06-17 13:54:38.686826-05 275 12 473 Wachovia Center (3601 S. Broad Street, Philadelphia, PA 19148) 1 2956 2010-06-17 13:54:40.657133-05 275 18 270 Wachovia Center 1 2957 2010-06-17 13:55:10.773703-05 124 12 474 Key Club Hollywood (9039 Sunset Blvd, West Hollywood, CA 90069) 1 2958 2010-06-17 13:55:16.51788-05 124 18 271 Key Club Hollywood 1 2959 2010-06-17 13:55:35.36677-05 275 12 475 Lincoln Financial Field (1020 Pattison Avenue, Philadelphia, PA 19148) 1 2960 2010-06-17 13:55:38.182563-05 275 18 272 Lincoln Financial Field 1 2961 2010-06-17 13:57:00.93156-05 275 12 476 PPL Park (1 Stadium Drive, Chester, PA 19013-1940) 1 2962 2010-06-17 14:00:19.817544-05 275 18 273 PPL Park 1 2963 2010-06-17 14:02:03.433469-05 275 12 477 Kimmel Center for the Performing Arts (260 South Broad Street, Philadelphia, PA 19148) 1 2964 2010-06-17 14:02:04.746486-05 275 18 274 Kimmel Center for the Performing Arts 1 2965 2010-06-17 14:02:40.088394-05 124 12 478 Ahmanson Theatre (135 North Grand Ave, Los Angeles, CA 90012) 1 2966 2010-06-17 14:02:45.79148-05 275 12 479 Electric Factory (421 North 7th Street , Philadelphia, PA 19123) 1 2967 2010-06-17 14:02:47.846963-05 275 18 275 Electric Factory 1 2968 2010-06-17 14:02:48.477526-05 124 18 276 Ahmanson Theatre 1 2969 2010-06-17 14:03:31.395772-05 275 12 480 Trocadero Theatre (1003 Arch Street, Philadelphia, PA 19107) 1 2970 2010-06-17 14:03:32.841472-05 275 18 277 Trocadero Theatre 1 2971 2010-06-17 14:04:41.257086-05 275 12 481 Mohegan Sun Arena at Casey Plaza (255 Highland Park Blvd, Wilkes-Barre, PA 18702) 1 2972 2010-06-17 14:04:45.860936-05 275 18 278 Mohegan Sun Arena at Casey Plaza 1 2973 2010-06-17 14:05:11.089501-05 124 12 482 Canyon Club (28912 Roadside Drive, Agoura Hills, CA 91301) 1 2974 2010-06-17 14:05:38.698508-05 275 12 483 The Mann Center (52nd and Parkside, Philadelphia, PA 19131) 1 2975 2010-06-17 14:05:43.139087-05 275 18 279 The Mann Center 1 2976 2010-06-17 14:06:03.075072-05 124 18 280 Canyon Club 1 2977 2010-06-17 14:07:10.06048-05 124 12 484 Dorothy Chandler Pavilion (135 North Grand Ave, Los Angeles, CA 90012) 1 2978 2010-06-17 14:07:15.157509-05 124 18 281 Dorothy Chandler Pavilion 1 2979 2010-06-17 14:07:20.960366-05 275 12 485 (127 Bryce Jordan Center, University Park, PA 16802) 1 2980 2010-06-17 14:07:22.830643-05 275 18 282 Bryce Jordan Center 1 2981 2010-06-17 14:09:30.151747-05 275 12 486 River Stage at Great Plaza (Chestnut St and Columbus Blvd, Philadelphia, PA 19106) 1 2982 2010-06-17 14:09:33.621127-05 275 18 283 River Stage at Great Plaza 1 2983 2010-06-17 14:10:05.586913-05 124 12 487 The Grove of Anaheim (2200 East Katella Avenue, Anaheim, CA 92806) 1 2984 2010-06-17 14:10:16.437993-05 124 18 284 The Grove of Anaheim 1 2985 2010-06-17 14:10:21.059875-05 275 12 488 Sovereign Performing Arts Center (136 North 6th Street, Reading , PA 19601) 1 2986 2010-06-17 14:10:23.090564-05 275 18 285 Sovereign Performing Arts Center 1 2987 2010-06-17 14:13:45.257783-05 124 12 489 House of Blues Anaheim (1530 S. Disneyland Drive, Anaheim, CA 92802) 1 2988 2010-06-17 14:14:15.496949-05 124 18 286 House of Blues Anaheim 1 2989 2010-06-17 14:15:20.741583-05 6 14 166 166 2 Changed price for tix "2 tix 4 The 2010 U.S. Open Championship". 2990 2010-06-17 14:16:00.943833-05 124 12 490 House of Blues West Hollywood (8430 Sunset Blvd., West Hollywood, CA 90069) 1 2991 2010-06-17 14:16:05.834371-05 124 18 287 House of Blues West Hollywood 1 2992 2010-06-18 09:34:06.435726-05 124 14 181 181 2 Changed letter_date. Changed details for tix "2 tix 4 Billy Elliot Balcony Center". 2993 2010-06-18 09:37:42.615539-05 124 14 181 181 2 Changed seating_info for tix "2 tix 4 Billy Elliot Balcony Center". 2994 2010-06-18 09:38:33.353338-05 124 14 181 181 2 No fields changed. 2995 2010-06-18 09:41:58.800943-05 124 14 181 181 2 Changed status and featured. 2996 2010-06-18 09:43:23.33983-05 124 14 176 176 2 Changed status and featured. 2997 2010-06-18 09:43:56.128372-05 124 14 177 177 2 Changed status and featured. 2998 2010-06-18 10:36:18.21923-05 275 12 491 Great American Ball Park (100 Joe Nuxhall Way, Cincinnati, OH 45202) 1 2999 2010-06-18 10:36:26.722148-05 275 18 288 Great American Ball Park 1 3000 2010-06-18 10:37:21.321635-05 275 12 492 Paul Brown Stadium (1 Paul Brown Stadium, Cincinnati, OH 45202) 1 3001 2010-06-18 10:37:22.39848-05 275 18 289 Paul Brown Stadium 1 3002 2010-06-18 10:38:01.345668-05 275 12 493 US Bank Arena (100 Broadway Street, Cincinnati, OH 45202) 1 3003 2010-06-18 10:38:03.52226-05 275 18 290 US Bank Arena 1 3004 2010-06-18 10:38:55.917738-05 275 12 494 Riverbend Music Center (6295 Kellogg Ave, Cincinnati, OH 45230) 1 3005 2010-06-18 10:39:00.840734-05 275 18 291 Riverbend Music Center 1 3006 2010-06-18 10:40:14.249627-05 275 12 495 Procter and Gamble Hall (650 Walnut Street, Cincinnati, OH 45202) 1 3007 2010-06-18 10:40:17.695288-05 275 18 292 Procter and Gamble Hall 1 3008 2010-06-18 10:43:52.678054-05 275 12 496 Fraze Pavilion (695 Lincoln Park Blvd, Kettering, OH 45429) 1 3009 2010-06-18 10:43:59.729627-05 275 18 293 Fraze Pavilion 1 3010 2010-06-18 10:58:08.72638-05 275 12 497 Nippert Stadium (2700 Bearcats Way, Cincinnati, OH 45221) 1 3011 2010-06-18 10:58:18.419649-05 275 18 294 Nippert Stadium 1 3012 2010-06-18 11:22:12.891121-05 275 12 498 Quicken Loans Arena (1 Center Court, Cleveland, OH 44115) 1 3013 2010-06-18 11:22:15.846629-05 275 18 295 Quicken Loans Arena 1 3014 2010-06-18 11:22:51.125751-05 275 12 499 Progressive Field (2401 Ontario Street, Cleveland, OH 44115) 1 3015 2010-06-18 11:25:11.321953-05 275 18 296 Progressive Field 1 3016 2010-06-18 11:25:48.692656-05 275 12 500 Cleveland Browns Stadium (100 Alfred Lerner Way, Cleveland, OH 44114) 1 3017 2010-06-18 11:25:52.608548-05 275 18 297 Cleveland Browns Stadium 1 3018 2010-06-18 11:27:12.771156-05 275 12 501 Playhouse Square Center (1501 Euclid Avenue, Cleveland, OH 44115) 1 3019 2010-06-18 11:27:36.119938-05 275 18 298 Playhouse Square Center 1 3020 2010-06-18 11:28:49.729426-05 275 12 502 Blossom Music Center (1145 W. Steels Corners Rd, Cuyahoga Falls, OH 44223) 1 3021 2010-06-18 11:28:54.125385-05 275 18 299 Blossom Music Center 1 3022 2010-06-18 11:29:30.640812-05 275 12 503 House of Blues Cleveland (308 Euclid Avenue, Cleveland, OH 44114) 1 3023 2010-06-18 11:29:42.762872-05 275 18 300 House of Blues Cleveland 1 3024 2010-06-18 11:34:14.672457-05 22 13 77 Pioneer Clubs 2 Changed banner. 3025 2010-06-18 11:35:01.518875-05 22 13 77 Pioneer Clubs 2 Changed banner. 3026 2010-06-18 13:53:00.504509-05 123 12 504 Hyundai Pavilion (2575 Glen Helen Parkway, Devore, CA 92407) 1 3027 2010-06-18 13:55:47.146356-05 123 18 301 Hyundai Pavilion 1 3028 2010-06-18 13:58:37.526878-05 123 12 505 Kirk Douglas Theatre (9820 Washington Blvd., Culver City, CA 90232) 1 3029 2010-06-18 13:58:45.10184-05 123 18 302 Kirk Douglas Theatre 1 3030 2010-06-18 14:01:51.781313-05 123 12 506 Los Angeles Convention Center (1201 South Figueroa Street, Los Angeles, CA 90015) 1 3031 2010-06-18 14:01:59.398725-05 123 18 303 Los Angeles Convention Center 1 3032 2010-06-18 14:04:11.715194-05 123 12 507 Music Center (135 North Grand Ave, Los Angeles, CA 90012) 1 3033 2010-06-18 14:04:18.030181-05 123 18 304 Music Center 1 3034 2010-06-18 14:06:49.235661-05 123 12 508 Odyssey Theatre (2055 S. Sepulveda Blvd., Los Angeles, CA 90025) 1 3035 2010-06-18 14:07:01.132185-05 123 18 305 Odyssey Theatre 1 3036 2010-06-18 14:09:23.743472-05 123 12 509 Orange County Fairgrounds & Exposition Center (88 Fair Drive, Costa Mesa, CA 92626) 1 3037 2010-06-18 14:09:42.374492-05 123 18 306 Orange County Fairgrounds & Exposition Center 1 3038 2010-06-18 14:11:53.078073-05 123 12 510 Orange County Performing Arts Center (600 Town Center Drive, Costa Mesa, CA 92626) 1 3039 2010-06-18 14:12:01.160652-05 123 18 307 Orange County Performing Arts Center 1 3040 2010-06-18 14:14:13.700936-05 123 12 511 Pantages Theatre (6233 Hollywood Boulevard, Los Angeles, CA 90028) 1 3041 2010-06-18 14:14:27.858807-05 123 18 308 Pantages Theatre 1 3042 2010-06-18 14:17:24.255453-05 123 12 512 Roxy Theatre (9009 Sunset Boulevard, West Hollywood, CA 90069) 1 3043 2010-06-18 14:18:16.071999-05 123 18 309 Roxy Theatre 1 3044 2010-06-18 14:20:08.47112-05 123 12 513 Santa Monica Civic Auditorium (1855 Main Street, Santa Monica, CA 90401) 1 3045 2010-06-18 14:20:31.423357-05 123 18 310 Santa Monica Civic Auditorium 1 3046 2010-06-18 14:21:10.689087-05 6 14 168 168 2 Changed featured. 3047 2010-06-18 14:21:31.520739-05 6 14 171 171 2 Changed featured. 3048 2010-06-18 14:23:33.162067-05 123 12 514 Shrine Auditorium and Expo Center (665 W Jefferson Blvd, Los Angeles, CA 90007) 1 3049 2010-06-18 14:23:46.000662-05 123 18 311 Shrine Auditorium and Expo Center 1 3050 2010-06-18 14:25:44.732715-05 123 12 515 Troubador (9081 Santa Monica Blvd, West Hollywood, CA 90069) 1 3051 2010-06-18 14:25:57.61111-05 123 18 312 Troubador 1 3052 2010-06-18 14:28:28.787683-05 123 12 516 Walt Disney Hall (135 North Grand Ave, Los Angeles, CA 90012) 1 3053 2010-06-18 14:28:39.959883-05 123 18 313 Walt Disney Hall 1 3054 2010-06-18 14:32:36.651547-05 123 12 517 Wiltern (3790 Wilshire Blvd, Los Angeles, CA 90010) 1 3055 2010-06-18 14:32:59.4132-05 123 18 314 Wiltern 1 3056 2010-06-18 15:04:51.410069-05 22 13 77 Pioneer Clubs 2 No fields changed. 3057 2010-06-18 15:20:38.025675-05 6 14 177 177 2 No fields changed. 3058 2010-06-18 15:23:40.299416-05 22 14 177 177 2 Deleted tix "4 tix 4 Mike Young Stand-Up Comedy". 3059 2010-06-18 16:29:46.521333-05 22 14 181 181 2 Changed distribution_date and distrubution_notes. 3060 2010-06-18 16:30:19.980502-05 22 17 78 Purchase #78 by awennink@aol.com 2 Payment captured successful. 3061 2010-06-20 16:19:36.676133-05 30 14 178 178 2 Changed count for tix "4 tix 4 In Tune With Trees Summer Concert Series: Kenny Loggins with special guest Malea McGuinness". 3062 2010-06-20 16:28:24.325206-05 30 14 182 182 1 3063 2010-06-20 21:48:02.759324-05 6 14 166 166 2 Changed status. 3064 2010-06-20 21:48:31.247645-05 6 14 166 166 2 Changed featured. 3065 2010-06-20 21:50:04.518821-05 6 14 182 182 2 Changed status. 3066 2010-06-20 21:50:22.90797-05 6 14 182 182 2 No fields changed. 3067 2010-06-21 10:06:20.245418-05 6 17 79 Purchase #79 by jkoranda@tix4cause.com 2 Payment captured successful. 3068 2010-06-21 10:24:39.171732-05 261 12 521 (1 AT&T Center, San Antonio, TX 78219) 1 3069 2010-06-21 10:24:43.14414-05 261 18 315 AT&T Center 1 3070 2010-06-21 10:25:27.235996-05 261 12 522 (100 Montana St, San Antonio, TX 78203) 1 3071 2010-06-21 10:25:30.189434-05 261 18 316 Alamodome 1 3072 2010-06-21 10:25:43.369775-05 6 14 179 179 2 Changed status and featured. 3073 2010-06-21 10:26:17.055154-05 261 12 523 (1901 North Shorline, Corpus Christi, TX 78401) 1 3074 2010-06-21 10:26:19.08711-05 261 18 317 American Bank Center Arena 1 3075 2010-06-21 10:27:08.822268-05 261 12 524 (13101 W. Highway 71, Austin, TX 78738) 1 3076 2010-06-21 10:27:12.78371-05 261 18 318 Austin Music Hall 1 3077 2010-06-21 10:28:00.869979-05 261 12 525 (401 E. Jackson St., Burnet, TX 78611) 1 3078 2010-06-21 10:28:03.050588-05 261 18 319 Austin Steam Train at Burnet Community Center 1 3079 2010-06-21 10:28:48.206776-05 261 12 526 (23rd Street & Dedman Dr., Austin, TX 78701) 1 3080 2010-06-21 10:28:50.583191-05 261 18 320 Bass Concert Hall 1 3081 2010-06-21 10:29:35.602463-05 261 12 527 (1800 Congress St., Austin, TX 78701) 1 3082 2010-06-21 10:29:39.40502-05 261 18 321 Bob Bullock Texas State History Museum 1 3083 2010-06-21 10:30:29.155052-05 261 12 528 (7959 Fredericksburg Rd, San Antonio, TX 78229) 1 3084 2010-06-21 10:30:31.407577-05 261 18 322 Club Antro 1 3085 2010-06-21 10:31:47.67852-05 261 12 529 (8120 Research Blvd #100, Austin, TX 78613) 1 3086 2010-06-21 10:31:49.740409-05 261 18 323 Capitol City Comedy Club 1 3087 2010-06-21 10:32:38.787827-05 261 12 530 (2100 Avenue of the Stars, Cedar Park, TX 78613) 1 3088 2010-06-21 10:32:41.33406-05 261 18 324 Cedar Park Center 1 3089 2010-06-21 10:33:35.581243-05 261 12 531 (226 N. St. Mary's Street, San Antonio, TX 78205) 1 3090 2010-06-21 10:33:40.278506-05 261 18 325 Charline McCombs Empire Theatre 1 3091 2010-06-21 10:34:18.956953-05 261 12 532 (Address, San Antonio, TX 78216) 1 3092 2010-06-21 10:34:22.48245-05 261 18 326 Coker United Methodist Church 1 3093 2010-06-21 10:35:09.752579-05 261 12 533 (800 Concrete Street, Corpus Christi, TX 78401) 1 3094 2010-06-21 10:35:14.371403-05 261 18 327 Concrete Street Amphitheater 1 3095 2010-06-21 10:36:19.400072-05 261 12 534 (3030 N.E. Loop 410, San Antonio, TX 78217) 1 3096 2010-06-21 10:36:24.927249-05 261 18 328 Cowboys Dancehall 1 3097 2010-06-21 10:37:04.919376-05 261 12 535 (603 Red River St., Austin, TX 78701) 1 3098 2010-06-21 10:38:35.09572-05 261 18 329 Emos Austin 1 3099 2010-06-21 10:39:35.882346-05 261 12 536 (1701 Red River St., Austin, TX 78768) 1 3100 2010-06-21 10:39:38.109919-05 261 18 330 Frank Erwin Center 1 3101 2010-06-21 10:40:31.625901-05 261 12 537 (3201 E Houston St., San Antonio, TX 78219) 1 3102 2010-06-21 10:40:34.542752-05 261 18 331 Freeman Coliseum 1 3103 2010-06-21 10:46:17.894404-05 261 12 538 (1630 Goliad Rd, San Antonio, TX 78223) 1 3104 2010-06-21 10:46:20.407106-05 261 18 332 Good Shepherd Lutheran Church Activity Center 1 3105 2010-06-21 10:47:13.321602-05 261 12 539 (1174 E. Commerce, San Antonio, TX 78205) 1 3106 2010-06-21 10:47:15.621956-05 261 18 333 Historic Sunset Station 1 3107 2010-06-21 10:48:08.333657-05 261 12 540 (226 N Hackberry, San Antonio, TX 78202) 1 3108 2010-06-21 10:48:10.452999-05 261 18 334 Jo Long Theatre 1 3109 2010-06-21 10:48:51.938668-05 261 12 541 (6700 Arena Blvd., Laredo, TX 78202) 1 3110 2010-06-21 10:48:55.237158-05 261 18 335 Laredo Enerby Arena 1 3111 2010-06-21 10:49:40.843954-05 261 12 542 (715 Stadium Drive, San Antonio, TX 78212) 1 3112 2010-06-21 10:49:44.154722-05 261 18 336 Laurie Auditorium 1 3113 2010-06-21 10:50:29.565152-05 261 12 543 (226 N Hackberry, San Antonio, TX 78202) 1 3114 2010-06-21 10:50:33.68163-05 261 18 337 Little Carver Theatre 1 3115 2010-06-21 10:51:55.144178-05 261 12 544 (1174 E. Commerce, San Antonio, TX 78203) 1 3116 2010-06-21 10:51:56.88179-05 261 18 338 Lonestar Pavilion at Sunset Station 1 3117 2010-06-21 10:52:59.0769-05 261 12 545 (226 East Houston Street, San Antonio, TX 78205) 1 3118 2010-06-21 10:53:00.789485-05 261 18 339 Majestic Theatre San Antonio 1 3119 2010-06-21 10:54:06.144135-05 261 12 546 (1300 S. 10th St., McAllen, TX 78501) 1 3120 2010-06-21 10:54:07.927529-05 261 18 340 McAllen International Civic Center 1 3121 2010-06-21 10:55:01.514526-05 261 12 547 (713 Congress Ave, Austin, TX 78501) 1 3122 2010-06-21 10:55:05.804867-05 261 18 341 Paramount Theatre for the Performing Arts 1 3123 2010-06-21 10:55:58.027655-05 261 12 548 (100 Auditorium Cir, San Antonio, TX 78205) 1 3124 2010-06-21 10:55:59.767233-05 261 18 342 San Antonio Municipal Auditorium 1 3125 2010-06-21 10:56:54.749576-05 261 12 549 (1901 North Shorline, Corpus Christi, TX 78401) 1 3126 2010-06-21 10:56:59.148177-05 261 18 343 Selena Auditorium at the American Bank Center 1 3127 2010-06-21 10:57:39.967096-05 261 12 550 ( , Hidalgo, TX 78557) 1 3128 2010-06-21 10:57:44.730222-05 261 18 344 State Farm Arena 1 3129 2010-06-21 10:58:38.224448-05 261 12 551 (3875 North St Mary's, San Antonio, TX 78212) 1 3130 2010-06-21 10:58:40.445356-05 261 18 345 Sunken Gardens 1 3131 2010-06-21 10:59:17.828177-05 261 12 552 ( , San Antonio, TX 78212) 1 3132 2010-06-21 10:59:22.568758-05 261 18 346 Trinity Baptist Church 1 3133 2010-06-21 11:00:21.365239-05 261 12 553 ( , San Antonio, TX 78249) 1 3134 2010-06-21 11:00:23.511092-05 261 18 347 University United Methodist Church 1 3135 2010-06-21 11:01:02.227297-05 261 12 554 (3801 Broadway, San Antonio, TX 78209) 1 3136 2010-06-21 11:01:07.757545-05 261 18 348 Witte Museum 1 3137 2010-06-21 11:46:59.987994-05 22 14 178 178 2 Changed distribution_date and distrubution_notes. 3138 2010-06-21 11:48:24.347415-05 22 14 178 178 2 Changed distrubution_notes. 3139 2010-06-21 11:54:51.987085-05 22 13 42 PACT, Inc 3 3140 2010-06-21 21:23:02.02526-05 6 14 180 180 2 Changed status. 3141 2010-06-22 10:06:49.512031-05 22 13 48 Comer Development Board - Comer Children's Hospital at the University of Chicago 2 No fields changed. 3142 2010-06-22 10:17:42.747958-05 22 13 48 Comer Development Board - Comer Children's Hospital at the University of Chicago 2 Changed color_logo and banner. 3143 2010-06-22 10:18:01.402987-05 22 13 48 Comer Development Board - Comer Children's Hospital at the University of Chicago 2 Changed status and charity. 3144 2010-06-22 10:18:26.447675-05 22 13 48 Comer Development Board - Comer Children's Hospital at the University of Chicago 2 Changed status and charity. 3145 2010-06-22 10:45:36.138623-05 123 14 183 183 3 3146 2010-06-22 10:51:40.442135-05 261 12 557 (345 B Street, San Diego, CA 92101) 1 3147 2010-06-22 10:51:43.877043-05 261 18 349 4th and B 1 3148 2010-06-22 10:52:16.260508-05 261 12 558 ( , San Diego, CA 92101) 1 3149 2010-06-22 10:52:18.782194-05 261 18 350 Balboa Theatre 1 3150 2010-06-22 10:53:41.569685-05 261 12 559 (Lyons Rd, Dulzura, CA 92040) 1 3151 2010-06-22 10:53:44.016502-05 261 18 351 Barrett Lake 1 3152 2010-06-22 10:54:25.41226-05 261 12 560 (6608 Mission Gorge Rd, San Diego, CA 92101) 1 3153 2010-06-22 10:54:27.241954-05 261 18 352 Blue Agave Nightclub 1 3154 2010-06-22 10:55:51.281452-05 261 12 561 (555 Fourth Avenue, San Diego, CA 92101) 1 3155 2010-06-22 10:55:53.422027-05 261 18 353 Cafe Sevilla 1 3156 2010-06-22 10:57:28.833674-05 261 12 562 Cafe Sevilla (3252 Mission Inn Ave, Riverside, CA 92121) 1 3157 2010-06-22 10:57:32.741084-05 261 18 354 Cafe Sevilla 1 3158 2010-06-22 10:59:23.354118-05 288 12 563 Lambeau Field (1265 Lombardi Ave., Greenbay, WI 54304) 1 3159 2010-06-22 10:59:27.195007-05 261 12 561 Cafe Sevilla (555 Fourth Avenue, San Diego, CA 92101) 2 Changed addressee. 3160 2010-06-22 10:59:29.283662-05 288 18 355 Lambeau Field 1 3161 2010-06-22 10:59:52.121489-05 261 12 560 Blue Agave Night Club (6608 Mission Gorge Rd, San Diego, CA 92101) 2 Changed addressee. 3162 2010-06-22 11:00:21.560105-05 261 12 559 Barrett Lake (Lyons Rd, Dulzura, CA 92040) 2 Changed addressee. 3163 2010-06-22 11:00:52.061488-05 261 12 558 Balboa Theatre ( , San Diego, CA 92101) 2 Changed addressee. 3164 2010-06-22 11:01:03.324565-05 261 12 557 4th and B (345 B Street, San Diego, CA 92101) 2 Changed addressee. 3165 2010-06-22 11:01:37.532679-05 22 14 151 151 2 Changed featured. 3166 2010-06-22 11:01:56.298048-05 288 12 564 Miller Park (201 South 46th Street, Milwaukee, WI 53214) 1 3167 2010-06-22 11:02:01.502008-05 288 18 356 Miller Park 1 3168 2010-06-22 11:03:11.592096-05 261 12 554 Witte Museum (3801 Broadway, San Antonio, TX 78209) 2 Changed addressee. 3169 2010-06-22 11:03:43.350297-05 261 12 553 University United Methodist Church ( , San Antonio, TX 78249) 2 Changed addressee. 3170 2010-06-22 11:04:05.216228-05 261 12 552 Trinity Baptist Church ( , San Antonio, TX 78212) 2 Changed addressee. 3171 2010-06-22 11:04:30.251107-05 261 12 551 Sunken Gardens (3875 North St Mary's, San Antonio, TX 78212) 2 Changed addressee. 3172 2010-06-22 11:04:47.901351-05 261 12 550 ( , Hidalgo, TX 78557) 2 No fields changed. 3173 2010-06-22 11:04:53.840931-05 288 12 565 Camp Randall (1440 Monroe St., Madison, WI 53711) 1 3174 2010-06-22 11:04:58.517891-05 288 18 357 Camp Randall 1 3175 2010-06-22 11:05:02.064835-05 261 12 550 State Farm Arena ( , Hidalgo, TX 78557) 2 Changed addressee. 3176 2010-06-22 11:05:37.488786-05 22 14 183 183 3 3177 2010-06-22 11:05:51.069116-05 261 12 549 Selena Auditorium at the American Bank Center (1901 North Shorline, Corpus Christi, TX 78401) 2 Changed addressee. 3178 2010-06-22 11:06:26.941802-05 261 12 548 San Antonio Municipal Auditorium (100 Auditorium Cir, San Antonio, TX 78205) 2 Changed addressee. 3179 2010-06-22 11:07:02.584829-05 261 12 547 Paramount Theatre for the Performing Arts (713 Congress Ave, Austin, TX 78501) 2 Changed addressee. 3180 2010-06-22 11:07:30.898765-05 261 12 546 McAllen International Civic Center (1300 S. 10th St., McAllen, TX 78501) 2 Changed addressee. 3181 2010-06-22 11:08:04.024095-05 261 12 545 Majestic Theatre San Antonio (226 East Houston Street, San Antonio, TX 78205) 2 Changed addressee. 3182 2010-06-22 11:08:27.181737-05 261 12 544 Lonestar Pavilion at Sunset Station (1174 E. Commerce, San Antonio, TX 78203) 2 Changed addressee. 3183 2010-06-22 11:09:29.530058-05 261 12 543 Little Carver Theatre (226 N Hackberry, San Antonio, TX 78202) 2 Changed addressee. 3184 2010-06-22 11:10:01.754658-05 288 12 566 Overture Center For the Arts (201 State St., Madison, WI 53703) 1 3185 2010-06-22 11:10:02.307495-05 261 12 542 Laurie Auditorium (715 Stadium Drive, San Antonio, TX 78212) 2 Changed addressee. 3186 2010-06-22 11:10:06.751544-05 288 18 358 Overture Center For the Arts 1 3187 2010-06-22 11:11:03.596147-05 261 12 541 Laredo Enerby Arena (6700 Arena Blvd., Laredo, TX 78202) 2 Changed addressee. 3188 2010-06-22 11:11:31.909269-05 288 12 567 Alliant Energy Center (1919 Alliant Energy Center Way, Madison, WI 53713) 1 3189 2010-06-22 11:11:32.09379-05 261 12 540 Jo Long Theatre (226 N Hackberry, San Antonio, TX 78202) 2 Changed addressee. 3190 2010-06-22 11:11:41.26617-05 288 18 359 Alliant Energy Center 1 3191 2010-06-22 11:12:12.663718-05 261 12 539 Historic Sunset Station (1174 E. Commerce, San Antonio, TX 78205) 2 Changed addressee. 3192 2010-06-22 11:12:43.149294-05 261 12 538 Good Shepherd Lutheran Church Activity Center (1630 Goliad Rd, San Antonio, TX 78223) 2 Changed addressee. 3193 2010-06-22 11:13:08.512701-05 261 12 537 Freeman Coliseum (3201 E Houston St., San Antonio, TX 78219) 2 Changed addressee. 3194 2010-06-22 11:14:01.109431-05 261 12 536 Frank Erwin Center (1701 Red River St., Austin, TX 78768) 2 Changed addressee. 3195 2010-06-22 11:14:29.317192-05 261 12 535 Emos Austin (603 Red River St., Austin, TX 78701) 2 Changed addressee. 3196 2010-06-22 11:14:30.210079-05 288 12 568 Orpheum Theater (216 State St., Madison, WI 53703) 1 3197 2010-06-22 11:14:42.034786-05 288 18 360 Orpheum Theater 1 3198 2010-06-22 11:15:14.441925-05 261 12 534 Cowboys Dancehall (3030 N.E. Loop 410, San Antonio, TX 78217) 2 Changed addressee. 3199 2010-06-22 11:15:46.924631-05 288 12 569 Majestic Theater (115 King St., Madison, WI 53703) 1 3200 2010-06-22 11:15:50.995146-05 261 12 533 Concrete Street Amphitheater (800 Concrete Street, Corpus Christi, TX 78401) 2 Changed addressee. 3201 2010-06-22 11:16:31.531515-05 261 12 532 Coker United Methodist Church (Address, San Antonio, TX 78216) 2 Changed addressee. 3202 2010-06-22 11:16:57.118222-05 288 18 361 Majestic Theater 1 3203 2010-06-22 11:17:13.575615-05 261 12 531 Charline McCombs Empire Theatre (226 N. St. Mary's Street, San Antonio, TX 78205) 2 Changed addressee. 3204 2010-06-22 11:18:01.406535-05 288 12 570 Barrymore Theatre (2090 Atwood Ave, Madison, WI 53704) 1 3205 2010-06-22 11:18:02.04925-05 261 12 530 Cedar Park Center (2100 Avenue of the Stars, Cedar Park, TX 78613) 2 Changed addressee. 3206 2010-06-22 11:18:36.614657-05 288 18 362 Barrymore Theatre 1 3207 2010-06-22 11:23:59.328441-05 288 12 571 Marcus Amphitheater (200 North Harbor Drive, Milwaukee , WI 53202) 1 3208 2010-06-22 11:24:06.047029-05 288 18 363 Marcus Amphitheater 1 3209 2010-06-22 11:24:49.850214-05 261 12 529 Capitol City Comedy Club (8120 Research Blvd #100, Austin, TX 78613) 2 Changed addressee. 3210 2010-06-22 11:25:36.529938-05 261 12 528 Club Antro (7959 Fredericksburg Rd, San Antonio, TX 78229) 2 Changed addressee. 3211 2010-06-22 11:26:10.807413-05 261 12 527 \tBob Bullock Texas State History Museum (1800 Congress St., Austin, TX 78701) 2 Changed addressee. 3212 2010-06-22 11:26:38.864222-05 261 12 526 Bass Concert Hall (23rd Street & Dedman Dr., Austin, TX 78701) 2 Changed addressee. 3213 2010-06-22 11:27:17.239209-05 261 12 525 Austin Steam Train at Burnet Community Center (401 E. Jackson St., Burnet, TX 78611) 2 Changed addressee. 3214 2010-06-22 11:28:00.355052-05 261 12 524 Austin Music Hall (13101 W. Highway 71, Austin, TX 78738) 2 Changed addressee. 3215 2010-06-22 11:28:31.003554-05 288 12 572 Bradley Center (1001 North 4th Street, Milwaukee , WI 53203) 1 3216 2010-06-22 11:28:33.525933-05 261 12 523 American Bank Center Arena (1901 North Shorline, Corpus Christi, TX 78401) 2 Changed addressee. 3217 2010-06-22 11:28:40.796426-05 288 18 364 Bradley Center 1 3218 2010-06-22 11:29:09.736422-05 261 12 522 AT&T Center (100 Montana St, San Antonio, TX 78203) 2 Changed addressee. 3219 2010-06-22 11:29:40.65254-05 261 12 521 Alamodome (1 AT&T Center, San Antonio, TX 78219) 2 Changed addressee. 3220 2010-06-22 11:31:22.519616-05 288 12 573 Alpine Valley Music Theatre (2699 Highway D, East Troy, WI 53120) 1 3221 2010-06-22 11:31:29.822814-05 288 18 365 Alpine Valley Music Theatre 1 3222 2010-06-22 11:31:36.709739-05 261 12 485 Bryce Jordan Center (127 Bryce Jordan Center, University Park, PA 16802) 2 Changed addressee. 3223 2010-06-22 11:32:22.549097-05 261 12 457 Xcel Energy Center (199 Kellogg Blvd., Saint Paul, MN 55102) 2 Changed addressee. 3224 2010-06-22 11:33:08.783592-05 261 12 456 Varsity Theater (1308 SE 4th Street, Minneapolis, MN 55414) 2 Changed addressee. 3225 2010-06-22 11:33:45.218603-05 261 12 454 Turf Club (1601 University Avenue, Saint Paul, MN 55108) 2 Changed addressee and city. 3226 2010-06-22 11:33:50.764196-05 123 12 574 Dodger Stadium (1000 Elysian Park Ave., Los Angeles, CA 90012) 1 3227 2010-06-22 11:34:03.020303-05 123 18 366 Dodger Stadium 1 3228 2010-06-22 11:34:18.942415-05 261 12 453 Tumbleweed Express Minneapolis (21778 Highview Avenue, Lakeville, MN 55044) 2 Changed addressee. 3229 2010-06-22 11:34:58.715593-05 261 12 452 Triple Rock Social Club (629 Cedar Avenue, Minneapolis, MN 55454) 2 Changed addressee. 3230 2010-06-22 11:35:41.968049-05 288 12 575 Fox Cities Performing Arts Center (400 West College Avenue, Appleton, WI 54911) 1 3231 2010-06-22 11:35:50.139956-05 288 18 367 Fox Cities Performing Arts Center 1 3232 2010-06-22 11:36:16.542332-05 123 12 576 Los Angeles Sports Arena (3939 S Figueroa St., Los Angeles, CA 90037) 1 3233 2010-06-22 11:36:19.641248-05 123 18 368 Los Angeles Sports Arena 1 3234 2010-06-22 11:37:12.088396-05 261 12 451 The O'Shaughnessy (2004 Randolph Ave, Saint Paul, MN 55454) 2 Changed addressee. 3235 2010-06-22 11:37:39.671547-05 261 12 450 The Bierstube (7121 10th Street North, Oakdale, MN 55128) 2 Changed addressee. 3236 2010-06-22 11:38:03.252942-05 288 12 577 The Eagles Club (2401 West Wisconsin Avenue, Milwaukee, WI 53233) 1 3237 2010-06-22 11:38:05.968663-05 123 12 578 Coliseum & Sports Arena (3939 S Figueroa St., Los Angeles, CA 90037) 1 3238 2010-06-22 11:38:10.178641-05 123 18 369 Coliseum & Sports Arena 1 3239 2010-06-22 11:40:02.246016-05 288 18 370 The Eagles Club 1 3240 2010-06-22 11:40:43.674189-05 261 12 449 TCF Bank Stadium (600 1st Avenue North, Minneapolis, MN 55403) 2 Changed addressee. 3241 2010-06-22 11:40:47.167296-05 123 12 579 Jesse Owens Stadium (5151 State University Dr., Los Angeles, CA 90032) 1 3242 2010-06-22 11:40:52.363639-05 123 18 371 Jesse Owens Stadium 1 3243 2010-06-22 11:41:26.980216-05 261 12 448 TCF Bank Stadium (2009 University Ave SE, Minneapolis, MN 55455) 2 Changed addressee. 3244 2010-06-22 11:42:26.268336-05 123 12 580 Brooks Pavilion (1021 Childs Way, Los Angeles, CA 90007) 1 3245 2010-06-22 11:44:30.960284-05 261 12 449 Target Center (600 1st Avenue North, Minneapolis, MN 55403) 2 Changed addressee. 3246 2010-06-22 11:44:36.703643-05 123 18 372 Brooks Pavilion 1 3247 2010-06-22 11:45:06.680661-05 261 12 447 Station 4 (201 East 4th Street, Saint Paul, MN 55101) 2 Changed addressee. 3248 2010-06-22 11:45:49.614108-05 123 12 581 Brown Company Players (7134 Kittyhawk Ave., Los Angeles, CA 90045) 1 3249 2010-06-22 11:45:57.606528-05 123 18 373 Brown Company Players 1 3250 2010-06-22 11:46:43.267572-05 275 12 582 Candlestick Park (602 Jamestown Avenue, San Francisco, CA 94124) 1 3251 2010-06-22 11:47:04.178472-05 275 18 374 Candlestick Park 1 3252 2010-06-22 11:47:09.016545-05 261 12 446 State Theatre (805 Hennepin Ave, Minneapolis, MN 55402) 2 Changed addressee. 3253 2010-06-22 11:47:43.199759-05 275 12 583 AT&T Park (24 Willie Mays Plaza, San Francisco, CA 94107) 1 3254 2010-06-22 11:47:44.449446-05 275 18 375 AT&T Park 1 3255 2010-06-22 11:47:53.734-05 261 12 445 Roy Wilkins Auditorium at St. Paul RiverCentre (175 West Kellogg Blvd, Saint Paul, MN 55102) 2 Changed addressee and city. 3256 2010-06-22 11:48:35.82624-05 261 12 444 Rivers Edge (1820 Raleigh Road, Somerset, WI 54025) 2 Changed addressee. 3257 2010-06-22 11:48:48.554789-05 275 12 584 San Francisco War Memorial and Performing Arts Center (401 Van Ness Avenue, San Francisco, CA 94102) 1 3258 2010-06-22 11:49:14.326469-05 261 12 443 Riverfront Park (310 West Rock Street, Mankato, MN 56001) 2 Changed addressee. 3259 2010-06-22 11:49:15.28485-05 123 12 585 Inglewood Forum (3900 W Manchester Blvd, Inglewood, CA 90305) 1 3260 2010-06-22 11:49:18.687625-05 123 18 376 Inglewood Forum 1 3261 2010-06-22 11:49:19.107869-05 275 18 377 San Francisco War Memorial and Performing Arts Center 1 3262 2010-06-22 11:49:57.750163-05 275 12 586 The Fillmore (1805 Geary Blvd, San Francisco, CA 94115) 1 3263 2010-06-22 11:50:00.13148-05 275 18 378 The Fillmore 1 3264 2010-06-22 11:50:01.998976-05 261 12 442 Pantages Theatre (710 Hennepin Ave, Minneapolis, MN 55403) 2 Changed addressee. 3265 2010-06-22 11:50:30.66497-05 275 12 587 Oracle Arena (7000 Coliseum Way , Oakland, CA 94621) 1 3266 2010-06-22 11:50:32.656591-05 275 18 379 Oracle Arena 1 3267 2010-06-22 11:50:39.475723-05 261 12 441 Orpheum Theatre (910 Hennepin Avenue, Minneapolis, MN 55403) 2 Changed addressee. 3268 2010-06-22 11:51:17.734403-05 275 12 588 Orpheum Theatre (1192 Market Street, San Francisco, CA 94102) 1 3269 2010-06-22 11:51:19.047025-05 275 18 380 Orpheum Theatre 1 3270 2010-06-22 11:51:37.677563-05 261 12 440 National Hockey Center (Intersection of 12th st. and 4th ave., Saint Cloud, mn 56301) 2 Changed addressee. 3271 2010-06-22 11:52:18.093431-05 123 12 589 Hollywood Park (1050 S. Prairie Ave., Inglewood, CA 90301) 1 3272 2010-06-22 11:52:22.21513-05 123 18 381 Hollywood Park 1 3273 2010-06-22 11:52:22.229711-05 261 12 439 Mystic Lake Casino Hotel (2400 Mystic Lake Blvd, Prior Lake, MN 55372) 2 Changed addressee. 3274 2010-06-22 11:52:22.417152-05 275 12 590 Oakland-Alameda County Coliseum (7000 Coliseum Way , Oakland, CA 94621) 1 3275 2010-06-22 11:52:59.073837-05 261 12 438 Minnesota Zoo Amphitheater (13000 Zoo Boulevard, Apple Valley, MN 55124) 2 Changed addressee. 3276 2010-06-22 11:53:37.051436-05 275 18 382 Oakland-Alameda County Coliseum 1 3277 2010-06-22 11:53:56.911787-05 261 12 437 Minnesota State Fair Grandstand (1265 Snelling Ave, St Paul, MN 55108) 2 Changed addressee. 3278 2010-06-22 11:54:17.300996-05 275 12 591 Lake Tahoe Outdoor Arena at Harvey's (18 Hwy 50, Stateline, NV 89449) 1 3279 2010-06-22 11:54:18.754063-05 275 18 383 Lake Tahoe Outdoor Arena at Harvey's 1 3280 2010-06-22 11:54:42.281916-05 261 12 436 Mayo Civic Center Presentation Hall (30 Civic Center Drive SE, Rochester, MN 55904) 2 Changed addressee. 3281 2010-06-22 11:54:54.924307-05 275 12 592 ARCO Arena (1 Sports Parkway, Sacramento, CA 95834) 1 3282 2010-06-22 11:54:56.103045-05 275 18 384 ARCO Arena 1 3283 2010-06-22 11:55:08.773018-05 261 12 435 Mayo Civic Center Auditorium (30 Civic Center Drive SE, Rochester, MN 55904) 2 Changed addressee. 3284 2010-06-22 11:55:25.260966-05 275 12 593 Raley Field (400 Ballpark Drive, Sacramento, CA 95691) 1 3285 2010-06-22 11:55:26.516102-05 275 18 385 Raley Field 1 3286 2010-06-22 11:55:43.543876-05 123 12 594 Pico Rivera Sports Arena (11003 Rooks Rd., Whittier, CA 90601) 1 3287 2010-06-22 11:55:46.06069-05 123 18 386 Pico Rivera Sports Arena 1 3288 2010-06-22 11:55:52.431035-05 261 12 433 Mall of America Field at the Hubert H. Humphrey Metrodome (500 South 11th Avenue, Minneapolis, MN 55415) 2 Changed addressee. 3289 2010-06-22 11:56:10.025817-05 275 12 595 Sacramento Convention Center Complex (1400 J Street, Sacramento, CA 95814) 1 3290 2010-06-22 11:56:11.768897-05 275 18 387 Sacramento Convention Center Complex 1 3291 2010-06-22 11:56:39.854236-05 261 12 431 Lowertown (Intersection of 5th and Sibley Street, Saint Paul, MN 55101) 2 Changed addressee and city. 3292 2010-06-22 11:57:34.380963-05 123 12 596 Komatsu Zenoah Speedway (8295 Tujunga Ave., Sun Valley, CA 91352) 1 3293 2010-06-22 11:57:38.328189-05 123 18 388 Komatsu Zenoah Speedway 1 3294 2010-06-22 11:57:59.132634-05 261 12 429 (Intersection of 5th and Sibley Street, Saint Paul, MN 55101) 3 3295 2010-06-22 11:58:54.715191-05 261 12 427 Lake Superior Big Top Chautauqua (101 W. Bayfield Street, Washburn, WI 54891) 2 Changed addressee. 3296 2010-06-22 11:59:29.376196-05 261 12 425 Jackpot Junction Casino Hotel (39375 County Hwy 24, Morton, MN 56270) 2 Changed addressee. 3297 2010-06-22 12:00:15.909015-05 261 12 423 Husky Stadium (Intersection of 12th st. and 4th ave., Saint Cloud, MN 56301) 2 Changed addressee. 3298 2010-06-22 12:00:34.548215-05 123 12 597 Veterans Park & Veterans Sportscomplex (22400 Moneta Ave., Carson, CA 90745) 1 3299 2010-06-22 12:00:38.404216-05 123 18 389 Veterans Park & Veterans Sportscomplex 1 3300 2010-06-22 12:00:55.101011-05 261 12 421 Hennepin Stages (824 Hennepin Ave., Minneapolis, MN 55403) 2 Changed addressee. 3301 2010-06-22 12:01:59.024114-05 261 12 417 Grand casino Mille Lacs Event Center (777 Grand Avenue, Onamia, MN 55037) 2 Changed addressee. 3302 2010-06-22 12:02:50.904568-05 123 12 598 Veterans Memorial Stadium (5000 E Lew Davis St, Long Beach, CA 90808) 1 3303 2010-06-22 12:02:57.118391-05 123 18 390 Veterans Memorial Stadium 1 3304 2010-06-22 12:03:18.285506-05 261 12 416 Grand Casino Hinckley Event Center (777 Lady Luck Dr, Hinkley, MN 55037) 2 Changed addressee. 3305 2010-06-22 12:03:49.529425-05 261 12 415 Grand Casino Hinckley Amphitheater (777 Lady Luck Dr, Hinkley, MN 55037) 2 Changed addressee. 3306 2010-06-22 12:04:29.437569-05 123 12 599 Zamperini Stadium (2125 Lincoln Ave, Torrance, CA 90501) 1 3307 2010-06-22 12:04:33.202362-05 123 18 391 Zamperini Stadium 1 3308 2010-06-22 12:04:39.123994-05 261 12 420 Griggs Field (Stadium Dr, Duluth, MN 55812) 2 Changed addressee. 3309 2010-06-22 12:05:17.797193-05 261 12 414 Fitzgerald Theater (10 E Exchange St., St Paul, MN 55101) 2 Changed addressee. 3664 2010-06-23 14:46:21.97513-05 123 18 516 Memorial Coliseum (Portland) 1 3310 2010-06-22 12:05:59.236069-05 261 12 413 First Avenue (701 First Avenue North, Minneapolis, MN 55403) 2 Changed addressee. 3311 2010-06-22 12:06:50.90108-05 261 12 412 Fine Line Music Cafe (318 First Avenue North, Minneapolis, MN 55401) 2 Changed addressee. 3312 2010-06-22 12:07:32.169316-05 261 12 411 DECC Auditorium (350 Harbor Drive, Duluth, MN 55802) 2 Changed addressee. 3313 2010-06-22 12:07:40.455081-05 123 12 600 Long Beach Convention & Entertainment Center (300 E Ocean Blvd, Long Beach, CA 90802) 1 3314 2010-06-22 12:07:44.080206-05 123 18 392 Long Beach Convention & Entertainment Center 1 3315 2010-06-22 12:07:57.682541-05 261 12 410 DECC Arena (350 Harbor Drive, Duluth, MN 55802) 2 Changed addressee. 3316 2010-06-22 12:08:35.5759-05 261 12 409 Cedar Cultural Center (416 Cedar Avenue Sout, Minneapolis, MN 55454) 2 Changed addressee. 3317 2010-06-22 12:09:06.13493-05 261 12 408 Canterbury Park (1100 Canterbury Park, Shakopee, MN 55379) 2 Changed addressee. 3318 2010-06-22 12:09:36.344635-05 261 12 407 Cabooze (917 Cedar Ave, Minneapolis, MN 55404) 2 Changed addressee. 3319 2010-06-22 12:10:10.127872-05 261 12 406 Burnsville Performing Arts Center (12600 Nicollet Ave, Burnsville, MN 55337) 2 Changed addressee. 3320 2010-06-22 12:10:49.071298-05 261 12 405 Bunkers (761 Washington Ave. North, Minneapolis, MN 55401) 2 Changed addressee. 3321 2010-06-22 12:11:24.070767-05 261 12 404 Black Bear Casino Resort (1785 Highway 210, Carlton, MN 55718) 2 Changed addressee. 3322 2010-06-22 12:12:02.580907-05 261 12 403 Basilica of St Mary (88 17th Street North, Minneapolis, MN 55403) 2 Changed addressee. 3323 2010-06-22 12:12:41.676887-05 261 12 402 7th Street Entry (29 N 7th Street, Minneapolis, MN 55403) 2 Changed addressee. 3324 2010-06-22 12:13:08.219158-05 123 12 601 Dodge Theatre (400 West Washington Street, Phoenix, AZ 85003) 1 3325 2010-06-22 12:13:12.897648-05 123 18 393 Dodge Theatre 1 3326 2010-06-22 12:14:33.249919-05 123 12 602 Celebrity Theatre (440 North 32nd Street, Phoenix, AZ 85008) 1 3327 2010-06-22 12:14:36.759399-05 123 18 394 Celebrity Theatre 1 3328 2010-06-22 12:16:11.243211-05 123 12 603 Herberger Theater Center (222 East Monroe Street, Phoenix, CA 85004) 1 3329 2010-06-22 12:16:18.323543-05 123 18 395 Herberger Theater Center 1 3330 2010-06-22 12:17:41.465999-05 123 12 604 Phoenix Theatre (100 East McDowell Road, Phoenix, AZ 85004) 1 3331 2010-06-22 12:17:46.346997-05 123 18 396 Phoenix Theatre 1 3332 2010-06-22 12:20:03.628232-05 123 12 605 Orpheum Theatre (203 W Adams St, Phoenix, AZ 85003) 1 3333 2010-06-22 12:20:08.144029-05 123 18 397 Orpheum Theatre 1 3334 2010-06-22 12:26:25.756436-05 123 12 606 Chase Field (401 East Jefferson Street, Phoenix, AZ 85004) 1 3335 2010-06-22 12:26:35.412879-05 123 18 398 Chase Field 1 3336 2010-06-22 12:30:38.666015-05 123 12 607 Arizona Veterans Memorial Coliseum (1826 West McDowell Road, Phoenix, AZ 85007) 1 3337 2010-06-22 12:30:59.516139-05 123 18 399 Arizona Veterans Memorial Coliseum 1 3338 2010-06-22 12:34:06.387363-05 123 12 608 Maryvale Baseball Park (3600 N. 51st Avenue, Phoenix, AZ 85031) 1 3339 2010-06-22 12:34:14.129733-05 123 18 400 Maryvale Baseballl Park 1 3340 2010-06-22 12:36:26.375431-05 123 12 609 Phoenix Municipal Stadium (5999 East Van Buren Street, Phoenix, AZ 85008) 1 3341 2010-06-22 12:36:31.878956-05 123 18 401 Phoenix Municipal Stadium 1 3342 2010-06-22 12:39:11.311273-05 123 12 610 Sun Devil Stadium (500 E. Veterans Way, Tempe, AZ 85281) 1 3343 2010-06-22 12:39:16.845271-05 123 18 402 Sun Devil Stadium 1 3344 2010-06-22 12:41:11.557576-05 123 12 611 US Airways Center (201 East Jefferson, Phoenix, AZ 85004) 1 3345 2010-06-22 12:41:16.460505-05 123 18 403 US Airways Center 1 3346 2010-06-22 12:58:14.447153-05 261 12 386 Woodlands Pavilion (2005 Lake Robbins Dr., Woodlands, Tx 77380) 2 Changed addressee. 3347 2010-06-22 12:58:50.834831-05 261 12 384 Walter's on Washington (4215 Washington Ave, Houston, TX 77007) 2 Changed addressee. 3348 2010-06-22 12:59:21.495041-05 261 12 382 Verizon Wireless Theater (520 Texas Ave., Houston, TX 77002) 2 Changed addressee. 3349 2010-06-22 13:00:00.998097-05 261 12 380 Toyota Center (1510 Polk St, Houston, Tx 77002) 2 Changed addressee. 3350 2010-06-22 13:00:36.041504-05 261 12 379 The Kingdom Builders Center (6011 W. Orem Dr., Houston, TX 77085) 2 Changed addressee. 3351 2010-06-22 13:01:10.846025-05 261 12 376 Sam Houston Race Park (7575 N. Sam Houston Pkwy West, Houston, TX 77064) 2 Changed addressee. 3352 2010-06-22 13:02:06.651501-05 261 12 374 Robertson Stadium (Scott and Holman, Houston, TX 77204) 2 Changed addressee. 3353 2010-06-22 13:03:21.413352-05 261 12 373 Reliant Stadium (300 Westheimer Rd, Houston, TX 77006) 2 Changed addressee. 3354 2010-06-22 13:04:00.352122-05 261 12 371 Moody Gardens Outdoor Amphitheater (Seven Hope Blvd, Galveston, TX 77554) 2 Changed addressee. 3355 2010-06-22 13:05:30.250286-05 261 12 369 Minute Maid Park (501 Crawford, Houston, TX 77002) 2 Changed addressee. 3356 2010-06-22 13:06:04.062846-05 123 12 612 Symphony Hall (Phoenix, AZ) (75 N Second St., Phoenix, AZ 85004) 1 3357 2010-06-22 13:06:17.908764-05 261 12 367 Meridian (1503 Chartres Street, Houston, TX 77003) 2 Changed addressee. 3358 2010-06-22 13:06:22.297021-05 123 18 404 Symphony Hall (Phoenix, AZ) 1 3359 2010-06-22 13:06:40.723193-05 6 14 175 175 2 Changed status, featured and letter_date. Changed seating_info and details for tix "2 tix 4 The Moody Blues". 3360 2010-06-22 13:10:43.997846-05 6 14 175 175 2 Changed details for tix "2 tix 4 The Moody Blues". 3361 2010-06-22 13:10:50.953132-05 123 12 613 Third Street Theater (1202 N. Third St., Phoenix, AZ 85004) 1 3362 2010-06-22 13:10:56.920605-05 123 18 405 Third Street Theater 1 3363 2010-06-22 13:14:02.613071-05 123 12 614 Phoenix Center for the Arts (1202 N. Third St., Phoenix, AZ 85004) 1 3364 2010-06-22 13:14:36.76105-05 123 18 406 Phoenix Center for the Arts 1 3365 2010-06-22 13:17:28.146604-05 261 12 366 Mango's Cafe (403 Westheimer Rd., Houston, TX 77006) 2 Changed addressee. 3366 2010-06-22 13:18:11.649392-05 261 12 365 Julie Rogers Theatre (765 Pearl Street, Beaumont, Tx 77701) 2 Changed addressee. 3367 2010-06-22 13:18:40.796936-05 261 12 364 Jefforson Theatre (345 Fannin Street, Beaumont, Tx 77701) 2 Changed addressee. 3368 2010-06-22 13:19:21.530507-05 261 12 363 Houston Motorsports Park (11620 North Lake Houston Parkway, Houston, TX 77044) 2 Changed addressee. 3369 2010-06-22 13:19:50.860652-05 261 12 362 House of Blues Houston (1204 Caroline St, Houston, TX 77002) 2 Changed addressee. 3370 2010-06-22 13:20:17.35803-05 261 12 361 Hobby Center (800 Bagby, Houston, TX 77002) 2 Changed addressee. 3371 2010-06-22 13:20:49.811052-05 261 12 360 Heart O' Texas Coliseum (4601 Bosque Blvd, Waco, Tx 76714) 2 Changed addressee. 3372 2010-06-22 13:21:24.512644-05 261 12 359 Ford Park (5115 Ih-10 South, Beaumont, TX 77705) 2 Changed addressee. 3373 2010-06-22 13:22:04.571901-05 261 12 358 Discovery Green (1500 McKinney, Houston, TX 77010) 2 Changed addressee. 3890 2010-06-29 12:08:13.557667-05 123 18 595 Showbox at the Market 1 3374 2010-06-22 13:22:44.962181-05 261 12 357 Cypress Saloon (12710 Telge Road, Cypress, TX 77429) 2 Changed addressee. 3375 2010-06-22 13:23:29.890139-05 261 12 356 Club Escapade Houston (11903 Eastex Freeway, Houston, TX 77039) 2 Changed addressee. 3376 2010-06-22 13:24:06.208857-05 261 12 355 Butler Stadium (13755 S. Main St. , Houston, TX 77039) 2 Changed addressee. 3377 2010-06-22 13:24:37.036484-05 261 12 354 Brown Theater at Wortham Center (500 Texas St., Houston, TX 77002) 2 Changed addressee. 3378 2010-06-22 13:25:14.597836-05 261 12 353 Beaumont Civic Center (701 Main Street, Beaumont, TX 77001) 2 Changed addressee. 3379 2010-06-22 13:25:34.214956-05 6 14 175 175 2 Changed count for tix "4 tix 4 The Moody Blues". 3380 2010-06-22 13:25:59.11158-05 261 12 352 Angelika Theater (510 Texas St., Houston, TX 77002) 2 Changed addressee. 3381 2010-06-22 13:26:32.118977-05 261 12 351 Alley Theatre (615 Texas Ave, Houston, TX 77002) 2 Changed addressee. 3382 2010-06-22 13:26:44.571779-05 6 14 175 175 2 Changed seating_info for tix "4 tix 4 The Moody Blues". 3383 2010-06-22 13:27:03.200041-05 261 12 350 Ayva Center (9371 Richmond Ave., Houston, TX 77063) 2 Changed addressee. 3384 2010-06-22 13:27:40.471985-05 261 12 349 Reliant Stadium (1 Reliant Park, Houston, TX 77054) 2 Changed addressee. 3385 2010-06-22 13:28:13.922481-05 6 14 175 175 2 Changed details for tix "4 tix 4 The Moody Blues". 3386 2010-06-22 13:28:15.064249-05 261 12 348 TPC at The Woodlawns (100 Grand Fairway Drive, The Woodlawns, TX 77381) 2 Changed addressee. 3387 2010-06-22 13:28:56.720287-05 261 12 347 River Oaks Country Club (1600 River Oaks Boulevard, Houston, TX 77019) 2 Changed addressee. 3388 2010-06-22 13:29:39.845179-05 261 12 346 Alexander Durley Sports Complex (3393 Blodgett Street, Houston, TX 77004) 2 Changed addressee. 3389 2010-06-22 13:30:07.82229-05 261 12 342 Delmar Stadium (1900 Magnum Rd., Houston, TX 77092) 2 Changed addressee. 3390 2010-06-22 13:31:06.500171-05 261 12 339 Champions Golf Club (13722 Champions Drive , Houston, Tx 77069-1399) 2 Changed addressee. 3391 2010-06-22 13:31:12.646116-05 6 14 87 87 2 Changed price for tix "2 tix 4 Tim McGraw with Lady Antebellum". 3392 2010-06-22 13:31:32.345604-05 261 12 338 Champions Golf Club (13722 Champions Drive Houston, TX 77069-1399, Houston, , TX 77069-1399) 2 Changed addressee. 3393 2010-06-22 13:33:26.54473-05 261 12 32 Allstate Arena (6920 Mannheim, Rosemont, IL 60018) 2 Changed addressee. 3394 2010-06-22 13:34:11.933638-05 261 12 31 Wentz Concert Hall (180 E. Chicago, Naperville, IL 60540) 2 Changed addressee. 3395 2010-06-22 13:35:02.128231-05 261 12 30 House of Blues (329 N. Dearborn, Chicago, IL 60610) 2 Changed addressee. 3396 2010-06-22 13:35:35.836258-05 261 12 29 Sears Centre (5333 Prarie Stone Parkway, Hoffman Estates, IL 60192) 2 Changed addressee. 3397 2010-06-22 13:36:35.072374-05 261 12 28 Second City (1616 N. Wells, Chicago, IL 60614) 2 Changed addressee. 3398 2010-06-22 13:37:08.315588-05 261 12 27 Rosemont Theater (5400 N. River Road, Rosemont, IL 60018) 2 Changed addressee. 3399 2010-06-22 13:38:29.875626-05 261 12 26 Harpo Studios (1058 W. Washington, Chicago, IL 60607) 2 Changed addressee. 3400 2010-06-22 13:40:06.060334-05 261 12 25 Welsh-Ryan Arena (1501 Central , Evanston, IL 60208) 2 Changed addressee. 3401 2010-06-22 13:40:57.748704-05 261 12 24 US Cellular Field (333 W. 35th, Chicago, IL 60616) 2 Changed addressee. 3402 2010-06-22 13:41:21.376368-05 261 12 23 Wrigley Field (1060 W. Addison, Chicago, IL 60613) 2 Changed addressee. 3403 2010-06-22 13:41:51.627381-05 261 12 22 UIC Pavilion (525 S. Racine, Chicago, IL 60607) 2 Changed addressee. 3404 2010-06-22 13:42:33.892502-05 261 12 21 Loyola Alumni Gym (6511 N. Sheridan, Chicago, IL 60626) 2 Changed addressee. 3405 2010-06-22 13:43:12.760507-05 261 12 20 United Center (1901 W. Madison, Chicago, IL 60612) 2 Changed addressee. 3406 2010-06-22 13:44:06.85192-05 261 12 19 Royal George (1650 N. Halsted, Chicago, IL 60614) 2 Changed addressee. 3407 2010-06-22 13:46:54.786198-05 261 12 18 Theatre Building Chicago (1225 W. Blemont, Chicago, IL 60657) 2 Changed addressee. 3408 2010-06-22 13:48:24.675841-05 123 12 615 Jobing.com Arena (9400 West Maryland Avenue, Glendale, AZ 85305) 1 3409 2010-06-22 13:48:34.498944-05 123 18 407 Jobing.com Arena 1 3410 2010-06-22 13:50:29.302765-05 123 12 616 University of Phoenix Stadium (1 Cardinals Drive, Glendale, AZ 85305) 1 3411 2010-06-22 13:50:36.714003-05 123 18 408 University of Phoenix Stadium 1 3412 2010-06-22 13:52:22.657439-05 261 12 17 Pheasant Run (4051 E. Main, St. Charles, IL 60174) 2 Changed addressee. 3413 2010-06-22 13:54:36.258018-05 261 12 15 Vic (3145 N. Sheffield, Chicago, IL 60657) 2 Changed addressee. 3414 2010-06-22 13:55:22.656233-05 261 12 14 Symphony Center (67 E. Adams, Chicago, IL 60603) 2 Changed addressee. 3415 2010-06-22 13:56:11.094571-05 261 12 13 Paramount (8 E. Galena Blvd., Aurora, IL 60506) 2 Changed addressee. 3416 2010-06-22 13:56:53.264768-05 261 12 12 Rialto (102 N. Chicago, Joliet, IL 60432) 2 Changed addressee. 3417 2010-06-22 13:57:33.712195-05 261 12 11 Hemmens (45 Symphony Way, Elgin, IL 60120) 2 Changed addressee. 3418 2010-06-22 13:58:05.182289-05 261 12 10 Centre East (9501 Skokie Blvd., Skokie, IL 60077) 2 Changed addressee. 3419 2010-06-22 13:58:50.833031-05 261 12 9 Apollo Theater (2540 N. Lincoln, Chicago, IL 60614) 2 Changed addressee. 3420 2010-06-22 13:59:27.417195-05 261 12 8 Royal George (1641 N. Halsted, Chicago, IL 60614) 2 Changed addressee. 3421 2010-06-22 13:59:55.409979-05 261 12 7 Park West (322 W. Armitage, Chicago, IL 60614) 2 Changed addressee. 3422 2010-06-22 14:00:28.539452-05 261 12 6 Harris Theater (205 E. Randolph, Chicago, IL 60601) 2 Changed addressee. 3423 2010-06-22 14:00:59.225124-05 261 12 5 Navy Pier (800 E. Grand, Chicago, IL 60611) 2 Changed addressee. 3424 2010-06-22 14:02:58.655862-05 261 12 4 Bank of America Theater (18 W. Monroe, Chicago, IL 60603) 2 Changed addressee. 3425 2010-06-22 14:03:30.046989-05 261 12 3 Auditorium (50 E. Congress Parkway, Chicago, IL 60605) 2 Changed addressee. 3426 2010-06-22 14:04:10.154883-05 261 12 2 Cadillac Palace (151 W. Randolph, Chicago, IL 60602) 2 Changed addressee. 3427 2010-06-22 14:04:34.4254-05 261 12 1 Ford Center (24 W. Randolph, Chicago, IL 60601) 2 Changed addressee. 3428 2010-06-22 14:06:10.466503-05 261 12 617 Casino Pauma (777 Pauma Reservation Road, Pauma Valley, CA 92061) 1 3429 2010-06-22 14:06:12.843305-05 261 18 409 Casino Pauma 1 3430 2010-06-22 14:07:07.195728-05 261 12 618 Copley Symphony Hall (750 B Street, San Diego, CA 92101) 1 3431 2010-06-22 14:07:09.786988-05 261 18 410 Copley Symphony Hall 1 3432 2010-06-22 14:08:03.270852-05 261 12 619 Cricket Wireless Amphitheatre (2050 Entertainment Circle, Chula Vista, CA 91911) 1 3433 2010-06-22 14:08:04.827993-05 261 18 411 Cricket Wireless Amphitheatre 1 3434 2010-06-22 14:12:35.627281-05 261 12 620 Del Mar Fairgrounds (2260 Jimmy Durante Blvd, Del Mar, CA 90214) 1 3435 2010-06-22 14:12:38.968479-05 261 18 412 Del Mar Fairgrounds 1 3965 2010-06-30 10:41:23.729372-05 123 18 631 Oklahoma Railway Museum 1 3436 2010-06-22 14:14:29.316811-05 261 12 621 Grand Cabaret Pala Casino (11154 Hwy 76, Pala, CA 92059) 1 3437 2010-06-22 14:14:38.354837-05 261 18 413 Grand Cabaret Pala Casino 1 3438 2010-06-22 14:17:06.427029-05 261 12 622 Harrah's Rincon Casino-ECLIPSE Pool Experience (777 Harrah's Rincon Way, Valley Center, CA 92082) 1 3439 2010-06-22 14:17:08.521316-05 261 18 414 Harrah's Rincon Casino- ECLIPSE Pool Experience 1 3440 2010-06-22 14:18:09.047711-05 261 12 623 Harrah's Rincon Casino-Pavilion (777 Harrah's Rincon Way, Valley Center, CA 92082) 1 3441 2010-06-22 14:18:11.523618-05 261 18 415 Harrah's Rincon Casino- Pavilion 1 3442 2010-06-22 14:19:15.201677-05 261 12 624 Harrah's Rincon Casino-Open Sky Theater (777 Harrah's Rincon Way, Valley Center, CA 92082) 1 3443 2010-06-22 14:19:33.455056-05 261 18 416 Harrah's Rincon Casino- Open Sky Theater 1 3444 2010-06-22 14:20:22.000155-05 261 12 625 House of Blues San Diego (1055 5th Avenue, San Diego, CA 92106) 1 3445 2010-06-22 14:20:23.853056-05 261 18 417 House of Blues San Diego 1 3446 2010-06-22 14:21:14.077667-05 261 12 626 Humphreys Backstage Lounge ( , San Diego, CA 92106) 1 3447 2010-06-22 14:21:16.372998-05 261 18 418 Humphreys Backstage Lounge 1 3448 2010-06-22 14:22:14.154427-05 261 12 627 Humphreys Concerts by the Bay (2241 Shelter Island Dr., San Diego, CA 92106) 1 3449 2010-06-22 14:22:17.080918-05 261 18 419 Humphreys Concerts By the Bay 1 3450 2010-06-22 14:23:04.412701-05 261 12 628 La Costa Resort and Spa (2100 Costa Del Mar Road, Carlsbad, CA 92009) 1 3451 2010-06-22 14:23:06.527164-05 261 18 420 La Costa Resort and Spa 1 3452 2010-06-22 14:24:18.227118-05 261 12 629 Open Air Theatre-San Diego State University (5500 Campanile Dr, San Diego, CA 92182) 1 3453 2010-06-22 14:24:19.845409-05 261 18 421 Open Air Theatre-San Diego State University 1 3454 2010-06-22 14:25:19.113122-05 261 12 630 Palomar Starlight Theater-Pala Casino (Hwy 76 East, Pala, CA 92182) 1 3455 2010-06-22 14:25:21.283414-05 261 18 422 Palomar Starlight Theater-Pala Casino 1 3456 2010-06-22 14:26:03.086888-05 261 12 631 Petco Park (100 Park Blvd, San Diego, CA 92101) 1 3457 2010-06-22 14:26:04.632193-05 261 18 423 Petco Park 1 3458 2010-06-22 14:27:22.677082-05 261 12 632 Qualcomm Stadium (9949 Friars Road, San Diego, CA 92108) 1 3459 2010-06-22 14:27:25.200402-05 261 18 424 Qualcomm Stadium 1 3460 2010-06-22 14:28:29.392246-05 261 12 633 Rimac Arena-UCSD (9500 Gilman Dr, La Jolla, CA 92037) 1 3461 2010-06-22 14:28:31.692214-05 261 18 425 Rimac Arena-UCSD 1 3462 2010-06-22 14:29:21.968264-05 261 12 634 San Diego Civic Theatre (3rd & B St., San Diego, CA 92101) 1 3463 2010-06-22 14:29:23.905741-05 261 18 426 San Diego Civic Theatre 1 3464 2010-06-22 14:30:06.575978-05 261 12 635 San Diego Museum of Art (1450 El Prado, San Diego, CA 92101) 1 3465 2010-06-22 14:30:08.335021-05 261 18 427 San Diego Museum of Art 1 3466 2010-06-22 14:31:26.299888-05 261 12 636 San Dieguito United Methodist Church Hall (170 Calle Magdalena, Encinitas, CA 92024) 1 3467 2010-06-22 14:31:28.381854-05 261 18 428 San Dieguito United Methodist Church Hall 1 3468 2010-06-22 14:33:14.460526-05 261 12 637 Soma (3350 Sports Arena Blvd, San Diego, CA 92110) 1 3469 2010-06-22 14:33:16.745073-05 261 18 429 Soma 1 3470 2010-06-22 14:34:03.060341-05 261 12 638 Spreckles Theatre (121 Broadway, San Diego, CA 92101) 1 3471 2010-06-22 14:34:05.802937-05 261 18 430 Spreckels Theatre 1 3472 2010-06-22 14:35:20.927293-05 261 12 639 Templar's Hall in Old Poway Park (14134 Midland Road, Powy, CA 92064) 1 3473 2010-06-22 14:35:23.546314-05 261 18 431 Templar's Hall in Old Poway Park 1 3474 2010-06-22 14:36:19.486563-05 261 12 640 UCSD The Loft (9500 Gilman Dr, La Jolla, CA 92093) 1 3475 2010-06-22 14:36:24.594438-05 261 18 432 UCSD The Loft 1 3476 2010-06-22 14:37:34.009401-05 261 12 641 University of Sandiego Shiley Theatre (5998 Alcala Park, San Diego, CA 92110) 1 3477 2010-06-22 14:37:35.600764-05 261 18 433 University of San Diego Shiley Theatre 1 3478 2010-06-22 14:38:35.384526-05 261 12 642 Viejas Arena at Aztec Bowl San Diego State University (SDSU, San Diego, CA 92182) 1 3479 2010-06-22 14:38:38.861804-05 261 18 434 Viejas Arena at Aztec Bowl San Diego State University 1 3480 2010-06-22 14:52:11.694902-05 22 14 180 180 2 Changed status. 3481 2010-06-22 14:55:02.855755-05 22 3 330 ssweeney 1 3482 2010-06-22 14:55:32.181027-05 22 3 330 ssweeney 2 Changed first_name, last_name and email. 3483 2010-06-22 14:59:25.594048-05 22 3 151 sgreenerobb 2 Changed username and first_name. 3484 2010-06-22 15:02:46.274479-05 275 12 646 Scottrade Center (1401 Clark Avenue, St. Louis, MO 63103) 1 3485 2010-06-22 15:02:50.012982-05 275 18 435 Scottrade Center 1 3486 2010-06-22 15:03:51.211594-05 275 12 647 Busch Stadium (700 Clark Street, St. Louis, MO 63102) 1 3487 2010-06-22 15:03:52.59161-05 275 18 436 Busch Stadium 1 3488 2010-06-22 15:05:13.219973-05 275 12 648 Edward Jones Dome (701 Convention Plaza, St. Louis, MO 63101) 1 3489 2010-06-22 15:05:15.135989-05 275 18 437 Edward Jones Dome 1 3490 2010-06-22 15:06:44.95529-05 275 12 649 Chaifetz Arena (1 South Compton Avenue, St. Louis, MO 63103) 1 3491 2010-06-22 15:06:46.64817-05 275 18 438 Chaifetz Arena 1 3492 2010-06-22 15:10:01.009677-05 275 12 650 Anheuser-Busch Center (1 Soccer Park Road, Fenton, MO 63026) 1 3493 2010-06-22 15:10:03.366592-05 275 18 439 Anheuser-Busch Center 1 3494 2010-06-22 15:11:59.211873-05 275 12 651 Powell Symphony Hall (718 N. Grand Blvd, St. Louis, MO 63103) 1 3495 2010-06-22 15:12:03.506201-05 275 18 440 Powell Symphony Hall 1 3496 2010-06-22 15:14:51.209878-05 275 12 652 The Pageant (6161 Delmar, St. Louis, MO 63112) 1 3497 2010-06-22 15:14:53.290745-05 275 18 441 The Pageant 1 3498 2010-06-22 15:17:39.247353-05 275 12 653 Verizon Wireless Amphitheater St Louis (14141 Riverport Drive, Maryland Heights, MO 63043) 1 3499 2010-06-22 15:17:50.495702-05 275 18 442 Verizon Wireless Amphitheater St Louis 1 3500 2010-06-23 07:52:01.862465-05 6 13 66 St. Patrick's Residence 2 Changed banner. 3501 2010-06-23 08:43:13.879433-05 6 13 66 St. Patrick's Residence 2 Changed color_logo. 3502 2010-06-23 08:44:40.829359-05 6 13 66 St. Patrick's Residence 2 Changed banner. 3503 2010-06-23 08:46:12.16706-05 6 13 66 St. Patrick's Residence 2 Changed banner. 3504 2010-06-23 08:47:32.236357-05 6 13 66 St. Patrick's Residence 2 No fields changed. 3505 2010-06-23 10:12:32.284921-05 123 17 80 Purchase #80 by sharonlsweeney@comcast.net 2 Payment captured successful. 3506 2010-06-23 10:14:05.161021-05 123 17 80 Purchase #80 by sharonlsweeney@comcast.net 2 Changed comment. 3507 2010-06-23 10:16:59.347365-05 123 14 180 180 2 Changed distribution_date and distrubution_notes. 3508 2010-06-23 10:19:30.657848-05 261 12 654 A W Mumford Stadium (Mumford Stadium, Southern University, Baton Rouge, LA 70802) 1 3509 2010-06-23 10:19:33.466913-05 261 18 443 A W Mumford Stadium 1 3510 2010-06-23 10:20:31.166883-05 261 12 655 Baton Rouge River Center Arena (275 South River Road, Baton Rouge, LA 70802) 1 3511 2010-06-23 10:20:34.834776-05 261 18 444 Baton Rouge River Center Arena 1 3512 2010-06-23 10:21:43.435971-05 261 12 656 Baton Rouge River Center Theater (220 St. Louis Street, Baton Rouge, LA 70802) 1 3513 2010-06-23 10:21:44.749984-05 261 18 445 Baton Rouge River Center Theater 1 3514 2010-06-23 10:22:43.626089-05 261 12 657 Beau Rivage Theatre (875 Beach Blvd, Biloxi, MS 39530) 1 3515 2010-06-23 10:22:49.310065-05 261 18 446 Beau Rivage Theatre 1 3516 2010-06-23 10:23:41.993445-05 261 12 658 Cajun Field (201 Reinhardt Dr., Lafayette, LA 70506) 1 3517 2010-06-23 10:23:44.829345-05 261 18 447 Cajun Field 1 3518 2010-06-23 10:24:40.842362-05 261 12 659 CenturyTel Center (2000 CenturyTel Center Drive, Bossier City, LA 71112) 1 3519 2010-06-23 10:24:42.595821-05 261 18 448 CenturyTel Center 1 3520 2010-06-23 10:25:52.056737-05 261 12 660 Coushatta Casino Resort (777 Coushatta Dr, Kinder, LA 70648) 1 3521 2010-06-23 10:25:54.570435-05 261 18 449 Coushatta Casino Resort 1 3522 2010-06-23 11:16:28.754762-05 261 12 661 Cypress Bayou Casino (832 Martin Luther King rd., Charenton, LA 70523) 1 3523 2010-06-23 11:16:30.803501-05 261 18 450 Cypress Bayou Casino 1 3524 2010-06-23 11:17:03.382139-05 261 12 662 Fire ( , Jackson, MS 39201) 1 3525 2010-06-23 11:17:04.734673-05 261 18 451 Fire 1 3526 2010-06-23 11:17:49.590965-05 261 12 663 Hal & Mal's ( , Jackson, MS 39201) 1 3527 2010-06-23 11:17:51.22725-05 261 18 452 Hal & Mal's 1 3528 2010-06-23 11:19:00.02097-05 261 12 664 Harang Auditorium formerly Thibodaux Civic Center (310 Canal Boulevard, Thibodaux, LA 70301) 1 3529 2010-06-23 11:19:02.240479-05 261 18 453 Harang Auditorium formerly Thibodaux Civic Center 1 3530 2010-06-23 11:20:01.815905-05 261 12 665 Hard Rock Live (777 Beach Blvd, Biloxi, MS 39530) 1 3531 2010-06-23 11:20:12.903532-05 261 18 454 Hard Rock Live 1 3532 2010-06-23 11:20:57.657281-05 261 12 666 Harrahs Casino (8 Canal St, New Orleans, LA 70130) 1 3533 2010-06-23 11:21:00.371046-05 261 18 455 Harrahs Casino 1 3534 2010-06-23 11:22:16.46071-05 261 12 667 Hirsch Memorial Coliseum (3207 Pershing Blvd, Shreveport, LA 71109) 1 3535 2010-06-23 11:22:19.270232-05 261 18 456 Hirsch Memorial Coliseum 1 3536 2010-06-23 11:23:26.847431-05 261 12 668 Houma Terrebonne Civic Center (346 Civic Center Blvd, Houma, LA 70360) 1 3537 2010-06-23 11:23:29.099544-05 261 18 457 Houma Terrebonne Civic Center 1 3538 2010-06-23 11:24:25.537559-05 261 12 669 House of Blues New Orleans (225 Decatur Street, New Orleans, LA 70130) 1 3539 2010-06-23 11:24:27.532932-05 261 18 458 House of Blues New Orleans 1 3540 2010-06-23 11:25:23.938492-05 261 12 670 Howlin' Wolf (907 South Peters, New Orleans, LA 70301) 1 3541 2010-06-23 11:25:26.481537-05 261 18 459 Howlin' Wolf 1 3542 2010-06-23 11:28:05.249166-05 261 12 671 Howlin' Wolf NorthShore (1623 Montgomery St, Mandeville, LA 70448) 1 3543 2010-06-23 11:28:08.484467-05 261 18 460 Howlin' Wolf NorthShore 1 3544 2010-06-23 11:28:51.994629-05 261 12 672 Independence Stadium (3301 Pershing, Shreveport, LA 71109) 1 3545 2010-06-23 11:28:53.831386-05 261 18 461 Independence Stadium 1 3546 2010-06-23 11:29:31.940412-05 261 12 673 Jackson Zoo ( , Jackson, MS 39209) 1 3547 2010-06-23 11:29:33.787103-05 261 18 462 Jackson Zoo 1 3548 2010-06-23 11:30:44.418801-05 261 12 674 Jackson Convention Complex (105 East Pascagoula Street, Jackson, MS 39207) 1 3549 2010-06-23 11:30:46.585372-05 261 18 463 Jackson Convention Complex 1 3550 2010-06-23 11:31:25.508716-05 123 17 80 Purchase #80 by sharonlsweeney@comcast.net 2 Changed tracking_code and comment. 3551 2010-06-23 11:31:41.581838-05 261 12 675 John Guidry Stadium (906 East First Street, Thibodaux, LA 70310) 1 3552 2010-06-23 11:32:01.3509-05 261 18 464 John Guidry Stadium 1 3553 2010-06-23 11:33:14.162718-05 261 12 676 L'Auberge Du Lac Casino and Resort (777 Ave. L'Auberge, Lake Charles, LA 70601) 1 3554 2010-06-23 11:33:15.755813-05 261 18 465 L'Auberge Du Lac Casino and Resort 1 3555 2010-06-23 11:33:45.813108-05 123 14 180 180 2 Changed distrubution_notes. 3556 2010-06-23 11:34:01.672422-05 261 12 677 Lafayette Cajundome (444 Cajundome, Lafayette, LA 70506) 1 3557 2010-06-23 11:34:03.869451-05 261 18 466 Lafayette Cajundome 1 3558 2010-06-23 11:34:21.786235-05 123 14 180 180 2 Changed distrubution_notes. 3559 2010-06-23 11:34:53.55126-05 261 12 678 Lake Charles Civic Center Arena (900 Lakeshore Dr, Lake Charles, LA 70611) 1 3560 2010-06-23 11:34:55.563112-05 261 18 467 Lake Charles Civic Center Arena 1 3561 2010-06-23 11:35:49.38738-05 261 12 679 Louisiana Superdome (1500 Poydras St, New Orleans, LA 70112) 1 3562 2010-06-23 11:35:51.501697-05 261 18 468 Louisiana Superdome 1 3563 2010-06-23 11:37:06.078254-05 261 12 680 Mahalia Jackson Theater fo the Performing Arts (810 N. Rampart, New Orleans, LA 70116) 1 3564 2010-06-23 11:37:07.809326-05 261 18 469 Mahalia Jackson Theater of the Performing Arts 1 3565 2010-06-23 11:37:12.119369-05 123 17 80 Purchase #80 by sharonlsweeney@comcast.net 2 Changed comment. 3566 2010-06-23 11:38:27.226389-05 123 17 80 Purchase #80 by sharonlsweeney@comcast.net 2 No fields changed. 3567 2010-06-23 11:38:34.758297-05 261 12 681 Mardi Gras World (1380 Port of New Orleans Place, New Orleans, LA 70130) 1 3568 2010-06-23 11:38:37.324787-05 261 18 470 Mardi Gras World 1 3569 2010-06-23 11:39:33.084968-05 261 12 682 Mikko Live at Coushatta (777 Coushatta Dr, Kinder, LA 70648) 1 3570 2010-06-23 11:39:36.854743-05 261 18 471 Mikko Live at Coushatta 1 3571 2010-06-23 11:40:44.229094-05 261 12 683 Mississippi Coast Coliseum (2350 Beach Blvd, Biloxi, MS 39531) 1 3572 2010-06-23 11:40:45.98098-05 261 18 472 Mississippi Coast Coliseum 1 3573 2010-06-23 11:41:31.209031-05 261 12 684 Mississippi Coliseum (1207 Mississippi St, Jackson, MS 39202) 1 3574 2010-06-23 11:41:33.953103-05 261 18 473 Mississippi Coliseum 1 3575 2010-06-23 11:42:36.369257-05 261 12 685 Mississippi Museum of Art (201 E Pascagoula St, Jackson, MS 39201) 1 3576 2010-06-23 11:42:38.633901-05 261 18 474 Mississippi Museum of Art 1 3577 2010-06-23 11:43:51.102482-05 261 12 686 Mississippi Veterans Memorial Stadium (2531 N State St, Jackson, MS 39216) 1 3578 2010-06-23 11:43:52.600733-05 261 18 475 Mississippi Veterans Memorial Stadium 1 3579 2010-06-23 11:44:42.47722-05 261 12 687 Mt. Carmel Baptist Church (1101 N. Main St., Hattiesburg, MS 39401) 1 3580 2010-06-23 11:44:44.273418-05 261 18 476 Mt. Carmel Baptist Church 1 3581 2010-06-23 11:45:40.659745-05 261 12 688 New Orleans Arena (1501 Girod Street, New Orleans, LA 70113) 1 3582 2010-06-23 11:45:42.786117-05 261 18 477 New Orleans Arena 1 3583 2010-06-23 11:46:42.991211-05 261 12 689 New Orleans Convention Center (900 Convention Center Blvd, New Orleans, LA 70130) 1 3584 2010-06-23 11:46:45.607977-05 261 18 478 New Orleans Convention Center 1 3585 2010-06-23 11:47:41.431025-05 261 12 690 One Eyed Jacks (615 Toulouse St, New Orleans, LA 70130) 1 3586 2010-06-23 11:47:43.284109-05 261 18 479 One Eyed Jacks 1 3587 2010-06-23 11:48:36.75592-05 261 12 691 Paragon Casino Resort ( , Marksville , LA 71351) 1 3588 2010-06-23 11:48:39.634283-05 261 18 480 Paragon Casino 1 3589 2010-06-23 11:49:23.007094-05 261 12 692 Robinson Stadium ( , Grambling, LA 70813) 1 3590 2010-06-23 11:49:26.001715-05 261 18 481 Robinson Stadium 1 3591 2010-06-23 11:50:13.602926-05 261 12 693 Sheraton Hotel (500 Canal Street, New Orleans, LA 70130) 1 3592 2010-06-23 11:50:15.813909-05 261 18 482 Sheraton Hotel 1 3593 2010-06-23 11:51:16.598527-05 261 12 694 Shreveport Municipal Memorial Auditorium (705 Elvis Presley Blvd, Shreveport, LA 71101) 1 3594 2010-06-23 11:51:19.421271-05 261 18 483 Shreveport Municipal Memorial Auditorium 1 3595 2010-06-23 11:52:08.049381-05 261 12 695 Spanish Moon (1109 Highland Road, Baton Rouge, LA 70802) 1 3596 2010-06-23 11:52:09.940999-05 261 18 484 Spanish Moon 1 3597 2010-06-23 11:54:16.686726-05 123 12 696 Husky Stadium (3800 Montlake Blvd NE, Seattle, WA 98105) 1 3598 2010-06-23 11:54:24.044838-05 123 18 485 Husky Stadium 1 3599 2010-06-23 11:57:47.389931-05 123 12 697 Key Arena (305 Harrison Street, Seattle, WA 98109) 1 3600 2010-06-23 11:57:52.614604-05 123 18 486 Key Arena 1 3601 2010-06-23 12:11:02.960637-05 261 12 698 The Kenner Pontchartrain Center (4545 Williams Blvd, Kenner, LA 70065) 1 3602 2010-06-23 12:11:04.517067-05 261 18 487 The Kenner Pontchartrain Center 1 3603 2010-06-23 12:11:48.508531-05 261 12 699 Touch (105 East Capitol St, Jackson, MS 39201) 1 3604 2010-06-23 12:11:50.324596-05 261 18 488 Touch 1 3605 2010-06-23 12:12:51.718306-05 261 12 700 Texas Club (456 N Donmoor Ave, Baton Rouge, LA 70806) 1 3606 2010-06-23 12:12:54.643246-05 261 18 489 Texas Club 1 3607 2010-06-23 12:16:28.350239-05 261 12 701 Thalia Mara Hall (255 E Pascagoula St, Jackson, MS 39216) 1 3608 2010-06-23 12:16:30.121254-05 261 18 490 Thalia Mara Hall 1 3609 2010-06-23 12:18:14.442184-05 261 12 702 The City Club of Houma (7861 Main Street, Houma, LA 70361) 1 3610 2010-06-23 12:18:16.453266-05 261 18 491 The City Club of Houma 1 3611 2010-06-23 12:18:29.161309-05 275 12 703 Arrowhead Stadium (1 Arrowhead Drive, Kansas City, MO 64129) 1 3612 2010-06-23 12:18:30.345327-05 275 18 492 Arrowhead Stadium 1 3613 2010-06-23 12:19:03.527248-05 275 12 704 Kauffman Stadium (One Royal Way, Kansas City, MO 64129) 1 3614 2010-06-23 12:19:04.284077-05 275 18 493 Kauffman Stadium 1 3615 2010-06-23 12:19:06.308023-05 261 12 705 Trustmark Park (One Braves Way, Pearl, MS 39208) 1 3616 2010-06-23 12:19:07.8574-05 261 18 494 Trustmark Park 1 3617 2010-06-23 12:19:48.9699-05 275 12 706 Community America Ballpark (1800 Village West Pkwy, Kansas City, KS 66111) 1 3618 2010-06-23 12:19:50.576424-05 275 18 495 Community America Ballpark 1 3619 2010-06-23 12:20:20.776827-05 261 12 707 UNO Lakefront Arena (6801 Franklin Ave., New Orleans, LA 70122) 1 3620 2010-06-23 12:20:24.528005-05 261 18 496 UNO Lakefront Arena 1 3621 2010-06-23 12:20:31.091504-05 275 12 708 Sprint Center (1407 Grand Blvd, Kansas City, MO 64106) 1 3622 2010-06-23 12:20:31.903925-05 275 18 497 Sprint Center 1 3623 2010-06-23 12:21:07.84349-05 275 12 709 Kansas Speedway (400 Speedway Blvd, Kansas City, KS 66111) 1 3624 2010-06-23 12:21:11.69427-05 275 18 498 Kansas Speedway 1 3625 2010-06-23 12:21:49.051411-05 275 12 710 Memorial Stadium (1017 W 11th Street, Lawrence, KS 66044) 1 3626 2010-06-23 12:21:49.849693-05 275 18 499 Memorial Stadium 1 3627 2010-06-23 12:21:59.883363-05 261 12 711 Von Braun Center Playhouse (700 Monroe St SW, Huntsville, AL 35801) 1 3628 2010-06-23 12:22:01.421509-05 261 18 500 Von Braun Center Playhouse 1 3629 2010-06-23 12:22:23.219166-05 275 12 712 Allen Fieldhouse (1651 Naismith Drive, Lawrence, KS 66045) 1 3630 2010-06-23 12:22:24.967388-05 275 18 501 Allen Fieldhouse 1 3631 2010-06-23 12:22:52.677392-05 261 12 713 Von Braun Center South Hall ( , Huntsville, AL 35801) 1 3632 2010-06-23 12:22:53.065965-05 275 12 714 Uptown Theater (3700 Broadway , Kansas City, MO 64111) 1 3633 2010-06-23 12:22:54.852015-05 261 18 502 Von Braun Center South Hall 1 3634 2010-06-23 12:22:55.199005-05 275 18 503 Uptown Theater 1 3635 2010-06-23 12:23:59.976986-05 261 12 715 W L Jack Howard Theatre ( , Monroe , LA 71210) 1 3636 2010-06-23 12:36:21.072325-05 261 18 504 W L Jack Howard Theatre 1 3637 2010-06-23 13:10:34.573731-05 6 17 81 Purchase #81 by mallar_solai@yahoo.com 2 Payment captured successful. 3638 2010-06-23 13:24:10.688577-05 123 12 718 Qwest Field (800 Occidental Ave S, Seattle, WA 98134) 1 3639 2010-06-23 13:24:27.96637-05 123 18 505 Qwest Field 1 3640 2010-06-23 13:27:02.868773-05 123 12 719 Memorial Stadium (Seattle) (401 5th Ave N, Seattle, WA 98109) 1 3641 2010-06-23 13:27:11.237649-05 123 18 506 Memorial Stadium (Seattle) 1 3642 2010-06-23 13:33:25.534991-05 123 12 720 Safeco Field (1516 First Avenue S, Seattle, WA 98134) 1 3643 2010-06-23 13:33:41.145912-05 123 18 507 Safeco Field 1 3644 2010-06-23 13:47:38.972946-05 123 12 721 Benaroya Hall (200 University Street, Seattle, WA 98101) 1 3645 2010-06-23 13:47:44.250682-05 123 18 508 Benaroya Hall 1 3646 2010-06-23 13:50:12.033864-05 123 12 722 5th Avenue Theatre (1308 5th Ave, Seattle, WA 98101) 1 3647 2010-06-23 13:50:28.965372-05 123 18 509 5th Avenue Theatre 1 3648 2010-06-23 13:52:20.482546-05 123 12 723 Paramount Theatre-wa (911 Pine St, Seattle, WA 98101) 1 3649 2010-06-23 13:52:24.090651-05 123 18 510 Paramount Theatre-wa 1 3650 2010-06-23 13:54:06.589246-05 123 12 724 Showbox Theater (1426 1st Ave, Seattle, WA 98101) 1 3651 2010-06-23 13:54:16.820763-05 123 18 511 Showbox Theater 1 3652 2010-06-23 13:56:41.019186-05 123 12 725 Moore Theatre (1932 2nd Ave, Seattle, WA 98107) 1 3653 2010-06-23 13:56:45.295322-05 123 18 512 Moore Theatre 1 3654 2010-06-23 13:59:27.913612-05 123 12 726 Wamu Theater at Qwest Field Event Center (1000 Occidental Ave, Seattle, WA 98134) 1 3655 2010-06-23 14:08:07.953749-05 123 18 513 Wamu Theater at Quest Field Event Center 1 3656 2010-06-23 14:12:33.64587-05 123 12 727 Marion Oliver McCaw Hall (305 Harrison Street, Seattle, WA 98109) 1 3657 2010-06-23 14:12:39.982602-05 123 18 514 Marion Oliver McCaw Hall 1 3658 2010-06-23 14:18:51.354227-05 275 12 728 Chicago Hope Academy (2189 W Bowler Street, Chicago, IL 60612) 1 3659 2010-06-23 14:29:51.631905-05 6 14 184 184 3 3660 2010-06-23 14:31:55.141776-05 6 14 175 175 2 Changed price for tix "4 tix 4 The Moody Blues". 3661 2010-06-23 14:34:50.7044-05 123 12 729 Rose Garden Arena (1 Center Court, Portland, OR 97227) 1 3662 2010-06-23 14:36:30.424277-05 123 18 515 Rose Garden Arena 1 3663 2010-06-23 14:45:27.122293-05 123 12 730 Memorila Coliseum (Portland) (300 Winning Way, Portland, OR 97208) 1 3665 2010-06-23 14:50:19.368358-05 123 12 731 Arlene Schnitzer Concert Hall (1037 SW Broadway, Portland, OR 97205) 1 3666 2010-06-23 14:50:24.646004-05 123 18 517 Arlene Schnitzer Concert Hall 1 3667 2010-06-23 14:52:00.18421-05 123 12 732 Keller Auditorium (222 SW Clay Ave, Portland, OR 97201) 1 3668 2010-06-23 14:52:10.419435-05 123 18 518 Keller Auditorium 1 3669 2010-06-23 14:52:56.45442-05 275 13 79 Chicago Hope Academy 1 3670 2010-06-23 14:55:05.634409-05 123 12 733 Antoinette Hatfield Hall (1111 SW Broadway Ave, Portland , OR 97205) 1 3671 2010-06-23 14:55:18.48422-05 123 18 519 Antoinette Hatfield Hall 1 3672 2010-06-23 14:55:45.893855-05 275 3 331 lynnekurdziel 1 3673 2010-06-23 14:56:19.944544-05 275 3 331 lynnekurdziel 2 Changed first_name, last_name, email and groups. 3674 2010-06-23 15:05:11.647477-05 123 12 734 PGE Park (1844 SW Morrison, Portland, OR 97205) 1 3675 2010-06-23 15:05:20.61377-05 123 18 520 PGE Park 1 3676 2010-06-23 15:11:29.764252-05 261 12 735 Keshet (617 Landwehr Rd, Northbrook, IL 60062) 1 3677 2010-06-23 15:14:17.906489-05 261 13 80 Keshet 1 3678 2010-06-23 15:15:01.36259-05 261 13 80 Keshet 2 Changed has_detail. 3679 2010-06-23 15:15:33.491849-05 275 13 79 Chicago Hope Academy 2 Changed description and banner. 3680 2010-06-23 15:16:35.183793-05 275 13 79 Chicago Hope Academy 2 Changed banner. 3681 2010-06-23 15:18:25.715658-05 275 13 79 Chicago Hope Academy 2 Changed banner. 3682 2010-06-23 15:18:59.078775-05 275 13 79 Chicago Hope Academy 2 Changed banner. 3683 2010-06-23 15:20:13.86067-05 275 13 79 Chicago Hope Academy 2 Changed banner. 3684 2010-06-23 15:20:52.803941-05 275 13 79 Chicago Hope Academy 2 Changed banner. 3685 2010-06-23 15:21:17.563292-05 275 13 79 Chicago Hope Academy 2 Changed banner. 3686 2010-06-23 15:37:54.056821-05 275 13 79 Chicago Hope Academy 2 Changed description. 3687 2010-06-23 15:45:00.189113-05 275 12 736 Sun Life Stadium (2267 NW 199th Street, Miami, FL 33056) 1 3688 2010-06-23 15:45:02.723023-05 275 18 521 Sun Life Stadium 1 3689 2010-06-23 15:45:45.848758-05 275 12 737 BankAtlantic Center (1 Panther Pkwy , Sunrise, FL 33323) 1 3690 2010-06-23 15:45:46.723757-05 275 18 522 BankAtlantic Center 1 3691 2010-06-23 15:46:40.903731-05 275 12 738 American Airlines Arena (601 Biscayne Blvd, Miami, FL 33132) 1 3692 2010-06-23 15:46:45.478384-05 275 18 523 American Airlines Arena 1 3693 2010-06-23 15:47:26.837684-05 275 12 739 Tropical Park Stadium (7900 SW 40th Street, Miami, FL 33155) 1 3694 2010-06-23 15:47:28.104536-05 275 18 524 Tropical Park Stadium 1 3695 2010-06-23 15:48:10.494295-05 275 12 740 The Arsht Center (1300 Biscayne Blvd, Miami, FL 33132) 1 3696 2010-06-23 15:48:11.457714-05 275 18 525 The Arsht Center 1 3697 2010-06-23 15:48:57.824248-05 275 12 741 Tennis Center at Crandon Park (6702 Crandon Blvd, Biscayne, FL 33149) 1 3698 2010-06-23 15:49:50.348328-05 275 12 742 Tennis Center at Crandon Park (6702 Crandon Blvd, Key Biscayne, FL 33149) 1 3699 2010-06-23 15:49:53.544306-05 275 18 526 Tennis Center at Crandon Park 1 3700 2010-06-23 15:50:42.929569-05 275 12 743 Cruzan Ampitheatre (601 Sansbury Way, West Palm beach, FL 33411) 1 3701 2010-06-23 15:50:44.451252-05 275 18 527 Cruzan Ampitheatre 1 3702 2010-06-24 09:59:27.316295-05 22 12 744 Habitat for Humanity Illinois (323 Grape Vine Trail, Oswego, IL 60543) 1 3703 2010-06-24 10:05:11.45451-05 22 13 81 Habitat for Humanity Illinois 1 3704 2010-06-24 10:05:29.90774-05 22 13 81 Habitat for Humanity Illinois 2 Changed status. 3705 2010-06-24 10:06:00.265193-05 22 3 332 bburgstone 1 3706 2010-06-24 10:06:56.043763-05 22 3 332 bburgstone 2 Changed first_name, last_name, email and groups. 3707 2010-06-24 10:51:12.433352-05 123 17 81 Purchase #81 by mallar_solai@yahoo.com 2 Changed comment. 3708 2010-06-24 11:06:43.243888-05 22 12 744 Habitat for Humanity of Illinois (323 Grape Vine Trail, Oswego, IL 60543) 2 Changed addressee. 3709 2010-06-24 11:06:54.864439-05 22 13 81 Habitat for Humanity of Illinois 2 Changed title and slug. 3710 2010-06-24 11:20:40.864892-05 6 3 333 ckolodziej 1 3711 2010-06-24 11:21:53.234165-05 6 3 333 ckolodziej 2 Changed first_name, last_name and email. 3712 2010-06-24 11:46:42.771695-05 6 3 334 Jimsheehan 1 3713 2010-06-24 11:47:23.110164-05 6 3 334 Jimsheehan 2 Changed first_name, last_name and email. 3714 2010-06-24 11:48:30.690468-05 22 14 184 184 3 3715 2010-06-24 11:50:36.482028-05 22 14 175 175 2 Changed details for tix "4 tix 4 The Moody Blues". 3716 2010-06-24 11:53:05.489804-05 22 14 150 150 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 3717 2010-06-24 11:55:43.499116-05 22 14 76 76 2 Changed price for tix "2 tix 4 Chicago Cubs vs. Pittsburgh Pirates". 3718 2010-06-24 12:55:59.681928-05 123 12 745 Aladdin Theater (3017 SE Milwaukie Ave, Portland, OR 97202) 1 3719 2010-06-24 12:56:05.371096-05 123 18 528 Aladdin Theater 1 3720 2010-06-24 13:03:39.530953-05 123 12 746 Berbati's Pan (10 SW 3rd Avenue, Portland, OR 97204) 1 3721 2010-06-24 13:03:44.931843-05 123 18 529 Berbati's Pan 1 3722 2010-06-24 13:05:36.249348-05 123 12 747 DeMar Batchelor Amphitheater (873 NE 34th Ave, Hillsboro, OR 97124) 1 3723 2010-06-24 13:05:43.242007-05 123 18 530 DeMar Batchelor Amphitheater 1 3724 2010-06-24 13:07:08.701352-05 123 12 748 Domino Room (51 NW Greenwood Ave, Bend, OR 97701) 1 3725 2010-06-24 13:07:19.582794-05 123 18 531 Domino Room 1 3726 2010-06-24 13:08:56.098096-05 123 12 749 Elsinore Theatre (170 High Street Southeast, Salem, OR 97301) 1 3727 2010-06-24 13:08:59.990659-05 123 18 532 Elsinore Theatre 1 3728 2010-06-24 13:10:47.705765-05 123 12 750 Happy Canyon Arena (1601 Westgate, Pendleton, OR 97801) 1 3729 2010-06-24 13:10:50.859072-05 123 18 533 Happy Canyon Arena 1 3730 2010-06-24 13:12:20.96635-05 123 12 751 Hult Center for the Performing Arts (One Eugene Center, Eugene, OR 97401) 1 3731 2010-06-24 13:12:27.832864-05 123 18 534 Hult Center for the Performing Arts 1 3732 2010-06-24 13:13:46.753766-05 123 12 752 John Henrys (77 W Broadway, Eugene, OR 97401) 1 3733 2010-06-24 13:14:05.299459-05 123 18 535 John Henrys 1 3734 2010-06-24 13:15:33.004866-05 123 12 753 Kaul Auditorium (3203 SE Woodstock Blvd, Portland, OR 97202) 1 3735 2010-06-24 13:15:42.608832-05 123 18 536 Kaul Auditorium 1 3736 2010-06-24 13:17:14.425233-05 123 12 754 Les Schwab Amphitheater (344 SW Sevlin-Hixon Drive, Bend, OR 97702) 1 3737 2010-06-24 13:17:27.046658-05 123 18 537 Les Schwab Amphitheater 1 3738 2010-06-24 13:19:02.844634-05 123 12 755 Lincoln Performance Hall (1620 SW Park Avenue, Portland, OR 97201) 1 3739 2010-06-24 13:19:11.170907-05 123 18 538 Lincoln Performance Hall 1 3740 2010-06-24 13:21:37.820962-05 123 12 756 Lithia Motors Amphitheatre (1 Peninger Road, Central Point, OR 97502) 1 3741 2010-06-24 13:21:52.344676-05 123 18 539 Lithia Motors Amphitheatre 1 4194 2010-07-02 11:55:34.688538-05 22 14 190 190 1 3742 2010-06-24 13:28:24.670129-05 123 12 757 Lolas Room at the Crystal (1332 W Burnside, Portland, OR 97255) 1 3743 2010-06-24 13:30:07.241116-05 123 18 540 Lolas Room at the Crystal 1 3744 2010-06-24 13:32:00.528028-05 123 12 757 Lolas Room at the Crystal (1332 W Burnside, Portland, OR 97209) 2 Changed postal_code. 3745 2010-06-24 14:28:18.66777-05 22 12 329 Pioneer Clubs (555-5555, Carol Stream, IL 60188) 2 Changed street_1 and street_2. 3746 2010-06-24 14:29:47.225827-05 22 12 329 Pioneer Clubs (27W130 Saint Charles Rd., Carol Stream, IL 60188) 2 Changed street_1 and street_2. 3747 2010-06-24 16:11:01.94613-05 6 17 82 Purchase #82 by rgsv8@hotmail.com 2 Changed confirmation and comment. 3748 2010-06-24 16:11:13.103882-05 6 17 82 Purchase #82 by rgsv8@hotmail.com 2 Payment captured successful. 3749 2010-06-24 16:12:17.946628-05 6 14 175 175 2 Changed distribution_date and distrubution_notes. 3750 2010-06-25 08:31:10.648367-05 22 14 182 182 2 Changed letter_date. 3751 2010-06-25 08:31:37.922318-05 22 14 182 182 2 Deleted tix "2 tix 4 In Tune With Trees Summer Concert Series: Kenny Loggins with special guest Malea McGuinness". 3752 2010-06-25 08:31:59.531705-05 22 14 176 176 2 Deleted tix "2 tix 4 Keith Anderson". 3753 2010-06-25 08:32:13.81787-05 22 14 165 165 2 Deleted tix "2 tix 4 Sheryl Crow with special guest Colbie Caillat". 3754 2010-06-25 08:32:54.029719-05 22 14 178 178 2 Deleted tix "4 tix 4 In Tune With Trees Summer Concert Series: Kenny Loggins with special guest Malea McGuinness". 3755 2010-06-25 08:34:16.141198-05 22 14 182 182 2 No fields changed. 3756 2010-06-25 11:16:17.725393-05 261 13 80 Keshet 2 Changed teaser and description. 3757 2010-06-25 11:22:40.622165-05 30 13 80 Keshet 2 Changed color_logo and banner. 3758 2010-06-25 11:22:55.805133-05 30 13 80 Keshet 2 Changed status. 3759 2010-06-25 11:23:42.722604-05 30 13 80 Keshet 2 Changed has_detail. 3760 2010-06-25 11:25:37.726682-05 261 13 80 Keshet 2 No fields changed. 3761 2010-06-25 11:26:03.762659-05 261 13 80 Keshet 2 No fields changed. 3762 2010-06-26 09:42:15.672633-05 6 14 185 185 2 Changed featured and letter_date. 3763 2010-06-26 09:42:31.960268-05 6 14 185 185 2 Changed status. 3764 2010-06-26 09:45:05.40134-05 6 14 185 185 2 Changed details for tix "4 tix 4 The Wiggles Wiggly Circus". 3765 2010-06-26 17:48:08.554328-05 6 14 181 181 2 Changed featured. 3766 2010-06-28 09:18:02.500883-05 30 12 761 The Morton Arboretum (4100 Illinois Route 53, Lisle, IL 60532) 1 3767 2010-06-28 09:28:47.180551-05 30 13 82 The Morton Arboretum 1 3768 2010-06-28 09:34:09.52602-05 30 13 82 The Morton Arboretum 2 Changed color_logo and banner. 3769 2010-06-28 09:41:24.280079-05 30 13 82 The Morton Arboretum 2 Changed description. 3770 2010-06-28 10:20:18.889081-05 22 14 175 175 2 Deleted tix "4 tix 4 The Moody Blues". 3771 2010-06-28 10:27:56.385462-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed status. 3772 2010-06-28 11:37:32.346827-05 22 14 87 87 2 Deleted tix "2 tix 4 Tim McGraw with Lady Antebellum". 3773 2010-06-28 11:37:51.910519-05 22 14 170 170 2 Deleted tix "2 tix 4 Tim McGraw with Lady Antebellum". 3774 2010-06-28 13:20:19.781647-05 123 12 762 Maryhill Winery & Amphitheater (9774 Hwy #14, Goldendale, WA 98620) 1 3775 2010-06-28 13:20:33.85021-05 123 18 541 Maryhill Winery & Amphitheater 1 3776 2010-06-28 13:25:39.386783-05 123 12 763 McMenamins Bagdad Theater (3702 Southeast Hawthorne Boulevard, Portland, OR 97214) 1 3777 2010-06-28 13:25:49.931514-05 123 18 542 McMenamins Bagdad Theater 1 3778 2010-06-28 13:28:10.960906-05 123 12 764 McMenamins Crystal Ballroom (1332 W Burnside, Portland , OR 97209) 1 3779 2010-06-28 13:28:15.57366-05 123 18 543 McMenamins Crystal Ballroom 1 3780 2010-06-28 13:54:09.1512-05 123 12 765 McMenamins Historic Edgefield Manor (2126 SW Halsey Street, Troutdale, OR 97060) 1 3781 2010-06-28 13:54:13.65013-05 123 18 544 McMenamins Historic Edgefield Manor 1 3782 2010-06-28 13:56:30.56918-05 123 12 766 McMenamins Mission Theater (1624 Northwest Glisan Street, Portland, OR 97209) 1 3783 2010-06-28 13:56:36.638157-05 123 18 545 McMenamins Mission Theater 1 3784 2010-06-28 13:58:39.837883-05 123 12 767 Newmark Theatre (1111 SW Broadway Ave, Portland, OR 97201) 1 3785 2010-06-28 13:58:46.214527-05 123 18 546 Newmark Theatre 1 3786 2010-06-28 14:00:15.207474-05 123 12 768 Oregon Zoo (4001 SW Canyon Road, Portland , OR 97221) 1 3787 2010-06-28 14:00:33.794394-05 123 18 547 Oregon Zoo 1 3788 2010-06-28 14:01:49.223451-05 123 12 769 Rogue Theatre (143 SE H Street, Grants Pass, OR 97526) 1 3789 2010-06-28 14:01:54.113538-05 123 18 548 Rogue Theatre 1 3790 2010-06-28 14:03:46.383833-05 123 12 770 Rolling Hills Community Church--Tualatin (3550 SW Borland Rd, Tualatin, OR 97062) 1 3791 2010-06-28 14:04:35.718375-05 123 18 549 Rolling Hills Community Church 1 3792 2010-06-28 14:05:53.833549-05 123 12 771 Rose Quarter (1 Center Court, Suite 200, Portland, OR 97227) 1 3793 2010-06-28 14:06:02.950122-05 123 18 550 Rose Quarter 1 3794 2010-06-28 14:53:12.286308-05 22 13 25 Juvenile Diabetes Research Foundation 2 Changed charity, national and has_detail. 3795 2010-06-28 16:01:42.916785-05 22 13 81 Habitat for Humanity of Illinois 2 Changed color_logo. 3796 2010-06-28 16:04:27.623916-05 22 13 81 Habitat for Humanity of Illinois 2 Changed color_logo. 3797 2010-06-28 16:08:06.646366-05 22 13 81 Habitat for Humanity of Illinois 2 Changed color_logo. 3798 2010-06-28 16:09:29.322581-05 22 13 81 Habitat for Humanity of Illinois 2 Changed color_logo. 3799 2010-06-28 17:00:45.744477-05 6 17 3 Purchase #3 by kpryandds@aol.com 2 Changed comment. 3800 2010-06-28 22:18:52.760297-05 6 24 40 South Dakota 2 No fields changed. 3801 2010-06-29 09:45:38.714434-05 275 12 772 FedEx Forum (191 Beale Street, Memphis, TN 38103) 1 3802 2010-06-29 09:45:39.961353-05 275 18 551 FedEx Forum 1 3803 2010-06-29 09:46:11.468976-05 275 12 773 LP Field (1 Titans Way, Nashville, TN 37213) 1 3804 2010-06-29 09:46:12.743946-05 275 18 552 LP Field 1 3805 2010-06-29 09:46:51.562061-05 275 12 774 Bridgestone Arena (501 Broadway, Nashville, TN 37203) 1 3806 2010-06-29 09:46:53.804888-05 275 18 553 Bridgestone Arena 1 3807 2010-06-29 09:48:05.940823-05 275 12 775 Neyland Stadium (Phillip Fulmer Way, Knoxville, TN 37996) 1 3808 2010-06-29 09:48:08.141888-05 275 18 554 Neyland Stadium 1 3809 2010-06-29 09:48:49.054592-05 275 12 776 Thompson-Boling Arena (1600 Phillip Fulmer Way, Knoxville, TN 37916) 1 3810 2010-06-29 09:48:50.052017-05 275 18 555 Thompson-Boling Arena 1 3811 2010-06-29 09:49:29.04499-05 275 12 777 Tennessee Performing Arts Center (505 Deaderick Street, Nashville, TN 37219) 1 3812 2010-06-29 09:49:29.888174-05 275 18 556 Tennessee Performing Arts Center 1 3813 2010-06-29 09:50:05.578118-05 275 12 778 Ryman Auditorium (116 5th Avenue North, Nashville, TN 37219) 1 3814 2010-06-29 09:50:07.441877-05 275 18 557 Ryman Auditorium 1 4269 2010-07-12 09:59:09.576284-05 22 14 189 189 2 Changed featured. 3815 2010-06-29 09:50:48.443265-05 275 12 779 Nashville Municipal Auditorium (417 4th Avenue North, Nashville, TN 37201) 1 3816 2010-06-29 09:50:50.822188-05 275 18 558 Nashville Municipal Auditorium 1 3817 2010-06-29 10:28:31.538311-05 123 12 780 Salem Armory Auditorium (2320 17th St NE, Salem, OR 97310) 1 3818 2010-06-29 10:28:45.577582-05 123 18 559 Salem Armory Auditorium 1 3819 2010-06-29 10:30:55.719438-05 123 12 781 Sleep Country Amphitheater (at Clark County) (17200 NE Delfel Road, Ridgefield, WA 98642) 1 3820 2010-06-29 10:31:04.931312-05 123 18 560 Sleep Country Amphitheater (at Clark County) 1 3821 2010-06-29 10:32:34.101891-05 123 12 782 St. Paul Rodeo Arena (20025 4th Street, St Paul, OR 97137) 1 3822 2010-06-29 10:32:38.037967-05 123 18 561 St. Paul Rodeo Arena 1 3823 2010-06-29 10:35:21.143635-05 123 12 783 The Crazy Snake at Hells Canyon Inn (53945 Hwy 86, Halfway, OR 97834) 1 3824 2010-06-29 10:35:33.647498-05 123 18 562 The Crazy Snake at Hells Canyon Inn 1 3825 2010-06-29 10:37:56.300185-05 123 12 784 The Green Spot Entertainment Club (181 Anderson Ave, Coos Bay, OR 97420) 1 3826 2010-06-29 10:38:00.334371-05 123 18 563 The Green Spot Entertainment Club 1 3827 2010-06-29 10:39:34.201754-05 123 12 785 WOW Hall (291 W 8th Avenue, Eugene, OR 97401) 1 3828 2010-06-29 10:39:37.827074-05 123 18 564 WOW Hall 1 3829 2010-06-29 10:41:11.183982-05 123 12 786 Winningstad Theatre (1111 SW Broadway Ave, Portland, OR 97205) 1 3830 2010-06-29 10:41:20.005116-05 123 18 565 Winningstad Theatre 1 3831 2010-06-29 10:43:08.693773-05 123 12 787 Wonder Ballroom (128 Northeast Russell Street, Portland, OR 97212) 1 3832 2010-06-29 10:45:21.251923-05 123 18 566 Wonder Ballroom 1 3833 2010-06-29 10:50:01.86243-05 123 12 788 Merlo Field at University of Portland (University Park, Portland, OR 97203) 1 3834 2010-06-29 10:50:06.28557-05 123 18 567 Merlo Field at University of Portland 1 3835 2010-06-29 10:51:38.2199-05 123 12 789 Chiles Center at University of Portland (5000 N Willamette Blvd, Portland , OR 97203) 1 3836 2010-06-29 10:52:03.048076-05 123 18 568 Chiles Center at University of Portland 1 3837 2010-06-29 10:56:07.02861-05 123 12 790 Theater of the Clouds at the Rose Garden (1 North Center Court Drive, Portland, OR 97227) 1 3838 2010-06-29 10:56:23.014773-05 123 18 569 Theater of the Clouds at the Rose Garden 1 3839 2010-06-29 11:00:46.393021-05 123 12 791 Silva Concert Hall (7th and Willamette, Eugene, OR 97401) 1 3840 2010-06-29 11:00:56.074023-05 123 18 570 Silva Concert Hall 1 3841 2010-06-29 11:04:47.354927-05 123 12 792 Brunish Hall (1111 SW Broadway Ave, Portland , OR 97205) 1 3842 2010-06-29 11:04:58.838121-05 123 18 571 Brunish Hall 1 3843 2010-06-29 11:12:47.736111-05 123 12 793 Tacoma Dome (2727 East D St, Tacoma, WA 98421) 1 3844 2010-06-29 11:12:53.32311-05 123 18 572 Tacoma Dome 1 3845 2010-06-29 11:15:14.911725-05 123 12 794 Toyota Center Kennewick (7000 W. Grandridge Blvd, Kennewick, WA 99336) 1 3846 2010-06-29 11:15:19.819204-05 123 18 573 Toyota Center Kennewick 1 3847 2010-06-29 11:17:35.363769-05 123 12 795 Bagley Wright Theatre (155 Mercer Street, Seattle, WA 98109) 1 3848 2010-06-29 11:17:40.994768-05 123 18 574 Bagley Wright Theatre 1 3849 2010-06-29 11:19:11.562182-05 123 12 796 Nordstrom Recital Hall (200 University Street, Seattle, WA 98111) 1 3850 2010-06-29 11:19:15.426663-05 123 18 575 Nordstrom Recital Hall 1 3851 2010-06-29 11:20:52.397529-05 123 12 797 S. Mark Taper Auditorium (200 University Street, Seattle, WA 98111) 1 3852 2010-06-29 11:20:58.545064-05 123 18 576 S. Mark Taper Auditorium 1 3853 2010-06-29 11:23:03.77785-05 123 12 798 Chateau Ste Michelle Winery (14111 NE 145th Street, Woodinville, WA 98072) 1 3854 2010-06-29 11:23:17.491139-05 123 18 577 Chateau Ste Michelle Winery 1 3855 2010-06-29 11:24:57.52331-05 123 12 799 Christian Faith Center (33645 20th Avenue South, Federal Way, WA 98003) 1 3856 2010-06-29 11:25:02.145451-05 123 18 578 Christian Faith Center 1 3857 2010-06-29 11:27:05.28566-05 123 12 800 Comedy Underground--Big Whiskey (100 S. 9th St (Corner A), Tacoma, WA 98402) 1 3858 2010-06-29 11:27:16.394335-05 123 18 579 Comedy Underground--Big Whiskey 1 3859 2010-06-29 11:28:57.868238-05 123 12 801 Comedy Underground--Seattle (222 S Main St, Seattle, WA 98104) 1 3860 2010-06-29 11:29:04.036845-05 123 18 580 Comedy Underground--Seattle 1 3861 2010-06-29 11:30:51.565427-05 123 12 802 Concerts at Marymoor (6046 West Lake Sammamish Pkwy NE, Redmond, WA 98052) 1 3862 2010-06-29 11:30:57.395113-05 123 18 581 Concerts at Marymoor 1 3863 2010-06-29 11:32:40.719097-05 123 12 803 Emerald Queen Casino (2024 East 29th Street, Tacoma, WA 98404) 1 3864 2010-06-29 11:32:46.893148-05 123 18 582 Emerald Queen Casino 1 3865 2010-06-29 11:34:19.551038-05 123 12 804 Evergreen Speedway (14405 179th Ave SE, Monroe, WA 98272) 1 3866 2010-06-29 11:34:25.114791-05 123 18 583 Evergreen Speedway 1 3867 2010-06-29 11:36:24.85227-05 123 12 805 Evergreen State Fair (179th Avenue and US Hwy 2, Monroe, WA 98272) 1 3868 2010-06-29 11:36:28.969811-05 123 18 584 Evergreen State Fair 1 3869 2010-06-29 11:38:31.543913-05 123 12 806 Gorge Amphitheatre (754 Silica Road NW, George, WA 98848) 1 3870 2010-06-29 11:38:35.564416-05 123 18 585 Gorge Amphitheatre 1 3871 2010-06-29 11:40:48.824661-05 123 12 807 Hard Rock Cafe Seattle (116 Pike Street, Seattle, WA 98101) 1 3872 2010-06-29 11:40:52.875697-05 123 18 586 Hard Rock Cafe Seattle 1 3873 2010-06-29 11:42:52.157327-05 123 12 808 Jazz Alley (2033 6th Ave, Seattle, WA 98121) 1 3874 2010-06-29 11:42:56.756524-05 123 18 587 Jazz Alley 1 3875 2010-06-29 11:48:04.841742-05 123 12 809 McCaw Hall at Seattle Center (321 Mercer Street, Seattle, WA 98109) 1 3876 2010-06-29 11:48:17.150259-05 123 18 588 McCaw Hall at Seattle Center 1 3877 2010-06-29 11:51:25.621855-05 123 12 810 Mountain View Plaza at Snoqualmie Casino (37500 se Northbend Way, Snoqualmie, WA 98065) 1 3878 2010-06-29 11:51:32.121169-05 123 18 589 Mountain View Plaza at Snoqualmie Casino 1 3879 2010-06-29 11:54:00.008702-05 123 12 811 Northwest Railway Museum (38625 SE King Street, Snoqualmie, WA 98065) 1 3880 2010-06-29 11:54:03.323864-05 123 18 590 Northwest Railway Museum 1 3881 2010-06-29 11:55:30.055331-05 123 12 812 Pacific Raceways (31001 144th SE, Kent, WA 98034) 1 3882 2010-06-29 11:55:33.707078-05 123 18 591 Pacific Raceways 1 3883 2010-06-29 11:59:07.788112-05 123 12 813 Pendleton Rodeo Arena (1205 SW Courtaddress, Pendleton, OR 97801) 1 3884 2010-06-29 11:59:13.765353-05 123 18 592 Pendleton Rodeo Arena 1 3885 2010-06-29 12:01:16.933621-05 123 12 814 Seattle Center (305 Harrison Street, Seattle, WA 98109) 1 3886 2010-06-29 12:01:21.733261-05 123 18 593 Seattle Center 1 3887 2010-06-29 12:05:19.562608-05 123 12 815 Showbox SoDo (1700 1st Ave S., Seattle, WA 98134) 1 3888 2010-06-29 12:05:26.438749-05 123 18 594 Showbox SoDo 1 3889 2010-06-29 12:08:08.935579-05 123 12 816 (1426 1st Ave, Seattle, WA 98101) 1 3891 2010-06-29 12:12:21.178368-05 123 12 817 Skagit Valley Casino Pacific Showroom (5984 N. Darrk Lane, Bow, WA 98232) 1 3892 2010-06-29 12:12:37.924941-05 123 18 596 Skagit Valley Casino Pacific Showroom 1 3893 2010-06-29 12:14:42.426667-05 123 12 818 Snoqualmie Casino--Ballroom (37500 SE Northbend Way, Snoqualmie, WA 98065) 1 3894 2010-06-29 12:14:47.348683-05 123 18 597 Snoqualmie Casino--Ballroom 1 3895 2010-06-29 12:17:13.453646-05 123 12 819 Spokane Arena (720 West Mallon Avenue, Spokane, WA 99201) 1 3896 2010-06-29 12:17:19.977778-05 123 18 598 Spokane Arena 1 3897 2010-06-29 12:19:42.873491-05 123 12 820 Suncadia (770 Suncadia Trail, Cle Elum, WA 98922) 1 3898 2010-06-29 12:19:47.63108-05 123 18 599 Suncadia 1 3899 2010-06-29 12:22:30.33606-05 123 12 821 INB Performing Arts Center (W. 334 Spokane Falls Blvd, Spokane, WA 99201) 1 3900 2010-06-29 12:22:51.724698-05 123 18 600 INB Performing Arts Center 1 3901 2010-06-29 12:25:22.269682-05 123 12 822 Puyallup Fair and Events Center (110 9th Ave SW, Puyallup, WA 98731) 1 3902 2010-06-29 12:25:27.367412-05 123 18 601 Puyallup Fair and Events Center 1 3903 2010-06-29 12:27:54.745223-05 123 12 823 Tulalip Amphitheatre (10400 Quil Ceda Blvd, Tulalip, WA 98271) 1 3904 2010-06-29 12:28:07.206435-05 123 18 602 Tulalip Amphitheatre 1 3905 2010-06-29 12:30:42.066615-05 123 12 824 Three Rivers Convention Center (7016 West Grandridge Boulevard, Kennewick, WA 99336) 1 3906 2010-06-29 12:30:46.451332-05 123 18 603 Three Rivers Convention Center 1 3907 2010-06-29 13:03:56.34738-05 123 14 87 87 2 Changed distribution_date and distrubution_notes. 3908 2010-06-29 13:13:11.012107-05 123 12 825 Tournament Players Course at Snoqualmie Ridge (36005 SE Ridge Street, Snoqualmie, WA 98065) 1 3909 2010-06-29 13:13:16.250234-05 123 18 604 Tournament Players Course at Snoqualmie Ridge 1 3910 2010-06-29 13:15:12.069263-05 123 12 826 Tractor Tavern (5213 Ballard Ave NW, Seattle, WA 98107) 1 3911 2010-06-29 13:15:16.179122-05 123 18 605 Tractor Tavern 1 3912 2010-06-29 13:17:09.463023-05 123 12 827 Triple Door (216 Union Street (at 3rd Avenue), Seattle, WA 98101) 1 3913 2010-06-29 13:17:13.604158-05 123 18 606 Triple Door 1 3914 2010-06-29 13:19:15.692271-05 123 12 828 Village Theatre (303 Front St North, Issaquah, WA 98027) 1 3915 2010-06-29 13:19:19.594873-05 123 18 607 Village Theatre 1 3916 2010-06-29 13:21:15.932885-05 123 12 829 Village Theatre at Everett Performing Arts Center (2710 Wetmore, Everett, WA 98201) 1 3917 2010-06-29 13:21:23.126051-05 123 18 608 Village Theatre at Everett Performing Arts Center 1 3918 2010-06-29 13:24:22.484474-05 123 12 830 White River Amphitheatre (40601 Auburn Enumclaw Road, Auburn, WA 98092) 1 3919 2010-06-29 13:24:26.408932-05 123 18 609 White River Amphitheatre 1 3920 2010-06-29 13:25:26.311446-05 275 12 831 Bank of America Stadium (800 South Mint Street, Charlotte, NC 28202) 1 3921 2010-06-29 13:25:28.710041-05 275 18 610 Bank of America Stadium 1 3922 2010-06-29 13:26:09.309211-05 275 12 832 Time Warner Cable Arena (333 East Trade Street, Charlotte , NC 28202) 1 3923 2010-06-29 13:26:10.107541-05 275 18 611 Time Warner Cable Arena 1 3924 2010-06-29 13:26:31.316428-05 123 12 833 Yakama Nation Legends Casino (580 Fort Road, Toppenish, WA 98948) 1 3925 2010-06-29 13:26:44.657939-05 123 18 612 Yakama Nation Legends Casino 1 3926 2010-06-29 13:26:52.489904-05 275 12 834 RBC Center (1400 Edwards Mill Road, Raleigh, NC 27607) 1 3927 2010-06-29 13:26:54.375336-05 275 18 613 RBC Center 1 3928 2010-06-29 13:27:31.35958-05 275 12 835 Dean Smith Center (300 Skipper Bowles Drive, Chapel Hill, NC 27599) 1 3929 2010-06-29 13:27:32.208067-05 275 18 614 Dean Smith Center 1 3930 2010-06-29 13:28:16.079738-05 275 12 836 Cameron Indoor Stadium (301 Whitford Drive, Durham, NC 27706) 1 3931 2010-06-29 13:28:17.085004-05 275 18 615 Cameron Indoor Stadium 1 3932 2010-06-29 13:28:25.604247-05 123 12 837 Yakima Valley Sundome (1301 S. Fair Ave, Yakima, WA 98901) 1 3933 2010-06-29 13:28:32.795756-05 123 18 616 Yakima Valley Sundome 1 3934 2010-06-29 13:28:54.325435-05 275 12 838 BB&T Field (411 Deacon Blvd, Winston-Salem, NC 27105) 1 3935 2010-06-29 13:28:55.257117-05 275 18 617 BB&T Field 1 3936 2010-06-29 13:29:38.289499-05 275 12 839 Lawrence Joel Veterans Memorial Coliseum (2825 University Pkwy, Winston-Salem, NC 27105) 1 3937 2010-06-29 13:29:39.164983-05 275 18 618 Lawrence Joel Veterans Memorial Coliseum 1 3938 2010-06-29 13:30:22.198264-05 123 12 833 Yakama Nation Legends Casino (580 Fort Road, Toppenish, WA 98948) 2 No fields changed. 3939 2010-06-29 13:30:38.977999-05 275 12 840 Verizon Wireless Amphitheatre Charlotte (707 Pavilion Blvd, Charlotte , NC 28262) 1 3940 2010-06-29 13:30:39.988948-05 275 18 619 Verizon Wireless Amphitheatre Charlotte 1 3941 2010-06-29 13:31:19.068945-05 275 12 841 Greensboro Coliseum Complex (1921 West Lee Street, Greensboro, NC 27403) 1 3942 2010-06-29 13:31:20.18205-05 275 18 620 Greensboro Coliseum Complex 1 3943 2010-06-29 13:49:51.67832-05 123 12 842 Casper Events Center (#1 Events Drive, Casper, WY 82601) 1 3944 2010-06-29 13:50:00.050141-05 123 18 621 Casper Events Center 1 3945 2010-06-29 13:53:25.778777-05 123 12 843 Holt Arena (921 South 8th Ave., Pocatello, ID 83209) 1 3946 2010-06-29 13:53:32.43305-05 123 18 622 Holt Arena 1 3947 2010-06-29 13:57:38.300631-05 123 12 844 Idaho Center (16200 Can-Ada Road, Nampa, ID 83687) 1 3948 2010-06-29 13:57:43.204293-05 123 18 623 Idaho Center 1 3949 2010-06-29 13:59:32.462524-05 123 12 845 Morrison Center for the Performing Arts (2201 Campus Lane, Boise, ID 83725) 1 3950 2010-06-29 14:01:16.041286-05 123 18 624 Morrison Center for the Performing Arts 1 3951 2010-06-29 14:02:24.003993-05 123 12 846 Taco Bell Arena (1910 University Drive, Boise, ID 83725) 1 3952 2010-06-29 14:02:28.112725-05 123 18 625 Taco Bell Arena 1 3953 2010-06-29 14:27:48.909789-05 22 14 186 186 2 Changed charity. Changed details for tix "4 tix 4 Jack Ingram featuring Randy Montana". 3954 2010-06-30 10:29:34.196778-05 123 12 847 Bok Center (200 S Denver Ave, Tulsa, OK 74103) 1 3955 2010-06-30 10:29:41.910513-05 123 18 626 Bok Center 1 3956 2010-06-30 10:30:55.653385-05 123 12 848 Cox Convention Center Arena (One Myriad Gardens, Oklahoma City, OK 73102) 1 3957 2010-06-30 10:30:59.511567-05 123 18 627 Cox Convention Center Arena 1 3958 2010-06-30 10:32:06.040019-05 123 12 849 Ford Center (100 West Reno, Oklahoma City, OK 73102) 1 3959 2010-06-30 10:32:12.194139-05 123 18 628 Ford Center 1 3960 2010-06-30 10:34:37.132489-05 123 12 850 Lazy E. Arena (9600 Lazy E Drive, Guthrie, OK 73044) 1 3961 2010-06-30 10:34:41.970273-05 123 18 629 Lazy E Arena 1 3962 2010-06-30 10:36:14.661026-05 123 12 851 Little River Music Valley (35267 Little River Rd., Tecumseh, OK 74873) 1 3963 2010-06-30 10:36:28.747323-05 123 18 630 Little River Music Valley 1 3964 2010-06-30 10:41:15.099575-05 123 12 852 Oklahoma Railway Museum (3400 NE Grand Boulevard, Oklahoma City, OK 73111) 1 3966 2010-06-30 10:45:01.866363-05 123 12 853 Osage County Fairgrounds (Skyline Drive Rd. , Pawhuska, OK 74056) 1 3967 2010-06-30 10:45:06.014074-05 123 18 632 Osage County Fairgrounds 1 3968 2010-06-30 10:46:36.301012-05 123 12 854 Rose State College Performing Arts Theatre (6420 S.E. 15th, Oklahoma City, OK 73110) 1 3969 2010-06-30 10:46:39.735548-05 123 18 633 Rose State College Performing Arts Theatre 1 3970 2010-06-30 10:47:50.44108-05 123 12 855 Tulsa Convention Center (100 Civic Center, Tulsa, OK 74103) 1 3971 2010-06-30 10:48:01.523345-05 123 18 634 Tulsa Convention Center 1 3972 2010-06-30 10:54:35.05588-05 123 12 856 Boone Pickens Stadium (W Hall of Fame Ave & N Hester St, Stillwater, OK 74078) 1 3973 2010-06-30 10:54:39.592217-05 123 18 635 Boone Pickens Stadium 1 3974 2010-06-30 10:56:58.858549-05 123 12 857 AT&T Bricktown Ballpark (2 S. Mickey Mantle Drive, Oklahoma City, OK 73104) 1 3975 2010-06-30 10:57:03.647722-05 123 18 636 AT&T Bricktown Ballpark 1 3976 2010-06-30 11:02:03.983822-05 123 12 858 Allie P Reynolds Stadium (Oklahoma State University Campus, Stillwater, OK 74078) 1 3977 2010-06-30 11:02:09.213216-05 123 18 637 Allie P Reynolds Stadium 1 3978 2010-06-30 11:03:34.526643-05 123 12 859 Brady Theater (105 West Brady Street, Tulsa, OK 74103) 1 3979 2010-06-30 11:03:38.114769-05 123 18 638 Brady Theater 1 3980 2010-06-30 11:04:57.439865-05 123 12 860 Bricktown Live (319 E. Sheridan, Oklahoma City, OK 73104) 1 3981 2010-06-30 11:05:01.009585-05 123 18 639 Bricktown Live 1 3982 2010-06-30 11:06:21.563299-05 123 12 861 Caines Ballroom (423 North Main Street, Tulsa, OK 74103) 1 3983 2010-06-30 11:06:28.302326-05 123 18 640 Caines Ballroom 1 3984 2010-06-30 11:09:13.717552-05 123 12 862 Chisholm Trail Coliseum (111 W Purdue Ave, Enid, OK 73701) 1 3985 2010-06-30 11:09:18.560713-05 123 18 641 Chisholm Trail Coliseum 1 3986 2010-06-30 11:13:32.849678-05 123 12 863 Civic Center Music Hall (201 North Walker Avenue, Oklahoma City, OK 73102) 1 3987 2010-06-30 11:13:53.188921-05 123 18 642 Civic Center Music Hall 1 3988 2010-06-30 11:15:24.279545-05 123 12 864 Coca-Cola Bricktown Events Center (425 E California Avenue, Oklahoma City, OK 73104) 1 3989 2010-06-30 11:15:28.792425-05 123 18 643 Coca-Cola Bricktown Events Center 1 3990 2010-06-30 11:17:07.383785-05 123 12 865 Cowgirl Stadium (Oklahoma State University Campus, Stillwater, OK 74078) 1 3991 2010-06-30 11:17:11.532127-05 123 18 644 Cowgirl Stadium 1 3992 2010-06-30 11:19:05.263462-05 123 12 866 Crown Plaza Oklahoma City (2945 Northwest Expressway, Oklahoma City, OK 73112) 1 3993 2010-06-30 11:19:11.599051-05 123 18 645 Crowne Plaza Oklahoma City 1 3994 2010-06-30 11:20:32.805178-05 123 12 867 Diamond Ballroom (8001 S. Eastern, Oklahoma City, OK 73149) 1 3995 2010-06-30 11:20:37.946612-05 123 18 646 Diamond Ballroom 1 3996 2010-06-30 11:22:01.910685-05 123 12 868 Donald Reynolds Center (University of Tulsa, Tulsa, OK 74104) 1 3997 2010-06-30 11:22:06.354239-05 123 18 647 Donald Reynolds Center 1 3998 2010-06-30 11:24:51.080182-05 123 12 869 Drillers Stadium (4802 East 15th St., Tulsa, OK 74112) 1 3999 2010-06-30 11:24:55.018444-05 123 18 648 Drillers Stadium 1 4000 2010-06-30 11:26:27.666862-05 123 12 870 Electric Circus (222 East 1st Street, Tulsa, OK 74103) 1 4001 2010-06-30 11:26:30.767774-05 123 18 649 Electric Circus 1 4002 2010-06-30 11:27:49.894855-05 123 12 871 Expo Square Pavilion (4145 E. 21st Street, Tulsa, OK 74114) 1 4003 2010-06-30 11:27:53.931684-05 123 18 650 Expo Square Pavilion 1 4004 2010-06-30 11:29:33.655218-05 123 12 872 Flytrap Music Hall (514 East 2nd Street, Tulsa, OK 74120) 1 4005 2010-06-30 11:29:45.140612-05 123 18 651 Flytrap Music Hall 1 4006 2010-06-30 11:32:20.946395-05 123 12 873 Gallagher Iba Arena (Oklahoma State University, Stillwater, OK 74078) 1 4007 2010-06-30 11:32:28.39734-05 123 18 652 Gallagher Iba Arena 1 4008 2010-06-30 11:34:06.781466-05 123 12 874 Gaylord Family Oklahoma Memorial Stadium (1185 Asp Ave, Norman, OK 73019) 1 4009 2010-06-30 11:34:11.058911-05 123 18 653 Gaylord Family Oklahoma Memorial Stadium 1 4010 2010-06-30 11:35:19.343349-05 123 12 875 Holland Hall (5666 East 81st Street, Tulsa, OK 74137) 1 4011 2010-06-30 11:35:25.068848-05 123 18 654 Holland Hall 1 4012 2010-06-30 11:37:23.040791-05 123 12 876 Howard McCasland Field House (151 W Brooks, Norman, OK 73019) 1 4013 2010-06-30 11:37:39.361058-05 123 18 655 Howard McCasland Field House 1 4014 2010-06-30 11:39:51.254574-05 123 12 876 Howard McCasland Field House (180 W Brooks, Norman, OK 73019) 2 Changed street_1. 4015 2010-06-30 11:40:57.278614-05 123 12 876 Howard McCasland Field House (151 W Brooks, Norman, OK 73019) 2 Changed street_1. 4016 2010-06-30 11:43:43.432672-05 123 12 877 Lewis Field (W Hall of Fame Ave & N Hester St, Stillwater, OK 74078) 1 4017 2010-06-30 11:43:52.468246-05 123 18 656 Lewis Field 1 4018 2010-06-30 11:46:31.819604-05 123 12 878 Lloyd Noble Center (180 West Brooks, Norman, OK 73019) 1 4019 2010-06-30 11:46:42.133623-05 123 18 657 Lloyd Noble Center 1 4020 2010-06-30 11:48:41.712384-05 123 12 879 Mabee Center (81st & Lewis Ave, Tulsa, OK 74101) 1 4021 2010-06-30 11:48:51.330277-05 123 18 658 Mabee Center 1 4022 2010-06-30 11:50:02.047787-05 123 12 880 Myriad Convention Center (One Myriad Gardens, Oklahoma City, OK 73102) 1 4023 2010-06-30 11:50:06.215789-05 123 18 659 Myriad Convention Center 1 4024 2010-06-30 11:52:35.304487-05 123 12 881 Oak Tree Golf Club (1515 Oak Tree Drive, Edmond, OK 73003) 1 4025 2010-06-30 11:52:39.407284-05 123 18 660 Oak Tree Golf Club 1 4026 2010-06-30 11:54:15.763198-05 123 12 882 Oklahoma City Zoo Amphitheatre (2101 NE 50th St, Oklahoma City, OK 73111) 1 4027 2010-06-30 11:54:22.388706-05 123 18 661 Oklahoma City Zoo Amphitheatre 1 4028 2010-06-30 13:33:43.691517-05 22 14 76 76 2 Changed status. 4029 2010-06-30 13:34:01.703848-05 22 14 150 150 2 Changed status. 4030 2010-06-30 13:34:51.044613-05 22 14 150 150 2 Changed featured. 4031 2010-06-30 13:35:07.848077-05 22 14 76 76 2 Changed featured. 4032 2010-06-30 13:35:54.675248-05 22 14 110 110 2 Changed featured. 4033 2010-06-30 13:36:07.857248-05 22 14 109 109 2 Changed featured. 4034 2010-06-30 13:38:17.890301-05 22 19 125 Chicago Cubs vs. Pittsburgh Pirates 6/29 2 Changed title. 4035 2010-06-30 13:38:57.979449-05 22 19 125 Chicago Cubs vs. Pittsburgh Pirates 2 Changed title. 4036 2010-06-30 13:39:14.898254-05 22 19 96 Chicago Cubs vs. Pittsburgh Pirates 6/29 2 Changed title. 4037 2010-06-30 13:40:05.121028-05 22 19 96 Chicago Cubs vs. Pittsburgh Pirates 2 Changed title. 4038 2010-06-30 13:40:46.332374-05 22 19 59 Chicago White Sox vs. Los Angeles Angels of Anaheim 7/5 2 Changed title. 4039 2010-06-30 13:41:19.478098-05 22 19 59 Chicago White Sox vs. Los Angeles Angels of Anaheim 2 Changed title. 4040 2010-06-30 13:43:02.523555-05 22 14 186 186 2 No fields changed. 4041 2010-06-30 13:51:41.226706-05 124 14 185 185 2 Changed distribution_date and distrubution_notes. 4042 2010-06-30 13:52:35.949313-05 124 17 83 Purchase #83 by eschmidt17@yahoo.com 2 Payment captured successful. 4043 2010-06-30 14:30:17.070875-05 22 3 332 bburgstone 2 Changed email. 4044 2010-06-30 14:42:18.520815-05 275 12 885 Raymond James Stadium (4201 N. Dale Mabry Highway, Tampa, FL 33607) 1 4045 2010-06-30 14:42:20.426596-05 275 18 662 Raymond James Stadium 1 4046 2010-06-30 14:43:03.151726-05 275 12 886 St. Pete Times Forum (401 Channelside Drive, Tampa, FL 33602) 1 4047 2010-06-30 14:43:13.206816-05 275 18 663 St. Pete Times Forum 1 4048 2010-06-30 14:43:48.767776-05 275 12 887 Tropicana Field (One Tropicana Drive, St. Petersburg, FL 33705) 1 4049 2010-06-30 14:43:49.781907-05 275 18 664 Tropicana Field 1 4050 2010-06-30 14:44:25.731913-05 275 12 888 USF Sun Dome (Elm Drive, Tampa, FL 33620) 1 4051 2010-06-30 14:44:27.456-05 275 18 665 USF Sun Dome 1 4052 2010-06-30 14:45:44.651313-05 275 12 889 The David A. Straz Jr. Center for the Performing Arts (1010 North W.C. MacInnes Place, Tampa, FL 33602) 1 4053 2010-06-30 14:45:45.345657-05 275 18 666 The David A. Straz Jr. Center for the Performing Arts 1 4054 2010-06-30 14:47:36.341287-05 275 12 890 1-800-ASK-GARY Ampitheatre (4802 US Highway 301 North , Tampa, FL 33610) 1 4055 2010-06-30 14:47:36.773425-05 275 12 891 1-800-ASK-GARY Ampitheatre (4802 US Highway 301 North , Tampa, FL 33610) 1 4056 2010-06-30 14:47:38.580506-05 275 18 667 1-800-ASK-GARY Ampitheatre 1 4057 2010-06-30 14:48:29.723859-05 275 12 892 Ruth Eckerd Hall (1111 McMullen Booth Road, Clearwater, FL 33759) 1 4058 2010-06-30 14:48:31.876827-05 275 18 668 Ruth Eckerd Hall 1 4059 2010-06-30 16:01:42.103226-05 275 12 893 Verizon Center (601 F Street NW, Washington , DC 20004) 1 4060 2010-06-30 16:01:43.538794-05 275 18 669 Verizon Center 1 4061 2010-06-30 16:02:38.546812-05 275 12 894 Nationals Park (1500 South Capitol Street SE, Washington , DC 20003) 1 4062 2010-06-30 16:02:39.786099-05 275 18 670 Nationals Parks 1 4063 2010-06-30 16:03:34.148119-05 275 12 895 Nationals Park (1500 South Capitol Street SE, Washington , DC 20003) 1 4064 2010-06-30 16:04:15.452748-05 275 18 670 Nationals Park 2 Changed title and address. 4065 2010-06-30 16:05:24.657925-05 275 12 896 RFK Stadium (2400 East Capitol Street SE, Washington , DC 20003) 1 4066 2010-06-30 16:05:30.20709-05 275 18 671 RFK Stadium 1 4067 2010-06-30 16:12:53.386056-05 275 12 897 FedEx Field (1600 FedEx Way, Landover, MD 20785) 1 4068 2010-06-30 16:12:54.278527-05 275 18 672 FedEx Field 1 4069 2010-06-30 16:13:50.95583-05 275 12 898 John F. Kennedy Center for the Performing Arts (2700 F Street NW, Washington , DC 20566) 1 4070 2010-06-30 16:13:51.962564-05 275 18 673 John F. Kennedy Center for the Performing Arts 1 4071 2010-06-30 16:18:06.960673-05 275 12 899 1st Marine Arena (201 W Baltimore Street, Baltimore, MD 21201) 1 4072 2010-06-30 16:18:08.306999-05 275 18 674 1st Marine Arena 1 4073 2010-06-30 16:19:49.38622-05 275 12 900 Music Center at Strathmore (5301 Tuckerman Lane, N. Bethesda, MD 20852) 1 4074 2010-06-30 16:19:50.345524-05 275 18 675 Music Center at Strathmore 1 4075 2010-06-30 16:20:31.935384-05 275 12 901 Jiffy Lube Live (7800 Cellar Door Drive, Bristow, VA 20136) 1 4076 2010-06-30 16:20:33.041878-05 275 18 676 Jiffy Lube Live 1 4077 2010-06-30 16:31:55.489058-05 275 12 902 Oriole Park at Camden Yards (333 West Camden Street, Baltimore, MD 21201) 1 4078 2010-06-30 16:31:55.742144-05 275 12 903 Oriole Park at Camden Yards (333 West Camden Street, Baltimore, MD 21201) 1 4079 2010-06-30 16:31:57.52083-05 275 18 677 Oriole Park at Camden Yards 1 4080 2010-06-30 16:32:39.61472-05 275 12 904 M&T Bank Stadium (1101 Russell Street, Baltimore, MD 21230) 1 4081 2010-06-30 16:32:48.016824-05 275 18 678 M&T Bank Stadium 1 4082 2010-06-30 16:33:25.636088-05 275 12 905 France-Merrick Performing Arts Center (12 North Eutaw Street, Baltimore, MD 21201) 1 4083 2010-06-30 16:33:26.886323-05 275 18 679 France-Merrick Performing Arts Center 1 4084 2010-07-01 09:48:39.157113-05 22 19 132 Billy Elliot the Musical 7/10 1 4085 2010-07-01 09:52:53.72323-05 22 14 188 188 1 4086 2010-07-01 12:27:07.625663-05 123 12 909 Osage Million Dollar Elm Casino (951 West 36th Street North, Tulsa, OK 74127) 1 4087 2010-07-01 12:27:13.17853-05 123 18 680 Osage Million Dollar Elm Casino 1 4088 2010-07-01 12:29:05.141861-05 123 12 910 OSU-Tulsa Auditorium (700 North Greenwood Avenue, Tulsa, OK 74106) 1 4089 2010-07-01 12:29:10.342087-05 123 18 681 OSU-Tulsa Auditorium 1 4090 2010-07-01 12:33:23.637576-05 123 12 911 Owen Field (180 W Brooks, Norman, OK 73019) 1 4091 2010-07-01 12:33:32.35007-05 123 18 682 Owen Field 1 4092 2010-07-01 12:35:42.98282-05 123 12 912 Riverwind Casino (1544 W State Hwy 9, Oklahoma City, OK 73069) 1 4093 2010-07-01 12:35:47.753843-05 123 18 683 Riverwind Casino 1 4094 2010-07-01 12:39:38.985734-05 123 12 913 Sheraton Oklahoma City (One North Broadway, Oklahoma City, OK 73102) 1 4095 2010-07-01 12:39:42.878481-05 123 18 684 Sheraton Oklahoma City 1 4096 2010-07-01 12:41:36.409733-05 123 12 914 Skelly Field at H. A. Chapman Stadium (University of Tulsa, Tulsa, OK 74104) 1 4097 2010-07-01 12:41:40.637829-05 123 18 685 Skelly Field at H. A. Chapman Stadium 1 4098 2010-07-01 12:43:10.012857-05 123 12 915 Southern Hills Country Club (2636 E 61st St, Tulsa, OK 74136) 1 4099 2010-07-01 12:43:18.365604-05 123 18 686 Southern Hills Country Club 1 4100 2010-07-01 12:44:38.821053-05 123 12 916 Spirit Bank Events Center (10441 S. Regal Blvd. Suite 295, Tulsa, OK 74119) 1 4101 2010-07-01 12:45:49.692176-05 123 18 687 Spirit Bank Events Center 1 4102 2010-07-01 12:46:50.100024-05 123 12 917 Blue Door (2805 N. Mckinley, Oklahoma City, OK 73106) 1 4103 2010-07-01 12:46:54.730991-05 123 18 688 Blue Door 1 4104 2010-07-01 13:33:05.31216-05 123 12 918 The Conservatory (8911 N Western Avenue, Oklahoma City, OK 73114) 1 4105 2010-07-01 13:33:09.141641-05 123 18 689 The Conservatory 1 4106 2010-07-01 13:34:07.709231-05 123 12 919 The Hive (216 N Elgin Avenue, Tulsa, OK 74120) 1 4107 2010-07-01 13:34:12.49362-05 123 18 690 The Hive 1 4108 2010-07-01 13:35:15.733665-05 123 12 920 The Marquee - OK (222 N. Main St., Tulsa, OK 74103) 1 4109 2010-07-01 13:35:20.126896-05 123 18 691 The Marquee - OK 1 4110 2010-07-01 13:36:27.799214-05 123 12 921 The Other Side (6904 S Lewis Ave, Tulsa, OK 74136) 1 4111 2010-07-01 13:36:30.667721-05 123 18 692 The Other Side 1 4112 2010-07-01 13:37:30.589833-05 123 12 922 Tulsa Community College - Studio Theatre (909 S. Boston, Tulsa, OK 74119) 1 4113 2010-07-01 13:37:37.84948-05 123 18 693 Tulsa Community College - Studio Theatre 1 4114 2010-07-01 13:38:44.376062-05 123 12 923 Tulsa Community College - Vantrease Pace (10300 E 81st St, Tulsa, OK 74133) 1 4115 2010-07-01 13:38:48.140996-05 123 18 694 Tulsa Community College - Vantrease Pace 1 4270 2010-07-12 09:59:24.183799-05 22 14 110 110 2 Changed featured. 4116 2010-07-01 13:42:07.463251-05 123 12 924 Tulsa Performing Arts Center - Chapman Music Hall (110 E. 2nd St., Tulsa, OK 74103) 1 4117 2010-07-01 13:42:10.933906-05 123 18 695 Tulsa Performing Arts Center - Chapman Music Hall 1 4118 2010-07-01 13:43:22.807482-05 123 12 925 Tulsa Raceway Park (3101 N Garnett Rd., Tulsa, OK 74116) 1 4119 2010-07-01 13:43:25.896516-05 123 18 696 Tulsa Raceway Park 1 4120 2010-07-01 13:47:05.997333-05 123 12 926 Tulsa River Parks Amphitheater (2100 South Jackson Ave, Tulsa, OK 74127) 1 4121 2010-07-01 13:47:40.25561-05 123 18 697 Tulsa River Parks Amphitheater 1 4122 2010-07-01 13:55:28.471503-05 123 12 927 Victory Christian Center (7700 S. Lewis Ave., Tulsa, OK 74136) 1 4123 2010-07-01 13:55:32.654008-05 123 18 698 Victory Christian Center 1 4124 2010-07-01 14:29:52.215053-05 123 12 928 Wantland Stadium (100 N. University Blvd, Edmond, OK 73034) 1 4125 2010-07-01 14:29:56.055783-05 123 18 699 Wantland Stadium 1 4126 2010-07-01 14:31:06.944527-05 123 12 929 Wormy Dog Saloon (311 East Sheridan, Oklahoma City, OK 73104) 1 4127 2010-07-01 14:31:10.664302-05 123 18 700 Wormy Dog Saloon 1 4128 2010-07-02 09:20:21.310544-05 6 19 133 Chicago Cubs vs. Cincinnati Reds 2 No fields changed. 4129 2010-07-02 09:23:36.209509-05 6 19 133 Chicago Cubs vs. Cincinnati Reds 2 No fields changed. 4130 2010-07-02 09:25:37.364502-05 6 14 186 186 2 Changed featured and letter_date. 4131 2010-07-02 09:26:41.001126-05 6 14 186 186 2 Changed status. 4132 2010-07-02 09:40:13.283285-05 6 14 187 187 2 Changed charity, featured and letter_date. 4133 2010-07-02 09:46:01.523817-05 6 14 189 189 2 Changed featured and letter_date. 4134 2010-07-02 09:47:08.307167-05 6 14 189 189 2 Changed status. 4135 2010-07-02 09:57:06.892684-05 6 14 187 187 2 Changed price for tix "5 tix 4 Cubs v. Phillies". 4136 2010-07-02 09:58:19.725492-05 6 14 187 187 2 Changed status. Changed details for tix "5 tix 4 Cubs v. Phillies". 4137 2010-07-02 09:58:54.792024-05 6 14 111 111 2 Changed featured. 4138 2010-07-02 09:59:58.460882-05 6 14 187 187 2 No fields changed. 4139 2010-07-02 10:02:06.071038-05 6 19 131 Chicago Cubs v. Philadelphia Phillies 2 Changed title. 4140 2010-07-02 10:14:13.968886-05 30 14 104 104 2 Changed status. 4141 2010-07-02 10:14:44.827955-05 30 14 103 103 2 Changed status. 4142 2010-07-02 10:15:06.533045-05 30 14 102 102 2 Changed status. 4143 2010-07-02 10:15:32.043495-05 30 14 101 101 2 Changed status. 4144 2010-07-02 10:15:57.790261-05 30 14 100 100 2 Changed status. 4145 2010-07-02 10:16:21.118805-05 30 14 99 99 2 Changed status. 4146 2010-07-02 10:17:04.445214-05 30 14 97 97 2 Changed status. 4147 2010-07-02 10:17:25.412275-05 30 14 96 96 2 Changed status. 4148 2010-07-02 10:17:46.076151-05 30 14 95 95 2 Changed status. 4149 2010-07-02 10:18:09.947454-05 30 14 94 94 2 Changed status. 4150 2010-07-02 10:18:36.153483-05 30 14 93 93 2 Changed status. 4151 2010-07-02 10:19:17.370776-05 30 14 92 92 2 Changed status. 4152 2010-07-02 10:19:46.972588-05 30 14 91 91 2 Changed status. 4153 2010-07-02 10:20:21.801713-05 30 14 90 90 2 Changed status. 4154 2010-07-02 10:20:54.469569-05 30 14 89 89 2 Changed status. 4155 2010-07-02 10:21:21.3687-05 30 14 88 88 2 Changed status. 4156 2010-07-02 10:22:33.244427-05 30 14 111 111 2 Changed featured. Changed seating_info for tix "4 tix 4 Chicago White Sox vs. Seattle Mariners". 4157 2010-07-02 10:23:10.995664-05 30 14 110 110 2 Changed seating_info for tix "4 tix 4 Chicago White Sox vs. Seattle Mariners". 4158 2010-07-02 10:24:20.869108-05 30 14 109 109 2 Changed seating_info for tix "4 tix 4 Chicago White Sox vs. Seattle Mariners". 4159 2010-07-02 10:25:08.532093-05 30 14 108 108 2 Changed count and seating_info for tix "2 tix 4 Chicago White Sox vs. Seattle Mariners". 4160 2010-07-02 10:25:29.774948-05 30 14 109 109 2 Changed count for tix "2 tix 4 Chicago White Sox vs. Seattle Mariners". 4161 2010-07-02 10:26:01.28649-05 30 14 106 106 2 Changed seating_info for tix "4 tix 4 Chicago White Sox vs. Seattle Mariners". 4162 2010-07-02 10:26:04.901005-05 275 12 932 Invesco Field at Mile High (1701 Mile High Stadium Circle West, Denver, CO 80204) 1 4163 2010-07-02 10:26:06.625744-05 275 18 701 Invesco Field at Mile High 1 4164 2010-07-02 10:26:32.686071-05 30 14 105 105 2 Changed seating_info for tix "4 tix 4 Chicago White Sox vs. Seattle Mariners". 4165 2010-07-02 10:26:47.294654-05 275 12 933 Coors Field (2001 Blake Street, Denver, CO 80205) 1 4166 2010-07-02 10:26:49.837873-05 275 18 702 Coors Field 1 4167 2010-07-02 10:27:21.217162-05 275 12 934 Pepsi Center (1000 Chopper Circle, Denver, CO 80204) 1 4168 2010-07-02 10:27:23.846269-05 275 18 703 Pepsi Center 1 4169 2010-07-02 10:28:09.310597-05 275 12 935 Dick's Sporting Goods Park (6000 Victory Way, Commerce City, CO 80022) 1 4170 2010-07-02 10:28:11.24882-05 275 18 704 Dick's Sporting Goods Park 1 4171 2010-07-02 10:28:43.914608-05 275 12 936 Colorado Convention Center (700 14th Street, Denver, CO 80202) 1 4172 2010-07-02 10:28:46.523288-05 275 18 705 Colorado Convention Center 1 4173 2010-07-02 10:29:40.454511-05 275 12 937 Denver Performing Arts Complex (1370 Arapahoe Street, Denver, CO 80204) 1 4174 2010-07-02 10:29:43.830309-05 275 18 706 Denver Performing Arts Complex 1 4175 2010-07-02 10:30:19.875929-05 275 12 938 Gothic Theatre (3263 S. Broadway, Englewood, CO 80113) 1 4176 2010-07-02 10:30:21.541322-05 275 18 707 Gothic Theatre 1 4177 2010-07-02 10:31:15.78253-05 275 12 939 Red Rocks Ampitheatre (Red Rocks Park, Morrison, CO 80465) 1 4178 2010-07-02 10:31:18.256788-05 275 18 708 Red Rocks Ampitheatre 1 4179 2010-07-02 11:23:34.708507-05 22 14 110 110 2 Changed featured. 4180 2010-07-02 11:23:46.20849-05 22 14 109 109 2 Changed featured. 4181 2010-07-02 11:36:41.745542-05 275 12 940 EnergySolutions Arena (301 W South Temple, Salt Lake City, UT 84101) 1 4182 2010-07-02 11:36:42.605873-05 275 18 709 EnergySolutions Arena 1 4183 2010-07-02 11:37:20.560703-05 275 12 941 Rio Tinto Stadium (9256 S. State Street, Sandy, UT 84070) 1 4184 2010-07-02 11:37:23.787424-05 275 18 710 Rio Tinto Stadium 1 4185 2010-07-02 11:38:04.395539-05 275 12 942 Rice-Eccles Stadium (451 South 1400 East, Salt Lake City, UT 84112) 1 4186 2010-07-02 11:38:06.949731-05 275 18 711 Rice-Eccles Stadium 1 4187 2010-07-02 11:38:49.244708-05 275 12 943 LaVell Edwards Stadium (1700 N. Canyon Road, Provo, UT 84604) 1 4188 2010-07-02 11:38:50.233194-05 275 18 712 LaVell Edwards Stadium 1 4189 2010-07-02 11:39:38.445937-05 275 12 944 Maverik Center (3200 South Decker Lake Drive, West Valley City, UT 84119) 1 4190 2010-07-02 11:39:39.611251-05 275 18 713 Maverik Center 1 4191 2010-07-02 11:48:06.296756-05 6 12 945 Little City Foundation (1760 Algonquin Road, Palatine, IL 60067-4799) 1 4192 2010-07-02 11:53:17.174834-05 6 13 83 Little City Foundation 1 4193 2010-07-02 11:54:24.553576-05 22 14 188 188 2 Changed count for tix "4 tix 4 Billy Elliot the Musical 7/10". 4195 2010-07-02 11:55:45.270387-05 22 14 188 188 2 Changed price for tix "4 tix 4 Billy Elliot the Musical 7/10". 4196 2010-07-02 12:06:54.081159-05 22 13 84 Neumann Family Services 1 4197 2010-07-02 12:09:32.008865-05 22 13 84 Neumann Family Services 2 Changed color_logo and banner. 4198 2010-07-02 16:39:47.703607-05 6 14 190 190 2 Changed status, featured and letter_date. Changed