assets/database-examples/meals/dump.sql
--
-- PostgreSQL database dump
--
-- Dumped from database version 10.3 (Debian 10.3-1.pgdg90+1)
-- Dumped by pg_dump version 10.3
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.ar_internal_metadata (
key character varying NOT NULL,
value character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: chef_availabilities; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.chef_availabilities (
id integer NOT NULL,
chef_id integer,
available_at timestamp without time zone
);
--
-- Name: chef_availabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.chef_availabilities_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: chef_availabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.chef_availabilities_id_seq OWNED BY public.chef_availabilities.id;
--
-- Name: chefs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.chefs (
id integer NOT NULL,
firstname character varying,
lastname character varying,
email character varying,
phone character varying,
address character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: chefs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.chefs_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: chefs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.chefs_id_seq OWNED BY public.chefs.id;
--
-- Name: customers; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.customers (
id integer NOT NULL,
firstname character varying,
lastname character varying,
address character varying,
phone character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
stripe_id character varying,
bulk_action_started_by integer
);
--
-- Name: customers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.customers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: customers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.customers_id_seq OWNED BY public.customers.id;
--
-- Name: delivery_men; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.delivery_men (
id integer NOT NULL,
firstname character varying,
lastname character varying,
email character varying,
phone character varying,
location character varying,
available boolean,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
geoloc character varying
);
--
-- Name: delivery_men_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.delivery_men_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: delivery_men_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.delivery_men_id_seq OWNED BY public.delivery_men.id;
--
-- Name: menus; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.menus (
id integer NOT NULL,
available_at timestamp without time zone,
chef_id integer
);
--
-- Name: menus_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.menus_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: menus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.menus_id_seq OWNED BY public.menus.id;
--
-- Name: menus_products; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.menus_products (
id integer NOT NULL,
product_id integer,
menu_id integer
);
--
-- Name: menus_products_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.menus_products_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: menus_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.menus_products_id_seq OWNED BY public.menus_products.id;
--
-- Name: orders; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.orders (
id integer NOT NULL,
customer_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
delivery_address character varying,
status integer
);
--
-- Name: orders_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.orders_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.orders_id_seq OWNED BY public.orders.id;
--
-- Name: orders_products; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.orders_products (
id integer NOT NULL,
order_id integer,
product_id integer
);
--
-- Name: orders_products_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.orders_products_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: orders_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.orders_products_id_seq OWNED BY public.orders_products.id;
--
-- Name: product_images; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.product_images (
id integer NOT NULL,
product_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
image_file_name character varying,
image_content_type character varying,
image_file_size integer,
image_updated_at timestamp without time zone
);
--
-- Name: product_images_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.product_images_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: product_images_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.product_images_id_seq OWNED BY public.product_images.id;
--
-- Name: products; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.products (
id integer NOT NULL,
title character varying,
description text,
instructions text,
ingredients character varying[] DEFAULT '{}'::character varying[],
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
allergens character varying[] DEFAULT '{}'::character varying[],
product_type integer,
image_file_name character varying,
image_content_type character varying,
image_file_size integer,
image_updated_at timestamp without time zone,
price double precision DEFAULT 0.0
);
--
-- Name: products_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.products_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.products_id_seq OWNED BY public.products.id;
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.schema_migrations (
version character varying NOT NULL
);
--
-- Name: chef_availabilities id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.chef_availabilities ALTER COLUMN id SET DEFAULT nextval('public.chef_availabilities_id_seq'::regclass);
--
-- Name: chefs id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.chefs ALTER COLUMN id SET DEFAULT nextval('public.chefs_id_seq'::regclass);
--
-- Name: customers id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.customers ALTER COLUMN id SET DEFAULT nextval('public.customers_id_seq'::regclass);
--
-- Name: delivery_men id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.delivery_men ALTER COLUMN id SET DEFAULT nextval('public.delivery_men_id_seq'::regclass);
--
-- Name: menus id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.menus ALTER COLUMN id SET DEFAULT nextval('public.menus_id_seq'::regclass);
--
-- Name: menus_products id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.menus_products ALTER COLUMN id SET DEFAULT nextval('public.menus_products_id_seq'::regclass);
--
-- Name: orders id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.orders ALTER COLUMN id SET DEFAULT nextval('public.orders_id_seq'::regclass);
--
-- Name: orders_products id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.orders_products ALTER COLUMN id SET DEFAULT nextval('public.orders_products_id_seq'::regclass);
--
-- Name: product_images id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.product_images ALTER COLUMN id SET DEFAULT nextval('public.product_images_id_seq'::regclass);
--
-- Name: products id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.products ALTER COLUMN id SET DEFAULT nextval('public.products_id_seq'::regclass);
--
-- Data for Name: ar_internal_metadata; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.ar_internal_metadata (key, value, created_at, updated_at) FROM stdin;
environment development 2017-01-18 13:23:49.522151 2017-01-18 13:23:49.522151
\.
--
-- Data for Name: chef_availabilities; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.chef_availabilities (id, chef_id, available_at) FROM stdin;
21780 852 2017-02-04 19:00:00
21781 852 2017-02-03 19:00:00
21782 852 2017-01-28 09:00:00
21783 852 2017-01-27 12:00:00
21784 852 2017-02-19 09:00:00
21785 852 2017-02-02 09:00:00
21786 852 2017-02-07 12:00:00
21787 852 2017-02-09 12:00:00
21788 852 2017-01-21 09:00:00
21789 852 2017-02-08 09:00:00
21790 852 2017-02-02 09:00:00
21791 852 2017-02-09 12:00:00
21792 852 2017-02-01 12:00:00
21793 852 2017-02-13 09:00:00
21794 852 2017-01-20 19:00:00
21795 852 2017-02-12 09:00:00
21796 852 2017-02-02 12:00:00
21797 852 2017-02-19 09:00:00
21798 852 2017-02-03 12:00:00
21799 852 2017-02-03 09:00:00
21800 852 2017-02-13 19:00:00
21801 852 2017-02-01 19:00:00
21802 852 2017-01-24 09:00:00
21803 852 2017-02-12 12:00:00
21804 852 2017-02-06 12:00:00
21805 852 2017-01-23 19:00:00
21806 852 2017-02-12 09:00:00
21807 852 2017-02-05 19:00:00
21808 852 2017-01-25 12:00:00
21809 852 2017-01-26 12:00:00
21810 852 2017-02-03 09:00:00
21811 852 2017-02-11 19:00:00
21812 853 2017-01-31 19:00:00
21813 853 2017-01-25 09:00:00
21814 853 2017-02-07 12:00:00
21815 853 2017-01-29 12:00:00
21816 853 2017-02-01 09:00:00
21817 853 2017-01-23 19:00:00
21818 853 2017-01-31 09:00:00
21819 853 2017-02-02 09:00:00
21820 853 2017-02-06 19:00:00
21821 853 2017-02-14 19:00:00
21822 853 2017-02-11 12:00:00
21823 853 2017-02-03 12:00:00
21824 853 2017-02-17 12:00:00
21825 853 2017-01-28 19:00:00
21826 853 2017-02-10 09:00:00
21827 853 2017-01-29 19:00:00
21828 853 2017-02-16 09:00:00
21829 853 2017-02-17 09:00:00
21830 853 2017-01-23 12:00:00
21831 853 2017-02-09 12:00:00
21832 853 2017-02-19 19:00:00
21833 854 2017-02-10 12:00:00
21834 854 2017-02-01 12:00:00
21835 854 2017-02-05 09:00:00
21836 854 2017-02-14 09:00:00
21837 854 2017-02-17 12:00:00
21838 854 2017-02-17 09:00:00
21839 854 2017-02-04 19:00:00
21840 854 2017-02-11 09:00:00
21841 854 2017-02-15 19:00:00
21842 854 2017-02-18 12:00:00
21843 854 2017-02-15 12:00:00
21844 854 2017-02-14 19:00:00
21845 854 2017-02-12 19:00:00
21846 854 2017-02-02 19:00:00
21847 854 2017-02-01 09:00:00
21848 854 2017-02-19 12:00:00
21849 854 2017-01-20 19:00:00
21850 854 2017-02-18 12:00:00
21851 854 2017-02-03 09:00:00
21852 854 2017-02-17 19:00:00
21853 854 2017-01-26 12:00:00
21854 854 2017-02-02 19:00:00
21855 854 2017-02-04 19:00:00
21856 854 2017-02-15 12:00:00
21857 854 2017-02-18 19:00:00
21858 854 2017-02-02 09:00:00
21859 854 2017-02-09 19:00:00
21860 854 2017-01-26 12:00:00
21861 855 2017-01-31 12:00:00
21862 855 2017-02-19 09:00:00
21863 855 2017-02-12 12:00:00
21864 855 2017-01-21 19:00:00
21865 855 2017-01-23 09:00:00
21866 855 2017-02-06 19:00:00
21867 855 2017-01-28 09:00:00
21868 855 2017-02-19 19:00:00
21869 855 2017-02-04 09:00:00
21870 855 2017-02-15 19:00:00
21871 855 2017-02-06 09:00:00
21872 855 2017-02-05 09:00:00
21873 855 2017-02-12 09:00:00
21874 855 2017-01-30 19:00:00
21875 855 2017-02-01 12:00:00
21876 855 2017-01-22 19:00:00
21877 855 2017-01-27 12:00:00
21878 855 2017-01-23 09:00:00
21879 855 2017-01-29 19:00:00
21880 855 2017-02-12 12:00:00
21881 855 2017-01-22 09:00:00
21882 855 2017-02-11 12:00:00
21883 855 2017-02-10 12:00:00
21884 855 2017-01-26 19:00:00
21885 855 2017-02-17 19:00:00
21886 855 2017-02-08 19:00:00
21887 855 2017-02-19 19:00:00
21888 855 2017-01-21 09:00:00
21889 855 2017-02-17 12:00:00
21890 855 2017-01-22 09:00:00
21891 855 2017-01-28 19:00:00
21892 855 2017-02-16 12:00:00
21893 855 2017-01-21 09:00:00
21894 856 2017-02-10 12:00:00
21895 856 2017-01-20 09:00:00
21896 856 2017-01-28 09:00:00
21897 856 2017-01-28 09:00:00
21898 856 2017-02-14 12:00:00
21899 856 2017-01-20 09:00:00
21900 856 2017-02-04 09:00:00
21901 856 2017-02-19 12:00:00
21902 856 2017-02-06 09:00:00
21903 856 2017-01-30 12:00:00
21904 856 2017-01-24 09:00:00
21905 856 2017-02-18 19:00:00
21906 856 2017-01-26 09:00:00
21907 857 2017-02-13 19:00:00
21908 857 2017-02-03 19:00:00
21909 857 2017-02-01 19:00:00
21910 857 2017-01-23 12:00:00
21911 857 2017-02-07 09:00:00
21912 857 2017-02-02 12:00:00
21913 857 2017-02-19 12:00:00
21914 857 2017-02-14 09:00:00
21915 857 2017-02-02 12:00:00
21916 857 2017-01-25 12:00:00
21917 857 2017-02-01 19:00:00
21918 857 2017-02-02 09:00:00
21919 857 2017-01-21 19:00:00
21920 857 2017-01-23 19:00:00
21921 857 2017-02-01 12:00:00
21922 857 2017-02-16 09:00:00
21923 857 2017-02-04 09:00:00
21924 857 2017-02-14 12:00:00
21925 857 2017-02-08 09:00:00
21926 857 2017-02-12 12:00:00
21927 857 2017-02-02 09:00:00
21928 857 2017-02-18 12:00:00
21929 857 2017-02-12 09:00:00
21930 857 2017-02-02 19:00:00
21931 857 2017-02-17 12:00:00
21932 857 2017-01-21 12:00:00
21933 857 2017-01-28 09:00:00
21934 857 2017-01-30 19:00:00
21935 858 2017-02-12 09:00:00
21936 858 2017-02-05 12:00:00
21937 858 2017-02-11 12:00:00
21938 858 2017-02-17 12:00:00
21939 858 2017-01-26 09:00:00
21940 858 2017-02-12 19:00:00
21941 858 2017-01-26 19:00:00
21942 858 2017-01-25 09:00:00
21943 858 2017-02-04 09:00:00
21944 858 2017-02-14 09:00:00
21945 858 2017-02-12 12:00:00
21946 858 2017-02-20 19:00:00
21947 858 2017-02-15 12:00:00
21948 858 2017-02-05 09:00:00
21949 858 2017-02-17 09:00:00
21950 858 2017-01-23 12:00:00
21951 858 2017-01-23 19:00:00
21952 858 2017-02-18 12:00:00
21953 858 2017-01-25 12:00:00
21954 858 2017-02-07 12:00:00
21955 858 2017-01-26 12:00:00
21956 858 2017-02-19 19:00:00
21957 858 2017-02-05 19:00:00
21958 858 2017-02-01 19:00:00
21959 858 2017-02-18 09:00:00
21960 858 2017-02-18 09:00:00
21961 858 2017-02-01 09:00:00
21962 858 2017-02-10 09:00:00
21963 858 2017-02-19 19:00:00
21964 859 2017-02-14 12:00:00
21965 859 2017-02-15 12:00:00
21966 859 2017-01-24 19:00:00
21967 859 2017-01-26 19:00:00
21968 859 2017-02-04 12:00:00
21969 859 2017-01-21 09:00:00
21970 859 2017-01-23 09:00:00
21971 859 2017-01-28 09:00:00
21972 859 2017-02-20 09:00:00
21973 859 2017-02-20 19:00:00
21974 859 2017-01-26 19:00:00
21975 859 2017-01-20 09:00:00
21976 859 2017-01-23 12:00:00
21977 859 2017-02-01 19:00:00
21978 859 2017-01-29 12:00:00
21979 859 2017-01-27 19:00:00
21980 859 2017-02-11 09:00:00
21981 859 2017-02-07 09:00:00
21982 859 2017-02-03 09:00:00
21983 859 2017-02-09 12:00:00
21984 859 2017-02-03 09:00:00
21985 859 2017-01-30 12:00:00
21986 859 2017-02-18 12:00:00
21987 859 2017-01-22 09:00:00
21988 859 2017-02-05 19:00:00
21989 859 2017-02-05 09:00:00
21990 859 2017-02-08 12:00:00
21991 859 2017-02-10 19:00:00
21992 859 2017-01-22 12:00:00
21993 859 2017-02-08 19:00:00
21994 859 2017-01-27 09:00:00
21995 859 2017-01-22 19:00:00
21996 859 2017-01-29 09:00:00
21997 859 2017-02-09 09:00:00
21998 859 2017-02-19 19:00:00
21999 859 2017-01-23 19:00:00
22000 859 2017-02-02 19:00:00
22001 860 2017-01-22 12:00:00
22002 860 2017-01-21 12:00:00
22003 860 2017-02-02 12:00:00
22004 860 2017-02-09 09:00:00
22005 860 2017-02-08 09:00:00
22006 860 2017-02-11 19:00:00
22007 860 2017-01-28 19:00:00
22008 860 2017-02-11 12:00:00
22009 860 2017-02-13 12:00:00
22010 860 2017-02-19 09:00:00
22011 860 2017-02-08 09:00:00
22012 860 2017-02-09 12:00:00
22013 860 2017-01-31 12:00:00
22014 860 2017-01-26 19:00:00
22015 860 2017-01-21 19:00:00
22016 860 2017-02-11 12:00:00
22017 860 2017-02-09 19:00:00
22018 860 2017-02-19 09:00:00
22019 860 2017-02-17 09:00:00
22020 860 2017-01-20 09:00:00
22021 860 2017-02-01 12:00:00
22022 860 2017-01-23 09:00:00
22023 860 2017-02-04 12:00:00
22024 860 2017-01-22 19:00:00
22025 860 2017-01-31 19:00:00
22026 860 2017-02-12 19:00:00
22027 860 2017-01-22 12:00:00
22028 860 2017-02-18 09:00:00
22029 860 2017-01-29 12:00:00
22030 860 2017-02-06 19:00:00
22031 860 2017-02-10 19:00:00
22032 860 2017-01-22 19:00:00
22033 860 2017-01-21 12:00:00
22034 860 2017-02-16 19:00:00
22035 860 2017-01-25 19:00:00
22036 860 2017-02-08 12:00:00
22037 860 2017-01-21 19:00:00
22038 860 2017-02-19 12:00:00
22039 860 2017-01-27 19:00:00
22040 860 2017-02-16 12:00:00
22041 860 2017-02-19 12:00:00
22042 860 2017-01-22 09:00:00
22043 861 2017-01-31 09:00:00
22044 861 2017-02-13 09:00:00
22045 861 2017-02-11 09:00:00
22046 861 2017-02-15 09:00:00
22047 861 2017-02-01 12:00:00
22048 861 2017-02-12 19:00:00
22049 861 2017-01-29 12:00:00
22050 861 2017-02-02 09:00:00
22051 861 2017-02-20 19:00:00
22052 861 2017-02-19 19:00:00
22053 861 2017-01-28 09:00:00
22054 861 2017-02-01 12:00:00
22055 861 2017-02-15 19:00:00
22056 861 2017-01-26 19:00:00
22057 861 2017-02-10 09:00:00
22058 861 2017-01-31 09:00:00
22059 862 2017-01-31 12:00:00
22060 862 2017-02-16 09:00:00
22061 862 2017-01-25 19:00:00
22062 862 2017-01-29 12:00:00
22063 862 2017-02-05 12:00:00
22064 862 2017-02-01 12:00:00
22065 862 2017-02-02 12:00:00
22066 863 2017-02-14 19:00:00
22067 863 2017-01-20 12:00:00
22068 863 2017-02-17 09:00:00
22069 863 2017-01-26 09:00:00
22070 863 2017-02-20 09:00:00
22071 863 2017-02-05 09:00:00
22072 863 2017-01-21 19:00:00
22073 863 2017-02-04 19:00:00
22074 863 2017-02-12 09:00:00
22075 863 2017-01-20 12:00:00
22076 863 2017-02-08 19:00:00
22077 863 2017-02-05 09:00:00
22078 863 2017-01-27 09:00:00
22079 863 2017-02-10 12:00:00
22080 863 2017-02-07 12:00:00
22081 863 2017-01-28 19:00:00
22082 863 2017-02-07 09:00:00
22083 863 2017-02-05 19:00:00
22084 863 2017-01-27 09:00:00
22085 863 2017-02-01 12:00:00
22086 863 2017-02-20 19:00:00
22087 863 2017-02-06 19:00:00
22088 863 2017-02-05 19:00:00
22089 863 2017-02-09 09:00:00
22090 863 2017-02-18 12:00:00
22091 863 2017-02-07 09:00:00
22092 863 2017-02-15 19:00:00
22093 863 2017-02-18 12:00:00
22094 863 2017-01-25 12:00:00
22095 863 2017-02-13 19:00:00
22096 863 2017-02-19 12:00:00
22097 863 2017-01-24 09:00:00
22098 863 2017-02-17 19:00:00
22099 863 2017-01-22 09:00:00
22100 863 2017-02-17 19:00:00
22101 863 2017-02-06 09:00:00
22102 863 2017-01-23 19:00:00
22103 863 2017-02-09 19:00:00
22104 863 2017-01-20 19:00:00
22105 863 2017-02-19 12:00:00
22106 864 2017-02-02 19:00:00
22107 864 2017-01-29 09:00:00
22108 864 2017-02-02 12:00:00
22109 864 2017-01-21 19:00:00
22110 864 2017-02-16 19:00:00
22111 864 2017-02-11 09:00:00
22112 864 2017-02-02 09:00:00
22113 864 2017-01-22 12:00:00
22114 864 2017-02-18 09:00:00
22115 864 2017-02-12 12:00:00
22116 864 2017-02-16 12:00:00
22117 864 2017-02-16 19:00:00
22118 864 2017-02-03 09:00:00
22119 864 2017-01-27 12:00:00
22120 864 2017-01-23 09:00:00
22121 864 2017-02-16 19:00:00
22122 864 2017-02-07 09:00:00
22123 864 2017-02-13 19:00:00
22124 864 2017-01-25 09:00:00
22125 864 2017-02-08 12:00:00
22126 864 2017-01-29 19:00:00
22127 864 2017-02-05 12:00:00
22128 864 2017-01-26 12:00:00
22129 864 2017-01-30 12:00:00
22130 864 2017-01-22 12:00:00
22131 864 2017-02-15 19:00:00
22132 864 2017-02-14 12:00:00
22133 864 2017-02-12 12:00:00
22134 864 2017-02-16 19:00:00
22135 864 2017-01-28 19:00:00
22136 864 2017-02-03 19:00:00
22137 864 2017-01-20 19:00:00
22138 864 2017-02-07 12:00:00
22139 864 2017-02-17 12:00:00
22140 864 2017-02-07 12:00:00
22141 864 2017-02-16 19:00:00
22142 864 2017-02-08 12:00:00
22143 864 2017-02-20 09:00:00
22144 864 2017-02-08 19:00:00
22145 864 2017-02-05 09:00:00
22146 864 2017-02-19 09:00:00
22147 864 2017-02-10 09:00:00
22148 864 2017-02-17 12:00:00
22149 865 2017-02-05 19:00:00
22150 865 2017-01-28 19:00:00
22151 865 2017-02-16 09:00:00
22152 865 2017-01-25 09:00:00
22153 865 2017-02-05 12:00:00
22154 865 2017-01-27 09:00:00
22155 865 2017-01-24 12:00:00
22156 865 2017-02-13 09:00:00
22157 865 2017-02-08 12:00:00
22158 865 2017-01-31 19:00:00
22159 865 2017-02-07 19:00:00
22160 865 2017-01-30 19:00:00
22161 865 2017-02-14 09:00:00
22162 865 2017-01-28 09:00:00
22163 865 2017-01-31 09:00:00
22164 865 2017-02-06 19:00:00
22165 865 2017-01-20 12:00:00
22166 865 2017-02-14 12:00:00
22167 865 2017-02-13 12:00:00
22168 865 2017-01-25 19:00:00
22169 865 2017-01-22 09:00:00
22170 865 2017-02-15 12:00:00
22171 865 2017-02-01 19:00:00
22172 865 2017-02-03 19:00:00
22173 865 2017-01-25 19:00:00
22174 865 2017-02-20 09:00:00
22175 865 2017-02-13 12:00:00
22176 865 2017-02-08 19:00:00
22177 865 2017-01-26 19:00:00
22178 865 2017-02-04 12:00:00
22179 865 2017-01-23 19:00:00
22180 865 2017-02-04 09:00:00
22181 865 2017-02-04 19:00:00
22182 865 2017-02-06 09:00:00
22183 865 2017-02-08 09:00:00
22184 865 2017-01-23 09:00:00
22185 865 2017-02-12 12:00:00
22186 865 2017-02-13 19:00:00
22187 865 2017-02-04 09:00:00
22188 865 2017-02-11 12:00:00
22189 865 2017-02-15 12:00:00
22190 866 2017-02-01 12:00:00
22191 866 2017-02-04 09:00:00
22192 866 2017-02-20 09:00:00
22193 866 2017-02-02 12:00:00
22194 866 2017-02-05 09:00:00
22195 866 2017-02-18 19:00:00
22196 866 2017-02-16 09:00:00
22197 866 2017-01-27 19:00:00
22198 866 2017-02-17 12:00:00
22199 866 2017-02-14 09:00:00
22200 866 2017-02-10 19:00:00
22201 866 2017-02-10 19:00:00
22202 866 2017-02-10 12:00:00
22203 866 2017-02-13 12:00:00
22204 866 2017-01-20 12:00:00
22205 866 2017-02-07 09:00:00
22206 866 2017-02-02 09:00:00
22207 866 2017-02-18 19:00:00
22208 866 2017-02-03 09:00:00
22209 866 2017-02-20 09:00:00
22210 866 2017-02-17 09:00:00
22211 866 2017-01-21 19:00:00
22212 866 2017-02-10 19:00:00
22213 866 2017-01-20 09:00:00
22214 866 2017-02-19 19:00:00
22215 866 2017-01-25 09:00:00
22216 866 2017-01-22 19:00:00
22217 867 2017-02-05 09:00:00
22218 867 2017-01-27 19:00:00
22219 867 2017-01-27 09:00:00
22220 867 2017-02-09 19:00:00
22221 867 2017-01-22 09:00:00
22222 867 2017-02-09 09:00:00
22223 867 2017-02-05 09:00:00
22224 867 2017-01-25 19:00:00
22225 867 2017-02-08 12:00:00
22226 867 2017-01-29 09:00:00
22227 867 2017-02-06 09:00:00
22228 867 2017-02-09 19:00:00
22229 867 2017-01-31 12:00:00
22230 867 2017-01-22 19:00:00
22231 867 2017-01-23 19:00:00
22232 867 2017-01-27 09:00:00
22233 867 2017-01-21 19:00:00
22234 867 2017-02-10 09:00:00
22235 867 2017-01-26 12:00:00
22236 867 2017-01-23 19:00:00
22237 867 2017-01-30 12:00:00
22238 867 2017-01-22 09:00:00
22239 867 2017-02-19 12:00:00
22240 867 2017-02-10 19:00:00
22241 867 2017-01-30 19:00:00
22242 867 2017-02-06 19:00:00
22243 867 2017-02-02 19:00:00
22244 867 2017-02-10 09:00:00
22245 867 2017-02-12 19:00:00
22246 867 2017-02-03 09:00:00
22247 867 2017-01-31 09:00:00
22248 867 2017-02-12 19:00:00
22249 867 2017-02-08 09:00:00
22250 867 2017-02-18 09:00:00
22251 867 2017-02-07 12:00:00
22252 867 2017-01-23 12:00:00
22253 868 2017-02-11 09:00:00
22254 868 2017-02-17 12:00:00
22255 868 2017-01-30 19:00:00
22256 868 2017-01-21 12:00:00
22257 868 2017-01-28 12:00:00
22258 868 2017-02-06 09:00:00
22259 868 2017-02-05 09:00:00
22260 868 2017-02-11 19:00:00
22261 868 2017-02-16 12:00:00
22262 868 2017-01-23 19:00:00
22263 868 2017-02-03 19:00:00
22264 868 2017-01-24 19:00:00
22265 868 2017-01-20 12:00:00
22266 868 2017-02-02 12:00:00
22267 868 2017-02-16 19:00:00
22268 868 2017-02-20 09:00:00
22269 868 2017-02-05 09:00:00
22270 868 2017-02-03 09:00:00
22271 868 2017-02-08 09:00:00
22272 868 2017-02-06 12:00:00
22273 868 2017-02-15 19:00:00
22274 868 2017-02-14 12:00:00
22275 868 2017-01-28 12:00:00
22276 868 2017-01-21 12:00:00
22277 868 2017-02-10 12:00:00
22278 868 2017-02-10 09:00:00
22279 868 2017-01-20 19:00:00
22280 868 2017-01-31 09:00:00
22281 868 2017-01-28 09:00:00
22282 868 2017-02-19 19:00:00
22283 868 2017-01-23 12:00:00
22284 868 2017-01-27 19:00:00
22285 868 2017-01-21 19:00:00
22286 868 2017-02-18 12:00:00
22287 868 2017-02-06 12:00:00
22288 868 2017-02-06 09:00:00
22289 868 2017-02-14 09:00:00
22290 868 2017-02-16 09:00:00
22291 868 2017-02-03 12:00:00
22292 869 2017-01-22 19:00:00
22293 869 2017-02-09 09:00:00
22294 869 2017-02-17 09:00:00
22295 869 2017-02-18 12:00:00
22296 869 2017-02-11 19:00:00
22297 869 2017-01-23 09:00:00
22298 869 2017-02-12 19:00:00
22299 869 2017-02-07 19:00:00
22300 869 2017-01-29 12:00:00
22301 869 2017-01-26 09:00:00
22302 869 2017-02-17 19:00:00
22303 869 2017-02-17 19:00:00
22304 869 2017-02-17 19:00:00
22305 869 2017-01-26 12:00:00
22306 869 2017-01-24 09:00:00
22307 869 2017-02-20 19:00:00
22308 869 2017-02-06 19:00:00
22309 869 2017-02-17 19:00:00
22310 869 2017-02-10 12:00:00
22311 869 2017-02-18 12:00:00
22312 869 2017-01-29 09:00:00
22313 869 2017-02-17 19:00:00
22314 869 2017-02-11 19:00:00
22315 869 2017-01-30 12:00:00
22316 869 2017-02-15 12:00:00
22317 869 2017-02-18 19:00:00
22318 869 2017-01-28 09:00:00
22319 869 2017-02-07 19:00:00
22320 869 2017-02-01 19:00:00
22321 870 2017-02-15 12:00:00
22322 870 2017-02-09 12:00:00
22323 870 2017-01-31 19:00:00
22324 870 2017-02-02 09:00:00
22325 870 2017-02-13 19:00:00
22326 870 2017-01-23 19:00:00
22327 870 2017-01-28 09:00:00
22328 870 2017-01-30 19:00:00
22329 870 2017-01-27 19:00:00
22330 870 2017-02-07 19:00:00
22331 870 2017-02-14 19:00:00
22332 870 2017-02-18 12:00:00
22333 870 2017-02-14 09:00:00
22334 870 2017-02-14 19:00:00
22335 870 2017-02-07 19:00:00
22336 870 2017-02-19 19:00:00
22337 870 2017-01-26 12:00:00
22338 870 2017-02-10 09:00:00
22339 870 2017-01-24 09:00:00
22340 870 2017-02-20 12:00:00
22341 871 2017-02-11 09:00:00
22342 871 2017-01-24 09:00:00
22343 871 2017-02-17 09:00:00
22344 871 2017-02-12 09:00:00
22345 871 2017-01-27 19:00:00
22346 871 2017-01-31 19:00:00
22347 871 2017-02-14 12:00:00
22348 871 2017-02-16 09:00:00
22349 871 2017-02-10 19:00:00
22350 871 2017-01-25 12:00:00
22351 871 2017-02-08 19:00:00
22352 871 2017-02-09 19:00:00
22353 871 2017-01-30 19:00:00
22354 871 2017-02-01 19:00:00
22355 871 2017-01-23 19:00:00
22356 871 2017-02-06 12:00:00
22357 871 2017-02-18 19:00:00
22358 871 2017-01-26 09:00:00
22359 872 2017-02-19 19:00:00
22360 872 2017-01-31 09:00:00
22361 872 2017-01-29 12:00:00
22362 872 2017-01-28 19:00:00
22363 872 2017-02-18 09:00:00
22364 872 2017-02-14 09:00:00
22365 872 2017-02-18 09:00:00
22366 872 2017-01-26 19:00:00
22367 872 2017-02-02 09:00:00
22368 872 2017-02-09 09:00:00
22369 872 2017-01-25 19:00:00
22370 872 2017-02-08 12:00:00
22371 872 2017-01-27 09:00:00
22372 872 2017-02-20 12:00:00
22373 872 2017-02-05 19:00:00
22374 872 2017-02-16 19:00:00
22375 872 2017-01-26 09:00:00
22376 872 2017-02-18 19:00:00
22377 872 2017-02-12 09:00:00
22378 872 2017-02-12 12:00:00
22379 873 2017-02-03 19:00:00
22380 873 2017-02-11 09:00:00
22381 873 2017-02-17 19:00:00
22382 873 2017-02-19 12:00:00
22383 873 2017-02-16 09:00:00
22384 873 2017-02-18 12:00:00
22385 873 2017-02-01 09:00:00
22386 873 2017-02-13 09:00:00
22387 873 2017-01-23 19:00:00
22388 873 2017-01-21 12:00:00
22389 873 2017-01-23 09:00:00
22390 873 2017-01-22 09:00:00
22391 873 2017-01-27 09:00:00
22392 873 2017-02-02 19:00:00
22393 873 2017-02-05 12:00:00
22394 873 2017-01-22 19:00:00
22395 873 2017-01-31 09:00:00
22396 873 2017-01-28 12:00:00
22397 873 2017-02-06 12:00:00
22398 873 2017-01-25 19:00:00
22399 873 2017-01-26 19:00:00
22400 873 2017-01-20 19:00:00
22401 873 2017-01-27 12:00:00
22402 873 2017-02-19 09:00:00
22403 873 2017-02-01 09:00:00
22404 873 2017-02-08 19:00:00
22405 873 2017-02-16 09:00:00
22406 873 2017-01-30 19:00:00
22407 873 2017-01-30 19:00:00
22408 873 2017-02-18 09:00:00
22409 873 2017-01-26 19:00:00
22410 873 2017-02-10 12:00:00
22411 873 2017-02-02 09:00:00
22412 873 2017-02-04 19:00:00
22413 873 2017-02-14 12:00:00
22414 873 2017-01-20 19:00:00
22415 873 2017-02-20 12:00:00
22416 873 2017-01-26 09:00:00
22417 874 2017-01-21 19:00:00
22418 874 2017-02-14 19:00:00
22419 874 2017-01-24 19:00:00
22420 874 2017-02-11 12:00:00
22421 874 2017-02-02 09:00:00
22422 874 2017-01-26 09:00:00
22423 874 2017-01-21 12:00:00
22424 874 2017-01-25 09:00:00
22425 874 2017-02-13 09:00:00
22426 874 2017-02-07 19:00:00
22427 874 2017-02-17 09:00:00
22428 874 2017-02-07 09:00:00
22429 874 2017-02-01 19:00:00
22430 874 2017-02-04 12:00:00
22431 874 2017-02-17 19:00:00
22432 874 2017-02-16 12:00:00
22433 874 2017-02-07 09:00:00
22434 874 2017-01-23 12:00:00
22435 874 2017-02-19 09:00:00
22436 874 2017-02-09 12:00:00
22437 874 2017-02-04 09:00:00
22438 874 2017-01-21 19:00:00
22439 874 2017-01-28 09:00:00
22440 874 2017-01-24 09:00:00
22441 874 2017-01-20 09:00:00
22442 874 2017-02-07 12:00:00
22443 874 2017-02-09 09:00:00
22444 874 2017-02-07 12:00:00
22445 874 2017-02-18 12:00:00
22446 874 2017-02-09 12:00:00
22447 874 2017-02-05 09:00:00
22448 874 2017-01-23 09:00:00
22449 874 2017-02-20 09:00:00
22450 874 2017-02-16 09:00:00
22451 874 2017-02-09 09:00:00
22452 874 2017-01-29 09:00:00
22453 874 2017-02-13 19:00:00
22454 874 2017-02-03 12:00:00
22455 874 2017-02-07 09:00:00
22456 874 2017-01-22 12:00:00
22457 874 2017-02-15 12:00:00
22458 874 2017-01-31 19:00:00
22459 875 2017-02-14 12:00:00
22460 875 2017-01-26 12:00:00
22461 875 2017-02-03 09:00:00
22462 875 2017-02-12 19:00:00
22463 875 2017-01-28 09:00:00
22464 875 2017-01-25 12:00:00
22465 875 2017-01-31 09:00:00
22466 875 2017-02-20 19:00:00
22467 875 2017-02-03 12:00:00
22468 875 2017-02-01 12:00:00
22469 875 2017-02-04 12:00:00
22470 875 2017-01-26 19:00:00
22471 875 2017-01-27 09:00:00
22472 875 2017-02-03 12:00:00
22473 875 2017-01-25 19:00:00
22474 875 2017-01-30 12:00:00
22475 876 2017-01-25 12:00:00
22476 876 2017-01-25 09:00:00
22477 876 2017-01-27 12:00:00
22478 876 2017-02-16 09:00:00
22479 876 2017-02-11 12:00:00
22480 876 2017-01-30 12:00:00
22481 876 2017-01-31 19:00:00
22482 876 2017-01-25 12:00:00
22483 876 2017-02-04 12:00:00
22484 876 2017-02-08 12:00:00
22485 876 2017-02-04 19:00:00
22486 876 2017-01-23 12:00:00
22487 876 2017-02-13 12:00:00
22488 876 2017-02-05 19:00:00
\.
--
-- Data for Name: chefs; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.chefs (id, firstname, lastname, email, phone, address, created_at, updated_at) FROM stdin;
852 Silas Leffler george_cartwright@williamson.net 1-194-202-6808 6234 Serenity Mall 2017-01-20 13:49:04.72095 2017-01-20 13:49:04.72095
853 Charity Nitzsche juliet@haagswift.name 360-257-7945 301 Hettie Centers 2017-01-20 13:49:05.089826 2017-01-20 13:49:05.089826
854 Arnaldo Cruickshank jerrold@hanemarks.org 401.982.2007 233 O'Keefe Square 2017-01-20 13:49:05.353506 2017-01-20 13:49:05.353506
855 Ismael Bayer howard.conroy@wolff.com 688-537-5810 809 Kuhic Tunnel 2017-01-20 13:49:05.677614 2017-01-20 13:49:05.677614
856 Malachi Schoen haskell_schaden@gottlieb.io 679-725-7839 829 Lang Park 2017-01-20 13:49:06.052072 2017-01-20 13:49:06.052072
857 Jalon Langworth rosina_okuneva@leuschke.name (607) 367-6218 598 Waelchi Hill 2017-01-20 13:49:06.210731 2017-01-20 13:49:06.210731
858 Ebony Larson vincenzo@schmidt.co (863) 739-1690 48702 Rylan Circle 2017-01-20 13:49:06.523997 2017-01-20 13:49:06.523997
859 Maxwell Nikolaus anastasia@abbott.org 424-804-7189 3039 Mazie Underpass 2017-01-20 13:49:06.835106 2017-01-20 13:49:06.835106
860 Sanford Stanton einar_cain@vandervortgutmann.org 180.721.4700 4283 Delia Causeway 2017-01-20 13:49:07.256443 2017-01-20 13:49:07.256443
861 Ayana Schuppe arlene@abbott.info 1-707-980-0051 962 Cummerata Knolls 2017-01-20 13:49:07.737672 2017-01-20 13:49:07.737672
862 Stephon Pagac ottis@tillmanstrosin.co 749-457-8736 41167 Kathlyn Manor 2017-01-20 13:49:07.931748 2017-01-20 13:49:07.931748
863 Misael Kutch emil.kaulke@bauchwyman.io 1-649-586-1544 22323 Rempel Stream 2017-01-20 13:49:08.03185 2017-01-20 13:49:08.03185
864 Dianna Schowalter monica@macgyverlehner.co (763) 175-4197 379 Gwendolyn Tunnel 2017-01-20 13:49:08.545765 2017-01-20 13:49:08.545765
865 Kaleb Abernathy waylon_bednar@denesik.io 1-888-039-8000 7454 Nat Divide 2017-01-20 13:49:09.016897 2017-01-20 13:49:09.016897
866 Molly Toy rosemarie@fadelboehm.biz 742.511.9767 7703 McDermott Dale 2017-01-20 13:49:09.483548 2017-01-20 13:49:09.483548
867 Providenci Sipes alexys@lindoberbrunner.biz 458.102.8963 77303 Magali Circles 2017-01-20 13:49:09.78631 2017-01-20 13:49:09.78631
868 Vella Wisozk felicity@funkmetz.name 1-439-682-8034 6444 Alfreda Hill 2017-01-20 13:49:10.206967 2017-01-20 13:49:10.206967
869 Clementina Wuckert misty@bednarkoch.io 371.809.4133 1759 Anderson Inlet 2017-01-20 13:49:10.654833 2017-01-20 13:49:10.654833
870 Margot Hilpert shaina_kaulke@kub.org 1-306-465-5151 935 Lemke Key 2017-01-20 13:49:10.994733 2017-01-20 13:49:10.994733
871 Wilfredo Hermann libby@gottlieb.org 521.694.1693 99392 Hagenes Field 2017-01-20 13:49:11.244993 2017-01-20 13:49:11.244993
872 Mckayla Little lawson@jacobiokon.com 1-325-956-3803 687 Lazaro Mill 2017-01-20 13:49:11.485401 2017-01-20 13:49:11.485401
873 Zella Tremblay elvera@macgyverrobel.net 1-138-877-8035 50356 Hagenes Parks 2017-01-20 13:49:11.71401 2017-01-20 13:49:11.71401
874 Ned Hermiston katrina.halvorson@quitzon.io 430.322.0145 73496 Robel Tunnel 2017-01-20 13:49:12.282183 2017-01-20 13:49:12.282183
875 Sarai Hauck dora@konopelski.biz 1-481-378-8987 6416 Bashirian Oval 2017-01-20 13:49:12.907292 2017-01-20 13:49:12.907292
876 Alvena Cartwright fermin@gerlach.io 428.236.4140 65852 Victor Burg 2017-01-20 13:49:13.135848 2017-01-20 13:49:13.135848
\.
--
-- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.customers (id, firstname, lastname, address, phone, created_at, updated_at, stripe_id, bulk_action_started_by) FROM stdin;
1750 Marlon Jakubowski 63490 Dach Village (262) 386-7776 2017-01-20 13:51:18.271065 2017-01-20 13:51:18.271065 cus_9xykRMCoZjbpnP \N
1751 Viviane Haag 6998 Bartell Center 472.139.2021 2017-01-20 13:51:21.61388 2017-01-20 13:51:21.61388 cus_9xylFOQdHisqgC \N
1752 Adrian Walsh 96446 Schaefer Mission 167.110.3166 2017-01-20 13:51:27.072238 2017-01-20 13:51:27.072238 cus_9xyl7qicepbHrc \N
1753 Cordia Rippin 3262 Leatha Prairie (365) 320-6634 2017-01-20 13:51:33.310105 2017-01-20 13:51:33.310105 cus_9xylZowgHJpQQI \N
1754 Josue Gottlieb 84170 Terence Route 204-512-2545 2017-01-20 13:51:38.795702 2017-01-20 13:51:38.795702 cus_9xylcIyAsOhfPE \N
1755 Hailie Johnston 788 Adams Pike 586-244-3741 2017-01-20 13:51:42.974433 2017-01-20 13:51:42.974433 cus_9xylxxxAw6Zj1Z \N
1756 Christa Heathcote 40721 Gibson Island 717.493.9297 2017-01-20 13:51:44.951177 2017-01-20 13:51:44.951177 cus_9xyl0H6DBPLyW5 \N
1757 Nasir King 45543 Heller Throughway 457-912-4163 2017-01-20 13:51:47.980536 2017-01-20 13:51:47.980536 cus_9xylKzPQYboF7f \N
1758 Opal Bernier 1090 Guido Well 312-034-3638 2017-01-20 13:51:53.49931 2017-01-20 13:51:53.49931 cus_9xylUHfQsDZSBG \N
1759 Pink Upton 29175 Hamill Skyway 664.788.7788 2017-01-20 13:52:00.024455 2017-01-20 13:52:00.024455 cus_9xyl1JaKLTdaSS \N
1760 Sabryna Goodwin 28062 Lindgren Heights 1-903-313-8013 2017-01-20 13:52:05.729573 2017-01-20 13:52:05.729573 cus_9xyl1hwMhZvyuZ \N
1761 Jena Skiles 275 Hirthe Streets (361) 927-2847 2017-01-20 13:52:08.658658 2017-01-20 13:52:08.658658 cus_9xylrOfTRGcSOO \N
1762 Kirstin Corwin 869 Nicolas Shoal 1-717-568-8778 2017-01-20 13:52:12.02959 2017-01-20 13:52:12.02959 cus_9xyl90e2WeLimn \N
1763 Luigi Streich 24385 Kiera Pines (137) 477-0190 2017-01-20 13:52:15.174813 2017-01-20 13:52:15.174813 cus_9xylWwrqDMYOiN \N
1764 Krystal MacGyver 255 Meggie Inlet 1-548-652-5586 2017-01-20 13:52:19.735809 2017-01-20 13:52:19.735809 cus_9xyli9hVw8aGmM \N
1765 Crystel Rutherford 659 Kreiger Plains 1-809-126-5805 2017-01-20 13:52:27.631622 2017-01-20 13:52:27.631622 cus_9xymilNP6luYlZ \N
1766 Celia Stehr 560 Leland Camp (239) 925-0798 2017-01-20 13:52:31.263474 2017-01-20 13:52:31.263474 cus_9xymjLjkKgStBw \N
1767 Eulah Hegmann 252 Loma Lake 1-527-011-3316 2017-01-20 13:52:35.375004 2017-01-20 13:52:35.375004 cus_9xymLC84C7jMcF \N
1768 Hailie Hermann 659 Susana Light 676-202-7214 2017-01-20 13:52:38.447814 2017-01-20 13:52:38.447814 cus_9xymMnwKMUttaN \N
1769 Leda Bayer 68417 Kozey Forest 795-383-1496 2017-01-20 13:52:44.191725 2017-01-20 13:52:44.191725 cus_9xymqnuJEct2iP \N
1770 Marcelo Gaylord 5337 Stoltenberg Path (753) 633-3790 2017-01-20 13:52:46.437 2017-01-20 13:52:46.437 cus_9xymA9AS3qFFAM 7
1721 Madelynn Rau 8408 Roberta Bridge 403.259.1272 2017-01-20 13:49:23.356671 2017-01-20 13:49:23.356671 cus_9xyjS8tnqj7w59 \N
1722 Alanis O'Keefe 935 Kiehn Fort (442) 556-2754 2017-01-20 13:49:25.617204 2017-01-20 13:49:25.617204 cus_9xyjLCu5SBEgEc \N
1723 Haleigh Auer 559 Emmy Mission 1-779-132-6280 2017-01-20 13:49:29.82477 2017-01-20 13:49:29.82477 cus_9xyjmT58qotpSK \N
1724 Dustin Runolfsdottir 6838 Daugherty Pines 795.879.7375 2017-01-20 13:49:32.801265 2017-01-20 13:49:32.801265 cus_9xyjjkxjCwvt1n \N
1725 Ashly Crona 9761 Morissette Shore (295) 259-8563 2017-01-20 13:49:34.677903 2017-01-20 13:49:34.677903 cus_9xyjD7wA5j4R7W \N
1726 Madisyn Weissnat 7115 Kianna Creek (208) 996-3233 2017-01-20 13:49:39.313183 2017-01-20 13:49:39.313183 cus_9xyjCMjme52YLF \N
1727 Sarina VonRueden 42676 Predovic Overpass 472-859-0092 2017-01-20 13:49:41.365296 2017-01-20 13:49:41.365296 cus_9xyj9uecAxT8xm \N
1728 Felicity Macejkovic 685 Tillman Garden 477-932-5613 2017-01-20 13:49:43.201396 2017-01-20 13:49:43.201396 cus_9xyjNWu6p4eFVJ \N
1729 Rollin Rau 947 Runte Valleys (903) 666-7088 2017-01-20 13:49:46.550175 2017-01-20 13:49:46.550175 cus_9xyj4zHvT1h2re \N
1730 Mariah Miller 131 Runolfsdottir Knoll 305.298.1024 2017-01-20 13:49:50.270659 2017-01-20 13:49:50.270659 cus_9xyj19OtSlPRU4 \N
1731 Jadon Orn 836 Jameson Turnpike 595-035-7534 2017-01-20 13:49:56.372354 2017-01-20 13:49:56.372354 cus_9xyjK6mDn8plxv \N
1732 Tom Leffler 8721 Adaline Ridge (221) 608-4371 2017-01-20 13:50:03.685014 2017-01-20 13:50:03.685014 cus_9xyjR7EDZvOfWV \N
1733 Clemmie Bergstrom 842 Presley Junction 1-655-620-6185 2017-01-20 13:50:08.42973 2017-01-20 13:50:08.42973 cus_9xyjgE8Jeop4Z1 \N
1734 Kiarra O'Hara 408 Fay Springs 1-886-363-2790 2017-01-20 13:50:11.433663 2017-01-20 13:50:11.433663 cus_9xyjSm3vLnuCQD \N
1735 Gussie Schuster 4168 Frieda Mission 384-227-2422 2017-01-20 13:50:13.338108 2017-01-20 13:50:13.338108 cus_9xyjl7CyV2hnUu \N
1736 Anastacio Friesen 7698 Nolan Crest 1-973-442-0017 2017-01-20 13:50:18.284717 2017-01-20 13:50:18.284717 cus_9xyj2Uis1Sz11C \N
1737 Golden Stehr 65923 Russel Summit 290-841-2914 2017-01-20 13:50:26.368826 2017-01-20 13:50:26.368826 cus_9xykGz43Cyu7BG \N
1738 Tessie Kautzer 21774 Dorian Mountains 942-310-1321 2017-01-20 13:50:31.302689 2017-01-20 13:50:31.302689 cus_9xykm1jo94sjbC \N
1739 Geoffrey Kuhlman 9840 Pouros Mills (186) 535-7050 2017-01-20 13:50:34.869733 2017-01-20 13:50:34.869733 cus_9xykr8aHdKIBI7 \N
1740 Isac Robel 194 Kacie Fields 495-988-6178 2017-01-20 13:50:39.233273 2017-01-20 13:50:39.233273 cus_9xykkA9jP9fNMk \N
1741 Keegan Fay 8983 Kuhlman Valley 1-245-106-5999 2017-01-20 13:50:43.071196 2017-01-20 13:50:43.071196 cus_9xykBBndoPO9G7 \N
1742 Carlo Miller 7414 Heidenreich Stream 104-501-6888 2017-01-20 13:50:47.300914 2017-01-20 13:50:47.300914 cus_9xykZdsXnNoFXg \N
1743 Gertrude Mayer 926 Stroman Station 134-556-0847 2017-01-20 13:50:55.584788 2017-01-20 13:50:55.584788 cus_9xyk8PADdxy5K6 \N
1744 Dorian McGlynn 456 Gilda Mission 1-414-184-7246 2017-01-20 13:50:57.552954 2017-01-20 13:50:57.552954 cus_9xyklEhbxpDlJa \N
1745 Cristian Cummerata 2382 Zackery Lights (217) 358-5036 2017-01-20 13:51:01.929095 2017-01-20 13:51:01.929095 cus_9xykUrtUadkzJQ \N
1746 Lane Huels 78238 Jacobson Mission 882.062.9383 2017-01-20 13:51:05.283991 2017-01-20 13:51:05.283991 cus_9xykRI6uptMV41 \N
1747 Jaida Leffler 8988 Genesis Junction (872) 171-4820 2017-01-20 13:51:12.471672 2017-01-20 13:51:12.471672 cus_9xykow783a4jaL \N
1748 Dixie Harris 3002 Franecki Wells 812.579.3315 2017-01-20 13:51:14.318509 2017-01-20 13:51:14.318509 cus_9xykt3U2KBywrM \N
1749 Eulalia Towne 21969 Jacobs Drives 159-461-1905 2017-01-20 13:51:16.422123 2017-01-20 13:51:16.422123 cus_9xyknigc8eZRXz \N
\.
--
-- Data for Name: delivery_men; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.delivery_men (id, firstname, lastname, email, phone, location, available, created_at, updated_at, geoloc) FROM stdin;
4601 Haylie Schneider bertha_moore@schuster.biz (188) 756-7093 Lurlineville t 2017-01-20 13:49:03.247536 2017-01-20 13:49:03.247536 37.78824290218255,-122.40218443453374
4602 Vanessa Hodkiewicz twila@balistreri.net (540) 366-9648 Kolbystad f 2017-01-20 13:49:03.267741 2017-01-20 13:49:03.267741 37.78243947810551,-122.41269098295187
4603 Junius Feest dion.harris@boscorunolfon.info (786) 676-9408 Duaneborough t 2017-01-20 13:49:03.282897 2017-01-20 13:49:03.282897 37.779645914258936,-122.39919244734367
4604 Jeanie Dare chase@armstrong.io 1-310-108-0256 Brigitteside f 2017-01-20 13:49:03.298334 2017-01-20 13:49:03.298334 37.78992840348763,-122.40684493049265
4605 Joannie Collier dion@rice.co 1-244-549-3508 South Tyrell f 2017-01-20 13:49:03.360877 2017-01-20 13:49:03.360877 37.79003211538519,-122.40920236544761
4606 Hollie Fadel savannah@franecki.net 1-400-336-5196 North Violette f 2017-01-20 13:49:03.415789 2017-01-20 13:49:03.415789 37.778780703467135,-122.40402480473438
4607 Lenna Miller nyah@schmitt.co 1-376-404-0700 Hilllton f 2017-01-20 13:49:03.454845 2017-01-20 13:49:03.454845 37.78337717989088,-122.3932484219921
4608 Jeanie Hills garrison@leuschkehickle.biz 285.850.9591 Stokesland f 2017-01-20 13:49:03.48065 2017-01-20 13:49:03.48065 37.785717317024506,-122.3952313271151
4609 Lisa Robel grant@powlowskibailey.co 846-503-6218 Garretttown t 2017-01-20 13:49:03.499419 2017-01-20 13:49:03.499419 37.78745164862924,-122.41011875829574
4610 Geovanni Mayer lonie.koelpin@dooley.info (444) 907-1597 Port Sheilaberg t 2017-01-20 13:49:03.518157 2017-01-20 13:49:03.518157 37.79641644142477,-122.40793658510964
4611 Katelyn Pacocha garrison.heidenreich@hilpert.co 771.208.3394 Sporerview f 2017-01-20 13:49:03.544262 2017-01-20 13:49:03.544262 37.79502886383527,-122.40669645797874
4612 Danielle Fay tyrese@wuckert.io 399-666-5395 Cruickshankmouth t 2017-01-20 13:49:03.566407 2017-01-20 13:49:03.566407 37.773183721205655,-122.40097141392421
4613 Noemie Jakubowski melba@kuhlman.info 418.337.6627 North Jesusfurt f 2017-01-20 13:49:03.581799 2017-01-20 13:49:03.581799 37.78123936165299,-122.40967049587942
4614 Justen Hodkiewicz edna_herman@lakin.io 1-555-787-2961 North Frederickmouth f 2017-01-20 13:49:03.599769 2017-01-20 13:49:03.599769 37.79912074360408,-122.39564436114333
4615 Karley Hilll hadley.bogisich@rolfsonkris.org 1-488-864-3203 East Romashire f 2017-01-20 13:49:03.616758 2017-01-20 13:49:03.616758 37.782540868957085,-122.4087167428396
4616 Vivienne Zboncak nyah.friesen@greenfelder.com 1-637-478-0032 New Glenda f 2017-01-20 13:49:03.635973 2017-01-20 13:49:03.635973 37.79743943034899,-122.39023446914649
4617 Melody Feest burley.thompson@prosaccoschinner.com (537) 604-8930 West Gerardtown f 2017-01-20 13:49:03.65172 2017-01-20 13:49:03.65172 37.78624717496722,-122.40581755231855
4618 Anastacio Reilly jermain_toy@halvorson.info 674.916.2038 Lake Dana t 2017-01-20 13:49:03.66752 2017-01-20 13:49:03.66752 37.79069374838067,-122.40337106275481
4619 Susana Barrows maverick@gutkowskirice.net 863.268.6672 Rutherfordchester f 2017-01-20 13:49:03.687137 2017-01-20 13:49:03.687137 37.79742048735135,-122.39629544059567
4620 Bradley Schroeder buddy@wiza.co 682-612-0193 East Leonorhaven f 2017-01-20 13:49:03.705606 2017-01-20 13:49:03.705606 37.77599526010452,-122.39388072725757
4621 Mitchel Witting eleanora@armstrongortiz.com (195) 710-1696 East Lavernachester f 2017-01-20 13:49:03.726896 2017-01-20 13:49:03.726896 37.77762152028233,-122.39025791150004
4622 Khalid Mills sandrine.howe@christiansen.info 482-431-1218 Johnsonburgh t 2017-01-20 13:49:03.74758 2017-01-20 13:49:03.74758 37.79590032358902,-122.40814239845803
4623 Chance Purdy kory.gutkowski@hahn.biz 218-463-5648 Schmidthaven t 2017-01-20 13:49:03.766437 2017-01-20 13:49:03.766437 37.77717466723537,-122.39594392950036
4624 Toni Donnelly hyman@walkerhansen.io 514.201.2449 Torphyside t 2017-01-20 13:49:03.785347 2017-01-20 13:49:03.785347 37.78839335167849,-122.41047347394223
4625 Tristin Wiegand hollie_ritchie@oconnellanderson.name 712-780-5902 Heberhaven f 2017-01-20 13:49:03.801692 2017-01-20 13:49:03.801692 37.79215499903669,-122.38959684575794
4626 Rafael Crona lavada_kunde@kertzmann.org 799-950-9290 Port Ahmedstad f 2017-01-20 13:49:03.816178 2017-01-20 13:49:03.816178 37.792663845010836,-122.39613497243035
4627 Eric McClure annette_bailey@quitzon.org (620) 418-6888 Anikamouth t 2017-01-20 13:49:03.829794 2017-01-20 13:49:03.829794 37.798120188555785,-122.39392100561673
4628 Beaulah Zboncak imogene.mcglynn@schroederabbott.com 797-491-5925 Littleborough t 2017-01-20 13:49:03.842152 2017-01-20 13:49:03.842152 37.787850189030884,-122.40941582773206
4629 Candace Brakus sharon.vandervort@carrollhudson.biz 1-399-797-3027 Faheyport t 2017-01-20 13:49:03.854337 2017-01-20 13:49:03.854337 37.781873530325804,-122.40284544458449
4630 Adolfo Langosh whitney@oconnellschaefer.org 531-202-5286 Watersside t 2017-01-20 13:49:03.866166 2017-01-20 13:49:03.866166 37.77821694988443,-122.40468561387377
4631 Tate Mann sophie@sipes.info 1-818-485-8850 East Maida t 2017-01-20 13:49:03.885701 2017-01-20 13:49:03.885701 37.776340480469436,-122.39044305896401
4632 Deion Bogan adam_conn@ritchieklocko.io 164-195-8357 Keelingfurt f 2017-01-20 13:49:03.903268 2017-01-20 13:49:03.903268 37.78024292701143,-122.39507980976077
4633 Joany Mueller hilda_conn@kihndooley.co 114.752.5008 Kaneville t 2017-01-20 13:49:03.915444 2017-01-20 13:49:03.915444 37.78315344804817,-122.40867960992226
4634 Brant D'Amore nicole@heathcote.net (674) 701-1946 West Kiarratown f 2017-01-20 13:49:03.928371 2017-01-20 13:49:03.928371 37.7921584595694,-122.39105527034133
4635 Columbus Cremin edd_casper@bahringer.info 947.542.5200 East Brantstad t 2017-01-20 13:49:03.943193 2017-01-20 13:49:03.943193 37.796447382664915,-122.3895271500055
4636 Allie Welch ibrahim.jacobson@stehr.biz 278-673-5805 Lake Cory t 2017-01-20 13:49:03.955149 2017-01-20 13:49:03.955149 37.79388470288862,-122.38982510051906
4637 Lavonne Bednar carolyn@welchhansen.com 635-878-8443 West Keshawn f 2017-01-20 13:49:03.968253 2017-01-20 13:49:03.968253 37.77982697464615,-122.40118712747389
4638 Kallie Walter noemy_herzog@johnsonkoepp.co 1-564-468-1239 Port Margueriteside f 2017-01-20 13:49:03.978393 2017-01-20 13:49:03.978393 37.795433640604266,-122.3915604823042
4639 Ashleigh Adams connie.franecki@kautzer.co (643) 548-3486 Watsicastad t 2017-01-20 13:49:03.988344 2017-01-20 13:49:03.988344 37.782967814770636,-122.4134435403335
4640 Jeremie Kuhic flavio_reichel@halvorsonhowe.net 179-207-3002 Madisonborough f 2017-01-20 13:49:04.000447 2017-01-20 13:49:04.000447 37.78451218752937,-122.41069766266575
4641 Lempi Bruen elinor@emardborer.com (886) 728-4162 Hintzmouth f 2017-01-20 13:49:04.011004 2017-01-20 13:49:04.011004 37.79136456399186,-122.39268699006088
4642 Joelle Kulas teie@jones.co 121-906-4100 East Wilton f 2017-01-20 13:49:04.021476 2017-01-20 13:49:04.021476 37.785071359955126,-122.40720010212748
4643 Doyle Koepp greg.wisozk@rodriguez.net 1-356-141-1918 West Bernie f 2017-01-20 13:49:04.040433 2017-01-20 13:49:04.040433 37.799593424525014,-122.4054019415683
4644 Melyna Runolfsdottir conrad_johns@rogahnruel.name 981.664.9656 Lake Arnold t 2017-01-20 13:49:04.05499 2017-01-20 13:49:04.05499 37.7753901900666,-122.39855988998518
4645 Melany Beier elvie@auer.co 1-701-706-6680 Alexandriaborough f 2017-01-20 13:49:04.064771 2017-01-20 13:49:04.064771 37.790119590903075,-122.38702314460477
4646 Jeanette Torp prince@mertz.io 218.088.8605 East Berry f 2017-01-20 13:49:04.077041 2017-01-20 13:49:04.077041 37.78226139982651,-122.4125237352335
4647 Dariana Kautzer berry_fritsch@haley.net 826.661.6488 South Maximeborough f 2017-01-20 13:49:04.087586 2017-01-20 13:49:04.087586 37.79683147063456,-122.39661078867262
4648 Alf Dickinson albert.denesik@schimmelwaelchi.io 500-053-9340 Graceport f 2017-01-20 13:49:04.100132 2017-01-20 13:49:04.100132 37.77709506608134,-122.3994365058687
4649 Dwight Rogahn manuel@hauckdurgan.com 742-774-7761 North Kaleighborough t 2017-01-20 13:49:04.114237 2017-01-20 13:49:04.114237 37.77561323809814,-122.40890469864587
4650 Chandler Hoeger stella_okuneva@aufderharkuhn.co (685) 940-1970 North Antwan t 2017-01-20 13:49:04.147834 2017-01-20 13:49:04.147834 37.78076293531853,-122.40189474285809
4651 Cristian Nolan ena@thieltoy.com 1-203-260-5596 Port Ervinville t 2017-01-20 13:49:04.16007 2017-01-20 13:49:04.16007 37.79128557434085,-122.41187132863915
4652 Trenton Kulas jackie_schimmel@schmidt.org 1-899-673-6826 Stephanhaven t 2017-01-20 13:49:04.175504 2017-01-20 13:49:04.175504 37.79725323782715,-122.40322049773759
4653 Frederic VonRueden joanny@welchframi.name 1-768-279-5133 West Davinside f 2017-01-20 13:49:04.1868 2017-01-20 13:49:04.1868 37.78682954442716,-122.39517942150358
4654 Cheyenne Cormier dayton_kuhn@predovic.biz (343) 775-8123 West Art f 2017-01-20 13:49:04.198526 2017-01-20 13:49:04.198526 37.78798138539267,-122.39987669342253
4655 Shawna Schiller emanuel.wilkinson@kemmer.info 140.420.4137 Donaldfort t 2017-01-20 13:49:04.21187 2017-01-20 13:49:04.21187 37.7860250575969,-122.40177385143097
4656 Adriel Pollich terrell@steuber.com 636.645.0857 West Aletha f 2017-01-20 13:49:04.222775 2017-01-20 13:49:04.222775 37.79251808357529,-122.4018422742452
4657 Marisol Rempel daryl@bernhard.com 316-398-8343 Sylvanland t 2017-01-20 13:49:04.2347 2017-01-20 13:49:04.2347 37.793390252951376,-122.3941801074742
4658 Fermin Keeling maybell.rice@crooks.info (497) 421-9960 Rosaleechester f 2017-01-20 13:49:04.245348 2017-01-20 13:49:04.245348 37.78010921780225,-122.38975189367551
4659 Bonita Leuschke danny@beckerleuschke.com 103-618-0108 North Delores f 2017-01-20 13:49:04.256009 2017-01-20 13:49:04.256009 37.77640838836553,-122.40406729563416
4660 Rosanna Glover elroy.mante@klockoschinner.org 662.820.0601 Hansenfort f 2017-01-20 13:49:04.26726 2017-01-20 13:49:04.26726 37.79176492549845,-122.40430807377287
4661 Wilfrid Stehr kristofer_hintz@abernathy.org (951) 953-7308 North Duncanborough t 2017-01-20 13:49:04.279038 2017-01-20 13:49:04.279038 37.78263610834389,-122.39460453795343
4662 Lue Schinner jeremie.welch@steuber.org 214.620.1203 Lake Betty t 2017-01-20 13:49:04.289265 2017-01-20 13:49:04.289265 37.79464344522061,-122.38833879978546
4663 Jamey Kuphal hudson@kulasnolan.org 112-051-8972 Antoniaburgh f 2017-01-20 13:49:04.300474 2017-01-20 13:49:04.300474 37.78286632713992,-122.4030831210423
4664 Yvonne Jacobson tracey.gutmann@blickschulist.com 855.178.7383 Ferryburgh f 2017-01-20 13:49:04.312403 2017-01-20 13:49:04.312403 37.79936896614686,-122.39361809832023
4665 Bartholome Satterfield ruby@miller.co 442.602.9981 Ankundingberg t 2017-01-20 13:49:04.323501 2017-01-20 13:49:04.323501 37.77654585954809,-122.40989654006361
4666 Craig Feil rick@simonis.io (621) 108-5305 Veumbury f 2017-01-20 13:49:04.335741 2017-01-20 13:49:04.335741 37.781992842673375,-122.39593106569299
4667 Beau Daugherty hunter@cronin.biz (681) 636-6141 Mertzside t 2017-01-20 13:49:04.345496 2017-01-20 13:49:04.345496 37.79042914695625,-122.41331565213667
4668 Vesta Kunde zack@torphyrath.name (712) 936-6423 Port Grahamberg f 2017-01-20 13:49:04.35635 2017-01-20 13:49:04.35635 37.78490508443816,-122.40545277646162
4669 Anissa Kuhic blanca@pagac.co 289.449.6369 Hesselmouth f 2017-01-20 13:49:04.367086 2017-01-20 13:49:04.367086 37.77911195870435,-122.40706161794199
4670 Rylee Kuphal arvel_hickle@keelingglover.io (526) 580-3980 South Courtney f 2017-01-20 13:49:04.37812 2017-01-20 13:49:04.37812 37.78325921687135,-122.39837039847721
4671 Anastasia Willms velma.kihn@harber.io (112) 963-5870 Port Brandi f 2017-01-20 13:49:04.388399 2017-01-20 13:49:04.388399 37.77328692051501,-122.39510471714205
4672 Verlie Hayes dameon@kiehn.com 477.929.4816 Towneborough f 2017-01-20 13:49:04.400451 2017-01-20 13:49:04.400451 37.774904154868196,-122.40325162385669
4673 Abigale Waters raymond@harber.org (206) 063-7983 Bradlytown t 2017-01-20 13:49:04.411953 2017-01-20 13:49:04.411953 37.794425262618354,-122.39586965640464
4674 Emelia Johnson michael@kihn.com (793) 749-2639 South Hiltonmouth f 2017-01-20 13:49:04.422537 2017-01-20 13:49:04.422537 37.782299894121074,-122.41220494847263
4675 Jaiden Russel tristian.kemmer@hoppe.org 563.931.5531 Runteport f 2017-01-20 13:49:04.435541 2017-01-20 13:49:04.435541 37.79307236060396,-122.39475184724425
4676 Gonzalo Bergnaum lottie@pagac.com 612.969.4244 Reichertchester f 2017-01-20 13:49:04.446364 2017-01-20 13:49:04.446364 37.78605604833353,-122.4046309848865
4677 Kaylie Heller vidal_batz@abernathyborer.info 1-270-636-1308 Heaneyville t 2017-01-20 13:49:04.45662 2017-01-20 13:49:04.45662 37.788328517137195,-122.39647478435002
4678 Ludie Torp alphonso.greenfelder@nitzsche.com 569-496-1607 Stephanieton t 2017-01-20 13:49:04.467644 2017-01-20 13:49:04.467644 37.77622675261648,-122.4074444482475
4679 Flavie Goldner rachel@loweschinner.co 570.523.1215 Fletcherberg f 2017-01-20 13:49:04.477824 2017-01-20 13:49:04.477824 37.79698690958719,-122.40021859202433
4680 Soledad Skiles baylee_mayer@murray.io 776-394-9640 Franzport t 2017-01-20 13:49:04.487539 2017-01-20 13:49:04.487539 37.78080749571262,-122.4110795638551
4681 Everardo Erdman presley.little@stoltenbergwyman.biz 558-553-7763 North Leifhaven t 2017-01-20 13:49:04.497941 2017-01-20 13:49:04.497941 37.774771778785514,-122.39476795705878
4682 Brenna Ruecker beverly@schmeler.co (602) 600-6827 Hintzfort f 2017-01-20 13:49:04.509686 2017-01-20 13:49:04.509686 37.79517178839505,-122.39314934281359
4683 Maggie Trantow florence_reinger@eichmann.name (773) 287-5801 Blandastad f 2017-01-20 13:49:04.520472 2017-01-20 13:49:04.520472 37.779349361730894,-122.40789326476535
4684 Ozella Stamm jett.jerde@shields.name (744) 382-6316 North D'angelo t 2017-01-20 13:49:04.529194 2017-01-20 13:49:04.529194 37.7828214381569,-122.41190218705144
4685 Barbara Schaefer marley_paucek@walterjohnson.net (593) 894-5375 Blickfurt t 2017-01-20 13:49:04.539795 2017-01-20 13:49:04.539795 37.80039538292951,-122.40424535681468
4686 Meagan Leuschke jerrod@schambergergoldner.co 743.182.7641 New Skyeton f 2017-01-20 13:49:04.550498 2017-01-20 13:49:04.550498 37.79178095374426,-122.40248617835465
4687 Gilberto Runolfsson dennis_pouros@streich.net (832) 148-7917 Fosterborough t 2017-01-20 13:49:04.562612 2017-01-20 13:49:04.562612 37.7750334293259,-122.4072945127924
4688 Llewellyn Cummings ethelyn_wunsch@stammreilly.io 207.879.1543 East Nilsland f 2017-01-20 13:49:04.574207 2017-01-20 13:49:04.574207 37.781880662256995,-122.41130350107012
4689 Robbie Collier adella.baumbach@hammes.info 1-404-396-0983 West Sebastianside f 2017-01-20 13:49:04.587579 2017-01-20 13:49:04.587579 37.79212171372693,-122.39701153293929
4690 Rogers Harvey ida@mills.com 1-684-467-9045 North Myles f 2017-01-20 13:49:04.598212 2017-01-20 13:49:04.598212 37.79686102768807,-122.41002340317817
4691 Carleton Hettinger abelardo@schneider.com 339-263-9745 Gilbertoview f 2017-01-20 13:49:04.610966 2017-01-20 13:49:04.610966 37.786218626676856,-122.39977417858093
4692 Laila Kerluke hertha_marquardt@oreilly.info 541.158.4801 Port Evelyn f 2017-01-20 13:49:04.621472 2017-01-20 13:49:04.621472 37.7884703292448,-122.4001139855004
4693 Felicita Gottlieb camille_labadie@wilkinson.co (439) 604-6149 Metzside t 2017-01-20 13:49:04.632162 2017-01-20 13:49:04.632162 37.79577473900952,-122.4060979737778
4694 Oleta Ziemann durward.spencer@prosaccosauer.net 407.519.7868 Brayanstad t 2017-01-20 13:49:04.643746 2017-01-20 13:49:04.643746 37.786599413631514,-122.40857935227399
4695 Francisca Kemmer guido_erdman@smith.biz (864) 983-2711 Lexiside t 2017-01-20 13:49:04.654674 2017-01-20 13:49:04.654674 37.78014467954102,-122.39625262470852
4696 Richard Koch creola_mitchell@uptonrunte.info 476-865-1413 Reecemouth t 2017-01-20 13:49:04.665433 2017-01-20 13:49:04.665433 37.80016590660237,-122.40327239423827
4697 Stephania Kuhlman fannie@herzogkrajcik.biz 435-573-3710 East Nils t 2017-01-20 13:49:04.678768 2017-01-20 13:49:04.678768 37.7746850926223,-122.40412664407371
4698 Meghan Schumm brant.schamberger@maggio.info (399) 705-7494 East Zulastad t 2017-01-20 13:49:04.690017 2017-01-20 13:49:04.690017 37.789709395332636,-122.41268765572039
4699 Eladio Toy aisha.yost@rodriguezokon.net 481-367-5705 Lake Callie t 2017-01-20 13:49:04.70173 2017-01-20 13:49:04.70173 37.79750818196686,-122.39836944823391
4700 Anabelle Emard emilie@bogan.info 350-502-9150 Wittingville t 2017-01-20 13:49:04.711933 2017-01-20 13:49:04.711933 37.78980044347321,-122.40363093702574
\.
--
-- Data for Name: menus; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.menus (id, available_at, chef_id) FROM stdin;
2778 2017-02-03 00:00:00 873
2779 2017-02-18 00:00:00 857
2780 2017-01-30 00:00:00 864
2781 2017-01-23 00:00:00 874
2782 2017-02-11 00:00:00 855
2783 2017-02-16 00:00:00 873
2784 2017-02-08 00:00:00 862
2785 2017-01-26 00:00:00 855
2786 2017-02-15 00:00:00 854
2787 2017-02-11 00:00:00 867
2788 2017-02-09 00:00:00 855
2789 2017-02-07 00:00:00 853
2790 2017-02-07 00:00:00 866
2791 2017-02-06 00:00:00 853
2792 2017-02-07 00:00:00 860
2793 2017-02-01 00:00:00 867
2794 2017-02-02 00:00:00 876
2795 2017-02-02 00:00:00 868
2796 2017-02-12 00:00:00 854
2797 2017-01-29 00:00:00 875
2798 2017-02-11 00:00:00 862
2799 2017-02-16 00:00:00 854
2800 2017-02-09 00:00:00 853
2801 2017-01-31 00:00:00 862
2802 2017-02-17 00:00:00 865
2803 2017-02-03 00:00:00 864
2804 2017-02-19 00:00:00 864
2805 2017-01-25 00:00:00 857
2806 2017-02-10 00:00:00 858
2807 2017-02-07 00:00:00 856
2808 2017-02-15 00:00:00 876
2809 2017-02-13 00:00:00 868
2810 2017-02-10 00:00:00 856
2811 2017-01-28 00:00:00 875
2812 2017-02-17 00:00:00 859
2813 2017-02-15 00:00:00 861
2814 2017-02-15 00:00:00 862
2815 2017-02-16 00:00:00 860
2816 2017-02-08 00:00:00 860
2817 2017-02-11 00:00:00 858
2818 2017-01-27 00:00:00 872
2819 2017-02-09 00:00:00 853
2820 2017-01-24 00:00:00 867
2821 2017-01-21 00:00:00 859
2822 2017-01-22 00:00:00 864
2823 2017-02-12 00:00:00 873
2824 2017-02-16 00:00:00 859
2825 2017-02-02 00:00:00 865
2826 2017-02-07 00:00:00 867
2827 2017-02-03 00:00:00 858
2828 2017-02-17 00:00:00 854
2829 2017-02-09 00:00:00 876
2830 2017-01-25 00:00:00 857
2831 2017-01-23 00:00:00 870
2832 2017-02-17 00:00:00 853
2833 2017-01-23 00:00:00 862
2834 2017-02-18 00:00:00 869
2835 2017-02-19 00:00:00 854
2836 2017-02-10 00:00:00 867
2837 2017-01-21 00:00:00 871
2838 2017-02-13 00:00:00 861
2839 2017-02-20 00:00:00 874
2840 2017-02-16 00:00:00 868
2841 2017-01-24 00:00:00 861
2842 2017-01-21 00:00:00 874
2843 2017-02-06 00:00:00 870
2844 2017-02-16 00:00:00 870
2845 2017-01-30 00:00:00 870
2846 2017-01-20 00:00:00 872
2847 2017-02-04 00:00:00 858
2848 2017-02-11 00:00:00 869
2849 2017-02-01 00:00:00 872
2850 2017-02-18 00:00:00 861
2851 2017-01-26 00:00:00 863
2852 2017-02-01 00:00:00 865
2853 2017-01-27 00:00:00 870
2854 2017-02-03 00:00:00 858
2855 2017-01-29 00:00:00 864
2856 2017-02-10 00:00:00 875
2857 2017-01-27 00:00:00 852
2858 2017-02-03 00:00:00 857
2859 2017-01-28 00:00:00 863
2860 2017-02-11 00:00:00 857
2861 2017-01-22 00:00:00 853
2862 2017-01-22 00:00:00 867
2863 2017-02-14 00:00:00 866
2864 2017-02-09 00:00:00 856
2865 2017-01-31 00:00:00 873
2866 2017-02-19 00:00:00 867
2867 2017-02-19 00:00:00 875
2868 2017-02-12 00:00:00 872
2869 2017-02-20 00:00:00 868
2870 2017-02-17 00:00:00 865
2871 2017-01-28 00:00:00 875
2872 2017-02-05 00:00:00 858
2873 2017-02-01 00:00:00 860
2874 2017-02-03 00:00:00 864
2875 2017-01-26 00:00:00 875
2876 2017-02-13 00:00:00 866
2877 2017-01-25 00:00:00 858
\.
--
-- Data for Name: menus_products; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.menus_products (id, product_id, menu_id) FROM stdin;
8423 7 2778
8424 5 2778
8425 9 2778
8426 8 2779
8427 9 2779
8428 6 2779
8429 6 2780
8430 8 2780
8431 8 2780
8432 6 2781
8433 6 2781
8434 7 2782
8435 5 2782
8436 6 2783
8437 1 2783
8438 3 2784
8439 2 2784
8440 1 2784
8441 5 2784
8442 9 2785
8443 1 2785
8444 3 2785
8445 9 2785
8446 8 2786
8447 6 2786
8448 3 2787
8449 8 2787
8450 4 2787
8451 5 2787
8452 4 2788
8453 2 2788
8454 4 2789
8455 6 2789
8456 3 2789
8457 8 2789
8458 5 2790
8459 6 2790
8460 9 2790
8461 4 2791
8462 3 2791
8463 4 2792
8464 9 2792
8465 9 2792
8466 3 2793
8467 4 2793
8468 2 2793
8469 5 2794
8470 2 2794
8471 4 2795
8472 1 2795
8473 5 2796
8474 8 2796
8475 8 2796
8476 8 2797
8477 1 2797
8478 2 2798
8479 7 2798
8480 5 2799
8481 1 2799
8482 4 2799
8483 1 2800
8484 8 2800
8485 1 2800
8486 1 2800
8487 4 2801
8488 1 2801
8489 4 2801
8490 1 2801
8491 3 2802
8492 9 2802
8493 7 2802
8494 7 2803
8495 5 2803
8496 6 2804
8497 1 2804
8498 3 2804
8499 3 2804
8500 6 2805
8501 9 2805
8502 9 2806
8503 4 2806
8504 2 2806
8505 3 2806
8506 2 2807
8507 2 2807
8508 8 2807
8509 1 2808
8510 6 2808
8511 9 2808
8512 4 2809
8513 9 2809
8514 5 2809
8515 4 2809
8516 4 2810
8517 1 2810
8518 3 2810
8519 4 2811
8520 5 2811
8521 4 2811
8522 1 2812
8523 1 2812
8524 4 2813
8525 2 2813
8526 6 2813
8527 6 2814
8528 3 2814
8529 8 2815
8530 9 2815
8531 2 2815
8532 4 2815
8533 5 2816
8534 5 2816
8535 6 2816
8536 6 2817
8537 7 2817
8538 9 2818
8539 2 2818
8540 1 2819
8541 3 2819
8542 4 2819
8543 8 2819
8544 3 2820
8545 2 2820
8546 2 2820
8547 1 2821
8548 4 2821
8549 8 2821
8550 1 2822
8551 1 2822
8552 6 2822
8553 5 2822
8554 2 2823
8555 1 2823
8556 8 2824
8557 1 2824
8558 7 2824
8559 1 2824
8560 9 2825
8561 2 2825
8562 4 2826
8563 9 2826
8564 6 2826
8565 9 2827
8566 2 2827
8567 2 2827
8568 5 2827
8569 5 2828
8570 3 2828
8571 6 2829
8572 2 2829
8573 5 2829
8574 9 2829
8575 5 2830
8576 9 2830
8577 3 2830
8578 3 2830
8579 6 2831
8580 9 2831
8581 8 2831
8582 3 2831
8583 9 2832
8584 2 2832
8585 1 2832
8586 9 2832
8587 4 2833
8588 1 2833
8589 6 2833
8590 7 2834
8591 7 2834
8592 5 2835
8593 9 2835
8594 4 2835
8595 6 2836
8596 8 2836
8597 7 2836
8598 8 2836
8599 9 2837
8600 1 2837
8601 1 2838
8602 2 2838
8603 8 2839
8604 3 2839
8605 8 2839
8606 1 2839
8607 3 2840
8608 2 2840
8609 3 2840
8610 3 2841
8611 1 2841
8612 2 2842
8613 4 2842
8614 4 2842
8615 8 2843
8616 6 2843
8617 1 2843
8618 1 2843
8619 8 2844
8620 6 2844
8621 9 2844
8622 7 2845
8623 2 2845
8624 3 2846
8625 3 2846
8626 1 2846
8627 6 2847
8628 2 2847
8629 8 2848
8630 7 2848
8631 5 2849
8632 7 2849
8633 1 2849
8634 9 2849
8635 2 2850
8636 3 2850
8637 3 2850
8638 6 2851
8639 2 2851
8640 3 2851
8641 9 2851
8642 7 2852
8643 2 2852
8644 8 2852
8645 1 2852
8646 3 2853
8647 3 2853
8648 4 2854
8649 4 2854
8650 1 2854
8651 1 2855
8652 1 2855
8653 3 2855
8654 7 2856
8655 7 2856
8656 7 2856
8657 6 2856
8658 2 2857
8659 7 2857
8660 9 2857
8661 4 2857
8662 6 2858
8663 6 2858
8664 2 2858
8665 8 2859
8666 1 2859
8667 2 2860
8668 6 2860
8669 3 2860
8670 2 2861
8671 5 2861
8672 1 2861
8673 6 2861
8674 6 2862
8675 3 2862
8676 6 2862
8677 8 2863
8678 5 2863
8679 9 2863
8680 6 2863
8681 7 2864
8682 2 2864
8683 1 2865
8684 3 2865
8685 2 2865
8686 3 2866
8687 5 2866
8688 7 2866
8689 6 2866
8690 1 2867
8691 2 2867
8692 3 2867
8693 4 2867
8694 8 2868
8695 4 2868
8696 7 2868
8697 4 2868
8698 4 2869
8699 4 2869
8700 1 2869
8701 9 2869
8702 5 2870
8703 6 2870
8704 8 2871
8705 2 2871
8706 4 2871
8707 3 2872
8708 4 2872
8709 9 2873
8710 4 2873
8711 4 2873
8712 9 2874
8713 6 2874
8714 9 2874
8715 2 2874
8716 6 2875
8717 5 2875
8718 5 2876
8719 6 2876
8720 4 2877
8721 6 2877
8722 5 2877
\.
--
-- Data for Name: orders; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.orders (id, customer_id, created_at, updated_at, delivery_address, status) FROM stdin;
10041 1721 2017-01-18 01:26:10.370466 2017-01-20 13:49:23.374964 12579 Rico Points 2
10042 1721 2016-11-02 01:57:41.453901 2017-01-20 13:49:23.456007 25036 Mauricio Tunnel 2
10043 1721 2016-12-08 06:31:39.532164 2017-01-20 13:49:23.533841 65437 Labadie Parks 2
10044 1721 2016-10-28 05:00:18.665409 2017-01-20 13:49:23.667089 7028 Gerda Track 2
10045 1722 2016-11-11 00:47:28.628408 2017-01-20 13:49:25.630611 21451 Mary Islands 1
10046 1722 2016-12-28 01:30:40.813294 2017-01-20 13:49:26.815316 13937 Howe Mountains 1
10047 1722 2016-12-31 21:11:23.017234 2017-01-20 13:49:28.019484 5032 Altenwerth Crossing 2
10048 1723 2016-12-25 07:07:39.835715 2017-01-20 13:49:29.837555 315 Virginie Skyway 2
10049 1723 2016-12-14 05:54:41.935605 2017-01-20 13:49:29.937553 59234 Ayla Drive 2
10050 1723 2017-01-14 08:04:41.094042 2017-01-20 13:49:30.095976 63602 Abshire Radial 1
10051 1724 2016-11-22 23:39:09.81028 2017-01-20 13:49:32.812766 964 Abernathy Views 0
10052 1725 2017-01-11 12:33:31.688873 2017-01-20 13:49:34.690883 9280 Sauer Road 1
10053 1725 2017-01-01 03:06:16.943005 2017-01-20 13:49:35.946258 826 Genoveva Valley 0
10054 1725 2017-01-17 18:03:38.076854 2017-01-20 13:49:36.078571 8792 Rylee Park 2
10055 1725 2017-01-01 23:12:23.221727 2017-01-20 13:49:36.223881 330 Carol Via 2
10056 1725 2016-11-22 16:34:30.26671 2017-01-20 13:49:36.268864 166 Beulah Key 1
10057 1725 2017-01-11 17:17:27.542266 2017-01-20 13:49:37.544672 118 Bogisich Valley 2
10058 1725 2016-12-25 03:03:29.583647 2017-01-20 13:49:37.585843 97747 Herman Dam 0
10059 1726 2016-10-25 17:45:33.32149 2017-01-20 13:49:39.323436 78068 Gusikowski Corner 0
10060 1726 2017-01-02 23:11:06.416154 2017-01-20 13:49:39.418495 904 Mohamed Alley 0
10061 1727 2016-11-05 10:36:36.376373 2017-01-20 13:49:41.378006 42008 Emie Islands 0
10062 1728 2016-11-18 18:15:32.211045 2017-01-20 13:49:43.212831 65337 Streich Union 1
10063 1728 2017-01-18 21:50:21.351284 2017-01-20 13:49:44.354289 775 Reagan Ways 0
10064 1728 2016-11-21 16:57:13.520146 2017-01-20 13:49:44.521857 588 Jacobs Plain 2
10065 1728 2016-11-25 01:48:19.605552 2017-01-20 13:49:44.608507 1773 Aleen Ports 0
10066 1728 2016-11-14 19:50:05.707789 2017-01-20 13:49:44.709263 835 Nova Route 2
10067 1729 2016-11-15 10:31:46.560707 2017-01-20 13:49:46.563214 44376 Dibbert Port 0
10068 1729 2016-11-05 21:22:33.699133 2017-01-20 13:49:46.700762 515 Carlotta Corner 2
10069 1729 2016-11-24 23:30:32.878409 2017-01-20 13:49:46.882381 6770 Corene Port 1
10070 1729 2016-12-08 15:07:00.004029 2017-01-20 13:49:48.006392 4726 Isaac Club 0
10071 1729 2016-11-13 16:04:02.069397 2017-01-20 13:49:48.070972 46713 Zoey Club 2
10072 1729 2017-01-11 21:36:39.194487 2017-01-20 13:49:48.196906 9207 Johnson Orchard 2
10073 1729 2016-11-24 07:26:46.35807 2017-01-20 13:49:48.360751 192 Hane Village 2
10074 1729 2016-12-10 12:56:10.500704 2017-01-20 13:49:48.502437 549 Elta Cove 0
10075 1730 2017-01-02 19:16:27.279541 2017-01-20 13:49:50.281173 9212 Witting Harbors 1
10076 1730 2016-12-02 14:52:44.905699 2017-01-20 13:49:51.908256 97995 Mireille Drives 0
10077 1730 2016-11-03 01:31:25.045575 2017-01-20 13:49:52.048418 6061 Lubowitz Fields 1
10078 1730 2016-12-02 22:20:51.330481 2017-01-20 13:49:53.332497 93343 Rosario Pine 1
10079 1730 2017-01-10 23:43:48.356309 2017-01-20 13:49:54.35875 24083 Stehr Drives 0
10080 1730 2016-11-21 20:08:07.426785 2017-01-20 13:49:54.429151 40110 Bartell Way 2
10081 1730 2016-10-29 06:06:29.482412 2017-01-20 13:49:54.483883 72622 Balistreri Locks 0
10082 1731 2016-12-06 15:24:31.386078 2017-01-20 13:49:56.38773 10058 Edna Crescent 1
10083 1731 2017-01-20 11:54:14.430588 2017-01-20 13:49:57.432708 6768 Shields Station 1
10084 1731 2016-10-30 03:26:38.590448 2017-01-20 13:49:58.592557 55098 Moore Ford 1
10085 1731 2016-11-03 19:45:20.699576 2017-01-20 13:49:59.702155 36556 Kihn Crescent 1
10086 1731 2017-01-13 21:25:24.775137 2017-01-20 13:50:00.77807 41208 Aufderhar Ferry 1
10087 1732 2016-11-08 06:53:31.694345 2017-01-20 13:50:03.696853 858 Rafaela Park 0
10088 1732 2017-01-11 07:31:57.856498 2017-01-20 13:50:03.859022 9784 Price Tunnel 2
10089 1732 2016-12-07 08:05:12.98351 2017-01-20 13:50:03.985619 89001 Oswaldo Fort 0
10090 1732 2016-10-31 23:59:06.142754 2017-01-20 13:50:04.144569 411 Kertzmann Trail 2
10091 1732 2017-01-16 08:42:36.214077 2017-01-20 13:50:04.215858 76242 Hoppe Fort 2
10092 1732 2017-01-10 16:34:21.309962 2017-01-20 13:50:04.313911 12938 Gleichner Route 0
10093 1732 2016-12-22 10:04:09.427354 2017-01-20 13:50:04.432043 8373 Vandervort Plains 2
10094 1732 2016-10-23 09:08:54.486016 2017-01-20 13:50:04.487965 752 Barton Islands 1
10095 1732 2016-11-30 13:18:47.550601 2017-01-20 13:50:05.552909 74385 Willms Parks 1
10096 1733 2016-11-24 05:24:27.440714 2017-01-20 13:50:08.442222 115 Fahey Cliff 1
10097 1734 2016-11-04 07:01:05.441764 2017-01-20 13:50:11.443314 5636 Koepp Glen 2
10098 1735 2016-11-30 23:04:10.346541 2017-01-20 13:50:13.348178 8584 Metz Turnpike 2
10099 1735 2017-01-15 07:54:11.385617 2017-01-20 13:50:13.387965 2746 Quentin Common 2
10100 1735 2017-01-17 02:24:53.48936 2017-01-20 13:50:13.490813 11712 Arely Spring 1
10101 1735 2016-11-01 12:48:31.625047 2017-01-20 13:50:14.627599 9303 Afton Freeway 2
10102 1735 2016-11-03 03:38:28.679428 2017-01-20 13:50:14.681335 997 Sonya Harbor 2
10103 1735 2016-12-20 01:18:30.817955 2017-01-20 13:50:14.820078 160 O'Kon Trail 1
10104 1735 2016-12-14 11:29:32.927587 2017-01-20 13:50:15.930412 75256 Troy Gateway 0
10105 1735 2016-11-04 20:14:52.020343 2017-01-20 13:50:16.023606 7104 Jessyca Locks 0
10106 1736 2016-10-22 21:30:41.293579 2017-01-20 13:50:18.295807 2953 Erich View 2
10107 1736 2017-01-18 11:18:59.420455 2017-01-20 13:50:18.422304 3015 Funk Land 0
10108 1736 2016-12-31 16:47:20.456374 2017-01-20 13:50:18.458659 79846 Oberbrunner Streets 0
10109 1736 2017-01-11 07:38:43.551467 2017-01-20 13:50:18.553416 924 Trantow Mountain 1
10110 1736 2016-11-23 14:37:47.743675 2017-01-20 13:50:19.74544 2529 Lind Rue 0
10111 1736 2017-01-17 22:39:07.881085 2017-01-20 13:50:19.882945 9092 Morissette Centers 1
10112 1736 2016-11-06 17:14:47.029105 2017-01-20 13:50:21.037713 25641 Brown Mill 1
10113 1736 2016-12-14 07:06:13.083377 2017-01-20 13:50:22.085098 794 Blick Summit 1
10114 1736 2016-10-25 14:36:11.182057 2017-01-20 13:50:23.1841 354 Flatley Branch 0
10115 1736 2017-01-08 14:23:11.284221 2017-01-20 13:50:23.285806 69983 Purdy Ranch 1
10116 1737 2016-10-22 15:53:13.379467 2017-01-20 13:50:26.381481 264 Waelchi Island 0
10117 1737 2017-01-10 09:23:13.492417 2017-01-20 13:50:26.494708 326 Wintheiser Station 0
10118 1737 2016-10-28 00:36:05.547222 2017-01-20 13:50:26.548673 21584 Reid Court 0
10119 1737 2016-11-07 19:15:20.626957 2017-01-20 13:50:26.629193 89295 Beier Ferry 1
10120 1737 2016-11-27 05:58:39.849846 2017-01-20 13:50:27.852159 52101 Lehner Via 0
10121 1737 2016-12-13 01:37:33.998415 2017-01-20 13:50:28.000061 3860 Earline Unions 1
10122 1737 2016-12-10 16:43:36.043025 2017-01-20 13:50:29.045009 884 Ledner Lakes 2
10123 1737 2016-12-06 13:03:51.172407 2017-01-20 13:50:29.173766 930 Gottlieb Junction 0
10124 1737 2016-11-24 18:15:02.241223 2017-01-20 13:50:29.242691 93478 Boyer Wells 2
10125 1737 2017-01-10 13:30:34.348386 2017-01-20 13:50:29.350636 83678 Ruthe Grove 2
10126 1738 2016-11-08 14:18:21.31383 2017-01-20 13:50:31.315369 61540 Brad Expressway 0
10127 1738 2016-12-30 11:13:10.43869 2017-01-20 13:50:31.440303 98731 Leannon Greens 2
10128 1738 2016-11-12 13:00:44.525312 2017-01-20 13:50:31.527075 4998 Kiehn Crossing 2
10129 1738 2016-11-14 10:00:28.590381 2017-01-20 13:50:31.592618 925 Mann Parkway 0
10130 1738 2016-11-15 22:26:11.645319 2017-01-20 13:50:31.647748 61768 Durgan Grove 0
10131 1738 2016-11-05 13:08:37.725876 2017-01-20 13:50:31.727779 1633 Melyna Motorway 1
10132 1738 2016-11-21 05:02:48.859645 2017-01-20 13:50:32.862643 2295 Kaci Turnpike 2
10133 1738 2017-01-16 22:09:49.910889 2017-01-20 13:50:32.913775 372 Lockman Oval 0
10134 1738 2017-01-16 14:59:18.005329 2017-01-20 13:50:33.006938 56799 Kilback Estate 2
10135 1739 2016-12-13 14:58:44.880279 2017-01-20 13:50:34.882105 37387 Ruthie Street 2
10136 1739 2016-11-25 14:59:06.016831 2017-01-20 13:50:35.01836 147 Miller Estate 1
10137 1739 2017-01-06 06:49:48.026317 2017-01-20 13:50:36.029143 46082 Alba Wells 1
10138 1739 2016-12-31 06:03:08.201333 2017-01-20 13:50:37.203732 4057 Loyal Burg 0
10139 1739 2016-11-16 07:51:03.299547 2017-01-20 13:50:37.301197 8904 Roberts Rapids 0
10140 1739 2016-12-03 21:33:52.392476 2017-01-20 13:50:37.394054 98820 Harvey Rue 2
10141 1740 2016-11-15 03:18:25.24143 2017-01-20 13:50:39.243199 5945 Larkin Lodge 0
10142 1740 2016-11-26 02:40:51.376069 2017-01-20 13:50:39.378454 842 Kub Lake 0
10143 1740 2016-10-27 23:47:22.429128 2017-01-20 13:50:39.430849 9904 Fadel Orchard 0
10144 1740 2016-11-12 13:51:58.485571 2017-01-20 13:50:39.487499 48099 Bernhard Mission 0
10145 1740 2016-12-31 22:32:01.512842 2017-01-20 13:50:39.514739 53819 Barrows Causeway 2
10146 1740 2016-11-22 03:18:25.584842 2017-01-20 13:50:39.58661 4112 Doyle Harbor 0
10147 1740 2016-11-16 15:56:33.611954 2017-01-20 13:50:39.613832 574 Nikolaus Lock 2
10148 1740 2016-11-16 03:39:26.653817 2017-01-20 13:50:39.655289 52353 Jonathon Islands 2
10149 1740 2016-11-20 19:16:25.706006 2017-01-20 13:50:39.707941 2510 Romaguera Shore 1
10150 1740 2016-11-16 00:21:37.805319 2017-01-20 13:50:40.807535 86372 Gleason Avenue 0
10151 1741 2016-11-17 19:33:46.080988 2017-01-20 13:50:43.082822 571 Rowland Trail 1
10152 1741 2016-12-28 05:56:50.374302 2017-01-20 13:50:44.376629 964 VonRueden Pass 1
10153 1742 2016-12-21 16:03:52.308869 2017-01-20 13:50:47.310439 4010 Stephanie Walks 1
10154 1742 2016-12-12 23:36:03.49631 2017-01-20 13:50:48.498296 7622 Flatley Locks 2
10155 1742 2016-11-18 04:41:09.642847 2017-01-20 13:50:48.644259 72456 Kadin Roads 1
10156 1742 2016-12-23 17:14:33.751147 2017-01-20 13:50:49.756407 619 Mallory Shoal 1
10157 1742 2016-11-28 07:33:40.807135 2017-01-20 13:50:50.809612 5586 Alvina Glens 1
10158 1742 2017-01-19 12:56:04.166448 2017-01-20 13:50:52.169102 940 Palma Plains 2
10159 1742 2016-12-01 03:43:05.27674 2017-01-20 13:50:52.27887 908 Huel Ways 2
10160 1742 2016-10-30 06:31:25.405879 2017-01-20 13:50:52.40777 997 Ernie Street 1
10161 1742 2016-10-27 02:08:54.53066 2017-01-20 13:50:53.533155 884 Ward Lane 0
10162 1742 2017-01-18 22:21:04.633361 2017-01-20 13:50:53.635185 62895 Fay Neck 0
10163 1743 2016-11-15 16:39:58.59499 2017-01-20 13:50:55.596922 582 Clemens Estate 2
10164 1743 2016-12-24 13:38:04.738908 2017-01-20 13:50:55.740382 818 Schuster Turnpike 2
10165 1744 2016-12-18 14:09:06.569227 2017-01-20 13:50:57.570778 443 Jarrett Land 1
10166 1744 2016-11-19 03:27:54.675315 2017-01-20 13:50:58.677425 749 Haylie Ports 1
10167 1744 2016-12-21 14:06:36.842423 2017-01-20 13:50:59.844844 2735 Norris Ridges 0
10168 1744 2016-12-30 01:04:46.001624 2017-01-20 13:51:00.003457 55989 Toy Summit 2
10169 1744 2016-11-18 12:41:26.066708 2017-01-20 13:51:00.068212 44082 Guido Rapids 2
10170 1744 2016-10-24 14:03:56.166377 2017-01-20 13:51:00.167852 2180 Aliya Radial 2
10171 1745 2016-11-12 12:15:26.941881 2017-01-20 13:51:01.943417 290 Warren Greens 2
10172 1745 2016-11-22 16:15:29.034426 2017-01-20 13:51:02.035966 38841 Nienow Meadow 2
10173 1745 2016-11-22 19:03:16.059958 2017-01-20 13:51:02.062115 3942 Rupert Path 2
10174 1745 2017-01-07 23:20:00.130468 2017-01-20 13:51:02.132182 4973 Nienow Ridge 2
10175 1745 2016-12-12 06:39:43.169477 2017-01-20 13:51:02.171461 10771 Albert Pines 0
10176 1745 2016-12-24 19:06:59.241299 2017-01-20 13:51:02.243269 15964 Huels Cliffs 1
10177 1745 2016-12-31 19:39:29.335316 2017-01-20 13:51:03.337751 66230 Rath Branch 2
10178 1745 2016-10-30 17:17:02.422161 2017-01-20 13:51:03.423781 91671 Stephany Pines 2
10179 1746 2016-11-23 12:03:29.292218 2017-01-20 13:51:05.293698 948 Mckenna Vista 0
10180 1746 2016-12-24 04:37:35.332037 2017-01-20 13:51:05.333405 28770 Tyson Coves 0
10181 1746 2016-11-15 15:47:23.421695 2017-01-20 13:51:05.423109 8371 Monte Stravenue 0
10182 1746 2016-11-21 12:26:23.459165 2017-01-20 13:51:05.461486 45263 Gwendolyn Mountains 2
10183 1746 2016-11-18 05:33:25.556941 2017-01-20 13:51:05.558754 9063 McLaughlin Wells 1
10184 1746 2016-11-21 08:22:32.703586 2017-01-20 13:51:06.705734 573 Malika Spring 1
10185 1746 2016-11-26 12:48:37.824455 2017-01-20 13:51:07.827084 8456 Pfannerstill Dam 1
10186 1746 2017-01-13 10:38:44.969162 2017-01-20 13:51:08.971637 2616 Ivah Shoal 1
10187 1746 2016-11-19 08:15:29.122714 2017-01-20 13:51:10.124543 1642 Earnestine Streets 2
10188 1747 2016-10-25 11:45:46.483378 2017-01-20 13:51:12.485284 505 Mann Underpass 2
10189 1748 2016-12-22 09:35:22.327625 2017-01-20 13:51:14.329228 4535 Wiza Corner 2
10190 1748 2016-12-22 07:05:10.407097 2017-01-20 13:51:14.408804 2127 Chelsie Course 0
10191 1748 2016-11-11 04:56:55.556271 2017-01-20 13:51:14.557693 3252 Avery Plaza 2
10192 1749 2017-01-17 20:05:03.431977 2017-01-20 13:51:16.433644 9783 Tremblay Grove 2
10193 1750 2016-11-22 16:18:48.281141 2017-01-20 13:51:18.283211 938 Spencer Garden 2
10194 1750 2016-11-03 23:19:02.366418 2017-01-20 13:51:18.368077 9825 Grant Orchard 1
10195 1750 2016-11-01 20:19:35.737775 2017-01-20 13:51:19.740366 87438 Hyatt Village 0
10196 1751 2016-12-19 13:08:13.624588 2017-01-20 13:51:21.626094 6078 Stanton Track 1
10197 1751 2016-11-18 00:30:18.727229 2017-01-20 13:51:22.729347 256 Margaretta Mission 1
10198 1751 2016-11-23 13:27:21.867769 2017-01-20 13:51:23.870109 3351 Catherine Rue 0
10199 1751 2016-12-24 21:36:13.982114 2017-01-20 13:51:23.98373 3226 Ratke Springs 0
10200 1751 2016-12-01 21:56:57.084404 2017-01-20 13:51:24.086303 331 Destini Union 0
10201 1751 2017-01-03 10:39:09.183143 2017-01-20 13:51:24.18467 5518 Hildegard Plaza 1
10202 1752 2017-01-06 18:56:31.081684 2017-01-20 13:51:27.084116 91762 Dion Plaza 2
10203 1752 2017-01-08 18:04:36.221556 2017-01-20 13:51:27.223478 453 Karlee Parks 2
10204 1752 2016-11-18 07:04:11.275874 2017-01-20 13:51:27.277228 7704 Von Village 0
10205 1752 2017-01-08 08:05:25.354902 2017-01-20 13:51:27.356295 2919 Lilian Ports 0
10206 1752 2016-12-29 15:28:22.421925 2017-01-20 13:51:27.423393 95784 Monahan Mews 1
10207 1752 2017-01-04 20:23:53.040727 2017-01-20 13:51:29.043331 7893 Littel Corners 1
10208 1752 2017-01-02 11:12:02.18131 2017-01-20 13:51:30.183814 267 Kub Causeway 0
10209 1752 2016-12-05 14:30:36.262062 2017-01-20 13:51:30.265158 566 Eldridge Village 1
10210 1752 2016-12-28 20:51:04.430736 2017-01-20 13:51:31.433973 92301 Claire Ridge 0
10211 1752 2016-10-30 18:21:52.485275 2017-01-20 13:51:31.487081 808 Abigail Spring 0
10212 1753 2016-11-06 08:20:07.319764 2017-01-20 13:51:33.321768 198 Dolly Points 1
10213 1753 2017-01-07 18:57:37.509272 2017-01-20 13:51:34.511726 81383 Brandi Flats 1
10214 1753 2016-12-13 22:22:56.654742 2017-01-20 13:51:35.65717 9029 Steuber Ridge 2
10215 1753 2016-12-15 15:51:53.67917 2017-01-20 13:51:35.681038 9238 Braun Junction 0
10216 1753 2017-01-02 20:11:21.71888 2017-01-20 13:51:35.721016 8813 Beverly Stream 2
10217 1753 2017-01-02 16:45:08.78463 2017-01-20 13:51:35.786405 260 Haley Isle 0
10218 1753 2016-11-10 20:50:47.810596 2017-01-20 13:51:35.812318 1494 Janice Mission 0
10219 1753 2017-01-07 16:05:33.941247 2017-01-20 13:51:35.942558 26469 Kunze Ranch 1
10220 1753 2016-11-17 00:26:38.006937 2017-01-20 13:51:37.010358 823 Cody Crossroad 0
10221 1754 2016-12-22 17:07:11.805771 2017-01-20 13:51:38.807601 37208 Corkery Centers 2
10222 1754 2016-12-13 21:33:48.958779 2017-01-20 13:51:38.960838 6748 Johanna Lock 2
10223 1754 2016-12-10 02:17:41.040864 2017-01-20 13:51:39.042665 914 Guadalupe Forks 0
10224 1754 2016-11-28 13:59:38.094864 2017-01-20 13:51:39.096418 143 Bergstrom Road 1
10225 1754 2016-11-01 03:42:15.221519 2017-01-20 13:51:40.223751 7730 Sandrine Circle 0
10226 1754 2017-01-14 06:58:54.329988 2017-01-20 13:51:40.331677 6922 Jamison Ports 2
10227 1754 2016-11-17 18:04:18.4078 2017-01-20 13:51:40.409601 828 Vance Via 2
10228 1754 2016-12-06 20:13:58.558883 2017-01-20 13:51:40.561055 2432 Odell Trail 0
10229 1754 2017-01-02 05:13:28.612301 2017-01-20 13:51:40.61496 918 Brandt Greens 0
10230 1755 2017-01-03 04:41:23.984848 2017-01-20 13:51:42.986467 1530 Block Lodge 0
10231 1755 2016-12-10 15:36:25.070929 2017-01-20 13:51:43.07271 4611 Krista Oval 0
10232 1756 2017-01-02 10:40:05.960545 2017-01-20 13:51:44.962016 9989 Marcelina Villages 2
10233 1756 2016-11-28 03:43:09.041883 2017-01-20 13:51:45.043787 549 Kertzmann Landing 1
10234 1757 2017-01-12 04:43:18.9915 2017-01-20 13:51:47.993232 83418 Vincenza Club 1
10235 1757 2016-10-23 17:02:45.085794 2017-01-20 13:51:49.08789 473 Jasper Springs 2
10236 1757 2016-11-12 02:47:34.141359 2017-01-20 13:51:49.143054 4407 Zita Manor 2
10237 1757 2016-11-14 16:46:45.166261 2017-01-20 13:51:49.168251 6177 Vern Place 0
10238 1757 2016-11-29 06:02:47.248551 2017-01-20 13:51:49.250345 928 Nader Ranch 1
10239 1757 2016-11-19 20:26:18.361651 2017-01-20 13:51:50.364059 1185 McLaughlin Village 2
10240 1757 2016-12-01 19:04:13.462234 2017-01-20 13:51:50.465011 3661 Fisher Hollow 2
10241 1757 2017-01-15 18:45:25.502354 2017-01-20 13:51:50.50414 13281 Hilll Harbors 2
10242 1757 2016-11-21 12:24:37.54464 2017-01-20 13:51:50.547382 2006 Clemmie Circles 0
10243 1757 2016-11-22 13:10:32.683377 2017-01-20 13:51:50.685628 8907 Vito Inlet 1
10244 1758 2017-01-11 00:04:01.508932 2017-01-20 13:51:53.510605 42306 Felipe Throughway 2
10245 1758 2017-01-11 01:37:20.576617 2017-01-20 13:51:53.578244 155 Okuneva Station 1
10246 1758 2016-11-27 06:00:58.734606 2017-01-20 13:51:54.737219 35779 Dimitri Via 2
10247 1758 2016-11-08 05:22:18.762009 2017-01-20 13:51:54.763551 723 Alfreda Stream 1
10248 1758 2016-10-31 05:20:40.884051 2017-01-20 13:51:55.88659 58400 Wendell Bridge 0
10249 1758 2017-01-12 01:11:35.995014 2017-01-20 13:51:55.996701 71086 Jovany Squares 1
10250 1758 2016-11-22 23:02:40.076661 2017-01-20 13:51:57.078986 8403 Demarco Place 1
10251 1758 2016-10-25 21:18:48.213938 2017-01-20 13:51:58.216494 607 Kianna Stream 2
10252 1759 2016-12-19 23:47:47.033456 2017-01-20 13:52:00.034953 80537 Moen Vista 1
10253 1759 2017-01-17 11:59:18.158631 2017-01-20 13:52:01.161345 18131 Medhurst Freeway 1
10254 1759 2016-11-11 07:59:01.288655 2017-01-20 13:52:02.290975 397 Citlalli Plains 0
10255 1759 2016-12-18 12:52:24.409272 2017-01-20 13:52:02.411564 29232 Jamaal Valleys 0
10256 1759 2016-12-16 15:26:59.449441 2017-01-20 13:52:02.451163 870 Skiles Rue 1
10257 1759 2016-12-03 19:22:22.569509 2017-01-20 13:52:03.571964 755 Johnston Tunnel 0
10258 1759 2016-12-28 02:39:41.597708 2017-01-20 13:52:03.600045 2135 Leffler Lakes 0
10259 1759 2016-11-05 09:04:56.725022 2017-01-20 13:52:03.72721 64238 Dibbert Trafficway 2
10260 1759 2016-12-20 11:12:03.885114 2017-01-20 13:52:03.887011 89721 Jaquelin Islands 2
10261 1760 2016-11-22 14:47:15.740113 2017-01-20 13:52:05.74209 89175 Prohaska Turnpike 1
10262 1760 2016-11-19 04:18:02.88749 2017-01-20 13:52:06.889949 986 Shany Knolls 2
10263 1761 2017-01-13 18:59:21.666964 2017-01-20 13:52:08.668783 2045 Jones Unions 1
10264 1761 2016-12-28 12:34:02.751691 2017-01-20 13:52:09.75361 1090 Kennith Street 2
10265 1761 2017-01-13 23:07:32.855474 2017-01-20 13:52:09.857097 67079 Clark Terrace 0
10266 1762 2017-01-12 01:43:10.039565 2017-01-20 13:52:12.041681 329 Karine Canyon 2
10267 1762 2016-12-24 19:46:23.148128 2017-01-20 13:52:12.150906 406 Toy Squares 2
10268 1762 2016-11-26 14:38:03.175701 2017-01-20 13:52:12.177509 8535 Stanton Circles 0
10269 1762 2016-11-03 09:27:03.28648 2017-01-20 13:52:12.288146 3979 Brown Haven 1
10270 1762 2016-11-14 20:19:20.30337 2017-01-20 13:52:13.305658 18230 Connelly Trafficway 0
10271 1762 2016-12-31 23:13:28.329293 2017-01-20 13:52:13.331139 5053 Francis Radial 0
10272 1762 2016-10-22 19:06:24.451708 2017-01-20 13:52:13.453361 77533 Leann Camp 2
10273 1763 2017-01-08 05:24:22.183603 2017-01-20 13:52:15.184964 57594 Glover Wells 1
10274 1763 2016-10-31 22:33:38.211796 2017-01-20 13:52:16.214339 4038 Lynch Ford 2
10275 1763 2016-10-30 18:49:49.350917 2017-01-20 13:52:16.352864 4186 Heller Streets 1
10276 1763 2017-01-11 01:48:08.387662 2017-01-20 13:52:17.389829 15971 Lola Vista 2
10277 1763 2016-12-27 09:16:42.474868 2017-01-20 13:52:17.477333 55727 Wunsch Plaza 2
10278 1763 2016-12-09 19:56:39.608239 2017-01-20 13:52:17.610757 928 Jamison Freeway 2
10279 1763 2016-12-16 03:13:41.685311 2017-01-20 13:52:17.687356 231 Nelda Pike 2
10280 1763 2016-10-24 15:43:33.920429 2017-01-20 13:52:17.922369 96530 Rohan Flat 0
10281 1764 2016-11-30 03:19:37.748955 2017-01-20 13:52:19.751144 70539 Shanelle Street 1
10282 1764 2016-11-17 22:02:09.016459 2017-01-20 13:52:21.018425 654 Huel Orchard 2
10283 1764 2017-01-01 12:22:05.116131 2017-01-20 13:52:21.118996 11074 Hosea Wall 1
10284 1764 2016-11-20 12:29:27.290162 2017-01-20 13:52:22.292081 6923 Sadie Track 2
10285 1764 2016-11-24 18:44:24.326015 2017-01-20 13:52:22.328104 2577 Braulio Keys 1
10286 1764 2016-12-12 16:45:48.495153 2017-01-20 13:52:23.497637 7132 Paucek Drive 2
10287 1764 2017-01-05 09:15:46.632458 2017-01-20 13:52:23.634665 327 Spinka Mountain 1
10288 1764 2016-11-05 10:07:54.758079 2017-01-20 13:52:24.760287 80428 Dickinson Summit 1
10289 1765 2016-12-15 18:53:16.642149 2017-01-20 13:52:27.643768 611 Price Way 2
10290 1765 2016-11-16 23:28:43.783495 2017-01-20 13:52:27.785296 487 Streich Station 2
10291 1765 2016-12-12 17:53:44.932133 2017-01-20 13:52:27.933782 1906 Runolfsdottir Streets 2
10292 1765 2016-12-08 23:33:29.054812 2017-01-20 13:52:28.056247 4648 Adah Throughway 1
10293 1766 2016-12-25 21:04:45.274455 2017-01-20 13:52:31.276154 63182 Ernesto Courts 1
10294 1766 2017-01-09 22:41:17.397276 2017-01-20 13:52:32.399232 58958 Rutherford Port 1
10295 1767 2016-12-26 12:13:31.382723 2017-01-20 13:52:35.384893 118 Enola Fork 1
10296 1768 2017-01-10 13:39:13.458949 2017-01-20 13:52:38.460513 2358 Cremin Mall 2
10297 1768 2016-12-18 14:59:14.571154 2017-01-20 13:52:38.572884 340 Gaylord Alley 2
10298 1768 2016-11-21 10:13:12.726676 2017-01-20 13:52:38.728906 47461 Kuphal Viaduct 1
10299 1768 2016-10-25 22:16:34.897614 2017-01-20 13:52:39.900511 4013 Romaguera Grove 1
10300 1768 2016-12-24 08:15:40.137174 2017-01-20 13:52:41.138908 8783 Kory Meadows 2
10301 1768 2017-01-10 11:22:12.160894 2017-01-20 13:52:41.162701 836 Macey Way 0
10302 1768 2017-01-04 12:34:03.294302 2017-01-20 13:52:41.296338 2333 Zula Skyway 1
10303 1769 2017-01-04 15:10:04.200748 2017-01-20 13:52:44.202375 4376 Lavonne Parkways 2
10304 1769 2017-01-14 18:41:56.32782 2017-01-20 13:52:44.329657 8894 Leanna Islands 0
10305 1769 2017-01-01 04:45:42.427184 2017-01-20 13:52:44.428689 80913 Annabel Rapid 2
10306 1769 2016-11-28 21:08:04.586336 2017-01-20 13:52:44.589311 5673 Greyson Mountain 2
10307 1770 2016-11-23 01:44:49.456257 2017-01-20 13:52:46.458188 264 Herbert Track 0
10308 1770 2016-10-27 04:31:16.519942 2017-01-20 13:52:46.521285 2144 Turcotte Mission 0
10309 1770 2016-12-27 19:50:08.722956 2017-01-20 13:52:46.724528 72191 Carroll Flat 1
10310 1770 2016-11-28 01:37:02.903203 2017-01-20 13:52:47.905034 685 Pouros Forks 1
10311 1770 2016-12-02 04:59:38.008814 2017-01-20 13:52:49.011073 910 McDermott Keys 1
10312 1770 2016-11-07 06:14:50.190228 2017-01-20 13:52:50.19435 17279 Collier Station 2
10313 1770 2016-12-03 14:27:13.328141 2017-01-20 13:52:50.32959 4476 Deontae Keys 0
10314 1770 2016-11-25 20:49:51.474809 2017-01-20 13:52:50.476448 4792 Dooley Spurs 2
10315 1770 2017-01-08 06:14:17.52727 2017-01-20 13:52:50.529043 309 Hilll Ramp 0
10316 1770 2016-12-08 08:41:30.613117 2017-01-20 13:52:50.61522 50396 Daugherty Tunnel 0
\.
--
-- Data for Name: orders_products; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.orders_products (id, order_id, product_id) FROM stdin;
10608 10041 9
10609 10041 3
10610 10041 3
10611 10041 6
10612 10042 6
10613 10042 3
10614 10042 8
10615 10043 2
10616 10043 5
10617 10043 9
10618 10043 2
10619 10043 7
10620 10043 7
10621 10043 7
10622 10043 4
10623 10043 6
10624 10044 8
10625 10044 3
10626 10044 9
10627 10044 1
10628 10044 2
10629 10044 8
10630 10044 1
10631 10044 4
10632 10044 4
10633 10045 7
10634 10045 5
10635 10045 8
10636 10045 2
10637 10045 3
10638 10045 2
10639 10045 3
10640 10046 3
10641 10046 4
10642 10046 3
10643 10046 3
10644 10046 2
10645 10046 6
10646 10046 5
10647 10046 8
10648 10046 9
10649 10047 2
10650 10047 8
10651 10047 9
10652 10047 7
10653 10048 6
10654 10048 8
10655 10048 6
10656 10048 2
10657 10048 1
10658 10048 5
10659 10049 5
10660 10049 3
10661 10049 2
10662 10049 9
10663 10049 1
10664 10049 4
10665 10049 9
10666 10049 9
10667 10049 8
10668 10049 2
10669 10050 8
10670 10051 9
10671 10051 6
10672 10051 7
10673 10051 9
10674 10051 2
10675 10051 6
10676 10051 2
10677 10051 9
10678 10052 4
10679 10052 4
10680 10052 8
10681 10052 2
10682 10053 7
10683 10053 2
10684 10053 6
10685 10053 3
10686 10053 9
10687 10053 8
10688 10053 6
10689 10053 5
10690 10053 7
10691 10054 1
10692 10054 9
10693 10054 7
10694 10054 4
10695 10054 7
10696 10054 7
10697 10054 4
10698 10054 3
10699 10054 1
10700 10055 3
10701 10055 7
10702 10056 8
10703 10056 6
10704 10056 8
10705 10056 9
10706 10056 6
10707 10056 9
10708 10056 9
10709 10056 3
10710 10056 2
10711 10056 3
10712 10057 2
10713 10057 5
10714 10058 4
10715 10058 2
10716 10058 6
10717 10059 9
10718 10059 1
10719 10059 2
10720 10059 3
10721 10059 6
10722 10059 9
10723 10060 6
10724 10060 7
10725 10060 3
10726 10060 7
10727 10060 4
10728 10060 9
10729 10060 4
10730 10060 2
10731 10061 8
10732 10061 5
10733 10062 5
10734 10062 2
10735 10062 1
10736 10062 6
10737 10062 5
10738 10062 6
10739 10062 8
10740 10063 4
10741 10063 4
10742 10063 1
10743 10063 2
10744 10063 1
10745 10063 5
10746 10063 7
10747 10063 3
10748 10064 4
10749 10064 3
10750 10064 9
10751 10064 1
10752 10065 1
10753 10065 5
10754 10065 1
10755 10065 7
10756 10066 8
10757 10066 7
10758 10066 3
10759 10066 4
10760 10066 4
10761 10066 3
10762 10067 5
10763 10067 4
10764 10067 1
10765 10067 7
10766 10067 4
10767 10067 2
10768 10067 9
10769 10067 7
10770 10067 1
10771 10068 4
10772 10068 2
10773 10068 4
10774 10068 7
10775 10068 3
10776 10068 2
10777 10068 9
10778 10068 1
10779 10068 2
10780 10068 6
10781 10069 5
10782 10069 8
10783 10069 7
10784 10070 9
10785 10070 9
10786 10070 1
10787 10070 4
10788 10071 7
10789 10071 4
10790 10071 1
10791 10071 7
10792 10071 9
10793 10071 8
10794 10071 1
10795 10071 5
10796 10072 2
10797 10072 6
10798 10072 7
10799 10072 7
10800 10072 5
10801 10072 3
10802 10072 3
10803 10072 2
10804 10072 1
10805 10073 8
10806 10073 2
10807 10073 6
10808 10073 5
10809 10073 7
10810 10073 7
10811 10073 8
10812 10073 3
10813 10073 4
10814 10074 4
10815 10075 3
10816 10075 1
10817 10075 5
10818 10075 1
10819 10075 1
10820 10075 5
10821 10075 6
10822 10075 5
10823 10075 4
10824 10075 2
10825 10076 6
10826 10076 5
10827 10076 2
10828 10076 7
10829 10076 7
10830 10076 9
10831 10076 3
10832 10076 6
10833 10076 9
10834 10077 4
10835 10077 3
10836 10077 5
10837 10077 2
10838 10077 1
10839 10077 7
10840 10077 8
10841 10077 7
10842 10077 1
10843 10077 9
10844 10078 7
10845 10079 3
10846 10079 4
10847 10079 9
10848 10079 7
10849 10080 8
10850 10080 2
10851 10080 7
10852 10081 5
10853 10081 7
10854 10082 7
10855 10082 3
10856 10082 8
10857 10082 5
10858 10083 2
10859 10083 9
10860 10083 7
10861 10083 4
10862 10083 9
10863 10083 2
10864 10084 9
10865 10084 1
10866 10084 4
10867 10084 4
10868 10085 6
10869 10085 2
10870 10085 2
10871 10085 7
10872 10086 3
10873 10086 9
10874 10086 3
10875 10086 7
10876 10086 4
10877 10086 6
10878 10086 3
10879 10086 1
10880 10087 8
10881 10087 3
10882 10087 2
10883 10087 7
10884 10087 3
10885 10087 3
10886 10087 5
10887 10087 7
10888 10087 1
10889 10087 7
10890 10088 8
10891 10088 1
10892 10088 2
10893 10088 2
10894 10088 7
10895 10088 2
10896 10088 3
10897 10088 5
10898 10089 5
10899 10089 6
10900 10089 8
10901 10089 7
10902 10089 7
10903 10089 7
10904 10089 5
10905 10089 8
10906 10089 8
10907 10089 6
10908 10090 2
10909 10090 6
10910 10090 7
10911 10090 1
10912 10091 9
10913 10091 7
10914 10091 9
10915 10091 6
10916 10091 8
10917 10091 8
10918 10092 2
10919 10092 6
10920 10092 4
10921 10092 7
10922 10092 6
10923 10092 8
10924 10092 8
10925 10093 1
10926 10093 9
10927 10093 2
10928 10094 7
10929 10094 5
10930 10095 4
10931 10095 5
10932 10096 3
10933 10096 8
10934 10096 7
10935 10096 8
10936 10096 6
10937 10096 5
10938 10096 4
10939 10096 1
10940 10096 6
10941 10096 6
10942 10097 5
10943 10097 7
10944 10097 8
10945 10097 7
10946 10097 4
10947 10097 1
10948 10097 2
10949 10098 4
10950 10098 6
10951 10099 2
10952 10099 7
10953 10099 5
10954 10099 1
10955 10099 9
10956 10100 7
10957 10100 9
10958 10100 7
10959 10100 8
10960 10100 4
10961 10100 4
10962 10100 8
10963 10100 6
10964 10101 5
10965 10101 2
10966 10101 8
10967 10102 8
10968 10102 7
10969 10102 6
10970 10102 1
10971 10102 6
10972 10102 3
10973 10102 8
10974 10102 8
10975 10102 7
10976 10103 7
10977 10103 9
10978 10103 4
10979 10103 3
10980 10103 6
10981 10104 1
10982 10104 2
10983 10104 1
10984 10104 3
10985 10104 3
10986 10104 2
10987 10105 3
10988 10105 5
10989 10105 7
10990 10105 1
10991 10105 8
10992 10105 5
10993 10105 3
10994 10105 3
10995 10105 7
10996 10105 2
10997 10106 4
10998 10106 7
10999 10106 3
11000 10106 5
11001 10106 7
11002 10106 4
11003 10106 4
11004 10106 9
11005 10107 2
11006 10108 9
11007 10108 8
11008 10108 5
11009 10108 3
11010 10108 4
11011 10108 4
11012 10109 7
11013 10109 1
11014 10109 8
11015 10109 8
11016 10109 3
11017 10109 7
11018 10109 2
11019 10109 6
11020 10110 1
11021 10110 7
11022 10110 8
11023 10110 3
11024 10110 9
11025 10110 5
11026 10110 8
11027 10110 4
11028 10111 6
11029 10111 7
11030 10111 1
11031 10111 3
11032 10111 8
11033 10111 5
11034 10112 8
11035 10113 3
11036 10113 6
11037 10113 3
11038 10113 5
11039 10113 4
11040 10114 2
11041 10114 1
11042 10114 8
11043 10114 6
11044 10114 1
11045 10114 1
11046 10115 3
11047 10115 6
11048 10115 4
11049 10115 6
11050 10115 7
11051 10115 5
11052 10115 8
11053 10115 9
11054 10115 1
11055 10115 7
11056 10116 4
11057 10116 6
11058 10116 6
11059 10116 9
11060 10116 7
11061 10116 9
11062 10116 9
11063 10117 7
11064 10117 4
11065 10117 5
11066 10118 2
11067 10118 4
11068 10118 6
11069 10118 6
11070 10118 3
11071 10119 6
11072 10119 3
11073 10119 1
11074 10119 3
11075 10119 5
11076 10119 7
11077 10119 5
11078 10119 3
11079 10119 4
11080 10120 7
11081 10120 1
11082 10120 6
11083 10120 9
11084 10120 1
11085 10120 2
11086 10120 9
11087 10120 9
11088 10120 4
11089 10120 3
11090 10121 8
11091 10122 6
11092 10122 1
11093 10122 8
11094 10122 5
11095 10122 8
11096 10122 2
11097 10122 7
11098 10122 8
11099 10123 3
11100 10123 9
11101 10123 9
11102 10123 1
11103 10124 3
11104 10124 6
11105 10124 5
11106 10124 7
11107 10124 9
11108 10124 3
11109 10124 5
11110 10125 6
11111 10125 4
11112 10125 2
11113 10125 2
11114 10125 1
11115 10125 2
11116 10125 4
11117 10125 1
11118 10125 2
11119 10126 8
11120 10126 6
11121 10126 6
11122 10126 5
11123 10126 2
11124 10126 9
11125 10126 1
11126 10126 2
11127 10127 2
11128 10127 4
11129 10127 4
11130 10127 1
11131 10128 8
11132 10128 2
11133 10128 2
11134 10128 6
11135 10129 9
11136 10129 6
11137 10129 8
11138 10130 5
11139 10130 4
11140 10130 4
11141 10130 9
11142 10130 9
11143 10131 8
11144 10131 4
11145 10131 7
11146 10131 7
11147 10131 3
11148 10132 8
11149 10132 2
11150 10132 6
11151 10133 7
11152 10133 6
11153 10133 6
11154 10133 4
11155 10133 2
11156 10133 4
11157 10134 4
11158 10134 7
11159 10134 1
11160 10134 1
11161 10135 8
11162 10135 1
11163 10135 4
11164 10135 2
11165 10135 8
11166 10135 5
11167 10135 6
11168 10135 4
11169 10135 4
11170 10136 3
11171 10137 4
11172 10137 9
11173 10137 1
11174 10137 9
11175 10137 8
11176 10137 6
11177 10137 5
11178 10137 9
11179 10138 4
11180 10138 1
11181 10138 2
11182 10138 7
11183 10138 1
11184 10138 7
11185 10139 6
11186 10139 6
11187 10139 8
11188 10139 3
11189 10139 9
11190 10139 1
11191 10140 4
11192 10140 1
11193 10140 2
11194 10140 4
11195 10140 8
11196 10140 8
11197 10140 2
11198 10140 4
11199 10141 9
11200 10141 4
11201 10141 7
11202 10141 2
11203 10141 5
11204 10141 8
11205 10141 6
11206 10141 7
11207 10141 1
11208 10142 8
11209 10142 1
11210 10142 2
11211 10143 6
11212 10143 8
11213 10143 4
11214 10144 9
11215 10145 3
11216 10145 8
11217 10145 3
11218 10145 9
11219 10146 7
11220 10147 9
11221 10147 3
11222 10148 1
11223 10148 9
11224 10148 1
11225 10149 8
11226 10149 5
11227 10150 6
11228 10150 3
11229 10150 6
11230 10150 7
11231 10150 5
11232 10150 4
11233 10150 9
11234 10150 1
11235 10150 9
11236 10150 5
11237 10151 8
11238 10151 4
11239 10151 8
11240 10151 3
11241 10151 1
11242 10151 5
11243 10151 3
11244 10152 6
11245 10152 9
11246 10152 9
11247 10153 1
11248 10153 6
11249 10153 5
11250 10153 4
11251 10153 6
11252 10153 7
11253 10153 4
11254 10153 3
11255 10154 1
11256 10154 4
11257 10154 1
11258 10154 8
11259 10154 7
11260 10154 6
11261 10154 1
11262 10154 1
11263 10154 2
11264 10154 6
11265 10155 7
11266 10155 4
11267 10155 5
11268 10155 5
11269 10155 1
11270 10155 5
11271 10155 9
11272 10156 4
11273 10156 3
11274 10156 7
11275 10156 1
11276 10157 4
11277 10157 6
11278 10157 9
11279 10157 7
11280 10157 4
11281 10157 9
11282 10157 4
11283 10157 9
11284 10158 2
11285 10158 1
11286 10158 6
11287 10158 4
11288 10158 5
11289 10158 6
11290 10158 3
11291 10159 3
11292 10159 6
11293 10159 2
11294 10159 1
11295 10159 8
11296 10159 8
11297 10159 2
11298 10159 2
11299 10160 4
11300 10160 5
11301 10160 5
11302 10160 1
11303 10160 9
11304 10160 7
11305 10160 2
11306 10160 2
11307 10161 8
11308 10161 6
11309 10161 2
11310 10161 8
11311 10161 8
11312 10162 7
11313 10162 8
11314 10162 9
11315 10162 1
11316 10162 4
11317 10162 8
11318 10162 9
11319 10162 8
11320 10163 6
11321 10163 3
11322 10163 3
11323 10163 6
11324 10163 4
11325 10163 7
11326 10163 7
11327 10163 9
11328 10163 2
11329 10164 1
11330 10164 9
11331 10164 8
11332 10164 7
11333 10164 8
11334 10164 3
11335 10164 7
11336 10164 7
11337 10165 3
11338 10165 8
11339 10165 8
11340 10165 2
11341 10166 7
11342 10166 5
11343 10166 7
11344 10166 7
11345 10166 1
11346 10166 3
11347 10166 2
11348 10166 5
11349 10167 9
11350 10167 6
11351 10167 7
11352 10167 2
11353 10167 9
11354 10167 7
11355 10167 1
11356 10167 1
11357 10167 4
11358 10167 7
11359 10168 7
11360 10168 5
11361 10168 2
11362 10169 9
11363 10169 6
11364 10169 6
11365 10169 4
11366 10169 6
11367 10169 1
11368 10170 7
11369 10170 5
11370 10170 7
11371 10171 9
11372 10171 8
11373 10171 5
11374 10171 2
11375 10171 6
11376 10171 3
11377 10172 4
11378 10173 4
11379 10173 2
11380 10173 7
11381 10173 8
11382 10174 8
11383 10174 5
11384 10175 1
11385 10175 4
11386 10175 4
11387 10175 8
11388 10176 9
11389 10176 4
11390 10176 1
11391 10176 7
11392 10176 3
11393 10176 2
11394 10177 2
11395 10177 1
11396 10177 4
11397 10177 5
11398 10177 4
11399 10178 6
11400 10178 5
11401 10178 9
11402 10178 1
11403 10178 3
11404 10179 5
11405 10179 9
11406 10180 2
11407 10180 9
11408 10180 1
11409 10180 1
11410 10180 8
11411 10180 4
11412 10181 9
11413 10181 4
11414 10182 1
11415 10182 2
11416 10182 5
11417 10182 7
11418 10182 8
11419 10182 8
11420 10183 9
11421 10183 7
11422 10183 4
11423 10184 7
11424 10184 6
11425 10184 8
11426 10184 7
11427 10185 8
11428 10185 9
11429 10185 4
11430 10185 5
11431 10185 4
11432 10186 2
11433 10186 7
11434 10186 4
11435 10186 6
11436 10186 2
11437 10186 3
11438 10186 9
11439 10186 9
11440 10186 3
11441 10186 5
11442 10187 4
11443 10187 5
11444 10187 8
11445 10187 6
11446 10188 1
11447 10188 2
11448 10188 5
11449 10188 2
11450 10188 6
11451 10188 5
11452 10189 3
11453 10189 4
11454 10189 4
11455 10189 8
11456 10189 8
11457 10190 5
11458 10190 9
11459 10190 1
11460 10190 9
11461 10190 1
11462 10190 5
11463 10190 1
11464 10190 1
11465 10190 5
11466 10190 7
11467 10191 3
11468 10191 4
11469 10191 8
11470 10192 6
11471 10192 2
11472 10192 3
11473 10192 7
11474 10192 6
11475 10193 2
11476 10193 1
11477 10193 8
11478 10193 6
11479 10193 8
11480 10194 3
11481 10194 1
11482 10194 8
11483 10194 2
11484 10194 2
11485 10194 7
11486 10194 2
11487 10194 1
11488 10195 6
11489 10195 6
11490 10195 5
11491 10196 5
11492 10196 3
11493 10196 4
11494 10196 3
11495 10196 2
11496 10196 9
11497 10197 2
11498 10197 7
11499 10197 6
11500 10197 1
11501 10198 5
11502 10198 3
11503 10198 6
11504 10198 3
11505 10198 8
11506 10198 2
11507 10198 7
11508 10199 3
11509 10199 4
11510 10199 8
11511 10199 5
11512 10199 6
11513 10199 8
11514 10200 1
11515 10200 7
11516 10200 2
11517 10200 1
11518 10200 7
11519 10200 6
11520 10201 8
11521 10201 2
11522 10201 2
11523 10201 5
11524 10201 6
11525 10201 8
11526 10201 3
11527 10201 1
11528 10201 1
11529 10202 4
11530 10202 4
11531 10202 4
11532 10202 6
11533 10202 9
11534 10202 7
11535 10202 7
11536 10202 8
11537 10202 5
11538 10203 8
11539 10203 6
11540 10203 6
11541 10204 3
11542 10204 5
11543 10204 2
11544 10204 2
11545 10204 8
11546 10205 7
11547 10205 6
11548 10205 8
11549 10205 9
11550 10206 1
11551 10206 6
11552 10206 6
11553 10206 7
11554 10206 9
11555 10206 3
11556 10207 6
11557 10207 4
11558 10207 4
11559 10207 9
11560 10207 6
11561 10207 5
11562 10207 3
11563 10208 9
11564 10208 8
11565 10208 5
11566 10208 4
11567 10208 3
11568 10209 8
11569 10209 9
11570 10209 5
11571 10209 9
11572 10209 6
11573 10209 7
11574 10210 6
11575 10210 6
11576 10210 1
11577 10211 9
11578 10211 6
11579 10211 3
11580 10211 8
11581 10212 5
11582 10212 9
11583 10212 8
11584 10212 3
11585 10212 3
11586 10212 7
11587 10212 3
11588 10212 9
11589 10212 6
11590 10213 5
11591 10213 2
11592 10213 6
11593 10213 4
11594 10213 2
11595 10213 6
11596 10214 8
11597 10215 6
11598 10215 9
11599 10216 8
11600 10216 9
11601 10216 7
11602 10216 8
11603 10217 2
11604 10218 2
11605 10218 4
11606 10218 3
11607 10218 6
11608 10218 9
11609 10218 6
11610 10218 9
11611 10218 4
11612 10218 1
11613 10219 3
11614 10219 5
11615 10219 3
11616 10220 9
11617 10220 1
11618 10220 3
11619 10221 8
11620 10221 6
11621 10221 4
11622 10221 4
11623 10221 7
11624 10221 2
11625 10221 1
11626 10221 9
11627 10221 6
11628 10221 4
11629 10222 5
11630 10222 2
11631 10222 1
11632 10222 5
11633 10222 5
11634 10223 2
11635 10223 4
11636 10223 3
11637 10224 6
11638 10224 6
11639 10225 2
11640 10225 3
11641 10225 2
11642 10225 4
11643 10225 1
11644 10225 9
11645 10225 3
11646 10226 5
11647 10226 2
11648 10226 4
11649 10226 7
11650 10226 7
11651 10227 6
11652 10227 5
11653 10227 5
11654 10227 1
11655 10227 3
11656 10227 1
11657 10227 6
11658 10227 3
11659 10227 5
11660 10227 2
11661 10228 3
11662 10228 9
11663 10228 8
11664 10229 5
11665 10229 9
11666 10229 2
11667 10229 1
11668 10229 4
11669 10229 6
11670 10229 4
11671 10230 5
11672 10230 9
11673 10230 3
11674 10230 1
11675 10230 2
11676 10231 4
11677 10231 6
11678 10231 7
11679 10231 1
11680 10232 8
11681 10232 4
11682 10232 6
11683 10232 6
11684 10232 5
11685 10233 2
11686 10233 9
11687 10233 3
11688 10233 4
11689 10233 9
11690 10233 9
11691 10233 9
11692 10233 1
11693 10233 5
11694 10233 4
11695 10234 6
11696 10234 3
11697 10235 1
11698 10235 4
11699 10235 9
11700 10236 9
11701 10237 6
11702 10237 4
11703 10237 1
11704 10237 5
11705 10237 9
11706 10238 5
11707 10238 9
11708 10238 2
11709 10239 9
11710 10239 3
11711 10239 9
11712 10239 7
11713 10239 1
11714 10239 4
11715 10240 6
11716 10240 8
11717 10241 8
11718 10241 4
11719 10242 2
11720 10242 4
11721 10242 3
11722 10242 9
11723 10242 3
11724 10242 1
11725 10242 1
11726 10242 1
11727 10242 9
11728 10243 8
11729 10243 4
11730 10243 8
11731 10243 9
11732 10243 4
11733 10243 9
11734 10244 3
11735 10244 8
11736 10244 2
11737 10244 5
11738 10245 1
11739 10245 4
11740 10245 7
11741 10245 3
11742 10245 1
11743 10245 2
11744 10246 9
11745 10247 7
11746 10247 5
11747 10247 5
11748 10247 7
11749 10247 1
11750 10247 4
11751 10247 9
11752 10248 3
11753 10248 6
11754 10248 3
11755 10248 2
11756 10248 2
11757 10248 6
11758 10248 1
11759 10249 4
11760 10249 8
11761 10249 4
11762 10250 1
11763 10250 7
11764 10250 2
11765 10250 7
11766 10250 2
11767 10250 4
11768 10250 9
11769 10251 6
11770 10251 1
11771 10251 7
11772 10252 6
11773 10252 9
11774 10252 8
11775 10252 1
11776 10252 6
11777 10252 9
11778 10252 4
11779 10252 6
11780 10253 9
11781 10253 3
11782 10253 7
11783 10253 5
11784 10253 2
11785 10253 3
11786 10253 4
11787 10254 7
11788 10254 4
11789 10254 9
11790 10254 6
11791 10254 5
11792 10254 7
11793 10254 7
11794 10254 1
11795 10255 6
11796 10255 2
11797 10256 4
11798 10256 5
11799 10256 4
11800 10256 9
11801 10256 4
11802 10256 5
11803 10256 2
11804 10257 6
11805 10258 3
11806 10258 5
11807 10258 2
11808 10258 9
11809 10258 6
11810 10258 5
11811 10258 8
11812 10258 7
11813 10259 3
11814 10259 3
11815 10259 8
11816 10259 7
11817 10259 1
11818 10259 7
11819 10259 6
11820 10259 7
11821 10259 5
11822 10259 2
11823 10260 4
11824 10260 8
11825 10260 9
11826 10260 9
11827 10260 9
11828 10261 4
11829 10261 8
11830 10262 2
11831 10263 1
11832 10263 2
11833 10263 6
11834 10264 3
11835 10264 5
11836 10264 2
11837 10264 4
11838 10264 8
11839 10264 2
11840 10265 6
11841 10265 9
11842 10266 8
11843 10266 3
11844 10266 9
11845 10266 9
11846 10266 6
11847 10266 2
11848 10266 2
11849 10267 6
11850 10268 2
11851 10268 8
11852 10268 3
11853 10268 6
11854 10268 8
11855 10268 3
11856 10268 8
11857 10269 9
11858 10270 8
11859 10271 9
11860 10271 4
11861 10271 9
11862 10271 4
11863 10271 9
11864 10271 5
11865 10271 5
11866 10271 2
11867 10272 9
11868 10273 1
11869 10274 8
11870 10274 8
11871 10274 3
11872 10274 5
11873 10274 7
11874 10274 9
11875 10274 8
11876 10274 7
11877 10274 1
11878 10275 9
11879 10275 2
11880 10276 1
11881 10276 7
11882 10276 8
11883 10276 8
11884 10277 5
11885 10277 9
11886 10277 4
11887 10277 1
11888 10277 1
11889 10277 8
11890 10277 8
11891 10277 3
11892 10277 2
11893 10278 7
11894 10278 3
11895 10278 6
11896 10279 8
11897 10279 8
11898 10279 2
11899 10279 6
11900 10279 3
11901 10279 1
11902 10279 2
11903 10279 1
11904 10279 9
11905 10279 2
11906 10280 1
11907 10280 7
11908 10281 8
11909 10281 9
11910 10281 7
11911 10281 1
11912 10281 9
11913 10281 8
11914 10281 1
11915 10282 9
11916 10282 7
11917 10282 1
11918 10282 4
11919 10283 1
11920 10283 5
11921 10283 6
11922 10283 7
11923 10283 8
11924 10283 8
11925 10283 2
11926 10284 8
11927 10285 9
11928 10285 4
11929 10285 5
11930 10285 3
11931 10285 2
11932 10286 2
11933 10286 3
11934 10286 6
11935 10286 3
11936 10286 7
11937 10286 8
11938 10287 5
11939 10287 5
11940 10287 8
11941 10287 1
11942 10287 8
11943 10288 8
11944 10288 7
11945 10288 9
11946 10288 9
11947 10288 1
11948 10288 5
11949 10288 1
11950 10288 2
11951 10288 4
11952 10288 3
11953 10289 9
11954 10289 6
11955 10289 2
11956 10289 5
11957 10289 7
11958 10289 2
11959 10289 4
11960 10289 7
11961 10289 6
11962 10290 9
11963 10290 1
11964 10290 5
11965 10290 1
11966 10290 4
11967 10290 4
11968 10290 6
11969 10290 3
11970 10290 7
11971 10290 6
11972 10291 7
11973 10291 3
11974 10291 8
11975 10291 2
11976 10291 6
11977 10291 9
11978 10291 6
11979 10292 2
11980 10292 4
11981 10292 8
11982 10292 2
11983 10293 6
11984 10293 1
11985 10293 4
11986 10293 6
11987 10294 2
11988 10294 4
11989 10294 4
11990 10294 4
11991 10294 4
11992 10294 3
11993 10294 1
11994 10295 1
11995 10295 4
11996 10296 6
11997 10296 2
11998 10296 4
11999 10296 9
12000 10296 6
12001 10296 9
12002 10296 8
12003 10297 8
12004 10297 7
12005 10297 6
12006 10297 4
12007 10297 1
12008 10297 5
12009 10297 1
12010 10297 5
12011 10297 8
12012 10297 3
12013 10298 3
12014 10298 3
12015 10298 5
12016 10298 7
12017 10298 9
12018 10298 1
12019 10299 2
12020 10299 4
12021 10299 8
12022 10299 7
12023 10299 5
12024 10299 6
12025 10299 2
12026 10300 8
12027 10301 4
12028 10301 7
12029 10301 2
12030 10301 6
12031 10301 6
12032 10301 5
12033 10301 3
12034 10301 9
12035 10302 1
12036 10302 8
12037 10303 3
12038 10303 1
12039 10303 7
12040 10303 7
12041 10303 5
12042 10303 8
12043 10303 6
12044 10303 1
12045 10304 5
12046 10304 2
12047 10304 1
12048 10304 1
12049 10304 5
12050 10304 1
12051 10305 3
12052 10305 5
12053 10305 9
12054 10305 6
12055 10305 8
12056 10305 5
12057 10305 1
12058 10305 6
12059 10305 8
12060 10305 9
12061 10306 4
12062 10306 4
12063 10306 3
12064 10306 4
12065 10306 5
12066 10306 2
12067 10306 1
12068 10306 4
12069 10306 7
12070 10306 4
12071 10307 8
12072 10307 6
12073 10307 4
12074 10307 1
12075 10308 7
12076 10308 5
12077 10308 5
12078 10308 5
12079 10308 4
12080 10308 6
12081 10308 7
12082 10308 5
12083 10308 4
12084 10309 9
12085 10309 1
12086 10309 5
12087 10309 8
12088 10309 2
12089 10309 3
12090 10309 4
12091 10309 8
12092 10309 2
12093 10310 8
12094 10310 7
12095 10310 3
12096 10310 9
12097 10310 8
12098 10310 6
12099 10310 9
12100 10311 6
12101 10311 3
12102 10311 4
12103 10311 6
12104 10311 5
12105 10311 2
12106 10311 2
12107 10311 2
12108 10311 8
12109 10312 3
12110 10312 7
12111 10312 5
12112 10312 5
12113 10312 7
12114 10313 8
12115 10313 7
12116 10313 5
12117 10313 7
12118 10313 4
12119 10313 4
12120 10313 1
12121 10313 9
12122 10313 9
12123 10313 3
12124 10314 3
12125 10314 3
12126 10314 2
12127 10315 2
12128 10315 2
12129 10315 3
12130 10315 4
12131 10315 8
12132 10316 5
12133 10316 4
12134 10316 8
12135 10316 7
12136 10316 3
12137 10316 2
12138 10316 7
\.
--
-- Data for Name: product_images; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.product_images (id, product_id, created_at, updated_at, image_file_name, image_content_type, image_file_size, image_updated_at) FROM stdin;
3 1 2017-01-18 14:03:41.606405 2017-01-18 14:03:41.606405 data image/png 888795 2017-01-18 14:03:41.284788
\.
--
-- Data for Name: products; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.products (id, title, description, instructions, ingredients, created_at, updated_at, allergens, product_type, image_file_name, image_content_type, image_file_size, image_updated_at, price) FROM stdin;
5 Char Siu Glazed Tofu Salad A large piece of rich and creamy tofu from the fine, tofu-making folks at Hodo Soy is marinated and oven-roasted with Chinese-style char siu sauce. It’s served with a slaw-type salad that’s a mix of chopped red and green cabbage, slivered carrots, sliced red onion, cilantro leaves, crispy fried wontons, chewy cashews, and diced sweet mango. It’s all tossed with a house-made tamari-ginger-sesame vinaigrette. Prefer your fork stay gluten-free? No prob— skip the wontons and you’re good to go! <div><strong>Notes</strong><br>place tofu in oven proof container toss salad with tamari vinaigrette and wontons<br><br><strong>In The Oven<br></strong>Preheat to 350 degrees. Heat 6-8 minutes<br><br><strong>In The Microwave<br></strong>Heat 2-3 minutes<br><strong><br>To Serve<br></strong>slice tofu. serve on salad. Enjoy!</div> {Mangos," Cashews"," Carrots"," Cabbage"," Wonton","Red cabbage","Red Onion"," Tamari","Canola oil"," Cilantro","Brown Sugar","Sesame oil","Ginger root","Rice Cooking Wine"," Ketchup"," Beets","Lemon juice","Sambal sauce"," Garlic"," Honey","Hoisin Sauce","Five Spice Powder","Kosher Salt"} 2017-01-19 11:18:09.514 2017-01-19 16:05:15.850939 {Nuts," Soybean"} 0 data image/png 905630 2017-01-19 16:05:15.577774 9.5
6 Santa Fe-Style Green Chile Stew Pork is slowly braised in green chilies and a special mix of Southwestern spices until tender and succulent. It's served with a side of steamed rice to soak up the sauce and we include some cilantro leaves for a hit of freshness with each bite. <div><strong>In The Microwave<br></strong>Heat stew and rice (separately) for 2 min, adding 30-sec bursts as needed until hot.</div><div><br><strong>On The Stove Top<br></strong>Simmer stew in a saucepan over medium heat, stirring frequently, until hot, 5-7 min. Microwave rice.</div><div><br><strong>To Serve<br></strong>Top rice with stew or serve alongside.</div> {"Diced Green Chiles"," Pork"," White Rice"," Onions"," Roasted Red Peppers"," Cilantro"," Canola oil"," Chicken Broth Concentrate"," Kosher Salt"," Garlic"," Jalapeño peppers"," Cumin"," Baking Soda"," Garlic powder"," Onion powder"," Pork Stock"," Coriander"," Black pepper"," Oregano"} 2017-01-19 11:22:04.273 2017-01-19 16:04:13.568 {} 0 data image/png 878820 2017-01-19 16:04:27.946152 8.5
4 Lasagna Bolognese with pesto House-made meaty bolognese sauce gets layered with Parmesan, mozzarella, wide lasagna pasta, and basil. Chef's note: heat this dish in the oven so you get some crispy, crunchy edges.\n\nOn the side: mixed green salad with chickpeas and cherry tomatoes with balsamic dressing you add to taste. <div><strong>Notes</strong><br>Put aside salad and dressing<br><br><strong>In The Oven<br></strong>Preheat to 350. Heat until warmed through, 8-10 min.<br><br><strong>In The Microwave<br></strong>Heat 2- 2 1/2 min (timing varies depending on your microwave).</div><div><br><strong>To Serve<br></strong>Pour dressing over salad to taste!</div> {"Grass-fed ground beef"," Pasta","Veal Stock","Mixed Greens","Mozzarella Cheese","Red tomatoes"," Celery","Parmesan Cheese"," Onions","Lemon juice","Unsalted butter","Balsamic vinegar"," Basil"," Chickpeas"," Thyme","Black pepper"," Garlic","Kosher Salt","Red Wine"," Milk","Bay leaf","Canola oil"} 2017-01-18 14:34:36.537 2017-01-18 14:34:36.537 {Milk," Wheat"} 0 data image/png 470426 2017-01-19 16:05:27.776243 6.5
3 Steak Potato Gratin A great steak dinner served with a peppery arugula salad. Add a creamy potato gratin, a blue cheese & bacon compound butter and it's the best of both worlds. <div><strong>Notes</strong><br>Set aside butter, salad & dressing.<br><br><strong>In The Oven<br></strong>Heat at 375 for 10-12 min. Turn steak at 5.<br><br><strong>To Serve<br></strong>Top steak w/ butter. Dress salad. Enjoy!</div><div><br><strong>In The Microwave<br></strong>Heat 2-4 min. Turn steak at 1 min. Check every 30 sec.</div> {Potato,"Beef tri-tip","Heavy Whipping Cream"," Arugula","Sherry Vinaigrette","Unsalted butter","Canola oil"," Leeks","Parmesan Cheese"," Garlic","Bleu Cheese"," Bacon"," Scallions","Kosher Salt"," Lemons"," Shallots"," Thyme"," Parsley","Black pepper"} 2017-01-18 14:26:17.898 2017-01-19 16:05:40.358852 {Milk} 0 data image/png 774637 2017-01-19 16:05:40.112899 9.99000000000000021
2 Smoked Almond & Kale Salad Large hunks (and we mean BIG!) of sweet potato are roasted until tender and caramelized. They’re tossed with shaved dino kale and then topped with smoked almonds and manchego cheese. Our apple cider vinaigrette comes on the side for you to dress and toss when you’re ready. <div><strong>Notes<br></strong>Pour Dressing over salad</div><div><br></div><div><strong>To Serve<br></strong>Toss salad and enjoy!</div> {Yam," Kale"," Almonds"," Manchego cheese"," Applesauce"," Apple Cider Vinegar"," Olive Oil"," Currants"," Pure Cane Sugar"," Shallots"," Whole grain mustard"," Kosher Salt"," Black pepper"} 2017-01-18 14:20:19.985 2017-01-18 14:22:24.846 {Milk," Nuts"} 0 data image/png 796775 2017-01-19 16:05:53.618402 7.5
1 Tandoori Roasted 1/2 Chicken A chicken is marinated in yogurt and tandoori spices and the roasted until the meat is juicy and the skin is crisp. Each order is half a chicken and it's served with turmeric couscous mixed with toasted almonds, golden raisins, and fresh herbs. On the side is a sweet/spicy mango salsa. <div><strong>Notes</strong></div><div>Set aside mango salsa.<br><br></div><div><strong>In The Oven</strong></div><div>Preheat to 375 degrees. Heat 12-15 minutes, or until heated through.<br><br></div><div><strong>In The Microwave<br></strong>Heat 3-5 minutes<br><br>To Serve<br>Cut up chicken. Top with salsa. Enjoy!</div> {Chicken," Couscous"," Mangos"," Golden raisins"," Parsley"," Almonds"," Red Onion"," Sweet red peppers"," Lime juice"," Cilantro"," Jalapeño peppers"," Olive Oil"," Kosher Salt"," Plain Yogurt"," Tandoori Marinade"," Canola oil"," Ginger root"," Tomato paste"," Tumeric"," Garlic"," Black pepper"} 2017-01-18 13:41:17.036 2017-01-18 14:11:30.138 {Milk," Nuts"," Wheat"} 0 data image/png 888795 2017-01-19 16:06:04.658558 8.80000000000000071
8 Chocolate Muffin Hana's award-winning Chocolate Soufflé Muffin is a rich, moist cake made with the highest quality melted dark chocolate. It takes its name from the signature crack in the top, and also happens to be our bestselling item across all categories. Winner of awards in USA Today, New York Magazine, and Food and Wine. <div><strong>To Serve<br></strong>Enjoy at room temperature!</div> {} 2017-01-19 11:28:41.528 2017-01-19 16:03:47.409 {} 2 data image/png 551332 2017-01-19 16:04:50.171316 5.40000000000000036
7 Cauliflower Shawarma Cauliflower florets and cubes of firm tofu are marinated in a house-made spice blend and roasted until tender. It’s served with whole wheat pitas for you to stuff and then top with the sumac seasoned onion wedges, cool cucumber chunks, and some of the creamy tahini dressing. <div><strong>Notes</strong><br>Set aside cucumbers and tahini<br><br></div><div><strong>In The Oven</strong></div><div>Preheat to 350 degrees. Heat 3-4 minutes, or until heated through.</div><div><br><strong>In The Microwave</strong></div><div>Heat 2-3 minutes (timing varies depending on your microwave).<br><br></div><div><strong>To Serve</strong></div><div>Build to your liking!</div> {Cauliflower," Red Onion"," Firm Tofu"," Whole Wheat Pita Bread"," Cucumber"," Tahini"," Lemons"," Lemon juice"," Sumac"," Garlic"," Olive Oil"," Paprika"," Spearmint"," Parsley"," Chili Flakes"," Tumeric"," Cinnamon"," Kosher Salt"," Black pepper"} 2017-01-19 11:25:18.595 2017-01-20 16:07:52.290833 {Wheat} 0 data image/png 854457 2017-01-20 16:07:51.924166 8.99000000000000021
9 Chocolate Chip Cookie Large chunks of Couer de Guanaja Chocolate from those brilliant chocolate makers at Valrohna are folded into cookie batter, making these a favorite at famed bakery Craftsman and Wolves. Not included: A tall glass of ice-cold milk. <div><strong>To Serve<br></strong>Enjoy at room temperature....if you can wait that long.</div> {Sugar," Couer de Guanaja Chocolate"," All-Purpose Flour"," Unsalted butter"," Brown Sugar"," Bread Flour"," Egg"," Sea Salt"," Vanilla Beans"," Baking Powder"," Baking Soda"} 2017-01-19 12:30:46.341 2017-01-20 16:19:48.124432 {Milk," Egg"," Soybean"," Wheat"} 2 data image/jpeg 195362 2017-01-20 16:19:47.787311 4.5
\.
--
-- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.schema_migrations (version) FROM stdin;
20170118132533
20170118134605
20170118134757
20170118135023
20170118135257
20170118135425
20170118135906
20170118140755
20170118143649
20170118144214
20170118144837
20170118145023
20170118145125
20170118145823
20170118162315
20170119081919
20170119082129
20170119083329
20170119083442
20170119083613
20170119134252
20170119155813
20170119155922
20170124134931
20170127104053
\.
--
-- Name: chef_availabilities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('public.chef_availabilities_id_seq', 22488, true);
--
-- Name: chefs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('public.chefs_id_seq', 876, true);
--
-- Name: customers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('public.customers_id_seq', 1770, true);
--
-- Name: delivery_men_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('public.delivery_men_id_seq', 4700, true);
--
-- Name: menus_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('public.menus_id_seq', 2877, true);
--
-- Name: menus_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('public.menus_products_id_seq', 8722, true);
--
-- Name: orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('public.orders_id_seq', 10316, true);
--
-- Name: orders_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('public.orders_products_id_seq', 12138, true);
--
-- Name: product_images_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('public.product_images_id_seq', 3, true);
--
-- Name: products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('public.products_id_seq', 9, true);
--
-- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.ar_internal_metadata
ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key);
--
-- Name: chef_availabilities chef_availabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.chef_availabilities
ADD CONSTRAINT chef_availabilities_pkey PRIMARY KEY (id);
--
-- Name: chefs chefs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.chefs
ADD CONSTRAINT chefs_pkey PRIMARY KEY (id);
--
-- Name: customers customers_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.customers
ADD CONSTRAINT customers_pkey PRIMARY KEY (id);
--
-- Name: delivery_men delivery_men_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.delivery_men
ADD CONSTRAINT delivery_men_pkey PRIMARY KEY (id);
--
-- Name: menus menus_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.menus
ADD CONSTRAINT menus_pkey PRIMARY KEY (id);
--
-- Name: menus_products menus_products_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.menus_products
ADD CONSTRAINT menus_products_pkey PRIMARY KEY (id);
--
-- Name: orders orders_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.orders
ADD CONSTRAINT orders_pkey PRIMARY KEY (id);
--
-- Name: orders_products orders_products_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.orders_products
ADD CONSTRAINT orders_products_pkey PRIMARY KEY (id);
--
-- Name: product_images product_images_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.product_images
ADD CONSTRAINT product_images_pkey PRIMARY KEY (id);
--
-- Name: products products_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.products
ADD CONSTRAINT products_pkey PRIMARY KEY (id);
--
-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.schema_migrations
ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version);
--
-- Name: index_chef_availabilities_on_chef_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_chef_availabilities_on_chef_id ON public.chef_availabilities USING btree (chef_id);
--
-- Name: index_menus_on_chef_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_menus_on_chef_id ON public.menus USING btree (chef_id);
--
-- Name: index_menus_products_on_menu_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_menus_products_on_menu_id ON public.menus_products USING btree (menu_id);
--
-- Name: index_menus_products_on_product_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_menus_products_on_product_id ON public.menus_products USING btree (product_id);
--
-- Name: index_orders_on_customer_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_orders_on_customer_id ON public.orders USING btree (customer_id);
--
-- Name: index_orders_products_on_order_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_orders_products_on_order_id ON public.orders_products USING btree (order_id);
--
-- Name: index_orders_products_on_product_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_orders_products_on_product_id ON public.orders_products USING btree (product_id);
--
-- Name: index_product_images_on_product_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_product_images_on_product_id ON public.product_images USING btree (product_id);
--
-- PostgreSQL database dump complete
--