rbcurse 1.1.3 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,34 @@
1
+
2
+ **2010-08-30 11:59**
3
+ ## 1.1.4
4
+
5
+ - Some missing files such as tableextended.rb and vieditable
6
+ These got missed out in the gemspec.
7
+ - Added slice! to listdatamodel
8
+ - Also see ruby 1.9.2 changes below
9
+
10
+ **2010-08-23 11:50**
11
+ ## ruby 1.9.2 related changes
12
+
13
+ Changes in 1.9.2 require the following changes:
14
+ - $: no longer includes ".".
15
+ Fixed 2 examples.
16
+ - hash_update: cannot update hash during iteration
17
+ Modified rwidget.rb and rtable.rb
18
+
19
+ (Ref http://svn.ruby-lang.org/repos/ruby/tags/v1_9_2_0/ChangeLog)
20
+
21
+ **2010-05-19 00:00**
22
+ ## Table - added tableextended.rb for extended functions on tables
23
+
24
+ Currently, increase or decrease column width using numeric args.
25
+ You will have to bind the method to a key in your app.
26
+
27
+ **2010-05-13 00:00**
28
+ ## Table - adding vim keys for navigation
29
+
30
+ If table is not editable, then j k l h gg G etc may be used for navigation.
31
+
1
32
  **2010-03-01 00:00**
2
33
  ## Overhaul of tabbedpane
3
34
 
data/NOTES CHANGED
@@ -1534,3 +1534,107 @@ typing several chars can also be clubbed into one object to reduce
1534
1534
  memory.
1535
1535
 
1536
1536
  * * * * * * * *
1537
+
1538
+ Subject: making rbcurse friendlier
1539
+ ----------------------------------
1540
+ Date: 2010-08-26 19:45
1541
+
1542
+ I am wondering whether creating rbcurse widgets or apps requires too
1543
+ much boiler plate code.
1544
+
1545
+ Can I make it simpler. The problem i faced (coming from Java) was
1546
+ inability to have multiple constructors. So the user, and even I, don't
1547
+ know for sure what all a widget requires to run.
1548
+
1549
+ Can widget creation be made simpler.
1550
+
1551
+ I have an idea also for generating widgets and an app through a command
1552
+ line interface. Later i can also write a ncurses app in rbcurse that can
1553
+ generate apps. User can select and place widgets, he can see them as he
1554
+ creates them. He can move them around etc. Finally, he can generate the
1555
+ code for the widgets on screen.
1556
+
1557
+ * * * * * * * *
1558
+
1559
+ Subject: other screen patterns
1560
+ ------------------------------
1561
+ Date: 2010-08-27 21:39
1562
+
1563
+ List entry view: Show a simple entry form directly above the total list of items
1564
+ http://welie.com/patterns/showPattern.php?patternID=list-entry-view
1565
+
1566
+ View: much like Hotmail.
1567
+ http://welie.com/patterns/showPattern.php?patternID=list-entry-view
1568
+
1569
+ Product Comparison: Sort of pivot table like, perhaps color columns
1570
+ http://welie.com/patterns/showPattern.php?patternID=comparison
1571
+
1572
+ Directory Navigation
1573
+ http://welie.com/patterns/showPattern.php?patternID=directory
1574
+
1575
+ http://welie.com/patterns/showPattern.php?patternID=doormat
1576
+ http://welie.com/patterns/showPattern.php?patternID=paging
1577
+
1578
+ * * * * * * * *
1579
+
1580
+ Subject: some fresh ideas for widgets
1581
+ -------------------------------------
1582
+ Date: 2010-08-27 21:45
1583
+
1584
+ I was glancing at this
1585
+ [article](http://designingwebinterfaces.com/designing-web-interfaces-12-screen-patterns)
1586
+ from reddit about Screen Patterns, and the 3 list widget was mentioned
1587
+ as Column Browse. Also Master Detail.
1588
+
1589
+ ## Column Browse
1590
+
1591
+ So I think why not create widgets out of this so that users don't have
1592
+ to mess around with multiple SplitPanes to do this. (Note that the
1593
+ problem in multiple embedded SplitPanes is that the user does not know
1594
+ how to traverse to a specific one. In an environment with a mouse, user
1595
+ can click on some area. Here, if there's no mouse this becomes a
1596
+ problem.
1597
+
1598
+ If I create a widget with 2/3 lists, it will be easier to
1599
+ programmatically refer to them, and to traverse them.
1600
+
1601
+ ## Spreadsheet widget
1602
+
1603
+ Someone also wrote to me about needing to write a Spreadsheet using
1604
+ ncurses. And the Table widget is close to that. It can be configured (or
1605
+ extended) to give quite a bit of functionality of a SS. However,
1606
+ everytime someone wishes to reuse a SS, he would have to copy the code
1607
+ -- if he has it.
1608
+
1609
+ So why not create a separate Spreadsheet class with just code for SS.
1610
+
1611
+ * * * * * * * *
1612
+
1613
+ Subject: another take on Vimsplit widget
1614
+ ----------------------------------------
1615
+ Date: 2010-08-27 23:23
1616
+
1617
+ Remember the vimsplit widget. Lets do another take in which we keep one
1618
+ level of components only. Perhaps i can tile them in one orientation,
1619
+ and allow user to expand/contract -- should be easy since only one
1620
+ level. We can find some way to have multiple orientations.
1621
+ This will be easy to code for user, and also to modify
1622
+ programmatically at run time.
1623
+
1624
+ One can even take the MultiContainer and put a tiling feature in it.
1625
+ **Convert to tiles**.
1626
+
1627
+ Which makes me wonder, if i can use Multicontainer to rewrite
1628
+ TabbedPane ? Tabbedpane had become very complex. But oh wait, TabbedPane
1629
+ can have forms in it, which MC cannot have. That's where the complexity
1630
+ came in.
1631
+
1632
+ So in the new vimsplit, splitting while sitting on a split, will not
1633
+ create a child split, but only an outer split, but half the size of the
1634
+ current split, or share out the sizes. Traversal will be easy.
1635
+
1636
+ If we allow splits to be defined with abso coords then we can have
1637
+ complex splits. Or perhaps a way of giving preferred size, so it can
1638
+ expand fully in one direction.
1639
+
1640
+ * * * * * * * *
data/README.markdown CHANGED
@@ -1,20 +1,23 @@
1
- # rbcurse (for ruby 1.9.1)
1
+ # rbcurse (for ruby 1.9.x)
2
2
 
3
3
  * Version that works with ruby 1.9 (backward compatible with 1.8.7)
4
4
 
5
- This branch - master19 - contains major rework on the buffering approach. It only affect
6
- programs that have used buffers such as splitpanes, scrollpanes and tabbedpanes.
7
- All are fixed. This is the branch that should be used.
5
+ * rbcurse 1.1.4 works with 1.9.2 and also contains some files that got missed out in gemspec.
6
+
7
+ * Corrections due to 1.9.2:
8
+ - hash_update: rwidget.rb and rtable.rb
9
+ Please report any more errors due to this
10
+ - $: does not contain "." (affects some examples only)
8
11
 
9
12
  Check downloads at <http://github.com/rkumar/rbcurse/downloads>
10
13
 
11
- test2.rb works - i always give it a quick run after making changes. All the testsplit* and testscroll* examples are working.
14
+ test2.rb works - i always give it a quick run after making changes. All the testsplit* and testscroll* examples are working. If using ruby1.9.2, you might say: `ruby -I. test2.rb`.
12
15
 
13
16
  * <http://totalrecall.wordpress.com> - always has some status posted.
14
17
 
15
- * Notes on rbcurse - very frequent updates <http://rbcurse.tumblr.com/>
18
+ * Notes on rbcurse - <http://rbcurse.tumblr.com/>
16
19
 
17
- * rbcurse on rubyforge: <http://rbcurse.rubyforge.org/> - Not updated.
20
+ * rbcurse on rubyforge: <http://rbcurse.rubyforge.org/> - Occassionally updated.
18
21
 
19
22
  * See changes on (not updated often)
20
23
  <http://github.com/rkumar/rbcurse/tree/master/CHANGELOG>
@@ -33,7 +36,9 @@ test2.rb works - i always give it a quick run after making changes. All the test
33
36
  sqlm.rb: uses a multi-container - each query opens a new table in the multicontainer
34
37
 
35
38
  * testtodo.rb is a test TODO application (now using fastercsv)
36
- (needs retesting - may not work at all)
39
+ (needs retesting - is working)
40
+
41
+ * viewtodo.rb is a test TODO viewing application (now using sqlite3). The table is readonly, some vim keys are available.
37
42
 
38
43
  * Screenshots on
39
44
  <http://www.benegal.org/files/screen/?M=D> (new)
@@ -138,7 +143,7 @@ The following are issues with terminals (or with ncurses-ruby in some cases) not
138
143
  This is okay under "screen" and "xterm-color" but not under "xterm". You will notice
139
144
  this in the message box samples.
140
145
 
141
- I am developing and testing under "screen" under OS X Leopard 10.5.8 PPC.
146
+ I am developing and testing under "screen" under OS X Leopard 10.5.8 PPC (now 10.6.x Snow Leopard).
142
147
 
143
148
  ## SYNOPSIS:
144
149
 
@@ -350,7 +355,7 @@ THE following samples are only demonstrative of how widgets are built. See sampl
350
355
 
351
356
  ## REQUIREMENTS:
352
357
 
353
- * ruby 1.9.1 (I believe it is working on 1.8.7 as well).
358
+ * ruby 1.9.1, 1.9.2 (I believe it is working on 1.8.7, 1.8.6 as well).
354
359
 
355
360
  * ncurses-ruby (1.2.4)
356
361
 
@@ -360,67 +365,50 @@ THE following samples are only demonstrative of how widgets are built. See sampl
360
365
  ## INSTALL:
361
366
 
362
367
  STEP 1.
368
+ (In following commands, use `sudo` if installing gems in readonly are such as /opt/local/).
363
369
 
364
- `sudo gem install ncurses`
370
+ `gem install ncurses`
365
371
 
366
- If the above fails, then do as follows:
372
+ Often this gives compilation errors, or runtime errors when you run the examples.
373
+ If so, please download [ncurses-1.2.4.gem](http://github.com/downloads/rkumar/rbcurse/ncurses-1.2.4.gem) from <http://github.com/rkumar/rbcurse/downloads> and do a:
367
374
 
368
- Somehow at the time of writing the above installs a version that does
369
- not work with 1.9. So you have to download ncurses-ruby (1.2.4) tgz from
370
- <http://ncurses-ruby.berlios.de/> as follows:
375
+ `gem install --local ncurses-1.2.4.gem`.
371
376
 
372
- 1. Download <http://prdownload.berlios.de/ncurses-ruby/ncurses-ruby-1.2.4.tar.bz2>
373
- 2. unzip the file, cd into dir
374
- 2. run install commands as per README (`ruby extconf.rb && make`)
375
- 3. Create a gemspec ... use this file <http://gist.github.com/201877>
376
- Save it as ncurses.gemspec
377
- 4. `sudo gem build ncurses.gemspec`
378
- 5. `sudo gem install --local ncurses-1.2.4.gem`
379
- 6. **uninstall** any previous ncurses or ncurses-ruby version otherwise
380
- errors will persist at runtime.
381
- 7. check with `gem list --local` and you should see ncurses (1.2.4). The
382
- examples in the ncurses-ruby/examples folder should work. (Check the
383
- first line regarding interpreter first).
384
- 8. As a last resort, I've put up a copy of the gem [here](http://www.benegal.org/files/ncurses-1.2.4.gem).
377
+ This should have installed an `ncurses.rb` and `ncurses_bin.bundle` in the site directory.
378
+ Goto examples directory and run some examples:
385
379
 
386
- (edit: I am told that step 2 installs ncurses-ruby locally, so you don't need to create a gem)
380
+ ruby rain.rb
381
+ ruby examples.rb
387
382
 
388
383
  STEP 2.
389
384
 
390
- `sudo gem install rbcurse`
385
+ `gem install rbcurse`
391
386
 
392
- Now go to the the `examples` folder and execute some examples.
387
+ Now go to the the `examples` folder and execute some examples. Each sample writes to a log file named view.log. If the examples folder is readonly, you will have to set `LOGDIR` to a writable folder as below.
393
388
 
394
389
  cd examples
395
390
  ruby test2.rb
391
+ LOGDIR=~/tmp ruby test1.rb
396
392
 
397
393
 
398
- Note: Please use rbcurse gem version 1.1.1 or higher. I have just created this gem, so let me know if there are missing files.
394
+ Note: Please use rbcurse gem version 1.1.3 or higher. I have just created this gem, so let me know if there are missing files.
399
395
 
400
- ### Installing ruby ncurses on Mac OS X Snow Leopard
401
-
402
- STEP 1.
396
+ ### Installing ncurses-ruby on Mac OS X Snow Leopard
403
397
 
404
- ncurses-ruby 1.2.4 is not installing, errors in `make`. I have not found a working solution. Finally, I used ncurses-0.9.1 and made some changes and it is working. Needs to be tested out. I am not sure how I got ncurses-0.9.1 in my gems folder, possible I had done a `sudo port install ncurses`.
398
+ ncurses-ruby has been failing on OSX Snow Leopard. Please get 1.2.4 or 0.9.2 from <http://github.com/downloads/rkumar/rbcurse/>. Ensure that the examples are working before trying rbcurse.
405
399
 
406
- <http://trickyco.de/tag/ncurses has a similar procedure>. I made the changes based on my working copy of 1.2.4 from my OS X PPC Machine. Will upload the gem and code.
407
-
408
- trickyco's procedure is as follows:
400
+ I have uploaded a modified ncurses gem [here](http://github.com/downloads/rkumar/rbcurse/ncurses-0.9.2.gem) .
401
+ Download this and then run:
409
402
 
410
- gem fetch ncurses
411
- gem unpack ncurses-0.9.1.gem
412
- ruby extconf.rb
413
- patch -p1 < ~/ncurses_ruby_1.9.patch
414
- make
415
- sudo make install
403
+ gem install --local ncurses-1.2.4.gem
404
+ OR
405
+ gem install --local ncurses-0.9.2.gem
416
406
 
417
- See the patch file from [here](http://trickyco.de/tag/ncurses) . See other steps as above.
407
+ Thanks to Ralf Papenkordt for providing me with a working tar.bz2 file (see download folder).
418
408
 
419
- If all fails, try this and let me know if it works, or fails.
420
- I have uploaded a modified ncurses gem [here](http://github.com/downloads/rkumar/rbcurse/ncurses-0.9.1.gem) .
421
- Download this and then run:
409
+ **Update**: I've uploaded a gem for Snow Leopard onto [rubygems.org](http://rubygems.org/gems/snowleopard-ncurses).
422
410
 
423
- sudo gem install --local ncurses-0.9.1.gem
411
+ gem install snowleopard-ncurses
424
412
 
425
413
  ## LICENSE:
426
414
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.3
1
+ 1.1.4
data/examples/README.txt CHANGED
@@ -2,10 +2,44 @@
2
2
  README
3
3
  ------
4
4
 
5
+ ### For ruby 1.9.2, 2010-08-23 11:48
6
+
7
+ Changes in 1.9.2 require the following changes:
8
+ - $: no longer includes ".".
9
+ Fixed 2 examples.
10
+ - hash_update: cannot update hash during iteration
11
+ Modified rwidget.rb and rtable.rb
12
+
13
+ ### IMPORTANT
14
+
15
+ 1. If you are trying out the examples from a folder that does not have
16
+ write access (e.g. /opt/local/lib...), then you may have to run the
17
+ examples, with "sudo", since a log file is created. Or else, you could
18
+ copy the examples elsewhere, or change to location of the log file
19
+ (view.log) before running.
20
+
21
+ sudo ruby test2.rb
22
+
23
+ Update: Added an environment variable named LOGDIR. So you may do:
24
+
25
+ LOGDIR=~/ ruby test2.rb
26
+
27
+ or just set LOGDIR
28
+
29
+ export LOGDIR=~/tmp
30
+
31
+ 2. Please change directory to the examples folder before executing, since
32
+ some data files, or local programs may be loaded.
33
+
5
34
  ## sqlc.rb
6
35
 
7
36
  A sql client using tabbedpanes.
8
37
 
38
+ This uses a file testd.db that can be downloaded (check file for
39
+ location) or created using:
40
+
41
+ sqlite3 testd.db < data.txt
42
+
9
43
  Enter an sql query in the textbox. Click Run.
10
44
 
11
45
  Or Press Enter on the name of a table in the tables listing. Its
@@ -25,6 +59,8 @@ resultsets instead of a tabbedpane.
25
59
  * * * * *
26
60
 
27
61
  Please check the examples with test*.rb - since they are updated.
62
+ At the time of writing, viewtodo.rb may not be functional since I
63
+ changed to structure of the yaml file.
28
64
 
29
65
  ## vim:tw=72:ai:formatoptions=tcqln:nocindent:
30
66
 
data/examples/data.txt ADDED
@@ -0,0 +1,683 @@
1
+ PRAGMA foreign_keys=OFF;
2
+ BEGIN TRANSACTION;
3
+ CREATE TABLE contracts (
4
+ contract_id varchar(5),
5
+ seller_company_name varchar(50),
6
+ customer_company_name varchar(50),
7
+ customer_duns_number varchar(50) ,
8
+ contract_affiliate varchar(50) ,
9
+ FERC_tariff_reference varchar(50),
10
+ contract_service_agreement_id varchar(50),
11
+ contract_execution_date date,
12
+ contract_commencement_date date,
13
+ contract_termination_date date,
14
+ actual_termination_date date,
15
+ extension_provision_description varchar(100),
16
+ class_name varchar(50),
17
+ term_name varchar(50),
18
+ increment_name varchar(50),
19
+ increment_peaking_name varchar(50),
20
+ product_type_name varchar(50),
21
+ product_name varchar(50),
22
+ quantity integer,
23
+ units_for_contract varchar(50),
24
+ rate real,
25
+ rate_minimum real,
26
+ rate_maximum real,
27
+ rate_description varchar(100),
28
+ units_for_rate real,
29
+ point_of_receipt_control_area varchar(50),
30
+ point_of_receipt_specific_location varchar(50),
31
+ point_of_delivery_control_area varchar(50),
32
+ point_of_delivery_specific_location varchar(50),
33
+ begin_date date,
34
+ end_date date,
35
+ time_zone varchar(50)
36
+ );
37
+ INSERT INTO "contracts" VALUES('C71','The Electric Company','The Power Company','456543333','N','FERC Electric Tariff Original Volume No. 10','2','2/15/2001','2/15/2001','','','Evergreen','N/A','N/A','N/A','N/A','MB','ENERGY',0,'',' ',' ',' ','Market Based','','','','','','','','ES');
38
+ INSERT INTO "contracts" VALUES('C71','The Electric Company','The Power Company','456543333','N','FERC Electric Tariff Original Volume No. 10','2','2/15/2001','2/15/2001','','','Evergreen','N/A','N/A','N/A','N/A','MB','ENERGY',0,'',' ',' ',' ','Market Based','','','','','','','','ES');
39
+ INSERT INTO "contracts" VALUES('C72','The Electric Company','Utility A','38495837','n','FERC Electric Tariff Original Volume No. 10','15','7/25/2001','8/1/2001','','','Evergreen','N/A','N/A','N/A','N/A','MB','ENERGY',0,'',' ',' ',' ','Market Based','','','','','','','','ES');
40
+ INSERT INTO "contracts" VALUES('C73','The Electric Company','Utility B','493758794','N','FERC Electric Tariff Original Volume No. 10','7','6/8/2001','7/6/2001','','','Evergreen','N/A','N/A','N/A','N/A','MB','ENERGY',0,'',' ',' ',' ','Market Based','','','',' ',' ','','','ep');
41
+ INSERT INTO "contracts" VALUES('C74','The Electric Company','Utility C','594739573','n','FERC Electric Tariff Original Volume No. 10','25','6/8/2001','7/6/2001','','','Evergreen','N/A','N/A','N/A','N/A','MB','ENERGY',0,'',' ',' ',' ','Market Based','','','',' ',' ','','','ep');
42
+ INSERT INTO "contracts" VALUES('C75','The Electric Company','The Power Company','456543333','N','FERC Electric Tariff Third Revised Volume No. 7','94','2/13/2001','7/1/2001','12/31/2006','','None','F','LT','M','P','T','ENERGY',2000,'KWh','.1475',' ',' ','Max amount of capacity and energy to be transmitted. Bill based on monthly max delivery to City.','$/KWh','PJM','Point A','PJM','Point B','','','ep');
43
+ INSERT INTO "contracts" VALUES('C75','The Electric Company','The Power Company','456543333','N','FERC Electric Tariff Third Revised Volume No. 7','94','2/13/2001','7/1/2001','12/31/2006','','None','F','LT','M','P','T','point-to-point agreement',2000,'KW',0.01,' ',' ','','$/kw-mo','PJM','Point A','PJM','Point B','','','ep');
44
+ INSERT INTO "contracts" VALUES('C75','The Electric Company','The Power Company','456543333','N','FERC Electric Tariff Third Revised Volume No. 7','94','2/13/2001','7/1/2001','12/31/2006','','None','F','LT','M','P','T','network',2000,'KW',0.2,' ',' ','','$/kw-mo','PJM','Point A','PJM','Point B','','','ep');
45
+ INSERT INTO "contracts" VALUES('C75','The Electric Company','The Power Company','456543333','N','FERC Electric Tariff Third Revised Volume No. 7','94','2/13/2001','7/1/2001','12/31/2006','','None','F','LT','M','P','T','BLACK START SERVICE',2000,'KW',0.22,' ',' ','','$/kw-mo','PJM','Point A','PJM','Point B','','','ep');
46
+ INSERT INTO "contracts" VALUES('C75','The Electric Company','The Power Company','456543333','N','FERC Electric Tariff Third Revised Volume No. 7','94','2/13/2001','7/1/2001','12/31/2006','','None','F','LT','M','P','T','CAPACITY',2000,'KW',0.04,' ',' ','','$/kw-mo','PJM','Point A','PJM','Point B','','','ep');
47
+ INSERT INTO "contracts" VALUES('C75','The Electric Company','The Power Company','456543333','N','FERC Electric Tariff Third Revised Volume No. 7','94','2/13/2001','7/1/2001','12/31/2006','','None','F','LT','M','P','T','regulation & frequency response',2000,'KW',0.1,' ',' ','','$/kw-mo','PJM','Point A','PJM','Point B','','','ep');
48
+ INSERT INTO "contracts" VALUES('C75','The Electric Company','The Power Company','456543333','N','FERC Electric Tariff Third Revised Volume No. 7','94','2/13/2001','7/1/2001','12/31/2006','','None','F','LT','M','P','T','real power transmission loss',2000,'KW',7.0,' ',' ','','$/kw-mo','PJM','Point A','PJM','Point B','','','ep');
49
+ INSERT INTO "contracts" VALUES('C76','The Electric Company','The Power Company','456534333','N','FERC Electric Tariff Original Volume No. 10','132','12/15/2001','1/1/2002','12/31/2004','12/31/2004','None','F','LT','M','FP','MB','CAPACITY',70,'MW',3750.0,' ',' ','70MW for each and every hour over the term of the agreement (7x24 schedule).','$/MW','','','','','','','ep');
50
+ INSERT INTO "contracts" VALUES('C78','The Electric Company','The Electric Marketing Co., LLC','23456789','Y','FERC Electric Tariff Original Volume No. 2','Service Agreement 1','1/2/1992','1/2/1992','1/1/2012','','Renewable annually by mutual agreement after termination date.','UP','LT','Y','FP','CB','ENERGY',0,'MWH',35.0,' ',' ','','$/MWH','','','PJM','Bus 4321',20020101,20030101,'EP');
51
+ INSERT INTO "contracts" VALUES('C78','The Electric Company','The Electric Marketing Co., LLC','23456789','Y','FERC Electric Tariff Original Volume No. 2','Service Agreement 1','1/2/1992','1/2/1992','1/1/2012','','Renewable annually by mutual agreement after termination date.','UP','LT','Y','FP','CB','ENERGY',0,'MWH',37.0,' ',' ','','$/MWH','','','PJM','Bus 4321',20030101,20040101,'EP');
52
+ INSERT INTO "contracts" VALUES('C78','The Electric Company','The Electric Marketing Co., LLC','23456789','Y','FERC Electric Tariff Original Volume No. 2','Service Agreement 1','1/2/1992','1/2/1992','1/1/2012','','Renewable annually by mutual agreement after termination date.','UP','LT','Y','FP','CB','ENERGY',0,'MWH',39.0,' ',' ','','$/MWH','','','PJM','Bus 4321',20040101,20050101,'EP');
53
+ INSERT INTO "contracts" VALUES('C78','The Electric Company','The Electric Marketing Co., LLC','23456789','Y','FERC Electric Tariff Original Volume No. 2','Service Agreement 1','1/2/1992','1/2/1992','1/1/2012','','Renewable annually by mutual agreement after termination date.','UP','LT','Y','FP','CB','ENERGY',0,'MWH',41.0,' ',' ','','$/MWH','','','PJM','Bus 4321',20050101,20060101,'EP');
54
+ INSERT INTO "contracts" VALUES('C78','The Electric Company','The Electric Marketing Co., LLC','23456789','Y','FERC Electric Tariff Original Volume No. 2','Service Agreement 1','1/2/1992','1/2/1992','1/1/2012','','Renewable annually by mutual agreement after termination date.','UP','LT','Y','FP','CB','ENERGY',0,'MWH',43.0,' ',' ','','$/MWH','','','PJM','Bus 4321',20060101,20070101,'EP');
55
+ INSERT INTO "contracts" VALUES('C78','The Electric Company','The Electric Marketing Co., LLC','23456789','Y','FERC Electric Tariff Original Volume No. 2','Service Agreement 1','1/2/1992','1/2/1992','1/1/2012','','Renewable annually by mutual agreement after termination date.','UP','LT','Y','FP','CB','ENERGY',0,'MWH',45.0,' ',' ','','$/MWH','','','PJM','Bus 4321',20070101,20080101,'EP');
56
+ INSERT INTO "contracts" VALUES('C78','The Electric Company','The Electric Marketing Co., LLC','23456789','Y','FERC Electric Tariff Original Volume No. 2','Service Agreement 1','1/2/1992','1/2/1992','1/1/2012','','Renewable annually by mutual agreement after termination date.','UP','LT','Y','FP','CB','ENERGY',0,'MWH',47.0,' ',' ','','$/MWH','','','PJM','Bus 4321',20080101,20090101,'EP');
57
+ INSERT INTO "contracts" VALUES('C78','The Electric Company','The Electric Marketing Co., LLC','23456789','Y','FERC Electric Tariff Original Volume No. 2','Service Agreement 1','1/2/1992','1/2/1992','1/1/2012','','Renewable annually by mutual agreement after termination date.','UP','LT','Y','FP','CB','ENERGY',0,'MWH',49.0,' ',' ','','$/MWH','','','PJM','Bus 4321',20090101,20100101,'EP');
58
+ INSERT INTO "contracts" VALUES('C78','The Electric Company','The Electric Marketing Co., LLC','23456789','Y','FERC Electric Tariff Original Volume No. 2','Service Agreement 1','1/2/1992','1/2/1992','1/1/2012','','Renewable annually by mutual agreement after termination date.','UP','LT','Y','FP','CB','ENERGY',0,'MWH',51.0,' ',' ','','$/MWH','','','PJM','Bus 4321',20100101,20110101,'EP');
59
+ INSERT INTO "contracts" VALUES('C78','The Electric Company','The Electric Marketing Co., LLC','23456789','Y','FERC Electric Tariff Original Volume No. 2','Service Agreement 1','1/2/1992','1/2/1992','1/1/2012','','Renewable annually by mutual agreement after termination date.','UP','LT','Y','FP','CB','ENERGY',0,'MWH',53.0,' ',' ','','$/MWH','','','PJM','Bus 4321',20110101,20120101,'EP');
60
+ CREATE TABLE transactions (
61
+ transaction_unique_identifier varchar(50),
62
+ seller_company_name varchar(50),
63
+ customer_company_name varchar(50),
64
+ customer_duns_number integer,
65
+ tariff_reference varchar(50),
66
+ contract_service_agreement varchar(50),
67
+ trans_id varchar(50),
68
+ transaction_begin_date date,
69
+ transaction_end_date date,
70
+ time_zone varchar(50),
71
+ point_of_delivery_control_area varchar(50),
72
+ specific location varchar(50),
73
+ class_name varchar(50),
74
+ term_name varchar(50),
75
+ increment_name varchar(50),
76
+ increment_peaking_name varchar(50),
77
+ product_name varchar(50),
78
+ transaction_quantity integer,
79
+ price varchar(50),
80
+ units varchar(50),
81
+ total_transmission_charge varchar(50),
82
+ transaction_charge varchar(50)
83
+ );
84
+ INSERT INTO "transactions" VALUES('T1','The Electric Company','The Electric Marketing Co.~ LLC',23456789,'FERC Electric Tariff Original Volume No. 2','Service Agreement 1','8700',200401010000,200403312359,'ES','PJM','BUS 4321','UP','LT','Y','FP','ENERGY',22574,'39','$/MWH','0','880386');
85
+ INSERT INTO "transactions" VALUES('T2','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','2','8701',200401010000,200402010000,'CS','DPL','Green Sub Busbar','F','ST','M','FP','ENERGY',16800,'32','$/MWH','0','537600');
86
+ INSERT INTO "transactions" VALUES('T3','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','2','8702',200402010000,200403010000,'CS','DPL','Green Sub Busbar','F','ST','M','FP','ENERGY',16800,'32','$/MWH','0','537600');
87
+ INSERT INTO "transactions" VALUES('T4','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','2','8703',200403010000,200404010000,'CS','DPL','Green Sub Busbar','F','ST','M','FP','ENERGY',16800,'32','$/MWH','0','537600');
88
+ INSERT INTO "transactions" VALUES('T5','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','2','8704',200401111600,200401121559,'CS','AEP','Tile Busbar','F','ST','D','FP','ENERGY',1200,'50','$/MWH','0','60000');
89
+ INSERT INTO "transactions" VALUES('T6','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','2','8801',200402011300,20040215061900,'ES','HUB','Entergy (into)','NF','ST','H','FP','ENERGY',1875,'13.75','$/MWH','6675','32456.25');
90
+ INSERT INTO "transactions" VALUES('T7','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','2','8802',20040202110000,200402021800,'ES','HUB','PJM-W','NF','ST','H','FP','BOOKED OUT POWER',350,'32','$/MWH','0','11200');
91
+ INSERT INTO "transactions" VALUES('T8','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','2','8803',20040203060500,20040210112200,'ES','HUB','PJM-W','NF','ST','H','FP','ENERGY',1875,'44','$/MWH','0','82500');
92
+ INSERT INTO "transactions" VALUES('T9','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','2','8804',20040211062300,20040219081200,'PP','HUB','Four Corners','NF','ST','H','FP','ENERGY',1875,'48','$/MWH','0','90000');
93
+ INSERT INTO "transactions" VALUES('T10','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','132','7125',20040109081100,20040309082300,'CS','HUB','AEP (into)','F','ST','H','OP','ENERGY',150,'22','$/MWH','4264','7564');
94
+ INSERT INTO "transactions" VALUES('T10','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','132','7125',20040201010000,20040225080800,'CS','HUB','AEP (into)','F','ST','H','OP','ENERGY',150,'28','$/MWH','0','4200');
95
+ INSERT INTO "transactions" VALUES('T10','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','132','7125',20040108111100,20040301121200,'CS','HUB','AEP (into)','F','ST','H','OP','ENERGY',150,'44','$/MWH','0','6600');
96
+ INSERT INTO "transactions" VALUES('T10','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','132','7125',20040322112200,20040325120000,'CS','HUB','AEP (into)','F','ST','H','OP','ENERGY',150,'44','$/MWH','0','6600');
97
+ INSERT INTO "transactions" VALUES('T10','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','132','7125',20040323191900,20040328191700,'CS','HUB','AEP (into)','F','ST','H','OP','ENERGY',150,'58','$/MWH','0','8700');
98
+ INSERT INTO "transactions" VALUES('T10','The Electric Company','The Power Company',45653333,'FERC Electric Tariff Original Volume No. 10','132','7125',20040111010000,20040122022200,'CS','HUB','AEP (into)','F','ST','H','OP','CAPACITY',150,'20','$/MW-DAY','0','3000');
99
+ INSERT INTO "transactions" VALUES('T11','The Electric Company','Utility A',38495837,'FERC Electric Tariff Original Volume No. 10','15','8711',200403150800,200403150859,'ES','ISNE','NEPOOL Mass HUB','F','ST','H','P','Energy',100,'50','$/MWH','0','5000');
100
+ INSERT INTO "transactions" VALUES('T11','The Electric Company','Utility A',38495837,'FERC Electric Tariff Original Volume No. 10','15','8711',200403150800,200403150859,'ES','ISNE','NEPOOL Mass HUB','F','ST','H','P','Energy',-10,'60','$/MWH','0','-600');
101
+ INSERT INTO "transactions" VALUES('T12','The Electric Company','Utility A',38495837,'FERC Electric Tariff Original Volume No. 10','15','8711',200403150900,200403150959,'ES','ISNE','NEPOOL Mass HUB','F','ST','H','P','Energy',100,'55','$/MWH','0','5500');
102
+ INSERT INTO "transactions" VALUES('T12','The Electric Company','Utility A',38495837,'FERC Electric Tariff Original Volume No. 10','15','8711',200403150900,200403150959,'ES','ISNE','NEPOOL Mass HUB','F','ST','H','P','Energy',-5,'59','$/MWH','0','-295');
103
+ INSERT INTO "transactions" VALUES('T13','The Electric Company','Utility A',38495837,'FERC Electric Tariff Original Volume No. 10','15','8711',200403151000,200403151059,'ES','ISNE','NEPOOL Mass HUB','F','ST','H','P','Energy',100,'62','$/MWH','0','6200');
104
+ INSERT INTO "transactions" VALUES('T13','The Electric Company','Utility A',38495837,'FERC Electric Tariff Original Volume No. 10','15','8711',200403151000,200403151059,'ES','ISNE','NEPOOL Mass HUB','F','ST','H','P','Energy',-10,'60','$/MWH','0','-600');
105
+ INSERT INTO "transactions" VALUES('T14','The Electric Company','Utility A',38495837,'FERC Electric Tariff Original Volume No. 10','15','8711',200403151100,200403151159,'ES','ISNE','NEPOOL Mass HUB','F','ST','H','P','Energy',100,'62','$/MWH','0','6200');
106
+ INSERT INTO "transactions" VALUES('T14','The Electric Company','Utility A',38495837,'FERC Electric Tariff Original Volume No. 10','15','8711',200403151100,200403151159,'ES','ISNE','NEPOOL Mass HUB','F','ST','H','P','Energy',-10,'59','$/MWH','0','-590');
107
+ INSERT INTO "transactions" VALUES('T15','The Electric Company','Utility B',493758794,'FERC Electric Tariff Original Volume No. 10','7','8712',200402140200,200402140259,'EP','NYIS','Zone A','F','ST','H','FP','Booked out power',60,'30','$/MWH','0','1800');
108
+ CREATE TABLE employees (
109
+ first varchar(50), last varchar(50), title varchar(50), dept varchar(50), div_name varchar(50), supervisor varchar(50)
110
+ );
111
+ INSERT INTO "employees" VALUES('Adelizio ','John ','Police Captain ','Police ','Police ','John Rappaport');
112
+ INSERT INTO "employees" VALUES('Adrianzen ','Richard ','Police Officer ','Police ','Police ','John Rappaport');
113
+ INSERT INTO "employees" VALUES('Alford ','Dawan ','Laborer ','Public Works ','Street ','Jewel V. ');
114
+ INSERT INTO "employees" VALUES('Alleyne ','Khalfani ','Field Representive ','Planning ','Inspection & ','Valerie ');
115
+ INSERT INTO "employees" VALUES('Almendinger ','Micah ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
116
+ INSERT INTO "employees" VALUES('Alston, Jr. ','Joseph ','Police Officer ','Police ','Police ','John Rappaport');
117
+ INSERT INTO "employees" VALUES('Anderson ','Jerome ','Police Officer ','Police ','Police ','John Rappaport');
118
+ INSERT INTO "employees" VALUES('Anderson ','Harold ','Police Officer ','Police ','Police ','John Rappaport');
119
+ INSERT INTO "employees" VALUES('Anderson ','James ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
120
+ INSERT INTO "employees" VALUES('Andrews ','Mark ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
121
+ INSERT INTO "employees" VALUES('Antonucci ','Anthony ','Deputy Fire Chief ','Fire ','Fire ','Martin DeMarzo');
122
+ INSERT INTO "employees" VALUES('Antonucci ','Joseph ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
123
+ INSERT INTO "employees" VALUES('Antonucci ','Genaro ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
124
+ INSERT INTO "employees" VALUES('Antonucci ','Michael ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
125
+ INSERT INTO "employees" VALUES('Apito, Jr. ','Peter ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
126
+ INSERT INTO "employees" VALUES('Askew ','Linda ','Asst. Assessor ','Finance ','Assessor ','Jack Kelly ');
127
+ INSERT INTO "employees" VALUES('Athill ','Hava ','Senior Police ','Police ','Police ','John Rappaport');
128
+ INSERT INTO "employees" VALUES('Ayoso ','Carlos ','Laborer ','Public Works ','Street ','Jewel V. ');
129
+ INSERT INTO "employees" VALUES('Bailey ','Shirley ','Clerk Typist ','Finance ','Tax Collector ','Jack Kelly ');
130
+ INSERT INTO "employees" VALUES('Baker ','Sabriya ','Police Officer ','Police ','Police ','John Rappaport');
131
+ INSERT INTO "employees" VALUES('Ball ','Wendell ','Recreation Leader ','Comm. Serv. ','Recreation ','Joseph Fonzino');
132
+ INSERT INTO "employees" VALUES('Banks ','Denise ','Police Officer ','Police ','Police ','John Rappaport');
133
+ INSERT INTO "employees" VALUES('Baptist ','Wilbur ','Police Sergeant ','Police ','Police ','John Rappaport');
134
+ INSERT INTO "employees" VALUES('Barbosa ','Jean ','Police Officer ','Police ','Police ','John Rappaport');
135
+ INSERT INTO "employees" VALUES('Barkley ','Peter ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
136
+ INSERT INTO "employees" VALUES('Barlow ','Anna ','Director Community ','Comm. Serv. ','Recreation ','Joseph Fonzino');
137
+ INSERT INTO "employees" VALUES('Barnes ','Dolores ','Deputy Municipal ','Court ','Court ','Eric ');
138
+ INSERT INTO "employees" VALUES('Barnett ','Craig ','Police Officer ','Police ','Police ','John Rappaport');
139
+ INSERT INTO "employees" VALUES('Barsanti ','Leo ','Police Officer ','Police ','Police ','John Rappaport');
140
+ INSERT INTO "employees" VALUES('Bell ','Cleophas ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
141
+ INSERT INTO "employees" VALUES('Bellrose, Jr. ','George ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
142
+ INSERT INTO "employees" VALUES('Blair ','William ','Communications ','Police ','Police ','John Rappaport');
143
+ INSERT INTO "employees" VALUES('Blanding ','Gene ','Laborer ','Public Works ','Street ','Jewel V. ');
144
+ INSERT INTO "employees" VALUES('Boggier ','William ','Police Lieutenant ','Police ','Police ','John Rappaport');
145
+ INSERT INTO "employees" VALUES('Bomar ','Natea ','Police Officer ','Police ','Police ','John Rappaport');
146
+ INSERT INTO "employees" VALUES('Booker ','Tyrrik ','Police Officer ','Police ','Police ','John Rappaport');
147
+ INSERT INTO "employees" VALUES('Braker ','Marvin ','Municipal Attorney ','Law ','Law ','Jewel V. ');
148
+ INSERT INTO "employees" VALUES('Brijpaul ','Devanand ','Senior Building ','Public Works ','Street ','Jewel V. ');
149
+ INSERT INTO "employees" VALUES('Brooks ','Nkomo ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
150
+ INSERT INTO "employees" VALUES('Brown ','Joan ','Graduate Nurse, ','Comm. Serv. ','Health ','Joseph Fonzino');
151
+ INSERT INTO "employees" VALUES('Brown ','Derrick ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
152
+ INSERT INTO "employees" VALUES('Brown ','Wendy ','Senior Planning Aide','Planning ','Housing ','Valerie ');
153
+ INSERT INTO "employees" VALUES('Brown ','Wendy ','Relocation Officer ','Planning ','Housing ','Valerie ');
154
+ INSERT INTO "employees" VALUES('Brown ','Tangela ','Police Officer ','Police ','Police ','John Rappaport');
155
+ INSERT INTO "employees" VALUES('Brown-Smith ','Renee ','Police Officer ','Police ','Police ','John Rappaport');
156
+ INSERT INTO "employees" VALUES('Burke ','Joseph ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
157
+ INSERT INTO "employees" VALUES('Burns ','Rosa ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
158
+ INSERT INTO "employees" VALUES('Butler ','Darryl ','Police Sergeant ','Police ','Police ','John Rappaport');
159
+ INSERT INTO "employees" VALUES('Cajiga ','Pablo ','Police Officer ','Police ','Police ','John Rappaport');
160
+ INSERT INTO "employees" VALUES('Campbell ','Janice ','Public Health Nurse ','Comm. Serv. ','Health ','Joseph Fonzino');
161
+ INSERT INTO "employees" VALUES('Carter ','Jashan ','Police Officer ','Police ','Police ','John Rappaport');
162
+ INSERT INTO "employees" VALUES('Caruso ','Brigida ','Tax Assessor ','Finance ','Assessor ','Jack Kelly ');
163
+ INSERT INTO "employees" VALUES('Cassidy ','Peter ','Police Officer ','Police ','Police ','John Rappaport');
164
+ INSERT INTO "employees" VALUES('Catalano ','Ann Marie ','Administrative ','Law ','Law ','Marvin T. ');
165
+ INSERT INTO "employees" VALUES('Catalano ','Ann Marie ','Secretary to the ','Law ','Law ','Marvin T. ');
166
+ INSERT INTO "employees" VALUES('Cesario ','Beatrice ','Legal Secretary ','Law ','Law ','Marvin T. ');
167
+ INSERT INTO "employees" VALUES('Chechele, Jr. ','James ','Police Sergeant ','Police ','Police ','John Rappaport');
168
+ INSERT INTO "employees" VALUES('Cherry ','Robert ','Police Officer ','Police ','Police ','John Rappaport');
169
+ INSERT INTO "employees" VALUES('Childress, Jr. ','Louis ','Assistant Muncipal ','Law ','Law ','Marvin T. ');
170
+ INSERT INTO "employees" VALUES('Ciavatta ','Gerald ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
171
+ INSERT INTO "employees" VALUES('Ciavatta, III ','Anthony ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
172
+ INSERT INTO "employees" VALUES('Cirelli ','Pompeo ','Principal Accountant','Finance ','Finance & ','Jack Kelly ');
173
+ INSERT INTO "employees" VALUES('Clark ','Christopher','Truck Driver ','Public Works ','Street ','Jewel V. ');
174
+ INSERT INTO "employees" VALUES('Cobbertt ','Terrence ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
175
+ INSERT INTO "employees" VALUES('Coley ','Willie ','Police Officer ','Police ','Police ','John Rappaport');
176
+ INSERT INTO "employees" VALUES('Coley ','Kerry ','Police Sergeant ','Police ','Police ','John Rappaport');
177
+ INSERT INTO "employees" VALUES('Coley ','Alisha ','Clerk ','Police ','Police ','John Rappaport');
178
+ INSERT INTO "employees" VALUES('Cooper ','Tahirah ','Chief of Staff ','Mayor''s Office','Mayor''s Office ','Eldridge ');
179
+ INSERT INTO "employees" VALUES('Cooper ','Tahirah ','Affirmative Action ','Mayor''s Office','Mayor''s Office ','Eldridge ');
180
+ INSERT INTO "employees" VALUES('Corbitt ','Elroy ','Council Member ','City Council ','City Council ','Council ');
181
+ INSERT INTO "employees" VALUES('Corvino ','James ','Public Works ','Public Works ','Street ','Jewel V. ');
182
+ INSERT INTO "employees" VALUES('Cosey ','Stephanie ','Secretarial Asst. ','Comm. Serv. ','Health ','Joseph Fonzino');
183
+ INSERT INTO "employees" VALUES('Cox ','Jason ','Equipment Operator ','Public Works ','Street ','Jewel V. ');
184
+ INSERT INTO "employees" VALUES('Craig ','Michael ','Police Sergeant ','Police ','Police ','John Rappaport');
185
+ INSERT INTO "employees" VALUES('Cronin ','Patricia ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
186
+ INSERT INTO "employees" VALUES('Crumpton ','Steven ','Police Officer ','Police ','Police ','John Rappaport');
187
+ INSERT INTO "employees" VALUES('Dacey ','William ','Police Aide ','Police ','Police ','John Rappaport');
188
+ INSERT INTO "employees" VALUES('Dangler ','Robert ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
189
+ INSERT INTO "employees" VALUES('Dankins ','Todd ','Police Sergeant ','Police ','Police ','John Rappaport');
190
+ INSERT INTO "employees" VALUES('Darby ','Gloria ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
191
+ INSERT INTO "employees" VALUES('Davis ','Nathaniel ','Legislative Research','City Council ','City Council ','Council ');
192
+ INSERT INTO "employees" VALUES('Davis ','Teresa ','Senior Clerk Typist ','Court ','Court ','Eric ');
193
+ INSERT INTO "employees" VALUES('Davis ','Erik ','Police Officer ','Police ','Police ','John Rappaport');
194
+ INSERT INTO "employees" VALUES('DeAngelis, Jr. ','Frank ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
195
+ INSERT INTO "employees" VALUES('DeBerry ','Troy ','Police Officer ','Police ','Police ','John Rappaport');
196
+ INSERT INTO "employees" VALUES('DeFilippo ','Vincent ','Asst. Health Officer','Comm. Serv. ','Health ','Joseph Fonzino');
197
+ INSERT INTO "employees" VALUES('Delpeche, Sr. ','Yves ','Supervisor, Parks ','Public Works ','Parks ','Jewel V. ');
198
+ INSERT INTO "employees" VALUES('DelVirginia, ','Anthony ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
199
+ INSERT INTO "employees" VALUES('III ',' ',' ',' ',' ',' ');
200
+ INSERT INTO "employees" VALUES('DeMarzo ','Martin ','Fire Chief ','Fire ','Fire ','Eldridge ');
201
+ INSERT INTO "employees" VALUES('DeMarzo ','Benjamin ','Deputy Fire Chief ','Fire ','Fire ','Martin DeMarzo');
202
+ INSERT INTO "employees" VALUES('DeSantis ','Rocco ','Police Officer ','Police ','Police ','John Rappaport');
203
+ INSERT INTO "employees" VALUES('DeVincentis ','Guy ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
204
+ INSERT INTO "employees" VALUES('Dhanwa ','Tulchand ','Truck Driver ','Public Works ','Street ','Jewel V. ');
205
+ INSERT INTO "employees" VALUES('Dickens ','Lia ','Police Officer ','Police ','Police ','John Rappaport');
206
+ INSERT INTO "employees" VALUES('DiFabrizio ','Bianca ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
207
+ INSERT INTO "employees" VALUES('Dillon, Sr. ','Gregory ','Chief Field ','Planning ','Inspection & ','Valerie ');
208
+ INSERT INTO "employees" VALUES('Dimery ','Todd ','Assistant Violations','Court ','Court ','Eric ');
209
+ INSERT INTO "employees" VALUES('Dowd ','Michael ','Deputy Fire Chief ','Fire ','Fire ','Martin DeMarzo');
210
+ INSERT INTO "employees" VALUES('Dunn ','Christopher','Police Lieutenant ','Police ','Police ','John Rappaport');
211
+ INSERT INTO "employees" VALUES('Durante ','Angelo ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
212
+ INSERT INTO "employees" VALUES('Eaddy ','Charles ','Police Officer ','Police ','Police ','John Rappaport');
213
+ INSERT INTO "employees" VALUES('Eason ','Tency ','Council Member ','City Council ','City Council ','Council ');
214
+ INSERT INTO "employees" VALUES('Eason, Jr. ','Isaac ','Police Sergeant ','Police ','Police ','John Rappaport');
215
+ INSERT INTO "employees" VALUES('Eddy ','Kristen ','Intern ','Planning ','Planning ','Valerie ');
216
+ INSERT INTO "employees" VALUES('Edmonds ','Toneka ','Police Officer ','Police ','Police ','John Rappaport');
217
+ INSERT INTO "employees" VALUES('Fanfan ','David ','Police Officer ','Police ','Police ','John Rappaport');
218
+ INSERT INTO "employees" VALUES('Fernandez ','Antonia ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
219
+ INSERT INTO "employees" VALUES('Fernandez ','Alfredo ','Laborer ','Public Works ','Parks ','Jewel V. ');
220
+ INSERT INTO "employees" VALUES('Fiore ','Philip ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
221
+ INSERT INTO "employees" VALUES('Fonzino ','Joseph ','Director of Comm. ','Comm. Serv. ','Health ','Jewel V. ');
222
+ INSERT INTO "employees" VALUES('Fonzino ','James ','Deputy Fire Chief ','Fire ','Fire ','Martin DeMarzo');
223
+ INSERT INTO "employees" VALUES('Fonzino ','James ','Fire Prevention ','Fire ','Fire ','Martin DeMarzo');
224
+ INSERT INTO "employees" VALUES('Fonzino ','Joseph ','Health Officer ','Comm. Serv. ','Health ','Jewel V. ');
225
+ INSERT INTO "employees" VALUES('Fraser ','Dwayne ','Laborer ','Public Works ','Street ','Jewel V. ');
226
+ INSERT INTO "employees" VALUES('Fuller ','Cheryl ','Qualified Purchasing','Administration','Administrative ','Jewel V. ');
227
+ INSERT INTO "employees" VALUES('Gamba ','Ralph ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
228
+ INSERT INTO "employees" VALUES('Gamba ','Dean ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
229
+ INSERT INTO "employees" VALUES('Gamba ','Michael ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
230
+ INSERT INTO "employees" VALUES('Gamba ','Karl ','Laborer ','Public Works ','Street ','Jewel V. ');
231
+ INSERT INTO "employees" VALUES('Garey ','Christopher','Police Officer ','Police ','Police ','John Rappaport');
232
+ INSERT INTO "employees" VALUES('Gay ','Nina ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
233
+ INSERT INTO "employees" VALUES('Gernert ','Kenneth ','Police Lieutenant ','Police ','Police ','John Rappaport');
234
+ INSERT INTO "employees" VALUES('Gilles ','Kettly ','Social Worker ','Comm. Serv. ','Older Adult ','Joseph Fonzino');
235
+ INSERT INTO "employees" VALUES('Giordano ','Rodolfo ','Animal Control ','Comm. Serv. ','Health ','Joseph Fonzino');
236
+ INSERT INTO "employees" VALUES('Giorgio ','Maria ','Principal Clerk ','Planning ','Inspection & ','Valerie ');
237
+ INSERT INTO "employees" VALUES('Glomb ','Gary ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
238
+ INSERT INTO "employees" VALUES('Godfrey ','Campanella ','Recreation Leader ','Comm. Serv. ','Cultural ','Joseph Fonzino');
239
+ INSERT INTO "employees" VALUES('Godfrey ','Campanella ','Cable TV Coordinator','Comm. Serv. ','Cultural ','Joseph Fonzino');
240
+ INSERT INTO "employees" VALUES('Gonzalez ','Joseph ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
241
+ INSERT INTO "employees" VALUES('Grayer ','Philip ','Community Relations ','Comm. Serv. ','Older Adult ','Joseph Fonzino');
242
+ INSERT INTO "employees" VALUES('Greenfield ','Ryan ','Police Officer ','Police ','Police ','John Rappaport');
243
+ INSERT INTO "employees" VALUES('Grundy ','Tyrone ','Police Officer ','Police ','Police ','John Rappaport');
244
+ INSERT INTO "employees" VALUES('Grundy ','Travis ','Police Sergeant ','Police ','Police ','John Rappaport');
245
+ INSERT INTO "employees" VALUES('Guerriero ','Josephine ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
246
+ INSERT INTO "employees" VALUES('Gumbars ','William ','Police Sergeant ','Police ','Police ','John Rappaport');
247
+ INSERT INTO "employees" VALUES('Gyetvay-Lang ','Karen ','Administrative ','Finance ','Finance & ','Jack Kelly ');
248
+ INSERT INTO "employees" VALUES('Hamm ','Raymond ','Police Sergeant ','Police ','Police ','John Rappaport');
249
+ INSERT INTO "employees" VALUES('Hannah ','Adonis ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
250
+ INSERT INTO "employees" VALUES('Harkeem ','Jacqueline ','Police Records Clerk','Police ','Police ','John Rappaport');
251
+ INSERT INTO "employees" VALUES('Harper ','Tarnisha ','Court Aide ','Court ','Court ','Eric ');
252
+ INSERT INTO "employees" VALUES('Harper ','Pauline ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
253
+ INSERT INTO "employees" VALUES('Harris ','James ','Police Officer ','Police ','Police ','John Rappaport');
254
+ INSERT INTO "employees" VALUES('Harris, Sr. ','Shawn ','Police Sergeant ','Police ','Police ','John Rappaport');
255
+ INSERT INTO "employees" VALUES('Harrison ','Aubrey ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
256
+ INSERT INTO "employees" VALUES('Hasan ','Abdul ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
257
+ INSERT INTO "employees" VALUES('Hathaway ','William ','Laborer ','Public Works ','Parks ','Jewel V. ');
258
+ INSERT INTO "employees" VALUES('Hawkins, Jr. ','Eldridge ','Emergency Management','Fire ','Fire ','Martin DeMarzo');
259
+ INSERT INTO "employees" VALUES('Hawkins, Jr. ','Eldridge ','Fire Director ','Fire ','Fire ','n/a ');
260
+ INSERT INTO "employees" VALUES('Hawkins, Jr. ','Eldridge ','Mayor ','Mayor''s Office','Mayor''s Office ','Eldridge ');
261
+ INSERT INTO "employees" VALUES('Hector ','Edward ','Deputy Fire Chief ','Fire ','Fire ','Martin DeMarzo');
262
+ INSERT INTO "employees" VALUES('Hendrickson ','Shirley ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
263
+ INSERT INTO "employees" VALUES('Herder ','Thomas ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
264
+ INSERT INTO "employees" VALUES('Hester ','Gaynell ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
265
+ INSERT INTO "employees" VALUES('Hill ','Betty ','Police Officer ','Police ','Police ','John Rappaport');
266
+ INSERT INTO "employees" VALUES('Hillmann ','Robert ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
267
+ INSERT INTO "employees" VALUES('Hines ','Miriam ','Communications ','Police ','Police ','John Rappaport');
268
+ INSERT INTO "employees" VALUES('Hodge ','Cyril ','Public Defender ','Administration','Business ','Jewel V. ');
269
+ INSERT INTO "employees" VALUES('Hodges ','Deborah ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
270
+ INSERT INTO "employees" VALUES('Hogarty ','Daniel ','Administrative ','Court ','Court ','Pennington ');
271
+ INSERT INTO "employees" VALUES('Holcomb ','Darrell ','Deputy Municipal ','Comm. Serv. ','Comm. Services ','Joseph Fonzino');
272
+ INSERT INTO "employees" VALUES('Holmes ','Frank ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
273
+ INSERT INTO "employees" VALUES('Holmes ','George ','Police Officer ','Police ','Police ','John Rappaport');
274
+ INSERT INTO "employees" VALUES('Holmes ','Anthony ','Police Officer ','Police ','Police ','John Rappaport');
275
+ INSERT INTO "employees" VALUES('Homere ','Margarette ','Clerk ','City Clerk ','City Clerk ','Dwight ');
276
+ INSERT INTO "employees" VALUES('Howard ','Kristie ','Assistant City ','Law ','Law ','Marvin T. ');
277
+ INSERT INTO "employees" VALUES('Hunter ','Edward ','Police Officer ','Police ','Police ','John Rappaport');
278
+ INSERT INTO "employees" VALUES('Hunter, Sr. ','Fidel ','Police Officer ','Police ','Police ','John Rappaport');
279
+ INSERT INTO "employees" VALUES('Hutchinson ','Deborah ','Police Records Clerk','Police ','Police ','John Rappaport');
280
+ INSERT INTO "employees" VALUES('Ikner ','Evon ','Clerk Typist ','Fire ','Fire ','Martin DeMarzo');
281
+ INSERT INTO "employees" VALUES('Imbert ','Walter ','Police Officer ','Police ','Police ','John Rappaport');
282
+ INSERT INTO "employees" VALUES('Jackson ','Valerie ','Director of Planning','Planning ','Planning ','Valerie ');
283
+ INSERT INTO "employees" VALUES('Jackson ','Valerie ','UEZ Coordinator ','Planning ','Planning ','Valerie ');
284
+ INSERT INTO "employees" VALUES('Jackson ','Keith ','Police Sergeant ','Police ','Police ','John Rappaport');
285
+ INSERT INTO "employees" VALUES('Jackson ','Elizabeth ','Senior Criminal ','Police ','Police ','John Rappaport');
286
+ INSERT INTO "employees" VALUES('Jackson ','Michele ','Police Officer ','Police ','Police ','John Rappaport');
287
+ INSERT INTO "employees" VALUES('Jacob ','Joegy ','Police Officer ','Police ','Police ','John Rappaport');
288
+ INSERT INTO "employees" VALUES('Jenkins, Jr. ','Albert ','Police Officer ','Police ','Police ','John Rappaport');
289
+ INSERT INTO "employees" VALUES('Johnson ','Eric ','Laborer ','Public Works ','Street ','Jewel V. ');
290
+ INSERT INTO "employees" VALUES('Johnson, Jr. ','Gregory ','Police Officer ','Police ','Police ','John Rappaport');
291
+ INSERT INTO "employees" VALUES('Jones ','Alvenia ','Principal Clerk ','Finance ','Finance & ','Jack Kelly ');
292
+ INSERT INTO "employees" VALUES('Joseph ','Equlive ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
293
+ INSERT INTO "employees" VALUES('Juliano ','Joseph ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
294
+ INSERT INTO "employees" VALUES('Juliano ','Michael ','Police Sergeant ','Police ','Police ','John Rappaport');
295
+ INSERT INTO "employees" VALUES('Juliano ','Carmine ','Laborer ','Public Works ','Parks ','Jewel V. ');
296
+ INSERT INTO "employees" VALUES('Kantor ','Edward ','Communications ','Police ','Police ','John Rappaport');
297
+ INSERT INTO "employees" VALUES('Kelly ','John ','CFO/Director of ','Finance ','Finance & ','Jewel V. ');
298
+ INSERT INTO "employees" VALUES('Knight ','TaQuisha ','Senior Acct. Clerk ','Finance ','Finance & ','Jack Kelly ');
299
+ INSERT INTO "employees" VALUES('Knight ','TaQuisha ','Zoning Board ','Planning ','Zoning Board ','Valerie ');
300
+ INSERT INTO "employees" VALUES('Knight ','Nina ','Police Officer ','Police ','Police ','John Rappaport');
301
+ INSERT INTO "employees" VALUES('Kohaut ','Matthew ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
302
+ INSERT INTO "employees" VALUES('Kovach ','April ','Police Officer ','Police ','Police ','John Rappaport');
303
+ INSERT INTO "employees" VALUES('Landosca ','John ','Laborer ','Public Works ','Parks ','Jewel V. ');
304
+ INSERT INTO "employees" VALUES('Lane ','Joseph ','Police Officer ','Police ','Police ','John Rappaport');
305
+ INSERT INTO "employees" VALUES('Larose ','Mathurin ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
306
+ INSERT INTO "employees" VALUES('Larsen ','Mark ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
307
+ INSERT INTO "employees" VALUES('Leblanc ','Cerony ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
308
+ INSERT INTO "employees" VALUES('Lewis ','Rontesia ','Police Officer ','Police ','Police ','John Rappaport');
309
+ INSERT INTO "employees" VALUES('Long ','Gerard ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
310
+ INSERT INTO "employees" VALUES('Lopez ','John ','Police Officer ','Police ','Police ','John Rappaport');
311
+ INSERT INTO "employees" VALUES('Lucerto, Jr. ','Anthony ','Equipment Operator ','Public Works ','Street ','Jewel V. ');
312
+ INSERT INTO "employees" VALUES('Madden ','Dena ','Recreation Aide ','Comm. Serv. ','Recreation ','Joseph Fonzino');
313
+ INSERT INTO "employees" VALUES('Madison ','Marion ','Supvr/Pension Fund ','Finance ','Treasury ','Jack Kelly ');
314
+ INSERT INTO "employees" VALUES('Madison ','Herbert ','Laborer ','Public Works ','Parks ','Jewel V. ');
315
+ INSERT INTO "employees" VALUES('Malia ','Edward ','Police Officer ','Police ','Police ','John Rappaport');
316
+ INSERT INTO "employees" VALUES('Mallard ','Ron ','Police Officer ','Police ','Police ','John Rappaport');
317
+ INSERT INTO "employees" VALUES('Manganelli ','Robert ','Deputy Fire Chief ','Fire ','Fire ','Martin DeMarzo');
318
+ INSERT INTO "employees" VALUES('Marable, Jr. ','Edward ','Council Member ','City Council ','City Council ','Council ');
319
+ INSERT INTO "employees" VALUES('Mariano ','Michael ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
320
+ INSERT INTO "employees" VALUES('Martin ','Joseph ','Police Officer ','Police ','Police ','John Rappaport');
321
+ INSERT INTO "employees" VALUES('Marzano ','Marie ','Clerk/Deputy ','Comm. Serv. ','Adm. ','Joseph Fonzino');
322
+ INSERT INTO "employees" VALUES('Mason ','Sandy ','Commission (Rent ','Planning ','Housing ','Jackson ');
323
+ INSERT INTO "employees" VALUES('May ','Akie ','Laborer ','Public Works ','Parks ','Jewel V. ');
324
+ INSERT INTO "employees" VALUES('Mayfield ','Raymond ','Laborer ','Public Works ','Street ','Jewel V. ');
325
+ INSERT INTO "employees" VALUES('McCauley ','Robert ','Police Lieutenant ','Police ','Police ','John Rappaport');
326
+ INSERT INTO "employees" VALUES('McCree, Jr. ','Rudolph ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
327
+ INSERT INTO "employees" VALUES('McDougal ','Kenneth ','Police Officer ','Police ','Police ','John Rappaport');
328
+ INSERT INTO "employees" VALUES('McGhee ','Connie ','Asst. Municipal ','Law ','Law ','Marvin T. ');
329
+ INSERT INTO "employees" VALUES('McManus ','Michael ','Police Lieutenant ','Police ','Police ','John Rappaport');
330
+ INSERT INTO "employees" VALUES('Meisel ','Donald ','Principal Planner ','Planning ','Planning ','Valerie ');
331
+ INSERT INTO "employees" VALUES('Melville ','Donna ','Court Aide ','Court ','Court ','Eric ');
332
+ INSERT INTO "employees" VALUES('Miller ','Roderic ','Police Officer ','Police ','Police ','John Rappaport');
333
+ INSERT INTO "employees" VALUES('Mincolelli ','Christopher','Police Sergeant ','Police ','Police ','John Rappaport');
334
+ INSERT INTO "employees" VALUES('Minetti ','Frank ','Deputy Fire Chief ','Fire ','Fire ','Martin DeMarzo');
335
+ INSERT INTO "employees" VALUES('Minniti ','Lorraine ','Police Records Clerk','Police ','Police ','John Rappaport');
336
+ INSERT INTO "employees" VALUES('Mitchell ','Dwight ','Municipal Clerk ','City Council ','City Clerk ','Council ');
337
+ INSERT INTO "employees" VALUES('Montalvo ','Sherry ','Municipal Court ','Court ','Court ','Eric ');
338
+ INSERT INTO "employees" VALUES('Mooney ','Brian ','Police Officer ','Police ','Police ','John Rappaport');
339
+ INSERT INTO "employees" VALUES('Moore ','Fayetta ','Police Officer ','Police ','Police ','John Rappaport');
340
+ INSERT INTO "employees" VALUES('Moore ','Bennie ','Police Sergeant ','Police ','Police ','John Rappaport');
341
+ INSERT INTO "employees" VALUES('Moresco ','Jimmy ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
342
+ INSERT INTO "employees" VALUES('Moresco ','Eugene ','Laborer ','Public Works ','Parks ','Jewel V. ');
343
+ INSERT INTO "employees" VALUES('Moresco, Jr. ','Joseph ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
344
+ INSERT INTO "employees" VALUES('Morton ','Rayfield ','Council Member ','City Council ','City Council ','Council ');
345
+ INSERT INTO "employees" VALUES('Mozell ','Ronald ','Laborer ','Public Works ','Street ','Jewel V. ');
346
+ INSERT INTO "employees" VALUES('Mullen ','Louis ','Police Officer ','Police ','Police ','John Rappaport');
347
+ INSERT INTO "employees" VALUES('Murray ','Carole ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
348
+ INSERT INTO "employees" VALUES('Mutascio ','Diletta ','Buyer ','Administration','Administrative ','Jewel V. ');
349
+ INSERT INTO "employees" VALUES('Nazario ','Erica ','Police Aide ','Police ','Police ','John Rappaport');
350
+ INSERT INTO "employees" VALUES('Norman ','Haneefah ','Clerk Typist ','Planning ','Planning ','Valerie ');
351
+ INSERT INTO "employees" VALUES('Olivera ','Aydil ','Police Officer ','Police ','Police ','John Rappaport');
352
+ INSERT INTO "employees" VALUES('Olivier ','Fritz ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
353
+ INSERT INTO "employees" VALUES('Olivier ','Luc ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
354
+ INSERT INTO "employees" VALUES('Padilla ','Harold ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
355
+ INSERT INTO "employees" VALUES('Padilla ','Ruben ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
356
+ INSERT INTO "employees" VALUES('Padilla, Jr. ','Elvin ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
357
+ INSERT INTO "employees" VALUES('Paglucci ','Eilean ','Deputy Municipal ','Court ','Court ','Eric ');
358
+ INSERT INTO "employees" VALUES('Pallitto ','Joseph ','Police Officer ','Police ','Police ','John Rappaport');
359
+ INSERT INTO "employees" VALUES('Payne ','Keri ','Communications ','Police ','Police ','John Rappaport');
360
+ INSERT INTO "employees" VALUES('Pennington ','Eric ','Municipal Court ','Court ','Court ','Thompson-Chin ');
361
+ INSERT INTO "employees" VALUES('Perez ','Roberto ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
362
+ INSERT INTO "employees" VALUES('Perkins ','Lisa ','Council Member ','City Council ','City Council ','Council ');
363
+ INSERT INTO "employees" VALUES('Petroccia ','John ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
364
+ INSERT INTO "employees" VALUES('Petrucelli ','James ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
365
+ INSERT INTO "employees" VALUES('Phillips ','Adrienne ','Cashier ','Court ','Court ','Eric ');
366
+ INSERT INTO "employees" VALUES('Pierce ','Towana ','Construction ','Planning ','Licensing ','Jackson ');
367
+ INSERT INTO "employees" VALUES('Pierre ','Marc ','Police Officer ','Police ','Police ','John Rappaport');
368
+ INSERT INTO "employees" VALUES('Piserchio ','Michael ','Police Sergeant ','Police ','Police ','John Rappaport');
369
+ INSERT INTO "employees" VALUES('Piserchio, Jr. ','Matthew ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
370
+ INSERT INTO "employees" VALUES('Piserchio, Jr. ','Vincent ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
371
+ INSERT INTO "employees" VALUES('Polhill ','Robert ','Police Officer ','Police ','Police ','John Rappaport');
372
+ INSERT INTO "employees" VALUES('Politi, Jr. ','Cosimo ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
373
+ INSERT INTO "employees" VALUES('Pollard ','Crystal ','Clerk ','Comm. Serv. ','Health ','Joseph Fonzino');
374
+ INSERT INTO "employees" VALUES('Pressey ','Keith ','Recreation ','Comm. Serv. ','Recreation ','Joseph Fonzino');
375
+ INSERT INTO "employees" VALUES('Pressey ','Jauhara ','Economic Development','Planning ','Planning ','Valerie ');
376
+ INSERT INTO "employees" VALUES('Prioletti ','Roxanne ','Administrative Clerk','Public Works ','Public Works ','Jewel V. ');
377
+ INSERT INTO "employees" VALUES('Raheem ','Ibin ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
378
+ INSERT INTO "employees" VALUES('Randazzo ','Salvatore ','Public Safety ','Police ','Police ','John Rappaport');
379
+ INSERT INTO "employees" VALUES('Rappaport ','John ','Acting Police ','Police ','Police ','John Rappaport');
380
+ INSERT INTO "employees" VALUES('Regis ','Reynold ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
381
+ INSERT INTO "employees" VALUES('Ricciardelli ','Steven ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
382
+ INSERT INTO "employees" VALUES('Rimes ','Linda ','Senior Citizen ','Comm. Serv. ','Older Adult ','Joseph Fonzino');
383
+ INSERT INTO "employees" VALUES('Rivera ','Nelson ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
384
+ INSERT INTO "employees" VALUES('Robinson ','Annette ','Senior Acct. Clerk ','Public Works ','Public Works ','Jewel V. ');
385
+ INSERT INTO "employees" VALUES('Rodriguez ','Ricardo ','Police Officer ','Police ','Police ','John Rappaport');
386
+ INSERT INTO "employees" VALUES('Rogers ','Mary ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
387
+ INSERT INTO "employees" VALUES('Romano ','James ','Equipment Operator ','Public Works ','Street ','Jewel V. ');
388
+ INSERT INTO "employees" VALUES('Romano, Jr. ','Vincent ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
389
+ INSERT INTO "employees" VALUES('Rooks ','Roger ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
390
+ INSERT INTO "employees" VALUES('Rosado ','Hector ','Police Officer ','Police ','Police ','John Rappaport');
391
+ INSERT INTO "employees" VALUES('Rosamilia ','Richard ','Police Officer ','Police ','Police ','John Rappaport');
392
+ INSERT INTO "employees" VALUES('Roseberry ','Cassandra ','Police Records Clerk','Police ','Police ','John Rappaport');
393
+ INSERT INTO "employees" VALUES('Rosebure ','Lallah ','Deputy Municipal ','Court ','Court ','Eric ');
394
+ INSERT INTO "employees" VALUES('Rothenberger ','James ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
395
+ INSERT INTO "employees" VALUES('Rothenberger ','Joseph ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
396
+ INSERT INTO "employees" VALUES('Rothenberger ','Scott ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
397
+ INSERT INTO "employees" VALUES('Rothenberger ','Patricia ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
398
+ INSERT INTO "employees" VALUES('Rothenberger ','Joseph ','Mechanic ','Public Works ','Equipment ','Thompson-Chin ');
399
+ INSERT INTO "employees" VALUES('Rothenberger ','Judith ','Police Sergeant ','Police ','Police ','John Rappaport');
400
+ INSERT INTO "employees" VALUES('Sacco ','Frank ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
401
+ INSERT INTO "employees" VALUES('Samuels ','Lawrence ','Secretary-Planning ','Planning ','Planning Board ','Valerie ');
402
+ INSERT INTO "employees" VALUES('Samuels ','Lawrence ','Field Representive ','Planning ','Inspection & ','Valerie ');
403
+ INSERT INTO "employees" VALUES('Santiago ','Harry ','Police Sergeant ','Police ','Police ','John Rappaport');
404
+ INSERT INTO "employees" VALUES('Sautter, Jr. ','William ','Communications ','Police ','Police ','John Rappaport');
405
+ INSERT INTO "employees" VALUES('Savoca-Gibson ','Camille ','Secretaty to the ','Mayor''s Office','Mayor''s Office ','Eldridge ');
406
+ INSERT INTO "employees" VALUES('Schneider ','Eric ','Police Lieutenant ','Police ','Police ','John Rappaport');
407
+ INSERT INTO "employees" VALUES('Scott ','John ','Supervisor, Streets ','Public Works ','Street ','Jewel V. ');
408
+ INSERT INTO "employees" VALUES('Scura, III ','Frank ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
409
+ INSERT INTO "employees" VALUES('Seibel ','Christofer ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
410
+ INSERT INTO "employees" VALUES('Serrano ','Ellinette ','Senior Clerk Typist ','Public Works ','Public Works ','Jewel V. ');
411
+ INSERT INTO "employees" VALUES('Sewell ','Monica ','Communications ','Police ','Police ','John Rappaport');
412
+ INSERT INTO "employees" VALUES('Simmonds ','Rudolph ','Police Officer ','Police ','Police ','John Rappaport');
413
+ INSERT INTO "employees" VALUES('Sims ','Hakim ','Police Captain ','Police ','Police ','John Rappaport');
414
+ INSERT INTO "employees" VALUES('Smith ','Contrina ','Court Aide ','Court ','Court ','Eric ');
415
+ INSERT INTO "employees" VALUES('Soldano ','Leo ','Fire Signal System ','Fire ','Fire ','Martin DeMarzo');
416
+ INSERT INTO "employees" VALUES('Sooy ','Kevin ','Police Captain ','Police ','Police ','John Rappaport');
417
+ INSERT INTO "employees" VALUES('Soto ','Orlando ','Police Lieutenant ','Police ','Police ','John Rappaport');
418
+ INSERT INTO "employees" VALUES('Spates ','Jason ','Police Officer ','Police ','Police ','John Rappaport');
419
+ INSERT INTO "employees" VALUES('Spearman, Jr. ','Alvin ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
420
+ INSERT INTO "employees" VALUES('Steele ','Sidney ','Laborer ','Public Works ','Street ','Jewel V. ');
421
+ INSERT INTO "employees" VALUES('Stefanelli ','Gerard ','Police Officer ','Police ','Police ','John Rappaport');
422
+ INSERT INTO "employees" VALUES('Stefanelli ','Robert ','Police Officer ','Police ','Police ','John Rappaport');
423
+ INSERT INTO "employees" VALUES('Stephens, II ','Theodore ','Judge of the ','Court ','Court ','Eric ');
424
+ INSERT INTO "employees" VALUES('Sterling ','Nerlande ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
425
+ INSERT INTO "employees" VALUES('Tamaya ','Christina ','Senior Cashier ','Finance ','Tax Collector ','Jack Kelly ');
426
+ INSERT INTO "employees" VALUES('Tavera ','Lucy ','Screener-Municipal ','Police ','Police ','John Rappaport');
427
+ INSERT INTO "employees" VALUES('Taylor ','Franchot ','Police Officer ','Police ','Police ','John Rappaport');
428
+ INSERT INTO "employees" VALUES('Taylor ','Pamela ','Principal Clerk ','Comm. Serv. ','Older Adult ','Joseph Fonzino');
429
+ INSERT INTO "employees" VALUES('Thompson ','David ','Police Officer ','Police ','Police ','John Rappaport');
430
+ INSERT INTO "employees" VALUES('Thompson-Chin ','Jewel ','Business ','Administration','Business ','Mayor ');
431
+ INSERT INTO "employees" VALUES('Timko ','Michael ','Police Officer ','Police ','Police ','John Rappaport');
432
+ INSERT INTO "employees" VALUES('Tingolie ','Margaret ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
433
+ INSERT INTO "employees" VALUES('Tingolie ','Michael ','Police Officer ','Police ','Police ','John Rappaport');
434
+ INSERT INTO "employees" VALUES('Tisdale-Dickson','Karyn ','Police Officer ','Police ','Police ','John Rappaport');
435
+ INSERT INTO "employees" VALUES('Toomer ','Julian ','Police Officer ','Police ','Police ','John Rappaport');
436
+ INSERT INTO "employees" VALUES('Tortorella ','Joseph ','Police Sergeant ','Police ','Police ','John Rappaport');
437
+ INSERT INTO "employees" VALUES('Towns ','Lamar ','Police Officer ','Police ','Police ','John Rappaport');
438
+ INSERT INTO "employees" VALUES('Trezza ','Joseph ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
439
+ INSERT INTO "employees" VALUES('Trovato ','Brian ','Police Sergeant ','Police ','Police ','John Rappaport');
440
+ INSERT INTO "employees" VALUES('Tucker ','Arthur ','Supervisor, Public ','Public Works ','Maintenance ','Thompson-Chin ');
441
+ INSERT INTO "employees" VALUES('Turpin ','Theresa ','Public Safety ','Police ','Police ','John Rappaport');
442
+ INSERT INTO "employees" VALUES('Upchurch ','Deborah ','Police Sergeant ','Police ','Police ','John Rappaport');
443
+ INSERT INTO "employees" VALUES('Valentino ','Ralph ','Clerk ','Comm. Serv. ','Health ','Joseph Fonzino');
444
+ INSERT INTO "employees" VALUES('Vandermeer ','Fred ','Police Aide ','Police ','Police ','John Rappaport');
445
+ INSERT INTO "employees" VALUES('Varanelli ','Nicholas ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
446
+ INSERT INTO "employees" VALUES('Vega ','Edward ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
447
+ INSERT INTO "employees" VALUES('Velez ','Carmen ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
448
+ INSERT INTO "employees" VALUES('Ventuolo ','Carmela ','Asst. Municipal Tax ','Finance ','Tax Collector ','Jack Kelly ');
449
+ INSERT INTO "employees" VALUES('Vitiello ','Vincent ','Police Captain ','Police ','Police ','John Rappaport');
450
+ INSERT INTO "employees" VALUES('Wade, Jr. ','John ','Police Lieutenant ','Police ','Police ','John Rappaport');
451
+ INSERT INTO "employees" VALUES('Washington ','James ','Police Officer ','Police ','Police ','John Rappaport');
452
+ INSERT INTO "employees" VALUES('Watkins ','Sharon ','Secretary ','Administration','Business ','Jewel V. ');
453
+ INSERT INTO "employees" VALUES('Watkins ','Sharon ','Administrative Clerk','Administration','Business ','Jewel V. ');
454
+ INSERT INTO "employees" VALUES('Watkins, Sr. ','Jeffrey ','Laborer ','Public Works ','Street ','Jewel V. ');
455
+ INSERT INTO "employees" VALUES('Webb ','Priscilla ','Public Health Nurse ','Comm. Serv. ','Health ','Joseph Fonzino');
456
+ INSERT INTO "employees" VALUES('Webb ','Curtiss ','Zoning Officer ','Planning ','Zoning Board ','Valerie ');
457
+ INSERT INTO "employees" VALUES('Webb ','Lance ','Equipment Operator ','Public Works ','Street ','Jewel V. ');
458
+ INSERT INTO "employees" VALUES('Webb ','Curtiss ','Field Representive ','Planning ','Inspection & ','Valerie ');
459
+ INSERT INTO "employees" VALUES('Webster ','Aric ','Police Captain ','Police ','Police ','John Rappaport');
460
+ INSERT INTO "employees" VALUES('Whidbee ','Tonia ','Clerk ','Administration','Administrative ','Jewel V. ');
461
+ INSERT INTO "employees" VALUES('Whyte ','Sharon ','Clerk Typist ','Comm. Serv. ','Health ','Joseph Fonzino');
462
+ INSERT INTO "employees" VALUES('Williams ','Mary ','Secretary to ABC ','Administration','ABC ','Jewel V. ');
463
+ INSERT INTO "employees" VALUES('Williams ','Mary ','Secretary to ','Police ','Police ','John Rappaport');
464
+ INSERT INTO "employees" VALUES('Williams ','D''Shon ','Police Officer ','Police ','Police ','John Rappaport');
465
+ INSERT INTO "employees" VALUES('Williams ','Yolanda ','Police Records Clerk','Police ','Police ','John Rappaport');
466
+ INSERT INTO "employees" VALUES('Williams-Devose','Donna ','Council Member ','City Council ','City Council ','Council ');
467
+ INSERT INTO "employees" VALUES('Williamson ','Crystal ','Court Aide ','Court ','Court ','Eric ');
468
+ INSERT INTO "employees" VALUES('Wilson ','Joseph ','Firefighter ','Fire ','Fire ','Martin DeMarzo');
469
+ INSERT INTO "employees" VALUES('Wilson ','Rennie ','Police Officer ','Police ','Police ','John Rappaport');
470
+ INSERT INTO "employees" VALUES('Wingfield, Jr. ','Raymond ','Laborer ','Public Works ','Buildings & ','Jewel V. ');
471
+ INSERT INTO "employees" VALUES('Winston ','Alphonse ','Supervisor, Streets ','Public Works ','Street ','Jewel V. ');
472
+ INSERT INTO "employees" VALUES('Wood ','Antoinette ','School Traffic Guard','Police ','Crossing Guards','John Rappaport');
473
+ INSERT INTO "employees" VALUES('Worsley ','John ','Laborer ','Public Works ','Buildings & ','Jewel V. ');
474
+ INSERT INTO "employees" VALUES('Worthen ','Litasha ','Police Officer ','Police ','Police ','John Rappaport');
475
+ INSERT INTO "employees" VALUES('Wright ','Ross ','Recreation Aide ','Comm. Serv. ','Recreation ','Joseph Fonzino');
476
+ INSERT INTO "employees" VALUES('Wright ','Tracey ','Police Lieutenant ','Police ','Police ','John Rappaport');
477
+ INSERT INTO "employees" VALUES('Wright ','Clyde ','Equipment Operator ','Public Works ','Street ','Jewel V. ');
478
+ INSERT INTO "employees" VALUES('Young ','Melissa ','Data Entry Machine ','Finance ','Finance & ','Jack Kelly ');
479
+ INSERT INTO "employees" VALUES('Zuppa, Jr. ','Joseph ','Fire Captain ','Fire ','Fire ','Martin DeMarzo');
480
+ CREATE TABLE contacts (
481
+ Last_Name varchar(50), First_Name varchar(50), Telephone varchar(50), Agency varchar(50), Email varchar(50)
482
+ );
483
+ INSERT INTO "contacts" VALUES('BACA','Janet J','719-547-2271','Pueblo Regional Center (DOHS)','JANET.BACA@STATE.CO.US');
484
+ INSERT INTO "contacts" VALUES('BACA','Jeremy W','719-775-9221','Dept Of Corrections (DOC)','JEREMY.BACA@DOC.STATE.CO.US');
485
+ INSERT INTO "contacts" VALUES('BACA','John C','719-546-4512','Colo Mental Health Institute--Pueblo (DOHS)','JOHN.BACA@STATE.CO.US');
486
+ INSERT INTO "contacts" VALUES('BACA-MARTINEZ','Juanita M','720-857-6400','ILG','');
487
+ INSERT INTO "contacts" VALUES('BACHLET','Jason','303-572-5705','Department Of Revenue (DOR)','jbachlet@spike.dor.state.co.us');
488
+ INSERT INTO "contacts" VALUES('BACHMAN','Jason Q','303-273-1609','Dept Of Public Safety (CDPS)','JASON.BACHMAN@CDPS.STATE.CO.US');
489
+ INSERT INTO "contacts" VALUES('BAESSLER','Jeffrey','303-866-3906','Water Conservation (DONR)','JEFFREY.BAESSLER@STATE.CO.US');
490
+ INSERT INTO "contacts" VALUES('BAIER','Jo Ann','303-318-9229','Dept Of Labor & Employment (CDLE)','');
491
+ INSERT INTO "contacts" VALUES('BAILEY','Jane D','303-861-1111','Court Of Appeals (JUD)','JANE.BAILEY@JUDICIAL.STATE.CO.US');
492
+ INSERT INTO "contacts" VALUES('BAILEY','Jason L','970-242-1521','Youth Corrections (DOHS)','JASON.BAILEY@STATE.CO.US');
493
+ INSERT INTO "contacts" VALUES('BAILEY','John P','303-866-2554','Department Of Revenue (DOR)','jbailey@spike.dor.state.co.us');
494
+ INSERT INTO "contacts" VALUES('BAILEY','Joseph Franklin','719-269-5120','Dept Of Corrections (DOC)','JOSEPH.BAILEY@DOC.STATE.CO.US');
495
+ INSERT INTO "contacts" VALUES('BAILEY','Joyce E','970-257-3630','21st Judicial District (JUD)','JOYCE.BAILEY@JUDICIAL.STATE.CO.US');
496
+ INSERT INTO "contacts" VALUES('BAKEHOUSE','Jeanne-Marie','303-692-2987','Dept Of Public Health & Environment (DOPHE)','JEANNE.BAKEHOUSE@STATE.CO.US');
497
+ INSERT INTO "contacts" VALUES('BAKER','Janine R','970-245-2100','Grd Jct Regional Center (DOHS)','JANINE.BAKER@STATE.CO.US');
498
+ INSERT INTO "contacts" VALUES('BAKER','Jerry D','719-852-4749','Dept Of Agriculture (DOAG)','');
499
+ INSERT INTO "contacts" VALUES('BAKER','Joe Pat','970-521-5010','Dept Of Corrections (DOC)','JOE.BAKER@DOC.STATE.CO.US');
500
+ INSERT INTO "contacts" VALUES('BAKER','Joseph L','719-633-7518','Civil Rights (DORA)','JOSEPH.BAKER@DORA.STATE.CO.US');
501
+ INSERT INTO "contacts" VALUES('BALDONADO','Jolene','719-384-1091','Otero Junior College (DOHE)','');
502
+ INSERT INTO "contacts" VALUES('BALLARD','Joseph D','719-252-6683','Dept Of Corrections (DOC)','JOSEPH.BALLARD@DOC.STATE.CO.US');
503
+ INSERT INTO "contacts" VALUES('BALLECK','Jacquelline Sue','970-824-6501','Dept Of Public Safety (CDPS)','');
504
+ INSERT INTO "contacts" VALUES('BALLMAN','Jeannette Elaine','719-784-6331','Veterans Nursing Home--Florence (DOHS)','');
505
+ INSERT INTO "contacts" VALUES('BALLOU','Jenny P','303-866-6694','Dept Of Education (DOE)','POELNS_J@CDE.STATE.CO.US');
506
+ INSERT INTO "contacts" VALUES('BANDY','Jason E','303-273-1900','Dept Of Public Safety (CDPS)','JASON.BANDY@CDPS.STATE.CO.US');
507
+ INSERT INTO "contacts" VALUES('BANKEN','Jerry Dale','303-512-5730','Highway Operations & Maintenance (DOT)','');
508
+ INSERT INTO "contacts" VALUES('BANKS','Julia','970-351-2245','University Of Northern Colorado (DOHE)','');
509
+ INSERT INTO "contacts" VALUES('BANTA','John R','303-757-9649','Highway Operations & Maintenance (DOT)','');
510
+ INSERT INTO "contacts" VALUES('BANUELOS','Julia','303-866-6299','Dept Of Education (DOE)','BANUELOS_J@CDE.STATE.CO.US');
511
+ INSERT INTO "contacts" VALUES('BANZHAF','Jane E','303-988-6160','Red Rocks Community College (DOHE)','');
512
+ INSERT INTO "contacts" VALUES('BARBA','Jonathan W','303-273-1742','Dept Of Public Safety (CDPS)','JON.BARBA@CDPS.STATE.CO.US');
513
+ INSERT INTO "contacts" VALUES('BARBOSA','Jeanne M','303-866-7100','Dept Of Human Services (DOHS)','JEANNE.BARBOSA@STATE.CO.US');
514
+ INSERT INTO "contacts" VALUES('BARBUR','John Leland','303-678-5473','Front Range Community College (DOHE)','');
515
+ INSERT INTO "contacts" VALUES('BARELA','Jeffrey D','719-546-4281','Colo Mental Health Institute--Pueblo (DOHS)','JEFFREY.BARELA@STATE.CO.US');
516
+ INSERT INTO "contacts" VALUES('BARELA','Joe A','719-546-4173','Dept Of Human Services (DOHS)','JOE.BARELA@STATE.CO.US');
517
+ INSERT INTO "contacts" VALUES('BARKER','Jerremy S.','719-578-2100','Colorado School For Deaf & Blind (DOE)','JBARKER@CSDB.ORG');
518
+ INSERT INTO "contacts" VALUES('BARNES','Joanne M','303-360-4700','Community College Of Aurora (DOHE)','JOANNE.BARNES@CCAURORA.EDU');
519
+ INSERT INTO "contacts" VALUES('BARNES','Juan Antonio','719-269-5525','Dept Of Corrections (DOC)','');
520
+ INSERT INTO "contacts" VALUES('BARNHILL','Joseph B','970-521-5010','Dept Of Corrections (DOC)','JOSEPH.BARNHILL@DOC.STATE.CO.US');
521
+ INSERT INTO "contacts" VALUES('BARON','Janis E','303-866-3523','Legislative Council (GA)','JANIS.BARON@STATE.CO.US');
522
+ INSERT INTO "contacts" VALUES('BAROS','Jose Ramon','719-395-6020','Highway Operations & Maintenance (DOT)','');
523
+ INSERT INTO "contacts" VALUES('BARR','Joe John','719-390-2717','Youth Corrections (DOHS)','JOSEPH.BARR@STATE.CO.US');
524
+ INSERT INTO "contacts" VALUES('BARRAS','Joseph D.','719-578-2100','Colorado School For Deaf & Blind (DOE)','JBARRAS@CSDB.ORG');
525
+ INSERT INTO "contacts" VALUES('BARRATT','Jeffery','303-466-8811','Front Range Community College (DOHE)','');
526
+ INSERT INTO "contacts" VALUES('BARRETO','Jorge','720-570-5273','Dept Of Health Care Policy & Financing (DOHCPF)','');
527
+ INSERT INTO "contacts" VALUES('BARRON','John Joseph','970-874-7614','Dept Of Corrections (DOC)','JOHN.BARRON@DOC.STATE.CO.US');
528
+ INSERT INTO "contacts" VALUES('BARROS','Janet M','719-846-9291','Trinidad State Nursing Home (DOHS)','JAN.BARROS@STATE.CO.US');
529
+ INSERT INTO "contacts" VALUES('BARROS','Judy','303-727-9277','Dept Of Education (DOE)','BARROS_J@CDE.STATE.CO.US');
530
+ INSERT INTO "contacts" VALUES('BARROWS','James W','719-784-6331','Veterans Nursing Home--Florence (DOHS)','JAMES.BARROWS@STATE.CO.US');
531
+ INSERT INTO "contacts" VALUES('BARRY','Jeffrey A','719-845-3226','Dept Of Corrections (DOC)','JEFFREY.BARRY@DOC.STATE.CO.US');
532
+ INSERT INTO "contacts" VALUES('BARRY','Jeremiah B','303-866-2045','Legislative Legal Services (GA)','JERRY.BARRY@STATE.CO.US');
533
+ INSERT INTO "contacts" VALUES('BARRY','Jo Anne Marie','303-239-5822','Dept Of Public Safety (CDPS)','JOANNE.BARRY@CDPS.STATE.CO.US');
534
+ INSERT INTO "contacts" VALUES('BARTH','Joseph Michael','719-561-9479','Parks & Outdoor Recreation (DONR)','');
535
+ INSERT INTO "contacts" VALUES('BARTHOLOMEW','John J','303-866-2854','Dept Of Health Care Policy & Financing (DOHCPF)','JOHN.BARTHOLOMEW@STATE.CO.US');
536
+ INSERT INTO "contacts" VALUES('BARTLETT','James Ray','303-318-8642','Dept Of Labor & Employment (CDLE)','');
537
+ INSERT INTO "contacts" VALUES('BARTON','Jackie Yvonne','303-556-2600','Community College Of Denver (DOHE)','');
538
+ INSERT INTO "contacts" VALUES('BARTON','John C','970-241-1516','Minerals & Geology (DONR)','JOHN.BARTON@STATE.CO.US');
539
+ INSERT INTO "contacts" VALUES('BARTSCH','James M','970-521-7438','Dept Of Corrections (DOC)','JAMES.BARTSCH@DOC.STATE.CO.US');
540
+ INSERT INTO "contacts" VALUES('BASSI','Johna A','719-546-4620','Dept Of Human Services (DOHS)','');
541
+ INSERT INTO "contacts" VALUES('BATKA','John Hynek','303-866-3581','Water Resources (DONR)','');
542
+ INSERT INTO "contacts" VALUES('BAUER','Jack Lee','970-351-2446','University Of Northern Colorado (DOHE)','');
543
+ INSERT INTO "contacts" VALUES('BAUER','John N','719-576-1868','Highway Operations & Maintenance (DOT)','');
544
+ INSERT INTO "contacts" VALUES('BAUMBER','Jennifer L','303-441-4730','20th Judicial District (JUD)','JENNIFER.BAUMBER@JUDICIAL.STATE.CO.US');
545
+ INSERT INTO "contacts" VALUES('BAUMGARTNER','John A','970-350-2138','Dept Of Personnel & Administration (DPA)','');
546
+ INSERT INTO "contacts" VALUES('BAUMGARTNER','Justin J','303-273-1609','Dept Of Public Safety (CDPS)','');
547
+ INSERT INTO "contacts" VALUES('BAUSERMAN','Jennifer L','719-384-6945','Otero Junior College (DOHE)','');
548
+ INSERT INTO "contacts" VALUES('BAYNES','James H.','303-757-9514','Highway Operations & Maintenance (DOT)','');
549
+ INSERT INTO "contacts" VALUES('BEACH','Jack E','970-255-6178','Wildlife (DONR)','');
550
+ INSERT INTO "contacts" VALUES('BEACH','James R','719-546-4394','Dept Of Human Services (DOHS)','JAMES.BEACH@STATE.CO.US');
551
+ INSERT INTO "contacts" VALUES('BEATTY','Jeffrey','719-578-2100','Colorado School For Deaf & Blind (DOE)','JBEATTY@CSDB.ORG');
552
+ INSERT INTO "contacts" VALUES('BEAUDRY','James Joseph','303-371-4804','Dept Of Corrections (DOC)','JAMES.BEAUDRY@DOC.STATE.CO.US');
553
+ INSERT INTO "contacts" VALUES('BEAULIEU','Jacqueline R','303-441-4741','20th Judicial District (JUD)','JACQUELINE.BEAULIEU@JUDICIAL.STATE.CO.US');
554
+ INSERT INTO "contacts" VALUES('BEBERMEYER','Jody Marie','970-245-9122','Public Defender--21st District (JUD)','');
555
+ INSERT INTO "contacts" VALUES('BECCO','Jo Ellen','719-531-5350','Pikes Peak Community College (DOHE)','');
556
+ INSERT INTO "contacts" VALUES('BECERRA','John H','719-546-4223','Dept Of Human Services (DOHS)','');
557
+ INSERT INTO "contacts" VALUES('BECHTELHEIMER','John Harold','719-269-5002','Dept Of Corrections (DOC)','JOHN.BECHTELHEIMER@DOC.STATE.CO.US');
558
+ INSERT INTO "contacts" VALUES('BECK','Jennifer Kathleen','970-351-1890','University Of Northern Colorado (DOHE)','');
559
+ INSERT INTO "contacts" VALUES('BECK','Jennifer R','719-346-5331','Dept Of Labor & Employment (CDLE)','');
560
+ INSERT INTO "contacts" VALUES('BECKENHOLDT','Judy A','719-448-7536','4th Judicial District (JUD)','JUDY.BECKENHOLDT@JUDICIAL.STATE.CO.US');
561
+ INSERT INTO "contacts" VALUES('BECKER','John David','303-688-3081','Public Defender--2nd District (JUD)','');
562
+ INSERT INTO "contacts" VALUES('BECKER-LUTZ','Jill Ann Lee','303-794-1550','Arapahoe Community College (DOHE)','');
563
+ INSERT INTO "contacts" VALUES('BEDNAREK','Jill Renae','303-692-2475','Prevention Programs (DOPHE)','JILL.BEDNAREK@STATE.CO.US');
564
+ INSERT INTO "contacts" VALUES('BEECHAM','Joshua M','303-273-1609','Dept Of Public Safety (CDPS)','');
565
+ INSERT INTO "contacts" VALUES('BEEMAN','Judith Anne','719-544-4800','Dept Of Corrections (DOC)','JUDITH.BEEMAN@DOC.STATE.CO.US');
566
+ INSERT INTO "contacts" VALUES('BEERY','J. M','303-866-5880','Assessment Appeals Board Of (DOLA)','MIKE.BEERY@DORA.STATE.CO.US');
567
+ INSERT INTO "contacts" VALUES('BEGGS','Julie Yancich','303-466-8811','Front Range Community College (DOHE)','');
568
+ INSERT INTO "contacts" VALUES('BEHABETZ','John J','303-937-9507','Department Of Revenue (DOR)','jbehabetz@spike.dor.state.co.us');
569
+ INSERT INTO "contacts" VALUES('BEHR','John A','719-395-2404','Dept Of Corrections (DOC)','JOHN.BEHR@DOC.STATE.CO.US');
570
+ INSERT INTO "contacts" VALUES('BEHRENDSEN','Jeffrey L','970-521-5010','Dept Of Corrections (DOC)','JEFFREY.BEHRENDSEN@DOC.STATE.CO.US');
571
+ INSERT INTO "contacts" VALUES('BEINE','Jo Ann','303-794-1550','Arapahoe Community College (DOHE)','');
572
+ INSERT INTO "contacts" VALUES('BELAK','Joseph','303-692-2743','Dept Of Public Health & Environment (DOPHE)','JOE.BELAK@STATE.CO.US');
573
+ INSERT INTO "contacts" VALUES('BELCHER','Joseph Carl','970-521-5011','Dept Of Corrections (DOC)','JOSEPH.BELCHER@DOC.STATE.CO.US');
574
+ INSERT INTO "contacts" VALUES('BELL','Jennifer L','303-239-4208','Dept Of Public Safety (CDPS)','JENNIFER.BELL@CDPS.STATE.CO.US');
575
+ INSERT INTO "contacts" VALUES('BELL','John H','303-318-9000','Dept Of Labor & Employment (CDLE)','');
576
+ INSERT INTO "contacts" VALUES('BELL','Johnny D','970-874-7614','Dept Of Corrections (DOC)','JOHNNY.BELL@DOC.STATE.CO.US');
577
+ INSERT INTO "contacts" VALUES('BELL','Joseph','303-866-5750','State Historical Society (DOHE)','JOSEPH.BELL@CHS.STATE.CO.US');
578
+ INSERT INTO "contacts" VALUES('BELLUM','Jon M','720-279-0179','Colorado State University (DOHE)','BELLUM.JON@CSUGLOBAL.ORG');
579
+ INSERT INTO "contacts" VALUES('BELMONT','John Lewis','719-248-5136','Dept Of Corrections (DOC)','');
580
+ INSERT INTO "contacts" VALUES('BELTZ','Jason Philip','719-269-5120','Dept Of Corrections (DOC)','JASON.BELTZ@DOC.STATE.CO.US');
581
+ INSERT INTO "contacts" VALUES('BEMELEN','James P.','303-790-1020','Highway Operations & Maintenance (DOT)','');
582
+ INSERT INTO "contacts" VALUES('BENAVIDES','Joseph V','719-589-2503','Dept Of Public Safety (CDPS)','');
583
+ INSERT INTO "contacts" VALUES('CABIBI','Anne R','719-583-7078','10th Judicial District (JUD)','');
584
+ INSERT INTO "contacts" VALUES('CADY','Anthony M.','970-385-1433','Department Of Transportation (DOT)','');
585
+ INSERT INTO "contacts" VALUES('CALDERON','Alicia R','303-866-4500','State Services (DOL)','ALICIA.CALDERON@STATE.CO.US');
586
+ INSERT INTO "contacts" VALUES('CAMPBELL','Alisa A','303-866-4500','State Services (DOL)','ALISA.CAMPBELL@STATE.CO.US');
587
+ INSERT INTO "contacts" VALUES('CAMPBELL','Angela Mae','303-659-4274','Public Defender--17th District (JUD)','');
588
+ INSERT INTO "contacts" VALUES('CAMPBELL','Anna Marie','719-226-4535','Dept Of Corrections (DOC)','ANNAMARIE.CAMPBELL@DOC.STATE.CO.US');
589
+ INSERT INTO "contacts" VALUES('CAMPBELL','Anthony S','303-365-7312','Highway Operations & Maintenance (DOT)','');
590
+ INSERT INTO "contacts" VALUES('CAMPOS','Aaron','719-846-5011','Trinidad State Junior College (DOHE)','');
591
+ INSERT INTO "contacts" VALUES('CANCINO','Adrienne','303-866-7491','Alcohol & Drug Abuse Div (DOHS)','ADRIENNE.CANCINO@STATE.CO.US');
592
+ INSERT INTO "contacts" VALUES('CANDELARIO','Anna M','719-846-9291','Trinidad State Nursing Home (DOHS)','ANNA.CANDELARIO@STATE.CO.US');
593
+ INSERT INTO "contacts" VALUES('CANTU','Antonio','303-576-7711','Pikes Peak Community College (DOHE)','');
594
+ INSERT INTO "contacts" VALUES('CARABAJAL','Albert Rosendo','303-273-1765','Dept Of Corrections (DOC)','ALBERT.CARABAJAL@DOC.STATE.CO.US');
595
+ INSERT INTO "contacts" VALUES('CARBAJAL','Aimee','303-556-2400','Auraria Higher Education Center (DOHE)','');
596
+ INSERT INTO "contacts" VALUES('CARBUTT','Alan','719-587-7741','Dept Of Higher Education (DOHE)','');
597
+ INSERT INTO "contacts" VALUES('CARLSON','Adriana Noel','719-547-7793','Pueblo Community College (DOHE)','');
598
+ INSERT INTO "contacts" VALUES('CARLSON','Andrew M','303-866-2723','Colorado Commission On Higher Education (DOHE)','ANDREW.CARLSON@DHE.STATE.CO.US');
599
+ INSERT INTO "contacts" VALUES('CARR','Adria A','303-866-7712','Colo Mental Health Institute--Ft Logan (DOHS)','ADRIA.CARR@STATE.CO.US');
600
+ INSERT INTO "contacts" VALUES('CARR','Arnold E','719-269-5018','Dept Of Corrections (DOC)','ARNOLD.CARR@DOC.STATE.CO.US');
601
+ INSERT INTO "contacts" VALUES('CARUSO','Anthony J.','303-798-2680','Highway Operations & Maintenance (DOT)','');
602
+ INSERT INTO "contacts" VALUES('CASADOS','Amanda K','719-546-4000','Colo Mental Health Institute--Pueblo (DOHS)','');
603
+ INSERT INTO "contacts" VALUES('CASADOS','Angela Marie','719-546-4171','Dept Of Human Services (DOHS)','ANGELA.CASADOS@STATE.CO.US');
604
+ INSERT INTO "contacts" VALUES('CASAS','Ana Maria','970-351-1890','University Of Northern Colorado (DOHE)','');
605
+ INSERT INTO "contacts" VALUES('CASHWELL','Allison Lee','970-226-2500','Front Range Community College (DOHE)','');
606
+ INSERT INTO "contacts" VALUES('CASSELMAN','Amy Lynn','970-351-1890','University Of Northern Colorado (DOHE)','');
607
+ INSERT INTO "contacts" VALUES('CASTILLO','Angelica M','303-654-3200','17th Judicial District (JUD)','ANGELICA.GUERRERO@JUDICIAL.STATE.CO.US');
608
+ INSERT INTO "contacts" VALUES('CASTRO','Adalberto','303-556-2400','Auraria Higher Education Center (DOHE)','');
609
+ INSERT INTO "contacts" VALUES('CASTRO','Arlene D','719-226-4541','Dept Of Corrections (DOC)','ARLENE.CASTRO@DOC.STATE.CO.US');
610
+ INSERT INTO "contacts" VALUES('CAUDILL','Angela Kim','303-866-3961','State Historical Society (DOHE)','ANGELA.CAUDILL@CHS.STATE.CO.US');
611
+ INSERT INTO "contacts" VALUES('CDEBACA','Anthony S','303-279-6168','Highway Operations & Maintenance (DOT)','');
612
+ INSERT INTO "contacts" VALUES('CECCHI','Allison','303-271-6364','1st Judicial District (JUD)','ALLISON.CECCHI@JUDICIAL.STATE.CO.US');
613
+ INSERT INTO "contacts" VALUES('CEJA','Aaron V','303-365-7138','Department Of Transportation (DOT)','');
614
+ INSERT INTO "contacts" VALUES('CERSONSKY','Annick A','719-546-4000','Colo Mental Health Institute--Pueblo (DOHS)','');
615
+ INSERT INTO "contacts" VALUES('CHANG','Angela Wen','303-279-7841','Public Defender--1st District (JUD)','ANGELA.CHANG@STATE.CO.US');
616
+ INSERT INTO "contacts" VALUES('CHAVEZ','Alberto','719-269-5002','Dept Of Corrections (DOC)','ALBERTO.CHAVEZ@DOC.STATE.CO.US');
617
+ INSERT INTO "contacts" VALUES('CHAVEZ','Andrea N','303-640-2491','2nd Judicial District (JUD)','ANDREA.CHAVEZ@JUDICIAL.STATE.CO.US');
618
+ INSERT INTO "contacts" VALUES('CHAVEZ','Angeliqua Marie','719-546-4000','Colo Mental Health Institute--Pueblo (DOHS)','ANGELIQUA.CHAVEZ@STATE.CO.US');
619
+ INSERT INTO "contacts" VALUES('CHAVEZ','Anthony','719-337-8810','Pikes Peak Community College (DOHE)','');
620
+ INSERT INTO "contacts" VALUES('CHAVEZ','Anthony M.','303-743-6863','Highway Operations & Maintenance (DOT)','');
621
+ INSERT INTO "contacts" VALUES('CHAVEZ','Arthur L','303-375-2065','Dept Of Corrections (DOC)','ARTHUR.CHAVEZ@DOC.STATE.CO.US');
622
+ INSERT INTO "contacts" VALUES('CHRESTENSEN','Austin Gabriel','719-395-2404','Dept Of Corrections (DOC)','AUSTIN.CHRESTENSEN@DOC.STATE.CO.US');
623
+ INSERT INTO "contacts" VALUES('CHRISTENSEN','Alison A','303-659-4274','Public Defender--17th District (JUD)','');
624
+ INSERT INTO "contacts" VALUES('CHRISTENSEN','Audrey H','303-692-2456','Family/Community Health Services (DOPHE)','AUDREY.CHRISTENSEN@STATE.CO.US');
625
+ INSERT INTO "contacts" VALUES('CHRISTIAN','Alan L','720-858-2703','Community Colleges Of Colorado (DOHE)','');
626
+ INSERT INTO "contacts" VALUES('CHRISTY','Adrienne','303-556-2441','Dept Of Higher Education (DOHE)','');
627
+ INSERT INTO "contacts" VALUES('CIRBO','Andra Leigh','303-371-4804','Dept Of Corrections (DOC)','ANDRA.CIRBO@DOC.STATE.CO.US');
628
+ INSERT INTO "contacts" VALUES('CISNEROS','Anna M','719-544-1406','Dept Of Human Services (DOHS)','ANNA.CISNEROS@STATE.CO.US');
629
+ INSERT INTO "contacts" VALUES('CLAIR','Andre V','720-865-8301','Judicial Dept (JUD)','ANDRE.CLAIR@JUDICIAL.STATE.CO.US');
630
+ INSERT INTO "contacts" VALUES('CLAIR','Antoinette L','303-894-7841','Banking (DORA)','TONI.CLAIR@DORA.STATE.CO.US');
631
+ INSERT INTO "contacts" VALUES('CLANCY','Amanda B','303-678-5473','Front Range Community College (DOHE)','');
632
+ INSERT INTO "contacts" VALUES('CLAY','Allan T','303-757-9651','Department Of Transportation (DOT)','');
633
+ INSERT INTO "contacts" VALUES('CLAY','Allyn','970-351-2131','University Of Northern Colorado (DOHE)','');
634
+ INSERT INTO "contacts" VALUES('CLEMENS','Ann C','303-866-6115','Dept Of Health Care Policy & Financing (DOHCPF)','ANN.CLEMENS@STATE.CO.US');
635
+ INSERT INTO "contacts" VALUES('CLEMENTI','Anthony G','719-269-5961','Dept Of Corrections (DOC)','ANTHONY.CLEMENTI@DOC.STATE.CO.US');
636
+ INSERT INTO "contacts" VALUES('CLOSE','Amy Jo','719-395-7218','Dept Of Corrections (DOC)','AMY.CLOSE@DOC.STATE.CO.US');
637
+ INSERT INTO "contacts" VALUES('CLYMER','Abbey H','303-692-2157','Dept Of Public Health & Environment (DOPHE)','');
638
+ INSERT INTO "contacts" VALUES('COATES','Arnold Nmi','970-521-5010','Dept Of Corrections (DOC)','');
639
+ INSERT INTO "contacts" VALUES('COCA','Anthony Martin','719-846-5260','Dept Of Corrections (DOC)','ANTHONY.COCA@DOC.STATE.CO.US');
640
+ INSERT INTO "contacts" VALUES('COFFEY','Angela','303-318-8374','Dept Of Labor & Employment (CDLE)','');
641
+ INSERT INTO "contacts" VALUES('COLE','Alvin S','719-784-6331','Veterans Nursing Home--Florence (DOHS)','ALVIN.COLE@STATE.CO.US');
642
+ INSERT INTO "contacts" VALUES('COLE','Andrea M','303-640-2491','Court Of Appeals (JUD)','ANDREA.COLE@JUDICIAL.STATE.CO.US');
643
+ INSERT INTO "contacts" VALUES('COLEMAN','Annette L','719-585-4027','Pueblo Regional Center (DOHS)','ANNETTE.COLEMAN@STATE.CO.US');
644
+ INSERT INTO "contacts" VALUES('COLONY','Amy Christine','303-866-4500','Risk Management Legal Svcs (DOL)','');
645
+ INSERT INTO "contacts" VALUES('COMERER','Alan W','970-945-5665','Water Resources (DONR)','ALAN.COMERER@STATE.CO.US');
646
+ INSERT INTO "contacts" VALUES('COMSTOCK','Audell E','719-546-4448','Colo Mental Health Institute--Pueblo (DOHS)','AUDELL.COMSTOCK@STATE.CO.US');
647
+ INSERT INTO "contacts" VALUES('CONANT','Aaron Joseph','719-269-5212','Dept Of Corrections (DOC)','AARON.CONANT@DOC.STATE.CO.US');
648
+ INSERT INTO "contacts" VALUES('CONNER','Albert A','303-138-1406','Information Technology (DOR)','aconner@spike.dor.state.co.us');
649
+ INSERT INTO "contacts" VALUES('CONNOLLY','Arthur M.','303-258-3573','Highway Operations & Maintenance (DOT)','');
650
+ INSERT INTO "contacts" VALUES('CONTE','Anthony C','719-269-4704','Dept Of Corrections (DOC)','ANTHONY.CONTE@DOC.STATE.CO.US');
651
+ INSERT INTO "contacts" VALUES('COOK','Aaron','303-988-6160','Red Rocks Community College (DOHE)','');
652
+ INSERT INTO "contacts" VALUES('COOK','Amy L','303-307-2500','Dept Of Corrections (DOC)','AMY.COOK@DOC.STATE.CO.US');
653
+ INSERT INTO "contacts" VALUES('COOPER','Anna M','719-269-5002','Dept Of Corrections (DOC)','ANNA.COOPER@DOC.STATE.CO.US');
654
+ INSERT INTO "contacts" VALUES('CORDOVA','Alfred Louis','303-757-9511','Highway Operations & Maintenance (DOT)','');
655
+ INSERT INTO "contacts" VALUES('CORDOVA','Andrew C','303-866-2497','Energy Conservation (GOV)','ANDY.CORDOVA@STATE.CO.US');
656
+ INSERT INTO "contacts" VALUES('CORDOVA','Annette Y','719-547-2366','Pueblo Regional Center (DOHS)','ANNETTE.CORDOVA@STATE.CO.US');
657
+ INSERT INTO "contacts" VALUES('CORDOVA','Anthony D','719-546-5043','Dept Of Human Services (DOHS)','ANTHONY.CORDOVA@STATE.CO.US');
658
+ INSERT INTO "contacts" VALUES('CORDOVA','Anthony J','719-846-2227','Dept Of Public Safety (CDPS)','');
659
+ INSERT INTO "contacts" VALUES('CORDOVA','Anthony P','303-866-4529','Collection Agency Board (DOL)','TONY.CORDOVA@STATE.CO.US');
660
+ INSERT INTO "contacts" VALUES('CORNELY','Adam M.','970-945-8187','Highway Operations & Maintenance (DOT)','');
661
+ INSERT INTO "contacts" VALUES('CORNISH','Amy','303-502-2000','Pikes Peak Community College (DOHE)','');
662
+ INSERT INTO "contacts" VALUES('CORTESE','Anthony C','719-395-2404','Dept Of Corrections (DOC)','TONY.CORTESE@DOC.STATE.CO.US');
663
+ INSERT INTO "contacts" VALUES('CORTEZ','Anthony M','719-448-7721','4th Judicial District (JUD)','ANTHONY.CORTEZ@JUDICIAL.STATE.CO.US');
664
+ INSERT INTO "contacts" VALUES('COSE','Amanda Lynne','970-257-3600','21st Judicial District (JUD)','AMANDA.COSE@JUDICIAL.STATE.CO.US');
665
+ INSERT INTO "contacts" VALUES('COSNER','Amy Price','719-775-9221','Dept Of Corrections (DOC)','AMY.COSNER@DOC.STATE.CO.US');
666
+ INSERT INTO "contacts" VALUES('COSTIGAN','Alicia S','303-318-8699','Dept Of Labor & Employment (CDLE)','');
667
+ INSERT INTO "contacts" VALUES('COTTRELL','Annie M','303-205-5613','Motor Vehicle (DOR)','acottrell@spike.dor.state.co.us');
668
+ INSERT INTO "contacts" VALUES('COWAN','April Kim','303-273-2605','Youth Corrections (DOHS)','APRIL.COWAN@STATE.CO.US');
669
+ INSERT INTO "contacts" VALUES('CRAIG','Anthony Shane','970-416-3366','Wildlife (DONR)','');
670
+ INSERT INTO "contacts" VALUES('CRAMPTON','Anne-Marie','719-336-2248','Lamar Community College (DOHE)','');
671
+ INSERT INTO "contacts" VALUES('CRANE','Albert L','719-269-5510','Dept Of Corrections (DOC)','ALBERT.CRANE@DOC.STATE.CO.US');
672
+ INSERT INTO "contacts" VALUES('CRANE','Allen L','970-242-4126','Highway Operations & Maintenance (DOT)','');
673
+ INSERT INTO "contacts" VALUES('CRANE','Amanda A','303-307-2575','Dept Of Corrections (DOC)','');
674
+ INSERT INTO "contacts" VALUES('CRESPIN','Arthur S','303-866-5628','Department Of Revenue (DOR)','acrespin@spike.dor.state.co.us');
675
+ INSERT INTO "contacts" VALUES('CRISWELL','Adrian K','303-640-2491','2nd Judicial District (JUD)','ADRIAN.CRISWELL@JUDICIAL.STATE.CO.US');
676
+ INSERT INTO "contacts" VALUES('CRONQUIST','Alicia B','303-692-2629','Disease Control & Environmental Epidemiology (DOPHE)','ALICIA.CRONQUIST@STATE.CO.US');
677
+ INSERT INTO "contacts" VALUES('CROOK','Anna L','970-245-2100','Grd Jct Regional Center (DOHS)','');
678
+ INSERT INTO "contacts" VALUES('CROSSLEY','Amanda Helen','303-307-2575','Dept Of Corrections (DOC)','AMANDA.CROSSLEY@DOC.STATE.CO.US');
679
+ INSERT INTO "contacts" VALUES('CROUSE','Anne M','303-692-2150','Air Pollution Control (DOPHE)','ANNE.CROUSE@STATE.CO.US');
680
+ INSERT INTO "contacts" VALUES('CROUSE','Archie N','303-692-3156','Air Pollution Control (DOPHE)','ARCH.CROUSE@STATE.CO.US');
681
+ INSERT INTO "contacts" VALUES('CROWTHER','Allen B','719-589-2503','Dept Of Public Safety (CDPS)','BLAKE.CROWTHER@CDPS.STATE.CO.US');
682
+ INSERT INTO "contacts" VALUES('CROWTHER','Ashley L','719-589-5807','Dept Of Public Safety (CDPS)','');
683
+ COMMIT;