← Back to team overview

mvhub-dev team mailing list archive

[Merge] lp:~omacneil/mvhub/clean_test_sql_data into lp:mvhub

 

Dan MacNeil has proposed merging lp:~omacneil/mvhub/clean_test_sql_data into lp:mvhub.

Requested reviews:
  mvhub-dev (mvhub-dev)


removed public emails to avoid accidently sending to them.

removed DROP statements from test data to avoid spurious warnings

mv_setup no longer sends stderr to /dev/null because there are no longer spurious warnings. The attached diff has been truncated due to its size.
-- 
https://code.launchpad.net/~omacneil/mvhub/clean_test_sql_data/+merge/22325
Your team mvhub-dev is subscribed to branch lp:mvhub.
=== modified file 'app-mvhub/project-tools/bin/mv_setup'
--- app-mvhub/project-tools/bin/mv_setup	2010-03-25 18:51:21 +0000
+++ app-mvhub/project-tools/bin/mv_setup	2010-03-28 13:28:18 +0000
@@ -321,7 +321,7 @@
 
     my $cmd = "export PGPASSWORD=$db_password ";
     $cmd .= "&& psql -h localhost -U $username -d  $username.$suffix ";
-    $cmd .= "-f ${path_to_project_tools}/test_${suffix}_db.sql >/dev/null 2>/dev/null";
+    $cmd .= "-f ${path_to_project_tools}/test_${suffix}_db.sql >/dev/null";
 
     ( system($cmd) == 0 )
       or warn "failed to load data for $username.$suffix";

=== modified file 'app-mvhub/project-tools/test_mvh_db.sql'
--- app-mvhub/project-tools/test_mvh_db.sql	2009-09-15 13:45:53 +0000
+++ app-mvhub/project-tools/test_mvh_db.sql	2010-03-28 13:28:18 +0000
@@ -6,100 +6,6 @@
 SET check_function_bodies = false;
 SET client_min_messages = warning;
 
-SET search_path = public, pg_catalog;
-
-ALTER TABLE ONLY public.heading_category DROP CONSTRAINT "$2";
-ALTER TABLE ONLY public.program_category DROP CONSTRAINT "$2";
-ALTER TABLE ONLY public.data_entry_program DROP CONSTRAINT "$2";
-ALTER TABLE ONLY public.data_entry_agency DROP CONSTRAINT "$2";
-ALTER TABLE ONLY public.date_program_created DROP CONSTRAINT "$1";
-ALTER TABLE ONLY public.date_agency_created DROP CONSTRAINT "$1";
-ALTER TABLE ONLY public.program_category DROP CONSTRAINT "$1";
-ALTER TABLE ONLY public.heading_category DROP CONSTRAINT "$1";
-ALTER TABLE ONLY public.alias DROP CONSTRAINT "$1";
-ALTER TABLE ONLY public.program DROP CONSTRAINT "$1";
-ALTER TABLE ONLY public.data_entry_program DROP CONSTRAINT "$1";
-ALTER TABLE ONLY public.data_entry_agency DROP CONSTRAINT "$1";
-ALTER TABLE ONLY public.users DROP CONSTRAINT "$1";
-DROP INDEX public.start_zip_index_on_zip_distances;
-DROP INDEX public.session_id_index_on_category_search_log;
-DROP INDEX public.session_id_index_on_agency_search_log;
-DROP INDEX public.log_category_search_index_by_session_id;
-ALTER TABLE ONLY public.users DROP CONSTRAINT users_username_key;
-ALTER TABLE ONLY public.users DROP CONSTRAINT users_pkey;
-ALTER TABLE ONLY public.user_type DROP CONSTRAINT user_type_type_name_key;
-ALTER TABLE ONLY public.user_type DROP CONSTRAINT user_type_pkey;
-ALTER TABLE ONLY public.town DROP CONSTRAINT town_pkey;
-ALTER TABLE ONLY public.synonym_stem DROP CONSTRAINT synonym_pkey;
-ALTER TABLE ONLY public.search_log DROP CONSTRAINT search_log_pkey;
-ALTER TABLE ONLY public.program DROP CONSTRAINT program_pkey;
-ALTER TABLE ONLY public.program_category DROP CONSTRAINT program_category_pkey;
-ALTER TABLE ONLY public.log_category_search DROP CONSTRAINT log_category_search_pkey;
-ALTER TABLE ONLY public.heading DROP CONSTRAINT heading_pkey;
-ALTER TABLE ONLY public.heading_category DROP CONSTRAINT heading_category_pkey;
-ALTER TABLE ONLY public.date_program_created DROP CONSTRAINT date_program_created_pkey;
-ALTER TABLE ONLY public.date_agency_created DROP CONSTRAINT date_agency_created_pkey;
-ALTER TABLE ONLY public.data_entry_status DROP CONSTRAINT data_entry_status_status_name_key;
-ALTER TABLE ONLY public.data_entry_status DROP CONSTRAINT data_entry_status_pkey;
-ALTER TABLE ONLY public.data_entry_program DROP CONSTRAINT data_entry_program_pkey;
-ALTER TABLE ONLY public.data_entry_agency DROP CONSTRAINT data_entry_agency_pkey;
-ALTER TABLE ONLY public.category DROP CONSTRAINT category_pkey;
-ALTER TABLE ONLY public.category DROP CONSTRAINT category_category_name_key;
-ALTER TABLE ONLY public.alias DROP CONSTRAINT alias_pkey;
-ALTER TABLE ONLY public.agency DROP CONSTRAINT agency_pkey;
-ALTER TABLE ONLY public.agency DROP CONSTRAINT agency_agency_name_key;
-DROP TABLE public.zip_distances;
-DROP TABLE public.web_requests;
-DROP SEQUENCE public.web_requests_id_seq;
-DROP TABLE public.users;
-DROP TABLE public.user_type;
-DROP SEQUENCE public.user_type_type_id_seq;
-DROP SEQUENCE public.user_id_sequence;
-DROP TABLE public.town;
-DROP TABLE public.synonym_stem;
-DROP SEQUENCE public.synonym_id_sequence;
-DROP SEQUENCE public.program_id_sequence;
-DROP VIEW public.opt_in_contact_email_view;
-DROP VIEW public.mailing_list;
-DROP TABLE public.log_category_search;
-DROP SEQUENCE public.log_category_search_search_id_seq;
-DROP TABLE public.heading_category;
-DROP TABLE public.heading;
-DROP VIEW public.entity;
-DROP TABLE public.date_program_created;
-DROP TABLE public.date_agency_created;
-DROP TABLE public.data_entry_status;
-DROP SEQUENCE public.data_entry_status_status_id_seq;
-DROP TABLE public.data_entry_program;
-DROP SEQUENCE public.data_entry_program_id_seq;
-DROP TABLE public.data_entry_agency;
-DROP SEQUENCE public.data_entry_agency_id_seq;
-DROP VIEW public.contact_email_list_view;
-DROP VIEW public.contacts;
-DROP TABLE public.category_search_log;
-DROP SEQUENCE public.category_id_sequence;
-DROP VIEW public.all_names_view;
-DROP VIEW public.cats_with_visible_programs_view;
-DROP TABLE public.program_category;
-DROP TABLE public.program;
-DROP TABLE public.category;
-DROP TABLE public.alias;
-DROP TABLE public.agency_search_log;
-DROP TABLE public.search_log;
-DROP SEQUENCE public.search_log_search_id_seq;
-DROP SEQUENCE public.agency_id_sequence;
-DROP TABLE public.agency;
-DROP FUNCTION public.our_concat(text, text);
-DROP FUNCTION public.get_password(integer);
-DROP FUNCTION public.get_agency_name(integer);
-DROP SCHEMA public;
---
--- Name: public; Type: SCHEMA; Schema: -; Owner: postgres
---
-
-CREATE SCHEMA public;
-
-
 --
 -- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres
 --
@@ -107,8 +13,10 @@
 COMMENT ON SCHEMA public IS 'Standard public schema';
 
 
+SET search_path = public, pg_catalog;
+
 --
--- Name: get_agency_name(integer); Type: FUNCTION; Schema: public; Owner: mansi
+-- Name: get_agency_name(integer); Type: FUNCTION; Schema: public; Owner: omacneil
 --
 
 CREATE FUNCTION get_agency_name(integer) RETURNS text
@@ -117,7 +25,7 @@
 
 
 --
--- Name: get_password(integer); Type: FUNCTION; Schema: public; Owner: mansi
+-- Name: get_password(integer); Type: FUNCTION; Schema: public; Owner: omacneil
 --
 
 CREATE FUNCTION get_password(integer) RETURNS text
@@ -126,7 +34,7 @@
 
 
 --
--- Name: our_concat(text, text); Type: FUNCTION; Schema: public; Owner: mansi
+-- Name: our_concat(text, text); Type: FUNCTION; Schema: public; Owner: omacneil
 --
 
 CREATE FUNCTION our_concat(text, text) RETURNS text
@@ -139,7 +47,7 @@
 SET default_with_oids = false;
 
 --
--- Name: agency; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: agency; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE agency (
@@ -207,7 +115,7 @@
 
 
 --
--- Name: agency_id_sequence; Type: SEQUENCE; Schema: public; Owner: mansi
+-- Name: agency_id_sequence; Type: SEQUENCE; Schema: public; Owner: omacneil
 --
 
 CREATE SEQUENCE agency_id_sequence
@@ -218,14 +126,14 @@
 
 
 --
--- Name: agency_id_sequence; Type: SEQUENCE SET; Schema: public; Owner: mansi
+-- Name: agency_id_sequence; Type: SEQUENCE SET; Schema: public; Owner: omacneil
 --
 
 SELECT pg_catalog.setval('agency_id_sequence', 103993, true);
 
 
 --
--- Name: search_log_search_id_seq; Type: SEQUENCE; Schema: public; Owner: mansi
+-- Name: search_log_search_id_seq; Type: SEQUENCE; Schema: public; Owner: omacneil
 --
 
 CREATE SEQUENCE search_log_search_id_seq
@@ -236,14 +144,14 @@
 
 
 --
--- Name: search_log_search_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mansi
+-- Name: search_log_search_id_seq; Type: SEQUENCE SET; Schema: public; Owner: omacneil
 --
 
 SELECT pg_catalog.setval('search_log_search_id_seq', 36826, true);
 
 
 --
--- Name: search_log; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: search_log; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE search_log (
@@ -257,7 +165,7 @@
 
 
 --
--- Name: agency_search_log; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: agency_search_log; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE agency_search_log (
@@ -267,7 +175,7 @@
 
 
 --
--- Name: alias; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: alias; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE alias (
@@ -280,7 +188,7 @@
 
 
 --
--- Name: category; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: category; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE category (
@@ -293,7 +201,7 @@
 
 
 --
--- Name: program; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: program; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE program (
@@ -396,7 +304,7 @@
 
 
 --
--- Name: program_category; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: program_category; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE program_category (
@@ -406,7 +314,7 @@
 
 
 --
--- Name: cats_with_visible_programs_view; Type: VIEW; Schema: public; Owner: mansi
+-- Name: cats_with_visible_programs_view; Type: VIEW; Schema: public; Owner: omacneil
 --
 
 CREATE VIEW cats_with_visible_programs_view AS
@@ -414,7 +322,7 @@
 
 
 --
--- Name: all_names_view; Type: VIEW; Schema: public; Owner: mansi
+-- Name: all_names_view; Type: VIEW; Schema: public; Owner: omacneil
 --
 
 CREATE VIEW all_names_view AS
@@ -422,7 +330,7 @@
 
 
 --
--- Name: category_id_sequence; Type: SEQUENCE; Schema: public; Owner: mansi
+-- Name: category_id_sequence; Type: SEQUENCE; Schema: public; Owner: omacneil
 --
 
 CREATE SEQUENCE category_id_sequence
@@ -433,14 +341,14 @@
 
 
 --
--- Name: category_id_sequence; Type: SEQUENCE SET; Schema: public; Owner: mansi
+-- Name: category_id_sequence; Type: SEQUENCE SET; Schema: public; Owner: omacneil
 --
 
 SELECT pg_catalog.setval('category_id_sequence', 805038, true);
 
 
 --
--- Name: category_search_log; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: category_search_log; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE category_search_log (
@@ -452,7 +360,7 @@
 
 
 --
--- Name: contacts; Type: VIEW; Schema: public; Owner: mansi
+-- Name: contacts; Type: VIEW; Schema: public; Owner: omacneil
 --
 
 CREATE VIEW contacts AS
@@ -460,7 +368,7 @@
 
 
 --
--- Name: contact_email_list_view; Type: VIEW; Schema: public; Owner: mansi
+-- Name: contact_email_list_view; Type: VIEW; Schema: public; Owner: omacneil
 --
 
 CREATE VIEW contact_email_list_view AS
@@ -468,7 +376,7 @@
 
 
 --
--- Name: data_entry_agency_id_seq; Type: SEQUENCE; Schema: public; Owner: mansi
+-- Name: data_entry_agency_id_seq; Type: SEQUENCE; Schema: public; Owner: omacneil
 --
 
 CREATE SEQUENCE data_entry_agency_id_seq
@@ -479,14 +387,14 @@
 
 
 --
--- Name: data_entry_agency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mansi
+-- Name: data_entry_agency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: omacneil
 --
 
 SELECT pg_catalog.setval('data_entry_agency_id_seq', 122, true);
 
 
 --
--- Name: data_entry_agency; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: data_entry_agency; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE data_entry_agency (
@@ -552,7 +460,7 @@
 
 
 --
--- Name: data_entry_program_id_seq; Type: SEQUENCE; Schema: public; Owner: mansi
+-- Name: data_entry_program_id_seq; Type: SEQUENCE; Schema: public; Owner: omacneil
 --
 
 CREATE SEQUENCE data_entry_program_id_seq
@@ -563,14 +471,14 @@
 
 
 --
--- Name: data_entry_program_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mansi
+-- Name: data_entry_program_id_seq; Type: SEQUENCE SET; Schema: public; Owner: omacneil
 --
 
 SELECT pg_catalog.setval('data_entry_program_id_seq', 91, true);
 
 
 --
--- Name: data_entry_program; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: data_entry_program; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE data_entry_program (
@@ -672,7 +580,7 @@
 
 
 --
--- Name: data_entry_status_status_id_seq; Type: SEQUENCE; Schema: public; Owner: mansi
+-- Name: data_entry_status_status_id_seq; Type: SEQUENCE; Schema: public; Owner: omacneil
 --
 
 CREATE SEQUENCE data_entry_status_status_id_seq
@@ -684,14 +592,14 @@
 
 
 --
--- Name: data_entry_status_status_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mansi
+-- Name: data_entry_status_status_id_seq; Type: SEQUENCE SET; Schema: public; Owner: omacneil
 --
 
 SELECT pg_catalog.setval('data_entry_status_status_id_seq', 1, false);
 
 
 --
--- Name: data_entry_status; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: data_entry_status; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE data_entry_status (
@@ -701,7 +609,7 @@
 
 
 --
--- Name: date_agency_created; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: date_agency_created; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE date_agency_created (
@@ -711,7 +619,7 @@
 
 
 --
--- Name: date_program_created; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: date_program_created; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE date_program_created (
@@ -721,7 +629,7 @@
 
 
 --
--- Name: entity; Type: VIEW; Schema: public; Owner: mansi
+-- Name: entity; Type: VIEW; Schema: public; Owner: omacneil
 --
 
 CREATE VIEW entity AS
@@ -729,7 +637,7 @@
 
 
 --
--- Name: heading; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: heading; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE heading (
@@ -738,7 +646,7 @@
 
 
 --
--- Name: heading_category; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: heading_category; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE heading_category (
@@ -748,7 +656,7 @@
 
 
 --
--- Name: log_category_search_search_id_seq; Type: SEQUENCE; Schema: public; Owner: mansi
+-- Name: log_category_search_search_id_seq; Type: SEQUENCE; Schema: public; Owner: omacneil
 --
 
 CREATE SEQUENCE log_category_search_search_id_seq
@@ -759,14 +667,14 @@
 
 
 --
--- Name: log_category_search_search_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mansi
+-- Name: log_category_search_search_id_seq; Type: SEQUENCE SET; Schema: public; Owner: omacneil
 --
 
 SELECT pg_catalog.setval('log_category_search_search_id_seq', 1762, true);
 
 
 --
--- Name: log_category_search; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: log_category_search; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE log_category_search (
@@ -782,7 +690,7 @@
 
 
 --
--- Name: mailing_list; Type: VIEW; Schema: public; Owner: mansi
+-- Name: mailing_list; Type: VIEW; Schema: public; Owner: omacneil
 --
 
 CREATE VIEW mailing_list AS
@@ -790,7 +698,7 @@
 
 
 --
--- Name: opt_in_contact_email_view; Type: VIEW; Schema: public; Owner: mansi
+-- Name: opt_in_contact_email_view; Type: VIEW; Schema: public; Owner: omacneil
 --
 
 CREATE VIEW opt_in_contact_email_view AS
@@ -798,7 +706,7 @@
 
 
 --
--- Name: program_id_sequence; Type: SEQUENCE; Schema: public; Owner: mansi
+-- Name: program_id_sequence; Type: SEQUENCE; Schema: public; Owner: omacneil
 --
 
 CREATE SEQUENCE program_id_sequence
@@ -809,14 +717,14 @@
 
 
 --
--- Name: program_id_sequence; Type: SEQUENCE SET; Schema: public; Owner: mansi
+-- Name: program_id_sequence; Type: SEQUENCE SET; Schema: public; Owner: omacneil
 --
 
 SELECT pg_catalog.setval('program_id_sequence', 509526, true);
 
 
 --
--- Name: synonym_id_sequence; Type: SEQUENCE; Schema: public; Owner: mansi
+-- Name: synonym_id_sequence; Type: SEQUENCE; Schema: public; Owner: omacneil
 --
 
 CREATE SEQUENCE synonym_id_sequence
@@ -827,14 +735,14 @@
 
 
 --
--- Name: synonym_id_sequence; Type: SEQUENCE SET; Schema: public; Owner: mansi
+-- Name: synonym_id_sequence; Type: SEQUENCE SET; Schema: public; Owner: omacneil
 --
 
 SELECT pg_catalog.setval('synonym_id_sequence', 900319, true);
 
 
 --
--- Name: synonym_stem; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: synonym_stem; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE synonym_stem (
@@ -847,7 +755,7 @@
 
 
 --
--- Name: town; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: town; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE town (
@@ -862,7 +770,7 @@
 
 
 --
--- Name: user_id_sequence; Type: SEQUENCE; Schema: public; Owner: mansi
+-- Name: user_id_sequence; Type: SEQUENCE; Schema: public; Owner: omacneil
 --
 
 CREATE SEQUENCE user_id_sequence
@@ -873,14 +781,14 @@
 
 
 --
--- Name: user_id_sequence; Type: SEQUENCE SET; Schema: public; Owner: mansi
+-- Name: user_id_sequence; Type: SEQUENCE SET; Schema: public; Owner: omacneil
 --
 
 SELECT pg_catalog.setval('user_id_sequence', 300055, true);
 
 
 --
--- Name: user_type_type_id_seq; Type: SEQUENCE; Schema: public; Owner: mansi
+-- Name: user_type_type_id_seq; Type: SEQUENCE; Schema: public; Owner: omacneil
 --
 
 CREATE SEQUENCE user_type_type_id_seq
@@ -892,14 +800,14 @@
 
 
 --
--- Name: user_type_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mansi
+-- Name: user_type_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: omacneil
 --
 
 SELECT pg_catalog.setval('user_type_type_id_seq', 1, false);
 
 
 --
--- Name: user_type; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: user_type; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE user_type (
@@ -910,7 +818,7 @@
 
 
 --
--- Name: users; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: users; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE users (
@@ -929,7 +837,7 @@
 
 
 --
--- Name: web_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: mansi
+-- Name: web_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: omacneil
 --
 
 CREATE SEQUENCE web_requests_id_seq
@@ -940,14 +848,14 @@
 
 
 --
--- Name: web_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mansi
+-- Name: web_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: omacneil
 --
 
 SELECT pg_catalog.setval('web_requests_id_seq', 749579, true);
 
 
 --
--- Name: web_requests; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: web_requests; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE web_requests (
@@ -966,7 +874,7 @@
 
 
 --
--- Name: zip_distances; Type: TABLE; Schema: public; Owner: mansi; Tablespace: 
+-- Name: zip_distances; Type: TABLE; Schema: public; Owner: omacneil; Tablespace: 
 --
 
 CREATE TABLE zip_distances (
@@ -979,11388 +887,8802 @@
 
 
 --
--- Data for Name: agency; Type: TABLE DATA; Schema: public; Owner: mansi
---
-
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103047, '2008-09-22', false, '@lunch4all', 'Groundwork Lawrence', 'GWL', '60 Island St 2nd Floor', NULL, 'Lawrence', 'MA', '01840', '978-974-0770', NULL, NULL, '978-974-0882', 'www.groundworklawrence.org', 'info@xxxxxxxxxxxxxxxxxxxxxx', 'Groundwork Lawrence, Inc. (GWL) is a locally-based 501(c)3 non-profit organization working to create sustainable environmental change through community-based partnerships. Groundwork is committed to "changing places and changing lives" through on-the-ground projects, education, and volunteer programs that help to transform local communities.', 'Weekdays 9:00 - 5:00', NULL, NULL, NULL, NULL, NULL, NULL, 'Kate O''Brien', 'Executive Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100242, '2008-12-01', false, '@lunch4all', 'Greater Lowell Technical High School', NULL, '250 Pawtucket Blvd.', NULL, 'Tyngsborough', 'MA', '01879', '978-454-5411', NULL, '978-441-0990', '978-441-5344', 'www.gltech.org', 'webmaster@xxxxxxxxxx', 'The mission of the GLTHS is to provide its students with a dynamic academic and technical education preparing them to be lifelong learners who will be competent, respectful and responsible citizens capable of adapting to an ever-changing and increasingly technological society.', 'Contact for more information', NULL, NULL, NULL, NULL, NULL, NULL, 'James M. Cassin', 'Superintendent - Director', NULL, 'Yes', 'Contact GLTHS for information about resource libraries.', 'Yes', 'Theater in the round style lecture hall. Function room adjacent to school''s Artisan Restaurant. Contact school for information', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100759, '2008-12-15', false, '@lunch4all', 'Merrimack Valley Catholic Charities', NULL, '70 Lawrence Street', NULL, 'Lowell', 'MA', '01852', '978-452-1421', NULL, '978-452-1421', '978-454-9968', 'www.ccab.org', 'dotty_duval@xxxxxxxx', 'The mission of Catholic Charities is to help those most in need, to advocate for social justice, to convene the church and others of good will to do the same and to provide hope for all. Catholic Charities has multiple sites in Lowell, including Lawrence Street, Pawtucket Blvd. and Merrimack Street.', 'Contact Agency', NULL, NULL, NULL, NULL, NULL, NULL, 'Dorothy Duval', 'Program Manager', 'Catholic Charitable Bureau Archdiocese of Boston', 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100506, '2009-01-15', false, '@lunch4all', 'Family Continuity Programs, Inc.', 'FCP, Inc', '11 Lawrence Street', NULL, 'Lawrence', 'MA', '01840', '978-687-1617', NULL, '978-687-1617', '978-687-1597', 'www.familycontinuity.org', 'rrisso@xxxxxxxxxxxxxxxxxxxx', 'The Family Continuity Program provides mental health, behavioral and social services by building relationships that accommodate clients'' needs and preferences in order to promote growth and change in people''s lives and their communities. We establish treatment partnerships characterized by: A full range of individualized services and interventions, a culturally and professionally diverse staff, and the ability to access all available resources and funding.', 'Monday-Friday 9AM-7PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Robin Risso', 'Regional Director', NULL, 'No', NULL, 'Yes', 'A conference room that seats about 20 is available for meetings. Contact agency for more information.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100451, '2008-06-19', false, '@lunch4all', 'Child Care Circuit', NULL, '190 Hampshire Street', NULL, 'Lawrence', 'MA', '01840', '978-686-4288', '877-823-2273', NULL, '978-975-3120', 'www.childcarecircuit.org', 'ccorso@xxxxxxxxxxxxxxxxxxxx', 'Child Care Circuit provides child care resource and referral information, parent and provider trainings, state voucher management, wait list information and management for other state funded subsidies, corporate work life benefits, child care center development and a resource room for parents and providers. NAEYC consulting is also provided.', 'Monday 9AM-7PM; Tuesday-Friday 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Sue Halloran', 'Director', NULL, 'Yes', 'Contact Child Care Circuit for more information on the resource library', 'No', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100561, '2008-06-20', false, '@lunch4all', 'Anne Sullivan Center', NULL, '126 Phoenix Ave.', NULL, 'Lowell', 'MA', '01852', '978-453-8331', NULL, NULL, '978-453-9254', 'www.thomchild.org', 'mmahoney@xxxxxxxxxxxxxxxxx', 'The Anne Sullivan Center Early Intervention Program is committed to family support for the purpose of strengthening and enhancing family life and the growth and development of children. The program views each family as the primary agent in facilitating their child''s development and has organized program services via an approach including parents as members of the team and primary advocates for their child / family.', 'Monday-Friday 8AM-4:30PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Margaret Mahoney / Alden Wood', 'Clinical Director /Program Director', 'Thom Child and Family Services', 'Yes', 'Call 978-453-8331 for more information about the Resource Library', 'Yes', 'Space is available during the evenings. Call 978-453-8331 for more information', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100682, '2008-07-14', false, '@lunch4all', 'South Bay Mental Health Center', NULL, '77 East Merrimack Street Unit 1', NULL, 'Lowell', 'MA', '01852', '978-453-6800', '800-244-4691', NULL, '978-453-6767', 'www.southbaymentalhealth.com', NULL, 'The mission of the South Bay Mental Health Center is to provide behavioral health care that is grounded within the community. Individual, family and group counseling are available in the office or outreach. South Bay has offices in Lowell, Lawrence, Brockton, Weymouth, Fall River, Plymouth and Cape Cod, Attleboro, Worcester.', 'Monday-Friday 9AM-5PM, Appointments are scheduled with clinicians and availability varies.', NULL, NULL, NULL, NULL, NULL, NULL, 'Peter Scanlon Ph.D', 'Executive Director', NULL, 'Yes', 'Contact South Bay for more information about the resource library', 'Yes', 'Space is available for professional use/ counseling sessions', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103256, '2008-12-23', false, '@lunch4all', 'Mental Health Resources Plus', 'MHRP', 'One Canal St.', NULL, 'Lawrence', 'MA', '01840', '978-685-6609', NULL, NULL, '978-685-1941', NULL, 'mhrp@xxxxxxxxxxx', 'ADD', 'Monday-Friday, 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Kathleen O''Keefe', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103443, '2008-08-26', false, '@lunch4all', 'The Northeast Independent Living Program, Inc.', 'NILP', '20 Ballard Road', NULL, 'Lawrence', 'MA', '01843', '978-687-4288', '800-845-6457', NULL, '978-689-4488', 'www.nilp.org', 'info@xxxxxxxx', 'The Northeast Independent Living Program, Inc. is a consumer controlled, cross disability, Independent Living Center providing advocacy and services to people with all disabilities who wish to live as independently as possible within the Northeast area of Massachusetts.', 'Monday to Friday
-9:00AM to 5:00PM', 'All staff have access to the Internet.', NULL, NULL, NULL, NULL, NULL, 'June Cowen', 'Executive Director', 'N/A', 'Yes', 'Pamphlets and materials on many aspects of disability and relevant programs and services.', 'Yes', 'Limited conference room area 25+ people. Priority to agency programs and participants.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', '800-845-6457', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102959, '2008-10-01', false, '@lunch4all', 'Greater Lawrence Rowing', NULL, '1 Eaton Street', NULL, 'Lawrence', 'MA', '01842', '603-553-6349', NULL, NULL, NULL, 'http://www.greaterlawrencerowing.com', 'rowing@xxxxxxxxxxxxxxxxxxxxxxxxx', 'Greater Lawrence Rowing seeks to establish a challenging yet supportive environment that encourages rowers of all levels to succeed. 
-
-The vision of Greater Lawrence Rowing is to build an active, community-based rowing program that offers competitive and recreational programs that are accessible to all residents in the Merrimack Valley.  Program fees are modest and scholarships are available.  Outdoor programs are offered in the Spring, Summer and Fall in addition to an indoor training program offered in the Winter.', 'Practice runs 5 days a week, however schedule changes may occur at the staffs discretion.', NULL, NULL, NULL, NULL, NULL, NULL, 'Paul Bea', 'Rowing Director/Head Coach', 'Greater Lawrence Community Boating Program', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103971, '2009-06-05', false, '@lunch4all', 'D.R.A.W.', 'Doing Real Art WorK', '319 wILDER sT', NULL, 'Lowell', 'MA', '01852', '978-452-4522', NULL, NULL, NULL, NULL, 'cfelt@xxxxxxx', 'D.R.A.W. or doing real art work provides a weekly free arts course to residents at The G.R.I.P. Project as well as teens 16-21 in the community', '4-8pm Thursday', NULL, NULL, NULL, NULL, NULL, NULL, 'Corey Felt', 'Coordinator', 'The Grip Project', 'Not Applicable', NULL, 'Yes', '319 wilder St', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102684, '2008-10-07', false, '@lunch4all', 'Tri-Town Council on Youth and Family Services', 'Tri-Town Council', '5 Main Street', NULL, 'Topsfield', 'MA', '01983', '978-887-6512', NULL, '978-771-4619', '978-887-6512', 'http://www.tritowncouncil.org', 'home@xxxxxxxxxxxxxxxxxx', 'The Tri-Town Council strives to reduce at-risk behavior and improve the emotional health and safety of Tri-Town youth by delivering specialized prevention and intervention services that meet the needs of our community.', 'M-F, 9 a.m.-5 p.m.', NULL, 'P.O. Box 293', NULL, 'Topsfield', 'MA', '01983', 'Nancy Coughlin', 'Manager', 'Tri-Town Counil', 'No', NULL, 'Yes', '12 people at conference table', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101804, '2008-11-17', false, '@lunch4all', 'Lowell Housing Authority (Transitional Housing Program)', 'LHATHP', '21 Salem Street', 'PO Box 60', 'Lowell', 'MA', '01854', '978-364-5368', NULL, NULL, '978-656-4665', 'www.lhma.org', 'mrichter@xxxxxxxx', 'To provide housing, support, guidance, and resources to homeless families in order to facilitate their transition to self-sufficiency.', 'Monday-Friday 8:30-4:30', NULL, '21 Salem Street', 'P.O. Box  60', 'Lowell', 'MA', '01854', 'Michelle L. Richter', 'Family Self-Sufficiency/Supportive Services Director', 'Lowell Housing Authority', 'Not Applicable', NULL, 'Yes', 'Mercier Center
-21 Salem Street
-Lowell MA, 01854', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102640, '2008-12-15', false, '@lunch4all', 'Generazio & Nguyen', NULL, '77 Franklin Street', 'Suite 300', 'Boston', 'MA', '02110', '617-423-0700', NULL, NULL, NULL, 'www.gnimmigration.com', 'marc@xxxxxxxxxxxxxxxxx', 'Generazio & Nguyen is a Massachusetts-based law firm with offices in Andover and Boston devoted exclusively to the practice of immigration and nationality law. Our firm''s unique experience enables us to navigate our clients effectively and efficiently through the complex immigration process. 
-
-Providing quality cost effective immigration solutions represents the cornerstone of our practice.', 'Monday thru Saturday 8 to 6 pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Marc R. Generazio', 'Attorney', NULL, 'Yes', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100352, '2008-12-23', false, '@lunch4all', 'Open Pantry of Greater Lowell', NULL, '200 Central Street', NULL, 'Lowell', 'MA', '01852', '978-453-6693', NULL, NULL, NULL, NULL, NULL, 'The mission of the Open Pantry of Greater Lowell is to provide 5 days of nutritious food for the hungry persons of Greater Lowell.', 'Monday-Thursday 9AM-12PM
-Wednesday 5:30PM-7:30PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Liz Butz', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'No', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100913, '2008-12-30', false, '@lunch4all', 'Department of Early Education and Care', 'EEC', '600 Washington Street, Suite 6100', '350 Main St. Malden, MA 02148', 'Boston', 'MA', '02111', '617-988-6600', NULL, NULL, '617-988-2453', 'www.mass.gov/eec', NULL, 'The Department of Early Education and Cares  web site is the place for parents and child care providers to get answers to their important questions about child care and early education.The agency aim is to make sure all children receive the highest quality child care from providers in Massachusetts.', 'Contact agency for more information', NULL, NULL, NULL, NULL, NULL, NULL, 'Ann Reale', 'Commissioner', 'Commonwealth of Massachusetts', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100957, '2008-07-01', false, '@lunch4all', 'Challenge Unlimited at Ironstone Farm', NULL, '450 Lowell Street (Rt. 133)', NULL, 'Andover', 'MA', '01810', '978-475-4056', '877-632-8386', NULL, '978-475-4046', 'www.challengeunlimited.org', 'info@xxxxxxxxxxxxxxxxxxxxxx', 'The mission of Challenge Unlimited is to provide effective therapy for people with physical, cognitive and emotional disabilities and speech / language disorders using horses and the environment of a working farm.', 'Office hours: Monday-Saturday 8AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Deedee O''Brien', 'Executive Director', NULL, 'No', NULL, 'Yes', 'A tent is available in the spring, summer and fall only. Call for more information.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103223, '2008-06-05', false, '@lunch4all', 'American Training, Inc.', NULL, '102 Glenn Street', NULL, 'Lawrence', 'MA', '01843', '978-685-2151', NULL, NULL, '978-683-5124', 'americantraininginc.com', NULL, 'Throughout our history we have held steadfast to our belief in the unlimited potential of the human spirit. And the dramatic success that can be achieved by people from all walks of life when they experience the "Power" of success!', 'Open Monday through Friday, from 8:00 am - 4:30 pm.  Closed holidays', NULL, NULL, NULL, NULL, NULL, NULL, 'Tom Connors', 'President/CEO', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', '1-800-439-2370', 2, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100803, '2009-01-15', false, '@lunch4all', 'Cambodian Mutual Assistance Association', 'CMAA', '120 Cross Street', NULL, 'Lowell', 'MA', '01854', '978-454-6200', NULL, NULL, '978-454-6229', 'www.cmaalowell.org', NULL, 'The mission of CMAA is to improve the quality of life for the Cambodian-American community of Greater Lowell and other ethnic minorities through educational, cultural, social, community and economic development efforts.', 'Contact Agency', NULL, NULL, NULL, NULL, NULL, NULL, 'Vong Ros', 'Executive Director', NULL, 'No', NULL, 'Yes', 'Some space, 30 seats, is available on a limited basis, preferably business related to CMAA', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101188, '2009-01-16', false, '@lunch4all', 'ADA Technology Corporation', 'Civil Rights for the disabled', '35 Seventh Street', NULL, 'Lowell', 'MA', '01850', '978-937-5170', NULL, NULL, '978-937-5170', 'http://ADAtech.org', 'ceo@xxxxxxxxxxx', 'ADA Technology is a non-profit devoted to eliminating barriers to accessing computers and the Internet for people with disabilities, through adapting technology to their needs. It is intended to supplement and enhance current school curriculum. 
-
-ADA Technology focuses on serving students with severe motor, visual and other impairments. These students are the most vulnerable and under-served. They often can not physically access publicly available computers. Even if these students manage to access them, they are unable to work due to the nonexistence of interfaces and applications adjustable to their disabilities.  Access to technology is the only way for severe disabled wheelchair students to have the same education and employment opportunities as other people
-ADA Technology pursues information technology accessibility for severely disabled people through three primary means: technology, community outreach, and research and development. One of it''s major goals is to
-enhance and supplement an ADA Technology Corp. project called L.E.L.P. i.e., Lowell Elementary Literacy Program while pro-actively working with the Citywide 
-Parent Council; http://www.lowellcpc.org/
-
-Technology:
-ADA Technology is working toward
-• developing fully accessible interfaces adjustable to particular needs of the disabled with severe motor and visual impairments
-• designing, implementing and maintaining the ADA Tech Fully Accessible Network
-• building a library of software packages accessible and adjustable for disabled users for connecting, emailing, learning, training, video conferencing, organizing personal data, playing, etc.
-
-Community outreach:
-
-ADA Technology will
-• provide disabled students with interfaces to access and use computers
-• connect disabled users into the ADA Tech Fully Accessible Network to make them able to communicate and work on the Web
-• provide disabled users with fully accessible online courses, video conferencing, interactive assessments and other applications for communicating and learning
-• train disabled users how to use computers and the Network
-• encourage those who work/ help disabled people become members of the Network to communicate with students and share their knowledge there.
-
-
-Research and Development: 
-
-ADA Technology will use new W3C standards and principles of Universal design to be able to develop interfaces with accessibility and usability levels sufficient for users with serious health problems. 
-
-ADA Technology will build and maintain its own server(s) where databases, functionality applications and software packages will be kept and updated for further distribution through the Network on user''s demands. 
-
-The effectiveness of ADA Technology''s interfaces and distributed applications as well as stability and functionality of the ADA Tech fully Accessible Network will be tested in real-life situations by Network users and will be improved on the basis of feedbacks and evaluations. ADA Technology user''s models will be built and updated following improvements in interfaces, applications and equipment, which serve real disabled people. 
- 
-ADA Technology brings together the community and new technologies to design and implement effective lasting solutions that will work at the local level and serve as a model nationwide. We encourage replication of activities.', '24/7', NULL, NULL, NULL, NULL, NULL, NULL, 'Cary L. Renault, M.Sc.', 'Chief Executive Officer', NULL, 'Not Applicable', NULL, 'Yes', 'City Hall of Lowell, Major Reception room. 2nd floor. (elevator accessible)', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', '978-937-5170', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102552, '2008-06-20', false, '@lunch4all', 'Boy Scouts of America, Yankee Clipper Council', NULL, '36 AMESBURY RD', NULL, 'Haverhill', 'MA', '01830', '978-372-0591', NULL, NULL, '978-373-9134', 'http://www.yccbsa.org', 'info@xxxxxxxxxx', 'The mission of the Boy Scouts of America is to prepare young people to make ethical and moral choices over their lifetimes by instilling in them the values of the Scout Oath and Law.', 'Mon-Fri 8am-5pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Chuck Marvin', 'Finance Director', 'Boy Scouts of America', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100847, '2008-07-15', false, '@lunch4all', 'Chelmsford Board of Health', NULL, '50 Billerica Road', NULL, 'Chelmsford', 'MA', '01824', '978-250-5241', NULL, NULL, '978-250-5244', 'www.townofchelmsford.us', 'rday@xxxxxxxxxxxxxxxxxxx', 'The Chelmsford Board of Health serves the community of Chelmsford by protecting the public through the efficient implementation of the various regulations mandated by the Commonwealth of Massachusetts Division of Public Health and emphasizing prevention and education for the health and well being of the residents.', 'Monday-Friday 8:30AM-4:30PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Richard Day', 'Director', 'Town of Chelmsford', 'Yes', 'Contact Board to access health information resources', 'Yes', 'Space available for meetings pertinent to BOH concerns, ie health, medical, West Nile Fever, bio-terrorism, etc.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100968, '2008-08-02', false, '@lunch4all', 'St. Theresa''s Bereavement Program', NULL, '1 Grace Ave', NULL, 'Billerica', 'MA', '01821', '978-663-8816', NULL, NULL, '978-663-0577', 'http://sttheresaparish.com/', 'mft4770@xxxxxxxxxxx', 'St. Theresa''s  bereavement support groups meets on the second and fourth Thursday of each month from September through June.We do not meet during the summer.', 'Meetings held in the Parish Hall,One Grace Way,located behind the church.
-7to 9 pm
-
-Call facilitator for information.', NULL, NULL, NULL, NULL, NULL, NULL, 'Joan', 'Kilday', NULL, 'No', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103454, '2008-09-03', false, '@lunch4all', 'Home Preservation Center', NULL, '450 Merrimack St.', NULL, 'Lowell', 'MA', '01852', '978-970-0600', NULL, NULL, '978-970-0609', NULL, 'rasy.an@xxxxxxxxxx', 'To provide foreclosure prevention servies in efforts to combat predatory lending and preserve homwownership for families facing foreclosure.', 'Monday-Friday, 9-5.  Some evening appointments available.', NULL, NULL, NULL, NULL, NULL, NULL, 'Rasy An', 'Foreclosure Prevention Coordinator', 'Coallition for a Better Acre, Community Teamwork, Inc.,', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102035, '2008-10-21', false, '@lunch4all', 'T.H.E. FARM', 'Tewksbury Hospital Equestrian FARM', 'Livingston Street', '365 East Street, PO Box 754', 'Tewksbury', 'MA', '01876', '978-851-5540', NULL, NULL, NULL, 'www.t-h-e-farm.org', 'info@xxxxxxxxxxxxxx', 'Equine therapeutic riding and non-riding programs for adults and children with disabilities. Riding lessons also available for the able-bodied.', 'Closed Mondays.', NULL, NULL, NULL, NULL, NULL, NULL, 'MJ Marcucci', 'President', NULL, 'Not Applicable', NULL, 'Yes', 'Small meeting room; seats 15-20', 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103157, '2008-12-23', false, '@lunch4all', 'New England Prison Ministries', NULL, 'PO Box 1785', NULL, 'Lowell', 'MA', '01853', '978-458-1721', NULL, NULL, NULL, 'www.nepm.org', 'nepm@xxxxxxxx', 'Support and encouragement for prisoners, discharged prisoners and their families.', 'Weekdays', NULL, NULL, NULL, NULL, NULL, NULL, 'Mark Hemenway', 'President', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100110, '2008-12-16', false, '@lunch4all', 'Girls Incorporated of Greater Lowell', NULL, '220 Worthen Street', NULL, 'Lowell', 'MA', '01852', '978-458-6529', NULL, '978-458-6529', '978-458-4837', 'www.girlsinclowell.org', 'information@xxxxxxxxxxxxxxxxxx', 'Girls Incorporated of Greater Lowell inspires all girls to be strong, smart and bold.  Through creative programs in a safe and nuturing environment, we strive to teach the independence and personal responsibility girls need to succeed.', 'Contact program for more information', NULL, NULL, NULL, NULL, NULL, NULL, 'Carol Duncan', 'Executive Director', 'Girls Incorporated', 'No', NULL, 'Yes', 'Girls Inc. will rent out meeting space to qualified non-profit agencies and groups.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101067, '2008-07-11', false, '@lunch4all', 'Acre Family Day Care', NULL, '14 Kirk St', NULL, 'Lowell', 'MA', '01852', '978-937-5899', NULL, '978-937-5899', '978-937-5148', 'www.acrefamily.org', 'info@xxxxxxxxxxxxxx', 'Acre Family Day Care offers community-based family child care for children, and provides training and support for home-based family child care providers', 'Monday-Friday 6AM-6PM, Saturday-Sunday as needed', NULL, NULL, NULL, NULL, NULL, NULL, 'Kathy Reticker', 'Executive Director', NULL, 'No', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102563, '2007-07-26', false, '@lunch4all', 'Boys & Girls Clubs of Lower Merrimack Valley', NULL, '18 Maple St.', NULL, 'Salisbury', 'MA', '01952', '978-462-7003', NULL, NULL, '978-462-7003', 'http://www.boysandgirlscluboflmv.com/', 'jimkeenan@xxxxxxxxxxxxxxxxxxxxxxxxx', 'To inspire and enable all young people, especially those that need us the most, to realize their full potential as productive, responsible and caring citizens.', '2:30pm-7:00pm, Monday-Friday. Saturday programs available 9:00am -2:00pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Jim Keenan', 'Executive Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 4, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102860, '2008-01-05', false, '@lunch4all', 'Child Development Network, LLC', 'CDNKids', '76 Bedford Street', 'Suite 12', 'Lexington', 'MA', '02420', '781-861-6655', NULL, NULL, '781-861-6654', 'www.CDNKids.com', 'ssokol@xxxxxxxxxxx', 'The Child Development Network (CDN) is an inter-disciplinary team of pediatric health care specialists who provide evaluations and ongoing care for children, teens, and their parents.
-
-We offer a variety of clinical services, including Pediatric Neuropsychology, Behavioral Medicine, Cognitive-Behavioral Therapy, Speech and Language Pathology, and Education Services.
-
-Our goal is to optimize each child''s development and "to help kids achieve their personal best."', '9:00 AM-7:00 PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Dr. Scott Sokol', 'Clinical Neuropsychologist', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 4, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100033, '2008-07-15', false, '@lunch4all', 'Community Teamwork, Inc.', 'CTI', '167 Dutton Street', NULL, 'Lowell', 'MA', '01852', '978-459-0551', '800-698-0551', NULL, '978-453-9128', 'www.comteam.org', 'kfrederick@xxxxxxxxxxx', 'The mission of Community Teamwork is to assist low-income people to become self-sufficient, to alleviate the effects of poverty in our communities, and to empower low-income people to participate in the decisions that affect their lives.', 'Monday-Friday 8:30AM-5:00PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Karen Frederick', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101848, '2008-07-15', false, '@lunch4all', 'Kreative Kids Child Care', 'Kreative Kids Family Child Care', '10 Wamesit Road', NULL, 'Tewksbury', 'MA', '01876', '978-851-0719', NULL, NULL, NULL, 'http://www.geocities.com/kreative_kids_childcare/Childcare.h', NULL, 'http://www.geocities.com/kreative_kids_childcare/Childcare.html
-
-Licensed Family Child Care since 1991. Infant through age 4.  President of the Family Child Care Association.', 'We are open Monday - Friday.  Hours are flexible.  Full or part time.', NULL, NULL, NULL, NULL, NULL, NULL, 'Linda Rowe', 'Owner', 'FCCA', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100627, '2008-08-14', false, '@lunch4all', 'Northeast Center for Healthy Communities', 'Mass Prevention Center', '1 Canal Street', 'Entrance C', 'Lawrence', 'MA', '01840', '978-688-2323', NULL, NULL, '978-975-7779', 'www.nc4hc.org', 'jryan@xxxxxxxxx', 'The Northeast Center for Healthy Communities provides capacity building and resources to prevention programing in the Northeast of Massachusetts.
-
-Including a Health Library.', 'Monday-Friday 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Jim Ryan', 'Director', NULL, 'Yes', 'Lending library. Contact program for more information. Access holding at www.nc4hc.org', 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101661, '2008-09-15', false, '@lunch4all', 'Greater Lowell Elder Mental Health Collaborative', NULL, '18 East Meadow Lane', NULL, 'Lowell', 'MA', '01854', '978-458-1512', NULL, NULL, NULL, 'www.eldermentalhealth.org', 'frankbaskin.gerisocialwork@xxxxxxxxx', 'To advocate for and to facilitate the development of mental health services for elders', '7 days/ 24 hours', NULL, NULL, NULL, NULL, NULL, NULL, 'frank e. baskin,LICSW', 'coordinator', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103003, '2008-10-01', false, '@lunch4all', 'Lighthouse Art School for children', NULL, '251 Foster Street', NULL, 'Lowell', 'MA', '01851', '978-937-1602', NULL, NULL, NULL, 'lighthouseartschool.com', 'engelie@xxxxxxxxxxxxxxxxxxxxxxx', 'The Lighthouse Art School in Lowell is a place for all ages to learn how to express themselves with multiple mediums of visual art, gain a greater appreciation for the beauty of art and have a lot of fun doing it.', 'Morning / Afternoon
-Day Summercamps', NULL, NULL, NULL, NULL, NULL, NULL, 'Engelie Blomerus', 'Mrs.', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101749, '2008-06-20', false, '@lunch4all', 'Salem State College', 'Center for International Education', '8 Harrison Road', NULL, 'Salem', 'MA', '01970', '978-542-6351', NULL, NULL, '978-542-7104', 'http://www.salemstate.edu/cie', 'cie@xxxxxxxxxxxxxx', 'Our English as a Second Language program prepares students and professionals. Class sizes are small and students come from all over the world. Courses include: conversation, reading and writing, academic skills, and TOEFL preparation. The Center for International Education offers academic and immigration advice (including I-20''s).', 'Monday-Friday 7:45am-5:00pm', NULL, 'Salem State College  Center for International Education', '352 Lafayette Street', 'Salem', 'MA', '01970', 'Sarah Dietrich, EdD', 'Assistant Director/ESL Coordinator', 'Salem State College', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101342, '2008-06-19', false, '@lunch4all', 'Community Software Lab', 'The CSL', 'PO Box 1418', NULL, 'Lowell', 'MA', '01853', '978-934-4350', NULL, NULL, NULL, 'thecsl.org', 'info@xxxxxxxxxx', 'The Community Software Lab writes free software. Our principle project is http://mvhub.com', 'Monday-Friday 10-6
-Saturday (variable)
-email to help@xxxxxxxxxx is generally answered within a couple hours.', NULL, 'PO Box 1418', NULL, 'Lowell', 'MA', '01853', 'Dan Macneil', 'Fearless Leader', 'n/a', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101221, '2008-07-10', false, '@lunch4all', 'Lowell Parks & Conservation Trust, Inc.', 'LP&CT', 'PO Box 7162', NULL, 'Lowell', 'MA', '01852', '978-934-0030', '888-375-1115', NULL, '978-454-7637', 'www.lowelllandtrust.org', 'info@xxxxxxxxxxxxxxxxxxx', 'The LP&CT mission is to improve the quality of life for the people of Lowell through the creation, conservation, and preservation of parks, open spaces, and special places.', 'Monday-Friday 
-9:00 AM - 5:00 PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Jane L. Calvin', 'Executive Director', NULL, 'Not Applicable', NULL, 'Yes', 'Spalding House, 383 Pawtucket Street, Lowell
-50 person meeting/presentation room - Pentucket Hall', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102728, '2008-07-15', false, '@lunch4all', 'M/A-COM Federal Credit Union', 'MFCU', '83 Merrimack Street', NULL, 'Lowell', 'MA', '01852', '978-328-5100', '866-622-6628', NULL, '978-458-8933', 'www.macomfcu.org', 'memberservices@xxxxxxxxxxxx', 'Primary Mission: To serve as the primary financial resource for our members.
-
-We strive to be your primary financial resource by offering you the most convenient and cost-effective method to manage your finances.  M/A-COM FCU is owned and operated by its members, where all members benefit from the continued drive for growth and improved earnings.  We take pride in offering all of our members the highest quality financial products and services at the most competitive rates, while nurturing the friendly and cooperative spirit of the credit union.  We are committed to the financial well-being of our members and will continue to work for the secure future of our community.', '83 Merrimack Street
-Lowell, MA 01852
-Monday: 9:00 a.m. – 4:00 p.m. 
-Tuesday: 9:00 a.m. – 4:00 p.m.
-Wednesday: 9:00 a.m. – 4:00 p.m.
-Thursday: 9:00 a.m. – 7:00 p.m.
-Friday: 9:00 a.m. – 5:00 p.m.
-Saturday: 9:00 a.m. – 12:00 p.m', NULL, NULL, NULL, NULL, NULL, NULL, 'Danielle M. Bergeron', 'Marketing Director', NULL, 'Not Applicable', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102695, '2008-07-15', false, '@lunch4all', 'Lowell Public Schools', 'Parent Information Center', '17 Kirk St.', NULL, 'Lowell', 'MA', '01852', '978-937-8986', NULL, NULL, '978-937-3468', 'www.lowell.k12.ma.us', 'pic@xxxxxxxxxxxxxxxx', 'The mission of the Parent Information Center (PIC) is to assist parents, guardians and students in accessing the educational services of the Lowell Public Schools and other community resources as well as to provide the services necessary to effectively and efficiently implement LowellÂ’s Voluntary Revised Desegregation and Educational Improvement Plan.  The Parent Information Center is devoted to making a parent''s introduction to the Lowell Public Schools a positive experience.', 'Monday - Friday
-8:00 AM - 4:00 PM
-
-Thursday
-5:00 PM - 7:00 PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Dr. Phala Chea', 'Parent Information Center Coordinator', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101386, '2008-07-15', false, '@lunch4all', 'Angel Homecare', NULL, '348 North Main Street', NULL, 'Andover', 'MA', '01810', '978-475-2244', '800-349-1142', '978-475-2244', '978-475-2448', 'www.angelhomecare.com', 'keubanks@xxxxxxxxxxxxxxxxx', 'Angel Homecare is a full-service home care agency located in Andover Massachusetts.  Our mission is to provide our clients with affordable private care and support in a home-based environment.  By providing your loved one with quality in-home care, your loved one will be in an environment that is familiar, reducing stress and allowing him/her to maintain the level of independence they are accustomed to.', 'Office hours are Monday through Friday 9:00 AM to 4:30 PM.  On-call service available 24/7 365 days per year.', 'Services include: Nursing, 24 hour live-in care, personal care, Medication reminders, caregiver relief, companionship, meal preparation, errands, transportation, light housekeeping,and homemaking services', NULL, NULL, NULL, NULL, NULL, 'Terrie Marr', 'Clinical Manager', 'Privately owned', 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100649, '2008-07-18', false, '@lunch4all', 'Arbour Counseling Services', NULL, '10 Bridge Street', 'Third F.', 'Lowell', 'MA', '01852', '978-453-5736', NULL, '978-453-5736', '978-970-5595', 'www.ArbourHealth.com', NULL, 'The mission of Arbour Counseling Services is to provide high quality out-patient mental health services.', 'Monday-Friday 9AM-9PM; Saturday 9AM-3PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Sarah A. Quinn Ph.D.', 'Director', 'Universal Health Services', 'Yes', 'Resources on mental health with a focus on Southeast Asians available. Appointments needed, contact agency.', 'No', NULL, 'No', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101034, '2008-07-18', false, '@lunch4all', 'American Red Cross of Merrimack Valley', NULL, '177 Ward Hill Avenue', NULL, 'Ward Hill', 'MA', '01835', '978-372-6871', '978-372-6871', '978-372-6871', '978-374-2233', 'www.arcmv.org', 'infomv@xxxxxxxxxxxxxxxx', 'The American Red Cross, a humanitarian organization led by volunteers and guided by its Congressional Charter and the fundamental principles of the International Red Cross Movement, will provide relief to victims of disaster and help people prevent, prepare for and respond to emergencies.', 'Monday-Friday 9AM-4:30PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Deb Duxbury', 'Dir of Emergency and Volunteer Services', 'American Red Cross', 'No', NULL, 'No', NULL, 'No', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103421, '2008-08-08', false, '@lunch4all', 'National Society of Creative Dyslexics', NULL, 'Blakes Hill Road', NULL, 'Westford', 'MA', '01886', '978-621-6619', NULL, NULL, NULL, 'www.creativedyslexics.org', 'creative@xxxxxxxxxxxxxxxxxxxxx', 'The mission of the National Society of Creative Dyslexics is to honor the creative and intellectual aspects of being an individual with dyslexia.  Bright, Talented, Intelligent.  And learning differently.
-
-Offering reading tutoring services in Orton Gillingham, and supporting families to successful educational outcomes.', 'Monday through Friday, 9am to 6pm', NULL, '8 Blakes Hill Road', NULL, 'Westford', 'MA', '01886', 'Bonnie Haley', 'Founder, Advocate, & Tutor', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102574, '2008-08-18', false, '@lunch4all', 'Merrimack River Watershed Council, Inc.', 'MRWC', '600 Suffolk Street', 'Fifth Floor', 'Lowell', 'MA', '01854', '978-275-0120', NULL, NULL, '978-275-0125', 'www.merrimack.org', 'ctabak@xxxxxxxxxxxxx', 'Our mission is to protect the Merrimack River and promote the wise use of its watershed.  We fulfill our mission through environmental monitoring, education and outreach, advocacy, recreation, and community organizing', 'M-Th 10am to 6pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Christine Tabak', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101496, '2008-10-01', false, '@lunch4all', 'Universal Child Incorporated', NULL, '194 River Road', NULL, 'Lowell', 'MA', '01852', '508-572-8828', NULL, NULL, NULL, 'http://www.universal-child.org', 'info@xxxxxxxxxxxxxxxxxxx', 'Our mission is to provide an online educational forum for the prevention of addiction.', 'Online - 24/7', NULL, '194 River Rd.', NULL, 'Lowell', 'MA', '01852', 'F. LaBranche', 'Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100539, '2008-12-15', false, '@lunch4all', 'Massachusetts Alliance of Portuguese Speakers', 'MAPS', '11 Mill Street', NULL, 'Lowell', 'MA', '01852', '978-970-1250', NULL, NULL, '978-970-0843', 'www.maps-inc.org', 'orodrigues@xxxxxxxxxxxx', 'The mission of the Massachusetts Alliance of Portuguese Speakers is to serve people from all Portuguese-speaking communities and their descendants and to help them become self-reliant and productive members of American society, while maintaining strong ethnic identity and pride.', 'Monday-Friday 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Osvalda Rodrigues', 'Director MAPS Lowell Office', 'MAPS has additional offices in Massachusetts', 'No', NULL, 'Yes', 'Yes, there is a conference room. Please call for more details.', 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102981, '2008-12-30', false, '@lunch4all', 'Greater Lawrence Technical High School', NULL, '57 River Road', NULL, 'Andover', 'MA', '01810', '978-686-0194 ext. 3041', NULL, NULL, NULL, NULL, 'jsimard@xxxxxxxxxxxxxx', 'Greater Lawrence Technical School is committed to providing high quality education to our students.', 'Monday - Friday 7AM - 3PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Jenna Simard', 'At-Risk Counselor', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101815, '2009-01-15', false, '@lunch4all', 'The Northeast Independent Living Program', 'NILP', '20 Ballard Road', NULL, 'Lawrence', 'MA', '01843', '978-687-4288', NULL, NULL, '978-689-4488', 'www.nilp.org', 'kbureau@xxxxxxxx', 'Provides services to all people with disabilities. 
-Information & Referral
-Peer Counseling
-skills Training
-Advocacy', 'M-F 9:00 am -5:00 pm', NULL, NULL, NULL, NULL, NULL, NULL, 'June Cowen', 'Executive Director', NULL, 'Yes', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', '978-687-4288', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100517, '2008-07-15', false, '@lunch4all', 'Elder Services of the Merrimack Valley, Inc.', 'ESMV', '360 Merrimack Street, Building 5', NULL, 'Lawrence', 'MA', '01843', '978-683-7747', '800-892-0890', '800-922-2275', '978-687-1067', 'www.esmv.org', 'info@xxxxxxxx', 'The mission of Elder Services of the Merrimack Valley is to insure that choices of programs and services are available and accessible to meet the diverse needs and changing lifestyles of older adults.', 'Monday-Friday 8:00AM to 5:00PM', '(800) 924-4222 TDD Number', NULL, NULL, NULL, NULL, NULL, 'Rosanne J. DiStefano', 'Executive Director', NULL, 'Yes', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101870, '2008-07-18', false, '@lunch4all', 'Vinfen', 'Vinfen', '950 Cambridge Street', NULL, 'Cambridge', 'MA', '02141', '617-441-1800', '877-284-6336', NULL, '617-441-1858', 'http://www.vinfen.org', 'info@xxxxxxxxxx', 'Established in 1977, Vinfen is a private, nonprofit human services organization that provides a comprehensive array of services to children, adolescents and adults with psychiatric, developmental, and behavioral disabilities. Vinfen supports thousands of individuals each year in more than 350 residential, respite, day, and crisis intervention programs and services in eastern Massachusetts and northern Connecticut. VinfenÂ’s 2,000 dedicated employees are experienced, highly trained professionals who provide a full range of educational, rehabilitative, and clinical services.', 'Main office: M-F / 9 a.m. to 5 p.m.', NULL, NULL, NULL, NULL, NULL, NULL, 'Gary W. Lamson', 'President & CEO', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', '617-225-2000', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102783, '2008-07-15', false, '@lunch4all', 'Lawrence Families & Youth Initiative', 'F.Y.I.', '96 East Haverhill Street', NULL, 'Lawrence', 'MA', '01841', '978-557-8400', NULL, '800-792-5200', '978-557-8410', NULL, 'drivera@xxxxxxxxx', 'The mission of F.Y.I. is to combine and integrate community, agency and family resources; to promote policy changes that will support creative, nurturing services for strengthening families and communities.  Building on principles of family-centered casework and Family Support Principles, F.Y.I. provides a unique opportunity to affect changes in the way the community responds to the needs of individual families and the needs of the community as a whole.  The Families & Youth Initiative partners work together to promote practice development and improvements in systemic functioning that support child safety well-being and permanency.', 'Monday through Friday
-9:00am till 5:00pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Delilah Rivera', 'Program Coordinator', 'GLCAC, INC.', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101276, '2008-07-15', false, '@lunch4all', 'Massachusetts Health Officers Association', 'MHOA', 'P.O. Box 417', NULL, 'West Boylston', 'MA', '01583', '508-835-3309', NULL, NULL, '508-835-3309', 'www.mhoa.com', 'admin@xxxxxxxx', 'The mission of MHOA is to assist and support staff of local health departments in meeting their statutory responsibilities to the public through programs of education, technical assistance, representation and resource development. MHOA also provides educational and informational programs to the general public on public health topics.', 'Per appt.', NULL, NULL, NULL, NULL, NULL, NULL, 'Mary-Isabel Luddy', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100726, '2008-07-15', false, '@lunch4all', 'Pollard Memorial Library', NULL, '401 Merrimack Street', NULL, 'Lowell', 'MA', '01852', '978-970-4120', NULL, NULL, '978-970-4117', 'http://www.pollardml.org/', 'mmcdermott@xxxxxxxx', 'The Pollard Memorial Library, established in 1844, provides educational, informational, recreational, and cultural materials and services to the urban population of the city of Lowell.', 'Monday - Thursday 9 AM - 9 PM, Friday & Saturday 9 AM - 5 PM (Summer closed Saturday)', '(978) 970-4129 TTY Number', NULL, NULL, NULL, NULL, NULL, 'Victoria Woodley', 'Acting Director', 'City of Lowell', 'Yes', NULL, 'Yes', 'Contact library for more information', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101463, '2008-07-15', false, '@lunch4all', 'Project Bread FoodSource Hotline', 'FoodSource Hotline', '145 Border Street', NULL, 'East Boston', 'MA', '02128', '1-800-645-8333', '1-800-645-8333', NULL, NULL, 'www.gettingfoodstamps.org', NULL, 'Project Bread''s mission is to alleviate hunger in Massachusetts.  The FoodSource Hotline provides information and screenings for the food stamp program and information about emergency food programs and low cost food programs across the state.', 'M-F 8-5', NULL, NULL, NULL, NULL, NULL, NULL, 'Diane Dickerson', 'Dir. of Emergency Food Resources', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', '1-800-377-1292', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101738, '2008-07-15', false, '@lunch4all', 'Lowell House Inc. S.O.A. P. Program', 'Enhansed Structured Outpatient Addiction Program', '555 Merrimack Street', NULL, 'Lowell', 'MA', '01854', '978-454-2997', NULL, NULL, '978-937-2559', NULL, 'lhisoap@xxxxxxxxxxx', 'The S.O.A.P. program is dedicated to treating those with drug/alcohol addiction in a full-time day program. We treat all clients who are currently on Mass Health (MBHP) as well as those with no insurance. This is a 8 week intensive program operating Monday through Friday from 9:00am to 4:00pm. Evening program is 5:30 pm to 9:00 pm
-Our goal is to treat all issues in the clients life that are stopping them from a sober and productive lifestyle.', 'Monday through Friday 9:00 am to 4:00 pm
-Monday through Thursday 5:30 pm to 9:00 pm', 'night program now available: Monday through Thursday 5:30 A.M. to 9:00 A.M.', NULL, NULL, NULL, NULL, NULL, 'Harry G. Providakes M.Div. CL1', 'Program Director', NULL, 'No', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101210, '2008-07-15', false, '@lunch4all', 'The Jericho Road Project', NULL, '20 Lexington Road', NULL, 'Concord', 'MA', '01742', '978 369 9602 X457', NULL, NULL, '978-369-8701', 'www.jerichoroadproject.org', 'dholin@xxxxxxxxxxxxxxxxxxxxxx', 'The Jericho Road Project bridges communities by matching the professional talents of volunteers with the needs of community-based nonprofit organizations and businesses to promote community development, strengthen social services, and enrich the lives of volunteers.
-
-Jericho Road''s approach to a community is pro-active (we seek out business and try to anticipate and address emerging problems or opportunities); holistic (we define our service offerings by the many different needs of our clients) and long-term (we create a permanent connection between two communities and the people who live in them.
-
- Since our launch in early 2003, our volunteers and our corporate partners have over 60 non profit organizations and small businesses through two core programs: Springboard and B.E.A.N.E.
-
-Springboard - Jericho Road''s flagship program provides customized services to nonprofits to help them achieve their goals. The type of services provided is virtually unlimited, ranging from board building, organizational assessment, and strategic planning to marketing, professional coaching and website development.
-
-Jericho Road''s other core program - Business Experts Assisting New Entrepreneurs, or BEANE - helps entrepreneurs launch and grow small businesses in Lowell by providing business training and one-on-one coaching to prospective and new entrepreneurs in need of help. This service is provided largely in partnership with the Lowell Small Business Assistance Center.', 'M-F/9-5', NULL, NULL, NULL, NULL, NULL, NULL, 'Dan Holin', 'Executive Director', NULL, 'No', NULL, 'Yes', 'Lovely, small.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100594, '2008-07-15', false, '@lunch4all', 'House of Hope Inc.', NULL, '812 Merrimack Street', NULL, 'Lowell', 'MA', '01854', '978-458-2870', NULL, '978-458-2870', '978-458-6679', 'www.hopelowell.org', 'debhoh@xxxxxxxxxxxxxx', 'The mission of House of Hope is to provide advocacy and care for 18 homeless families while affirming the dignity of life to all who are served and guiding them to self-sufficiency. Families are referred to the shelter via the State Department of Transitional Assistance, hence, rarely are we able to accommodate walk-ins.  House of Hope Housing Inc. has recently created an affiliated organization called House of Hope Housing, Inc. whose objective is to create affordable housing for families in shelter.
-House of Hope Housing has completed construction on New Hope Apartments.  New Hope is ten (10) units of service supported housing for homeless families.  New Hope is located at 203 Salem Street, behind the shelter.', '24 hours/day, 7 days/week', NULL, NULL, NULL, NULL, NULL, NULL, 'Deborah Chausse', 'Executive Director', NULL, 'No', NULL, 'Yes', 'A conference room may be available. Contact agency for details.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102893, '2008-07-15', false, '@lunch4all', 'UnionStudio Yoga', NULL, '305 North Main Street', 'Tactician Building', 'Andover', 'MA', '01810', '978-866-7944', NULL, NULL, NULL, 'www.unionsudioyoga.com', 'unionstudioyoga@xxxxxxxxx', 'At UnionStudio Yoga we are aspiring to bring together a variety of class offerings, yoga styles, and individual and group workshops to support the differing needs and lifestyles of our students.
-
-We are committed to offering free yoga classes to the community so that all may experience the benefits of yoga.', 'Classes offered 7 days a week.
-Free Community Yoga offered Friday 11:15-12:30pm.', NULL, NULL, NULL, NULL, NULL, NULL, 'Connie Glore RYT', 'co-owner', NULL, 'Yes', 'Books available on loan from the studio.', 'Yes', 'Located in the Tactician Building in Shawsheen Village, centrally located with plenty of off-street parking, UnionStudio is a beautiful place to learn and practice yoga.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102596, '2008-07-15', false, '@lunch4all', 'The Children and Family Law Program', 'CAFL Lowell', '40-44 Church Street', NULL, 'Lowell', 'MA', '01852', '978-446-3917', NULL, NULL, '978-446-3916', NULL, 'jrodriguez@xxxxxxxxxxxxxxxxx', 'The Children and Family Law Program of the Massachusetts Committee for Public Counsel Services provides legal representation to indigent parents and children in state intervention/child welfare matters, including care and protection proceedings, children in needs of services cases (CHINS), actions to dispense with parental consent to adoption, and any other proceeding regarding child custody where the Department of Social Services is a party or where the court is considering granting custody to the Department. See G.L. c.119, §29; G.L. c.210, §3; Balboni v. Balboni, 39 Mass. App. Ct. 210 (1995). Representation is provided by a panel of private court appointed attorneys and by staff attorneys in our Boston, Brockton, Lowell, Salem, Springfield and Worcester offices.', 'Monday through Friday 9am-5pm', NULL, '40-44 Church Street', NULL, 'Lowell', 'MA', '01852', 'Anita Sullivan', 'Attorney in Charge', 'CAFL', 'No', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102827, '2008-07-15', false, '@lunch4all', 'Prime Staffing Services,LLC', 'Support and Relief Staff', '40 Witherbee Ave', NULL, 'Revere', 'MA', '02151', '781-336-9123', NULL, '781-336-9123', '781-715-6171', NULL, 'dabainou@xxxxxxxxxxx', 'Prime staffing services,LLC. Takes a great pride in the ability to offer highly qualified staff who stand ready to meet the needs of individuals with developmental disabilities,with mental illness,behavioral health disabilities,emotinaldifficulties,by assisting and supervising with daily living activities.
-Our highly trained staff are skilled at finding solutions to help each person to live a full and enjoyable life.', '7 days/ 24hours', NULL, NULL, NULL, NULL, NULL, NULL, 'Driss Abainou', 'President', 'Prime Staffing Services,LLC', 'Not Applicable', NULL, 'Not Applicable', NULL, 'No', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101485, '2008-07-15', false, '@lunch4all', 'Lawrence Tobacco Free Partnership', NULL, 'One Canal St, Entrance C', NULL, 'Lawrence', 'MA', '01840', '978-688-2323 x 8618', NULL, NULL, '978-975-7779', NULL, 'dknight@xxxxxxxxx', 'The Lawrence Tobacco Free Partnership strives to reduce youth access to tobacco products; prevent first time use of tobacco products; help smokers to quit; and protect nonsmokers from the effects of environmental tobacco smoke by implementing smoking intervention projects.We accomplish this in collaboration and partnership with individuals,organizations and communities in Lawrence. The Partnership is a program of the Mass Dept of Public Health.', 'Monday-Friday 9am-5PM', NULL, 'Lawrence Tobacco Free Partnership', 'One Canal St., Entrance C', 'Lawrence', 'MA', '01840', 'Diane Knight', 'Coordinator', 'Greater Larence Family Health Center/ Ma Dept of Public Heal', 'Yes', 'The Lawrence Tobacco Free Partnership office is located at the Northeast Center for Healthy Communities, which includes a free, health resource library. On line at www.nc4hc.org', 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102222, '2008-07-15', false, '@lunch4all', 'Forward Motion Coaching', NULL, 'PO Box 89', NULL, 'West Boylston', 'MA', '01583', '508-835-2482', NULL, NULL, NULL, 'www.ForwardMotion.info', 'forwardmotion@xxxxxxxxxxx', 'Career development coaching for adults with Asperger''s Syndrome and Nonverbal Learning Disorder; consultation and training to organizations. Individual coaching can include career exploration, skills practice, interview skills, strategies on the job. I also provide advocacy services for individuals who are facng a disciplinary action at work or need help with an accommodation request.', 'In-person sessions are by appointment only in Wellesley and Worcester MA (Mon -- Fri)', NULL, NULL, NULL, NULL, NULL, NULL, 'Barbara Bissonnette', 'Principal', NULL, 'No', NULL, 'No', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102530, '2008-07-15', false, '@lunch4all', 'YMCA Haverhill', NULL, '81 Winter Street', NULL, 'Haverhill', 'MA', '01830', '978-374-0506', NULL, NULL, '978-373-0710', 'http://www.northshoreymca.org/pages/11491_haverhill_ymca.cfm', 'fullert@xxxxxxxxxxxxxxxxxx', 'The YMCA of the North Shore is committed to the values of caring, honesty, respect and responsibility.  Our YMCA provides all children, adults and families, regardless of income, with opportunities to develop a healthy spirit, mind and body. Through organized activities called programs we are able to work toward this.  Our goals are to nurture the healthy development of children and teens, to strengthen families, and to make our community a healthier, safer and better place to live.', 'Mon-Fri: 8:30AM-9:PM, Sat: 8:AM-8:PM, Sun: 9:AM-5:PM.', NULL, NULL, NULL, NULL, NULL, NULL, 'Tracy Fuller', 'Executive Director', 'YMCA of the North Shore', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100121, '2008-07-15', false, '@lunch4all', 'Greater Lowell Family YMCA', NULL, '35 YMCA Drive', NULL, 'Lowell', 'MA', '01852', '978-454-7825', NULL, NULL, '978-454-8982', 'http://www.greaterlowellYMCA.org', 'atsoukaris@xxxxxxxxxxxxxx', 'The mission of the Greater Lowell Family YMCA is to put Christian principles into practice through programs that build healthy spirit, mind and body for all.', 'Monday - Friday 5:00 AM - 10:00 PM
-Saturday 7:00 AM - 7:00 PM
-Sunday 7:00 Am - 4:00 PM
-Memorial Day Weekend - Labor Day Weekend
-Sunday hours 7:00 Am - Noon
-
-Summer Hours - The only change is Sundays 7:00 AM to NOON', NULL, NULL, NULL, NULL, NULL, NULL, 'Ray Adams', 'Executive Director', 'YMCA of the USA', 'No', NULL, 'Yes', 'Space is available for racquetball soup kitchen; pool parties, etc.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102090, '2008-07-15', false, '@lunch4all', 'North Star Guidance Center, Inc.', NULL, '21 Glen Ave', NULL, 'Chelmsford', 'MA', '01824', '978-256-0667', NULL, '978-507-8009', '978-256-5567', 'http://www.northstarguidanceinc.com', 'northstargcinc@xxxxxxx', 'At NSGC, Inc. we believe in a family-centered, community focused practice. We maintain an unwavering commitment to building strong, healthy relationships between children, parents, caretakers, supportive community resources, and service providers.  
-
-Our organization provides a variety of comprehensive counseling services in the Greater Lowell Area.  Individual, group, couples, and family therapy are all approached from a strength based, solution focused, action oriented, expressive, and systemic perspective. 
-
-At NSGC, Inc. we employ seasoned professionals that are experienced and confident in providing home based, school based, and outpatient services to children, adolescents, adults, couples, and families.', 'Monday-Friday 9:00-8:00', NULL, NULL, NULL, NULL, NULL, NULL, 'Laura McLaughlin, M.Ed., LMFT, LMHC', 'Executive Director', NULL, 'Yes', 'Website links to community resources.', 'Yes', 'Classroom and group space available for 12 people', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100748, '2008-07-15', false, '@lunch4all', 'Merrimack Valley Housing Partnership', 'MVHP', '10 Kirk Street', NULL, 'Lowell', 'MA', '01852', '978-459-8490', NULL, NULL, NULL, 'www.mvhp.org', 'mvhp@xxxxxxxx', 'The mission of the Merrimack Valley Housing Partnership is to promote home ownership opportunities for low and moderate income earners.', 'Monday-Friday 9AM-5PM. Classes are held in the evening at Middlesex Community College from 6:30 p.m. until 9:00 p.m.', NULL, 'P.O. Box 1042', NULL, 'Lowell', 'MA', '01853', 'Jim Wilde', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101628, '2008-07-15', false, '@lunch4all', 'Center for Women & Work at UMass Lowell', 'CWW', '850 Broadway Street, Suite  #1,  Room B11', NULL, 'Lowell', 'MA', '01854', '978-934-4380', NULL, NULL, '978-934-4053', 'http://www.uml.edu/centers/women-work/', NULL, 'The Center for Women and Work (CWW) at the University of Massachusetts Lowell is an interdisciplinary center dedicated to exploring the gendered conditions of work, challenging inequities, and thereby enhancing well-being and economic opportunities for all women.', 'Monday-Thursday 9am-2pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Meg A. Bond', 'Director', 'University of Massachusetts Lowell', 'Yes', 'small library related to women and work', 'Yes', 'We have a small conference room that can comfortably accommodate small groups.  Please call to schedule.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100638, '2008-07-16', false, '@lunch4all', 'Brush Art Gallery and Studios', 'A Brush With History', '256 Market Street', NULL, 'Lowell', 'MA', '01852', '978-459-7819', NULL, NULL, '978-453-9886', 'www.thebrush.org', 'director@xxxxxxxxxxxx', 'The mission of the Brush Art Gallery and Studios is to nurture the working artist, to keep the visual arts alive and healthy in the heart of the Lowell Historic District, to demonstrate through exhibitions and cultural programming the diverse and rich heritage that exists in Lowell; and to make Lowell a destination for viewing some of the finest art being produced in New England and beyond.', 'April 1 - December 31: Tuesday-Saturday 11AM-4PM; Sunday 12PM-4PM; January 1-March 31: Wednesday-Saturday 11PM-4PM; Sunday 12-4PM', NULL, NULL, NULL, NULL, NULL, NULL, 'E. Linda Poras', 'Executive Director', NULL, 'No', NULL, 'Yes', 'One medium size classroom for education / art classes or private lessons are available on request. The gallery is available to be rented out for meetings and receptions.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100924, '2008-07-16', false, '@lunch4all', 'Habit OPCO', 'Habit Management', '650 SUFFOLK STREET', NULL, 'Lowell', 'MA', '01854', '978-452-5155', NULL, NULL, '978-970-0713', 'www.habitopco.com', 'jjm@xxxxxxxxxxxxx', 'Habit Management is a Substance Abuse Treatment organization that provides outpatient opiate treatment services to communities in need in a manner which respects an individual''s worth and recognizes their desire to improve the quality of their lives.', 'Monday-Friday 6AM-1PM (counseling) Staff available until 4PM; Dosing Monday-Friday 6AM-11:15AM; Saturday-Sunday 6:15-10:15AM', NULL, 'ATTN: Jerry Myers', '650 Suffolk St.', 'Lowell', 'MA', '01854', 'Jerry Myers', 'Program Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', '978-970-0724', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101353, '2008-07-16', false, '@lunch4all', 'Better Business Bureau, Inc. Serving Eastern MA, ME & VT', 'BBB', '235 West Central Street Suite 1', NULL, 'Natick', 'MA', '01760', '508-652-4800', NULL, NULL, '508-652-4833', 'www.boston.bbb.org', 'info@xxxxxxxxxxxxxx', 'Our mission is to promote and foster the highest ethical relationship between businesses and the public through voluntary self-regulation, consumer and business education,and service excellence.', 'Normal business hours.  Also online 24 hours a day, 7 days a week on www.boston.bbb.org.', NULL, NULL, NULL, NULL, NULL, NULL, 'Paula Fleming', 'Vice President of Communications and Marketing', NULL, 'Yes', 'The BBB has a wealth of information and topics for consumers and businesses.  Visit www.boston.bbb.org for purchase and protection tips, practical pointers, advisories, warnings, alerts, news releases, educational campaigns, etc', 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100429, '2008-07-16', false, '@lunch4all', 'Saints Medical Center', 'SMC', 'One Hospital Drive', NULL, 'Lowell', 'MA', '01852', '978-458-1411', NULL, NULL, NULL, 'www.saintsmedicalcenter.com', 'eberube@xxxxxxxxxxxxxxxxxxxxxxx', 'The mission of Saints Medical Center:
-To continue the healing ministry of Jesus to those in need according to the times.', '24 Hours a day, 7 days a week', NULL, NULL, NULL, NULL, NULL, NULL, 'Michael Guley', 'President & CEO', NULL, 'Yes', 'Health related resource library. Call 978-458-1411 for more information', 'Yes', 'Outside groups are required to pay a room rental charge. Call extension 4017 to reserve a conference room', 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101089, '2008-07-16', false, '@lunch4all', 'Habitat for Humanity of Greater Lowell', 'Habitat for Humanity', '66 Tadmuck Road', 'Suite 5', 'Westford', 'MA', '01886', '978-692-0927', NULL, NULL, NULL, 'www.lowellhabitat.org', 'info@xxxxxxxxxxxxxxxxx', 'Habitat for Humanity of Greater Lowell (HFHGl) strengthens families and communities in need through affordable homeownership. Through volunteer labor and in-kind and monetary donations, HFHGL builds and rehabilitates homes for families earning between 25 and 50 percent of the area median income.', '9:00 a.m. - 5:00 p.m. If the HFHGL voice mail picks up, please leave you name and number and someone will return your call.', NULL, NULL, NULL, NULL, NULL, NULL, 'Bill Mersch', 'Board of Directors President', 'Habitat for Humanity International', 'Not Applicable', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102189, '2008-07-16', false, '@lunch4all', 'Team Coordinating Agency, Inc.', 'TCA', '66-76 Winter Street', NULL, 'Haverhill', 'MA', '01830', '978-373-1181 x38', NULL, NULL, '978-374-7605', NULL, 'sgrady@xxxxxxxxxx', 'Team Coordinating Agency, Inc. is a private, nonprofit social service agency that advocates for the physical and mental well being of individuals, families, and the community.  We provide a wide range of services that include prevention and treatment of addiction, children''s services, and mental health treatment in residential, outpatient and forensic settings.  TCA, Inc. remains committed to its founding mission of providing quality services by responding to the changing needs of the community.  We accomplish this by providing advocacy, education, and treatment to promote personal development and growth that empowers individuals to lead personally satisfying, meaningful and productive lives.', 'Agency hours are Monday through Thursday 9AM to 8PM, Fridays 9AM to 5PM and Saturdays 10AM to 2PM.', NULL, NULL, NULL, NULL, NULL, NULL, 'Susan Grady, LICSW', 'Ambulatory Services Director', NULL, 'Not Applicable', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100660, '2008-07-16', false, '@lunch4all', 'MassRIDES', NULL, 'P.O. Box 121242', NULL, 'Boston', 'MA', '02112', '888-426-6688', '888-426-6688', NULL, '617-892-6090', 'www.commute.com', NULL, 'The mission of MassRIDES is for Commuters to reduce roadway congestion, conserve energy and improve air quality in Massachusetts by encouraging alternatives to driving alone such as biking, walking, taking transit, carpooling, vanpooling, etc.', 'Monday-Friday 8:00AM - 5:00PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Kay Carson', 'Project Manager', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100066, '2008-07-16', false, '@lunch4all', 'Center For Family Development of Lowell', NULL, '45 Merrimack Street, Suite 200', NULL, 'Lowell', 'MA', '01852', '978-459-2306', NULL, NULL, '978-453-9394', NULL, 'richardhassinger@xxxxxxxxxxx', 'The mission of the Center for Family Development is to provide comprehensive, high quality mental health services to the greater Lowell Community.', 'Monday-Thursday 8AM-8PM; Friday 8AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Richard Hassinger', 'Clinical Director', 'Comprehensive Outpatient Services', 'No', NULL, 'No', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102002, '2008-07-16', false, '@lunch4all', 'Aspirations', NULL, 'The University of Massachusetts Lowell, Dept. of Psychology', '1 Mahoney Hall, 870 Broadway Street', 'Lowell', 'MA', '01854', '978-934-2930', NULL, NULL, '978-934-3074', 'http://faculty.uml.edu/ahillier/aspirations.htm', 'ashleigh_hillier@xxxxxxx', 'Aspirations is a social and vocational skills support group for high functioning adolescents and young adults on the autism spectrum aged from 18-30 years.  Aspirations is designed to provide the opportunity to discuss social and vocational skills in a small group setting. Group members are guided in ways to improve their social and vocational skills. Group leaders familiar with autism spectrum disorders facilitate an atmosphere of acceptance and friendship. Developing self-awareness, social insight, and independence are central themes of Aspirations. Aspirations also provides an opportunity for group members to meet others on the autism spectrum and gain support and understanding from one another.  Participants are encouraged to develop friendships with other group members. 
-Aspirations runs for nine weeks and meets once a week on Tuesdays from 6.15-7.30pm at the University of Massachusetts, Lowell south campus. We run the program twice a year, once in Fall and once in Spring. 
-We also have a facilitated parent support group which runs at the same time and place as the Aspirations program. This gives parents the opportunity to meet, talk and share useful information.', 'Once a week for 9-weeks, Tuesdays 6.15-7.30pm.', NULL, NULL, NULL, NULL, NULL, NULL, 'Ashleigh Hillier, Ph.D.', 'Assistant Professor of Psychology', 'The University of Massachusetts Lowell', 'No', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102849, '2008-07-16', false, '@lunch4all', 'Ellen H. Korin, M.Ed.', NULL, '10 COACH RD', NULL, 'Lexington', 'MA', '02420', '781-861-6431', NULL, '339-223-0928', '781-652-0436', 'www.ellenhkorin.com', 'ekorin@xxxxxxx', 'Providing consultation and coaching services to persons with autism spectrum disorders, notably Asperger Syndrome and Non Verbal Learning Disabilities.  Accepts clients from the age of 12 through adulthood. 
-  In addition, offers customized professional development programs for educators, clinicians, parents and teens and adults on the spectrum.', 'Appointments arranged per client needs - Office hours on Wednesdays in Arlington; in home office on other days.', NULL, NULL, NULL, NULL, NULL, NULL, 'Ellen H. Korin', 'Consultant and Coach', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101430, '2008-07-16', false, '@lunch4all', 'Lowell Special Education Parent Advisory Council', 'Lowell Sped PAC', 'PO Box 1192', NULL, 'Lowell', 'MA', '01853', '978-454-1967', NULL, NULL, NULL, NULL, 'lowellspedpac@xxxxxxx', 'As a Parent Advisory Council(PAC), we promote understanding between parents, teachers and the Special Education Department.  We facilitate communication within the community regarding special education, provide information on available programs, offer information to parents and provide workshops and support.  The PAC also serves as a resource to other citizens of Greater Lowell who are concerned about special education and special needs issues.', 'Meetings are held on the first Thursday of the month October through June. The PAC meets at the Butler School (1140 Gorham St)from 7:00 P.M. to 9:00 P.M.', NULL, NULL, NULL, NULL, NULL, NULL, 'Linda Gignac', 'Member', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103399, '2008-07-17', false, '@lunch4all', 'International Medical Equipment Collaborative', 'IMEC', '1600 Osgood Street', NULL, 'North Andover', 'MA', '01845', '978-557-5510', NULL, NULL, '978-557-5525', 'www.imecamerica.org', 'volunteer@xxxxxxxxxxxxxxx', 'International Medical Equipment Collaborative is a non-profit organization
-in North Andover whose mission is to serve doctors and nurses in
-developing countries by providing them with quality medical equipment to
-advance the standard of health for their nation''s poor. IMEC fulfills its
-mission by working with other humanitarian organizations to revitalize
-existing, impoverished hospitals with donated surplus medical equipment
-and supplies that are acquired, repaired and packaged by donated
-volunteers.', 'Monday through Friday 9am-4pm
-Saturdays (on scheduled basis)', NULL, NULL, NULL, NULL, NULL, NULL, 'Thomas Keefe', 'President and Founder', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101122, '2008-07-22', false, '@lunch4all', 'The Caleb Group', NULL, '491 Humphrey Street', NULL, 'Swampscott', 'MA', '01907', '781-595-4665', NULL, NULL, '781-592-0770', 'www.thecalebfoundation.org', 'hsawyer@xxxxxxxxxxxxxxxxxxxxxx', 'The Caleb Group, Inc.
-
-Building Community, One Spirit at a Time
-
-The Caleb Group is an interfaith organization that coordinates services to enhance and empower the lives and spirits of low and moderate-income elderly, disabled and families in affordable housing communities. This is accomplished by, both responding to felt resident needs, and intentionally building a strong sense of community and mutual respect.
-
-Some programs 
--Community centers
--Computer learning centers
--Self-enrichment workshops
--Transportation to health care
--Tutoring and mentoring for at-risk youth and teens.
--Summer camp opportunities for youth
--Job training and legal service referrals
--G.E.D. certification courses
--support groups. 
-
-**********************************************************
-
-
-Mission Statement
-
-	The mission of The Caleb Group, Inc. is the changing of lives, freeing of the human spirit, and enhancing and promoting self-reliance by coordinating resident services for low and moderate income elderly and families as well as the homeless and handicapped. This is accomplished by responding to felt resident needs, and by intentionally building a strong sense of community and mutual respect.
-
-To accomplish the mission The Caleb Group will: 
-
-Provide qualified staff to serve as Resident Service Coordinators on-site at each property affiliated with the Caleb Foundation or under contract with independent owners.
-	
-Empower tenants by involving them in various aspects of decision making in managing the property, often by organizing Resident Advisory Committees.
-
-Survey tenant needs to determine what supportive services are needed for the residents and arrange low-cost solutions such as computer learning centers, adult education opportunities, developmental programs for community youth, and the coordination of meals, medical and social support.
-
-Encourage a healthy community environment by inviting local service agencies onto each 	property to run specific developmental programs for youth, family and or elderly.
-
-Network with like organizations and service agencies in the local area to leverage available resources and optimize community services.', 'Monday through Friday 9-5 PM', 'Eight computers are linked to the internet.', '77 Chestnut Street', NULL, 'Lowell', 'MA', '01852', 'Veronica Holmes', 'Service Coordinator', NULL, 'Not Applicable', NULL, 'Yes', 'There is a community room with warming kitchen as well as a computer learning center with 8 computers and training software for Lowell residents wishing to learn computer skills.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100132, '2008-07-23', false, '@lunch4all', 'Pathfinder / Safe Haven', NULL, '94 Rock Street', NULL, 'Lowell', 'MA', '01854', '978-459-3387', NULL, NULL, '978-970-1096', 'http://www.bridgewell.org', 'pathfinder@xxxxxxxxxxxxxx', 'Pathfinder/Safe Haven''s mission is to work toward the end of homelessness in Lowell. This is executed with an attack on homelessness. Pathfinder/Safe Haven specifically serves the needs of the mentally ill homeless population with safe-havens and generally serves the needs of all the homeless with cooperative outreach efforts. By understanding the nature of mental illness and the other causes and perpetuators of homelessness, Pathfinder/Safe Haven is able to help the homeless better manage their lives. After fulfilling immediate safety and survival needs, Pathfinder/Safe Haven broadens the pyramid to teach the homeless it serves the skills necessary to regain and maintain the highest degree of autonomy possible. Pathfinder/Safe Haven harnesses the education and life experience of its staff and participants to provide a multi level service plan capable of satisfying the diverse needs of the homeless. Placing emphasis on housing and hunger issues, medical and mental health care, substance abuse counseling, and job training and education, Pathfinder/Safe Haven provides the homeless a safe, sober environment and the support necessary to make a successful transition from the street.', 'Monday-Sunday 8AM-8PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Kristin Ross-Sitcawich', 'Program Director', 'Bridgewell, Inc', 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101958, '2008-07-24', false, '@lunch4all', 'Lowell Treatment Center', NULL, '391 Varnum Avenue', NULL, 'Lowell', 'MA', '01854', '978-322-5160', NULL, '800-222-2237', NULL, 'www.arbourhealth.com', 'arbourhealth@xxxxxxxxxxxxxx', 'Lowell Treatment Center offers inpatient treatment for children and adolescents, partial hospitalization programs for adolescents and adults, and a Family Stabilization Team.', '24 hours a day, 7 days a week.', NULL, NULL, NULL, NULL, NULL, NULL, 'Ralph Lawson', 'Director', 'Arbour Health System', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102453, '2008-07-24', false, '@lunch4all', 'Lawrence Boys and Girls Club', NULL, '136 Water Street', NULL, 'Lawrence', 'MA', '01841', '978-683-2747', NULL, NULL, '978-725-5989', 'http://www.lawrencebgc.com', 'mfischer@xxxxxxxxxxxxxxx', 'The mission of the  Boys & Girls Club of Lawrence is to maintain a Club for all youth without distinction of race, sex, color or creed; to provide behavior guidance, and to promote the health, social, educational, vocational and character development of all its members.', 'Mon - Fri: Summer Months: 9:45AM - 3:45PM
-Mon - Fri: School Months: 3:00PM - 7:00PM for ages 7 thru 9, and 3:00 PM - 10:30PM for ages 10+.', NULL, NULL, NULL, NULL, NULL, NULL, 'Markus Fischer', 'Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100297, '2008-07-24', false, '@lunch4all', 'Lowell Transitional Living Center, Inc.', NULL, '189 Middlesex Street', NULL, 'Lowell', 'MA', '01852', '978-458-9888', NULL, '978-458-9888', '978-452-2186', NULL, 'pduda@xxxxxxxx', 'Lowell Transitional Living Center is a community supported non-profit organization that provides safe, temporary shelter for homeless men and women of Greater Lowell. In a multi-service environment, volunteers and staff provide opportunities for individuals to end their homelessness.', '24 hours/day, 7 days a week, 365 days per year', NULL, NULL, NULL, NULL, NULL, NULL, 'Peter Duda', 'Executive Director', NULL, 'No', NULL, 'Yes', 'AA meetings daily 2-3 pm', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100099, '2008-07-30', false, '@lunch4all', 'Boys & Girls Club of Greater Lowell, Inc.', 'Lowell Boys Club', '657 Middlesex Street', NULL, 'Lowell', 'MA', '01851', '978-458-4526', NULL, NULL, '978-453-9740', 'www.lbgc.org', 'isienko@xxxxxxxx', 'The mission of the Boys & Girls Club of Greater Lowell is to inspire and enable all youth, especially those from disadvantaged circumstances, to realize their full potential as caring, responsible citizens.', 'School Year:  
-Mon.-Fri. 2:00-6:00 7-18 year olds
-Mon & Wed 2:00-8:00 teens (13-18 years
-Holidays/School vacation weeks:  10:00 - 5:00', 'Seasonal programs are offered in five core areas of the Club:  Sports, Fitness & Recreation, Education & Careers, Health & Life Skills, Leadership & Development and The Arts 
-
-The Club also offers off-site programming in collaboration with Lowell Housing Authority at the North Common Village and Flanagan Centers.  The Club offers a satellite program in Centralville at the Monsignor Keenan Playground (aka Eagle Park) and during the winter will identify an indoor location to serve the youth of Centralville in their neighborhood.', NULL, NULL, NULL, NULL, NULL, 'Michelle Hatem-Meehan', 'President', 'Boys & Girls Clubs of America', 'Yes', 'Newly developed Learning Center complete with books for youth and teens, computers for research, homework help and reading and writing projects.', 'Yes', 'Teen Room, computer lab, matted room, multipurpose room, Fitness facility, gym,pool, Learning Center, Gameroom, Arts & Crafts room, Snack Room. Call for more information if you would like to learn more about room rentals for meetings and events.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101001, '2008-07-30', false, '@lunch4all', 'Consumer Credit Counseling Service of Southern New England', 'CCCS', '8 Winter Street', 'Suite 700', 'Boston', 'MA', '02108', '866-889-9347', '866-889-9347', NULL, '617-960-8299', 'www.moneymanagement.org', 'bill.hylan@xxxxxxxxxxxxxxxxxxx', 'We improve lives through financial education.', 'Monday-Thursday 9AM-5PM - counseling available on phone, internet and in person.', NULL, NULL, NULL, NULL, NULL, NULL, 'Ivan Hand', 'President', 'Money Management International', 'No', 'Resources on-line at http://www.moneymanagement.org', 'Yes', 'Facilities for conducting literacy education are available at several sites in MA, CT and RI -- contact for more information.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100946, '2008-07-30', false, '@lunch4all', 'Clarendon Family Day Care, Inc.', NULL, 'C/O Holden Center 220 Pawtucket Street, 2nd floor', NULL, 'Lowell', 'MA', '01854', '978-454-3026', '800-875-1234', NULL, '978-452-2073', 'www.clarendonfamilydaycare.org', 'yruiz@xxxxxxxxxxxxxxxx', 'Clarendon''s mission is to provide quality, culturally sensitive and affordable child care services to local families; promote small business and professional development opportunities for men and women in the Massachusetts family child care industry; provide professional child care services and additional support services to assist the efforts of parents working to improve their family''s quality of life and to ensure a safe, nurturing environment to enhance the growth and development of each child to whom we provide services.', 'Hours vary - contact program', NULL, '200 The Great Road, Suite 258', NULL, 'Bedford', 'MA', '01730', 'Y Ruiz', 'Regional Director', NULL, 'Yes', 'Books, Toys, Puzzles, Computers with Childrens learning games and internet browsing (Great to do research on).', 'Yes', 'Many different area''s within the Hospital, ranging from small to ex-large.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101936, '2008-08-01', false, '@lunch4all', 'Greater Lawrence Family Health Center', 'GLFHC', '34 Haverhill Street', NULL, 'Lawrence', 'MA', '01841', '978-686-0090', NULL, NULL, NULL, 'www.glfhc.org', NULL, 'To improve and maintain the health of individuals and families in the Merrimack Valley by providing a network of high quality comprehensive services and by training health care professionals to respond to the needs of a culturally diverse population.', 'Headquarters – Clinica Principal
-34 Haverhill Street (978) 686-0090
-Monday, Wednesday, & Thursday: 8:00 AM – 8:30 PM
-Tuesday: 8:00 AM – 9:30 PM
-Friday: 9:00 AM – 9:00 PM
-Saturday: 8:45 AM – 4:30 PM
-Sunday: 12:30 PM – 4:30 PM
-
-North Site – Clinica del Norte
-150 Park Street (978) 685-1770
-Monday, Wednesday, & Thursday: 8:00 AM – 4:30 PM
-Tuesday: 8:00 AM – 8:30 PM
-Friday: 9:00 AM – 4:30 PM
-
-South Site – Clinica del Sur
-73D Winthrop Avenue (Plaza 114) (978) 686-3017
-Monday & Wednesday: 8:00 AM – 8:30 PM
-Tuesday & Thursday: 8:00 AM – 4:30 PM
-Friday: 9:00 AM – 4:30 PM
-
-West Site – Clinica del Oeste
-700 Essex Street (978) 689-2400
-Monday, Tuesday, & Thursday: 8:00 AM – 4:30 PM
-Wednesday: 8:00 AM – 8:30 PM
-Friday: 9:00 AM – 4:30 PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Robert Ingala', 'CEO', NULL, 'Yes', 'Northeast Center for Healthy Communities: A resource information center serving 48 north of Boston communities', 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101903, '2009-02-08', false, '@lunch4all', 'A Woman''s Concern Pregnancy Health Services', 'AWC', '103 Broadway', NULL, 'Revere', 'MA', '02151', '781-284-8747', NULL, '866-435-7292', '781-284-1167', 'www.awomansconcern.org', 'tlarkin@xxxxxxxxxxxxxxxxxx', 'To provide free pregnancy testing and ultrasound exams (when indicated)as well parenting programs, mentoring programs for both mothers and dads, referrals, infant & toddler clothing, maternity clothing', 'Monday - Thursday 9:30-5:30
-Friday 9:30-3:30
-Saturday 2x per month', NULL, NULL, NULL, NULL, NULL, NULL, 'Teresa Larkin', 'Center Director', NULL, 'Not Applicable', NULL, 'No', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100374, '2008-08-01', false, '@lunch4all', 'Rape Crisis Services of Greater Lowell', NULL, '144 Merrimack Street, Suite 304', NULL, 'Lowell', 'MA', '01852', '978-452-7721', '800-542-5212', '800-542-5212', '978-458-2822', 'www.rcsgl.org', 'shpakgage@xxxxxxxxx', 'Rape Crisis Center of Greater Lowell is dedicated to the healing and empowerment of survivors of rape and sexual assault through counseling, advocacy, and education. RCSGL is committed to creating an environment where sexual violence and other forms of oppression are eradicated. RCSGL is committed to create a community where individuals and society can break the silence that surrounds assault.', 'Monday-Friday 9AM-5PM; After hours availability through 24 hour hotline', '(978) 452-8723 TDD Number', NULL, NULL, NULL, NULL, NULL, 'Sun He Pak Gage', 'Executive Director', NULL, 'Yes', 'Available by pre-arrangement only', 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', '978-452-8723', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101595, '2008-08-01', false, '@lunch4all', 'All Staff, LLC', 'All Staff', '1565 Main Street', 'Building 2, 3rd floor', 'Tewksbury', 'MA', '01876', '978-863-0361', NULL, '978-863-0361', '978-863-1974', 'http://www.allstaff.us', 'support@xxxxxxxxxxx', 'All Staff mission is to provide relief staff to the human service field.', 'Office is open 9a-5p Mon-Fri 
-24/7 phone coverage', NULL, NULL, NULL, NULL, NULL, NULL, 'Frederick Porter', 'CEO', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101584, '2008-08-01', false, '@lunch4all', 'Orchestra of Indian Hill', 'Indian Hill Music', '36 King Street', NULL, 'Littleton', 'MA', '01460', '978-486-9524', NULL, NULL, '978-486-9844', 'www.indianhillmusic.org', 'info@xxxxxxxxxxxxxxxxxxx', 'Greater Boston''s premier professional orchestra, led by Artistic Director & Conductor Bruce Hangen, presents a six-concert classical and pops series at Littleton High School Performing Arts Center (56 King Street). Additionally, Indian Hill Music offers jazz, chamber music, musical theater and family events at its own concert venue at 36 King Street.', 'Office: 9 am - 5 pm
-Ticket prices vary. Free concerts also offered.', NULL, 'PO Box 1484', NULL, 'Littleton', 'MA', '01460', 'Susan Randazzo', 'Executive Director', NULL, 'Not Applicable', NULL, 'Yes', '150 seat hall is available for meetings and functions', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', '800-439-2370', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100440, '2008-08-01', false, '@lunch4all', 'Visiting Nurse Association of Greater Lowell', 'VNA of Greater Lowell', '336 Central Street', NULL, 'Lowell', 'MA', '01852', '978-459-9343', '800-349-8585', NULL, '978-441-0007', 'www.vnalowell.org', 'community@xxxxxxxxxxxxx', 'The VNA of Greater Lowell, a trusted community leader since 1909, is committed to providing the highest quality home health care. We believe that every person is entitled to receive individualized, comprehensive and culturally appropriate health care. We use every available resource and collaborate with others in providing our services. We recognize the dedication of our employees and commit our resources to their growth and development. Our values: Respect, Integrity, Compassion, Enhancement of Practice.', '24 hours a day, 7 days a week', NULL, '336 Central Street', NULL, 'Lowell', 'MA', '01852', 'Nancy L. Pettinelli', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101166, '2008-08-01', false, '@lunch4all', 'The Single Life Inc.', 'TSL', 'P O Box 8222', '.', 'Lowell', 'MA', '01853', '978-441-2765', NULL, NULL, NULL, 'thesinglelife.org', 'info@xxxxxxxxxxxxxxxxx', 'The Single Life is a non-profit organization of independent but related chapters whose purpose is to provide single people with a social outlet and the opportunity to meet, communicate and establish friendships with each other. We are not a support group; however, members are supportive of and toward each other. Discussions meeting nights allow members to express ideas if they wish and listen to others, which promotes deeper understanding and friendship. In addition, organized social activities provide fun and entertainment for everyone.
-
-The Single Life is for mature singles age 50 plus who are Divorced, Widowed, Separated, (not living with spouse or partner)and Single.', 'Office Hours: By appointment only', 'Individual chapters are located throughout Northeastern Massachusetts and Southern New Hampshire and serve the following areas:
-Acton, Billerica, Beverly, Cape Ann, Concord, Chelmsford, Danvers, Everett, Greater Haverhill, Ipswich, Lexington, Lowell, Lynn, Peabody, Malden, Medford, Merrimack Valley, Melrose, Methuen,North Shore, Reading, Rockport, Tewksbury, Wilmington, Woburn and Winchester. 
- 
-We also serve Southern New Hampshire including Nashua, Pelham, Salem, Plaistow and Windham areas.', NULL, NULL, NULL, NULL, NULL, 'John Lawlor, Chairman', 'Co-Founder', NULL, 'No', NULL, 'No', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102211, '2008-08-04', false, '@lunch4all', 'Merrimack Valley Chapter Of Parents Of Murdered Children', 'P.O.M.C.', 'Saints Medical Center', 'Stackpole St', 'Lowell', 'MA', '01852', '978-452-5858', NULL, NULL, '978-555-5121', 'http://www.pomcma.com/', 'amuscovitz@xxxxxxxxxxx', 'To provide support for parents of murder children  and also to provide support for family and friends that also died by violence', 'Every 2nd Tuesday each month 6:30 - 8:30 pm', NULL, 'P.O. 8737', NULL, 'Lowell', 'MA', '01853', 'Arnie Muscovitz', 'Chapter Leader', 'Parents Of Murdered Children,Inc', 'Not Applicable', NULL, 'Yes', 'Board room  which is located on the first floor of the Residence Building on Stackpole St.', 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101243, '2008-08-04', false, '@lunch4all', 'Merrimack Valley Food Bank, Inc.', NULL, '735 Broadway Street', NULL, 'Lowell', 'MA', '01854', '978-454-7272', NULL, NULL, '978-454-1717', 'www.mvfb.org', 'amy_pessia@xxxxxxxx', 'To provide adequate nutrition, freedom from hunger and to share vital information regarding food safety and security to our community.  This is accomplished by our many feeding programs and through a network of over 100 emergency feeding agencies throughout Greater Lowell, the Merrimack Vally, North Shore and Southern NH.  Our agencies include shelters, meals programs, food pantries and group homes.  Clients served by our agencies include:  low income elderly, physically & developmentally disabled, children, working families, survivors of abuse, veterans and recovering addicts.
-
-Programs include:
-Food Distribution Program
-MEFAP (State food commodities)
-USDA (Federal food commodities)
-Guy Francesshelli Food Rescue Program
-Mobile Pantry (formerly M/A-COM Food Share)
-Healthy Summer -Summer Lunch Program
-Co-Op Program
-Nutrition and Food Safety Program', 'Mon - Fri 9am - 4pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Amy L. Pessia', 'Executive Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102398, '2008-08-04', false, '@lunch4all', 'Career Resources Corporation', NULL, '165 Winter Street', NULL, 'Haverhill', 'MA', '01830', '978-374-9122', NULL, NULL, '978-374-1532', 'http://www.crc-mass.org/', 'contact@xxxxxxxxxxxx', 'The Career Resources Corporation''s Mission is to to empower people to be as self-sufficient, self-determining, and successful as possible. Individuals with developmental disabilities are supported in their own jobs and homes and integrated into community life, recognizing that they''re unique, valued people and that communities are enriched by their participation.', 'Mon-Fri: 8:AM-5:PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Brad Howell', 'Executive Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100308, '2008-08-07', false, '@lunch4all', 'Mental Health Association of Greater Lowell, Inc.', 'MHA', '99 Church Street', NULL, 'Lowell', 'MA', '01852', '978-458-6282', NULL, '978-458-6282', '978-441-9826', 'www.mhalowell.org', 'ascott@xxxxxxxxxxxxx', 'The Mental Health Association of Greater Lowell, Inc. was organized in 1953 as a private, non-profit corporation. The Association''s services over the years have changed and developed to keep pace with the mental health needs and concerns of the Greater Lowell area. Since its inception, the Association has actively sponsored and participated in the delivery of a wide range of services and activities including: rehabilitative and preventive mental health programs for children and adults, resource information and referral projects, residential services to mentally ill and developmentally disabled persons, consultation and education services and various other special projects.', 'Monday-Thursday 8AM-7PM
-Friday 8AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Albert H. Scott', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103410, '2008-08-08', false, '@lunch4all', 'Transformations', NULL, '144 Merrimack Street, Suite 435', NULL, 'Lowell', 'MA', '01852', '781-333-4696', NULL, NULL, NULL, 'www.transformationshealing.org', 'therapists@xxxxxxxxxxxxxxxxxxxxxxxxxx', 'Transformations offers empowering, compassionate, creative individual, couples and group psychotherapy.
-We value the relationship between client and practicioner as the foundation for healing.
-Within a feminist, anti-oppression framework, our intention is to help people use their voice, discover their own strengths and needs, and find peace and happiness.
-Our healing center located in hip downtown Lowell offers a space that fosters a safe, creative and nurturing environment for our clients. We believe in meeting people where they are and using a holistic approach. 
-
-Sliding scale available for all services.  
-Massachusetts Victim Compensation accepted for all services', 'various', NULL, NULL, NULL, NULL, NULL, NULL, 'shared: Trish Bakaitis-Glover, Andrea Canty, Lisa Twente', 'Therapist', NULL, 'No', NULL, 'No', NULL, 'No', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100550, '2008-08-11', false, '@lunch4all', 'Justice Resource Institute', NULL, '380 Massachusetts Avenue', NULL, 'Acton', 'MA', '01720', '978-263-3006', NULL, NULL, '978-263-3088', 'www.JRI.org', NULL, 'Justice Resource Institute is dedicated to addressing the most confounding challenges of both the human services and educational systems and the persons and families these systems were created to serve. Justice Resource Institute pursues the social justice inherent in opening doors to opportunity and independence. Although our range of services is as varied as those we serve, our approach is uniformly characterized by compassionate support, innovation, and community leadership.
-
-JRI works in partnership with individuals, families, communities and government to address their shared challenges in a comprehensive, coordinated, systematic, and effective manner. JRI seeks new knowledge and improved evidence-based practice, in research and in the field, in order to inform our continuous search for excellence in service.', 'Monday-Friday 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Gregory Canfield', 'Executive Director', 'Justice Resource Institute', 'No', NULL, 'Yes', 'Please call 978-263-3006,for more information.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100825, '2008-08-12', false, '@lunch4all', 'Moms and Tots of Billerica', NULL, '216 River Street', NULL, 'Billerica', 'MA', '01821', '978-667-9771', NULL, NULL, NULL, 'www.momsandtots.org', 'president@xxxxxxxxxxxxxxx', 'The mission of Moms and Tots is to bring parents and children together and, in doing so, help make the challenging job of parenting more fun and rewarding. We offer quality activities for infants, toddlers, preschoolers and their families. Including playgroups, day trips, parties, mom''s night out and more.', 'We offer a monthly newsletter with the dates and times of events and meetings.', NULL, NULL, NULL, NULL, NULL, NULL, 'Sarah SanClemente', 'President', NULL, 'No', NULL, 'No', NULL, 'No', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100209, '2008-08-18', false, '@lunch4all', 'Greater Lowell Chamber of Commerce', NULL, '131 Merrimack Street', NULL, 'Lowell', 'MA', '01852', '978-459-8154', NULL, NULL, '978-452-4145', 'www.glcc.biz', 'info@xxxxxxxxxxxxxxxxxxxxxxxx', 'The mission of the Chamber is to provide a significant unified voice in shaping the future growth of the business community which it services and to provide a vehicle through which individuals can work to improve the areas business climate and quality of life.', 'Monday - Friday 8:30 AM - 5:00 PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Jeanne Osborn', 'President & CEO', NULL, 'No', NULL, 'Yes', 'Board Room', 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102442, '2008-08-15', false, '@lunch4all', 'Adelante Inc.', 'Adelante Youth Center', '40 Lawrence Street', NULL, 'Lawrence', 'MA', '01840', '978-687-9432', NULL, NULL, '978-794-3407', 'http://www.adelanteyouthcenter.org', 'info@xxxxxxxxxxxxxxxxxxxxxxx', 'Adelante! (Spanish for "moving forward")  provides Lawrence''s urban youth with opportunities to enhance their education, leading them to greater economic success in adulthood.', 'Monday thru Friday, 9am - 5:30pm
-7th and 8th Grade Prep Classes Tuesdays 4-5pm, Wednesdays and Thursdays 4-6pm', NULL, NULL, NULL, NULL, NULL, NULL, 'David Hildt', 'Executive Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100176, '2008-08-15', false, '@lunch4all', 'Merrimack Valley Legal Services, Inc.', 'Merrimack Valley - North Shore Legal Services, Inc.', '35 John Street, Suite 302', NULL, 'Lowell', 'MA', '01852', '978-458-1465', '800-336-2262', '978-458-1465', '978-458-3481', 'www.mvlegal.org', 'kmaciver@xxxxxxxxxxx', 'The mission of Merrimack Valley Legal Services is to provide high quality legal representation and information to low income families and individuals with civil matters.', 'Monday-Friday 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Kenneth F. MacIver,Jr.', 'Executive Director', NULL, 'Yes', 'Contact agency for more information about the resource library', 'Yes', 'Meeting space is available if it concerns an MVLS client.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', '978-452-4740', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102871, '2008-08-15', false, '@lunch4all', 'Junior Achievement of Eastern MA', NULL, '33 Broad St', '7th Floor', 'Boston', 'MA', '02109', '617-368-3566', NULL, NULL, '617-368-6898', 'www.jaem.org', 'kblum@xxxxxxxxxxxxxxxxxx', 'Our mission is to inspire and prepare young people to succeed in a global economy.  
-
-JA Worldwide (Junior Achievement) is the worldÂ’s largest organization dedicated to educating students about work readiness, entrepreneurship and financial literacy through experiential, hands-on programs. 
-Junior Achievement programs help prepare young people for the real world by showing them how to generate wealth and effectively manage it, how to create jobs which make their communities more robust, and how to apply entrepreneurial thinking to the workplace. Students put these lessons into action, and help strengthen their communities.', 'M-F 
-9 AM - 5 PM', NULL, NULL, NULL, NULL, NULL, NULL, 'David Eustis', 'President', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101573, '2008-08-15', false, '@lunch4all', 'Coalition for a Better Acre', 'CBA', '517 Moody Street', '3rd floor', 'Lowell', 'MA', '01854', '978-452-7523', NULL, NULL, '978-452-4923', 'http://www.coalitionforabetteracre.org', 'marianne.gries@xxxxxxxxxx', 'The Coalition for a Better Acre is a membership based community development corporation dedicated to resident empowerment and sustainable community revitalization for current and future residents of Lowell. We promote healthy, vibrant neighborhoods by developing resident leaders, affordable housing and economic opportunities, and by responding to community needs through collective action.', 'M-F 9:00-5:00 (but we often have evening and weekend activities)', NULL, NULL, NULL, NULL, NULL, NULL, 'Emily Weitzman-Rosenbaum', 'Executive Director', NULL, 'Not Applicable', NULL, 'Yes', 'Meeting room that can accommodate up to 15 people', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100902, '2008-08-20', false, '@lunch4all', 'Latin American Health Institute', NULL, '9 Central St', 'Suite 400. 4th Floor', 'Lowell', 'MA', '01852', '978-459-3366', NULL, NULL, '978-446-0817', 'www.lhi.org', 'robert.pomales@xxxxxxx', 'The Latin American Health Institute is a community-based professional organization that promotes the health of the community, its institutions, families and individuals through effective interventions that are culturally competent and technologically appropriate.', 'Monday-Friday 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Oscar Patino', 'Director', NULL, 'No', NULL, 'Yes', 'Space is available for meetings, group workshops and training sessions. Call for more information.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103432, '2008-08-18', false, '@lunch4all', 'Second World', 'New England Culture Fest', '172 Middle Street', NULL, 'Lowell', 'MA', '01852', '978-455-6025', NULL, NULL, NULL, 'www.second-world.com', 'culturefest@xxxxxxxxxxxxxxxx', 'Second World is a dynamic non profit arts and development organization combining media, music and art for a better world. Based on a decade of work, Second World aims to address the crucial need for imaginative and effective educational methods regarding cultural competency, diversity & fair trade. Fair Trade Films, Lectures and Art Exhibitions are some of the ways to interact with us at Second World. Second World helps to bridge the gap between the First and Third World through media documentation, musical events and fair trade art empowerment.', 'By Appointment', 'All volunteer staff have full internet access on wireless network.', NULL, NULL, NULL, NULL, NULL, 'Valerie Parker', 'Director', NULL, 'Yes', '10 years worth of multimedia footage in archive from world travels and outreach efforts on behalf of fair trade.  In development for documentaries and fair trade promotional materials.', 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102057, '2008-08-19', false, '@lunch4all', 'Art Ship Enterprise', NULL, '365 West Meadow Rod', NULL, 'Lowell', 'MA', '01854', '978-821-0953', NULL, NULL, NULL, 'www.cultureiscool.org/whatiscool/cool-projects/coolmobile', 'kendradecolo@xxxxxxxxxxxxxxxxxx', 'The Art Ship Enterprise, a bright red bus loaded with supplies and imagination, is bring art to a neighborhood near you! In its mission to "connect and inspire communities through the arts," this vibrant classroom on wheels offers art activities and inspiration to the city of Lowell. 
-
-Ranging from poetry workshops at homeless shelters to painting classes at childcare centers, the Art Ship Enterprise seeks to bring art into all peoplesÂ’ lives. 
-
-The Art Ship Enterprise, in partnership with the Revolving Museum, is engaging citizens of Lowell in projects to promote positive expression, empowerment and peace. Through its exciting programs, the Art Ship Enterprise provides people with the tools to envision and create their ideal world and identity.', 'Monday through Thursday, 9:00 a.m. - 12:00 p.m.', NULL, NULL, NULL, NULL, NULL, NULL, 'Marta Magnus', 'Supervisor', 'Community Teamwork Inc.', 'Not Applicable', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101947, '2008-08-19', false, '@lunch4all', 'Neighborhood Health Plan', NULL, '253 Summert St', NULL, 'Boston', 'MA', '02210', '617-772-5500', '1-800-462-5449', NULL, '617-772-5513', 'www.nhp.org', 'swaldron@xxxxxxx', 'Neighborhood Health Plan''s mission is to provide health care that is both member-focused and quality driven. To accomplish this, NHP works in partnership with community health centers and other community responsive providers to maintain a comprehensive, high quality network.
-NHP is NCQA Accredited.', 'Monday-Friday
-Swithboard 8:30am to 5:30pm
-Member Services 8:30am to 6:00pm', NULL, '253 summer St', NULL, 'Boston', 'MA', '02210', 'Deborah Enos', 'President CEO', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100143, '2008-08-20', false, '@lunch4all', 'Career Center of Lowell', NULL, '18 John Street', NULL, 'Lowell', 'MA', '01852', '978-458-2503', NULL, NULL, '978-805-4913', 'www.cclowell.org', 'michael.mcquaid@xxxxxxxxxxxx', 'The Career Center of Lowell, under the guidance of the Greater Lowell Workforce Investment Board, is a One-Stop Career Center. Through this model, local employment and training services have been consolidated to build a strong workforce development system. The Charter of the Career Center is to work closely with the business community to identify and meet their employment needs, and provide job seekers with a wide range of employment and training services. The Career Center is a membership organization, which means that you must complete a membership form to access services which are Free of Charge. Our staff is committed to providing you with high quality, individualized service which is tailored to your needs.', 'Monday, Tuesday, & Wednesday 8:30 AM - 5:00 PM, Thursday 8:30 AM - 7:00 PM, Friday 9:30 AM - 5:00 PM', '(978) 970-3303 TDD Number', NULL, NULL, NULL, NULL, NULL, 'Michael McQuaid', 'Executive Director', 'City of Lowell', 'Yes', 'Call for more information', 'Yes', 'Meeting space accommodating up to 25 people. Call for availability.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100935, '2008-08-20', false, '@lunch4all', 'Social Security Administration', NULL, '151 Warren Street, Suite 300', NULL, 'Lowell', 'MA', '01852', '978-452-5509', '800-772-1213', NULL, '978-452-8945', 'www.socialsecurity.gov', NULL, 'The Social Security Administration is the government agency responsible for administering the Social Security, Social Security Disability Insurance and Supplemental Security Income programs.', 'Monday-Friday
-9:00AM-4:00PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Thomas Abbott', 'Manager, Lowell office', 'United States government', 'No', NULL, 'No', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', '978-458-5702', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102585, '2008-08-20', false, '@lunch4all', 'Little Sprouts Child Enrichment Centers, Inc', NULL, '900 Chelmsford Street', NULL, 'Lowell', 'MA', '01851', '978-291-0342', NULL, NULL, '978-291-0344', 'www.littlesprouts.com', 'jcarlson@xxxxxxxxxxxxxxxxx', 'To create a nurturing and safe atmosphere that encourages growth, development & fulfillment encompassing each child, family and professional in the Little Sprouts community while supporting our innovative philosophy through effective communication thus enriching the lives of all we touch.', 'Monday - Friday 6 am to 6 pm', NULL, NULL, NULL, NULL, NULL, NULL, 'James Carlson', 'Director of Programs', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100495, '2008-08-20', false, '@lunch4all', 'CAB Health & Recovery Services, Inc.', NULL, '111 Middleton Rd', NULL, 'Danvers', 'MA', '01923', '978-777-2121', '800-323-2224', NULL, '978-750-3620', 'www.cabhealth.org', 'info@xxxxxxxxxxxxx', 'CAB Health & Recovery Services, Inc. is committed to building healthy communities by providing a continuum of quality substance abuse and related health treatment and prevention services that strengthen the capacity of all families, businesses and communities to lead satisfying lives.', 'Please contact each program directly.', NULL, NULL, NULL, NULL, NULL, NULL, 'Kevin P. Norton', 'President', 'Northeast Health System', 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101056, '2008-08-20', false, '@lunch4all', 'International Institute of Lowell', 'I I Lowell', '144 Merrimack St., Suite 202', NULL, 'Lowell', 'MA', '01852', '978-459-9031', NULL, NULL, '978-459-0154', 'www.iilowell.org', 'rfeldman@xxxxxxxxxxxx', 'Since 1918, the International Institute has assisted immigrants and refugees from over 70 different countries to build their lives as new residents of the Lowell area. We are dedicated to promoting the acceptance of all, regardless of race, religion, country of origin or ethnic background, as equal participants in life in the United States.', 'Monday through Friday, 9 to 5', 'Volunteer Opportunity
-
-Description
-The International Institute of Lowell is open to dedicated people who would like to volunteer in the following areas:
-
-1.Office: Tasks will include answering calls to the Institute and setting appointments for our clients, other office duties such as copying, filing, etc., and being the smiling face to greet our clients when they walk in for the first time.
-2.Intern or volunteer with some interest or experience in immigration law, to assist us with forms, review client files, etc.
-3.Employment/ESL/citizenship: Tasks may include literacy tutoring, searching the Internet for employment opportunities for our clients, researching jobs, and assisting in citizenship classes.
-4.Case management with recent asylees who have either recently arrived in the US or recently been granted asylum by the US government.
-
-The tasks above may be combined to meet the interests and skill sets of our volunteers.  
-
-Required Skills
-There is no professional expertise required.  However, we require our volunteers to have the ability to work well with the immigrant population.  Our volunteers must show patience and have the ability to work well with others, be self-motivated, and stay dedicated to their schedule throughout their commitment with the Institute.  Commitment is a minimum of 8 weeks, with a minimum of 4 hours/wk.', NULL, NULL, NULL, NULL, NULL, 'Rebecca Feldman', 'Director', 'International Institute of Boston (I I B)', 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100396, '2008-08-27', false, '@lunch4all', 'The Family Connection of Greater Lowell, Inc.', 'TFC', 'c/o Pawtucket Congregational Church', '15 Mammoth Road', 'Lowell', 'MA', '01854', '781-738-2392', NULL, NULL, NULL, 'www.TFCplayspace.weebly.com', 'tfc.lowell@xxxxxxxxx', 'The Family Connection is a nonprofit, non-denominational, volunteer-run organization designed for infants through preschoolers. Our mission is to provide social and recreational opportunities to Merrimack Valley families with young children.
-
-The TFC features a large indoor area where young children can play in a safe environment, and where parents can connect with one another. Every playdate includes time for free play, snacks, arts and crafts, and a music circle.', 'We are open Monday and Thursday mornings from 10 a.m. to 12 noon.', NULL, NULL, NULL, NULL, NULL, NULL, 'Sarah Seguin and  Anne Leslie', 'Co-directors', NULL, 'No', NULL, 'No', NULL, 'No', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102134, '2008-08-27', false, '@lunch4all', 'Alternative House, Inc.', 'Alternative House, Inc.', 'P.O. Box 2100', NULL, 'Lowell', 'MA', '01851', '978-937-5777', '1-888-291-6228', '1-888-291-6228', '978-937-5595', 'www.alternative-house.org', 'altorg1@xxxxxxx', 'The mission of Alternative House is to facilitate the creation of a society in which violence against women will no longer exist.  As a means to this end, we offer shelter, support, options, counseling, and advocacy for all battered women and their children who seek our help.
-
-We are committed to the empowerment of women towards self-sufficiency.  We do not discriminate against any race, class, culture, age group, or sexual orientation.
-
-In addition, we provide community education to reform societal attitudes that permit violence against women.
-
-We abide by the Principles of Unity put forth by the Massachusetts Coalition of Battered Women''s Service Groups.', 'Business Office 9:00 a.m.-5:00 p.m. M-F
-Emergency Hotline is 24 hours, seven days a week.', NULL, NULL, NULL, NULL, NULL, NULL, 'Kathleen Kelley', 'Executive Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100330, '2008-09-04', false, '@lunch4all', 'ONE Lowell: Building a New American Community', NULL, '9 Central Street', 'Suite 203', 'Lowell', 'MA', '01852', '978-654-6957', NULL, NULL, '978-454-6992', 'www.onelowell.net', 'vfahlberg@xxxxxxxxxxxxx', 'ONE Lowell strives to be the voice that improves the life, opportunities and involvement of culturally diverse people in the  Lowell community.', 'Monday-Friday 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Dr. Victoria Fahlberg', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100022, '2008-09-02', false, '@lunch4all', 'YWCA of Lowell', NULL, '97 Central St', 'Unit #302', 'Lowell', 'MA', '01852', '978-454-5405', NULL, NULL, '978-454-5043', 'www.ywcaoflowell.org', 'kkobos@xxxxxxxxxxxxxxxx', 'The mission of the YWCA of Lowell is: (1) to respect, honor and celebrate diversity; (2) to initiate and foster local partnerships to maximize community resources; and (3) to advocate and provide services that promote physical and emotional wellness for women and families.', 'Monday-Friday 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Katherine A. Kobos', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102486, '2008-09-01', false, '@lunch4all', 'P.O.V. Stage Company', NULL, '15 Kenoza Avenue', NULL, 'Haverhill', 'MA', '01832', '978-518-1432', NULL, NULL, NULL, NULL, NULL, 'P.O.V. Stage CompanyÂ’s mission is to
-produce professional quality, thought 
-provoking theatre for a diverse audience;
-advocate for theatre and the health 
-of the arts community; and
-provide theatre arts education
-for teenagers and adults.', 'Various. Check website - povstageco.com.', NULL, 'P.O.V. Stage Company', '100 Macy St, Suite F Box 222', 'Amesbury', 'NH', '01913', 'Lisa Zaleski', 'Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102882, '2008-09-01', false, '@lunch4all', 'Robert F. Kennedy Children''s Action Corps', NULL, '10 Favor Street', NULL, 'Lowell', 'MA', '01852', '978-458-5777', NULL, NULL, '978-458-7328', 'www.rfkchildren.org', 'adezen@xxxxxxxxxxxxxxx', 'The mission of The Mentoring Program, an agency-based program, is to offer system involved youth the chance to develop a trusting relationship with an adult mentor who can become their friend, role model and advocate.
-
-Through specific, mentor-guided activities we hope to assist youth in building many skills such as confidence, self esteem, and leadership. Youth will also develop or refine skill, career and personal goals. The mutual experiences they impart, with the support of program staff will ultimately instill pro-social behavior; reduce delinquency, recidivism and other destructive and self destructive behaviors.
-
-This new initiative hopes to expand the scope of that care and galvanize our belief that responsibility to our society does not end after treatment, but is our lifelong mandate to support the poor and disadvantaged. I would like to offer you the opportunity to find out more about our program and discover that we have the same commitment to our communities that you do.
-
-Inspire action. Become a Mentor.', 'Mon thru Fri - 9am until 6pm', NULL, '10 Favor Street', NULL, 'Lowell', 'MA', '01852', 'Mark Speller', 'Program Coordinator', 'Robert F. Kennedy Children''s Action Corps', 'No', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102167, '2008-09-02', false, '@lunch4all', 'Home Health VNA', 'Home Health VNA', '360 Merrimack Street', NULL, 'Lawrence', 'MA', '01843', '978-552-4000', '800-933-5593', NULL, '978-552-4444', 'www.homehealthvna.org', 'info@xxxxxxxxxxxxxxxxx', 'Home Health Foundation is committed to creating and delivering innovative and 
-responsive community health programs which provide effective 
-and compassionate care.', '24 hours a day, 7 days a week, 365 days a year', NULL, NULL, NULL, NULL, NULL, NULL, 'Joan Stygles Hull, RN, MBA', 'President / CEO', 'Home Health Foundation', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100011, '2008-09-02', false, '@lunch4all', 'Big Brothers Big Sisters of Greater Lowell, Inc.', NULL, '45 Merrimack Street, Suite 227', NULL, 'Lowell', 'MA', '01852', '978-453-9339', NULL, NULL, '978-452-0838', 'www.bbbslowell.org', 'dave@xxxxxxxxxxxxxx', 'The mission of Big Brother Big Sister is to provide quality volunteer and professional services for children and youth and to assist them in achieving their highest potential as they grow to become responsible men and women.', 'Monday - Thursday 8:00AM - 6:00PM
-Friday   9:00AM-5:00PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Dave Blanchard', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100770, '2008-09-02', false, '@lunch4all', 'Families First Parenting Programs', NULL, '99 Bishop Richard Allen Drive', NULL, 'Cambridge', 'MA', '02139', '617-868-7687', NULL, NULL, '617-354-2902', 'www.families-first.org', 'info@xxxxxxxxxxxxxxxxxx', 'Families First Parenting Programs builds positive relationships between parents and their children by educating both families and the professionals who serve them through inspiring, hands-on workshops. Our skilled workshop leaders stand beside parents and caregivers to lead them through the crucible of child rearing by transforming their experiences, doubts and fears into the knowledge and confidence they need to build positive discipline, communication, and self-esteem in families. Our training for professionals enhances their ability to better support and engage families. We help communities thrive by strengthening families first.', 'Office hours: Monday-Friday 9AM-5:30PM. Workshop hours vary', NULL, NULL, NULL, NULL, NULL, NULL, 'Crista Martinez Padua', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101540, '2008-09-04', false, '@lunch4all', 'Saints Medical Center   Growth & Nutrition Clinic', '4th Floor', 'One Hospital Drive', NULL, 'Lowell', 'MA', '01852', '978-934-8458', NULL, NULL, '978-934-8358', 'saintsmedicalcenter.com', 'mreppenhagen@xxxxxxxxxxxxxxxxxxxxxxx', 'We provide family-centered evaluation and treatment for children with growth delay.
-Our goal is to offer family focused help for infants and children who are not gaining and growing properly.  Some children are unable or unwilling to eat enough to gain and grow properly and don''t gain weight over time as expected compared to children their own age.  From birth to age 2 is the most important period for brain growth.  Under nutrition during this time makes it difficult for a child to met his developmental milestones.  Under nutrition especially in very young children is associated with many behavior and developmental delays.  We work with families of children who are not gaining and growing, who may have medical issues such as reflux or other GI issues, gagging when solid foods are introduced, or don''t transition to table foods, have frequent ear infections, get sick a lot, who have very small appetites, who are difficult to feed, may be anemic, were born premature or small and are having trouble gaining weight.  We work with families who have "picky eaters" and feel a lot of stress trying to feed their infant or toddler. Our goal is to help parents and children enjoy the feeding relationship, have children gain and grow properly, prevent or treat under nutrition, help families obtain the resources, supplements, and help they need.', 'Mondays 8:30am-5:30pm  A referral from the child''s Primary Care Physician is required.', NULL, NULL, NULL, NULL, NULL, NULL, 'Margaret Reppenhagen,MA,RD,LDN', 'Director, Growth & Nutrition', 'Saints Medical Center', 'No', NULL, 'Yes', 'Hospital conference rooms are available', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100253, '2008-09-04', false, '@lunch4all', 'Lowell Association for the Blind', 'LAB', '169 Merrimack Street', '2nd floor', 'Lowell', 'MA', '01852', '978-454-5704', NULL, NULL, '978-458-5563', 'www.lowellassociationfortheblind.org', 'ecannon@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'The mission of the Lowell Association for the Blind is to: support, educate and nurture the blind and visually impaired of the Greater Merrimack Valley by assisting them in the enrichment of their lives and by helping them to gain independence and to stimulate the interest and education of the general public to the problems and issues facing the blind and visually impaired as productive members of society seeking fulfillment of their human potential.', 'Monday - Friday  8:00am - 4:00pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Elizabeth M. Cannon', 'Executive Director', NULL, 'Yes', 'Contact agency for information about the resource library - use is by appointment only', 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102838, '2008-09-09', false, '@lunch4all', 'Massachusetts Alliance on Teen Pregnancy', NULL, '105 Chauncy Street, 8th floor', NULL, 'Boston', 'MA', '02111', '617-482-9122', NULL, '800-645-3750', '617-482-9129', 'http://www.massteenpregnancy.org', 'fletcher@xxxxxxxxxxxxxxxxxxxxx', 'The Massachusetts Alliance on Teen Pregnancy provides statewide leadership to prevent adolescent pregnancy and to promote quality services for pregnant and parenting teens and their children through policy analysis, education, research and advocacy.', '9-5 Monday-Friday', NULL, NULL, NULL, NULL, NULL, NULL, 'Patricia Quinn', 'Executive Director', NULL, 'Yes', 'Resource library in our office consisting of research materials, journals, and reports pertaining to teen pregnancy prevention and public policy related to pregnant and parenting teens.', 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102926, '2008-09-09', false, '@lunch4all', 'St. Patrick Parish - Irish Cultural Committee', 'Irish Cultural Week', '282 Suffolk Street', NULL, 'Lowell', 'MA', '01854', '978-459-0561', NULL, NULL, NULL, NULL, NULL, 'The Irish Cultural Committee was established in 1983 to raise the consciousness-level of people of the Greater Lowell area to the contribution made by the Irish Immigrants to our City, and especially to the community of St. Patrick Parish. The rich heritage of art, music and literature, and the spirituality of these first immigrants to the Acre of Lowell is the very foundation on which this first Roman Catholic Church in the city was built.', 'Meetings are the 2nd Tuesday of the Month, 7:00pm in the Church Hall. No meetings in the summer.', NULL, NULL, NULL, NULL, NULL, NULL, '2009 - Bridget Reilly', 'Chairperson', NULL, 'No', NULL, 'No', NULL, 'No', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100715, '2008-09-16', false, '@lunch4all', 'Lowell Telecommunications Corporation', 'LTC', '246 Market Street', NULL, 'Lowell', 'MA', '01852', '978-458-5400', NULL, NULL, '978-937-0361', 'http://www.ltc.org', 'info@xxxxxxx', 'Lowell Telecommunications Corporation is a community media and technology center serving the diverse urban population of Lowell, MA. The organization is committed to first-come, first-served telecommunication services to anyone in the community interested in expressing themselves. We also provide training and access to the media communication skills of the 21st century.
-
-The organization''s vision has always been about telecommunication technology - from video cameras to computers, cable channels to the Internet - and its uses in community information and content production.', 'Monday - Thursday 
-10am to 9:30pm
-
-Friday
-10am to 6pm
-
-Saturday
-10am to 4pm
-
-Closed Saturdays preceding a Monday Holiday.', NULL, '246 Market St', NULL, 'Lowell', 'MA', '01853', 'Ellie Pye', 'Executive Director', NULL, 'No', NULL, 'Yes', '10-12 person conference room
-50-75 person studio space', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102970, '2008-09-24', false, '@lunch4all', 'Girl Scouts of Eastern Massachusetts', NULL, '1740 Turnpike Street', NULL, 'North Andover', 'MA', '01845', '978-689-8015', '800-842-5566', NULL, '978-688-1846', 'www.girlscoutseasternmass.org', 'btoolan@xxxxxxxxxxxxxxxxxxxxxxxxx', 'Girl Scouting Builds Girls of Courage, Confidence, and Character, who make the world a better place.', 'Mon-Fri 8:30-5pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Ruth N. Bramson', 'CEO', NULL, 'Yes', 'Girl Scout leadership and personal development resources', 'Yes', 'conference room which accomodates 20-25 people; off site meeting space at our camp facilities in Andover, Rowley, Beverly, Pelham, and throughut Eastern Massachsetts', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102948, '2008-09-17', false, '@lunch4all', 'The Psychological Center', 'TPC', '11 Union Street', NULL, 'Lawrence', 'MA', '01843', '978-685-1337', NULL, '978-685-1337', '978-681-1281', 'tpc1.org', 'joecotton@xxxxxxxxx', 'Our Mission is to help individuals, children, and families learn positive coping responses to the stressors of life that they experience in the home, school, workplace, and society.
-
- 
-
-The delivery of behavioral health services  that includes the disciplines of psychology, social work, psychiatry, counseling, and nursing is an important and integral component of the overall health and well-being of all people. Behavioral health care plays an essential and broadening role in our society, economy, education and government.
-
- 
-
-We are committed to creating and sustaining healthy and secure communities, achieved through a system that holds the needs of consumers paramount, regardless of their ability to pay. Vital to this commitment is a continuum of care that promotes services of the highest quality and value.
-
- 
-
-Historically, our values and practices provide a strong foundation for the delivery of accessible community-based programs for consumers from all walks of life.
-
- 
-
-Our services will be based on the needs and strengths of the consumer who will be treated with dignity and respect.
-
- 
-
-We will provide responsive, accessible, and culturally competent services that includes the involvement of consumers, their families, and their social support network.
-
- 
-
-Services will reflect a multi-modal approach that reflects the need of our consumers throughout their loves.
-
- 
-
-We are committed to effective, evidence-based interventions and measured outcomes. We believe that in today''s healthcare environment, competence-based management and clinical practice are essential. We are committed to an environment that fosters learning and sharing within our agency and with the greater community.
-
- 
-
-We remain champions of effective, innovative, science-based interventions that will foster the health and well-being of our consumers and our communities.', 'Monday-Thursday 8:30-9
-Friday 8:30-7
-Saturday 9-1', 'The Psychological Center (TPC) Programs include DMH and DPH Residential Housing.  TPC offers Outpatient Counseling, a Recovery Center, Psychopharmacology, Structured Outpatient Addictions Program (SOAP),Daybreak Shelter, Driver Alcohol Education (DAE), and hosts community substance abuse support groups.', NULL, NULL, NULL, NULL, NULL, 'Joe Cotton', 'Chief Executive Officer', NULL, 'Yes', 'Information focusing on Evidence Based Treatments-Cognitive Behavioral Therapy,Motivational Interviewing, Continigency Management,Substance Abuse, Harm Reduction, Mental Illness, Dual Diagnosis, Spirituality in Recovery, Healthy Relationships,', 'Yes', 'Very Large Community Meeting Space,Several Large Group Rooms', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103058, '2008-09-24', false, '@lunch4all', 'Merrimack Valley YMCA', 'Andover/North Andover YMCA, Lawrence YMCA, Methuen YMCA', '101 Amesbury Street', '4th Floor', 'Lawrence', 'MA', '01840', '978-725-6681', NULL, NULL, '978-681-1126', 'www.mvymca.org', 'sives@xxxxxxxxxx', 'The Merrimack Valley YMCA, a community-based organization government by its members, is dedicated to putting Christian principles into practice through programs, membership opportunities, and community services that strengthen spirit, mind, and body for all.', '8:00 a.m. to 5:00 p.m. - Monday through Friday. (Branches open at 5:30 a.m. to 10:00 p.m.; weekends 6:00 a.m. to 9:00 p.m.', NULL, NULL, NULL, NULL, NULL, NULL, 'Stephen C. Ives', 'President/CEO', NULL, 'Not Applicable', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102508, '2008-09-29', false, '@lunch4all', 'Lazarus House Ministries', NULL, 'Good Shepherd Center', '410 Hampshire St., 2nd Floor', 'Lawrence', 'MA', '01841', '978-689-8575', NULL, NULL, '978-682-7004', 'http://www.lazarushouse.org/', 'mary@xxxxxxxxxxxxxxxx', 'Lazarus House, Inc. is a spiritually based organization that welcomes all in the name of God. It provides a continuum of care encompassing, but not limited to food, shelter, clothing, advocacy, job training, medical and dental care, a listening ear, a welcoming heart, the restoration of dignity and self respect to the poor and needy.', 'Mon-Fri: 8:30AM-4:30PM', NULL, 'Lazarus House Ministries', 'P.O. Box 408', 'Lawrence', 'MA', '01842', 'H. Bridget Shaheen', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103091, '2008-10-01', false, '@lunch4all', 'MSPCC Healthy Families', NULL, '439 South Union', NULL, 'Lawrence', 'MA', '01840', '978-682-9222', '1-800-541-3004', NULL, '978-681-9534', 'www.mspcc.org', 'kgreen@xxxxxxxxx', 'Healthy Families Massachusetts is a statewide home visiting program administered by the Massachusetts Children''s Trust Fund.  Healthy Families offers first-time parents  ages 20 and under the information and individual support they need to raise healthy, happy and safe kids.  MSPCC is the lead agency providing Healthy Families in five areas: Springfield, Holyoke, Worcester, Lawrence, and Lowell.  
-
-For families in need of support, we offer comprehensive program of services delivered where they have been shown to have the greatest impact - in the home. Services are presented as an integrated package designed specifically to meet the needs of each family.', 'Monday - Friday, 8:45- 5:00', NULL, NULL, NULL, NULL, NULL, NULL, 'Kristin Gohl Green', 'Program Coordinator', 'MSPCC', 'Not Applicable', NULL, 'Yes', 'Conference room 20-30 person capacity.  Must be scheduled in advance.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100088, '2008-10-01', false, '@lunch4all', 'United Teen Equality Center', 'UTEC', '34 Hurd St', NULL, 'Lowell', 'MA', '01852', '978-441-9949', NULL, '978-265-7173', '978-654-6727', 'www.utec-lowell.org', 'gregg@xxxxxxxxxxxxxxx', 'UTECÂ’s mission is to be a youth-led safe-haven for youth development and grassroots organizing. 
-
-Overall, our core values focus on peace, positivity, and empowerment. Through intensive street outreach, UTEC serves over 1,500 youth annually and over 150 teens every day (ages 13-23), particularly those most often overlooked and labeled as “at-risk.” UTEC offers programming (all at no cost) in the following 4 main centers:  Streetwork (outreach and gang peacemaking), Youth Development (cultural and performing arts), Education and Work Skills Training (new alternative diploma school program), and Youth Organizing (grassroots community organizing). 
-
-UTEC was recently recognized as Citizen’s Bank and New England Cable Network’s (NECN) Community “Champion in Action” and honored by the Robert Wood Johnson Foundation as a model for violence prevention. 
-
-See www.boston.com/news/necn/Shows/champs/ 
-and www.lifp.org/html/project/focus_UTEC.html.', 'Monday-Thursday, 2pm until 8pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Gregg Croteau', 'Executive Director', NULL, 'Yes', 'Please call to learn more about the resource library, 978-441-9949', 'Yes', 'We have a large room with conference table.', 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103080, '2008-10-01', false, '@lunch4all', 'Community Gardens Greenhouse', 'Beautification sub-committee of Keep Lowell Beautiful', '220 Aiken Street', NULL, 'Lowell', 'MA', '01853', '978-761-5902', NULL, NULL, NULL, 'www.communitygardensgreenhouse.org', 'info@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'The Community Gardens Greenhouse is a not-for profit initiative, the beautification sub-committee of Keep Lowell Beautiful, dedicated to creating social change through the art of gardening, building communities from the ground up. We focus on educational gardening workshops that encourage creativity, collaboration, and innovation while fostering relationships that transcend ethnicity, character, class and age.', 'Greenhouse is currently open 9AM-1PM on Saturdays.', NULL, 'Community Gardens Greenhouse', '220 Aiken Street', 'Lowell', 'MA', '01853', 'Deb Harding', 'Greenhouse Operations Manager', 'Keep Lowell Beautiful', 'Not Applicable', NULL, 'Yes', 'Greenhouse grounds in season', 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100341, '2008-10-02', false, '@lunch4all', 'CLASS Inc.', 'Citizens League for Adult Special Services', 'One Parker Street', NULL, 'Lawrence', 'MA', '01843', '978-975-8587', NULL, NULL, '978-975-0498', 'www.classinc.org', 'info@xxxxxxxxxxxx', 'CLASS strives to provide services which promote personal choice, growth and full participation in community life for individuals with disabilities.', 'Monday-Friday 8AM-4PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Robert A. Harris', 'President', NULL, 'No', NULL, 'Yes', 'Several conference rooms may be available for professional development activities. Not open to general public.', 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100990, '2008-10-07', false, '@lunch4all', 'Billerica (Town of)', NULL, 'Town Hall', '365 Boston Road', 'Billerica', 'MA', '01821', '978-671-0942', NULL, NULL, '978-671-0947', 'www.town.billerica.ma.us', 'jdunn@xxxxxxxxxxxxxxxxxxxx', 'The town of Billerica provides a variety of services to residents. For more information, click on one of the programs below.', '8:30am to 4:00pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Rocco Longo', 'Town Manager', NULL, 'No', NULL, 'Yes', 'Space is used for municipal functions', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100891, '2008-10-07', false, '@lunch4all', 'Florence Crittenton League Adoption Agency, Inc.', NULL, '119 Hall Street', NULL, 'Lowell', 'MA', '01854', '978-452-9671', NULL, NULL, '978-970-0070', 'www.fcleague.org', 'info@xxxxxxxxxxxx', 'The Florence Crittenton League Adoption Agency is a non-profit, non-sectarian adoption agency. We have just been reaccredited for our Russian program.  We also work with China and make referrals to Guatemala and Ethiopia through out of state agencies. Occasionally we place a local child as well. We have information meetings or can meet with you to explain our program, for free.  Check our web site.', 'Monday-Friday 9AM-4PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Ilze Keegan', 'Executive Director', NULL, 'Yes', NULL, 'Yes', 'Meeting space may be available, contact agency for more details', 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101144, '2008-10-07', false, '@lunch4all', 'Youth Enhancement Services', 'YES', '1360 Main St.', NULL, 'Tewksbury', 'MA', '01879', '978-863-0099', NULL, NULL, '978-851-5192', 'www.yes4kids.com', 'kevin@xxxxxxxxxxxx', 'YES'' mission is to:
-
-Empower children with emotional, behavioral and developmental disabilities to find, use and express their unique strengths and talents. 
-
-Provide each child with the skills and opportunities they need to become successful and productive members of society, and encourage them to have some fun along the way.
-
-Offer support and guidance to families who face the financial and emotional challenges of raising a disabled child.', 'Weekday and weekend programs; summer day camp', NULL, NULL, NULL, NULL, NULL, NULL, 'Kevin Kelley', 'Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101716, '2008-10-07', false, '@lunch4all', 'St.Patrick School and Educational Center', NULL, '311 Adams Street', NULL, 'Lowell', 'MA', '01854', '978-458-4232', NULL, NULL, '978-458-4233', 'www.saintpatricklowell.org', 'info@xxxxxxxxxxxxxxxxxxxxxx', 'MISSION AND PURPOSE
-Inspired by the mission of the Sisters of Notre Dame de Namur, St.Patrick School and Educational Center makes known the Goodness of God by providing for the educational needs of children, youth and adults within a caring, culturally diverse environment based upon Gospel values.
-
-St.Patrick School serves children in grades K-1 through Grade 8. The Educational Center provides Adult classes in English, Citizenship preparation and Basic Computer.', 'School Hours: 8:20 AM - 2:50 PM, Monday - Friday. Before and After School care is also provided: 7:00AM -8:20 and 2:50 - 6:00 PM
-
-Adult English Classes are offered Tuesday and Thursday mornings (8:30 - 10:00 AM), afternoons (3:30 - 5:00 PM) and evenings 
-(6:00-7:30 PM). Adult Computer classes are offered Tuesday evenings (6:00-7:30 PM and Wednesday afternoons ( 3:30 - 5:00 )Citizenship Classes begin October 1. Please call for information.', NULL, NULL, NULL, NULL, NULL, NULL, 'Sr.Joanne Sullivan,SND', 'Principal', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101474, '2008-10-07', false, '@lunch4all', 'Newbury Council on Aging', NULL, '63 Hanover Street', NULL, 'Newbury', 'MA', '01951', '978-462-8114', NULL, NULL, '978-499-0675', NULL, 'newburycoa@xxxxxxxxxxx', 'The Newbury Council on Aging will identify, develop, implement, and advocate for programs and services designed to enhance the quality of life and independence of elders in the community and will assist all people with questions relating to aging issues.', 'Monday thru Friday 8:00a.m. - 3:00 p.m.', NULL, NULL, NULL, NULL, NULL, NULL, 'Marty Joe', 'Director', NULL, 'Yes', 'Extensive user friendly cross referenced file of materials relavent to elders; staff available to assist and make copies.', 'Yes', 'Newbury Elementary School -500 square feet', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102475, '2008-10-07', false, '@lunch4all', 'Bread and Roses', NULL, '58 Newbury Street', NULL, 'Lawrence', 'MA', '01840', '978-681-8768', NULL, NULL, NULL, 'www.breadandroseslawrence.org', 'breadandroses@xxxxxxxxxxx', 'Bread & Roses is a soup kitchen in Lawrence, MA with a strong and rich tradition of being a center of hope and caring to the hundreds of people in the Merrimack Valley who are struggling for survival.  Founded in 1980, Bread & Roses'' primary purpose is to ease the hunger of people in our community  by providing a well-balanced, nutritious evening meal.', 'Monday thru Thrusday, 5 pm - 7:30 pm, Saturday, 5 pm - 7:30 pm.', NULL, NULL, NULL, NULL, NULL, NULL, 'Bob Lanzoni', 'Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101694, '2008-08-01', false, '@lunch4all', 'J.J. Referral Services', NULL, '506 Katahdin Drive', NULL, 'Lexington', 'MA', '02421', '781-572-0219', NULL, NULL, NULL, 'www.jjreferralservices.com', 'joannejstp@xxxxxxx', 'I am starting a referral service for the homeless, low-income, disabled, and anyone else who needs help navigating through the human services system. Agencies are welcome to respond. I am a statewide vendor. I specialize in the homeless. New pamphlets are available and you can contact me at the above number.', 'contact by phone by social worker from 9-5; access to e-mails anytime. Clients must sign up on web site giving full details about the help needed.', NULL, NULL, NULL, NULL, NULL, NULL, 'Joanne Stephen', 'owner/referral consultant', NULL, 'Not Applicable', NULL, 'Yes', 'starting in 2008 I will be available to take appointments at Baldwin Park. Call for details', 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102992, '2008-02-29', false, '@lunch4all', 'Health & Education Services', 'HES', '30 General Street', NULL, 'Lawrence', 'MA', '01841', '978-683-3128', NULL, '978-620-1250', '978-682-7296', 'www.hes-inc.org', 'mpadro@xxxxxxxxxxx', 'Largest behavioral health organization in the state of MA.  Full spectrum of comprehensive services from inpatient to outpatient and everything in-between.  We have over 100 programs and 32 sites serving individuals of all ages and treatment disorders.  
-     The Lawrence Clinic offers Outpatient Services, Adult Day Treatment Program, Emergency Services, Therapeutic After School Program, Family Stabilization Team, Community Rehabilitation Services and HIV program.', 'Week days for most programs, 24 hour 7 days a week for Emergency Services.', NULL, NULL, NULL, NULL, NULL, NULL, 'Maggie Padro,LMHC', 'Site Director', 'North East Health Systems', 'No', NULL, 'Yes', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 4, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102024, '2008-10-16', false, '@lunch4all', 'Central Food Ministry, Inc.', NULL, '370 West Sixth Street', NULL, 'Lowell', 'MA', '01850', '978-454-7445', NULL, NULL, '978-452-4043', 'CFMinistry.org', 'clementskh@xxxxxxxxxxx', 'Provide food and clothing to those in need; treating them with dignity and respect through our Christ-centered volunteers.', 'Tuesday, Wednesday, Thursday: 9:30 a.m. to 1:00 p.m
-Thursday evening: 7:00 p.m. to 8:00 p.m.', NULL, NULL, NULL, NULL, NULL, NULL, 'Daniel Carey', 'Board President', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103124, '2008-10-17', false, '@lunch4all', 'The Pettengill House, Inc.', 'Community Social Service Agency', 'PO Box 5551', '13 Lafayette Road', 'Salisbury', 'MA', '01952', '978-463-8801', NULL, NULL, '978-463-8743', 'www.pettengillhouse.org', 'tclifford@xxxxxxxxxxxxxxxxxxx', 'Formed in 1994, the mission statement of The Pettengill House, Inc. is to support, empower and coordinate community and state services, provide basic needs, emergency assistance, prevention education, case management and supports to those in need.', 'Monday-Thursday: 9:00am - 5:00pm
-Friday: By appointment only', NULL, NULL, NULL, NULL, NULL, NULL, 'Deborah M. Smith', 'Executive Director', NULL, 'No', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102915, '2008-10-22', false, '@lunch4all', 'Rebuilding Together Greater Haverhill, Inc.', NULL, 'PO Box 5161', NULL, 'Haverhill', 'MA', '01835', '978-469-0800', NULL, NULL, '978-556-9376', NULL, 'rtogether@xxxxxxxxxxx', 'Rebuilding Together Greater Haverhill (RTGH) is a non-profit organization working in partnership with the community, volunteers and skilled labor, to stabilize and revitalize homes in the city and surrounding communities at no cost to the recipient. The RTGH initiative brings homeowners in need, together with volunteers from all walks of life, to preserve home ownership and reduce the risk of homelessness by improving the quality of the lives of the recipients.', 'Weekdays by appointment', NULL, NULL, NULL, NULL, NULL, NULL, 'Lynn Murphy', 'Program Manager', 'Rebuilding Together, Inc.', 'No', NULL, 'Yes', 'Pentucket Bank Community Room
-35 Merrimack Street
-Haverhill, MA 01830', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102420, '2008-10-29', false, '@lunch4all', 'Youth Empowerment Services Inc.', 'YES Inc.', '19 Acadia Kimball Rd.', NULL, 'Amesbury', 'MA', '01913', '978-388-3647', NULL, NULL, NULL, 'http://www.empowertheyouth.org/', 'barbara@xxxxxxxxxxxxxxxxxxx', 'The mission of Youth Empowerment Services Inc., YES, is to create opportunities for youth of all backgrounds and adults, who work with youth, to learn peaceable, healthy relationship skills to be able to communicate effectively; resolve conflicts nonviolently; solve problems creatively and cooperatively; and collaborate in leadership.', 'Mon-Fri: 8:AM-5:PM', NULL, '19 Acadia', 'Kimball Rd.', 'Amesbury', 'MA', '01913', 'Barbara Hildt', 'Executive Director', NULL, 'Not Applicable', NULL, 'Yes', 'Amesbury Friends Peace Center
-space for trainings and meetings', 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103069, '2008-10-29', false, '@lunch4all', 'Windrush Farm Therapeutic Equitation, Inc.', 'WFTE, Inc. / Windrush Farm', '30 Brookview Road', NULL, 'Boxford', 'MA', '01921', '978-682-7855', NULL, NULL, NULL, 'www.windrushfarm.org', 'jenny@xxxxxxxxxxxxxxxx', 'Our mission is to use the horse to expand the personal, emotional, and physical boundaries of all who ride and work with us.', '8-6', NULL, NULL, NULL, NULL, NULL, NULL, 'Amanda Carey Hogan', 'Executive Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100737, '2008-10-31', false, '@lunch4all', 'New England Quilt Museum', NULL, '18 Shattuck Street', NULL, 'Lowell', 'MA', '01852', '978-452-4207', NULL, NULL, '978-452-5405', 'www.nequiltmuseum.org', 'director@xxxxxxxxxxxxxxxxx', 'The New England Quilt Museum is the only museum in New England dedicated solely to the preservation, interpretation, and education of American quiltmaking past and present. Through its exhibitions, workshops, programs, and library, the museum is a resource for quilters, collectors, and all those who love quilts. We are located in beautiful, historic, downtown Lowell, Massachusetts.', 'Monday Closed, Tuesday-Saturday 10AM-4PM, Sunday May through December: 12PM-4PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Connie Colom', 'Executive Director', NULL, 'Yes', 'Resource library available on quilt history and quilt making, contact museum for more information', 'Yes', 'Multi-purpose available for meetings, catered luncheons, workshops, and evening events. Contact museum for details.', 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102937, '2008-03-24', false, '@lunch4all', 'Christ Jubilee International Ministries', 'Formerly International Christian Fellowship Ministries', '101 Smith St', 'P. O. BOX 1704', 'Lowell', 'MA', '01851', '978-452-9977', NULL, '978-490-4369', '978-452-9976', 'http://christjubilee.com/', 'icfm@xxxxxxxxxxx', '/', 'Fridays 1-5pm', NULL, '101 Smith St', 'P. O. BOX 1704', 'Lowell', 'MA', '01851', 'Jeremiah Menyongai', 'Senior Pastor', 'Christ Jubilee International Ministries', 'Not Applicable', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 4, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103135, '2008-11-03', false, '@lunch4all', 'Chelmsford Stamp Club', NULL, 'P.O. Box  2342', NULL, 'Littleton', 'MA', '01460', '978-256-2256', NULL, NULL, NULL, NULL, 'lggrn@xxxxxxxxxxx', 'The Chelmsford Stamp Club exists to promote and encourage the study of philately and to promote a spirit of good fellowship among its members. Meetings are held on the 1st & 3rd Monday of every month except July, August & December at the Central Baptist Church at 9 Academy St. Chelmsford, MA', '1st & 3rd Monday of every month (except July, August & December). 
-7:30pm - 9:00PM', NULL, '27 Brentwood Rd.', NULL, 'Chelmsford', 'MA', '01824', 'Linda Gilmore', 'President', NULL, 'Yes', 'Complete set of Scott''s Catalogue', 'Yes', 'Large, well lighted room, with bathroom facilities.', 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101518, '2008-10-21', false, '@lunch4all', 'Renaissance Club', NULL, '176 Walker Street, 2nd Floor', NULL, 'Lowell', 'MA', '01854', '978-454-7944', NULL, NULL, '978-937-7867', NULL, 'renclub@xxxxxxxxxxx', 'Renaissance Club aims to provide a supportive community for individual recovery from mental illness. Our community is a safe place where members can form lasting relationships with others and build on those relationships to become more vocationally and socially active in the clubhouse and in the world. Renaissance Club guarantees all members: a place to belong; a place to return; the opportunity to develop meaningful relationships, and the opportunity for meaningful work.', 'Monday to Thursday  7:30 a.m.- 5:00 p.m.
-Friday              7:30 a.m.- 6:00 p.m.
-Saturday & Sunday  12:00 p.m.- 4:00 p.m.
-
-Youth Group
-Thursday              3:00 p.m.- 7:00 p.m.', NULL, NULL, NULL, NULL, NULL, NULL, 'Elaine Walker', 'Director', 'Eliot Community Human Services,Inc', 'Yes', 'Self-help and addiction books.', 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100473, '2008-09-03', false, '@lunch4all', 'Bridgewell Counseling Services', NULL, '35 Market Street', 'Suite 200', 'Lowell', 'MA', '01852', '978-459-0389', NULL, NULL, NULL, NULL, 'ggastman@xxxxxxxxxxxxxx', 'The mission of Bridgewell is to serve and support adults with serious mental illness and mental retardation so that their lives can be as self-directed and satisfying as possible. To this end we offer complete Outpatient Mental Health and Day Treatment Services, Residential and Psychiatric Day Rehabilitation Services through the Massachusetts Department of Mental Health, Residential services through the Department of Mental Retardation and complete Homeless Services and referral for mentally ill adults through Pathfinder Safe Haven Shelter and Outreach.', 'Monday-Friday 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Gary Gastman', 'Director', 'Bridegwell', 'No', NULL, 'Yes', '10 seat conference room', 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103465, '2008-11-12', false, '@lunch4all', 'Merrimack Valley Health Enrollment Network', 'MVHEN', '9 Central Estreet, Suit 400', NULL, 'Lowell', 'MA', '01852', '978-394-2026', '866-362-6006', NULL, NULL, 'http://mvhealthenrollment.net/', 'carlos.marin@xxxxxxx', 'We envision communities of individuals and families who value preventive health care and have equal opportunity to quality health coverage. 
-
-The Network is made up of community organizations in the Merrimack Valley, working together to raise awareness about health insurance requirements and options among their constituencies, and increase enrollment in state-sponsored health insurance programs. The MVHEN provides clear, consistent health insurance information and enrollment assistance to uninsured citizens throughout the region, particularly minorities and low-income individuals and families.', 'Monday to Friday 
-9:00 A.M-5:00 P.M', NULL, NULL, NULL, NULL, NULL, NULL, 'Carlos M. Marin Ph.D.', 'Network Coordinator/Research Associate', 'Latin American Health Institute', 'No', NULL, 'Yes', 'Conference room for 20 people', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101881, '2008-07-29', false, '@lunch4all', 'Beacon Hospice, Inc.', NULL, '350 Main Street', NULL, 'Haverhill', 'MA', '01830', '800-981-4805', NULL, NULL, NULL, 'www.beaconhospice.com', 'rlblair@xxxxxxxxxxxxxxxxx', 'Beacon Hospice is a Medicare and Medicaid certified program providing superior end-of-life care services.  Founded in 1993 to better serve the needs of terminally ill patients, Beacon Hospice believes in "quality in living."  Driven by patients'' choices and the manner that they wish to live out their lives, we strive to establish the highest standard in hospice care for you and your family.', 'Monday-Friday 8am-5pm
-24 hour on-call services', NULL, NULL, NULL, NULL, NULL, NULL, 'Julie Herget', 'Volunteer Coordinator', NULL, 'Yes', NULL, 'Yes', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100077, '2008-12-01', false, '@lunch4all', 'Center for Family, Work and Community at UMASS Lowell', NULL, '600 Suffolk Street', 'First Floor', 'Lowell', 'MA', '01854', '978-934-4677', NULL, NULL, '978-934-3026', 'www.uml.edu/centers/cfwc', 'robin_toof@xxxxxxx', 'The Center for Family, Work and Community is dedicated to providing exceptional organizational development, consultation and training. Staff is available to consult about creating partnerships with university faculty, staff and students. The Center can help enhance community and organizational capacity by bringing University skills, strategic planning and expertise to groups outside the University.', 'Monday-Friday 9:00AM-5:00PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Dr. Linda Silka', 'Director', 'UMASS Lowell', 'No', NULL, 'Yes', 'Limited space is available, call 978-934-4677 to make arrangements', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101529, '2008-12-01', false, '@lunch4all', 'Community Health Education Center', 'CHEC', '144 Merrimack St', '2nd Floor', 'Lowell', 'MA', '01826', '978-452-0003', '978-452-0003', NULL, '978-452-6602', NULL, 'danmoriarty@xxxxxxxxxxx', 'To establish and anchor outreach education as a valued practice within public health.', 'Monday-Friday 830am - 430pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Daniel Moriarty', 'Regional Manager', 'Lowell Community Health Center and Mass DPH', 'Yes', 'Library with Health Topic information. Books, videos. CDC information sheets are also available.We are now adding dvd''s to our library, please come in to see what we have available.', 'Yes', 'Large meeting space. Can fit 30 people comfortably.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103113, '2008-04-04', false, '@lunch4all', 'Health Quarters', NULL, '101 Amesbury', NULL, 'Lawrence', 'MA', '01840', '978-681-5258', '800-892-0234', NULL, NULL, 'www.healthq.org', 'info@xxxxxxxxxxx', 'Our mission is to protect reproductive health, build healthy communities where every pregnancy is intended, and improve the health of all who seek our services.  We provide quality, sensitive, and affordable clinical care, education and advocacy.  We believe everyone should have access to confidential reproductive health care and the opportunity to make informed choices.  In all aspects of our work we encourage relationships that are respectful and that value sexuality as an integral part of life.', 'Monday 9:00-5:00 
-Tuesday 9:00-5:00 
-Wednesday 9:00-5:00 
-Thursday 9:00-5:00 
-Friday Closed', NULL, '19 Broadway', NULL, 'Beverly', 'MA', '01970', 'Health Quarters', 'Admin', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 4, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102739, '2008-12-01', false, '@lunch4all', 'SAHELI', 'SAHELI BOSTON', 'P O BOX  52063', NULL, 'Boston', 'MA', '02205', '1-866-472-4354', '1-866-472-4354', '1-866-472-4354', NULL, 'www.saheliboston.org', 'sahelihelp.@xxxxxxxxx', 'Saheli, Friendship for South Asian Women is a group dedicated to helping South Asian women in Boston and surrounding areas. . It provides friendship, support, guidance and resources in the areas of career and economic empowerment, physical and mental health, legal and immigration issues, support for families, and social and cultural volunteer opportunities.', '24/7', NULL, NULL, NULL, NULL, NULL, NULL, 'Gouri Banerjee', 'Founder', 'IAGB', 'Not Applicable', NULL, 'Yes', 'Burlington Public Library', 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101232, '2008-12-01', false, '@lunch4all', 'Horizons for Homeless Children', 'formerly The Horizons Initiative', '60 Island Street', NULL, 'Lawrence', 'MA', '01840', '978-557-2182', NULL, NULL, '978-557-2184', 'www.horizonsforhomelesschildren.org', 'northeast@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'The mission of Horizons for Homeless Children is to improve the lives of homeless children and their families. We provide homeless children in Massachusetts with the nurturing, stimulation and opportunities for early education and play that all children need to learn and grow in healthy ways. 
-
-To improve the lives of the children we serve over the long term, we connect their parents with the tools they need to achieve social and economic self-sufficiency. 
-
-We provide leadership in advocating for homeless children and their families through leveraging and sharing our expertise with others and advocating with policy makers and the public.', 'Volunteer shifts mostly on weekday evenings with some daytime or weekend options.', NULL, NULL, NULL, NULL, NULL, NULL, 'Amanda Browne', 'Playspace Programs Northeast Region Director', NULL, 'Not Applicable', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102145, '2008-12-01', false, '@lunch4all', 'Lowell Tobacco Control', NULL, '341 Pine St.', NULL, 'Lowell', 'MA', '01851', '978-970-4010 Ext. 1073', NULL, NULL, '978-970-4011', NULL, 'cmorin@xxxxxxxxxxxx', 'To prevent youth smoking in the city of Lowell and to enforce various smoke free workplace laws as well as educate the public on smoking issues.', 'Monday through Friday
-8:00 to 4:00', NULL, NULL, NULL, NULL, NULL, NULL, 'Chris Morin', 'Tobacco Control Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101452, '2008-12-02', false, '@lunch4all', 'Helpingpatients.org', NULL, 'Not Applicable', NULL, 'Not Applicable', 'MA', '01007', '800-762-4636', '800-762-4636', NULL, NULL, 'Helpingpatients.org', NULL, 'Helping Patients brings together AmericaÂ’s pharmaceutical companies, doctors, patient advocacy organizations and civic groups to help low-income, uninsured patients get free or nearly free brand-name medicines. Its mission is to increase awareness of and enrollment in existing patient assistance programs for those who may be eligible. Through this site, Helping Patients offers a single point of access to more than 275 public and private patient assistance programs, including more than 150 programs offered by pharmaceutical companies.', 'On Web 24/7', NULL, NULL, NULL, NULL, NULL, NULL, 'N/A', 'N/A', 'PhRMA', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100055, '2008-12-02', false, '@lunch4all', 'Lowell General Hospital', NULL, '295 Varnum Ave.', NULL, 'Lowell', 'MA', '01854', '978-937-6000', NULL, NULL, NULL, 'www.lowellgeneral.org', NULL, 'Lowell General Hospital is committed to providing excellent, patient-focused care, a commitment that is summed up in its mission statement, "Patients First in Everything We Do."', '24 Hours a day, 7 days a week.', NULL, NULL, NULL, NULL, NULL, NULL, 'Normand E. Deschene', 'President and Chief Executive Officer', NULL, 'Yes', 'Please call 978-937-6000 for more information', 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101441, '2008-12-02', false, '@lunch4all', 'Department of Mental Health-Adult Case Management', 'DMH-Adult Case Management', '391 Varnum Avenue', NULL, 'Lowell', 'MA', '01854', '978-322-5000', NULL, '978-322-5120', '978-322-5077', NULL, NULL, 'The Department of Mental Health''s mission is to improve the quality of life for adults with serious and persistent mental illness and severe emotional disturbance.  This is accomplished by assuring access to an integrated network of effective and efficient services that promotes consumer rights, responsibilities, rehabilitation, and recovery.', 'Mon - Fri 9 am - 5 pm', NULL, NULL, NULL, NULL, NULL, NULL, 'John Gilmore', 'Director of Residential Services', NULL, 'Not Applicable', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101925, '2008-12-08', false, '@lunch4all', 'Home Health Foundation', 'Home Health VNA', '360 Merrimack Street, Building 9', NULL, 'Lawrence', 'MA', '01843', '978-552-4525', '800-933-5593', NULL, NULL, 'www.homehealthfoundation.org', 'keubanks@xxxxxxxxxxxxxxxxxxxxxxxx', 'Home Health Foundation is committed to creating and delivering innovative and responsive community health programs which provide effective and compassionate care.
-
-Volunteers are an important part of our team and helping us administratively, serving as companions, contacting newly admitted patients by phone and assisting with fundraising events.', 'M-F between 8:30 and 5:00 and occasional weekend events.  Volunteer commitment varies and includes annual events, one time only projects and ongoing weekly assignments.  Generally volunteers contribute between 4-10 hours a month.', NULL, NULL, NULL, NULL, NULL, NULL, 'Kim Eubanks', 'Volunteer Coordinator', 'Home Health Fundation', 'Yes', 'The organization has a number of health care resources including print and electronic format.  We provide free Continueing Educaton Credit for our professional nursing staff and student volunteers.', 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101507, '2008-12-15', false, '@lunch4all', 'Greater Lowell Workforce Investment Board', 'Greater Lowell WIB', '107 Merrimack Street', NULL, 'Lowell', 'MA', '01852', '978-937-9816', NULL, NULL, '978-459-2111', 'www.glwib.org', 'oneilb@xxxxxxxxx', 'The Greater Lowell Workforce Investment Board is a private non profit organization consisting of private business representatives, educational leaders, labor groups, community based organizations, local and state agencies and economic workforce development groups.  The Board works in partnership with the CEO (Lowell City Manager) in providing policy guidance for workforce development issues in Gr. Lowell.  The Board oversees the charter of the Career Center of Lowell, provides technical assistance and information on grant writing initiatives, tax credits, provides labor market information/data reports, expands awareness and support of workforce development issues in Greater Lowell and partners with economic development agencies to assist in the creation, retention and expansion of business opportunities in the Greater Lowell Workforce Investment Area.(City of Lowell and the towns of Billerica, Chelmsford, Dracut, Dunstable, Tewksbury, Tyngsboro and Westford)', 'Monday-Friday, 9:00 a.m.-5:00 p.m.', NULL, NULL, NULL, NULL, NULL, NULL, 'Barbara O''Neil', 'Director', NULL, 'No', NULL, 'Yes', 'The Greater Lowell WIB can assist groups with meeting space needs by utilizing the Career Center of Lowell.  Please contact Barbara for information', 'No', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102761, '2008-12-15', false, '@lunch4all', 'Mass Rehab Commission', 'MRC-Homecare Assistance Program', 'Massachusetts Rehabilitation Commission', '27 Wormwood Street, Suite 600', 'Boston', 'MA', '02210', '617-204-3853', '1800-223-2559', NULL, '617-727-2809', 'www.mass.gov/mrc', 'duncan.arden@xxxxxxxxxxxxxxx', 'To promote equality, empowerment and productive independence of individuals with disabilities. The purpose of the MRC is to provide comprehensive services to people with disabilities to maximize their quality of life and economic social self-sufficiency in the community.
-This is accomplished through multiple programs in the MRC: the vocational rehabilitation services program, the community services program, and the disability determination services program', 'Monday-Friday - 8:30-5pm', 'Program provides paid homemaking services only - ( laundry, light cleaning, food shopping, meal preparation and medication pickup) to persons with physical, psychiatric and cognitive disabilities 18-59 years throughout the State, to prevent further injury, decompensation or hospitalization. Eligibility is based on medical documentation of a person''s need for homemaking services, as well as determination of age, living situation and income. Services are free to eligible consumers. Case managers provide information and referral to other independent living resources in the consumer''s community. There is currently a 4-5 month waiting list upon approval. Approval can take up to 3 months due to need to gather documentation from various sources.', NULL, NULL, NULL, NULL, NULL, 'Betty Maher', 'Director, Homecare Assistance Program', 'Massachusetts Rehabilitation Commission', 'Yes', 'Information on our program is available on the MRC website and can be mailed to interested parties.', 'Yes', 'Conference rooms on the 5th and 6th floor available for booking', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102706, '2008-12-15', false, '@lunch4all', 'Shriver Job Corps Center', 'Job Corps', '270 Jackson Road', NULL, 'Devens', 'MA', '01434', '978-784-2600', NULL, NULL, '978-784-2710', 'http://bostonregion.jobcorps.gov', 'bradshaw.christine@xxxxxxxxxxxx', 'Job Corps is a federally funded residential training program for youth ages 16 - 24. Shriver Job Corps is one of over 120 centers nationwide. (There are 2 other centers in Massachusetts.) Job Corps provides career skills training, as well as the opportunity to earn a GED or HSD and a driver''s license. Students who have already obtained a GED or HSD are eligible for the program and are encouraged to apply. Students live at the Job Corps Center and attend classes daily to obtain a trade certificate in C.N.A., Auto, Culinary, Computer Technologies, Business Clerical, Carpentry, Painting, Cement and many more. Students receive a weekly stipend as well as room and board, wellness services, recreational activities and uniform allowance. Upon completion, students can earn up to $1200 in transitional assistance.', '24 hours a day, 365 days per year. Classroom training takes place weekdays from 8:00 am - 3:30 pm.', 'Most staff have access via the Job Corps Portal.', NULL, NULL, NULL, NULL, NULL, 'Tscherina Telesford', 'Center Director', 'Job Corps, The Department of Labor, Adams & Assoc., Inc.', 'Yes', 'Not open to the public, staff and students have access to career assessment and career placement resources.', 'Yes', 'Conference room, gymnasium, classrooms and cafeteria', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102717, '2008-12-15', false, '@lunch4all', 'Department of Children and Families -- Haverhill Office', 'DCF', '3 Ferry Street', NULL, 'Bradford', 'MA', '01835', '978-469-8800', NULL, '1-800-792-5200', '978-469-8990', 'www.mass.gov/dss', 'nancy.fagan@xxxxxxxxxxx', 'The Department of Social Service (DSS) is the Massachusetts state agency charged with the responsibility of protecting children from child abuse and neglect. DSS is committed to protecting children and strengthening families. When children are abused or neglected by the people responsible for caring for them, DSS will intervene to ensure the safety of the children. 
-DSS responds to reports of abuse or neglect 24 hours a day. DSS becomes involved if there are any concerns that caretakers, parents, step-parents, guardians or other persons responsible for caring for children may be abusing or neglecting these children.
-Whenever possible and appropriate, DSS attempts to keep families intact. DSS reviews all the reports of child abuse and neglect received by the agency. If it is determined that abuse or neglect has occurred, or if a child appears to be at risk of being hurt, or is being neglected, DSS takes action to protect that child.', 'Monday – Friday 8:45 – 5:00 
-After Hours: Child-At-Risk Hotline: 1-800-792-5200', NULL, NULL, NULL, NULL, NULL, NULL, 'Nancy J. Fagan', 'Area Director', NULL, 'Yes', 'Northeast Regional Resource Center
-http://www.marrcne.org 
-
-Adoption Journeys of Massachusetts
-1-800-972-2734
-http://www.adoptionjourneysma.org  
-
-Massachusetts Adoption Resource Exchange, Inc. (MARE)1(800)54-ADOPT
-http://www.mareinc.org 
-
-Massachusetts Society for the Prevention of the Cruelty of Children (MSPCC), KidÂ’s Net Program
-(617) 587-1500
-http://www.mspcc.org 
-
-The Center for Family Connections
-(617) 547-0909
-http://www.kinnect.org 
- 
-The Center for Adoption Research
-http://www.centerforadoptionresearch.org  
-
-Open Door Society
-http://www.odsacone.org 
-
-AdoptUSKids
-www.adoptuskids.org 
-
-Baby Safe Haven
-http://www.babysafehaven.com', 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102662, '2008-12-17', false, '@lunch4all', 'Dept. of Mental Health -- Essex North', NULL, '15 Union St., Suite #2', NULL, 'Lawrence', 'MA', '01840', '978-738-4500', NULL, NULL, '978-738-4559', 'www.state.ma.us/dmh', NULL, 'The Department of Mental Health, as the State Mental Health Authority, assures and provides access to services and supports to meet the mental health needs of individuals of all ages, enabling them to live, work and participate in their communities. The Department establishes standards to ensure effective and culturally competent care to promote recovery. The Department sets policy, promotes self-determination, protects human rights and supports mental health training and research. This critical mission is accomplished by working in partnership with other state agencies, individuals, families, providers and communities. 
-
-The Massachusetts Department of Mental Health (DMH) sets the standards for the operation of mental health facilities and community residential programs and provides clinical, rehabilitative and supportive services for adults with serious mental illness, and children and adolescents with serious mental illness or serious emotional disturbance.', '9 am - 5 pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Dorothy Smith', 'Site Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', '978-738-4558', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103476, '2008-12-20', false, '@lunch4all', '119 Gallery', NULL, '119 Chelmsford Street', NULL, 'Lowell', 'MA', '01851', '978-452-8138', NULL, NULL, NULL, 'www.119gallery.org', 'email@xxxxxxxxxxxxxx', '119 Gallery promotes contemporary and new media art, innovative ideas and cutting-edge techniques with a rich and diverse program of exhibitions, performances and community-based arts services; and welcomes people of all ages, backgrounds and means to explore and experience new, innovative art.', 'Tuesday - Saturday 12noon - 5pm
-Check our calendar for evening and weekend programming.', NULL, NULL, NULL, NULL, NULL, NULL, 'Walter Wright', 'Director', NULL, 'Not Applicable', NULL, 'Yes', 'Gallery is available for meetings.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103146, '2008-12-23', false, '@lunch4all', 'Non-Profit Alliance of Greater Lowelll', 'NPA', 'c/o UMass Lowell Center for Family, Work, and Community', '600 Suffolk Street, First Floor South', 'Lowell', 'MA', '01854', '978-934-4682', NULL, NULL, '978-934-3026', 'http://www.npagl.org/', 'info@xxxxxxxxx', 'The Mission of The Non Profit Alliance is to build collaboration that strengthens the influence and impact of community-based organizations through sharing resources and advancing excellence in administration.', '8:30am-4:30pm', NULL, NULL, NULL, NULL, NULL, NULL, 'David Turcotte', 'Chair', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100462, '2009-01-06', false, '@lunch4all', 'Massachusetts Rehabilitation Commission', 'Mass Rehab (MRC)', '325 Chelmsford St.', NULL, 'Lowell', 'MA', '01851', '978-458-4544', NULL, NULL, '978-937-9879', 'www.state.ma.us/mrc/vr/towns.htm', NULL, 'The mission of the Massachusetts Rehabilitation Commission VR division is to provide vocational rehabilitation services to eligible persons with disabilities geared toward increasing individual self-sufficiency through competitive integrated employment.', 'Monday-Friday 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Carolyn L. Langevin', 'Lowell Area Director', 'Massachusetts Rehabilitation Commission - State Agency', 'No', NULL, 'Yes', 'Limited space for up to 15 people limited to 9-5PM hours available by appointment only. Call 978-458-4544 x303', 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103289, '2008-12-23', true, '@lunch4all', 'Methuen Arlington Neighborhood, Inc.', 'MAN, Inc.', '141 Tenney Street', NULL, 'Methuen', 'MA', '01844', '978-691-5645', NULL, NULL, '978-691-5645', NULL, 'methuenarlington@xxxxxxxxx', 'The Methuen Arlington Neighborhood is a densely populated, low to moderate income area located close to the City of Lawrence. Sharing the same problems as Lawrence - poverty, lack of employment opportunities, and social ills - this area is able to receive some financial assistance due to the fact that Methuen is a small cities mini-entitlement area. 
-
-To begin formally working on improving the quality of life in the area, neighborhood residents formed a Community Developement Corporation (CDC), the Methuen Arlington Neighborhood, Inc. (M.A.N., Inc.). In March of 1995, this organization became incorporated as M.A.N. Inc. The neighborhood is also the site of the Department of Justice''s Weed and Seed Program.
-
-M.A.N. Inc''s prime target area for the purpose of representation and service is within the Town of Methuen, primarily within the borders of the Spicket River, Horne Street, Lawrence Street, and the Lawrence City Line of Center Street.', 'ADD', NULL, '141 Tenney Street', 'PO Box 715', 'Methuen', 'MA', '01844', 'Pamela Marchand', 'Program Director', 'Greater Lawrence Community Action Council, Inc (GLCAC, Inc.)', 'Yes', 'Library for kids in the after school homework center.', 'Yes', 'Occasionally. After an elevator to the second floor is installed, we will be better able to accommodate local groups.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103487, '2008-12-29', false, '@lunch4all', 'Youth Villages, Inc.', 'Youth Villages, Inc.', '400 West Cummings Park', NULL, 'Woburn', 'MA', '01801', '781-937-7913', NULL, '781-937-7924', '781-937-7901', 'www.youthvillages.org', 'jodie.minahan@xxxxxxxxxxxxxxxxx', 'Our Guiding Principles
-
-All Youth Villages employees are committed to the mission and values that guide our organization. Adherence to these simple, specific principles ensures that we offer the very best, most effective help to every child in our care and provides the foundation for our organization''s dynamic growth. 
-
-Our Mission
-Youth Villages helps children and families live successfully. 
-
-Our Values 
-Kids'' needs come first...Always 
-We make every decision in the best interest of each child. We adapt our programs to accommodate the special needs of children and families. Often we make personal sacrifices in order to help children and families achieve their potential. 
-
-Children are raised best by their families. 
-When at all possible, children belong with their families. We help families provide the support and structure that all children need. 
-
-We provide a safe place. 
-We provide care and treatment for children in an open, safe environment. We ensure that young people are physically and emotionally safe. 
-
-We strive to achieve positive, lasting results. 
-
-We help children and families develop skills to live successfully by focusing on areas that have a long-term impact on the family. 
-
-We are committed to our staff. 
-We recognize the many challenges our staff face each day. We value teamwork and help staff achieve their potential through an atmosphere of open communication, learning and fun. 
-
-We are each responsible for providing the highest level of service to our customers. 
-We deliver our best by listening and responding to our customers...every time, every day. 
-
-We constantly improve our performance to achieve excellence. 
-
-We measure our efforts by accessing our strengths and needs to identify areas for improvement. We believe that anything can be made better. 
-
-We create new programs to meet the needs of children, families and the community. 
-We develop innovative programs that serve children and families facing the most challenging circumstances. Our entrepreneurial spirit leads us to test the limits of existing services and create new opportunities. 
-
-We do what we say we do. 
-Our mission and values are more than just something to talk about. They guide all of our decisions. We believe that our integrity can only be measured by how we live by these values each day.', 'Please call to schedule an appointment.', NULL, '400 West Cummings Park', NULL, 'Woburn', 'MA', '01801', 'Matt Stone', 'Massachusetts State Manager', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103322, '2008-12-30', false, '@lunch4all', 'Family Service, Inc.', NULL, '430 North Canal Street', NULL, 'Lawrence', 'MA', '01840', '978-327-6600', NULL, NULL, '978-327-6601', 'www.familyserviceinc.com', 'info@xxxxxxxxxxxxxxxxxxxx', 'Family Services'' mission is to strengthen individuals and families by building skills for successful home, school, work, and community life, has led the agency to implement a range of prevention and treatment programs that are evidence-based and result in self-sufficiency and improved economic and health outcomes for its clients. Over 20 programs are currently offered in the areas of child welfare, parent education, youth development, employee assistance, mental health treatment and suicide prevention.', 'M-F 8:00am-5:00pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Kay Berthold Frishman', 'Executive Director', NULL, 'Yes', NULL, 'Yes', 'Conference room seats 75 persons.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100484, '2009-01-05', false, '@lunch4all', 'Middlesex Community College', NULL, '33 Kearney Square', NULL, 'Lowell', 'MA', '01852', '978-656-3105', '800-818-3434', NULL, '978-656-3150', 'www.middlesex.mass.edu', 'sheehym@xxxxxxxxxxxxxxxxxx', 'Middlesex Community College is a progressive and dynamic learning community, committed to providing educational programs and services that support personal growth and economic opportunity for its diverse student population.  Dedicated to student success, the College provides excellence in teaching, personal attention, and extensive opportunities for exploration and growth.  Closely linked to the fabric of the community, Middlesex''s partnerships with school, business and service organizations provide leadership in economic and community development and foster a culture of civic engagement and responsive workforce development.  The College''s state-of-the-art programs iin the liberal arts, basic skills, and more than fifty career and technical fields respond to student and community needs, providing a strong foundation for college transfer, employment, professional development and lifelong learning.', 'Monday-Thursday 7AM-10PM; Friday-Saturday 7AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Dr. Carole A. Cowan', 'President', 'Board of Higher Education', 'Yes', NULL, 'Yes', 'Meeting space is available when space not occupied. Contact Mandy Vozzo, 978-656-3106 for information', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103498, '2009-01-14', false, '@lunch4all', 'Balas, Alphen & Santos, PC', NULL, '200 Littleton Road', NULL, 'Westford', 'MA', '01886', '978-692-3107', NULL, NULL, '978-692-5454', 'www.lawbas.com', 'maria@xxxxxxxxxx', 'We are a law firm in existence since 1996.  Attorney Maria L. Santos focuses her practice on employment based and family based immigration law and has done so since 1996.', 'By appointment anytime, but we are open 8:30 to 5:00.', NULL, NULL, NULL, NULL, NULL, NULL, 'Maria L. Santos', 'Managing Partner', NULL, 'Not Applicable', NULL, 'Yes', 'We have a conference room that will accomodate 12-15 people for a meeting', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103311, '2008-06-16', true, '@lunch4all', 'Lawrence Methuen Community Coalition', 'LMCC', '112 A East Haverhill Street', NULL, 'Lawrence', 'MA', '01841', '978-975-8793', NULL, NULL, '978-975-3294', 'http://www.lmcconline.com/aboutus/index.htm', 'mail@xxxxxxxxxxxxxx', 'The mission of the Lawrence/Methuen Community Coalition is to provide an accessible continuum of services that fosters and preserves the health, safety and well being of individuals and families, thus supporting communities in which they through following the principles of Family Support, the prevention of substance abuse, the prevention of child maltreatment and increasing awareness of the prevention of domestic and family violence.', 'M-F ADD', NULL, NULL, NULL, NULL, NULL, NULL, 'Harold Magoon', 'Director', 'Greater Lawrence Community Action Council Inc.', 'No', NULL, 'Yes', 'Conference room seats 20 persons', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100154, '2008-06-17', false, '@lunch4all', 'City of Lowell', 'City Hall', '375 Merrimack Street', NULL, 'Lowell', 'MA', '01852', '978-970-4000', NULL, NULL, NULL, 'http://www.lowellma.gov', NULL, 'Lowell offers a variety of services to residents. Please see programs for additional information.', 'City Hall open 8AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Bernie Lynch', 'City Manager', NULL, 'No', NULL, 'No', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100044, '2008-06-19', false, '@lunch4all', 'Lowell Community Health Center', 'LCHC', '585-597 Merrimack Street', NULL, 'Lowell', 'MA', '01854', '978-937-9700', NULL, NULL, '978-970-0359', 'www.lchealth.org', 'georgenu@xxxxxxxxxxxx', 'Lowell Community Health Center provides caring, quality, and culturally appropriate health services to the people of greater Lowell, regardless of their financial status. We are committed to enhancing the health of our community and to empower each individual to maximize overall well being. Drawing from this mission our motto is: Linking Community to Health Care.', 'Monday-Friday 9AM-5PM; Tuesday & Thursday Evening Clinic; please call for office hours.', '978-452-4774 TTY Number', '585-597 Merrimack Street', NULL, 'Lowell', 'MA', '01854', 'Dorcas Grigg-Saito', 'Chief Executive Officer', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101837, '2008-06-19', false, '@lunch4all', 'Massachusetts Children''s Trust Fund', NULL, '55 Court Street', '4th Floor', 'Boston', 'MA', '02108', '617-722-8957', '888-775-4543', '617-722-8957', '617-727-8997', 'www.onetoughjob.org', 'info@xxxxxxxxxxxxxxxx', 'Being a parent is one tough job. Full of many rewards, beautiful moments, great sharing, laughs and love. But the reality of raising children today is that parents become overwhelmed, exhausted and stressed.
-We get it. We''re the Massachusetts Children''s Trust Fund and we know how hectic the life of a parent is today. In communities throughout the state and in the pages of this website, we provide parents with the expert information, tips and support they need and deserve to be the best parent they can be.', 'Monday through Friday/8:45 a.m. to 5 p.m.', NULL, NULL, NULL, NULL, NULL, NULL, 'Suzin Bartley', 'Executive Director', 'Board of Directors of the MAChildren''s Trust Fund', 'Yes', 'Over 300 curricula, technical assistance resources, videos, and other material available free to community-based groups to better meet the needs and interests of families.', 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100407, '2008-06-19', false, '@lunch4all', 'University of Massachusetts Lowell', 'UMass Lowell', 'One University Avenue', NULL, 'Lowell', 'MA', '01854', '978-934-4000', NULL, NULL, NULL, 'www.uml.edu', NULL, 'The mission of the University of Massachusetts Lowell is to enhance the intellectual, personal and cultural development of its students through excellent, affordable educational programs. The University seeks to meet the needs of the Commonwealth today and into the future and supports the development of sustainable technologies and communities through its teaching, research, scholarship and engagement.
- Lowell offers its 12,000 undergraduate and graduate students more than 80 degree programs in the colleges of Arts and Sciences, Engineering, and Management; School of Health and Environment; and the Graduate School of Education.', 'Varies by program', NULL, NULL, NULL, NULL, NULL, NULL, 'Marty Meehan', 'Chancellor', 'University of Massachusetts System', 'Yes', 'A wide variety of subjects available at three locations. For information visit http://www.uml.edu/libraries', 'Yes', 'Meeting space is available for large and small groups. Contact University Special Events for more information at 978-934-3888 or events@xxxxxxx.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102750, '2008-06-19', false, '@lunch4all', 'Massachusetts Rehabilitation Commission/Turning 22 Program', 'MRC', '27 Wormwood Street', NULL, 'Boston', 'MA', '02210', '617-204-3600', NULL, NULL, '617-727-1354', 'www.mass.gov/mrc', 'james.durant@xxxxxxxxxxxxxxx', 'The MRC Turning 22 Program was established in 1986 to design and implement transition services for young people who have a severe physical disability with a mobility impairment, and who would need residential services after high school graduation or turning 22.  The program utilizes the independent living philosophy in which consumers are empowered to make their own decisions about their lives, based on informed choice.', 'Monday through Friday
-9-5', NULL, NULL, NULL, NULL, NULL, NULL, 'James Durant', 'Turning 22 Program Coordinator', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100165, '2008-06-19', false, '@lunch4all', 'Mass Society for the Prevention of Cruelty to Children', 'MSPCC, Massachusetts Society for the Prevention of Cruelty', '439 South Union Street', NULL, 'Lawrence', 'MA', '01843', '978-682-9222', NULL, '800-422-3035', '978-681-9508', 'www.mspcc.org', 'pdicori@xxxxxxxxx', 'The Massachusetts Society for the Prevention of Cruelty to Children is a private, non-profit society dedicated to leadership in protecting and promoting the rights and well being of children and families. There are 2 locations serving the Merrimack Valley: - 439 South Union Street Lawrence, MA 01843v - 126 Phoenix Ave 3rd Floor, Lowell, MA 01852', 'Monday-Friday 9:00AM-5:00PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Marylou Sudders', 'Executive Director', NULL, 'No', NULL, 'Yes', 'One conference room in Lawrence may be available. Sign up through receptionist', 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102618, '2008-06-19', false, '@lunch4all', 'Summers, Summers & Associates', 'Criminal Defense and Immigration Lawyers', '321 Central Street', NULL, 'Lowell', 'MA', '01851', '978-452-6655', '978-452-6655', NULL, NULL, 'www.summersatlaw.com', 'phil@xxxxxxxxxxxxxxxx', 'Summers, Summers & Associates, P.C. provides legal services and expertise in all areas of criminal law, immigration and nationality law.', 'Monday through Friday 8:00 AM to 6:00 PM.', 'visit our web site at www.summersatlaw.com', '179 Great Road', NULL, 'Acton', 'MA', '01720', 'Philip Summers', 'Partner', NULL, 'Not Applicable', NULL, 'Yes', '321 Central Street
-Lowell, MA  01851', 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102079, '2008-06-19', false, '@lunch4all', 'YouthStorm of New England', NULL, '101 Main St', NULL, 'Salem', 'NH', '03089', '978-416-2002', NULL, NULL, NULL, 'www.youthstorm.org', NULL, 'YouthStorm is an independent, faith based but non-denominational 501(c)(3) nonprofit organization. Our vision is to unite, equip, and mobilize the youth in New England in order to raise up the next generation to pursue holiness, to fulfill their purposes in the local church and the Kingdom and to ignite the flames of revival in their communities and their world.', 'M-F 10am-5pm', NULL, 'YouthStorm', '44 Range Road', 'Windham', 'NH', '03087', 'Rebekah Schmitz', 'Office Manager', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101606, '2008-06-19', false, '@lunch4all', 'Neighbors In Need', NULL, '95 East Haverhill Street', NULL, 'Lawrence', 'MA', '01841', '978-685-8321', NULL, NULL, '978-689-2006', 'NeighborsinNeed.net', 'neighborsinneed@xxxxxxxxxxx', 'Neighbors In Need has fed the poor and hungry of Greater Lawrence for nearly 25 years.  We give food to those in need without judgment, respecting the dignity of each individual.  All food, formula, diapers, clothing and household items are provided free of charge to those who request them.
-
-Neighbors In Need was founded in 1983 to provide food to needy families in the Greater Lawrence Area under the sponsorship of Rudolf Canon Devik, Rector of Grace Church in Lawrence.  Two food pantries were opened the first year with more added as the organization grew.  Since its founding in 1983, Neighbors In Need has been a faith-based community organization relying heavily on area churches for support. 
-
-Today, Neighbors In Need serves families in eight food pantries throughout Lawrence and Methuen. The Infant in Need Program provides baby formula and diapers for at-risk children. The Adopt-A-Family Program provides holiday meals and gifts.  Neighbors In Need distributes clothing and household items donated by individuals, schools and local corporations.', 'Office hours: M-F, 9am-12pm', 'Office space is rented at 95 East Haverhill Street in Lawrence.  The 450 square foot basement is used to store, sort and package diapers and formula for the Infants In Need program, and clothing for the Clothes Bin program.
-
-Neighbors In Need maintains a 1,200 square foot warehouse in Andover where we store, sort and repackage the food donations.  The warehouse has an 8 ft. x 8 ft. walk-in freezer and refrigerator.  Food is separated into major food groups and stored for future repackaging and delivery to the food pantries.  Eight institutions donate space for the weekly food pantries.
-
-
-Community Partners:
-
-Since its founding in 1983, Neighbors In Need has been a faith-based community organization relying heavily on area churches for support.  Neighbors In Need works closely with area churches, the Greater Lawrence Council of Churches, Pike School, Phillips Academy, Merrimack College, public schools in Lawrence, Andover, Methuen, North Andover, corporations, and civic organizations who have food drives to support our mission.  Many are financial contributors as well.    Donated food, clothing, diapers and baby goods are picked up by the Neighbors In Need van from these generous organizations.  These supporters donate 40% of food distributed annually by Neighbors In Need.', 'P.O. Box 447', '95 East Haverhill Street', 'Lawrence', 'MA', '01841', 'Linda Zimmerman', 'Executive DIrector', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102013, '2008-06-20', false, '@lunch4all', 'Sangeeta Dey, Psy.D; Pediatric Neuropsychologist', NULL, '594 Marrett Road, Suite 22', NULL, 'Lexington', 'MA', '02421', '781-652-9594', NULL, NULL, '781-652-9557', NULL, 'dey.kids@xxxxxxxxx', 'Provide neurodevelopmental and neuropsychological evaluation for children ages 2 and above with developmental delays, attentional problems, and learning disorders due to various conditions, such as PDD, Genetic & Metabolic Disorders.', 'M-F
-8AM-6PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Sangeeta Dey, Psy.D.', 'Pediatric Neuropsychologist', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101969, '2008-06-20', false, '@lunch4all', 'Rehabilitation Options, PC', 'Robert Brownson, MS', '564 Dutton Street', '2nd Floor', 'Lowell', 'MA', '01854', '978-479-2923', NULL, NULL, '978-746-9502', 'www.rehabilitation-options.com', 'rehabilitationoptionspc@xxxxxxxxx', 'Mental Health and Psychotherapy Practice
-
-Clinical Competency:
-Inter-Ethnic, Adult and Adolescent Orientation
-Highly Individualized
-Broad Clinical Interest, including: Depression, Traumatic Experience and Loss, Periods of Life Change, Addictive Traits and Conduct Problems                               
-
-Forensic Services:
-Courts and Probation/Parole programs: Anger Management, Domestic Violence Intervention, Offense Specific Treatment
-Supportive/Supervisory Counseling to  reduce Recidivism and Re-Incarceration
-Psychosocial Evaluations
-Risk Assessments for Anger Management
-Substance Abuse Evaluations
-Orientation to the Legal Process
-Trial and Testimony Preparation
-Mitigating Circumstances Review and Alternative Sentencing Recommendations: G.L. c. 123, s. 15 (e, f)
-Parole Hearing Preparation
-Attorney/Client Consultations
-
-Rehabilitation Services:
-Job Skills Inventory and Advising
-Workplace Advocacy
-Life Balance Counseling
-
-Specialty Consultations:
-MenÂ’s Work Programs
-Steps to Reduce Work Place Violence
-Conflict Resolution and Mediation
-Guardian ad Litum – Middlesex County
-
-MASS Health Provider, and other health insurances, as well', 'by appointment', NULL, NULL, NULL, NULL, NULL, NULL, 'Robert Brownson, MS', 'Lead Clinician', NULL, 'No', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102673, '2008-06-20', false, '@lunch4all', 'Greater Lawrence Educational Collaborative', 'GLEC', '480 Broadway', NULL, 'Methuen', 'MA', '01844', '978-685-3000', NULL, NULL, '978-689-7466', 'www.glec.org', 'djones@xxxxxxxx', 'The mission of the Greater Lawrence Educational Collaborative is to serve member school districts in meeting their unique needs in a changing global community through cooperative visionary leadership and coordination of resources and services.  Collaborative services maximize efficiency, quality and equity of educational opportunity.', 'Monday - Friday
-8:00 AM - 4:00 PM', NULL, '480 Broadway', NULL, 'Methuen', 'MA', '01844', 'Robert McArdle', 'Executive Director', 'Greater Lawrence Educational Collaborative', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101023, '2008-06-20', false, '@lunch4all', 'Parents Helping Parents', NULL, '108 Water Street', NULL, 'Watertown', 'MA', '02472', '617-926-5008', '800-882-1250', NULL, '617-926-5011', 'www.parentshelpingparents.org', 'nancy@xxxxxxxxxxxxxxxxxxxxxxxxx', 'PHPEmpowering parents to Nurture children and prevent child abuse.', 'Office hours: Monday-Friday 9AM-5PM
-Support groups meet in the evenings, usually Mondays through Thursdays.', 'website', NULL, NULL, NULL, NULL, NULL, 'Randy Block', 'Executive Director', 'Parents Helping Parents', 'No', 'we have a group in Lowell Mon 5:30-7:00
-Salem Tuesday 10:30-12:30, and Beverly Monday 6:30-8:00', 'Yes', 'small conference room', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100616, '2008-06-20', false, '@lunch4all', 'St. Ann''s Home, Inc.', NULL, '100A Haverhill Street', NULL, 'Methuen', 'MA', '01844', '978-682-5276', NULL, NULL, '978-688-4932', 'www.st.annshome.org', 'dgrandbois@xxxxxxxxxxxxxxx', 'The mission of St. Ann''s Home, Inc. is to support, nurture, rehabilitate, educate and advocate for children who are emotionally and/or behaviorally disturbed. We seek to reverse the impact of physical, emotional, and/or developmental traumas experienced in the early years of these children''s lives through our Residential, Day and Outpatient Services Programs. In addition to our treatment and education programs, St. Ann''s Home, Inc. is a committed advocate for children and families. In so doing St. Ann''s Home seeks to alleviate the conditions that prevent our children from reaching their full potential.', 'Monday-Friday 8:30AM-5PM with evening and weekend emergency coverage', NULL, NULL, NULL, NULL, NULL, NULL, 'Denis Grandbois', 'President and CEO', NULL, 'No', NULL, 'Yes', 'Conference rooms are occasionally made available for public or professional education use. Call for more info.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100220, '2008-06-20', false, '@lunch4all', 'Greater Lowell Community Foundation', 'GLCF', '100 Merrimack St, Suite 202', NULL, 'Lowell', 'MA', '01852', '978-970-1600', NULL, NULL, '978-970-2444', 'www.glcfoundation.org', 'dave.glcf@xxxxxxxxxxx', 'The Greater Lowell Community Foundation is an 11 year-old, $18 million charitable foundation dedicated to improving the quality of life in the Nashoba Valley, Minuteman towns and Greater Lowell region of Massachusetts.  We achieve this mission by assisting individuals, families, nonprofit organizations and corporations to create permanent endowments and scholarship funds.  The Community Foundation invites you to work with us to create practical investments and imaginative solutions in our communities. 
-
-Through its portfolio of 259 community endowments and scholarship funds, and allied grant services, the Community Foundation has awarded more than $5 million in scholarships to high school students, grants to worthy charitable organizations identified by both donors and community grantmaking committees.', 'Monday-Friday 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'David Kronberg', 'Executive Director', NULL, 'No', NULL, 'Yes', 'A small conference room (maximum 12)', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100187, '2008-06-23', false, '@lunch4all', 'North Shore Arc', NULL, '64 Holten Street', NULL, 'Danvers', 'MA', '01923', '978-762-4878', NULL, '978-762-4878', '978-777-6149', 'www.nsarc.org', 'jmccarthy@xxxxxxxxx', 'The North Shore Arc is dedicated to providing lifelong individualized support to people with or at risk of developing disabilities, and their families, thus ensuring opportunities to choose and realize their goals of where and how they learn, live, work, socialize and play. The North Shore Arc will provide leadership through the advocacy and education necessary to secure resources and ensure that the rights of individuals are protected. In order to achieve this mission, the North Shore Arc vows to build community partnerships that promote shared responsibility to become more self-sufficient.', 'Monday-Friday 9AM-5PM', '(978) 624-2301 or 2337 -Bilingual Spanish speaker available 
-(978) 762-4873 TDD Number', NULL, NULL, NULL, NULL, NULL, 'Jerry McCarthy', 'Executive Director', NULL, 'Yes', 'Contact North Shore Arc for information about the resource library', 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', '978-762-4873', 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100528, '2008-06-24', false, '@lunch4all', 'American Textile History Museum', NULL, '491 Dutton Street', NULL, 'Lowell', 'MA', '01854', '978-441-0400', NULL, NULL, '978-441-1412', 'www.athm.org', 'jcoleman@xxxxxxxx', 'The American Textile History Museum tells America''s story through the art, science and history of its textiles, with a newly redesigned core exhibit - "Textile Revolution - An Exploration through Space and Time," special exhibits (several each year), both onsite and traveling educational programs for schools and groups, textile arts lessons (weaving, spinning, felting, quilting), special public programs, and an extensive library and online catelogue.', 'The Museum is currently closed to the public while a major redesign of our core exhibit is underway, with a fall 2008 grand reopening anticipated. To schedule offsite and select onsite programming available during the closure, call 978-441-0400 X250. The library is unaffected by the closure, and may be contacted through the main phone number 978-441-0400.', NULL, NULL, NULL, NULL, NULL, NULL, 'James Coleman', 'Executive Director', NULL, 'Yes', 'Resource materials on: Textile History, cloth, fabric, Lowell history, Lawrence history, historic images', 'Yes', 'Our newly redesigned facility, reopening in fall 2008, has various meeting space configurations. Call 978-441-0400 X241 for more information.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101298, '2008-07-01', false, '@lunch4all', 'Massachusetts MENTOR, Lawrence Children''s Program', 'MENTOR', 'Everett Mills', '15 Union Street, 5th Floor', 'Lawrence', 'MA', '01840', '978-794-7966', '866-375-5114', NULL, '978-794-9890', 'www.TheMentorNetwork.com', 'luigi.grimaldi@xxxxxxxxxxxxxxxxxxxx', 'Services for Children with Emotional and Behavioral Challenges 
-
-Nationally known for our expertise in working with children and their families, Massachusetts MENTOR approaches each child as a unique individual. Our services, customized to fit each young person''s needs, are designed to improve child and family functioning, assist with permanency planning where appropriate and maximize the effectiveness of limited state resources. 
-
-This individualized, flexible approach allows us to serve a diverse range of children of different ages, backgrounds and needs, including emotional and behavioral issues, juvenile offenders and those with complex medical needs. 
-
-Massachusetts MENTORÂ’s Lawrence ChildrenÂ’s Program in Lawrence, MA offers Specialized Foster Care services in the service areas North and Northwest of Boston. 
-
-This flexible program provides youths from troubled families, institutions and other settings – including teen parents and their babies – with a warm, stable environment coupled with the interventions needed to address severe emotional and behavioral disorders often stemming from abuse and neglect. Placement in the home of a specially trained caregiver, called a Mentor, is carefully matched according to each child’s needs. Mentors provide children in their care with therapeutic intervention, nurturing support and the consistent guidance in addition to routine family- and community-based activities. A Clinical Coordinator oversees implementation of an Individualized Treatment Plan with emphasis on discharge planning to assure the youth’s appropriate progress and transition to home, permanent placement or independent living.', 'Office Hours are Mondays-Fridays, 9am-5pm.
-On-call 24/7.', NULL, NULL, NULL, NULL, NULL, NULL, 'Luigi Grimaldi', 'Program Manager', 'The MENTOR Network', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103355, '2008-06-30', false, '@lunch4all', 'Essex Art Center', NULL, '56 Island Street', NULL, 'Lawrence', 'MA', '01840', '978-685-2343', NULL, NULL, NULL, 'www.essexartcenter.com', 'info@xxxxxxxxxxxxxxxxxx', 'The Essex Art Center (EAC) is a nonprofit art organization with a mission to inspire and nurture the diverse artistic potential of the Greater Lawrence Community through classroom exploration and gallery exhibitions, making the creation and enjoyment of art accessible to all.
-
-In November 1993 three women opened a gallery and small classroom on Essex Street and were determined to show fine art and teach art classes to any citizen of Lawrence and the Merrimack Valley who was interested. Since then Linda Maddox has moved on leaving Leslie Costello and Helen Tory to continue the dream of building a valuable art resource in downtown Lawrence. In 1995 they moved to a larger premises, with 7,200 square feet of galleries and classrooms in the Mill district, where the dream strengthens and grows... and as of July 2001 we occupy 13,200 sq. ft of creative space.', 'Office Hours: M-F, 10am-6pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Leslie Costello', 'Executive Director', NULL, 'No', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103388, '2008-07-10', false, '@lunch4all', 'ValleyWorks Career Center -- Haverhill', 'VWCC-Haverhill', 'Landmark Building', '80 Merrimack St.', 'Haverhill', 'MA', '01830', '978-722-7000', NULL, NULL, '617-727-5739', 'www.valleyworks.cc', NULL, 'The ValleyWorks Career Center (VWCC) is a workforce development collaboration of the Department of Training and Development and the Division of Career Services. A federal- and state-funded center, the VWCC is designed to provide comprehensive services to job seekers and businesses of the Merrimack Valley.
-
-The VWCC is an Equal Opportunity Program. Auxiliary aids and services are available upon request to individuals with disabilities.
-
-*This listing is for the ValleyWorks Carrer Center in Haverhill, MA.', 'Mon-Thu:  8AM - 4:30PM
-Fri:  9:30AM - 4:30PM', 'Chartered by the Merrimack Valley Workforce Investment Board (MVWIB), the VWCC is funded through the Workforce Investment Act; the Commonwealth Corporation; the Division of Career Services; the Department of Workforce Development; the Department of Transitional Assistance; the Department of Labor; the Department of Education and the Commonwealth of Massachusetts.', NULL, NULL, NULL, NULL, NULL, 'Arthur Chilingirian', 'Executive Director', NULL, 'Yes', 'Members are welcome to use our Resource Room to access a variety of resources including: computer and internet access, newspapers, magazines and other periodicals, fax and copy machines, job listings and databases, computerized labor market information/statistics, and information regarding on-site employer recruitments and job fairs.', 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', '978-469-7859', 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103377, '2008-07-10', false, '@lunch4all', 'ValleyWorks Career Center -- Lawrence', 'VWCC-Lawrence', '439 South Union Street', 'Building 2, Suite 106', 'Lawrence', 'MA', '01843', '978-722-7000', NULL, NULL, '978-722-7090', 'www.valleyworks.cc', NULL, 'The ValleyWorks Career Center (VWCC) is a workforce development collaboration of the Department of Training and Development and the Division of Career Services. A federal- and state-funded center, the VWCC is designed to provide comprehensive services to job seekers and businesses of the Merrimack Valley. 
-
-The VWCC is an Equal Opportunity Program. Auxiliary aids and services are available upon request to individuals with disabilities.
-
-* This listing is for the ValleyWorks Carrer Center and Main Office in Lawrence, MA.', 'Mon, Tues, Fri: 8AM - 4:30PM
-Wed: 9:30AM - 4:30PM
-Thu: 8AM - 7:00PM
-Evening hours include Workshops and Career Center Seminars only.', 'Chartered by the Merrimack Valley Workforce Investment Board (MVWIB), the VWCC is funded through the Workforce Investment Act; the Commonwealth Corporation; the Division of Career Services; the Department of Workforce Development; the Department of Transitional Assistance; the Department of Labor; the Department of Education and the Commonwealth of Massachusetts.', NULL, NULL, NULL, NULL, NULL, 'Arthur Chilingirian', 'Executive Director', NULL, 'Yes', 'Members are welcome to use our Resource Room to access a variety of resources including: computer and internet access, newspapers, magazines and other periodicals, fax and copy machines, job listings and databases, computerized labor market information/statistics, and information regarding on-site employer recruitments and job fairs.', 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', '978-722-7088', 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103344, '2008-06-24', false, '@lunch4all', 'Lawrence CommunityWorks', NULL, '168 Newbury Street', NULL, 'Lawrence', 'MA', '01841', '978-685-3115', NULL, NULL, NULL, 'www.lcworks.org', NULL, 'Lawrence CommunityWorks (LCW) is a nonprofit community development corporation and a Network of residents and other stakeholders working to transform the physical, economic, and civic landscape of Lawrence, MA. Our mission is to (1) foster individual and neighborhood empowerment and leadership ` through organizing residents to improve their lives economically, politically, and socially, (2) produce and preserve safe, decent, and affordable housing for low- and moderate-income families, (3) create programs and facilities that build the educational and economic assets of neighborhood young people, adults, and families, and (4) build a sustained institutional infrastructure for community revitalization through strategic local, regional, and national partnerships.', 'Monday --Friday, 9am-5pm
-
-Note that some programs and classes run on Saturdays.', NULL, NULL, NULL, NULL, NULL, NULL, 'William Traynor', 'Executive Director', NULL, 'No', NULL, 'Yes', '100 persons, call for more information about capacity.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102178, '2009-01-15', false, '@lunch4all', 'Greater Lawrence Community Action Council, Inc', 'GLCAC, Inc.', '305 Essex St', NULL, 'Lawrence', 'MA', '01840', '978-681-4900', NULL, NULL, '978-681-4949', 'www.glcac.org', 'admin@xxxxxxxxx', 'The Greater Lawrence Community Action Council Inc. (GLCAC, Inc.) is a private non-profit agency, designated as the official federal and state anti-poverty agency for the Greater Lawrence area.  At GLCAC, Inc. we understand that individuals cannot attain a quality of life until basic needs are met.   The GLCAC, Inc sponsors many programs to assist individuals and families attain self-sufficiency by providing a comprehensive system of education, training, support and resources.', 'Monday - Friday 8:30 am - 4:30 p.m.', NULL, 'GLCAC, Inc.', '305 Essex St', 'Lawrence', 'MA', '01840', 'Philip F. Laverriere, Sr.', 'Executive Director/CEO', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101705, '2008-06-20', false, '@lunch4all', 'Living Waters Ministries of Hope', NULL, '250 - 254 Middlesex Street', NULL, 'Lowell', 'MA', '01852', '978-446-9800', NULL, NULL, NULL, NULL, 'dianepsa91@xxxxxxxx', 'Living Waters Ministry of Hope is a non-denominational faith based ministry. Our mission is to offer support to all people in the community, by helping to rebuild lives, fostering healthy relationships, Teaching life skills and providing supportive and affordable housing.
-
-We share the heart of God in building relationships.
-
-Living Waters storefront offers an alternative place for the people of the community to come and spend time in an atmosphere of love and acceptance. We provide on a daily/weekly basis various meetings; groups and functions that help strengthen individuals in both their  spiritual and emotional growth.
-
-We believe that we can make a meaningful contribution in eliminating homelessness among people with addiction, mental illness & disabilities.
-
-With God''s help we attempt to restore self-worth in all individuals.
-
-We provide, weekly bible studies, Prayer and fellowship, Clothing, Referrals, functions, Trips, food packs, Community outreach,', 'Sunday Evenings 7pm-9:30pm
-Tuesday Mornings 9am -12pm
-Tuesday Evenings 7pm-9:30pm
-Weds.9am-4pm
-Thursday Evenings 7pm-9:30pm
-Friday Mornings 9am- 12pm
-Friday Evenings 7pm-9:30pm
-Saturday Mornings 9:30-11:30', 'Watch for our up coming web page
-www.livingwaterslowell.org', 'P.O. Box  2157', NULL, 'Lowell', 'MA', '01851', 'Diane Waddell', 'Director', NULL, 'Not Applicable', NULL, 'Yes', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102519, '2008-06-04', false, '@lunch4all', 'Educational Surrogate Parent Program', NULL, 'P. O. Box 1184', '167 Lyman Street, Hadley Building, 3rd Floor', 'Westboro', 'MA', '01581', '508-792-7679', NULL, NULL, '508-616-0318', 'espprogram.org', 'espp@xxxxxxxxxxxxx', 'The Educational Surrogate Parent Program (ESPP) recruits, trains and appoints volunteers to act as decision makers in special education matters for children who are in the custody of a state agency, whose parent or guardian are unknown or unavailable. Volunteers with the ESP Program provide a strong voice of advocacy for these students to ensure that they receive the services they deserve and are entitled to. The Educational Surrogate Parent (ESP) acts on behalf of the child and has all the rights and authority of a parent. These rights inlcude:
-* Meet and observe the child at school;
-* Review school records and receive progress reports;
-* Attend school meetings concerning the child''
-* Approve an Individual Education Program (IEP); and
-Monitor the child''s services and educational placement.
-
-Volunteers with the Educational Surrogate Parent Program must:
-* Be at least eighteen years of age;
-* Have or be willing to obtain knowledge of the special education process through our  free training workshop;
-*Submit and application, provide two (2) references, and complete a CORI(Criminal Offender Record Inquiry). 
-
-ESP Program Volunteers spend 10 -20 hours per
-school year supporting a student with special educational needs. Volunteers receive ongoing support from the ESP Program staff, have access to professional assistance and optional trainings and workshops. Volunteers    can attend an Annual Professional Development and Recognition Conference', 'Monday - Friday 8am - 4pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Michelle Poulin', 'Program Director', 'EDCO Collaborative/EducationCollaborative Of Greater Boston,', 'Yes', 'The Educational Surrogate Parent Program (ESPP) maintains and updates periodically topical information regarding special education laws and regulations, advocacy skills, effective communication strategies and other relevant resources and documents. The ESP Program website links to various local, state and national resources.', 'Yes', 'The ESP Program is located in Westboro, MA. The program provides services throughout the entire state. The Training Programs are held in community centers, libraries and  community based organizations statewide. At the offices in Westboro, we have a large conference room suitable for meetings.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 2, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102607, '2008-06-05', false, '@lunch4all', 'Andover Youth Services', NULL, '36 Bartlett St.', 'Andover Town Offices, 3rd Floor', 'Andover', 'MA', '01810', '978-623-8241', NULL, NULL, NULL, 'andoveryouthservices.com', NULL, 'Out of our 300 square feet of space, the AYS runs programs year-round for the 6,500 young people of Andover. 
-
-A dedicated staff of 4 full time employees and several seasonal workers provides recreational, educational, social and support programs for over 6,000 participants annually. 
-
-We''ve been going strong for thirteen years and its because we know that it is all about the kids. In an effort to better serve the needs of the community, the AYS and Andover Youth Foundation have been trying to fundraise for a Youth Center to give a home to this flourishing program. 
-
-Please surf around our website and find out what we have to offer and let us know if you have any ideas for programs.', 'School Hours 
-Tuesday through Friday: 3pm to 7:00pm 
-Saturday/Sunday: 12pm to 7pm 
-Closed Mondays 
-Summer Hours 
-Tuesday through Sunday: 12pm to 7:30pm 
-Closed Mondays', NULL, NULL, NULL, NULL, NULL, NULL, 'Bill Fahey', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 2, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102387, '2008-06-05', false, '@lunch4all', 'Jericho Road Lawrence, Inc.', NULL, '190 Academy Road,', NULL, 'North Andover', 'MA', '01845', '978-604-8803', NULL, NULL, NULL, 'http://www.jerichoroadlawrence.org/', 'jkulash@xxxxxxx', 'Jericho Road Lawrence''s mission is to address economic inequities by matching the needs of non profit organizations in Lawrence, Massachusetts to the talents and resources of the surrounding suburban communities through the use of volunteers who offer no cost, customized professional services to those non profit organizations focused on helping individuals and families become economically self-sustaining.', 'Monday thru Friday, 8:30 am - 5 pm.', NULL, NULL, NULL, NULL, NULL, NULL, 'Joan Kulash', 'Executive Director', NULL, 'No', NULL, 'Yes', 'North Parish Unitarian Universalist Church, 190 Academy Road, North Andover.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 2, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102200, '2008-01-28', false, '@lunch4all', 'Citizen Schools / Community Teamwork, Inc.', NULL, '365 West Meadow Rd.', NULL, 'Lowell', 'MA', '01854', '978-821-0953', NULL, NULL, NULL, 'http://www.citizenschools.org', 'rebeccajervey@xxxxxxxxxxxxxxxxxx', 'Citizen Schools operates a national network of apprenticeship programs for middle school students, connecting adult volunteers to young people in hands-on learning projects. At Citizen Schools, students develop the academic and leadership skills they need to do well in school, get into college, and become leaders in their careers and in their communities.', 'Program: Monday - Thursday afterschool until 5:45
-Apprenticeships: Tuesday or Thursday from about 4:00 - 5:30', NULL, NULL, NULL, NULL, NULL, NULL, 'Rebecca Jervey', 'Teaching Fellow', 'Citizen Schools', 'No', NULL, 'No', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 4, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101562, '2007-07-01', false, '@lunch4all', 'Greyhound Pets of America-New Hampshire Chapter', 'GPA-CNHC', 'P.O. Box 778', NULL, 'Concord', 'NH', '03302', '888-507-9597', '888-507-9597', NULL, NULL, 'www.gpa-cnhc.org', 'newsletter_editor@xxxxxxxxxxxx', 'Greyhound Pets of America (GPA) is a national nonprofit, volunteer-supported organization dedicated to the placement of ex-racing greyhounds in ideal home situations. 
-
-GPAÂ’s Central New Hampshire Chapter shall be responsible for finding homes for greyhounds that fail to qualify or which no longer qualify for the racetrack, to acquaint the public as to the desirability of greyhounds for pets and to inform the public of the availability of these dogs for adoption. GPA of Central New Hampshire will be working to place greyhounds from the track in Belmont and other tracks in Central New Hampshire. 
-
-GPA Central New Hampshire volunteers work closely with each prospective greyhound owner, matching them, with a dog whose personality is most ideally suited to its new home situation to ensure a lasting, rewarding relationship.', '7 days per week, varies by appointments', NULL, NULL, NULL, NULL, NULL, NULL, 'Carolyn and Ken Wright', 'Keeper of the Hounds and Director', 'none', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 4, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102101, '2007-09-28', false, '@lunch4all', 'Aved Therapy', NULL, '21 Central Street, 2nd floor', NULL, 'Andover', 'MA', '01810', '978-470-3343', NULL, '617-968-2546', '978-470-3323', NULL, 'dmattian@xxxxxxxxx', 'Diruhi Mattian, LICSW is a psychotherapist well respected for her work with adolescents, adults, couples, and families. She earned her MSW from Simmons College. She specializes in psychological trauma, treating mood disorders, depression, anxiety spectrum disorders(panic disorders, phobias, OCD)She works successfully with ADHD and runs Parenting Workshops.  She uses EMDR, IFS, DBT, and CBT as treatment approaches.', 'Tuesday, Thursday from 7PM to 9 PM
-Wednesday from 2PM to 9PM, Friday all day, and Saturday from 9AM to 5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Diruhi Mattian', 'Owner of the practice', NULL, 'Yes', 'Related literature and handouts are available for clients use', 'Yes', 'The office is on the second floor, there is a spacious waiting room and bathrooms available', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 4, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100781, '2008-04-28', false, '@lunch4all', 'LifeLinks, Inc.', NULL, '145 Lexington Avenue', NULL, 'Lowell', 'MA', '01854', '978-459-6179', NULL, NULL, '978-453-7077', 'www.lifelinks.ws', 'oomoruyi@xxxxxxxxxxxx', 'LifeLinks is chartered to advocate for and provide services and supports for people with developmental disabilities that are community based, are cost effective, enable people to become contributing members of their community, and are of a quality we would want for our loved ones. LifeLinks services and supports include Family and Individual Supports; Residential Living (including group home settings); Shared Living; Community Center; Recreation and Education (including independent living seminars and therapeutic and medical services.', 'Monday-Friday 8AM-4PM', NULL, '145 Lexington Ave', NULL, 'Lowell', 'MA', '01854', 'Yvonne La-Garde', 'Chief Executive Director', NULL, 'No', NULL, 'No', NULL, 'Limited', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101914, '2008-05-14', false, '@lunch4all', 'Depression and Bipolar Support Alliance', 'DBSA Merrimack Valley', 'The First Church, 1195 Varnum Ave., Lowell, MA', NULL, 'Lowell', 'MA', '01852', '978-458-0541', NULL, '978-322-5120', NULL, 'www.dbsalliance.org', 'dbsamerrimack@xxxxxxxxx', 'To improve the lives of people living with mood disorders.
-We offer support groups, web site with extended resources,networking,service opportunities,tools and acceptance. Free and confidential.', 'Thursday''s 6pm at The First Church, 1195 Varnum Ave., Lowell, MA', 'Contact information available from facilitator and other participants at meetings.', '246 Market Street', 'Apt. 327', 'Lowell', 'MA', '01852', 'Alicia Page', 'Facilitator', 'Depression and Bipolar Support Alliance (DBSA)', 'Yes', 'books, CD''s, video and literature available at groups
-through the main web site www.dbsa.org', 'Yes', 'Comfortable conference room at The First Church holds up to 30 people.', 'Not Applicable', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 1, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100880, '2009-01-15', false, '@lunch4all', 'Billerica Board of Health', NULL, '365 Boston Road', NULL, 'Billerica', 'MA', '01821', '978-671-0931', NULL, '978-671-0900', '978-671-0919', 'www.town.billerica.ma.us', 'billericaboh@xxxxxxxxxxxxxxxxxxxx', 'The mission of the Billerica Board of Health is to provide preventative services to Billerica residents and to community well-being.', 'Monday-Friday 8:30AM-4PM
-Sign-offs 8:30-10am and 3-4pm', NULL, NULL, NULL, NULL, NULL, NULL, 'Richard Berube', 'Director', 'Town of Billerica', 'No', NULL, 'Yes', 'Space may be available, however town departments receive priority', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101408, '2009-01-15', false, '@lunch4all', 'Network Health', NULL, '101 Station Landing', 'Fourth Floor', 'Medford', 'MA', '02155', '888-257-1985', '888-257-1985', NULL, NULL, 'www.network-health.org', 'info@xxxxxxxxxxxxxxxxxx', 'Network Health is a Massachusetts health plan that provides high-quality health care coverage to more than 150,000 members through its Network Health Together™ (MassHealth) and Network Health Forward™ (Commonwealth Care) plans.', 'Monday - Friday, 8:30 a.m. - 5 p.m.', NULL, NULL, NULL, NULL, NULL, NULL, 'Christina Severin', 'Executive Director', 'Cambridge Health Alliance', 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', '888-391-5535', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101826, '2009-01-15', false, '@lunch4all', 'Billerica Council on Aging', 'Billerica Senior Center', '25 Concord Road', NULL, 'Billerica', 'MA', '01821', '978-671-0916', NULL, NULL, '978-671-1347', 'www.town.billerica.ma.us', 'dpopkin@xxxxxxxxxxxxxxxxxxxx', 'The Senior  Center is a community focal point where adults 60+ come together for activities, programs and services that reflect their experience and skills; respond to their diverse needs and interests; enhance their dignity; support their independence; and encourage their involvement in and with the Center and the community.
-
-The Center also serves as a resource for the entire community for information on aging, support for family caregivers and for development of innovative approaches to addressing aging issues.', 'Monday through Friday 8:30-4:00', NULL, NULL, NULL, NULL, NULL, NULL, 'Donna Popkin', 'Director', 'Town of Billerica', 'Yes', 'The Out Reach department maintains resources on a variety of elder care options.  From services available in the privacy and dignity of ones home to institutional care and other housing alternatives.  We offer a subscription to our monthly newlsetter the Outlook.  Contact the senior center for more information.', 'Yes', 'Meeting space is limited to Billerica community non-profit organizations', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103102, '2009-01-15', false, '@lunch4all', 'JJ Referral Services', NULL, '506 Katahdin Drive', NULL, 'Lexington', 'MA', '02421', '781-572-0219', NULL, NULL, NULL, 'www.jjreferralservices.com', 'joannejstp@xxxxxxx', 'Help to those in need of services through the human services system. Homeless, low-income, disabled, and those who have become homeless because of floods and fires. I help clients obtain the services they need and deserve. I am a statewide vendor and whenever possible go through the state to get paid. will receive referrals from social service agencies only. Hoping to expand services at different food pantries but its a work in progress.
-
-I am planning on becoming a Certified Peer Support Counselor this Spring. Please go to web site for more details.', 'Weekly-9 to 5', NULL, NULL, NULL, NULL, NULL, NULL, 'Joanne Stephen', 'owner', NULL, 'Not Applicable', NULL, 'Yes', '12 Alfred Street Baldwin Park. Need to make appointments beforehand by calling the above number', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100572, '2009-01-15', false, '@lunch4all', 'Community Teamwork, SuitAbility Program', 'SuitAbility', '536 Pawtucket Street', NULL, 'Lowell', 'MA', '01854', '978-934-8898', NULL, NULL, '978-934-8899', 'http://www.suitabilityma.org', 'khayes@xxxxxxxxxxx', 'The mission of SuitAbility, Inc. is to provide free interview/work clothing and work related support services to low-income women in Middlesex and Essex Counties.We provide free workshops and interview/work clothing for women.', 'Monday-Thursday 9AM-5PM', NULL, 'CTI SuitAbility Program', '536 Pawtucket St.', 'Lowell', 'MA', '01854', 'Kathleen Hayes', 'Executive Director', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100704, '2009-01-15', false, '@lunch4all', 'Retarded Adult Rehabilitative Association Inc.', 'RARA', '295 High Street', NULL, 'Lowell', 'MA', '01852', '978-453-5598', NULL, NULL, '978-446-0270', 'raraagency.org', 'raraoffice@xxxxxxx', 'The mission of RARA is to promote public awareness of issues specific to the developmentally challenged and their families. We serve our members through educational, recreational, and sports-related programs.', 'Office hours
-Tuesday, Wednesday, Thursday 9AM-3PM
-
-Evening Program based on calendar events', NULL, NULL, NULL, NULL, NULL, NULL, 'Donna Michaels', 'Office Administrator', NULL, 'No', NULL, 'Yes', 'Contact RARA for meeting space availability and arrangements', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101727, '2009-01-15', false, '@lunch4all', 'The Peter Pan Center', NULL, '280 Ayer Road', 'P.O. Box 312', 'Harvard', 'MA', '01451', '978-772-1255', NULL, NULL, '978-772-4711', 'www.peterpancenter.homestead.com', 'donna.peterpancenter@xxxxxxxxx', 'The mission of the Peter Pan Center is to provide a safe and welcoming "parent-to-parent" atmosphere for families seeking support, skills and resources to more effectively parent as well as to enrich the lives of spirited and sensitive children. From toddlers to teens, including typically developing children to those with more significant learning, social and behavioral issues, our goal is to provide answers to parent questions; support for both the home and school environments; skill-building programs for both parents and children as well as to connect families with appropriate services and resources.', 'By appointment only', NULL, NULL, NULL, NULL, NULL, NULL, 'Donna Shea', 'Director', NULL, 'Yes', NULL, 'Yes', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100671, '2009-01-15', false, '@lunch4all', 'Department of Children and Families (Formerly DSS)', 'DCF   (formerly DSS)', '33 East Merrimack Street', NULL, 'Lowell', 'MA', '01852', '978-275-6800', '800-792-5200', '800-792-5200', '978-452-5896', 'www.state.ma.us/dss/', 'marina.schell@xxxxxxxxxxx', 'The Department of Children and Families(formerly the Depatment of Social Services) is dedicated to the safety, well being, and permanency for children who have been abused or neglected in a family setting. We work first and foremost to keep families together. To achieve this goal, DCF provides family-based services to assist parents in better caring for their children. For those children who are unable to remain at home because of severe abuse or neglect or who are at risk for abuse and neglect, DCF provides temporary out of home care through kinship placement, foster care, group care, or residential programs. These short-term measures are meant to provide interim guidance and support to families until the children can safely be returned home. In case where this is not possible, DCF will seek to provide a child with an alternate permanent situation, such as adoption, guardianship, or, as with older teenagers, independent living and lifelong connections.  The Lead Agency for the Lowell DCF FamilyNetworks services is MSPCC,', 'Monday-Friday 8:45AM-5PM; After hours/ weekend hotline available.', NULL, NULL, NULL, NULL, NULL, NULL, 'Lori Ortiz', 'Acting Area  Director', 'Commonwealth of Massachusetts', 'Yes', 'Resource library available through our central office, contact DSS for details.', 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', '978-275-6800', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101078, '2009-01-15', false, '@lunch4all', 'Casey Family Services', NULL, '18 Palmer Street', NULL, 'Lowell', 'MA', '01852', '978-937-1877', '800-883-8836', '978-937-1877', '978-937-2262', 'www.caseyfamilyservices.org', 'acasad@xxxxxxxxxxxxxxxxxxxxxxx', 'Casey Family Services is committed to improving the lives of at-risk children and to strengthening families and communities by providing high-quality, cost-effective services that advance both positive practices and sound public policy.', 'Monday, Tuesday,Wednesday Thursday, Friday 9AM-5PM', NULL, NULL, NULL, NULL, NULL, NULL, 'Raymond Torres', 'Executive Director', 'Annie E. Casey Foundation', 'Yes', 'Contact Casey for more information on resource library materials', 'Yes', 'Meeting space is available by arrangement. Contact Casey Dennis at Casey Family Services for reservations.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102772, '2009-01-15', false, '@lunch4all', 'Cedarland Aquatic Center', 'Cedardale Swim Lessons', '931 Boston Road', NULL, 'Haverhill', 'MA', '01835', '978-521-7700', NULL, NULL, NULL, 'www.cedarland.net', 'sroberts@xxxxxxxxxxxxxxxxxxxx', 'To provide a safe and enjoyable water experience for children ages 8 months through 16 years old.  Our lessons are designed to develop your child in stages from water orientation through pre-competitive swim team.  We use creative and innovative drills with equipment designed to build strength and endurance as well as making lessons fun, motivating and productive.  Our program has been developed with a base from the American REd Cross and the National Swim School Association guidelines.', 'Lessons are available Saturdays, Mondays - Thursdays, Mornings and afternoons.  PreTeam programs are offered weekday after school.', NULL, NULL, NULL, NULL, NULL, NULL, 'Stacy Roberts', 'Aquatic Director', 'Cedardale Health & Fitness', 'Not Applicable', NULL, 'Yes', 'Conference space available at the Aquatic Center as well as at our main club Cedardale Health & Fitness', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (102112, '2009-01-15', false, '@lunch4all', 'Light of Cambodian Children, Inc.', NULL, '9 Central Street, Suite 203', NULL, 'Lowell', 'MA', '01852', '978-459-0200', NULL, NULL, NULL, 'www.reaksmey.org', 'sayon@xxxxxxxxxxxx', 'Light of Cambodian Children, Inc., (LCC) is a 501(c)(3) organization established in 1998. Through interactive advocacy, educational, and social programs, Light of Cambodian Children, Inc. encourages youth to seek higher education, become self-sufficient, and serve as role models in our communities.', 'Each program run on different time. Please see individual program for specific time and date.', NULL, NULL, NULL, NULL, NULL, NULL, 'Sayon Soeun', 'Executive Director', NULL, 'Not Applicable', NULL, 'Not Applicable', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101177, '2009-01-15', false, '@lunch4all', 'Cultural Organization of Lowell', 'COOL', '375 Merrimack Street', '3rd Floor', 'Lowell', 'MA', '01852', '978-446-7162', NULL, NULL, '978-446-7089', 'www.cultureiscool.org', 'lznunn@xxxxxxxxxxxx', 'The Cultural Organization of Lowell (COOL) is a collaborative arts organization that supports visual and performing artists, arts groups and cultural activities to stimulate a vibrant downtown Lowell!', 'COOL''s office hours are Monday through Friday from 9 a.m. to 5 p.m., but appointments must be arranged in advance to guarantee that someone will be present.', 'COOL provides the community with a central on-line calendar of cultural events.  For the most up-to-date listing of these events, visit: www.cultureiscool.org', NULL, NULL, NULL, NULL, NULL, 'LZ Nunn', 'Executive Director', NULL, 'No', NULL, 'Yes', 'The COOL office can comfortably accommodate a meeting for 8-10 people.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100319, '2009-01-16', false, '@lunch4all', 'National Alliance on Mental IllnessGreaterLowell', 'NAMI', 'P.O. Box 692', NULL, 'Tyngsborough', 'MA', '01879', '978-677-0618', NULL, NULL, NULL, 'www.nami.org/sites/greaterlowell', 'namigreaterlowell@xxxxxxxxx', 'NAMI Greater Lowell is a support group of concerned individuals responding to the tragic neglect of our mentally ill citizens. They provide sharing and caring, compassionate support and understanding for all our members and anyone else seeking this support.', '3rd Wednesday of every month 7PM at Solomon Mental Health Center 391 Varnum Ave, Lowell, MA', NULL, NULL, NULL, NULL, NULL, NULL, 'Marilyn Jonas', 'President', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101331, '2009-01-16', false, '@lunch4all', 'Lawrence HERC', NULL, '78-82 Amesbury St.', NULL, 'Lawrence', 'MA', '01841', '978-738-7634', NULL, NULL, NULL, 'http://www.lawrence-herc.org/', 'lawrenceherc@xxxxxxxxxxx', 'The core mission of Lawrence HERC involves recruiting and preparing motivated students for high school and college achievement.
-Lawrence HERC focuses on high school Juniors and Seniors with weekly classes that develop them as youth and prepare them for college, college visits, SAT prep, computer lab access, early college awareness and a summer program with Let''s Get Ready (www.letsgetready.org)', 'Monday thru Friday', NULL, 'Lawrence HERC', 'PO Box 1758', 'Lawrence', 'MA', '01842', 'Meghan Aceto', 'HERC Program Coordinator', NULL, 'Yes', 'College Access materials
-SAT Prep material
-Scholarship Information', 'Yes', 'The weekly classes are held in the Northern Essex Community College Extension Campus.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', NULL, 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (101375, '2008-11-04', false, '@lunch4all', 'Asian Center of Merrimack Valley, Inc.', 'Asian Center', '1 Ballard Way', 'Suite 101', 'Lawrence', 'MA', '01843', '978-683-7316', NULL, NULL, '978-683-9075', 'asiancentermv.org', 'kaori.kelts1@xxxxxxxxxxx', 'Multi-service organization serving Asian immigrant and refugee families, supporting their effors to build a stable future and to become participating members of their community.', 'Monday through Friday, 9 - 5
-Evening classes Tuesday - Thursday, 6 - 9
-Some weekend events', NULL, NULL, NULL, NULL, NULL, NULL, 'Kaori Kelts', 'Executive Director', 'Asian Center of Merrimack Valley, Inc.', 'No', NULL, 'Yes', '3 large classrooms', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'No', '978-683-7316', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (100869, '2009-06-05', false, '@lunch4all', 'Asian Task Force Against Domestic Violence Lowell Project', NULL, '319 Wilder St.', NULL, 'Lowell', 'MA', '01852', '978-452-4522', '800-456-7890', '617-338-2355', '617-338-2354', 'www.atask.org', 'asiandv@xxxxxxxxx', 'The Asian Task Force''s mission is to eliminate family violence and to strengthen Asian families and communities', 'Contact agency for hours', NULL, '319 wilder st', NULL, 'lowell', 'MA', '01852', 'Qingjian Shi', 'Interim Director of Education and Outreach', NULL, 'No', NULL, 'No', NULL, 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', '123-456-7890', 0, '');
-INSERT INTO agency (agency_id, last_updated, hidden, "password", agency_name, agency_alias, address1, address2, city, state, zip, main_phone, toll_free_phone, hotline, fax, website, email, mission, hours, other_info, mail_address1, mail_address2, mail_city, mail_state, mail_zip, chief, title, parent_organization, resource_library, resource_library_description, meeting_space, meeting_space_description, staff_internet_access, contact_first_name, contact_last_name, contact_phone, contact_fax, contact_email, contact_email_available, tty_tdd, reminders_sent, admin_notes) VALUES (103982, '2009-06-05', false, '@lunch4all', 'Save The Whales', NULL, '319 Wilder Street', NULL, 'Lowell', 'MA', '01852', '978-452-4522', '666-666-6666', '888-888-8888', '555-555-5555', 'www.savethewhales.org', 'jcloutier@xxxxxxxxxxxxxxxxx', 'Our mission here at Save The Whales is to proctect the whales in our ocean from exstinction. To provide them with a safe nd healthy habitat in order to live happy lives.', 'M-F 8a-7p', NULL, '319 Wilder Street', NULL, 'Lowell', 'MA', '01852', 'Jennifer Cloutier', 'Program Director', 'World Wildlife Foundation', 'No', NULL, 'Yes', 'Meeting space is able to comfotably sit 25 people comfortably.', 'Yes', 'Chester', 'Tester', '111-111-1111', '000-000-0000', 'chester@xxxxxxxxxxxxxx', 'Yes', '444-444-4444', 0, '');
-
-
---
--- Data for Name: agency_search_log; Type: TABLE DATA; Schema: public; Owner: mansi
---
-
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36654, '96.237.29.220.17312109', '96.237.29.220', '2009-03-31 17:03:29.093943', 'revolving museum', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36664, '75.150.72.65.11134109', '75.150.72.65', '2009-05-13 11:53:34.581903', 'community teamwork inc', 'http://mvh.omacneil.testing123.net', 2);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36671, '75.150.72.65.12134109', '75.150.72.65', '2009-05-13 12:43:24.175685', 'communit team work', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36672, '75.150.72.65.12134109', '75.150.72.65', '2009-05-13 12:43:32.157881', 'community team work', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36673, '96.237.27.110.13134109', '96.237.27.110', '2009-05-13 13:58:31.403543', 'shelters', 'http://mvh.omacneil.testing123.net/', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36675, '96.237.27.110.13134109', '96.237.27.110', '2009-05-13 13:59:56.070322', 'community software lab', 'http://mvh.omacneil.testing123.net/', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36678, '96.237.27.110.14134109', '96.237.27.110', '2009-05-13 14:05:04.517602', 'c.t.i', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36687, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:16:28.258154', 'community teamwork ', 'http://mvh.omacneil.testing123.net/', 3);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36688, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:17:11.786513', 'neighbors in need', 'http://mvh.omacneil.testing123.net/', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36689, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:17:52.548764', 'ann sullivan center', 'http://mvh.omacneil.testing123.net/', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36735, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:12:30.374655', 'dancing agencies', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl?rm=show_program_results;category_id=804807;search_phrase=lowell%20dancing%20classes%2F%20tap', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36739, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:14:03.769525', 'ymca', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 3);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36743, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:19:18.523336', 'neighbors in need', 'http://mvh.omacneil.testing123.net/', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36744, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:20:15.977215', 'ann sullivan canter', 'http://mvh.omacneil.testing123.net/', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36745, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:20:27.875318', 'anne sullivan center', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36746, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:40:18.812269', 'cti', 'http://mvh.omacneil.testing123.net/', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36749, '74.94.147.165.1155109', '74.94.147.165', '2009-06-05 11:18:01.705973', 'questions', 'http://mvh.omacneil.testing123.net/', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36750, '74.94.147.165.1155109', '74.94.147.165', '2009-06-05 11:22:41.570257', 'dance lessons', 'http://mvh.omacneil.testing123.net/', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36752, '74.94.147.165.1155109', '74.94.147.165', '2009-06-05 11:31:08.446054', 'neighbors in nee', 'http://mvh.omacneil.testing123.net/', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36760, '74.94.147.165.1255109', '74.94.147.165', '2009-06-05 12:00:24.132697', 'Neighbors In Need', 'http://mvh.omacneil.testing123.net/', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36761, '74.94.147.165.1255109', '74.94.147.165', '2009-06-05 12:00:58.167229', 'Youth Build', 'http://mvh.omacneil.testing123.net/', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36763, '74.94.147.165.1255109', '74.94.147.165', '2009-06-05 12:01:37.934524', 'YouthBuild', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36764, '74.94.147.165.1255109', '74.94.147.165', '2009-06-05 12:02:09.62431', 'Annie Sullivan Center', 'http://mvh.omacneil.testing123.net/', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36765, '74.94.147.165.1255109', '74.94.147.165', '2009-06-05 12:02:31.303466', 'Anne Sullivan Center', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36769, '74.94.147.165.1255109', '74.94.147.165', '2009-06-05 12:52:37.032288', 'UTCH', 'http://mvh.omacneil.testing123.net/', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36772, '74.94.147.165.1255109', '74.94.147.165', '2009-06-05 12:53:49.301537', 'CTI', 'http://mvh.omacneil.testing123.net/', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36773, '74.94.147.165.1255109', '74.94.147.165', '2009-06-05 12:55:30.622334', 'youth bulid', 'http://mvh.omacneil.testing123.net/', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36774, '74.94.147.165.1255109', '74.94.147.165', '2009-06-05 12:55:46.336253', 'youth build', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36775, '74.94.147.165.1255109', '74.94.147.165', '2009-06-05 12:58:19.924482', 'anne sullivan center', 'http://mvh.omacneil.testing123.net/', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36803, '74.94.147.165.1455109', '74.94.147.165', '2009-06-05 14:18:14.373806', 'neighbors in need', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl?rm=show_program_results;category_id=801254;search_phrase=neighbors%20in%20need', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36804, '74.94.147.165.1455109', '74.94.147.165', '2009-06-05 14:18:41.172381', 'youth build', 'http://mvh.omacneil.testing123.net/', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36806, '74.94.147.165.1455109', '74.94.147.165', '2009-06-05 14:20:00.816983', 'anne sullivan center', 'http://mvh.omacneil.testing123.net/', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36808, '74.94.147.165.1555109', '74.94.147.165', '2009-06-05 15:00:56.978023', 'help with paying utilities', 'http://mvh.omacneil.testing123.net/', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36809, '74.94.147.165.1555109', '74.94.147.165', '2009-06-05 15:01:05.357261', 'paying utilities', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36810, '74.94.147.165.1555109', '74.94.147.165', '2009-06-05 15:01:11.438185', 'paying bills', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36811, '74.94.147.165.1555109', '74.94.147.165', '2009-06-05 15:01:37.588362', ' bills', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36812, '74.94.147.165.1555109', '74.94.147.165', '2009-06-05 15:01:42.718865', 'bills', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36815, '74.94.147.165.1555109', '74.94.147.165', '2009-06-05 15:08:15.979039', 'The GRIP Project', 'http://mvh.omacneil.testing123.net/', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36816, '74.94.147.165.1555109', '74.94.147.165', '2009-06-05 15:08:21.025323', 'GRIP Project', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36817, '74.94.147.165.1555109', '74.94.147.165', '2009-06-05 15:08:26.370085', 'GRIP', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36818, '74.94.147.165.1555109', '74.94.147.165', '2009-06-05 15:08:40.498718', 'G.R.I.P', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36823, '74.94.147.165.1555109', '74.94.147.165', '2009-06-05 15:13:15.26041', 'Neighbors In Need', 'http://mvh.omacneil.testing123.net/', 1);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36824, '74.94.147.165.1555109', '74.94.147.165', '2009-06-05 15:13:51.704791', 'Youth Build', 'http://mvh.omacneil.testing123.net/', 0);
-INSERT INTO agency_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, hit_count) VALUES (36826, '74.94.147.165.1555109', '74.94.147.165', '2009-06-05 15:16:36.128973', 'Anne Sullivan Center', 'http://mvh.omacneil.testing123.net/', 1);
-
-
---
--- Data for Name: alias; Type: TABLE DATA; Schema: public; Owner: mansi
---
-
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800000, 'History', 'histori');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800121, 'Code Violations', 'code violat');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800132, 'Trash', 'trash');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800132, 'Sanitation Inspection', 'sanit inspect');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800198, 'Volunteering', 'volunt');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800286, 'Neighborhood Organizations', 'organ neighborhood');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800297, 'Community Access', 'access commun');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800297, 'Public Access', 'access public');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800308, 'Computer, Open Access', 'open access comput');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800396, 'Counseling Bereavement, Counseling Grief', 'counsel bereav grief');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800407, 'Support Group, Death', 'death group support');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800473, 'Couples Counseling', 'counsel coupl');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800539, 'Hotlines, Battered Woman', 'hotlin batter woman');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800539, 'Crisis Lines, Domestic Violence', 'crisi domest line violenc');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800539, 'Crisis Lines Battered Woman', 'crisi batter woman line');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800561, 'Hotlines, Battered', 'hotlin batter');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800561, 'Crisis Lines, Child Abuse', 'crisi child abus line');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800561, 'Crisis Lines, Battered Children', 'children crisi batter line');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800594, 'Advocacy, Battered Women', 'advocaci batter women');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800605, 'Counseling, Battered Children', 'counsel children batter');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800616, 'Battered Women', 'batter women');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800616, 'Domestic Violence', 'domest violenc');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800627, 'Counseling, Battered Women', 'counsel batter women');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800638, 'Hotlines, Sexual Assault', 'hotlin sexual assault');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800638, 'Crisis Lines Rape', 'crisi rape line');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800638, 'Crisis Lines Sexual Assault', 'crisi sexual assault line');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800649, 'Abuse, Elderly', 'elderli abus');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800660, 'Domestic Violence', 'domest violenc');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800671, 'Advocacy, Battered Children', 'children advocaci batter');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800693, 'Battered Children Prevention', 'prevent children batter');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800715, 'Information and Referral, Battered Children', 'children inform batter and referr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800726, 'Information and Referral, Sexual Assault', 'inform sexual and assault referr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800759, 'Information and Referral, Battered Woman', 'inform batter and referr woman');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800770, 'Counseling Sexual Assault', 'counsel sexual assault');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800792, 'Victims'' Advocacy Rape', 'advocaci rape victim');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800792, 'Victims'' Advocacy Sexual Assault', 'advocaci sexual assault victim');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800803, 'Sexual Assault', 'sexual assault');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800517, 'Support Group Rape', 'group rape support');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800869, 'Advocacy Mental Illness', 'ill advocaci mental');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800880, 'Halfway House, Disabled', 'disabl halfwai hous');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800935, 'ADD', 'add');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800979, 'Blind', 'blind');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801023, 'Screen Reader/Magnification Software', 'softwar reader screen magnif');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801034, 'SSI', 'ssi');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801034, 'SSDI', 'ssdi');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801056, 'Deaf', 'deaf');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801067, 'Special Education', 'special educ');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801078, 'Developmental Disability', 'development disabl');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801078, 'Mental Disability', 'mental disabl');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801111, 'Adaptive Aids/Equipment', 'equip aid adapt');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801188, 'Education Grade School', 'grade educ school');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801210, 'Skipping School', 'school skip');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801210, 'Playing Hooky', 'hooki plai');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801243, 'English As a Second Language', 'languag english a second');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801243, 'English for Speakers of Other Foreign Languages', 'english languag speaker foreign other');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801254, 'Advocacy, Special Education', 'special educ advocaci');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801265, 'Tutoring Junior High School', 'school junior high tutor');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801342, 'Homework Assistance Junior High School', 'homework school junior assist high');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801386, 'Education, Junior High School', 'educ school junior high');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800913, 'Special Education', 'special educ');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801485, 'Tutoring Grade School', 'grade school tutor');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801529, 'Homework Assistance Grade School', 'grade homework school assist');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801540, 'Information and Referral, Special Education', 'special inform educ and referr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801551, 'Hotlines, Special Education', 'special educ hotlin');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801584, 'ABE', 'abe');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801672, 'FMLA', 'fmla');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801694, 'Employment Discrimination Assistance', 'assist discrimin employ');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801749, 'Unemployment Disputes', 'disput unemploy');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801749, 'Unemployment Rights', 'right unemploy');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801749, 'Legal Assistance, Unemployment', 'legal unemploy assist');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801771, 'Job Search Support Groups', 'search group job support');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801826, 'Job Prep and Readiness Training', 'train readi and prep job');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801837, 'Business Training', 'train busi');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801892, 'Advocacy, Debt', 'debt advocaci');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801903, 'Tax Assistance', 'assist tax');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801903, 'VITA', 'vita');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801914, 'Information and Referral, Paying for College', 'inform colleg pai and referr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801925, 'Debt Management', 'debt manag');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801925, 'Cleaning Up Credit', 'up credit clean');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801947, 'Hotlines, Debt', 'debt hotlin');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801958, 'Financial Advisor', 'advisor financi');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801969, 'Budgeting', 'budget');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801980, 'Information and Referral, Debt', 'inform debt and referr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801991, 'Paying for College', 'colleg pai');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802002, 'Homeless, Families', 'homeless famili');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802035, 'Food Program', 'food program');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802035, 'Woman Infants and Children', 'infant children and woman');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802046, 'Homeless, Women', 'homeless women');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802079, 'Advocacy, TANF', 'advocaci tanf');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802079, 'Advocacy, Welfare', 'advocaci welfar');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802090, 'Homeless, Men', 'men homeless');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802123, 'Information and Referral Food Stamps', 'inform food and referr stamp');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802134, 'Information and Referral Homeless', 'inform homeless and referr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802156, 'Furniture', 'furnitur');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802178, 'TANF', 'tanf');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802178, 'Welfare', 'welfar');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802189, 'Hotlines Homeless', 'homeless hotlin');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802222, 'Phone Assistance', 'assist phone');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802233, 'Information and Referral, TANF', 'inform and referr tanf');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802233, 'Information and Referral AFDC', 'inform and referr afdc');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802255, 'Advocacy Shelter', 'advocaci shelter');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802288, 'Disability Insurance', 'insur disabl');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802299, 'Eating Healthy', 'eat healthi');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802343, 'Weight Control', 'weight control');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802343, 'Weight loss', 'weight loss');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802343, 'Over Weight', 'weight over');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802343, 'Diet', 'diet');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802343, 'Lose Weight', 'weight lose');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802376, 'Hotlines, Free Medical Care', 'free hotlin care medic');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802453, 'Information and Referral, Free Medical Care', 'free inform care and medic referr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802508, 'Nursing', 'nurs');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802519, 'Shots', 'shot');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802574, 'Health Care, Pediatric', 'care health pediatr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802640, 'Sexually Transmitted Diseases', 'diseas transmit sexual');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802662, 'Nurses Assistant', 'assist nurs');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802717, 'Birth Control', 'birth control');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802750, 'Giving Blood', 'blood give');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802805, 'Dentist', 'dentist');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802849, 'Find Doctor', 'doctor find');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802915, 'Hotlines, Homeless', 'homeless hotlin');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802981, 'Rental Assistance', 'rental assist');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803069, 'Information and Referral, Homeless', 'inform homeless and referr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803080, 'Homeless Shelter', 'homeless shelter');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803102, 'Get the Lead Out', 'lead out get');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803113, 'Advocacy, Homeless', 'homeless advocaci');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803124, 'Hotlines, Refugees', 'refuge hotlin');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803179, 'Advocacy, Refugees', 'refuge advocaci');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803201, 'Refugee Rights', 'refuge right');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803245, 'Information and Referral Refugees', 'refuge inform and referr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803256, 'Legal Assistance, Refugees', 'refuge legal assist');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803300, 'Hotlines, Law', 'hotlin law');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803300, 'Hotlines, Lawyer', 'hotlin lawyer');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803311, 'Consumer Protection, Consumer Advocacy', 'advocaci protect consum');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803311, 'Consumer Complaints', 'complaint consum');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803344, 'Lawyer Criminal', 'crimin lawyer');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803366, 'Legal Assistance, Lawyer', 'legal lawyer assist');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803388, 'Lawyer, Civil', 'civil lawyer');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803399, 'Hotlines, Consumer Protection', 'hotlin protect consum');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803399, 'Hotlines, Consumer Advocacy', 'advocaci hotlin consum');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803399, 'Hotlines Consumer Complaints', 'hotlin complaint consum');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803487, 'Bipolar', 'bipolar');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803487, 'Depressed', 'depress');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801034, 'SSI, SSDI', 'ssi ssdi');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804026, 'Sports/Recreation, Junior High School', 'recreat school junior sport high');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804081, 'Sports/Recreation, Grade School', 'recreat grade school sport');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804103, 'Little League', 'littl leagu');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804169, 'Pop Warner', 'warner pop');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804191, 'Residential Program, Drug Addiction', 'drug addict program residenti');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804202, 'Support Group, Drug Addiction', 'group drug addict support');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804235, 'Counseling, Drug Addiction', 'counsel drug addict');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804279, 'Recovery, Drug Addiction', 'drug addict recoveri');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804279, 'Drug Rehabilitation', 'drug rehabilit');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804301, 'Prevention Program, Drug Addiction', 'prevent drug addict program');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804312, 'Hotlines, Drug Addiction', 'hotlin drug addict');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804356, 'Halfway House, Drug Addiction', 'halfwai drug addict hous');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804378, 'Advocacy, Drug Addiction', 'advocaci drug addict');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804389, 'Information and Referral, Drug Addiction', 'inform drug and addict referr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804444, 'Advocacy, Teen', 'advocaci teen');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804444, 'Advocacy Infant/Toddler', 'toddler infant advocaci');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800693, 'Domestic Violence Prevention', 'prevent domest violenc');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804477, 'Prevention Programs Junior High School', 'prevent school junior high program');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804521, 'Companion Programs Youth', 'youth program companion');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804554, 'Hotlines, Teen', 'hotlin teen');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804554, 'Hotlines Infant/Toddler', 'toddler infant hotlin');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804587, 'Homework Assistance Junior High School', 'homework school junior assist high');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804609, 'Companion Programs Teen', 'teen program companion');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804620, 'After School Programs, Grade School', 'grade school after program');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804631, 'Information and Referral, Teen', 'inform teen and referr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804631, 'Information and Referral Infant/Toddler', 'toddler inform infant and referr');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804708, 'Prevention Programs Grade School', 'prevent grade school program');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804741, 'Day Care, 0 - 05', 'care dai');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804719, 'Day Care, 05 - 12', 'care dai');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804532, 'Youth Camp', 'camp youth');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804686, 'Teen Camp', 'camp teen');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804686, 'Youth Camp', 'camp youth');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804598, 'Teen Camp', 'camp teen');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804598, 'Youth Camp', 'camp youth');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804466, 'After School Programs Teen', 'teen school after program');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804466, 'After School Programs Youth', 'youth school after program');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804587, 'After School Programs Teen', 'teen school after program');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804587, 'After School Programs Youth', 'youth school after program');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804620, 'After School Programs Youth', 'youth school after program');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804796, 'Painting Classes, Youth/Teen', 'youth class paint teen');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804796, 'Drawing Classes, Youth/Teen', 'youth class teen draw');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804796, 'Video Classes, Youth/Teen', 'youth class teen video');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804796, 'Graphic Design Classes, Youth/Teen', 'youth class teen graphic design');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804807, 'Acting Classes, Youth/Teen', 'youth class teen act');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804807, 'Theater Classes, Youth/Teen', 'youth class teen theatre');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804026, 'Youth Sports', 'youth sport');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804026, 'Teen Sports', 'teen sport');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804081, 'Youth Sports', 'youth sport');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804092, 'Youth Sports', 'youth sport');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804092, 'Teen Sports', 'teen sport');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804851, 'Painting Drawing Video Graphic Design Classes, Adult', 'paint graphic draw design video adult class');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804807, 'Dance Classes, Youth/Teen', 'youth class teen danc');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804862, 'Acting Theater Dance Classes, Adult', 'class danc act adult theater');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804884, 'Discount Health Care', 'care health discout');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804884, 'Sliding Scale Health Care', 'scale care health slide');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802519, 'Vaccinations', 'vaccin');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804917, 'Affordable Housing Elderly', 'elderli hous afford');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802222, 'Bills', 'bill');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804939, 'Meals', 'meal');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804939, 'Food', 'food');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804950, 'Going back to school', 'back school go');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804961, 'Financial Education', 'educ financi');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804961, 'Banking', 'bank');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804961, 'Credit', 'credit');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804532, 'Summer', 'summer');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804598, 'Summer', 'summer');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804686, 'Summer', 'summer');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (805005, 'Bulimia', 'bulimia');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (805005, 'Anorexia', 'anorexia');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802244, 'Soup Kitchen', 'kitchen soup');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (805027, 'Karate', 'karat');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (805027, 'Tae Kwon Do', 'do kwon tae');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (805027, 'Taekwon Do', 'do taekwon');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (805027, 'Taekwondo', 'taekwondo');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801221, 'Childcare Training', 'childcar train');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (801408, 'Home Based Childcare Certification', 'childcar certif home base');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804774, 'Information and Referral, Childcare', 'childcar referr inform and');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804774, 'Information and Referral, Day Care', 'referr inform dai and care');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804653, 'Childcare Vouchers', 'childcar voucher');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804763, 'Home Based Childcare 0 - 05', 'childcar   home base 0 05');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804763, 'Home Based Day Care 0 - 05', '  home base dai care 0 05');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804752, 'Home Based Childcare 05 - 12', 'childcar  home base  05 12');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (804752, 'Home Based Day Care 05 - 12', ' home base dai  care 05 12');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (803707, 'DSS', 'dss');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800550, 'Battered Children', 'children batter');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (800550, 'DSS', 'dss');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (805038, 'Discount Drugs', 'drug discount');
-INSERT INTO alias (category_id, alias_name, stems_name) VALUES (802211, 'SNAP', 'snap');
-
-
---
--- Data for Name: category; Type: TABLE DATA; Schema: public; Owner: mansi
---
-
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800000, 'Cultural Heritage', 'cultur heritag');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800022, 'Music', 'music');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800033, 'Arts/Entertainment', 'entertain art');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800044, 'Theater/Performance Art', 'art perform theater');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800055, 'Museum', 'museum');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800066, 'Arts, Youth', 'youth art');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800077, 'Culture', 'cultur');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800088, 'Information and Referral, City Services', 'servic inform citi and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800099, 'Hotlines, City Services', 'servic hotlin citi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800110, 'Waste Management', 'wast manag');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800121, 'Code Enforcement', 'enforc code');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800132, 'Sanitation', 'sanit');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800143, 'Voter Registration', 'registr voter');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800154, 'Public Transportation', 'public transport');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800165, 'Recycling', 'recycl');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800176, 'City Services', 'servic citi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800187, 'Elections / Campaign', 'campaign elect');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800198, 'Community Service', 'servic commun');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800209, 'Crime Watch', 'watch crime');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800220, 'Library', 'librari');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800231, 'Newspapers', 'newspap');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800242, 'Media', 'media');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800253, 'Community Gardens', 'garden commun');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800264, 'Bookmobile', 'bookmobil');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800275, 'Book Club', 'club book');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800286, 'Neighborhood Groups', 'group neighborhood');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800297, 'Television/Radio', 'radio televis');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800308, 'Computer, Public Access', 'access public comput');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800319, 'Counseling, Suicide', 'counsel suicid');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800330, 'Counseling, Teen', 'counsel teen');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800341, 'Suicide Hotline', 'hotlin suicid');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800352, 'Counseling, Crisis', 'counsel crisi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800363, 'Hotlines, Counseling', 'counsel hotlin');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800374, 'Support Group, Mental Health', 'group health mental support');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800385, 'Support Group, Medical', 'group medic support');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800396, 'Counseling, Death', 'counsel death');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800407, 'Support Group, Bereavement', 'group bereav support');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800418, 'Counseling, Mental Health', 'counsel health mental');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800429, 'Information and Referral, Counseling', 'counsel inform and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800440, 'Counseling, Child', 'counsel child');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800451, 'Counseling, Sexual Assault', 'counsel sexual assault');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800462, 'Counseling, Health', 'counsel health');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800473, 'Marital Counseling', 'counsel marit');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800484, 'Pastoral Care', 'care pastor');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800495, 'Support Group, Other', 'group other support');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800517, 'Support Group, Sexual Assault', 'group sexual assault support');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800528, 'Counseling, Family', 'counsel famili');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800539, 'Hotlines, Domestic Violence', 'hotlin domest violenc');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800561, 'Hotlines, Child Abuse', 'hotlin child abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800572, 'Incest', 'incest');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800583, 'Safe House', 'safe hous');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800594, 'Advocacy, Domestic Violence', 'advocaci domest violenc');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800605, 'Counseling, Child Abuse', 'counsel child abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800616, 'Abuse, Domestic', 'domest abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800627, 'Counseling, Domestic Violence', 'counsel domest violenc');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800638, 'Hotlines, Rape', 'hotlin rape');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800649, 'Abuse, Elder', 'elder abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800660, 'Crisis Intervention, Abuse', 'intervent crisi abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800671, 'Advocacy, Child Abuse', 'advocaci child abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800682, 'Adult Protective Services', 'protect servic adult');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800693, 'Child Abuse Prevention', 'prevent child abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800704, 'Abuse, Sexual', 'sexual abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800715, 'Information and Referral, Child Abuse', 'inform and child referr abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800726, 'Information and Referral, Rape', 'inform rape and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800737, 'Family Violence', 'famili violenc');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800748, 'Domestic Violence Prevention', 'prevent domest violenc');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800759, 'Information and Referral, Domestic Violence', 'inform and referr domest violenc');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800770, 'Counseling, Rape', 'counsel rape');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800781, 'Battered Women Shelter', 'shelter batter women');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800792, 'Advocacy, Rape', 'advocaci rape');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800803, 'Rape', 'rape');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800814, 'Caregivers, Disabled', 'disabl caregiv');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800825, 'Autism', 'autism');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800836, 'Vocational Assessment, Disabled', 'disabl vocat assess');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800847, 'Information and Referral, Disabled', 'disabl inform and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800858, 'Hotlines Disabled', 'disabl hotlin');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800869, 'Advocacy, Disabled', 'disabl advocaci');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800880, 'Transitional Living Program, Disabled', 'disabl transition program live');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800891, 'Housing, Disabled', 'disabl hous');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800902, 'Transportation, Disabled', 'disabl transport');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800913, 'Special Needs', 'special ne');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800924, 'Residential Programs, Disabled', 'disabl program residenti');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800935, 'Attention Deficit Disorder', 'deficit disord attent');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800946, 'Services, Disabled', 'disabl servic');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800957, 'Adult Day Care, Disabled', 'disabl care dai adult');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800968, 'Dyslexia', 'dyslexia');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800979, 'Visually Impaired', 'impair visual');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800990, 'Independent Living Facility, Disabled', 'disabl independ facil live');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801001, 'Life Skills Training, Disabled', 'disabl train life skill');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801012, 'Independent Living, Disabled', 'disabl independ live');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801023, 'Reading Aids', 'read aid');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801034, 'Social Security', 'secur social');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801045, 'Employment, Disabled', 'disabl employ');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801056, 'Hearing Impaired', 'impair hear');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801067, 'Learning Disabilities', 'learn disabl');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801078, 'Mental Retardation', 'retard mental');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801089, 'Independent Living Program, Disabled', 'disabl independ program live');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801100, 'Vocational Rehabilitation, Disabled', 'disabl vocat rehabilit');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801111, 'Assistive Devices', 'devic assist');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801122, 'Braille', 'braill');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801133, 'Education/Training, Disabled', 'disabl train educ');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801144, 'Meals on Wheels', 'meal wheel');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801155, 'Mental Illness', 'ill mental');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801166, 'Therapeutic Riding', 'ride therapeut');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801177, 'Computer Training, Adult', 'train comput adult');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801188, 'Education, Elementary', 'educ elementari');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801199, 'Life Skills Training, Adult', 'train life adult skill');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801210, 'Truancy', 'truanci');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801232, 'Head Start', 'head start');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801243, 'ESL/ESOL', 'esl esol');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801254, 'Advocacy, Special Needs', 'special advocaci ne');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801265, 'Tutoring, Middle School', 'school middl tutor');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801276, 'Certificate Programs', 'certif program');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801287, 'First Aid Classes', 'aid class first');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801298, 'Literacy', 'literaci');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801309, 'Professional Training', 'train profession');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801320, 'School, Alternative/Charter', 'charter school altern');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801331, 'High School Diploma', 'diploma school high');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801342, 'Homework Assistance, Middle School', 'homework school assist middl');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801353, 'Information and Referral, Education', 'inform educ and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801364, 'Adult Education', 'educ adult');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801375, 'Homework Assistance, Adult', 'homework assist adult');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801386, 'Education, Middle School', 'educ school middl');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801397, 'CPR Classes', 'class cpr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801419, 'Medical Training', 'train medic');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801430, 'Continuing Education', 'educ continu');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801441, 'GED', 'ged');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801452, 'Computer Training, Youth', 'youth train comput');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801463, 'Tutoring, High School', 'school high tutor');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801474, 'School, Public', 'school public');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801485, 'Tutoring, Elementary School', 'school elementari tutor');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801496, 'Life Skills Training, Youth', 'youth train life skill');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801507, 'School Private/Parochial', 'school parochi privat');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801518, 'Homework Assistance, College', 'colleg homework assist');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801529, 'Homework Assistance, Elementary School', 'homework school assist elementari');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801540, 'Information and Referral, Special Needs', 'special inform ne and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801551, 'Hotlines, Special Needs', 'special hotlin ne');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801562, 'Advocacy, Education', 'educ advocaci');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801573, 'Life Skills Training, Teens', 'train life teen skill');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801584, 'Adult Basic Education', 'educ basic adult');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801595, 'Homework Assistance, High School', 'homework school assist high');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801606, 'Dropout Program', 'dropout program');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801617, 'Computer Training, Teen', 'train teen comput');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801628, 'Education, High School', 'educ school high');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801639, 'Vocational Assessment', 'vocat assess');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801650, 'Hotlines, Unemployment', 'hotlin unemploy');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801661, 'Hotlines, Employment Discrimination', 'hotlin discrimin employ');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801672, 'Family Medical Leave Act', 'leav famili act medic');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801683, 'Unemployment', 'unemploy');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801694, 'Advocacy, Employment Discrimination', 'advocaci discrimin employ');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801705, 'Job Search', 'search job');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801716, 'Employee Rights', 'right employe');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801727, 'Job Bank', 'bank job');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801738, 'Information and Referral, Employment', 'inform and referr employ');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801749, 'Advocacy, Unemployment', 'advocaci unemploy');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801760, 'Employment, Youth/Teens', 'youth teen employ');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801771, 'Job Club', 'club job');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801782, 'Employment, Counseling', 'counsel employ');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801793, 'Resume Assistance', 'resum assist');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801804, 'Vocational Rehabilitation', 'vocat rehabilit');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801815, 'Employment, Senior', 'senior employ');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801826, 'Job Training', 'train job');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801837, 'Business Assistance', 'assist busi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801848, 'Employment, Veterans', 'veteran employ');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801859, 'Employment, Services', 'servic employ');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801870, 'Business Loans', 'loan busi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801881, 'Information and Referral, Retirement Planning', 'retir inform and referr plan');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801892, 'Advocacy, Credit', 'advocaci credit');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801903, 'Tax Preparation Assistance', 'assist prepar tax');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801914, 'Information and Referral, Financial Aid', 'aid inform and financi referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801925, 'Credit Counseling', 'counsel credit');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801936, 'Retirement', 'retir');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801947, 'Hotlines, Credit', 'hotlin credit');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801958, 'Financial Counseling', 'counsel financi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801969, 'Budget Counseling', 'counsel budget');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801980, 'Information and Referral, Credit', 'inform credit and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801991, 'Financial Aid College', 'aid colleg financi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802002, 'Shelter, Families', 'famili shelter');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802013, 'Hotlines, Utilities', 'hotlin util');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802024, 'Clothing', 'cloth');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802035, 'WIC', 'wic');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802046, 'Shelter, Women', 'shelter women');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802057, 'Advocacy, Utilities', 'advocaci util');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802068, 'Shelter, Veterans', 'veteran shelter');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802079, 'Advocacy, TAFDC', 'advocaci tafdc');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802090, 'Shelter, Men', 'men shelter');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802101, 'Shelter, Runaways', 'runawai shelter');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802112, 'FEMA', 'fema');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802123, 'Information and Referral, Food', 'inform food and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802134, 'Information and Referral, Shelter', 'inform shelter and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802145, 'Shelter, Homeless', 'homeless shelter');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802156, 'Household Items', 'item household');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802167, 'Financial Assistance', 'assist financi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802178, 'TAFDC', 'tafdc');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802189, 'Hotlines, Shelter', 'hotlin shelter');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802200, 'Furniture', 'furnitur');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802222, 'Utility Assistance', 'assist util');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802233, 'Information and Referral, Welfare', 'inform and welfar referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802255, 'Advocacy, Homeless', 'homeless advocaci');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802266, 'Shelter, Elderly', 'elderli shelter');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802277, 'Homeless Services', 'servic homeless');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802288, 'SSDI', 'ssdi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802299, 'Nutrition', 'nutrition');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802310, 'Tobacco Education/Cessation, Adult', 'educ cessat adult tobacco');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802321, 'Information and Referral, AIDS/HIV', 'inform and referr aids hiv');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802332, 'Hotlines, AIDS/HIV', 'hotlin aids hiv');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802343, 'Weight Management', 'weight manag');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802354, 'Pregnancy Prevention', 'prevent pregnanc');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802365, 'Yoga', 'yoga');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802376, 'Hotlines, Health Insurance', 'hotlin health insur');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802387, 'Information and Referral, Cancer', 'inform and referr cancer');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802398, 'Childbirth Classes', 'class childbirth');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802409, 'Fitness', 'fit');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802420, 'Hotlines, Cancer', 'hotlin cancer');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802431, 'Health Education', 'educ health');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802442, 'Information and Referral, Health', 'inform health and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802453, 'Information and Referral, Health Insurance', 'inform health insur and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802464, 'AIDS/HIV, Prevention & Education', 'prevent educ aids hiv');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802475, 'Tobacco Education/Cessation, Youth/Teen', 'youth educ teen cessat tobacco');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802486, 'Rehabilitation, Medical', 'medic rehabilit');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802497, 'Pain Management', 'manag pain');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802508, 'Home Visiting', 'home visit');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802519, 'Immunizations', 'immun');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802530, 'Advocacy, AIDS/HIV', 'advocaci aids hiv');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802541, 'First Aid', 'aid first');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802552, 'Pregnancy Testing', 'test pregnanc');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802563, 'Health Insurance', 'health insur');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802574, 'Health Care, Children', 'children care health');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802585, 'Cancer', 'cancer');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802596, 'Prevention Programs, Health', 'prevent health program');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802607, 'Free Health Care', 'free care health');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802618, 'Hospice Care', 'care hospic');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802629, 'Home Health Care', 'home care health');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802640, 'STD', 'std');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802651, 'Health Care, Adults', 'adult care health');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802662, 'Homemaker Services', 'servic homemak');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802673, 'Advocacy, Cancer', 'advocaci cancer');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802684, 'AIDS/HIV, Testing & Screening', 'screen test aids hiv');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802695, 'Blood Pressure', 'blood pressur');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802706, 'Men''s Health', 'health men');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802717, 'Contraceptive Services', 'contracept servic');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802728, 'Health Care, Teens', 'care health teen');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802739, 'Abortion', 'abort');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802750, 'Donating Blood', 'blood donat');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802761, 'Family Planning', 'famili plan');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802772, 'AIDS/HIV, Treatment & Support', 'treatment support aids hiv');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802783, 'Advocacy, Health', 'advocaci health');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802794, 'Medicare', 'medicar');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802805, 'Dental Care', 'care dental');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802816, 'Alternative Health', 'health altern');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802827, 'Women''s Health', 'women health');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802838, 'Advocacy, Health Insurance', 'advocaci health insur');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802849, 'Physician Referral', 'physician referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802860, 'Early Intervention', 'intervent earli');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802871, 'MassHealth/Medicaid', 'masshealth medicaid');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802882, 'Health Care, Infants/Toddlers', 'infant care health toddler');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802893, 'Code Violations', 'code violat');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802904, 'Landlord Trainings', 'train landlord');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802915, 'Hotlines, Housing', 'hotlin hous');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802926, 'Home Buying', 'home bui');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802937, 'Lead Paint', 'lead paint');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802948, 'AIDS/HIV, Housing', 'hous aids hiv');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802959, 'Loans, Housing', 'loan hous');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802970, 'Housing, Affordable', 'hous afford');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802981, 'Section 8 Housing', ' hous section 8');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802992, 'Public Housing', 'hous public');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803003, 'Tenant Rights', 'right tenant');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803014, 'Housing, Transitional', 'hous transition');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803025, 'Housing, Counseling', 'counsel hous');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803036, 'Housing, Financial Assistance', 'assist hous financi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803047, 'Fair Housing', 'hous fair');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803058, 'Landlord Rights', 'right landlord');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803069, 'Information and Referral, Housing', 'inform hous and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803080, 'Housing, Shelter', 'hous shelter');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803091, 'Mediation, Housing', 'hous mediat');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803102, 'Home Improvement/Modification', 'home improv modif');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803113, 'Advocacy, Housing', 'advocaci hous');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803124, 'Hotlines, Immigrants', 'hotlin immigr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803135, 'Immigrant Employment Services', 'servic immigr employ');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803146, 'Refugees', 'refuge');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803157, 'Translating/Interpreting', 'interpret translat');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803168, 'Asylum', 'asylum');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803179, 'Advocacy, Immigrants', 'advocaci immigr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803190, 'Citizenship Preparation', 'citizenship prepar');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803201, 'Immigrant Rights', 'right immigr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803212, 'Immigrant Education Assistance', 'educ assist immigr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803223, 'Discrimination', 'discrimin');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803234, 'Immigration/Naturalization', 'natur immigr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803245, 'Information and Referral Immigrants', 'inform immigr and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803256, 'Legal Assistance, Immigrants', 'legal immigr assist');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803267, 'Crime Prevention', 'prevent crime');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803278, 'Court', 'court');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803289, 'Divorce', 'divorc');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803300, 'Hotlines, Legal', 'legal hotlin');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803311, 'Consumer Rights', 'right consum');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803322, 'Information and Referral', 'inform and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803333, 'Legal Assistance, Child Custody', 'legal assist child custodi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803344, 'Legal Representation Criminal', 'crimin legal represent');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803355, 'Offenders', 'offend');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803366, 'Legal Services', 'servic legal');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803377, 'Legal Advocacy', 'advocaci legal');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803388, 'Legal Representation, Civil', 'civil legal represent');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803399, 'Hotlines, Consumer Rights', 'hotlin right consum');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803410, 'Benefits Law', 'law benefit');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803421, 'Dual Diagnosis', 'dual diagnosi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803432, 'Advocacy, Mental Retardation', 'retard advocaci mental');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803443, 'Information and Referral, Mental Health', 'inform health mental and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803454, 'Hotlines, Mental Health', 'hotlin health mental');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803465, 'Panic Disorder', 'panic disord');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803476, 'Psychiatric Services', 'servic psychiatr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803487, 'Depression/Manic Depression', 'manic depress');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803498, 'Mental Health, Services', 'servic health mental');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803509, 'Residential Programs, Psychiatric', 'psychiatr program residenti');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803520, 'Information and Referral, Mental Retardation', 'retard inform mental and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803531, 'Anxiety', 'anxieti');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803542, 'Advocacy, Mental Health', 'advocaci health mental');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803553, 'Mental Health, Information and Education', 'inform educ health and mental');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803564, 'Stress Management', 'stress manag');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803575, 'Coalition/Partnership', 'partnership coalition');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803586, 'Environmental Education', 'educ environment');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803597, 'Planning/Funding Organizations', 'fund organ plan');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803608, 'Clubhouse', 'clubhous');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803619, 'Environment', 'environ');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803630, 'Veterans', 'veteran');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803641, 'Gay/Lesbian/Bisexual', 'bisexu lesbian gai');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803652, 'Transportation, Other', 'other transport');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803663, 'Membership Organizations', 'organ membership');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803674, 'Parenting Education', 'educ parent');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803685, 'Parenting Groups', 'parent group');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803696, 'Teen Parents', 'teen parent');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803718, 'Supervised Visitation', 'visit superv');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803729, 'Single Parents', 'singl parent');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803740, 'Hotlines, Parenting', 'hotlin parent');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803751, 'Baby Items', 'item babi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803762, 'Advocacy, Parenting', 'advocaci parent');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803773, 'Information and Referral, Parenting', 'inform and parent referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803784, 'Parenting Support', 'parent support');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803795, 'Mediation/Conflict Resolution, Family', 'conflict resolut famili mediat');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803806, 'Adoption', 'adopt');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803817, 'Hotlines, Crime', 'crime hotlin');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803828, 'Police', 'polic');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803839, 'Gang Prevention/Intervention', 'intervent prevent gang');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803850, 'Law Enforcement', 'enforc law');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803861, 'Juvenile Delinquency Prevention', 'prevent juvenil delinqu');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803872, 'Public Safety', 'safeti public');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803883, 'Information and Referral, Public Safety', 'inform safeti public and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803894, 'Hotlines, Public Safety', 'safeti hotlin public');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803905, 'Crime Victim', 'crime victim');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803916, 'Senior Center', 'senior center');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803927, 'Adult Day Care, Senior', 'senior care dai adult');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803938, 'Transportation, Senior', 'senior transport');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803949, 'Hotlines, Senior', 'senior hotlin');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803960, 'Elder Services', 'elder servic');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803971, 'Information and Referral, Senior', 'senior inform and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803982, 'Advocacy, Senior', 'senior advocaci');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803993, 'Caregivers', 'caregiv');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804004, 'Elder Abuse', 'elder abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804015, 'Soccer', 'soccer');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804026, 'Sports/Recreation, Middle School', 'recreat school sport middl');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804037, 'Parks', 'park');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804048, 'Sports/Recreation, Adult', 'recreat sport adult');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804059, 'Swimming Lessons', 'lesson swim');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804070, 'Water Safety', 'safeti water');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804081, 'Sports/Recreation, Elementary School', 'recreat school sport elementari');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804092, 'Sports/Recreation, High School', 'recreat school sport high');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804103, 'Baseball', 'basebal');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804114, 'Basketball', 'basketbal');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804136, 'Sports/Recreation, Preschool', 'preschool recreat sport');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804147, 'Gymnastics', 'gymnast');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804158, 'Swimming', 'swim');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804169, 'Football', 'footbal');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804180, 'Prevention Program, Alcohol Addiction', 'prevent alcohol addict program');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804191, 'Residential Program, Drug Abuse', 'drug abus program residenti');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804202, 'Support Group, Drug Abuse', 'group drug abus support');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804213, 'Advocacy, Alcohol Addiction', 'alcohol advocaci addict');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804224, 'Gambling Addiction', 'addict gambl');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804235, 'Counseling, Drug Abuse', 'counsel drug abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804246, 'Counseling, Alcohol Addiction', 'counsel alcohol addict');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804257, 'Halfway House, Alcohol Addiction', 'halfwai alcohol addict hous');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804268, 'Support Group, Alcohol Addiction', 'alcohol group addict support');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804279, 'Recovery, Drug Abuse', 'drug abus recoveri');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804290, 'Methadone Treatment', 'methadon treatment');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804301, 'Prevention Program, Drug Abuse', 'prevent drug abus program');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804312, 'Hotlines, Drug Abuse', 'hotlin drug abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804323, 'Information and Referral, Alcohol Addiction', 'inform alcohol and addict referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804334, 'Recovery, Alcohol Addiction', 'alcohol addict recoveri');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804345, 'Residential Program, Alcohol Addiction', 'alcohol addict program residenti');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804356, 'Halfway House, Drug Abuse', 'halfwai drug abus hous');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804367, 'Detoxification', 'detoxif');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804378, 'Advocacy, Drug Abuse', 'advocaci drug abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804389, 'Information and Referral, Drug Abuse', 'inform drug and referr abus');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804400, 'Hotlines, Alcohol Addiction', 'alcohol hotlin addict');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804411, 'Peer Leadership', 'leadership peer');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804422, 'Babysitter Training', 'train babysitt');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804433, 'Infants/Toddlers', 'infant toddler');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804444, 'Advocacy, Youth', 'youth advocaci');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804466, 'After School Programs, High School', 'school after high program');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804477, 'Drug Prevention Programs Middle School', 'prevent school drug program middl');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804488, 'Drug Prevention Programs High School', 'prevent school drug high program');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804499, 'Youth Programs, 05 - 10', ' youth  program 05 10');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804510, 'Mediation/Conflict Resolution, Youth', 'youth conflict resolut mediat');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804521, 'Mentoring, Youth', 'youth mentor');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804532, 'Camp, 05 - 10', '  camp 05 10');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804543, 'Runaways', 'runawai');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804554, 'Hotlines, Youth', 'youth hotlin');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804565, 'Teen Programs', 'teen program');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804576, 'Youth Programs, 14 - 19', 'youth  program  14 19');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804587, 'After School Programs, Middle School', 'school after program middl');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804598, 'Camp, 14 - 19', ' camp  14 19');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804609, 'Mentoring, Teens', 'teen mentor');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804620, 'After School Programs, Elementary School', 'school after elementari program');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804631, 'Information and Referral, Youth', 'youth inform and referr');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804642, 'Children''s Playgroups', 'children playgroup');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804664, 'Youth Programs, 11 - 15', 'youth  program  11 15');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804675, 'Preschool Programs', 'preschool program');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804686, 'Camp, 11 - 15', ' camp  11 15');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804697, 'Youth Programs, 17 - 22', 'youth   program 17 22');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804708, 'Drug Prevention Programs Elementary School', 'prevent school drug elementari program');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804719, 'Child Care, 05 - 12', ' care child  05 12');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804730, 'Kinship Care', 'care kinship');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804741, 'Child Care, 0 - 05', '  care child 0 05');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804785, 'Music Lessons, Youth/Teen', 'youth lesson teen music');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804796, 'Visual Arts Classes, Youth/Teen', 'youth class teen art visual');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804807, 'Performance Art Classes, Youth/Teen', 'youth class teen art perform');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804818, 'Senior Recreation/Social', 'recreat senior social');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804829, 'Hockey', 'hockei');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804840, 'Music Lessons, Adult', 'lesson music adult');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804851, 'Visual Art Classes, Adult', 'adult class art visual');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804862, 'Performance Art Classes, Adult', 'class art perform adult');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804873, 'Prenatal', 'prenat');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804884, 'Affordable Health Care', 'care health afford');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804895, 'Uninsured Services', 'servic uninsur');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804906, 'Support Group, Cancer', 'group cancer support');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804917, 'Housing, Elderly', 'elderli hous');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804928, 'Food', 'food');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804939, 'Soup Kitchen', 'soup kitchen');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804950, 'College Preparation, Adult', 'colleg prepar adult');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804961, 'Financial Literacy', 'literaci financi');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804972, 'Counseling, Group', 'counsel group');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804983, 'Social/Singles Groups', 'singl social group');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804994, 'Computer/Technology Providers', 'technologi provid comput');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (805005, 'Eating Disorder', 'eat disord');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (805016, 'Diabetes', 'diabet');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802244, 'Food Pantry', 'pantri food');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (805027, 'Martial Arts', 'art martial');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801221, 'Child Care Training', 'child train care');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (801408, 'Home Based Child Care Certification', 'certif home base child care');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804774, 'Information and Referral, Child Care', 'referr inform child and care');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804653, 'Child Care Vouchers', 'voucher child care');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804763, 'Home Based Child Care 0 - 05', '  home base child care 0 05');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (804752, 'Home Based Child Care 05 - 12', ' home base child  care 05 12');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (803707, 'Foster Care', 'foster care');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800550, 'Abuse, Child', 'abus child');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (805038, 'Prescription Drugs', 'drug prescript');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (800011, 'Dance', 'danc');
-INSERT INTO category (category_id, category_name, stems_name) VALUES (802211, 'Food Stamps', 'stamp food');
-
-
---
--- Data for Name: category_search_log; Type: TABLE DATA; Schema: public; Owner: mansi
---
-
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36648, '66.92.77.160.22211109', '66.92.77.160', '2009-02-21 22:47:56.844043', 'test', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 'test', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36649, '129.63.96.191.1432109', '129.63.96.191', '2009-03-03 14:08:00.640147', 'hj', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 'hj', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36650, '209.235.0.248.16312109', '209.235.0.248', '2009-03-31 16:17:55.23427', 'legal', 'http://mvh.omacneil.testing123.net/', 'legal', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36651, '209.235.0.248.16312109', '209.235.0.248', '2009-03-31 16:18:38.101805', 'law', 'http://mvh.omacneil.testing123.net/', 'law', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36652, '96.237.29.220.17312109', '96.237.29.220', '2009-03-31 17:02:15.050425', 'youth program', 'http://mvh.omacneil.testing123.net/', 'youth', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36653, '96.237.29.220.17312109', '96.237.29.220', '2009-03-31 17:03:19.900033', 'revolving museum', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl?rm=show_program_results;category_id=804466;search_phrase=youth%20program', 'museum revolv', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36655, '75.150.72.65.10134109', '75.150.72.65', '2009-05-13 10:25:28.563008', 'community software lab', 'http://mvh.omacneil.testing123.net/', 'commun lab softwar', 0.33);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36656, '75.150.72.65.11134109', '75.150.72.65', '2009-05-13 11:38:57.844143', 'homeless agencies', 'http://mvh.omacneil.testing123.net', 'agenc homeless', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36657, '75.150.72.65.11134109', '75.150.72.65', '2009-05-13 11:40:06.844511', 'homeless shelters', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl?rm=show_program_results;category_id=803113;search_phrase=homeless%20agencies', 'homeless shelter', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36658, '75.150.72.65.11134109', '75.150.72.65', '2009-05-13 11:42:32.419976', 'community software lab', 'http://mvh.omacneil.testing123.net', 'commun lab softwar', 0.33);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36659, '75.150.72.65.11134109', '75.150.72.65', '2009-05-13 11:45:11.917957', 'community software lab agency', 'http://mvh.omacneil.testing123.net/', 'agenc commun lab softwar', 0.25);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36660, '75.150.72.65.11134109', '75.150.72.65', '2009-05-13 11:47:01.076452', 'dancing schools in lowell', 'http://mvh.omacneil.testing123.net', 'danc lowel school', 0.33);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36661, '75.150.72.65.11134109', '75.150.72.65', '2009-05-13 11:48:50.556147', 'help in lowell area', 'http://mvh.omacneil.testing123.net', 'area help lowel', 0.33);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36662, '75.150.72.65.11134109', '75.150.72.65', '2009-05-13 11:50:01.96591', 'president of community teamwork inc.', 'http://mvh.omacneil.testing123.net', 'commun inc presid teamwork', 0.25);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36663, '75.150.72.65.11134109', '75.150.72.65', '2009-05-13 11:51:48.472254', 'director of community teamwork inc.', 'http://mvh.omacneil.testing123.net', 'commun director inc teamwork', 0.25);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36665, '75.150.72.65.12134109', '75.150.72.65', '2009-05-13 12:35:23.863837', 'shelters', 'http://mvh.omacneil.testing123.net', 'shelter', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36666, '75.150.72.65.12134109', '75.150.72.65', '2009-05-13 12:37:58.927737', 'community sofware lab', 'http://mvh.omacneil.testing123.net/', 'commun lab sofwar', 0.33);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36667, '75.150.72.65.12134109', '75.150.72.65', '2009-05-13 12:38:16.267654', 'community software lab', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 'commun lab softwar', 0.33);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36668, '75.150.72.65.12134109', '75.150.72.65', '2009-05-13 12:41:16.905134', 'dancing classes', 'http://mvh.omacneil.testing123.net/', 'class danc', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36669, '75.150.72.65.12134109', '75.150.72.65', '2009-05-13 12:42:58.779427', 'cti ', 'http://mvh.omacneil.testing123.net/', 'cti', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36670, '75.150.72.65.12134109', '75.150.72.65', '2009-05-13 12:43:10.433408', 'communit team work', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 'communit team work', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36674, '96.237.27.110.13134109', '96.237.27.110', '2009-05-13 13:58:44.420437', 'shelters', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 'shelter', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36676, '96.237.27.110.14134109', '96.237.27.110', '2009-05-13 14:03:43.65019', 'dance', 'http://mvh.omacneil.testing123.net/', 'danc', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36677, '96.237.27.110.14134109', '96.237.27.110', '2009-05-13 14:04:59.284704', 'c.t.i', 'http://mvh.omacneil.testing123.net/', 'c t', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36679, '96.237.27.110.14134109', '96.237.27.110', '2009-05-13 14:34:35.795373', 'community software lab', 'http://mvh.omacneil.testing123.net/', 'commun lab softwar', 0.33);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36680, '96.237.27.110.14134109', '96.237.27.110', '2009-05-13 14:39:23.104295', 'dancing schools in lowell', 'http://mvh.omacneil.testing123.net/', 'danc lowel school', 0.33);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36681, '96.237.27.110.14134109', '96.237.27.110', '2009-05-13 14:41:28.006932', 'cti', 'http://mvh.omacneil.testing123.net/', 'cti', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36682, '96.237.27.110.14134109', '96.237.27.110', '2009-05-13 14:44:21.856848', 'karate lesson', 'http://mvh.omacneil.testing123.net/', 'karat lesson', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36683, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:07:46.160532', 'community services', 'http://mvh.omacneil.testing123.net/', 'commun servic', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36684, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:10:20.213185', 'electric company', 'http://mvh.omacneil.testing123.net/', 'compani electr', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36685, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:13:28.482865', 'dance class', 'http://mvh.omacneil.testing123.net/', 'class danc', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36686, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:15:06.268875', 'employment', 'http://mvh.omacneil.testing123.net/', 'employ', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36690, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:44:27.373244', 'lowell homeless shelter', 'http://mvh.omacneil.testing123.net/', 'homeless lowel shelter', 0.67);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36691, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:47:04.122625', 'Lowell Ma utilities services', 'http://mvh.omacneil.testing123.net/', 'lowel ma servic util', 0.25);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36692, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:49:11.376855', 'Information about MVHub', 'http://mvh.omacneil.testing123.net/', 'inform mvhub', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36693, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:51:49.984481', 'google', 'http://mvh.omacneil.testing123.net/', 'googl', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36694, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:52:41.809641', 'Information about MVHub website', 'http://mvh.omacneil.testing123.net/', 'inform mvhub websit', 0.33);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36695, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:54:51.307236', 'Lowell MA dance school', 'http://mvh.omacneil.testing123.net/', 'danc lowel ma school', 0.25);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36696, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:57:05.263995', 'wall street journal', 'http://mvh.omacneil.testing123.net/', 'journal street wall', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36697, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:57:32.154773', 'stock market', 'http://mvh.omacneil.testing123.net/', 'market stock', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36698, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:57:46.597832', 'brokers', 'http://mvh.omacneil.testing123.net/', 'broker', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36699, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:57:56.803857', 'money', 'http://mvh.omacneil.testing123.net/', 'monei', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36700, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:58:09.743895', 'careers', 'http://mvh.omacneil.testing123.net/', 'career', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36701, '74.104.19.137.11274109', '74.104.19.137', '2009-05-27 11:59:23.137174', 'citi inc', 'http://mvh.omacneil.testing123.net/', 'citi inc', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36702, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:01:19.430024', 'neihbors in need mailing address', 'http://mvh.omacneil.testing123.net/', 'address mail ne neihbor', 0.25);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36703, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:03:00.438256', 'fees for youth build and the cost', 'http://mvh.omacneil.testing123.net/', 'and build cost fee youth', 0.40);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36704, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:05:50.954809', 'when is the anne sullivan center open', 'http://mvh.omacneil.testing123.net/', 'ann center open sullivan', 0.25);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36705, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:32:31.819065', 'homeless shelters', 'http://mvh.omacneil.testing123.net/', 'homeless shelter', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36706, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:34:58.43848', 'fuel assistance', 'http://mvh.omacneil.testing123.net/', 'assist fuel', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36707, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:36:28.000953', 'complaints', 'http://mvh.omacneil.testing123.net/', 'complaint', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36708, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:38:03.086292', 'about mvhub', 'http://mvh.omacneil.testing123.net/', 'mvhub', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36709, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:39:04.173858', 'home website', 'http://mvh.omacneil.testing123.net/', 'home websit', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36710, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:39:28.026296', 'browse website', 'http://mvh.omacneil.testing123.net/', 'brows websit', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36711, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:39:53.724713', 'mvhub agency', 'http://mvh.omacneil.testing123.net/', 'agenc mvhub', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36712, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:40:37.402227', 'dancing lessons', 'http://mvh.omacneil.testing123.net/', 'danc lesson', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36713, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:42:50.485138', 'information about mvhub', 'http://mvh.omacneil.testing123.net/', 'inform mvhub', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36714, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:44:04.799492', 'cti management', 'http://mvh.omacneil.testing123.net/', 'cti manag', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36715, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:44:40.149669', 'director for c.t.i', 'http://mvh.omacneil.testing123.net/', 'c director t', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36716, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:44:56.227736', 'director for CTI', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 'cti director', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36717, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:45:28.594382', 'director for community teamwork incorporated', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 'commun director incorpor teamwork', 0.25);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36718, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:46:46.088551', 'address for Neighbors in Need', 'http://mvh.omacneil.testing123.net/', 'address ne neighbor', 0.33);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36719, '74.104.19.137.12274109', '74.104.19.137', '2009-05-27 12:48:03.132253', 'mailing address for Neighbors in need', 'http://mvh.omacneil.testing123.net', 'address mail ne neighbor', 0.25);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36720, '74.104.19.137.13274109', '74.104.19.137', '2009-05-27 13:10:00.735939', 'shelter', 'http://mvh.omacneil.testing123.net/', 'shelter', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36721, '74.104.19.137.13274109', '74.104.19.137', '2009-05-27 13:12:10.771199', 'fuel assistance', 'http://mvh.omacneil.testing123.net/', 'assist fuel', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36722, '74.104.19.137.13274109', '74.104.19.137', '2009-05-27 13:14:17.857511', 'ball room dance class', 'http://mvh.omacneil.testing123.net/', 'ball class danc room', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36723, '74.104.19.137.13274109', '74.104.19.137', '2009-05-27 13:16:06.290778', 'dance teacher', 'http://mvh.omacneil.testing123.net/', 'danc teacher', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36724, '74.104.19.137.13274109', '74.104.19.137', '2009-05-27 13:16:53.86601', 'cti', 'http://mvh.omacneil.testing123.net/', 'cti', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36725, '74.104.19.137.13274109', '74.104.19.137', '2009-05-27 13:17:05.489277', 'cti management', 'http://mvh.omacneil.testing123.net/', 'cti manag', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36726, '74.104.19.137.13274109', '74.104.19.137', '2009-05-27 13:18:32.224975', 'neighbors in need', 'http://mvh.omacneil.testing123.net/', 'ne neighbor', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36727, '74.104.19.137.13274109', '74.104.19.137', '2009-05-27 13:19:36.968783', 'youthbuild', 'http://mvh.omacneil.testing123.net/', 'youthbuild', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36728, '74.104.19.137.13274109', '74.104.19.137', '2009-05-27 13:19:43.062141', 'youth build', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 'build youth', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36729, '74.104.19.137.13274109', '74.104.19.137', '2009-05-27 13:20:46.009237', 'ann sullivan center', 'http://mvh.omacneil.testing123.net/', 'ann center sullivan', 0.33);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36730, '76.118.140.125.17274109', '76.118.140.125', '2009-05-27 17:23:39.026633', 'test', 'http://mvh.omacneil.testing123.net/', 'test', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36731, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:04:57.512457', 'homeless shelter', 'http://mvh.omacneil.testing123.net/', 'homeless shelter', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36732, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:05:08.531782', 'homeless shelter in lowell', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 'homeless lowel shelter', 0.67);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36733, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:07:22.727768', 'how to pay a gas bill', 'http://mvh.omacneil.testing123.net/', 'bill ga pai', 0.33);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36734, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:11:49.427207', 'lowell dancing classes/ tap', 'http://mvh.omacneil.testing123.net/', 'class danc lowel tap', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36736, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:12:55.013267', 'dancing classes/ schools', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 'class danc school', 0.67);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36737, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:13:30.351197', 'dancing classes', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl?rm=show_program_results;category_id=800011;search_phrase=dancing%20classes%2F%20schools', 'class danc', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36738, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:14:01.093505', 'ymca', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl?rm=show_program_results;category_id=804807;search_phrase=dancing%20classes', 'ymca', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36740, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:14:51.512357', 'schools for dancing', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl?rm=show_program&program_id=504884', 'danc school', 0.50);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36741, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:15:16.245434', 'tap dancing classes', 'http://mvh.omacneil.testing123.net/cgi-bin/mvhub/guide.pl', 'class danc tap', 0.67);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36742, '74.94.147.165.1055109', '74.94.147.165', '2009-06-05 10:18:02.556026', 'whats the name of the person in charge on cti', 'http://mvh.omacneil.testing123.net/', 'charg cti name person what', 0.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36747, '74.94.147.165.1155109', '74.94.147.165', '2009-06-05 11:10:50.469022', 'homeless', 'http://mvh.omacneil.testing123.net', 'homeless', 1.00);
-INSERT INTO category_search_log (search_id, session_id, ip_address, "timestamp", search_phrase, referer, phrase_stems, top_score) VALUES (36748, '74.94.147.165.1155109', '74.94.147.165', '2009-06-05 11:14:17.129406', 'help to pay expenses', 'h

Follow ups