iraq_unrest 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +114 -0
  6. data/Rakefile +7 -0
  7. data/examples/example_01.png +0 -0
  8. data/examples/example_02.png +0 -0
  9. data/examples/example_03.png +0 -0
  10. data/examples/iraq_government_casualty_figure.csv +95 -0
  11. data/examples/iraq_government_casualty_figure.html +126 -0
  12. data/examples/iraqi_casualties_comparison.csv +119 -0
  13. data/examples/iraqi_casualties_comparison.html +105 -0
  14. data/iraq_unrest.gemspec +33 -0
  15. data/lib/iraq_unrest/concerns/serializable.rb +37 -0
  16. data/lib/iraq_unrest/concerns/validatable.rb +18 -0
  17. data/lib/iraq_unrest/config.rb +8 -0
  18. data/lib/iraq_unrest/data/Iraq_Government_Casualty_Figure.csv +116 -0
  19. data/lib/iraq_unrest/data_set.rb +41 -0
  20. data/lib/iraq_unrest/erb/header.html.erb +32 -0
  21. data/lib/iraq_unrest/erb/iraq_government_casualty_figure.html.erb +94 -0
  22. data/lib/iraq_unrest/erb/iraqi_casualties_comparison.html.erb +73 -0
  23. data/lib/iraq_unrest/format.rb +103 -0
  24. data/lib/iraq_unrest/google_doc.rb +31 -0
  25. data/lib/iraq_unrest/iraq_government_casualty_figure.rb +53 -0
  26. data/lib/iraq_unrest/iraq_unrest_record.rb +74 -0
  27. data/lib/iraq_unrest/iraqi_casualties_comparison.rb +46 -0
  28. data/lib/iraq_unrest/serializers.rb +46 -0
  29. data/lib/iraq_unrest/version.rb +3 -0
  30. data/lib/iraq_unrest.rb +50 -0
  31. data/test/fixtures/vcr_cassettes/iraq_government_casualty_figure.yml +161 -0
  32. data/test/fixtures/vcr_cassettes/iraqi_casualties_comparison.yml +184 -0
  33. data/test/google_doc_test.rb +56 -0
  34. data/test/iraq_government_casualty_figure_test.rb +253 -0
  35. data/test/iraqi_casualties_comparison_test.rb +246 -0
  36. data/test/test_helper.rb +17 -0
  37. data/test/validatable_test.rb +34 -0
  38. metadata +242 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 89bb33fb08463eb4a3cc1eda3dafbebb766ef7d0
4
+ data.tar.gz: eb3689cbc6b8cf718998a5a4d301d3f9805667cf
5
+ SHA512:
6
+ metadata.gz: 2b478ab8a6308a1e615afc5bc5de7d985bf11ad55427661c5711d9f5ff16fd1d71dfb35ce8a939556c7d997a6ecd86429a0c217f3bdc169e9757cd3359564225
7
+ data.tar.gz: 2c4c54344444aa5c87109d2aaedd54e128aac3384291ceabbc4d9ed04d0026f26415b21e88b343ec6079813c3dff6d95efa6d3a37c8e3e2099471db809baecb4
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.swp
2
+ *.gem
3
+ *.rbc
4
+ .bundle
5
+ .config
6
+ .yardoc
7
+ Gemfile.lock
8
+ InstalledFiles
9
+ _yardoc
10
+ coverage
11
+ doc/
12
+ lib/bundler/man
13
+ pkg
14
+ rdoc
15
+ spec/reports
16
+ test/tmp
17
+ test/version_tmp
18
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Gem's dependencies in iraq_unrest.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Brian D. Smith
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,114 @@
1
+ # IraqUnrest
2
+
3
+ Ruby library to assist in the visualization of Iraq data shared by Agence France-Presse.
4
+
5
+ <img src="examples/example_01.png" alt="Example" style="width: 640px; height: 480px;"/>
6
+
7
+ * Supports serialzing into JSON, and Rickshaw.js data structures.
8
+ * Renders formatted CSV or HTML to file or string.
9
+
10
+ ## Installation
11
+
12
+ $ gem install iraq_unrest
13
+
14
+ ## Usage
15
+
16
+ ### Data
17
+
18
+ Requests are made to a [Google Spreadsheet](http://u.afp.com/JSL) provided by Agence France-Presse.
19
+ If you have any questions about the data, please contact [AFP's Baghdad Bureau](https://twitter.com/prashantrao)
20
+
21
+ Data sets currently supported:
22
+
23
+ * <code>IraqiCasualtiesComparison</code>
24
+ * <code>IraqGovernmentCasualtyFigures</code>
25
+
26
+ Each data set has Ruby methods for serializing and formatting records.
27
+
28
+ ### Visualization
29
+
30
+ A <code>visualize!</code> method is provided to create a time-series chart using HTML/Rickshaw.js
31
+
32
+ irb(main):001:0> IraqUnrest::IraqGovernmentCasualtyFigure.visualize!
33
+
34
+ => #<File:iraq_government_casualty_figure.html (closed)>
35
+
36
+ <img src="examples/example_02.png" alt="Iraq Government Casualty Figure Graph" style="width: 640px; height: 480px;"/>
37
+
38
+ irb(main):002:0> IraqUnrest::IraqiCasualtiesComparison.visualize!
39
+
40
+ => #<File:iraqi_casualties_comparison.html (closed)>
41
+
42
+ <img src="examples/example_03.png" alt="Iraqi Casualties Comparison Graph" style="width: 640px; height: 480px;"/>
43
+
44
+ ### Serialization
45
+
46
+ #### JSON
47
+
48
+ Use [ActiveModel::Serializers](https://github.com/rails-api/active_model_serializers/) to return all records as a JSON Array
49
+
50
+ irb(main):003:0> IraqUnrest::IraqGovernmentCasualtyFigure.as_json
51
+
52
+ [
53
+ [ 0] {
54
+ :date => 1383202800,
55
+ :civilian_killed => "855",
56
+ :police_killed => "65",
57
+ :army_killed => "44",
58
+ :civilian_wounded => "1445",
59
+ :police_wounded => "88",
60
+ :army_wounded => "67",
61
+ :insurg_killed => "33",
62
+ :insurg_arrested => "167"
63
+ },
64
+ ...
65
+ ]
66
+
67
+
68
+ #### Rickshaw
69
+
70
+ Return all records as a JSON hash, using each attribute as a segment. This data set
71
+ can then be rendered into a Rickshaw.js graph.
72
+
73
+ irb(main):004:0> IraqUnrest::IraqiCasualtiesComparison.as_rickshaw
74
+
75
+ {
76
+ :afp => [
77
+ [ 0] {
78
+ :x => 1075536000,
79
+ :y => 0
80
+ },
81
+ [117] {
82
+ :x => 1383202800,
83
+ :y => 743
84
+ }
85
+ ],
86
+ :iraq_gov => [...],
87
+ :iraq_body_count => [...]
88
+ }
89
+
90
+ ### Formatting
91
+
92
+ #### CSV
93
+
94
+ CSV methods provide clean and formatted data as a string or file.
95
+
96
+ Creates a CSV file in local working directory
97
+
98
+ irb(main):005:0> IraqUnrest::IraqGovernmentCasualtyFigure.to_csv!
99
+
100
+ => #<File:iraq_government_casualty_figure.csv (closed)>
101
+
102
+ As a string
103
+
104
+ irb(main):006:0> IraqUnrest::IraqGovernmentCasualtyFigure.to_csv
105
+
106
+ => "date,civilian_killed,police_killed,army_killed,civilian_wounded,police_wounded..."
107
+
108
+ ## Contributing
109
+
110
+ 1. Fork it
111
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
112
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
113
+ 4. Push to the branch (`git push origin my-new-feature`)
114
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,7 @@
1
+ require "bundler/gem_tasks"
2
+ require 'rake/testtask'
3
+
4
+ Rake::TestTask.new do |t|
5
+ t.libs << 'test'
6
+ t.pattern = "test/*_test.rb"
7
+ end
Binary file
Binary file
Binary file
@@ -0,0 +1,95 @@
1
+ date,civilian_killed,police_killed,army_killed,civilian_wounded,police_wounded,army_wounded,insurg_killed,insurg_arrested
2
+ Oct-2013,855,65,44,1445,88,67,33,167
3
+ Sep-2013,768,62,55,969,95,76,86,523
4
+ Aug-2013,267,56,33,455,78,54,87,496
5
+ Jul-2013,778,88,55,1356,122,89,68,""
6
+ Jun-2013,156,55,29,244,90,45,23,87
7
+ May-2013,446,96,88,752,193,152,51,222
8
+ Apr-2013,121,39,45,167,67,66,40,87
9
+ Mar-2013,95,45,23,135,77,44,30,67
10
+ Feb-2013,88,26,22,123,65,40,"",""
11
+ Jan-2013,120,35,22,164,54,40,33,72
12
+ Dec-2012,125,55,28,188,88,58,19,70
13
+ Nov-2012,101,35,30,129,68,55,12,51
14
+ Oct-2012,88,31,25,110,92,62,22,77
15
+ Sep-2012,182,88,95,453,110,120,"",""
16
+ Aug-2012,90,35,39,120,80,60,26,90
17
+ Jul-2012,241,40,44,480,122,95,"",""
18
+ Jun-2012,85,26,20,111,99,59,11,100
19
+ May-2012,90,20,22,115,80,53,20,105
20
+ Apr-2012,88,18,20,132,89,50,25,185
21
+ Mar-2012,78,22,12,220,85,52,30,152
22
+ Feb-2012,91,39,20,180,95,77,33,104
23
+ Jan-2012,99,31,21,151,85,85,41,214
24
+ Dec-2011,90,36,29,99,92,88,48,150
25
+ Nov-2011,112,42,33,120,110,95,55,120
26
+ Oct-2011,161,55,42,195,142,101,85,""
27
+ Sep-2011,110,42,33,132,150,82,45,215
28
+ Aug-2011,155,45,39,183,120,96,56,""
29
+ Jul-2011,159,56,44,199,135,119,22,115
30
+ Jun-2011,155,77,39,192,150,112,25,102
31
+ May-2011,102,45,30,115,66,85,32,155
32
+ Apr-2011,120,56,35,190,97,90,49,199
33
+ Mar-2011,136,55,56,215,80,75,72,209
34
+ Feb-2011,119,45,33,200,65,60,36,250
35
+ Jan-2011,159,55,45,178,95,90,65,295
36
+ Dec-2010,89,41,21,114,77,80,34,""
37
+ Nov-2010,105,43,23,155,78,60,40,195
38
+ Oct-2010,120,45,20,202,86,75,50,250
39
+ Sep-2010,185,55,33,284,90,111,78,487
40
+ Aug-2010,295,77,54,508,180,150,98,850
41
+ Jul-2010,396,89,50,680,198,165,100,955
42
+ Jun-2010,204,50,30,400,109,111,44,600
43
+ May-2010,275,45,17,520,141,57,55,660
44
+ Apr-2010,274,39,15,731,133,53,48,590
45
+ Mar-2010,216,50,101,419,120,160,57,666
46
+ Feb-2010,211,96,45,414,155,115,52,661
47
+ Jan-2010,135,41,20,620,120,42,54,681
48
+ Dec-2009,306,48,13,1137,119,32,48,635
49
+ Nov-2009,88,22,12,332,56,44,38,510
50
+ Oct-2009,343,42,25,1275,135,90,38,585
51
+ Sep-2009,125,38,40,533,102,76,43,395
52
+ Aug-2009,393,48,15,1592,129,20,52,540
53
+ Jul-2009,223,40,12,975,93,35,41,400
54
+ Jun-2009,372,45,20,960,101,34,47,635
55
+ May-2009,124,25,6,285,55,4,40,904
56
+ Apr-2009,290,41,24,640,97,10,53,831
57
+ Mar-2009,185,53,14,445,157,45,45,650
58
+ Feb-2009,211,30,17,456,61,31,61,508
59
+ Jan-2009,140,24,27,300,35,71,29,482
60
+ Dec-2008,240,58,18,609,206,47,44,667
61
+ Nov-2008,297,29,14,600,100,28,60,875
62
+ Oct-2008,278,21,18,461,61,40,44,855
63
+ Sep-2008,359,55,26,704,144,41,66,920
64
+ Aug-2008,383,30,18,680,115,64,116,1385
65
+ Jul-2008,387,45,33,601,83,63,107,""
66
+ Jun-2008,448,40,21,685,111,47,124,949
67
+ May-2008,504,32,27,857,89,57,170,2421
68
+ Apr-2008,966,69,38,1745,159,104,355,1270
69
+ Mar-2008,925,103,54,925,103,54,645,2592
70
+ Feb-2008,636,65,20,705,121,21,237,1341
71
+ Jan-2008,463,56,22,656,119,35,229,1225
72
+ Dec-2007,480,64,24,730,156,51,251,1146
73
+ Nov-2007,537,45,24,521,119,64,240,2090
74
+ Oct-2007,758,116,13,144,180,39,334,1428
75
+ Sep-2007,840,61,16,849,120,50,361,1520
76
+ Aug-2007,1771,20,65,1558,100,25,472,2027
77
+ Jul-2007,1652,144,79,1691,169,118,425,2191
78
+ Jun-2007,1241,191,31,1561,350,70,417,2265
79
+ May-2007,1951,127,46,2011,215,63,297,2355
80
+ Apr-2007,1498,128,63,2330,202,107,219,2939
81
+ Mar-2007,1869,165,44,2719,277,51,481,5664
82
+ Feb-2007,1646,131,29,2701,147,47,586,1921
83
+ Jan-2007,1992,55,40,1941,135,85,586,1921
84
+ Dec-2006,"","","","","","",423,""
85
+ Nov-2006,1847,103,25,1335,151,"","",""
86
+ Oct-2006,1289,119,19,1504,184,"","",""
87
+ Sep-2006,"","","","","","","",""
88
+ Aug-2006,"","","","","","","",""
89
+ Jul-2006,1850,"","","","","","",""
90
+ Jun-2006,887,79,43,1588,126,57,93,""
91
+ May-2006,932,95,28,1271,97,57,324,""
92
+ Apr-2006,"","","","","","","",""
93
+ Mar-2006,"","","","","","","",""
94
+ Feb-2006,"","","","","","","",""
95
+ Jan-2006,"","","","","","","",""
@@ -0,0 +1,126 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <title>Iraq Government Casualty Figures</title>
5
+ <meta charset="UTF-8">
6
+ <meta name="description" content="Iraq Unrest Data Visualization">
7
+ <meta name="author" content="Brian Douglas Smith">
8
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/rickshaw/1.3.0/rickshaw.min.css">
10
+ <style type="text/css">
11
+
12
+ #chart_container {
13
+ position: relative;
14
+ display: inline-block;
15
+ font-family: Arial, Helvetica, sans-serif;
16
+ }
17
+
18
+ #y_axis {
19
+ position: absolute;
20
+ top: 0;
21
+ bottom: 0;
22
+ width: 40px;
23
+ }
24
+
25
+ #chart {
26
+ display: inline-block;
27
+ margin-left: 40px;
28
+ }
29
+
30
+ #legend {
31
+ display: inline-block;
32
+ position: relative;
33
+ left: 8px;
34
+ }
35
+
36
+ </style>
37
+
38
+ </head>
39
+
40
+ <body>
41
+ <h1>Iraq Government Casualty Figures</h1>
42
+ <p><a href="https://github.com/bds/iraq_toll">https://github.com/bds/iraq_toll</a></p>
43
+ <div id="chart_container">
44
+ <div id="y_axis"></div>
45
+ <div id="chart"></div>
46
+ </div>
47
+ <div id="legend"></div>
48
+
49
+ <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.3.3/d3.min.js"></script>
50
+ <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/rickshaw/1.3.0/rickshaw.min.js"></script>
51
+
52
+ <script type="text/javascript">
53
+ var palette = new Rickshaw.Color.Palette( { scheme: 'cool' } );
54
+
55
+ var graph = new Rickshaw.Graph( {
56
+ element: document.querySelector("#chart"),
57
+ renderer: 'area', width: 640, height: 480,
58
+ series: [ {
59
+ name: 'Civilian Killed',
60
+ color: palette.color(),
61
+ data: [{"x":1138694400,"y":0},{"x":1141113600,"y":0},{"x":1143792000,"y":0},{"x":1146380400,"y":0},{"x":1149058800,"y":932},{"x":1151650800,"y":887},{"x":1154329200,"y":1850},{"x":1157007600,"y":0},{"x":1159599600,"y":0},{"x":1162281600,"y":1289},{"x":1164873600,"y":1847},{"x":1167552000,"y":0},{"x":1170230400,"y":1992},{"x":1172649600,"y":1646},{"x":1175324400,"y":1869},{"x":1177916400,"y":1498},{"x":1180594800,"y":1951},{"x":1183186800,"y":1241},{"x":1185865200,"y":1652},{"x":1188543600,"y":1771},{"x":1191135600,"y":840},{"x":1193814000,"y":758},{"x":1196409600,"y":537},{"x":1199088000,"y":480},{"x":1201766400,"y":463},{"x":1204272000,"y":636},{"x":1206946800,"y":925},{"x":1209538800,"y":966},{"x":1212217200,"y":504},{"x":1214809200,"y":448},{"x":1217487600,"y":387},{"x":1220166000,"y":383},{"x":1222758000,"y":359},{"x":1225436400,"y":278},{"x":1228032000,"y":297},{"x":1230710400,"y":240},{"x":1233388800,"y":140},{"x":1235808000,"y":211},{"x":1238482800,"y":185},{"x":1241074800,"y":290},{"x":1243753200,"y":124},{"x":1246345200,"y":372},{"x":1249023600,"y":223},{"x":1251702000,"y":393},{"x":1254294000,"y":125},{"x":1256972400,"y":343},{"x":1259568000,"y":88},{"x":1262246400,"y":306},{"x":1264924800,"y":135},{"x":1267344000,"y":211},{"x":1270018800,"y":216},{"x":1272610800,"y":274},{"x":1275289200,"y":275},{"x":1277881200,"y":204},{"x":1280559600,"y":396},{"x":1283238000,"y":295},{"x":1285830000,"y":185},{"x":1288508400,"y":120},{"x":1291104000,"y":105},{"x":1293782400,"y":89},{"x":1296460800,"y":159},{"x":1298880000,"y":119},{"x":1301554800,"y":136},{"x":1304146800,"y":120},{"x":1306825200,"y":102},{"x":1309417200,"y":155},{"x":1312095600,"y":159},{"x":1314774000,"y":155},{"x":1317366000,"y":110},{"x":1320044400,"y":161},{"x":1322640000,"y":112},{"x":1325318400,"y":90},{"x":1327996800,"y":99},{"x":1330502400,"y":91},{"x":1333177200,"y":78},{"x":1335769200,"y":88},{"x":1338447600,"y":90},{"x":1341039600,"y":85},{"x":1343718000,"y":241},{"x":1346396400,"y":90},{"x":1348988400,"y":182},{"x":1351666800,"y":88},{"x":1354262400,"y":101},{"x":1356940800,"y":125},{"x":1359619200,"y":120},{"x":1362038400,"y":88},{"x":1364713200,"y":95},{"x":1367305200,"y":121},{"x":1369983600,"y":446},{"x":1372575600,"y":156},{"x":1375254000,"y":778},{"x":1377932400,"y":267},{"x":1380524400,"y":768},{"x":1383202800,"y":855}]
62
+ }, {
63
+ name: 'Civilian Wounded',
64
+ color: palette.color(),
65
+ data: [{"x":1138694400,"y":0},{"x":1141113600,"y":0},{"x":1143792000,"y":0},{"x":1146380400,"y":0},{"x":1149058800,"y":1271},{"x":1151650800,"y":1588},{"x":1154329200,"y":0},{"x":1157007600,"y":0},{"x":1159599600,"y":0},{"x":1162281600,"y":1504},{"x":1164873600,"y":1335},{"x":1167552000,"y":0},{"x":1170230400,"y":1941},{"x":1172649600,"y":2701},{"x":1175324400,"y":2719},{"x":1177916400,"y":2330},{"x":1180594800,"y":2011},{"x":1183186800,"y":1561},{"x":1185865200,"y":1691},{"x":1188543600,"y":1558},{"x":1191135600,"y":849},{"x":1193814000,"y":144},{"x":1196409600,"y":521},{"x":1199088000,"y":730},{"x":1201766400,"y":656},{"x":1204272000,"y":705},{"x":1206946800,"y":925},{"x":1209538800,"y":1745},{"x":1212217200,"y":857},{"x":1214809200,"y":685},{"x":1217487600,"y":601},{"x":1220166000,"y":680},{"x":1222758000,"y":704},{"x":1225436400,"y":461},{"x":1228032000,"y":600},{"x":1230710400,"y":609},{"x":1233388800,"y":300},{"x":1235808000,"y":456},{"x":1238482800,"y":445},{"x":1241074800,"y":640},{"x":1243753200,"y":285},{"x":1246345200,"y":960},{"x":1249023600,"y":975},{"x":1251702000,"y":1592},{"x":1254294000,"y":533},{"x":1256972400,"y":1275},{"x":1259568000,"y":332},{"x":1262246400,"y":1137},{"x":1264924800,"y":620},{"x":1267344000,"y":414},{"x":1270018800,"y":419},{"x":1272610800,"y":731},{"x":1275289200,"y":520},{"x":1277881200,"y":400},{"x":1280559600,"y":680},{"x":1283238000,"y":508},{"x":1285830000,"y":284},{"x":1288508400,"y":202},{"x":1291104000,"y":155},{"x":1293782400,"y":114},{"x":1296460800,"y":178},{"x":1298880000,"y":200},{"x":1301554800,"y":215},{"x":1304146800,"y":190},{"x":1306825200,"y":115},{"x":1309417200,"y":192},{"x":1312095600,"y":199},{"x":1314774000,"y":183},{"x":1317366000,"y":132},{"x":1320044400,"y":195},{"x":1322640000,"y":120},{"x":1325318400,"y":99},{"x":1327996800,"y":151},{"x":1330502400,"y":180},{"x":1333177200,"y":220},{"x":1335769200,"y":132},{"x":1338447600,"y":115},{"x":1341039600,"y":111},{"x":1343718000,"y":480},{"x":1346396400,"y":120},{"x":1348988400,"y":453},{"x":1351666800,"y":110},{"x":1354262400,"y":129},{"x":1356940800,"y":188},{"x":1359619200,"y":164},{"x":1362038400,"y":123},{"x":1364713200,"y":135},{"x":1367305200,"y":167},{"x":1369983600,"y":752},{"x":1372575600,"y":244},{"x":1375254000,"y":1356},{"x":1377932400,"y":455},{"x":1380524400,"y":969},{"x":1383202800,"y":1445}]
66
+ }, {
67
+ name: 'Police Killed',
68
+ color: palette.color(),
69
+ data: [{"x":1138694400,"y":0},{"x":1141113600,"y":0},{"x":1143792000,"y":0},{"x":1146380400,"y":0},{"x":1149058800,"y":95},{"x":1151650800,"y":79},{"x":1154329200,"y":0},{"x":1157007600,"y":0},{"x":1159599600,"y":0},{"x":1162281600,"y":119},{"x":1164873600,"y":103},{"x":1167552000,"y":0},{"x":1170230400,"y":55},{"x":1172649600,"y":131},{"x":1175324400,"y":165},{"x":1177916400,"y":128},{"x":1180594800,"y":127},{"x":1183186800,"y":191},{"x":1185865200,"y":144},{"x":1188543600,"y":20},{"x":1191135600,"y":61},{"x":1193814000,"y":116},{"x":1196409600,"y":45},{"x":1199088000,"y":64},{"x":1201766400,"y":56},{"x":1204272000,"y":65},{"x":1206946800,"y":103},{"x":1209538800,"y":69},{"x":1212217200,"y":32},{"x":1214809200,"y":40},{"x":1217487600,"y":45},{"x":1220166000,"y":30},{"x":1222758000,"y":55},{"x":1225436400,"y":21},{"x":1228032000,"y":29},{"x":1230710400,"y":58},{"x":1233388800,"y":24},{"x":1235808000,"y":30},{"x":1238482800,"y":53},{"x":1241074800,"y":41},{"x":1243753200,"y":25},{"x":1246345200,"y":45},{"x":1249023600,"y":40},{"x":1251702000,"y":48},{"x":1254294000,"y":38},{"x":1256972400,"y":42},{"x":1259568000,"y":22},{"x":1262246400,"y":48},{"x":1264924800,"y":41},{"x":1267344000,"y":96},{"x":1270018800,"y":50},{"x":1272610800,"y":39},{"x":1275289200,"y":45},{"x":1277881200,"y":50},{"x":1280559600,"y":89},{"x":1283238000,"y":77},{"x":1285830000,"y":55},{"x":1288508400,"y":45},{"x":1291104000,"y":43},{"x":1293782400,"y":41},{"x":1296460800,"y":55},{"x":1298880000,"y":45},{"x":1301554800,"y":55},{"x":1304146800,"y":56},{"x":1306825200,"y":45},{"x":1309417200,"y":77},{"x":1312095600,"y":56},{"x":1314774000,"y":45},{"x":1317366000,"y":42},{"x":1320044400,"y":55},{"x":1322640000,"y":42},{"x":1325318400,"y":36},{"x":1327996800,"y":31},{"x":1330502400,"y":39},{"x":1333177200,"y":22},{"x":1335769200,"y":18},{"x":1338447600,"y":20},{"x":1341039600,"y":26},{"x":1343718000,"y":40},{"x":1346396400,"y":35},{"x":1348988400,"y":88},{"x":1351666800,"y":31},{"x":1354262400,"y":35},{"x":1356940800,"y":55},{"x":1359619200,"y":35},{"x":1362038400,"y":26},{"x":1364713200,"y":45},{"x":1367305200,"y":39},{"x":1369983600,"y":96},{"x":1372575600,"y":55},{"x":1375254000,"y":88},{"x":1377932400,"y":56},{"x":1380524400,"y":62},{"x":1383202800,"y":65}]
70
+ }, {
71
+ name: 'Police Wounded',
72
+ color: palette.color(),
73
+ data: [{"x":1138694400,"y":0},{"x":1141113600,"y":0},{"x":1143792000,"y":0},{"x":1146380400,"y":0},{"x":1149058800,"y":97},{"x":1151650800,"y":126},{"x":1154329200,"y":0},{"x":1157007600,"y":0},{"x":1159599600,"y":0},{"x":1162281600,"y":184},{"x":1164873600,"y":151},{"x":1167552000,"y":0},{"x":1170230400,"y":135},{"x":1172649600,"y":147},{"x":1175324400,"y":277},{"x":1177916400,"y":202},{"x":1180594800,"y":215},{"x":1183186800,"y":350},{"x":1185865200,"y":169},{"x":1188543600,"y":100},{"x":1191135600,"y":120},{"x":1193814000,"y":180},{"x":1196409600,"y":119},{"x":1199088000,"y":156},{"x":1201766400,"y":119},{"x":1204272000,"y":121},{"x":1206946800,"y":103},{"x":1209538800,"y":159},{"x":1212217200,"y":89},{"x":1214809200,"y":111},{"x":1217487600,"y":83},{"x":1220166000,"y":115},{"x":1222758000,"y":144},{"x":1225436400,"y":61},{"x":1228032000,"y":100},{"x":1230710400,"y":206},{"x":1233388800,"y":35},{"x":1235808000,"y":61},{"x":1238482800,"y":157},{"x":1241074800,"y":97},{"x":1243753200,"y":55},{"x":1246345200,"y":101},{"x":1249023600,"y":93},{"x":1251702000,"y":129},{"x":1254294000,"y":102},{"x":1256972400,"y":135},{"x":1259568000,"y":56},{"x":1262246400,"y":119},{"x":1264924800,"y":120},{"x":1267344000,"y":155},{"x":1270018800,"y":120},{"x":1272610800,"y":133},{"x":1275289200,"y":141},{"x":1277881200,"y":109},{"x":1280559600,"y":198},{"x":1283238000,"y":180},{"x":1285830000,"y":90},{"x":1288508400,"y":86},{"x":1291104000,"y":78},{"x":1293782400,"y":77},{"x":1296460800,"y":95},{"x":1298880000,"y":65},{"x":1301554800,"y":80},{"x":1304146800,"y":97},{"x":1306825200,"y":66},{"x":1309417200,"y":150},{"x":1312095600,"y":135},{"x":1314774000,"y":120},{"x":1317366000,"y":150},{"x":1320044400,"y":142},{"x":1322640000,"y":110},{"x":1325318400,"y":92},{"x":1327996800,"y":85},{"x":1330502400,"y":95},{"x":1333177200,"y":85},{"x":1335769200,"y":89},{"x":1338447600,"y":80},{"x":1341039600,"y":99},{"x":1343718000,"y":122},{"x":1346396400,"y":80},{"x":1348988400,"y":110},{"x":1351666800,"y":92},{"x":1354262400,"y":68},{"x":1356940800,"y":88},{"x":1359619200,"y":54},{"x":1362038400,"y":65},{"x":1364713200,"y":77},{"x":1367305200,"y":67},{"x":1369983600,"y":193},{"x":1372575600,"y":90},{"x":1375254000,"y":122},{"x":1377932400,"y":78},{"x":1380524400,"y":95},{"x":1383202800,"y":88}]
74
+ }, {
75
+ name: 'Army Killed',
76
+ color: palette.color(),
77
+ data: [{"x":1138694400,"y":0},{"x":1141113600,"y":0},{"x":1143792000,"y":0},{"x":1146380400,"y":0},{"x":1149058800,"y":28},{"x":1151650800,"y":43},{"x":1154329200,"y":0},{"x":1157007600,"y":0},{"x":1159599600,"y":0},{"x":1162281600,"y":19},{"x":1164873600,"y":25},{"x":1167552000,"y":0},{"x":1170230400,"y":40},{"x":1172649600,"y":29},{"x":1175324400,"y":44},{"x":1177916400,"y":63},{"x":1180594800,"y":46},{"x":1183186800,"y":31},{"x":1185865200,"y":79},{"x":1188543600,"y":65},{"x":1191135600,"y":16},{"x":1193814000,"y":13},{"x":1196409600,"y":24},{"x":1199088000,"y":24},{"x":1201766400,"y":22},{"x":1204272000,"y":20},{"x":1206946800,"y":54},{"x":1209538800,"y":38},{"x":1212217200,"y":27},{"x":1214809200,"y":21},{"x":1217487600,"y":33},{"x":1220166000,"y":18},{"x":1222758000,"y":26},{"x":1225436400,"y":18},{"x":1228032000,"y":14},{"x":1230710400,"y":18},{"x":1233388800,"y":27},{"x":1235808000,"y":17},{"x":1238482800,"y":14},{"x":1241074800,"y":24},{"x":1243753200,"y":6},{"x":1246345200,"y":20},{"x":1249023600,"y":12},{"x":1251702000,"y":15},{"x":1254294000,"y":40},{"x":1256972400,"y":25},{"x":1259568000,"y":12},{"x":1262246400,"y":13},{"x":1264924800,"y":20},{"x":1267344000,"y":45},{"x":1270018800,"y":101},{"x":1272610800,"y":15},{"x":1275289200,"y":17},{"x":1277881200,"y":30},{"x":1280559600,"y":50},{"x":1283238000,"y":54},{"x":1285830000,"y":33},{"x":1288508400,"y":20},{"x":1291104000,"y":23},{"x":1293782400,"y":21},{"x":1296460800,"y":45},{"x":1298880000,"y":33},{"x":1301554800,"y":56},{"x":1304146800,"y":35},{"x":1306825200,"y":30},{"x":1309417200,"y":39},{"x":1312095600,"y":44},{"x":1314774000,"y":39},{"x":1317366000,"y":33},{"x":1320044400,"y":42},{"x":1322640000,"y":33},{"x":1325318400,"y":29},{"x":1327996800,"y":21},{"x":1330502400,"y":20},{"x":1333177200,"y":12},{"x":1335769200,"y":20},{"x":1338447600,"y":22},{"x":1341039600,"y":20},{"x":1343718000,"y":44},{"x":1346396400,"y":39},{"x":1348988400,"y":95},{"x":1351666800,"y":25},{"x":1354262400,"y":30},{"x":1356940800,"y":28},{"x":1359619200,"y":22},{"x":1362038400,"y":22},{"x":1364713200,"y":23},{"x":1367305200,"y":45},{"x":1369983600,"y":88},{"x":1372575600,"y":29},{"x":1375254000,"y":55},{"x":1377932400,"y":33},{"x":1380524400,"y":55},{"x":1383202800,"y":44}]
78
+ }, {
79
+ name: 'Army Wounded',
80
+ color: palette.color(),
81
+ data: [{"x":1138694400,"y":0},{"x":1141113600,"y":0},{"x":1143792000,"y":0},{"x":1146380400,"y":0},{"x":1149058800,"y":57},{"x":1151650800,"y":57},{"x":1154329200,"y":0},{"x":1157007600,"y":0},{"x":1159599600,"y":0},{"x":1162281600,"y":0},{"x":1164873600,"y":0},{"x":1167552000,"y":0},{"x":1170230400,"y":85},{"x":1172649600,"y":47},{"x":1175324400,"y":51},{"x":1177916400,"y":107},{"x":1180594800,"y":63},{"x":1183186800,"y":70},{"x":1185865200,"y":118},{"x":1188543600,"y":25},{"x":1191135600,"y":50},{"x":1193814000,"y":39},{"x":1196409600,"y":64},{"x":1199088000,"y":51},{"x":1201766400,"y":35},{"x":1204272000,"y":21},{"x":1206946800,"y":54},{"x":1209538800,"y":104},{"x":1212217200,"y":57},{"x":1214809200,"y":47},{"x":1217487600,"y":63},{"x":1220166000,"y":64},{"x":1222758000,"y":41},{"x":1225436400,"y":40},{"x":1228032000,"y":28},{"x":1230710400,"y":47},{"x":1233388800,"y":71},{"x":1235808000,"y":31},{"x":1238482800,"y":45},{"x":1241074800,"y":10},{"x":1243753200,"y":4},{"x":1246345200,"y":34},{"x":1249023600,"y":35},{"x":1251702000,"y":20},{"x":1254294000,"y":76},{"x":1256972400,"y":90},{"x":1259568000,"y":44},{"x":1262246400,"y":32},{"x":1264924800,"y":42},{"x":1267344000,"y":115},{"x":1270018800,"y":160},{"x":1272610800,"y":53},{"x":1275289200,"y":57},{"x":1277881200,"y":111},{"x":1280559600,"y":165},{"x":1283238000,"y":150},{"x":1285830000,"y":111},{"x":1288508400,"y":75},{"x":1291104000,"y":60},{"x":1293782400,"y":80},{"x":1296460800,"y":90},{"x":1298880000,"y":60},{"x":1301554800,"y":75},{"x":1304146800,"y":90},{"x":1306825200,"y":85},{"x":1309417200,"y":112},{"x":1312095600,"y":119},{"x":1314774000,"y":96},{"x":1317366000,"y":82},{"x":1320044400,"y":101},{"x":1322640000,"y":95},{"x":1325318400,"y":88},{"x":1327996800,"y":85},{"x":1330502400,"y":77},{"x":1333177200,"y":52},{"x":1335769200,"y":50},{"x":1338447600,"y":53},{"x":1341039600,"y":59},{"x":1343718000,"y":95},{"x":1346396400,"y":60},{"x":1348988400,"y":120},{"x":1351666800,"y":62},{"x":1354262400,"y":55},{"x":1356940800,"y":58},{"x":1359619200,"y":40},{"x":1362038400,"y":40},{"x":1364713200,"y":44},{"x":1367305200,"y":66},{"x":1369983600,"y":152},{"x":1372575600,"y":45},{"x":1375254000,"y":89},{"x":1377932400,"y":54},{"x":1380524400,"y":76},{"x":1383202800,"y":67}]
82
+ }, {
83
+ name: 'Insurgent Killed',
84
+ color: palette.color(),
85
+ data: [{"x":1138694400,"y":0},{"x":1141113600,"y":0},{"x":1143792000,"y":0},{"x":1146380400,"y":0},{"x":1149058800,"y":324},{"x":1151650800,"y":93},{"x":1154329200,"y":0},{"x":1157007600,"y":0},{"x":1159599600,"y":0},{"x":1162281600,"y":0},{"x":1164873600,"y":0},{"x":1167552000,"y":423},{"x":1170230400,"y":586},{"x":1172649600,"y":586},{"x":1175324400,"y":481},{"x":1177916400,"y":219},{"x":1180594800,"y":297},{"x":1183186800,"y":417},{"x":1185865200,"y":425},{"x":1188543600,"y":472},{"x":1191135600,"y":361},{"x":1193814000,"y":334},{"x":1196409600,"y":240},{"x":1199088000,"y":251},{"x":1201766400,"y":229},{"x":1204272000,"y":237},{"x":1206946800,"y":645},{"x":1209538800,"y":355},{"x":1212217200,"y":170},{"x":1214809200,"y":124},{"x":1217487600,"y":107},{"x":1220166000,"y":116},{"x":1222758000,"y":66},{"x":1225436400,"y":44},{"x":1228032000,"y":60},{"x":1230710400,"y":44},{"x":1233388800,"y":29},{"x":1235808000,"y":61},{"x":1238482800,"y":45},{"x":1241074800,"y":53},{"x":1243753200,"y":40},{"x":1246345200,"y":47},{"x":1249023600,"y":41},{"x":1251702000,"y":52},{"x":1254294000,"y":43},{"x":1256972400,"y":38},{"x":1259568000,"y":38},{"x":1262246400,"y":48},{"x":1264924800,"y":54},{"x":1267344000,"y":52},{"x":1270018800,"y":57},{"x":1272610800,"y":48},{"x":1275289200,"y":55},{"x":1277881200,"y":44},{"x":1280559600,"y":100},{"x":1283238000,"y":98},{"x":1285830000,"y":78},{"x":1288508400,"y":50},{"x":1291104000,"y":40},{"x":1293782400,"y":34},{"x":1296460800,"y":65},{"x":1298880000,"y":36},{"x":1301554800,"y":72},{"x":1304146800,"y":49},{"x":1306825200,"y":32},{"x":1309417200,"y":25},{"x":1312095600,"y":22},{"x":1314774000,"y":56},{"x":1317366000,"y":45},{"x":1320044400,"y":85},{"x":1322640000,"y":55},{"x":1325318400,"y":48},{"x":1327996800,"y":41},{"x":1330502400,"y":33},{"x":1333177200,"y":30},{"x":1335769200,"y":25},{"x":1338447600,"y":20},{"x":1341039600,"y":11},{"x":1343718000,"y":0},{"x":1346396400,"y":26},{"x":1348988400,"y":0},{"x":1351666800,"y":22},{"x":1354262400,"y":12},{"x":1356940800,"y":19},{"x":1359619200,"y":33},{"x":1362038400,"y":0},{"x":1364713200,"y":30},{"x":1367305200,"y":40},{"x":1369983600,"y":51},{"x":1372575600,"y":23},{"x":1375254000,"y":68},{"x":1377932400,"y":87},{"x":1380524400,"y":86},{"x":1383202800,"y":33}]
86
+ }, {
87
+ name: 'Insurgent Arrested',
88
+ color: palette.color(),
89
+ data: [{"x":1138694400,"y":0},{"x":1141113600,"y":0},{"x":1143792000,"y":0},{"x":1146380400,"y":0},{"x":1149058800,"y":0},{"x":1151650800,"y":0},{"x":1154329200,"y":0},{"x":1157007600,"y":0},{"x":1159599600,"y":0},{"x":1162281600,"y":0},{"x":1164873600,"y":0},{"x":1167552000,"y":0},{"x":1170230400,"y":1921},{"x":1172649600,"y":1921},{"x":1175324400,"y":5664},{"x":1177916400,"y":2939},{"x":1180594800,"y":2355},{"x":1183186800,"y":2265},{"x":1185865200,"y":2191},{"x":1188543600,"y":2027},{"x":1191135600,"y":1520},{"x":1193814000,"y":1428},{"x":1196409600,"y":2090},{"x":1199088000,"y":1146},{"x":1201766400,"y":1225},{"x":1204272000,"y":1341},{"x":1206946800,"y":2592},{"x":1209538800,"y":1270},{"x":1212217200,"y":2421},{"x":1214809200,"y":949},{"x":1217487600,"y":0},{"x":1220166000,"y":1385},{"x":1222758000,"y":920},{"x":1225436400,"y":855},{"x":1228032000,"y":875},{"x":1230710400,"y":667},{"x":1233388800,"y":482},{"x":1235808000,"y":508},{"x":1238482800,"y":650},{"x":1241074800,"y":831},{"x":1243753200,"y":904},{"x":1246345200,"y":635},{"x":1249023600,"y":400},{"x":1251702000,"y":540},{"x":1254294000,"y":395},{"x":1256972400,"y":585},{"x":1259568000,"y":510},{"x":1262246400,"y":635},{"x":1264924800,"y":681},{"x":1267344000,"y":661},{"x":1270018800,"y":666},{"x":1272610800,"y":590},{"x":1275289200,"y":660},{"x":1277881200,"y":600},{"x":1280559600,"y":955},{"x":1283238000,"y":850},{"x":1285830000,"y":487},{"x":1288508400,"y":250},{"x":1291104000,"y":195},{"x":1293782400,"y":0},{"x":1296460800,"y":295},{"x":1298880000,"y":250},{"x":1301554800,"y":209},{"x":1304146800,"y":199},{"x":1306825200,"y":155},{"x":1309417200,"y":102},{"x":1312095600,"y":115},{"x":1314774000,"y":0},{"x":1317366000,"y":215},{"x":1320044400,"y":0},{"x":1322640000,"y":120},{"x":1325318400,"y":150},{"x":1327996800,"y":214},{"x":1330502400,"y":104},{"x":1333177200,"y":152},{"x":1335769200,"y":185},{"x":1338447600,"y":105},{"x":1341039600,"y":100},{"x":1343718000,"y":0},{"x":1346396400,"y":90},{"x":1348988400,"y":0},{"x":1351666800,"y":77},{"x":1354262400,"y":51},{"x":1356940800,"y":70},{"x":1359619200,"y":72},{"x":1362038400,"y":0},{"x":1364713200,"y":67},{"x":1367305200,"y":87},{"x":1369983600,"y":222},{"x":1372575600,"y":87},{"x":1375254000,"y":0},{"x":1377932400,"y":496},{"x":1380524400,"y":523},{"x":1383202800,"y":167}]
90
+ } ]});
91
+
92
+ var x_axis = new Rickshaw.Graph.Axis.Time( {
93
+ graph: graph
94
+ } );
95
+
96
+ var y_axis = new Rickshaw.Graph.Axis.Y( {
97
+ graph: graph,
98
+ orientation: 'left',
99
+ element: document.getElementById('y_axis'),
100
+ } );
101
+
102
+ var legend = new Rickshaw.Graph.Legend({
103
+ graph: graph,
104
+ element: document.getElementById('legend')
105
+ });
106
+
107
+ var shelving = new Rickshaw.Graph.Behavior.Series.Toggle({
108
+ graph: graph,
109
+ legend: legend
110
+ });
111
+
112
+ var highlighter = new Rickshaw.Graph.Behavior.Series.Highlight({
113
+ graph: graph,
114
+ legend: legend
115
+ });
116
+
117
+ var hoverDetail = new Rickshaw.Graph.HoverDetail( {
118
+ graph: graph,
119
+ yFormatter: function(y) { return Math.floor(y) + "" }
120
+ } );
121
+
122
+ graph.render();
123
+ </script>
124
+
125
+ </body>
126
+ </html>
@@ -0,0 +1,119 @@
1
+ date,afp,iraq_gov,iraq_body_count
2
+ Oct-2013,743,964,""
3
+ Sep-2013,880,885,""
4
+ Aug-2013,693,356,""
5
+ Jul-2013,875,921,""
6
+ Jun-2013,452,240,""
7
+ May-2013,614,630,887
8
+ Apr-2013,461,205,544
9
+ Mar-2013,271,163,395
10
+ Feb-2013,220,136,358
11
+ Jan-2013,246,177,357
12
+ Dec-2012,144,208,275
13
+ Nov-2012,160,166,240
14
+ Oct-2012,136,144,290
15
+ Sep-2012,253,365,396
16
+ Aug-2012,278,164,422
17
+ Jul-2012,278,325,469
18
+ Jun-2012,282,131,529
19
+ May-2012,"",132,304
20
+ Apr-2012,"",126,392
21
+ Mar-2012,"",112,377
22
+ Feb-2012,"",150,356
23
+ Jan-2012,"",151,524
24
+ Dec-2011,"",155,388
25
+ Nov-2011,"",187,279
26
+ Oct-2011,"",258,366
27
+ Sep-2011,"",185,397
28
+ Aug-2011,"",239,401
29
+ Jul-2011,"",259,308
30
+ Jun-2011,"",271,386
31
+ May-2011,"",177,381
32
+ Apr-2011,"",211,289
33
+ Mar-2011,"",247,311
34
+ Feb-2011,"",197,252
35
+ Jan-2011,"",259,389
36
+ Dec-2010,"",151,217
37
+ Nov-2010,"",171,307
38
+ Oct-2010,"",185,312
39
+ Sep-2010,"",273,254
40
+ Aug-2010,"",426,516
41
+ Jul-2010,"",535,443
42
+ Jun-2010,"",284,385
43
+ May-2010,"",337,387
44
+ Apr-2010,"",328,385
45
+ Mar-2010,"",367,336
46
+ Feb-2010,"",352,304
47
+ Jan-2010,"",196,263
48
+ Dec-2009,"",367,475
49
+ Nov-2009,"",122,226
50
+ Oct-2009,"",410,435
51
+ Sep-2009,"",203,332
52
+ Aug-2009,"",456,618
53
+ Jul-2009,"",275,407
54
+ Jun-2009,"",437,498
55
+ May-2009,"",155,387
56
+ Apr-2009,"",355,565
57
+ Mar-2009,"",252,426
58
+ Feb-2009,"",258,402
59
+ Jan-2009,"",191,366
60
+ Dec-2008,"",316,576
61
+ Nov-2008,"",340,521
62
+ Oct-2008,"",317,575
63
+ Sep-2008,"",440,584
64
+ Aug-2008,"",431,627
65
+ Jul-2008,"",465,623
66
+ Jun-2008,"",509,747
67
+ May-2008,"",563,886
68
+ Apr-2008,"",1073,1272
69
+ Mar-2008,"",1082,1623
70
+ Feb-2008,"",721,1049
71
+ Jan-2008,"",541,844
72
+ Dec-2007,"",568,982
73
+ Nov-2007,"",606,1095
74
+ Oct-2007,"",887,1286
75
+ Sep-2007,"",917,1360
76
+ Aug-2007,"",1856,2457
77
+ Jul-2007,"",1875,2671
78
+ Jun-2007,"",1463,2180
79
+ May-2007,"",2124,2809
80
+ Apr-2007,"",1689,2495
81
+ Mar-2007,"",2078,2682
82
+ Feb-2007,"",1806,2607
83
+ Jan-2007,"",2087,2948
84
+ Dec-2006,"",0,2886
85
+ Nov-2006,"",1975,3064
86
+ Oct-2006,"",1427,2977
87
+ Sep-2006,"",0,2556
88
+ Aug-2006,"",0,2835
89
+ Jul-2006,"",1850,3279
90
+ Jun-2006,"",1009,2553
91
+ May-2006,"",1055,2251
92
+ Apr-2006,"",0,1792
93
+ Mar-2006,"",0,1940
94
+ Feb-2006,"",0,1569
95
+ Jan-2006,"",0,1543
96
+ Dec-2005,"","",1135
97
+ Nov-2005,"","",1465
98
+ Oct-2005,"","",1298
99
+ Sep-2005,"","",1415
100
+ Aug-2005,"","",2266
101
+ Jul-2005,"","",1528
102
+ Jun-2005,"","",1299
103
+ May-2005,"","",1336
104
+ Apr-2005,"","",1119
105
+ Mar-2005,"","",871
106
+ Feb-2005,"","",1266
107
+ Jan-2005,"","",1188
108
+ Dec-2004,"","",1106
109
+ Nov-2004,"","",1653
110
+ Oct-2004,"","",1011
111
+ Sep-2004,"","",1031
112
+ Aug-2004,"","",868
113
+ Jul-2004,"","",818
114
+ Jun-2004,"","",900
115
+ May-2004,"","",656
116
+ Apr-2004,"","",1304
117
+ Mar-2004,"","",1001
118
+ Feb-2004,"","",660
119
+ Jan-2004,"","",609