singapore_cpf_calculator 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (163) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +22 -0
  3. data/.rspec +2 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +97 -0
  7. data/Rakefile +2 -0
  8. data/circle.yml +3 -0
  9. data/lib/singapore_cpf_calculator.rb +125 -0
  10. data/lib/singapore_cpf_calculator/age_group.rb +71 -0
  11. data/lib/singapore_cpf_calculator/base_calculator.rb +114 -0
  12. data/lib/singapore_cpf_calculator/before_spr.rb +36 -0
  13. data/lib/singapore_cpf_calculator/citizen_or_spr_3_common.rb +27 -0
  14. data/lib/singapore_cpf_calculator/cpf_contribution.rb +28 -0
  15. data/lib/singapore_cpf_calculator/null_contribution_calculator.rb +17 -0
  16. data/lib/singapore_cpf_calculator/requirements.rb +10 -0
  17. data/lib/singapore_cpf_calculator/requirements/group_50_years_and_below.rb +13 -0
  18. data/lib/singapore_cpf_calculator/requirements/group_above_50_to_55_years.rb +13 -0
  19. data/lib/singapore_cpf_calculator/requirements/group_above_55_to_60_years.rb +13 -0
  20. data/lib/singapore_cpf_calculator/requirements/group_above_60_to_65_years.rb +13 -0
  21. data/lib/singapore_cpf_calculator/requirements/group_above_65_years.rb +13 -0
  22. data/lib/singapore_cpf_calculator/residency_module_common.rb +12 -0
  23. data/lib/singapore_cpf_calculator/spr_1_fg_common.rb +26 -0
  24. data/lib/singapore_cpf_calculator/spr_1_gg_common.rb +26 -0
  25. data/lib/singapore_cpf_calculator/spr_2_fg_common.rb +26 -0
  26. data/lib/singapore_cpf_calculator/spr_2_gg_common.rb +26 -0
  27. data/lib/singapore_cpf_calculator/spr_status.rb +52 -0
  28. data/lib/singapore_cpf_calculator/version.rb +3 -0
  29. data/lib/singapore_cpf_calculator/year_2014.rb +37 -0
  30. data/lib/singapore_cpf_calculator/year_2014/base.rb +17 -0
  31. data/lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3.rb +35 -0
  32. data/lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_below_contribution_calculator.rb +32 -0
  33. data/lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_to_55_contribution_calculator.rb +33 -0
  34. data/lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb +32 -0
  35. data/lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_60_to_65_contribution_calculator.rb +32 -0
  36. data/lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_65_up_contribution_calculator.rb +32 -0
  37. data/lib/singapore_cpf_calculator/year_2014/spr_1_fg.rb +36 -0
  38. data/lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_below_contribution_calculator.rb +33 -0
  39. data/lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_to_55_contribution_calculator.rb +32 -0
  40. data/lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_55_to_60_contribution_calculator.rb +32 -0
  41. data/lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_60_to_65_contribution_calculator.rb +32 -0
  42. data/lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_65_up_contribution_calculator.rb +32 -0
  43. data/lib/singapore_cpf_calculator/year_2014/spr_1_gg.rb +36 -0
  44. data/lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_below_contribution_calculator.rb +32 -0
  45. data/lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_to_55_contribution_calculator.rb +14 -0
  46. data/lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_55_to_60_contribution_calculator.rb +14 -0
  47. data/lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_60_to_65_contribution_calculator.rb +32 -0
  48. data/lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_65_up_contribution_calculator.rb +32 -0
  49. data/lib/singapore_cpf_calculator/year_2014/spr_2_fg.rb +36 -0
  50. data/lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_below_contribution_calculator.rb +32 -0
  51. data/lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_to_55_contribution_calculator.rb +32 -0
  52. data/lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_55_to_60_contribution_calculator.rb +32 -0
  53. data/lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_60_to_65_contribution_calculator.rb +32 -0
  54. data/lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_65_up_contribution_calculator.rb +32 -0
  55. data/lib/singapore_cpf_calculator/year_2014/spr_2_gg.rb +36 -0
  56. data/lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_below_contribution_calculator.rb +32 -0
  57. data/lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_to_55_contribution_calculator.rb +14 -0
  58. data/lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_55_to_60_contribution_calculator.rb +32 -0
  59. data/lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_60_to_65_contribution_calculator.rb +32 -0
  60. data/lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_65_up_contribution_calculator.rb +32 -0
  61. data/lib/singapore_cpf_calculator/year_2015.rb +38 -0
  62. data/lib/singapore_cpf_calculator/year_2015/base.rb +17 -0
  63. data/lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3.rb +35 -0
  64. data/lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_below_contribution_calculator.rb +32 -0
  65. data/lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_to_55_contribution_calculator.rb +32 -0
  66. data/lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb +32 -0
  67. data/lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_60_to_65_contribution_calculator.rb +32 -0
  68. data/lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_65_up_contribution_calculator.rb +32 -0
  69. data/lib/singapore_cpf_calculator/year_2015/spr_1_fg.rb +37 -0
  70. data/lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_below_contribution_calculator.rb +32 -0
  71. data/lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_to_55_contribution_calculator.rb +32 -0
  72. data/lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_55_to_60_contribution_calculator.rb +32 -0
  73. data/lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_60_to_65_contribution_calculator.rb +32 -0
  74. data/lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_65_up_contribution_calculator.rb +32 -0
  75. data/lib/singapore_cpf_calculator/year_2015/spr_1_gg.rb +36 -0
  76. data/lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_below_contribution_calculator.rb +32 -0
  77. data/lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_to_55_contribution_calculator.rb +14 -0
  78. data/lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_55_to_60_contribution_calculator.rb +14 -0
  79. data/lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_60_to_65_contribution_calculator.rb +32 -0
  80. data/lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_65_up_contribution_calculator.rb +14 -0
  81. data/lib/singapore_cpf_calculator/year_2015/spr_2_fg.rb +36 -0
  82. data/lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_below_contribution_calculator.rb +32 -0
  83. data/lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_to_55_contribution_calculator.rb +32 -0
  84. data/lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_55_to_60_contribution_calculator.rb +32 -0
  85. data/lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_60_to_65_contribution_calculator.rb +32 -0
  86. data/lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_65_up_contribution_calculator.rb +32 -0
  87. data/lib/singapore_cpf_calculator/year_2015/spr_2_gg.rb +36 -0
  88. data/lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_below_contribution_calculator.rb +32 -0
  89. data/lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_to_55_contribution_calculator.rb +14 -0
  90. data/lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_55_to_60_contribution_calculator.rb +32 -0
  91. data/lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_60_to_65_contribution_calculator.rb +32 -0
  92. data/lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_65_up_contribution_calculator.rb +32 -0
  93. data/lib/singapore_cpf_calculator/year_common.rb +29 -0
  94. data/singapore_cpf_calculator.gemspec +27 -0
  95. data/spec/acceptance/company_a.csv +1365 -0
  96. data/spec/acceptance/company_a_spec.rb +36 -0
  97. data/spec/singapore_cpf_calculator/age_group_spec.rb +65 -0
  98. data/spec/singapore_cpf_calculator/spr_status_spec.rb +48 -0
  99. data/spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_below_contribution_calculator_spec.rb +68 -0
  100. data/spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_to_55_contribution_calculator_spec.rb +68 -0
  101. data/spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb +68 -0
  102. data/spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb +68 -0
  103. data/spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_65_up_contribution_calculator_spec.rb +68 -0
  104. data/spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3_spec.rb +176 -0
  105. data/spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_below_contribution_calculator_spec.rb +73 -0
  106. data/spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_to_55_contribution_calculator_spec.rb +73 -0
  107. data/spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb +73 -0
  108. data/spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb +73 -0
  109. data/spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_65_up_contribution_calculator_spec.rb +73 -0
  110. data/spec/singapore_cpf_calculator/year_2014/spr_1_fg_spec.rb +176 -0
  111. data/spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_below_contribution_calculator_spec.rb +73 -0
  112. data/spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_to_55_contribution_calculator_spec.rb +73 -0
  113. data/spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb +73 -0
  114. data/spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb +73 -0
  115. data/spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_65_up_contribution_calculator_spec.rb +73 -0
  116. data/spec/singapore_cpf_calculator/year_2014/spr_1_gg_spec.rb +176 -0
  117. data/spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_below_contribution_calculator_spec.rb +73 -0
  118. data/spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_to_55_contribution_calculator_spec.rb +73 -0
  119. data/spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb +73 -0
  120. data/spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb +73 -0
  121. data/spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_65_up_contribution_calculator_spec.rb +73 -0
  122. data/spec/singapore_cpf_calculator/year_2014/spr_2_fg_spec.rb +176 -0
  123. data/spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_below_contribution_calculator_spec.rb +73 -0
  124. data/spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_to_55_contribution_calculator_spec.rb +73 -0
  125. data/spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb +73 -0
  126. data/spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb +73 -0
  127. data/spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_65_up_contribution_calculator_spec.rb +73 -0
  128. data/spec/singapore_cpf_calculator/year_2014/spr_2_gg_spec.rb +176 -0
  129. data/spec/singapore_cpf_calculator/year_2014_spec.rb +183 -0
  130. data/spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_below_contribution_calculator_spec.rb +63 -0
  131. data/spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_to_55_contribution_calculator_spec.rb +63 -0
  132. data/spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb +63 -0
  133. data/spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb +63 -0
  134. data/spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_65_up_contribution_calculator_spec.rb +63 -0
  135. data/spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3_spec.rb +176 -0
  136. data/spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_below_contribution_calculator_spec.rb +63 -0
  137. data/spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_to_55_contribution_calculator_spec.rb +63 -0
  138. data/spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb +63 -0
  139. data/spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb +63 -0
  140. data/spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_65_up_contribution_calculator_spec.rb +63 -0
  141. data/spec/singapore_cpf_calculator/year_2015/spr_1_fg_spec.rb +176 -0
  142. data/spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_below_contribution_calculator_spec.rb +63 -0
  143. data/spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_to_55_contribution_calculator_spec.rb +63 -0
  144. data/spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb +63 -0
  145. data/spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb +63 -0
  146. data/spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_65_up_contribution_calculator_spec.rb +63 -0
  147. data/spec/singapore_cpf_calculator/year_2015/spr_1_gg_spec.rb +176 -0
  148. data/spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_below_contribution_calculator_spec.rb +63 -0
  149. data/spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_to_55_contribution_calculator_spec.rb +63 -0
  150. data/spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb +63 -0
  151. data/spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb +63 -0
  152. data/spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_65_up_contribution_calculator_spec.rb +63 -0
  153. data/spec/singapore_cpf_calculator/year_2015/spr_2_fg_spec.rb +176 -0
  154. data/spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_below_contribution_calculator_spec.rb +63 -0
  155. data/spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_to_55_contribution_calculator_spec.rb +63 -0
  156. data/spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb +63 -0
  157. data/spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb +63 -0
  158. data/spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_65_up_contribution_calculator_spec.rb +63 -0
  159. data/spec/singapore_cpf_calculator/year_2015/spr_2_gg_spec.rb +176 -0
  160. data/spec/singapore_cpf_calculator/year_2015_spec.rb +187 -0
  161. data/spec/singapore_cpf_calculator_spec.rb +48 -0
  162. data/spec/spec_helper.rb +115 -0
  163. metadata +344 -0
@@ -0,0 +1,32 @@
1
+ module SingaporeCPFCalculator
2
+ module Year2015
3
+ module SPR2GG
4
+
5
+ # Payment calculator for Singapore's Central Provident Fund for employee's age 50 and below.
6
+ class Age50BelowContributionCalculator < Year2015::Base
7
+
8
+ extend Requirements::Group50YearsAndBelow
9
+
10
+ private
11
+
12
+ def tc_rate_1
13
+ "0.09"
14
+ end
15
+
16
+ def tc_rate_2
17
+ "0.24"
18
+ end
19
+
20
+ def ec_rate
21
+ "0.15"
22
+ end
23
+
24
+ def adjustment_rate
25
+ "0.45"
26
+ end
27
+
28
+ end
29
+
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,14 @@
1
+ module SingaporeCPFCalculator
2
+ module Year2015
3
+ module SPR2GG
4
+
5
+ # Payment calculator for Singapore's Central Provident Fund for employee's age 50 to 55.
6
+ class Age50To55ContributionCalculator < Age50BelowContributionCalculator
7
+
8
+ extend Requirements::GroupAbove50To55Years
9
+
10
+ end
11
+
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,32 @@
1
+ module SingaporeCPFCalculator
2
+ module Year2015
3
+ module SPR2GG
4
+
5
+ # Payment calculator for Singapore's Central Provident Fund for employee's age 55 to 60.
6
+ class Age55To60ContributionCalculator < Year2015::Base
7
+
8
+ extend Requirements::GroupAbove55To60Years
9
+
10
+ private
11
+
12
+ def tc_rate_1
13
+ "0.06"
14
+ end
15
+
16
+ def tc_rate_2
17
+ "0.185"
18
+ end
19
+
20
+ def ec_rate
21
+ "0.125"
22
+ end
23
+
24
+ def adjustment_rate
25
+ "0.375"
26
+ end
27
+
28
+ end
29
+
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,32 @@
1
+ module SingaporeCPFCalculator
2
+ module Year2015
3
+ module SPR2GG
4
+
5
+ # Payment calculator for Singapore's Central Provident Fund for employee's age 60 to 65.
6
+ class Age60To65ContributionCalculator < Year2015::Base
7
+
8
+ extend Requirements::GroupAbove60To65Years
9
+
10
+ private
11
+
12
+ def tc_rate_1
13
+ "0.035"
14
+ end
15
+
16
+ def tc_rate_2
17
+ "0.11"
18
+ end
19
+
20
+ def ec_rate
21
+ "0.075"
22
+ end
23
+
24
+ def adjustment_rate
25
+ "0.225"
26
+ end
27
+
28
+ end
29
+
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,32 @@
1
+ module SingaporeCPFCalculator
2
+ module Year2015
3
+ module SPR2GG
4
+
5
+ # Payment calculator for Singapore's Central Provident Fund for employee's age 65 and above.
6
+ class Age65UpContributionCalculator < Year2015::Base
7
+
8
+ extend Requirements::GroupAbove65Years
9
+
10
+ private
11
+
12
+ def tc_rate_1
13
+ "0.035"
14
+ end
15
+
16
+ def tc_rate_2
17
+ "0.085"
18
+ end
19
+
20
+ def ec_rate
21
+ "0.05"
22
+ end
23
+
24
+ def adjustment_rate
25
+ "0.15"
26
+ end
27
+
28
+ end
29
+
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,29 @@
1
+ module SingaporeCPFCalculator
2
+
3
+ module YearCommon
4
+
5
+ # @param [String] status: ["citizen", "permanent_resident", "foreigner"]
6
+ # @param [Date] current_date: current date used to determine permanent residency's duration
7
+ # @param [Date] spr_start_date: date when the permanent residency started
8
+ # @param [String] employee_contribution_type: ["full", "graduated"]
9
+ # @param [String] employer_contribution_type: ["full", "graduated"]
10
+ # @return [#residency_module]
11
+ def module_for_residency(
12
+ status:,
13
+ current_date:,
14
+ spr_start_date:,
15
+ employee_contribution_type:,
16
+ employer_contribution_type:
17
+ )
18
+ residency_modules.find { |mod|
19
+ mod.applies_to? status: status,
20
+ current_date: current_date,
21
+ spr_start_date: spr_start_date,
22
+ employee_contribution_type: employee_contribution_type,
23
+ employer_contribution_type: employer_contribution_type
24
+ } or raise ArgumentError, "could not find residency module"
25
+ end
26
+
27
+ end
28
+
29
+ end
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'singapore_cpf_calculator/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "singapore_cpf_calculator"
8
+ spec.version = SingaporeCPFCalculator::VERSION
9
+ spec.authors = ["Ronald Maravilla"]
10
+ spec.email = ["rmaravilla@payrollhero.com"]
11
+ spec.summary = "A Singapore's Central Provident Fund (CPF) contributions calculator."
12
+ spec.description = "A Singapore's Central Provident Fund (CPF) contributions calculator."
13
+ spec.homepage = "https://github.com/payrollhero/singapore_cpf_calculator"
14
+ spec.license = "BSD-3-Clause"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_development_dependency "rspec"
24
+ spec.add_development_dependency "codeclimate-test-reporter"
25
+
26
+ spec.add_dependency "activesupport"
27
+ end
@@ -0,0 +1,1365 @@
1
+ Contribution Date,Birthdate,Residency Status,SPR Start Date,Employee Contribution Type,Employer Contribution Type,Ordinary Wages,Additional Wages,Employee CPF$,Employer CPF$,Total CPF$
2
+ 2014-09-01,1994-04-04,citizen,,,,588,0,52,95,147
3
+ 2014-09-01,1992-11-25,citizen,,,,727.5,0,136,117,253
4
+ 2014-09-01,1992-09-23,citizen,,,,1002,0,200,161,361
5
+ 2014-09-01,1990-02-18,citizen,,,,395.5,0,0,63,63
6
+ 2014-09-01,1995-02-25,permanent_resident,2010-01-01,,,286,0,0,46,46
7
+ 2014-09-01,1993-09-24,citizen,,,,957.25,0,191,154,345
8
+ 2014-09-01,1989-01-20,citizen,,,,1720,0,344,275,619
9
+ 2014-09-01,1994-01-03,citizen,,,,1230,0,246,197,443
10
+ 2014-09-01,1995-08-13,citizen,,,,1440,0,288,230,518
11
+ 2014-09-01,1993-04-04,citizen,,,,900,0,180,144,324
12
+ 2014-09-01,1990-10-05,citizen,,,,626.25,0,75,101,176
13
+ 2014-09-01,1989-07-28,citizen,,,,1278.75,0,255,205,460
14
+ 2014-09-01,1997-11-19,citizen,,,,1192.5,0,238,191,429
15
+ 2014-09-01,1989-10-22,citizen,,,,645,0,87,103,190
16
+ 2014-09-01,1997-11-21,citizen,,,,262.5,0,0,42,42
17
+ 2014-09-01,1997-12-11,citizen,,,,150,0,0,24,24
18
+ 2014-09-01,1991-06-23,citizen,,,,1416.63,0,283,227,510
19
+ 2014-09-01,1994-03-10,citizen,,,,1273.13,0,254,204,458
20
+ 2014-09-01,1989-09-09,citizen,,,,350,0,0,56,56
21
+ 2014-09-01,1991-01-10,citizen,,,,847,0,169,136,305
22
+ 2014-09-01,1994-03-09,citizen,,,,220.5,0,0,35,35
23
+ 2014-09-01,1995-02-06,citizen,,,,780,0,156,125,281
24
+ 2014-09-01,1988-07-02,citizen,,,,256.37,0,0,41,41
25
+ 2014-09-01,1996-08-21,citizen,,,,714,0,128,115,243
26
+ 2014-09-01,1989-10-06,citizen,,,,49,0,0,0,0
27
+ 2014-09-01,1997-10-17,citizen,,,,185.5,0,0,30,30
28
+ 2014-09-01,1990-06-13,citizen,,,,385,0,0,62,62
29
+ 2014-09-01,1992-01-02,citizen,,,,213.5,0,0,34,34
30
+ 2014-09-01,1994-08-11,citizen,,,,213.5,0,0,34,34
31
+ 2014-09-01,1997-11-18,citizen,,,,210,0,0,34,34
32
+ 2014-09-01,1994-11-20,citizen,,,,624,0,74,100,174
33
+ 2014-09-01,1992-10-26,citizen,,,,2572.5,0,514,412,926
34
+ 2014-09-01,1991-12-24,citizen,,,,1417.5,0.09,283,227,510
35
+ 2014-09-01,1992-12-31,citizen,,,,1500.25,0,300,240,540
36
+ 2014-09-01,1989-01-18,citizen,,,,1323.75,0,264,213,477
37
+ 2014-09-01,1978-11-11,citizen,,,,1293.75,0,258,208,466
38
+ 2014-09-01,1994-07-09,citizen,,,,1350,0,270,216,486
39
+ 2014-09-01,1988-06-08,citizen,,,,1372.5,0,274,220,494
40
+ 2014-09-01,1991-11-18,citizen,,,,1042.5,0,208,167,375
41
+ 2014-09-01,1994-07-19,permanent_resident,2010-01-01,,,1380,0,276,221,497
42
+ 2014-09-01,1993-08-21,citizen,,,,660,0,96,106,202
43
+ 2014-09-01,1990-01-24,citizen,,,,1368.75,0,273,220,493
44
+ 2014-09-01,1995-04-14,citizen,,,,573.75,0,44,92,136
45
+ 2014-09-01,1989-09-20,citizen,,,,1036.88,0,207,166,373
46
+ 2014-09-01,1991-07-20,citizen,,,,948.75,0,189,153,342
47
+ 2014-09-01,1996-12-06,citizen,,,,633.75,0,80,102,182
48
+ 2014-09-01,1994-08-10,citizen,,,,1211.25,0,242,194,436
49
+ 2014-09-01,1994-10-17,citizen,,,,566.25,0,39,91,130
50
+ 2014-09-01,1994-07-12,citizen,,,,191.25,0,0,31,31
51
+ 2014-09-01,1995-01-15,citizen,,,,152.25,0,0,24,24
52
+ 2014-09-01,1996-06-15,citizen,,,,207,0,0,33,33
53
+ 2014-09-01,1979-08-03,permanent_resident,2010-01-01,,,1278.38,0,255,205,460
54
+ 2014-09-01,1996-04-12,citizen,,,,624,0,74,100,174
55
+ 2014-09-01,1995-05-25,citizen,,,,344,0,0,55,55
56
+ 2014-09-01,1995-10-04,citizen,,,,394,0,0,63,63
57
+ 2014-09-01,1995-12-21,citizen,,,,597,0,58,96,154
58
+ 2014-09-01,1995-03-22,citizen,,,,311.5,0,0,50,50
59
+ 2014-09-01,1996-08-20,citizen,,,,518.25,0,10,84,94
60
+ 2014-09-01,1990-02-12,citizen,,,,127.5,0,0,20,20
61
+ 2014-09-01,1990-08-08,citizen,,,,1286.25,0,257,206,463
62
+ 2014-09-01,1987-12-21,citizen,,,,265.5,0,0,42,42
63
+ 2014-09-01,1990-07-10,citizen,,,,265.5,0,0,42,42
64
+ 2014-09-01,1990-07-11,citizen,,,,211.5,0,0,34,34
65
+ 2014-09-01,1996-03-25,citizen,,,,218.25,0,0,35,35
66
+ 2014-09-01,1993-03-22,citizen,,,,220.5,0,0,35,35
67
+ 2014-09-01,1989-08-01,citizen,,,,211.5,0,0,34,34
68
+ 2014-09-01,1996-05-24,citizen,,,,211.5,0,0,34,34
69
+ 2014-09-01,1996-01-22,citizen,,,,211.5,0,0,34,34
70
+ 2014-09-01,1996-01-26,citizen,,,,211.5,0,0,34,34
71
+ 2014-09-01,1988-07-09,citizen,,,,272.25,0,0,44,44
72
+ 2014-09-01,1992-11-01,citizen,,,,220.5,0,0,35,35
73
+ 2014-09-01,1995-07-31,citizen,,,,211.5,0,0,34,34
74
+ 2014-09-01,1995-12-27,citizen,,,,211.5,0,0,34,34
75
+ 2014-09-01,1995-07-06,citizen,,,,211.5,0,0,34,34
76
+ 2014-09-01,1994-09-26,citizen,,,,211.5,0,0,34,34
77
+ 2014-09-01,1997-10-04,citizen,,,,682.5,0,109,110,219
78
+ 2014-09-01,1989-01-12,citizen,,,,1312.5,0,262,211,473
79
+ 2014-09-01,1993-04-01,citizen,,,,973.13,0,194,156,350
80
+ 2014-09-01,1996-02-09,citizen,,,,437.5,0,0,70,70
81
+ 2014-09-01,1995-10-09,citizen,,,,532,0,19,85,104
82
+ 2014-09-01,1991-07-27,citizen,,,,2920.5,0,584,467,1051
83
+ 2014-09-01,1994-11-02,citizen,,,,3002,0,600,481,1081
84
+ 2014-09-01,1992-03-12,citizen,,,,1040,0,208,166,374
85
+ 2014-09-01,1993-07-18,citizen,,,,98,0,0,16,16
86
+ 2014-09-01,1994-07-04,citizen,,,,1036,0,207,166,373
87
+ 2014-09-01,1989-12-01,citizen,,,,946.5,0,189,152,341
88
+ 2014-09-01,1990-03-31,citizen,,,,147,0,0,24,24
89
+ 2014-09-01,1994-12-23,citizen,,,,808,0,161,130,291
90
+ 2014-09-01,1994-12-13,citizen,,,,1252.5,0,250,201,451
91
+ 2014-09-01,1994-01-04,citizen,,,,756.5,0,151,121,272
92
+ 2014-09-01,1995-10-01,citizen,,,,877.5,0,175,141,316
93
+ 2014-09-01,1993-08-27,citizen,,,,768,0,153,123,276
94
+ 2014-09-01,1993-09-24,citizen,,,,303.5,0,0,49,49
95
+ 2014-09-01,1994-10-10,citizen,,,,147,0,0,24,24
96
+ 2014-09-01,1993-06-28,citizen,,,,681,0,108,110,218
97
+ 2014-09-01,1994-09-03,citizen,,,,147,0,0,24,24
98
+ 2014-09-01,1993-12-08,citizen,,,,1109,0,221,178,399
99
+ 2014-09-01,1990-10-19,citizen,,,,4459.5,0,891,714,1605
100
+ 2014-09-01,1994-10-14,citizen,,,,692,0,115,111,226
101
+ 2014-09-01,1991-11-05,citizen,,,,2055.5,0,411,329,740
102
+ 2014-09-01,1989-02-23,citizen,,,,728,0,136,117,253
103
+ 2014-09-01,1993-12-09,citizen,,,,2448.5,0,489,392,881
104
+ 2014-09-01,1991-04-10,citizen,,,,680,0,108,109,217
105
+ 2014-09-01,1988-01-21,citizen,,,,316.5,0,0,51,51
106
+ 2014-09-01,1994-07-06,citizen,,,,616,0,69,99,168
107
+ 2014-09-01,1988-05-27,citizen,,,,224,0,0,36,36
108
+ 2014-09-01,1988-07-04,citizen,,,,434,0,0,69,69
109
+ 2014-09-01,1996-08-08,citizen,,,,385,0,0,62,62
110
+ 2014-09-01,1995-02-04,citizen,,,,515,0,9,82,91
111
+ 2014-09-01,1996-05-25,citizen,,,,329,0,0,53,53
112
+ 2014-09-01,1995-09-22,citizen,,,,310.5,0,0,50,50
113
+ 2014-09-01,1994-06-21,citizen,,,,205,0,0,33,33
114
+ 2014-09-01,1994-07-11,citizen,,,,1508.5,0,301,242,543
115
+ 2014-09-01,1996-08-19,citizen,,,,1352.5,0,270,217,487
116
+ 2014-09-01,1991-12-08,permanent_resident,2010-01-01,,,287,0,0,46,46
117
+ 2014-09-01,1996-02-15,citizen,,,,1652,0,330,265,595
118
+ 2014-09-01,1995-05-07,citizen,,,,248.5,0,0,40,40
119
+ 2014-09-01,1994-03-28,citizen,,,,812,0,162,130,292
120
+ 2014-09-01,1995-01-20,citizen,,,,862.75,0,172,139,311
121
+ 2014-09-01,1996-08-14,citizen,,,,819,0,163,132,295
122
+ 2014-09-01,1996-05-11,citizen,,,,952,0,190,153,343
123
+ 2014-09-01,1990-10-02,citizen,,,,796.25,0,159,128,287
124
+ 2014-09-01,1996-05-24,citizen,,,,974.75,0,194,157,351
125
+ 2014-09-01,1993-06-05,citizen,,,,906.5,0,181,145,326
126
+ 2014-09-01,1996-03-14,citizen,,,,1086.75,0,217,174,391
127
+ 2014-09-01,1993-02-16,citizen,,,,894.25,0,178,144,322
128
+ 2014-09-01,1996-07-18,citizen,,,,1004.5,0,200,162,362
129
+ 2014-09-01,1996-08-16,citizen,,,,714,0,128,115,243
130
+ 2014-09-01,1996-04-16,citizen,,,,777,0,155,125,280
131
+ 2014-09-01,1990-12-28,citizen,,,,827.75,0,165,133,298
132
+ 2014-09-01,1989-03-23,citizen,,,,1094.63,0,218,176,394
133
+ 2014-09-01,1992-02-12,citizen,,,,925.75,0,185,148,333
134
+ 2014-09-01,1993-06-10,citizen,,,,1136,0,227,182,409
135
+ 2014-09-01,1996-06-08,citizen,,,,658,0,94,106,200
136
+ 2014-09-01,1994-09-12,citizen,,,,770,0,154,123,277
137
+ 2014-09-01,1993-09-12,citizen,,,,412,0,0,66,66
138
+ 2014-09-01,1995-04-09,citizen,,,,1560,0,312,250,562
139
+ 2014-09-01,1994-11-05,citizen,,,,455,0,0,73,73
140
+ 2014-09-01,1996-03-15,citizen,,,,742,0,145,119,264
141
+ 2014-09-01,1994-09-29,citizen,,,,796,0,159,128,287
142
+ 2014-09-01,1986-12-12,citizen,,,,1657.5,0,331,266,597
143
+ 2014-09-01,1992-01-23,citizen,,,,821,0,164,132,296
144
+ 2014-09-01,1993-11-20,citizen,,,,399,0,0,64,64
145
+ 2014-09-01,1992-06-15,citizen,,,,1310,0,262,210,472
146
+ 2014-09-01,1994-09-16,citizen,,,,71.5,0,0,11,11
147
+ 2014-09-01,1994-09-16,citizen,,,,112.5,0,0,18,18
148
+ 2014-09-01,1991-01-16,citizen,,,,4160,0,832,666,1498
149
+ 2014-09-01,1994-07-16,citizen,,,,653,0,91,105,196
150
+ 2014-09-01,1992-05-27,citizen,,,,480,0,0,77,77
151
+ 2014-09-01,1993-10-11,citizen,,,,408,0,0,65,65
152
+ 2014-09-01,1994-03-20,citizen,,,,1060,0,212,170,382
153
+ 2014-09-01,1992-11-01,citizen,,,,441,0,0,71,71
154
+ 2014-09-01,1991-12-31,citizen,,,,1105,0,221,177,398
155
+ 2014-09-01,1991-06-23,citizen,,,,603,0,61,97,158
156
+ 2014-09-01,1991-08-04,citizen,,,,747,0,148,120,268
157
+ 2014-09-01,1990-06-09,citizen,,,,791,0,158,127,285
158
+ 2014-09-01,1994-11-06,citizen,,,,577.25,0,46,93,139
159
+ 2014-09-01,1994-05-11,citizen,,,,863,0,172,139,311
160
+ 2014-09-01,1989-06-19,citizen,,,,935,0,187,150,337
161
+ 2014-09-01,1988-09-18,citizen,,,,2099,0,419,337,756
162
+ 2014-09-01,1992-09-27,citizen,,,,315,0,0,50,50
163
+ 2014-09-01,1994-01-01,citizen,,,,1292,0,258,207,465
164
+ 2014-09-01,1994-09-08,citizen,,,,967.5,0,193,155,348
165
+ 2014-09-01,1992-04-02,citizen,,,,844.5,0,168,136,304
166
+ 2014-09-01,1993-10-11,citizen,,,,294,0,0,47,47
167
+ 2014-09-01,1975-12-19,citizen,,,,1854.55,0,370,298,668
168
+ 2014-09-01,1990-02-07,citizen,,,,1588.5,0,317,255,572
169
+ 2014-09-01,1973-11-06,citizen,,,,1235.5,0,247,198,445
170
+ 2014-09-01,1988-03-29,citizen,,,,490.5,0,0,78,78
171
+ 2014-09-01,1958-08-26,citizen,,,,325.5,0,0,34,34
172
+ 2014-09-01,1992-09-16,citizen,,,,868,0,173,139,312
173
+ 2014-09-01,1995-09-30,permanent_resident,2010-01-01,,,1083.75,0,216,174,390
174
+ 2014-09-01,1992-09-13,citizen,,,,1546,0,309,248,557
175
+ 2014-09-01,1992-06-12,citizen,,,,112.5,0,0,18,18
176
+ 2014-09-01,1995-06-02,citizen,,,,42,0,0,0,0
177
+ 2014-09-01,1992-11-06,citizen,,,,1830,0,366,293,659
178
+ 2014-09-01,1990-08-09,citizen,,,,832,0,166,134,300
179
+ 2014-09-01,1978-01-07,citizen,,,,2718,0,543,435,978
180
+ 2014-09-01,1987-06-11,citizen,,,,2790,0,558,446,1004
181
+ 2014-09-01,1990-08-01,citizen,,,,0,598.5,59,96,155
182
+ 2014-09-01,1970-02-13,citizen,,,,2255.15,0,451,361,812
183
+ 2014-09-01,1977-06-08,citizen,,,,934.5,0,186,150,336
184
+ 2014-09-01,1996-09-16,permanent_resident,2010-01-01,,,1729.88,0,345,278,623
185
+ 2014-09-01,1978-04-16,citizen,,,,1088.5,0,217,175,392
186
+ 2014-09-01,1994-01-25,citizen,,,,387.63,0,0,62,62
187
+ 2014-09-01,1996-06-26,citizen,,,,387.63,0,0,62,62
188
+ 2014-09-01,1996-07-11,citizen,,,,514.5,0,8,83,91
189
+ 2014-09-01,1993-10-10,citizen,,,,908.25,0,181,146,327
190
+ 2014-09-01,1991-12-12,citizen,,,,336,0,0,54,54
191
+ 2014-09-01,1995-03-16,citizen,,,,211.5,0,0,34,34
192
+ 2014-09-01,1996-03-31,citizen,,,,630,0,78,101,179
193
+ 2014-09-01,1994-02-15,citizen,,,,127.5,0,0,20,20
194
+ 2014-09-01,1994-07-09,citizen,,,,448,0,0,72,72
195
+ 2014-09-01,1981-08-19,citizen,,,,534,0,20,86,106
196
+ 2014-09-01,1972-03-29,citizen,,,,357.5,0,0,57,57
197
+ 2014-09-01,1997-05-08,citizen,,,,602,0,61,97,158
198
+ 2014-09-01,1996-10-21,citizen,,,,423.5,0,0,68,68
199
+ 2014-09-01,1994-06-17,citizen,,,,346.5,0,0,55,55
200
+ 2014-09-01,1991-11-15,citizen,,,,70,0,0,11,11
201
+ 2014-09-01,1996-09-06,citizen,,,,799.75,0,159,129,288
202
+ 2014-09-01,1997-01-21,citizen,,,,752.5,0,150,121,271
203
+ 2014-09-01,1992-05-19,citizen,,,,574,0,44,92,136
204
+ 2014-09-01,1996-01-01,citizen,,,,253.75,0,0,41,41
205
+ 2014-09-01,1996-03-02,citizen,,,,1624,0,324,261,585
206
+ 2014-09-01,1993-03-29,citizen,,,,192.5,0,0,31,31
207
+ 2014-09-01,1996-02-09,citizen,,,,770,0,154,123,277
208
+ 2014-09-01,1995-12-10,citizen,,,,698.25,0,118,113,231
209
+ 2014-09-01,1994-06-03,citizen,,,,588,0,52,95,147
210
+ 2014-09-01,1995-02-02,citizen,,,,992.25,0,198,159,357
211
+ 2014-09-01,1995-09-28,permanent_resident,2010-01-01,,,486.5,0,0,78,78
212
+ 2014-09-01,1996-08-20,citizen,,,,633.5,0,80,101,181
213
+ 2014-09-01,1998-02-22,citizen,,,,844.38,0,168,136,304
214
+ 2014-09-01,1996-08-29,citizen,,,,563.5,0,38,90,128
215
+ 2014-09-01,1981-08-09,permanent_resident,2013-06-03,graduated,graduated,329,0,0,30,30
216
+ 2014-09-01,1994-12-20,citizen,,,,49,0,0,0,0
217
+ 2014-09-01,1950-01-14,citizen,,,,1295,0,97,91,188
218
+ 2014-09-01,1958-09-25,citizen,,,,1288,0,167,136,303
219
+ 2014-09-01,1949-12-28,citizen,,,,634.2,0,30,45,75
220
+ 2014-09-01,1965-10-16,citizen,,,,1120,0,224,179,403
221
+ 2014-09-01,1959-10-28,citizen,,,,1288,0,238,181,419
222
+ 2014-09-01,1949-03-28,citizen,,,,1334.5,0,66,87,153
223
+ 2014-09-01,1949-04-06,citizen,,,,1329.5,0,66,87,153
224
+ 2014-09-01,1950-05-29,citizen,,,,1335.5,0,100,94,194
225
+ 2014-09-01,1951-10-27,citizen,,,,1036,0,77,73,150
226
+ 2014-09-01,1966-06-05,citizen,,,,1120,0,224,179,403
227
+ 2014-09-01,1946-08-16,citizen,,,,1344.5,0,67,88,155
228
+ 2014-09-01,1950-09-06,citizen,,,,1344.5,0,100,95,195
229
+ 2014-09-01,1958-11-05,citizen,,,,1288,0,167,136,303
230
+ 2014-09-01,1952-12-18,citizen,,,,1008,0,75,71,146
231
+ 2014-09-01,1970-01-21,citizen,,,,766.5,0,153,123,276
232
+ 2014-09-01,1958-06-14,citizen,,,,1204,0,156,127,283
233
+ 2014-09-01,1949-07-14,citizen,,,,434,0,0,28,28
234
+ 2014-09-01,1972-12-07,citizen,,,,1288,0,257,207,464
235
+ 2014-09-01,1951-09-03,citizen,,,,1288,0,96,91,187
236
+ 2014-09-01,1952-03-25,citizen,,,,1288,0,96,91,187
237
+ 2014-09-01,1950-08-18,citizen,,,,1288,0,96,91,187
238
+ 2014-09-01,1949-10-24,citizen,,,,1288,0,96,91,187
239
+ 2014-09-01,1946-09-08,citizen,,,,1344.5,0,67,88,155
240
+ 2014-09-01,1953-03-19,citizen,,,,1288,0,96,91,187
241
+ 2014-09-01,1951-07-25,citizen,,,,1683,0,126,118,244
242
+ 2014-09-01,1948-10-21,citizen,,,,1288,0,64,84,148
243
+ 2014-09-01,1992-05-14,citizen,,,,2210,0,442,354,796
244
+ 2014-09-01,1988-06-10,citizen,,,,2410,0,482,386,868
245
+ 2014-09-01,1985-10-25,citizen,,,,2894,0,578,464,1042
246
+ 2014-09-01,1959-09-06,citizen,,,,784,0,145,110,255
247
+ 2014-09-01,1949-07-19,citizen,,,,882,0,44,57,101
248
+ 2014-09-01,1952-10-07,citizen,,,,1288,0,96,91,187
249
+ 2014-09-01,1991-07-02,citizen,,,,1600,0,320,256,576
250
+ 2014-09-01,1990-06-30,citizen,,,,2300,0,460,368,828
251
+ 2014-09-01,1960-06-13,citizen,,,,1288,0,238,181,419
252
+ 2014-09-01,1992-10-31,citizen,,,,2100,0,420,336,756
253
+ 2014-09-01,1993-08-01,citizen,,,,2150,0,430,344,774
254
+ 2014-09-01,1958-06-08,citizen,,,,1288,0,167,136,303
255
+ 2014-09-01,1991-11-21,citizen,,,,2100,0,420,336,756
256
+ 2014-09-01,1992-08-14,citizen,,,,508,0,4,82,86
257
+ 2014-09-01,1993-08-09,citizen,,,,112.5,0,0,18,18
258
+ 2014-09-01,1996-04-10,citizen,,,,168,0,0,27,27
259
+ 2014-09-01,1990-08-03,citizen,,,,960,0,192,154,346
260
+ 2014-09-01,1997-09-29,citizen,,,,320.25,0,0,51,51
261
+ 2014-09-01,1997-01-23,citizen,,,,1053.5,0,210,169,379
262
+ 2014-09-01,1995-03-20,citizen,,,,807.5,0,161,130,291
263
+ 2014-09-01,1995-10-21,citizen,,,,735.5,0,141,118,259
264
+ 2014-09-01,1994-03-18,citizen,,,,165.75,0,0,27,27
265
+ 2014-09-01,1993-08-20,citizen,,,,442,0,0,71,71
266
+ 2014-09-01,1995-06-24,citizen,,,,202,0,0,32,32
267
+ 2014-09-01,1991-07-23,citizen,,,,799,0,159,129,288
268
+ 2014-09-01,1992-08-11,citizen,,,,1416,0,283,227,510
269
+ 2014-09-01,1996-10-10,citizen,,,,198,0,0,32,32
270
+ 2014-09-01,1992-02-14,citizen,,,,204,0,0,33,33
271
+ 2014-09-01,1994-08-12,citizen,,,,127.5,0,0,20,20
272
+ 2014-09-01,1997-03-24,citizen,,,,204,0,0,33,33
273
+ 2014-09-01,1990-06-28,citizen,,,,488.75,0,0,78,78
274
+ 2014-09-01,1993-09-09,citizen,,,,119,0,0,19,19
275
+ 2014-09-01,1994-08-29,citizen,,,,68,0,0,11,11
276
+ 2014-09-01,1991-02-27,citizen,,,,493,0,0,79,79
277
+ 2014-09-01,1992-05-22,citizen,,,,635.63,0,81,102,183
278
+ 2014-09-01,1993-04-13,citizen,,,,1020,0,204,163,367
279
+ 2014-09-01,1992-08-14,citizen,,,,246.5,0,0,39,39
280
+ 2014-09-01,1994-02-09,citizen,,,,365.5,0,0,58,58
281
+ 2014-09-01,1994-10-16,citizen,,,,761,0,152,122,274
282
+ 2014-09-01,1992-12-14,citizen,,,,1105,0,221,177,398
283
+ 2014-09-01,1993-12-17,citizen,,,,612,0,67,98,165
284
+ 2014-09-01,1988-06-27,citizen,,,,540,0,24,86,110
285
+ 2014-09-01,1992-03-10,citizen,,,,1025.5,0,205,164,369
286
+ 2014-09-01,1994-03-01,citizen,,,,938.5,0,187,151,338
287
+ 2014-09-01,1993-09-09,citizen,,,,707.88,0,124,114,238
288
+ 2014-09-01,1993-08-16,citizen,,,,771.63,0,154,124,278
289
+ 2014-09-01,1994-09-23,citizen,,,,1111.38,0,222,178,400
290
+ 2014-09-01,1983-04-01,citizen,,,,59.5,0,0,10,10
291
+ 2014-09-01,1995-07-25,citizen,,,,888.5,0,177,143,320
292
+ 2014-09-01,1996-05-01,citizen,,,,1260.63,196.13,291,233,524
293
+ 2014-09-01,1994-01-12,citizen,,,,1019.5,0,203,164,367
294
+ 2014-09-01,1994-03-24,citizen,,,,506.5,0,3,82,85
295
+ 2014-09-01,1995-06-16,citizen,,,,187.5,0,0,30,30
296
+ 2014-09-01,1988-10-08,citizen,,,,1216,0,243,195,438
297
+ 2014-09-01,1991-04-11,citizen,,,,2219.77,0,443,356,799
298
+ 2014-09-01,1996-01-09,citizen,,,,1020,0,204,163,367
299
+ 2014-09-01,1991-10-16,citizen,,,,2800,129.23,585,470,1055
300
+ 2014-09-01,1994-08-01,citizen,,,,960,0,192,154,346
301
+ 2014-09-01,1994-02-03,citizen,,,,1359,0,271,218,489
302
+ 2014-09-01,1994-12-23,citizen,,,,1336,0,267,214,481
303
+ 2014-09-01,1990-07-26,citizen,,,,382,0,0,61,61
304
+ 2014-09-01,1994-04-23,citizen,,,,24,0,0,0,0
305
+ 2014-09-01,1970-01-09,citizen,,,,52.5,0,0,8,8
306
+ 2014-09-01,1993-10-29,citizen,,,,1008,0,201,162,363
307
+ 2014-09-01,1974-11-16,citizen,,,,1609.13,0,321,258,579
308
+ 2014-09-01,1994-03-04,citizen,,,,987,0,197,158,355
309
+ 2014-09-01,1977-01-25,citizen,,,,952,0,190,153,343
310
+ 2014-09-01,1995-03-15,citizen,,,,672,0,103,108,211
311
+ 2014-09-01,1992-12-31,permanent_resident,2010-01-01,,,574,0,44,92,136
312
+ 2014-09-01,1996-01-30,citizen,,,,801.5,0,160,129,289
313
+ 2014-09-01,1996-10-02,citizen,,,,784,0,156,126,282
314
+ 2014-09-01,1997-05-31,citizen,,,,577.5,0,46,93,139
315
+ 2014-09-01,1996-07-13,citizen,,,,371,0,0,59,59
316
+ 2014-09-01,1995-10-13,citizen,,,,765.6,0,153,123,276
317
+ 2014-09-01,1993-11-08,citizen,,,,10,0,0,0,0
318
+ 2014-09-01,1984-07-10,citizen,,,,5.2,0,0,0,0
319
+ 2014-09-01,1992-11-26,citizen,,,,1138.85,0,227,183,410
320
+ 2014-09-01,1947-11-20,citizen,,,,1300,0,65,85,150
321
+ 2014-09-01,1962-01-09,citizen,,,,2220,0,410,312,722
322
+ 2014-09-01,1942-09-10,citizen,,,,2512.5,0,125,164,289
323
+ 2014-09-01,1961-02-03,citizen,,,,2049.6,0,379,287,666
324
+ 2014-09-01,1970-08-31,citizen,,,,2220,0,444,355,799
325
+ 2014-09-01,1955-12-29,citizen,,,,2374.5,0,308,250,558
326
+ 2014-09-01,1973-10-23,citizen,,,,2088,0,417,335,752
327
+ 2014-09-01,1979-01-23,citizen,,,,1635,0,327,262,589
328
+ 2014-09-01,1942-08-14,citizen,,,,1864.5,0,93,121,214
329
+ 2014-09-01,1985-06-17,citizen,,,,1057.5,0,211,170,381
330
+ 2014-09-01,1964-02-29,citizen,,,,1650,0,305,231,536
331
+ 2014-09-01,1988-04-05,citizen,,,,810,0,162,130,292
332
+ 2014-09-01,1947-01-30,citizen,,,,1850,0,92,121,213
333
+ 2014-09-01,1952-08-04,citizen,,,,2870,0,215,201,416
334
+ 2014-09-01,1958-07-20,citizen,,,,2040,0,265,214,479
335
+ 2014-09-01,1948-06-15,citizen,,,,930,0,46,61,107
336
+ 2014-09-01,1965-06-02,citizen,,,,2150,0,430,344,774
337
+ 2014-09-01,1948-07-01,citizen,,,,315,0,0,20,20
338
+ 2014-09-01,1946-10-09,citizen,,,,2120,0,106,138,244
339
+ 2014-09-01,1948-02-29,citizen,,,,1850,0,92,121,213
340
+ 2014-09-01,1948-03-23,citizen,,,,1564,0,78,102,180
341
+ 2014-09-01,1943-12-04,citizen,,,,1412,0,70,92,162
342
+ 2014-09-01,1940-08-07,citizen,,,,608,0,16,40,56
343
+ 2014-09-01,1965-10-29,citizen,,,,1314,0,262,211,473
344
+ 2014-09-01,1943-06-27,citizen,,,,1246,0,62,81,143
345
+ 2014-09-01,1970-03-29,citizen,,,,958,0,191,154,345
346
+ 2014-09-01,1946-10-11,citizen,,,,1130,0,56,74,130
347
+ 2014-09-01,1942-07-08,citizen,,,,564,0,9,37,46
348
+ 2014-09-01,1948-11-02,citizen,,,,1490,0,74,97,171
349
+ 2014-09-01,1943-04-30,citizen,,,,2685,0,134,175,309
350
+ 2014-09-01,1979-05-28,citizen,,,,435,0,0,70,70
351
+ 2014-09-01,1948-02-01,citizen,,,,1173,0,58,77,135
352
+ 2014-09-01,1989-02-20,citizen,,,,1110,0,222,178,400
353
+ 2014-09-01,1949-01-17,citizen,,,,1000,0,50,65,115
354
+ 2014-09-01,1950-04-13,citizen,,,,457.2,0,0,32,32
355
+ 2014-09-01,1946-11-14,citizen,,,,2422.5,0,121,158,279
356
+ 2014-09-01,1992-11-18,citizen,,,,1534,0,306,246,552
357
+ 2014-09-01,1953-08-16,citizen,,,,1260,0,94,89,183
358
+ 2014-09-01,1952-08-12,citizen,,,,753,0,56,53,109
359
+ 2014-09-01,1960-09-14,citizen,,,,1989.6,0,368,279,647
360
+ 2014-09-01,1991-11-01,citizen,,,,855.75,0,171,137,308
361
+ 2014-09-01,1983-02-07,citizen,,,,1387.5,0,277,223,500
362
+ 2014-09-01,1992-03-21,citizen,,,,616,0,69,99,168
363
+ 2014-09-01,1988-06-10,citizen,,,,3000,0,600,480,1080
364
+ 2014-09-01,1975-06-09,permanent_resident,2010-01-01,,,1590,0,318,254,572
365
+ 2014-09-01,1981-08-22,citizen,,,,4100,0,820,656,1476
366
+ 2014-09-01,1949-04-01,citizen,,,,570,0,10,38,48
367
+ 2014-09-01,1982-03-28,citizen,,,,4400,0,880,704,1584
368
+ 2014-09-01,1996-11-21,citizen,,,,455,0,0,73,73
369
+ 2014-09-01,1996-05-22,citizen,,,,922,0,184,148,332
370
+ 2014-09-01,1996-05-30,permanent_resident,2010-01-01,,,887,0,177,142,319
371
+ 2014-09-01,1997-08-15,citizen,,,,333,0,0,53,53
372
+ 2014-09-01,1996-11-26,citizen,,,,990,0,198,158,356
373
+ 2014-09-01,1996-10-23,citizen,,,,425,0,0,68,68
374
+ 2014-09-01,1987-01-14,citizen,,,,419,0,0,67,67
375
+ 2014-09-01,1996-06-24,citizen,,,,508,0,4,82,86
376
+ 2014-09-01,1996-02-16,citizen,,,,484,0,0,77,77
377
+ 2014-09-01,1977-01-10,citizen,,,,713.38,57.2,154,123,277
378
+ 2014-09-01,1991-09-10,citizen,,,,2300,0,460,368,828
379
+ 2014-09-01,1989-01-17,citizen,,,,989.75,0,197,159,356
380
+ 2014-09-01,1996-07-15,citizen,,,,388.5,0,0,62,62
381
+ 2014-09-01,1996-08-03,citizen,,,,241.5,0,0,39,39
382
+ 2014-09-01,1995-07-03,citizen,,,,859.75,0,171,139,310
383
+ 2014-09-01,1994-03-04,citizen,,,,841.63,133.91,195,156,351
384
+ 2014-09-01,1993-06-06,citizen,,,,843.5,0,168,136,304
385
+ 2014-09-01,1989-07-20,citizen,,,,1179.5,0,235,190,425
386
+ 2014-09-01,1992-10-27,citizen,,,,966,0,193,155,348
387
+ 2014-09-01,1990-03-24,citizen,,,,651,0,90,105,195
388
+ 2014-09-01,1987-03-18,citizen,,,,1492.75,0,298,239,537
389
+ 2014-09-01,1994-10-18,citizen,,,,1718,0,343,275,618
390
+ 2014-09-01,1989-12-02,citizen,,,,1113,0,222,179,401
391
+ 2014-09-01,1992-09-22,citizen,,,,572.25,0,43,92,135
392
+ 2014-09-01,1976-06-23,citizen,,,,742,0,145,119,264
393
+ 2014-09-01,1993-05-20,citizen,,,,736.37,50,157,126,283
394
+ 2014-09-01,1992-10-26,citizen,,,,1225,0,245,196,441
395
+ 2014-09-01,1994-02-24,citizen,,,,1148,0,229,184,413
396
+ 2014-09-01,1978-05-17,citizen,,,,1643.48,50,338,272,610
397
+ 2014-09-01,1992-12-27,citizen,,,,132,0,0,21,21
398
+ 2014-09-01,1994-03-09,citizen,,,,1232,0,246,198,444
399
+ 2014-09-01,1989-04-29,citizen,,,,845,0,169,135,304
400
+ 2014-09-01,1992-12-29,citizen,,,,108,0,0,17,17
401
+ 2014-09-01,1995-07-07,citizen,,,,360.5,0,0,58,58
402
+ 2014-09-01,1994-06-23,citizen,,,,1211,0,242,194,436
403
+ 2014-09-01,1987-10-21,citizen,,,,1313,0,262,211,473
404
+ 2014-09-01,1995-04-17,citizen,,,,42,0,0,0,0
405
+ 2014-09-01,1995-06-28,citizen,,,,136.5,0,0,22,22
406
+ 2014-09-01,1994-11-11,citizen,,,,114,0,0,18,18
407
+ 2014-09-01,1993-04-29,citizen,,,,2920,0,584,467,1051
408
+ 2014-09-01,1991-01-01,citizen,,,,3740.1,0,748,598,1346
409
+ 2014-09-01,1990-05-17,citizen,,,,3576.81,0,715,573,1288
410
+ 2014-09-01,1992-01-10,citizen,,,,840,0,168,134,302
411
+ 2014-09-01,1966-09-27,permanent_resident,2010-01-01,,,1011.5,0,202,162,364
412
+ 2014-09-01,1995-04-20,citizen,,,,281.75,0,0,45,45
413
+ 2014-09-01,1995-06-11,citizen,,,,1282.5,0,256,206,462
414
+ 2014-09-01,1993-09-16,citizen,,,,1575,0,315,252,567
415
+ 2014-09-01,1980-01-29,citizen,,,,1560,0,312,250,562
416
+ 2014-09-01,1986-10-26,citizen,,,,2333.5,0,466,374,840
417
+ 2014-09-01,1994-01-16,citizen,,,,1296,0,259,208,467
418
+ 2014-09-01,1962-06-24,citizen,,,,1972,0,364,277,641
419
+ 2014-09-01,1994-04-04,citizen,,,,144,0,0,23,23
420
+ 2014-09-01,1983-12-21,citizen,,,,4400,0,880,704,1584
421
+ 2014-09-01,1989-05-26,citizen,,,,2500,0,500,400,900
422
+ 2014-09-01,1989-08-03,citizen,,,,2524.54,2500,1004,805,1809
423
+ 2014-09-01,1988-08-07,citizen,,,,2500,0,500,400,900
424
+ 2014-09-01,1991-02-12,citizen,,,,2500,0,500,400,900
425
+ 2014-09-01,1991-06-05,citizen,,,,2500,0,500,400,900
426
+ 2014-09-01,1956-06-19,citizen,,,,1534.35,0,199,162,361
427
+ 2014-09-01,1950-03-18,citizen,,,,1331.95,0,99,94,193
428
+ 2014-09-01,1990-04-21,citizen,,,,1588.5,0,317,255,572
429
+ 2014-09-01,1953-05-13,citizen,,,,927.3,0,69,65,134
430
+ 2014-09-01,1964-03-28,citizen,,,,1817.56,0,336,255,591
431
+ 2014-09-01,1994-04-14,citizen,,,,1225,0,245,196,441
432
+ 2014-09-01,1989-08-04,citizen,,,,662.68,0,97,107,204
433
+ 2014-09-01,1994-06-02,citizen,,,,455.58,0,0,73,73
434
+ 2014-09-01,1994-11-23,citizen,,,,1081.89,0,216,173,389
435
+ 2014-09-01,1993-10-14,citizen,,,,1198.69,0,239,193,432
436
+ 2014-09-01,1992-09-09,citizen,,,,609.63,0,65,98,163
437
+ 2014-09-01,1958-05-09,citizen,,,,985.81,0,128,104,232
438
+ 2014-09-01,1957-01-07,citizen,,,,22.68,0,0,0,0
439
+ 2014-09-01,1963-02-09,citizen,,,,525,0,13,74,87
440
+ 2014-09-01,1958-07-18,citizen,,,,1409.1,0,183,148,331
441
+ 2014-09-01,1955-12-05,citizen,,,,951,0,123,100,223
442
+ 2014-09-01,1972-09-05,citizen,,,,283.5,0,0,45,45
443
+ 2014-09-01,1994-07-01,citizen,,,,387,0,0,62,62
444
+ 2014-09-01,1990-05-21,citizen,,,,552.5,0,31,89,120
445
+ 2014-09-01,1990-03-14,citizen,,,,552.5,0,31,89,120
446
+ 2014-09-01,1991-12-25,citizen,,,,427,0,0,68,68
447
+ 2014-09-01,1990-08-14,citizen,,,,601,0,60,97,157
448
+ 2014-09-01,1989-06-01,citizen,,,,749,0,149,120,269
449
+ 2014-09-01,1990-04-04,citizen,,,,98,0,0,16,16
450
+ 2014-09-01,1991-05-03,citizen,,,,300,0,0,48,48
451
+ 2014-09-01,1992-09-02,citizen,,,,531,0,18,86,104
452
+ 2014-09-01,1990-10-24,citizen,,,,2242.5,0,448,359,807
453
+ 2014-09-01,1992-11-21,citizen,,,,72,0,0,12,12
454
+ 2014-09-01,1991-07-17,citizen,,,,1327.5,0,265,213,478
455
+ 2014-09-01,1993-06-14,citizen,,,,1518.75,0,303,244,547
456
+ 2014-09-01,1994-02-17,citizen,,,,76.5,0,0,12,12
457
+ 2014-09-01,1991-08-10,citizen,,,,2372.5,0,474,380,854
458
+ 2014-09-01,1992-09-06,citizen,,,,1500.75,0,300,240,540
459
+ 2014-09-01,1976-02-28,citizen,,,,2307.5,0,461,370,831
460
+ 2014-09-01,1987-04-05,citizen,,,,2915.25,0,583,466,1049
461
+ 2014-09-01,1993-12-12,citizen,,,,1766.25,0,353,283,636
462
+ 2014-09-01,1991-09-11,citizen,,,,1287,0,257,206,463
463
+ 2014-09-01,1976-08-03,citizen,,,,1638,0,327,263,590
464
+ 2014-09-01,1986-08-11,citizen,,,,994.5,0,198,160,358
465
+ 2014-09-01,1992-12-24,citizen,,,,1570.5,0,314,251,565
466
+ 2014-09-01,1987-02-09,citizen,,,,812.25,0,162,130,292
467
+ 2014-09-01,1981-07-16,citizen,,,,760.5,0,152,122,274
468
+ 2014-09-01,1991-03-28,citizen,,,,1334.25,0,266,214,480
469
+ 2014-09-01,1987-07-22,citizen,,,,1865.5,0,373,299,672
470
+ 2014-09-01,1992-09-23,citizen,,,,1246.5,0,249,200,449
471
+ 2014-09-01,1986-09-05,citizen,,,,1864.13,0,372,299,671
472
+ 2014-09-01,1988-06-21,citizen,,,,806,0,161,129,290
473
+ 2014-09-01,1970-08-27,citizen,,,,1295,0,259,207,466
474
+ 2014-09-01,1986-02-09,citizen,,,,968.71,66.35,207,166,373
475
+ 2014-09-01,1952-12-24,citizen,,,,1006.67,68.95,80,76,156
476
+ 2014-09-01,1988-03-06,citizen,,,,1400,0,280,224,504
477
+ 2014-09-01,1990-08-13,citizen,,,,1300.5,0,260,208,468
478
+ 2014-09-01,1986-12-23,citizen,,,,1263.46,0,252,203,455
479
+ 2014-09-01,1971-11-30,citizen,,,,896,0,179,144,323
480
+ 2014-09-01,1990-07-12,citizen,,,,0,458.64,0,73,73
481
+ 2014-09-01,1989-02-19,citizen,,,,1845,0,369,295,664
482
+ 2014-09-01,1956-09-09,citizen,,,,1303.16,0,169,137,306
483
+ 2014-09-01,1988-03-05,citizen,,,,1511.1,103.5,322,259,581
484
+ 2014-09-01,1959-04-04,citizen,,,,1337.36,91.6,185,151,336
485
+ 2014-09-01,1990-06-10,citizen,,,,2367.63,0,473,379,852
486
+ 2014-09-01,1948-02-21,citizen,,,,531.44,0,4,35,39
487
+ 2014-09-01,1984-05-05,citizen,,,,1358.41,0,271,218,489
488
+ 2014-09-01,1989-05-30,citizen,,,,1209.62,0,241,194,435
489
+ 2014-09-01,1991-12-11,citizen,,,,1296.75,0,259,208,467
490
+ 2014-09-01,1954-04-29,citizen,,,,1774.63,121.55,142,133,275
491
+ 2014-09-01,1979-07-08,citizen,,,,1450,0,290,232,522
492
+ 2014-09-01,1958-06-22,citizen,,,,1649.8,113,229,185,414
493
+ 2014-09-01,1983-10-25,citizen,,,,2350,0,470,376,846
494
+ 2014-09-01,1961-12-17,citizen,,,,818.18,0,151,115,266
495
+ 2014-09-01,1950-09-05,citizen,,,,1418.39,97.15,113,107,220
496
+ 2014-09-01,1954-07-13,citizen,,,,1081.5,0,81,76,157
497
+ 2014-09-01,1968-09-13,citizen,,,,1774.63,121.55,379,304,683
498
+ 2014-09-01,1994-10-09,citizen,,,,105,0,0,17,17
499
+ 2014-09-01,1995-12-12,citizen,,,,1107.75,0,221,178,399
500
+ 2014-09-01,1989-07-21,citizen,,,,1418.18,0,283,228,511
501
+ 2014-09-01,1974-09-30,permanent_resident,2010-01-01,,,1700,0,340,272,612
502
+ 2014-09-01,1963-02-28,citizen,,,,1285.91,0,237,181,418
503
+ 2014-09-01,1975-04-03,citizen,,,,1465,0,293,234,527
504
+ 2014-09-01,1978-11-25,citizen,,,,1650,0,330,264,594
505
+ 2014-09-01,1969-04-09,citizen,,,,1675,0,335,268,603
506
+ 2014-09-01,1986-12-29,citizen,,,,1350,0,270,216,486
507
+ 2014-09-01,1947-06-30,citizen,,,,2000,0,100,130,230
508
+ 2014-09-01,1952-11-20,citizen,,,,1318.18,0,98,93,191
509
+ 2014-09-01,1963-11-24,citizen,,,,2450,0,453,343,796
510
+ 2014-09-01,1988-10-08,citizen,,,,1650,0,330,264,594
511
+ 2014-09-01,1993-07-13,citizen,,,,1020,0,204,163,367
512
+ 2014-09-01,1989-12-27,citizen,,,,2200,0,440,352,792
513
+ 2014-09-01,1992-06-08,citizen,,,,1600,0,320,256,576
514
+ 2014-09-01,1952-10-30,citizen,,,,1300,0,97,92,189
515
+ 2014-09-01,1973-12-13,citizen,,,,1026.38,70.3,219,176,395
516
+ 2014-09-01,1961-05-28,citizen,,,,1058.36,0,195,149,344
517
+ 2014-09-01,1955-10-28,citizen,,,,531.44,0,12,56,68
518
+ 2014-09-01,1956-03-28,citizen,,,,1563.64,0,203,164,367
519
+ 2014-09-01,1972-06-12,citizen,,,,1400,0,280,224,504
520
+ 2014-09-01,1977-12-27,citizen,,,,1368.18,0,273,220,493
521
+ 2014-09-01,1959-02-27,citizen,,,,1204.52,0,156,127,283
522
+ 2014-09-01,1959-03-12,citizen,,,,1750,0,227,184,411
523
+ 2014-09-01,1968-07-05,citizen,,,,2020,0,404,323,727
524
+ 2014-09-01,1965-04-11,citizen,,,,2020,0,404,323,727
525
+ 2014-09-01,1953-08-29,citizen,,,,1300,0,97,92,189
526
+ 2014-09-01,1994-10-20,citizen,,,,112.5,0,0,18,18
527
+ 2014-09-01,1988-11-26,citizen,,,,2240.8,0,448,359,807
528
+ 2014-09-01,1963-08-22,citizen,,,,1600,0,296,224,520
529
+ 2014-09-01,1988-01-31,citizen,,,,1300,0,260,208,468
530
+ 2014-09-01,1957-09-24,citizen,,,,1300,0,169,137,306
531
+ 2014-09-01,1991-08-05,citizen,,,,1300,0,260,208,468
532
+ 2014-09-01,1988-10-14,citizen,,,,774.53,0,154,125,279
533
+ 2014-09-01,1990-06-05,citizen,,,,1700,0,340,272,612
534
+ 2014-09-01,1994-11-17,citizen,,,,0,422.73,0,68,68
535
+ 2014-09-01,1968-10-05,citizen,,,,427,0,0,68,68
536
+ 2014-09-01,1966-11-24,citizen,,,,1209.62,0,241,194,435
537
+ 2014-09-01,1986-07-21,citizen,,,,1200,0,240,192,432
538
+ 2014-09-01,1990-02-28,citizen,,,,0,509.67,5,82,87
539
+ 2014-09-01,1980-10-11,citizen,,,,0,168.21,0,27,27
540
+ 2014-09-01,1993-03-06,citizen,,,,103.13,0,0,17,17
541
+ 2014-09-01,1991-04-14,citizen,,,,376.92,0,0,60,60
542
+ 2014-09-01,1953-12-27,citizen,,,,1300,0,97,92,189
543
+ 2014-09-01,1992-09-10,citizen,,,,1150.77,0,230,184,414
544
+ 2014-09-01,1993-09-27,citizen,,,,1177.17,0,235,189,424
545
+ 2014-09-01,1994-11-15,citizen,,,,1600,0,320,256,576
546
+ 2014-09-01,1976-02-29,citizen,,,,0,153.09,0,24,24
547
+ 2014-09-01,1972-09-05,citizen,,,,1700,0,340,272,612
548
+ 2014-09-01,1957-11-28,citizen,,,,1300,0,169,137,306
549
+ 2014-09-01,1953-08-25,citizen,,,,1300,0,97,92,189
550
+ 2014-09-01,1994-09-07,citizen,,,,63,0,0,10,10
551
+ 2014-09-01,1976-07-04,citizen,,,,1350,0,270,216,486
552
+ 2014-09-01,1993-09-25,citizen,,,,484.62,0,0,78,78
553
+ 2014-09-01,1994-05-21,citizen,,,,1420,0,284,227,511
554
+ 2014-09-01,1986-11-10,citizen,,,,53.85,0,0,9,9
555
+ 2014-09-01,1991-11-14,citizen,,,,2200,0,440,352,792
556
+ 2014-09-01,1986-07-08,citizen,,,,1083.33,0,216,174,390
557
+ 2014-09-01,1966-02-16,citizen,,,,1300,0,260,208,468
558
+ 2014-09-01,1983-05-20,citizen,,,,2200,0,440,352,792
559
+ 2014-09-01,1994-02-01,citizen,,,,1304.55,0,260,210,470
560
+ 2014-09-01,1994-11-29,citizen,,,,1400,0,280,224,504
561
+ 2014-09-01,1991-10-09,citizen,,,,1272.73,0,254,204,458
562
+ 2014-09-01,1991-02-18,citizen,,,,1420,0,284,227,511
563
+ 2014-09-01,1963-04-02,citizen,,,,1400,0,259,196,455
564
+ 2014-09-01,1987-03-02,citizen,,,,1075,0,215,172,387
565
+ 2014-09-01,1996-03-25,citizen,,,,725,0,135,116,251
566
+ 2014-09-01,1961-04-03,citizen,,,,186.54,0,0,26,26
567
+ 2014-09-01,1996-01-26,citizen,,,,161.54,0,0,26,26
568
+ 2014-09-01,1959-07-06,citizen,,,,318.18,0,0,33,33
569
+ 2014-09-01,1953-08-01,citizen,,,,531.82,0,7,37,44
570
+ 2014-09-01,1993-07-11,citizen,,,,318.18,0,0,51,51
571
+ 2014-09-01,1966-01-21,citizen,,,,1425,0,285,228,513
572
+ 2014-09-01,1993-03-24,citizen,,,,455.77,0,0,73,73
573
+ 2014-09-01,1993-09-02,citizen,,,,318.18,0,0,51,51
574
+ 2014-09-01,1995-11-07,citizen,,,,1101.92,0,220,177,397
575
+ 2014-09-01,1991-08-28,citizen,,,,318.18,0,0,51,51
576
+ 2014-09-01,1958-05-22,citizen,,,,318.18,0,0,33,33
577
+ 2014-09-01,1996-03-30,citizen,,,,1101.92,0,220,177,397
578
+ 2014-09-01,1970-05-26,citizen,,,,318.18,0,0,51,51
579
+ 2014-09-01,1973-08-07,citizen,,,,1182.69,0,236,190,426
580
+ 2014-09-01,1959-05-21,citizen,,,,1236.54,0,160,131,291
581
+ 2014-09-01,1965-06-09,citizen,,,,318.18,0,0,51,51
582
+ 2014-09-01,1960-07-02,citizen,,,,1177.27,0,217,166,383
583
+ 2014-09-01,1988-01-01,citizen,,,,318.18,0,0,51,51
584
+ 2014-09-01,1977-02-15,citizen,,,,1425,0,285,228,513
585
+ 2014-09-01,1995-11-30,citizen,,,,1101.92,0,220,177,397
586
+ 2014-09-01,1996-08-16,citizen,,,,1021.15,0,204,164,368
587
+ 2014-09-01,1984-03-14,citizen,,,,886.54,0,177,142,319
588
+ 2014-09-01,1979-04-11,citizen,,,,318.18,0,0,51,51
589
+ 2014-09-01,1973-02-26,citizen,,,,1371.15,0,274,220,494
590
+ 2014-09-01,1987-09-01,citizen,,,,872.73,0,174,140,314
591
+ 2014-09-01,1996-08-22,citizen,,,,886.54,0,177,142,319
592
+ 2014-09-01,1993-02-25,citizen,,,,127.27,0,0,20,20
593
+ 2014-09-01,1981-05-07,citizen,,,,1491.75,0,298,239,537
594
+ 2014-09-01,1971-07-17,citizen,,,,1683,0,336,270,606
595
+ 2014-09-01,1990-04-02,citizen,,,,847.65,0,169,136,305
596
+ 2014-09-01,1990-12-01,citizen,,,,1634,0,326,262,588
597
+ 2014-09-01,1989-01-31,citizen,,,,1672,0,334,268,602
598
+ 2014-09-01,1984-06-27,citizen,,,,2431,0,486,389,875
599
+ 2014-09-01,1992-10-27,citizen,,,,1683,0,336,270,606
600
+ 2014-09-01,1988-05-24,citizen,,,,765,0,153,122,275
601
+ 2014-09-01,1992-10-27,citizen,,,,1672,0,334,268,602
602
+ 2014-09-01,1990-01-22,citizen,,,,1672,0,334,268,602
603
+ 2014-09-01,1990-09-08,citizen,,,,1912.5,0,382,307,689
604
+ 2014-09-01,1963-06-02,citizen,,,,1683,0,311,236,547
605
+ 2014-09-01,1990-01-01,citizen,,,,1530,0,306,245,551
606
+ 2014-09-01,1991-07-29,citizen,,,,2431,0,486,389,875
607
+ 2014-09-01,1991-01-15,citizen,,,,2431,0,486,389,875
608
+ 2014-09-01,1989-09-29,citizen,,,,612,0,67,98,165
609
+ 2014-09-01,1992-11-05,citizen,,,,2431,0,486,389,875
610
+ 2014-09-01,1974-09-24,citizen,,,,1683,0,336,270,606
611
+ 2014-09-01,1990-05-03,citizen,,,,2301,0,460,368,828
612
+ 2014-09-01,1993-03-03,citizen,,,,1683,0,336,270,606
613
+ 2014-09-01,1988-07-09,citizen,,,,1683,0,336,270,606
614
+ 2014-09-01,1948-10-31,citizen,,,,1309,0,65,86,151
615
+ 2014-09-01,1962-01-18,citizen,,,,1300.5,0,240,183,423
616
+ 2014-09-01,1988-11-09,citizen,,,,1267.5,0,253,203,456
617
+ 2014-09-01,1986-07-18,citizen,,,,2431,0,486,389,875
618
+ 2014-09-01,1975-11-17,citizen,,,,952,0,190,153,343
619
+ 2014-09-01,1978-04-12,citizen,,,,1326,0,265,212,477
620
+ 2014-09-01,1991-05-21,citizen,,,,765,0,153,122,275
621
+ 2014-09-01,1992-02-01,citizen,,,,864,0,172,139,311
622
+ 2014-09-01,1990-08-01,citizen,,,,1453.5,0,290,233,523
623
+ 2014-09-01,1991-04-02,citizen,,,,2320.5,0,464,371,835
624
+ 2014-09-01,1968-03-03,citizen,,,,1160.25,0,232,186,418
625
+ 2014-09-01,1994-04-04,citizen,,,,1683,0,336,270,606
626
+ 2014-09-01,1994-01-24,citizen,,,,1759.5,0,351,282,633
627
+ 2014-09-01,1992-12-08,citizen,,,,1721.25,0,344,276,620
628
+ 2014-09-01,1990-02-08,citizen,,,,1453.5,0,290,233,523
629
+ 2014-09-01,1971-01-09,citizen,,,,1912.5,0,382,307,689
630
+ 2014-09-01,1992-09-20,citizen,,,,1836,0,367,294,661
631
+ 2014-09-01,1967-07-07,citizen,,,,119,0,0,19,19
632
+ 2014-09-01,1987-12-30,citizen,,,,1530,0,306,245,551
633
+ 2014-09-01,1986-10-08,citizen,,,,1326,0,265,212,477
634
+ 2014-09-01,1992-03-18,citizen,,,,1215.5,0,243,195,438
635
+ 2014-09-01,1959-11-09,citizen,,,,1011.5,0,187,142,329
636
+ 2014-09-01,1984-11-03,citizen,,,,1300.5,0,260,208,468
637
+ 2014-09-01,1993-11-08,citizen,,,,1147.5,0,229,184,413
638
+ 2014-09-01,1989-07-10,citizen,,,,331.5,0,0,53,53
639
+ 2014-09-01,1990-09-12,citizen,,,,1147.5,0,229,184,413
640
+ 2014-09-01,1984-01-31,citizen,,,,1147.5,0,229,184,413
641
+ 2014-09-01,1990-11-03,citizen,,,,1381.25,0,276,221,497
642
+ 2014-09-01,1991-02-25,citizen,,,,1436.5,0,287,230,517
643
+ 2014-09-01,1965-05-06,citizen,,,,654.5,0,92,105,197
644
+ 2014-09-01,1994-03-26,citizen,,,,841.5,0,168,135,303
645
+ 2014-09-01,1987-05-14,citizen,,,,1224,0,244,197,441
646
+ 2014-09-01,1992-06-26,citizen,,,,1130.5,0,226,181,407
647
+ 2014-09-01,1995-04-06,citizen,,,,420,0,0,67,67
648
+ 2014-09-01,1947-10-22,citizen,,,,2431,0,121,159,280
649
+ 2014-09-01,1948-10-30,citizen,,,,1530,0,76,100,176
650
+ 2014-09-01,1988-01-20,citizen,,,,535.5,0,21,86,107
651
+ 2014-09-01,1994-04-29,citizen,,,,535.5,0,21,86,107
652
+ 2014-09-01,1994-04-27,citizen,,,,1071,0,214,172,386
653
+ 2014-09-01,1956-07-08,citizen,,,,918,0,119,97,216
654
+ 2014-09-01,1992-04-20,citizen,,,,1147.5,0,229,184,413
655
+ 2014-09-01,1984-10-10,citizen,,,,376.25,0,0,60,60
656
+ 2014-09-01,1990-07-19,citizen,,,,765,0,153,122,275
657
+ 2014-09-01,1959-02-16,citizen,,,,654.5,0,60,69,129
658
+ 2014-09-01,1991-01-02,citizen,,,,535.5,0,21,86,107
659
+ 2014-09-01,1992-12-25,citizen,,,,1530,0,306,245,551
660
+ 2014-09-01,1988-11-17,citizen,,,,1326,0,265,212,477
661
+ 2014-09-01,1989-12-29,citizen,,,,1606.5,0,321,257,578
662
+ 2014-09-01,1996-01-25,citizen,,,,416.5,0,0,67,67
663
+ 2014-09-01,1982-03-26,citizen,,,,459,0,0,73,73
664
+ 2014-09-01,1991-06-21,citizen,,,,552.5,0,31,89,120
665
+ 2014-09-01,1983-04-19,citizen,,,,1224,0,244,197,441
666
+ 2014-09-01,1989-01-01,citizen,,,,1326,0,265,212,477
667
+ 2014-09-01,1994-05-13,citizen,,,,2522.89,0,504,404,908
668
+ 2014-09-01,1992-08-03,citizen,,,,315,0,0,50,50
669
+ 2014-09-01,1987-03-06,citizen,,,,2418,0,483,387,870
670
+ 2014-09-01,1991-09-08,citizen,,,,1600,0,320,256,576
671
+ 2014-09-01,1983-10-08,citizen,,,,1219.5,0,243,196,439
672
+ 2014-09-01,1991-09-23,citizen,,,,1064,0,212,171,383
673
+ 2014-09-01,1986-09-06,permanent_resident,2010-01-01,,,2029.45,0,405,326,731
674
+ 2014-09-01,1989-10-21,citizen,,,,207.23,0,0,33,33
675
+ 2014-09-01,1991-09-05,citizen,,,,1936.21,0,387,310,697
676
+ 2014-09-01,1990-09-20,citizen,,,,917,0,183,147,330
677
+ 2014-09-01,1992-02-01,citizen,,,,1387.5,0,277,223,500
678
+ 2014-09-01,1990-04-30,citizen,,,,1592.85,0,318,255,573
679
+ 2014-09-01,1967-03-15,citizen,,,,2255.15,0,451,361,812
680
+ 2014-09-01,1983-12-19,citizen,,,,1397.3,0,279,224,503
681
+ 2014-09-01,1950-08-28,citizen,,,,1256.01,0,94,88,182
682
+ 2014-09-01,1984-02-11,citizen,,,,2255.15,0,451,361,812
683
+ 2014-09-01,1989-03-08,citizen,,,,2310.01,0,462,370,832
684
+ 2014-09-01,1990-02-26,citizen,,,,2255.15,0,451,361,812
685
+ 2014-09-01,1989-07-06,citizen,,,,66.73,0,0,11,11
686
+ 2014-09-01,1991-07-12,citizen,,,,1252.08,0,250,201,451
687
+ 2014-09-01,1989-11-24,citizen,,,,1335.7,0,267,214,481
688
+ 2014-09-01,1990-11-23,citizen,,,,2054.02,0,410,329,739
689
+ 2014-09-01,1993-09-26,citizen,,,,1275,0,255,204,459
690
+ 2014-09-01,1992-11-24,citizen,,,,1155.2,0,231,185,416
691
+ 2014-09-01,1991-12-26,citizen,,,,61.37,0,0,10,10
692
+ 2014-09-01,1994-03-24,citizen,,,,1444.74,0,288,232,520
693
+ 2014-09-01,1990-06-13,citizen,,,,1950.4,0,390,312,702
694
+ 2014-09-01,1991-06-17,citizen,,,,922.38,0,184,148,332
695
+ 2014-09-01,1992-09-07,citizen,,,,1335.7,0,267,214,481
696
+ 2014-09-01,1984-12-02,citizen,,,,1452.25,0,290,233,523
697
+ 2014-09-01,1991-03-05,citizen,,,,1335.7,0,267,214,481
698
+ 2014-09-01,1991-12-24,citizen,,,,1151.59,0,230,185,415
699
+ 2014-09-01,1994-01-24,citizen,,,,2029.45,0,405,326,731
700
+ 2014-09-01,1996-01-08,citizen,,,,952.5,0,190,153,343
701
+ 2014-09-01,1996-12-22,citizen,,,,10,0,0,0,0
702
+ 2014-09-01,1990-10-07,citizen,,,,747.5,0,148,120,268
703
+ 2014-09-01,1993-05-30,citizen,,,,662.5,0,97,107,204
704
+ 2014-09-01,1995-08-27,citizen,,,,670,0,102,107,209
705
+ 2014-09-01,1992-10-12,citizen,,,,575,0,45,92,137
706
+ 2014-09-01,1992-03-29,citizen,,,,547.5,0,28,88,116
707
+ 2014-09-01,1987-11-26,citizen,,,,412.5,0,0,66,66
708
+ 2014-09-01,1959-03-27,citizen,,,,730,0,89,77,166
709
+ 2014-09-01,1993-08-17,citizen,,,,407.5,0,0,65,65
710
+ 2014-09-01,1995-11-04,citizen,,,,1315,0,263,210,473
711
+ 2014-09-01,1996-09-28,citizen,,,,1382.5,0,276,222,498
712
+ 2014-09-01,1996-05-09,permanent_resident,2010-01-01,,,1085,0,217,174,391
713
+ 2014-09-01,1994-05-03,citizen,,,,637.5,0,82,103,185
714
+ 2014-09-01,1990-10-06,citizen,,,,1734.55,50,356,286,642
715
+ 2014-09-01,1993-11-29,permanent_resident,2010-01-01,,,1754.69,50,360,290,650
716
+ 2014-09-01,1989-10-29,citizen,,,,3178.63,0,635,509,1144
717
+ 2014-09-01,1996-12-14,citizen,,,,485,0,0,78,78
718
+ 2014-09-01,1996-01-29,citizen,,,,705,0,123,113,236
719
+ 2014-09-01,1990-11-13,citizen,,,,820,0,164,131,295
720
+ 2014-09-01,1994-11-26,citizen,,,,1140,0,228,182,410
721
+ 2014-09-01,1994-04-06,citizen,,,,707.5,0,124,114,238
722
+ 2014-09-01,1989-09-12,citizen,,,,515,0,9,82,91
723
+ 2014-09-01,1991-07-15,citizen,,,,925,0,185,148,333
724
+ 2014-09-01,1991-08-14,permanent_resident,2010-01-01,,,245,0,0,39,39
725
+ 2014-09-01,1988-11-16,citizen,,,,2197.06,50,449,360,809
726
+ 2014-09-01,1956-03-08,citizen,,,,2100,50,279,226,505
727
+ 2014-09-01,1957-06-28,citizen,,,,2018.18,50,268,218,486
728
+ 2014-09-01,1993-03-02,citizen,,,,1974.82,50,404,325,729
729
+ 2014-09-01,1963-08-13,citizen,,,,1824.27,50,346,263,609
730
+ 2014-09-01,1992-05-29,citizen,,,,1786.01,50,367,294,661
731
+ 2014-09-01,1955-02-04,citizen,,,,1923.92,50,256,208,464
732
+ 2014-09-01,1990-01-08,citizen,,,,1817.63,50,373,299,672
733
+ 2014-09-01,1985-01-02,citizen,,,,2000,50,410,328,738
734
+ 2014-09-01,1996-03-13,citizen,,,,515,0,9,82,91
735
+ 2014-09-01,1994-12-20,citizen,,,,675,0,105,108,213
736
+ 2014-09-01,1995-10-07,citizen,,,,680,0,108,109,217
737
+ 2014-09-01,1994-01-19,citizen,,,,280,0,0,45,45
738
+ 2014-09-01,1991-01-25,citizen,,,,345,0,0,55,55
739
+ 2014-09-01,1995-07-06,citizen,,,,770,0,154,123,277
740
+ 2014-09-01,1991-02-25,citizen,,,,385,0,0,62,62
741
+ 2014-09-01,1992-12-12,citizen,,,,507.5,0,4,82,86
742
+ 2014-09-01,1996-11-20,citizen,,,,330,0,0,53,53
743
+ 2014-09-01,1996-01-22,citizen,,,,125,0,0,20,20
744
+ 2014-09-01,1993-11-05,citizen,,,,125,0,0,20,20
745
+ 2014-09-01,1995-06-15,citizen,,,,617.5,0,70,99,169
746
+ 2014-09-01,1995-02-06,citizen,,,,285,0,0,46,46
747
+ 2014-09-01,1991-04-08,citizen,,,,737.5,0,142,119,261
748
+ 2014-09-01,1994-01-08,citizen,,,,1422.5,0,284,228,512
749
+ 2014-09-01,1991-08-26,citizen,,,,415,0,0,66,66
750
+ 2014-09-01,1990-09-17,citizen,,,,1332.5,0,266,214,480
751
+ 2014-09-01,1991-01-11,citizen,,,,135,10,0,23,23
752
+ 2014-09-01,1982-01-07,citizen,,,,1631.25,0,326,261,587
753
+ 2014-09-01,1993-07-15,citizen,,,,1320,0,264,211,475
754
+ 2014-09-01,1993-10-01,permanent_resident,2010-01-01,,,975,0,195,156,351
755
+ 2014-09-01,1992-03-26,citizen,,,,1482.5,0,296,238,534
756
+ 2014-09-01,1996-03-07,citizen,,,,672.5,0,103,108,211
757
+ 2014-09-01,1996-01-11,citizen,,,,575,0,45,92,137
758
+ 2014-09-01,1992-11-17,citizen,,,,990,0,198,158,356
759
+ 2014-09-01,1995-11-05,citizen,,,,927.5,0,185,149,334
760
+ 2014-09-01,1992-05-13,citizen,,,,1578.75,0,315,253,568
761
+ 2014-09-01,1977-01-14,citizen,,,,2092.21,0,418,335,753
762
+ 2014-09-01,1990-02-17,citizen,,,,448,0,0,72,72
763
+ 2014-09-01,1965-03-30,citizen,,,,1025.5,0,205,164,369
764
+ 2014-09-01,1960-02-10,citizen,,,,1387.75,0,256,195,451
765
+ 2014-09-01,1972-01-03,citizen,,,,1216.26,0,243,195,438
766
+ 2014-09-01,1982-06-04,citizen,,,,997.5,0,199,160,359
767
+ 2014-09-01,1945-01-14,citizen,,,,1338.75,0,66,88,154
768
+ 2014-09-01,1950-11-15,citizen,,,,938,0,70,66,136
769
+ 2014-09-01,1947-10-07,citizen,,,,1588.13,0,79,104,183
770
+ 2014-09-01,1953-10-22,citizen,,,,2160,0,162,151,313
771
+ 2014-09-01,1990-08-17,citizen,,,,526.5,0,15,85,100
772
+ 2014-09-01,1952-09-27,citizen,,,,84,0,0,6,6
773
+ 2014-09-01,1955-04-24,citizen,,,,56,0,0,6,6
774
+ 2014-09-01,1951-08-26,citizen,,,,112,0,0,8,8
775
+ 2014-09-01,1958-04-10,citizen,,,,28,0,0,0,0
776
+ 2014-09-01,1947-07-19,citizen,,,,906.29,0,45,59,104
777
+ 2014-09-01,1955-03-08,citizen,,,,766.36,0,99,81,180
778
+ 2014-09-01,1958-11-29,citizen,,,,586.46,0,33,62,95
779
+ 2014-09-01,1955-09-21,citizen,,,,563.71,0,24,60,84
780
+ 2014-09-01,1991-10-13,citizen,,,,848.75,0,169,137,306
781
+ 2014-09-01,1955-04-24,citizen,,,,1102.5,0,143,116,259
782
+ 2014-09-01,1988-09-06,citizen,,,,2443.18,0,488,392,880
783
+ 2014-09-01,1958-11-20,citizen,,,,2467.5,0,320,260,580
784
+ 2014-09-01,1941-01-22,citizen,,,,967.75,0,48,63,111
785
+ 2014-09-01,1962-09-06,citizen,,,,6000,0,925,700,1625
786
+ 2014-09-01,1972-08-10,citizen,,,,1800,0,360,288,648
787
+ 2014-09-01,1966-05-08,citizen,,,,3636.36,0,727,582,1309
788
+ 2014-09-01,1954-05-06,citizen,,,,2350,0,176,165,341
789
+ 2014-09-01,1992-09-03,citizen,,,,2200,0,440,352,792
790
+ 2014-09-01,1945-11-19,citizen,,,,1659,0,82,109,191
791
+ 2014-09-01,1971-10-21,citizen,,,,4000,0,800,640,1440
792
+ 2014-09-01,1984-09-12,citizen,,,,3200,0,640,512,1152
793
+ 2014-09-01,1992-04-16,citizen,,,,1288.25,76.5,272,219,491
794
+ 2014-09-01,1977-03-11,citizen,,,,5483,0,1000,800,1800
795
+ 2014-09-01,1994-12-28,citizen,,,,112.5,0,0,18,18
796
+ 2014-09-01,1967-12-09,citizen,,,,159.25,0,0,25,25
797
+ 2014-09-01,1990-04-24,citizen,,,,1035,0,207,166,373
798
+ 2014-09-01,1989-07-29,citizen,,,,94.5,0,0,15,15
799
+ 2014-09-01,1971-10-27,citizen,,,,1700,0,340,272,612
800
+ 2014-09-01,1986-05-02,citizen,,,,2328,0,465,373,838
801
+ 2014-09-01,1994-09-21,citizen,,,,1073.07,0,214,172,386
802
+ 2014-09-01,1995-01-02,citizen,,,,654.5,0,92,105,197
803
+ 2014-09-01,1993-09-30,citizen,,,,933.45,0,186,150,336
804
+ 2014-09-01,1972-02-21,permanent_resident,2010-01-01,,,5790.27,0,1000,800,1800
805
+ 2014-09-01,1991-01-18,citizen,,,,796.25,0,159,128,287
806
+ 2014-09-01,1985-11-11,citizen,,,,1111.25,0,222,178,400
807
+ 2014-09-01,1981-04-27,citizen,,,,1700,0,340,272,612
808
+ 2014-09-01,1992-02-06,citizen,,,,1016.73,0,203,163,366
809
+ 2014-09-01,1985-10-25,citizen,,,,1327.5,0,265,213,478
810
+ 2014-09-01,1984-02-28,citizen,,,,1071,0,214,172,386
811
+ 2014-09-01,1962-07-19,citizen,,,,897.12,0,165,127,292
812
+ 2014-09-01,1978-05-30,citizen,,,,1183,0,236,190,426
813
+ 2014-09-01,1950-12-11,citizen,,,,1288,0,96,91,187
814
+ 2014-09-01,1975-09-11,permanent_resident,2010-01-01,,,469,0,0,75,75
815
+ 2014-09-01,1988-08-25,citizen,,,,2052,0,410,329,739
816
+ 2014-09-01,1991-02-11,citizen,,,,770,0,154,123,277
817
+ 2014-09-01,1995-09-09,citizen,,,,255.5,0,0,41,41
818
+ 2014-09-01,1990-09-29,citizen,,,,2900,0,580,464,1044
819
+ 2014-09-01,1987-08-16,citizen,,,,1732.5,0,346,278,624
820
+ 2014-09-01,1969-12-16,citizen,,,,5000,0,1000,800,1800
821
+ 2014-09-01,1978-06-19,citizen,,,,2400,0,480,384,864
822
+ 2014-09-01,1959-06-13,citizen,,,,1346.24,0,175,141,316
823
+ 2014-09-01,1990-11-19,citizen,,,,152.25,0,0,24,24
824
+ 2014-09-01,1994-12-01,citizen,,,,147,0,0,24,24
825
+ 2014-09-01,1994-06-06,citizen,,,,94.5,0,0,15,15
826
+ 2014-09-01,1994-12-03,citizen,,,,20,0,0,0,0
827
+ 2014-09-01,1990-01-12,citizen,,,,126,0,0,20,20
828
+ 2014-09-01,1994-11-01,citizen,,,,2200.72,0,440,352,792
829
+ 2014-09-01,1986-12-01,citizen,,,,3100,0,620,496,1116
830
+ 2014-09-01,1946-08-18,citizen,,,,1700,0,85,111,196
831
+ 2014-09-01,1987-09-01,citizen,,,,565.47,0,39,91,130
832
+ 2014-09-01,1993-05-15,citizen,,,,390.78,0,0,63,63
833
+ 2014-09-01,1992-12-30,citizen,,,,406,0,0,65,65
834
+ 2014-09-01,1994-01-28,citizen,,,,531.29,0,18,86,104
835
+ 2014-09-01,1991-02-16,citizen,,,,217,0,0,35,35
836
+ 2014-09-01,1994-03-04,citizen,,,,154,0,0,25,25
837
+ 2014-09-01,1990-07-02,citizen,,,,1584,0,316,254,570
838
+ 2014-09-01,1956-01-05,citizen,,,,1009.75,0,131,106,237
839
+ 2014-09-01,1990-04-28,citizen,,,,2200,0,440,352,792
840
+ 2014-09-01,1990-05-22,citizen,,,,1512,0,302,242,544
841
+ 2014-09-01,1994-05-12,citizen,,,,455,0,0,73,73
842
+ 2014-09-01,1993-02-03,citizen,,,,57.75,0,0,9,9
843
+ 2014-09-01,1986-06-13,citizen,,,,736.75,0,142,118,260
844
+ 2014-09-01,1973-02-27,citizen,,,,641.25,0,84,103,187
845
+ 2014-09-01,1990-08-14,citizen,,,,2317,0,463,371,834
846
+ 2014-09-01,1991-01-17,citizen,,,,997.5,0,199,160,359
847
+ 2014-09-01,1987-12-05,citizen,,,,1979.1,0,395,317,712
848
+ 2014-09-01,1987-11-30,citizen,,,,2200,0,440,352,792
849
+ 2014-09-01,1961-10-11,citizen,,,,1463,0,270,205,475
850
+ 2014-09-01,1985-03-22,citizen,,,,2414.51,0,482,387,869
851
+ 2014-09-01,1992-10-07,citizen,,,,554.75,0,32,90,122
852
+ 2014-09-01,1994-01-28,citizen,,,,13.79,0,0,0,0
853
+ 2014-09-01,1987-06-23,citizen,,,,290.92,0,0,47,47
854
+ 2014-09-01,1993-02-01,citizen,,,,92.25,0,0,15,15
855
+ 2014-09-01,1994-01-23,citizen,,,,378.21,0,0,61,61
856
+ 2014-09-01,1995-07-20,citizen,,,,90,0,0,14,14
857
+ 2014-09-01,1994-04-14,citizen,,,,320.25,0,0,51,51
858
+ 2014-09-01,1991-10-11,permanent_resident,2010-01-01,,,829.5,0,165,134,299
859
+ 2014-09-01,1991-11-11,citizen,,,,1668.6,0,333,268,601
860
+ 2014-09-01,1989-11-14,citizen,,,,164.5,0,0,26,26
861
+ 2014-09-01,1992-10-23,citizen,,,,559.79,0,35,90,125
862
+ 2014-09-01,1976-11-09,citizen,,,,1071,0,214,172,386
863
+ 2014-09-01,1975-08-10,citizen,,,,1396.5,0,279,224,503
864
+ 2014-09-01,1990-07-16,citizen,,,,890.75,0,178,143,321
865
+ 2014-09-01,1988-12-31,citizen,,,,598.5,0,59,96,155
866
+ 2014-09-01,1994-06-24,citizen,,,,1239,0,247,199,446
867
+ 2014-09-01,1991-02-04,citizen,,,,1316,0,263,211,474
868
+ 2014-09-01,1992-01-18,citizen,,,,47.25,0,0,0,0
869
+ 2014-09-01,1993-06-15,citizen,,,,1228.5,0,245,197,442
870
+ 2014-09-01,1986-05-01,citizen,,,,1100,0,220,176,396
871
+ 2014-09-01,1966-08-22,citizen,,,,438.1,0,0,70,70
872
+ 2014-09-01,1994-12-28,citizen,,,,1250.38,0,250,200,450
873
+ 2014-09-01,1991-06-07,citizen,,,,945,0,189,151,340
874
+ 2014-09-01,1972-08-05,citizen,,,,1399.5,0,279,225,504
875
+ 2014-09-01,1990-11-17,citizen,,,,1314,0,262,211,473
876
+ 2014-09-01,1989-04-21,permanent_resident,2014-09-01,graduated,graduated,1451.25,0,72,59,131
877
+ 2014-09-01,1990-08-09,citizen,,,,477,0,0,76,76
878
+ 2014-09-01,1991-11-04,citizen,,,,1008,0,201,162,363
879
+ 2014-09-01,1993-03-23,permanent_resident,2013-07-16,graduated,graduated,1849.5,0,277,167,444
880
+ 2014-09-01,1989-08-19,citizen,,,,500,0,0,80,80
881
+ 2014-09-01,1994-04-25,permanent_resident,2010-01-01,,,500,0,0,80,80
882
+ 2014-09-01,1992-07-31,citizen,,,,98,0,0,16,16
883
+ 2014-09-01,1994-10-08,citizen,,,,291.2,0,0,47,47
884
+ 2014-09-01,1993-08-03,citizen,,,,500,0,0,80,80
885
+ 2014-09-01,1991-02-13,citizen,,,,98,0,0,16,16
886
+ 2014-09-01,1992-12-23,citizen,,,,98,0,0,16,16
887
+ 2014-09-01,1984-05-27,citizen,,,,1586.25,0,317,254,571
888
+ 2014-09-01,1992-04-15,citizen,,,,2200,0,440,352,792
889
+ 2014-09-01,1980-11-09,citizen,,,,171.5,0,0,27,27
890
+ 2014-09-01,1979-11-15,citizen,,,,1281,0,256,205,461
891
+ 2014-09-01,1964-02-23,citizen,,,,1228.5,0,227,172,399
892
+ 2014-09-01,1991-12-06,citizen,,,,1316.25,0,263,211,474
893
+ 2014-09-01,1993-04-13,citizen,,,,807.63,0,161,130,291
894
+ 2014-09-01,1980-01-06,citizen,,,,1650,0,330,264,594
895
+ 2014-09-01,1992-12-07,citizen,,,,374.5,0,0,60,60
896
+ 2014-09-01,1986-08-02,citizen,,,,2359.5,0,471,378,849
897
+ 2014-09-01,1986-10-07,citizen,,,,1642.5,0.04,328,263,591
898
+ 2014-09-01,1959-01-30,citizen,,,,1288,0,167,136,303
899
+ 2014-09-01,1962-03-25,citizen,,,,1772,0,327,249,576
900
+ 2014-09-01,1995-05-10,citizen,,,,302.5,0,0,48,48
901
+ 2014-09-01,1993-12-26,citizen,,,,428.5,0,0,69,69
902
+ 2014-09-01,1994-08-31,citizen,,,,315,0,0,50,50
903
+ 2014-09-01,1983-03-09,citizen,,,,1454.55,0,290,234,524
904
+ 2014-09-01,1990-05-29,citizen,,,,727.27,0,136,117,253
905
+ 2014-09-01,1968-01-11,citizen,,,,350,0,0,56,56
906
+ 2014-09-01,1992-04-08,citizen,,,,591.5,0,54,96,150
907
+ 2014-09-01,1992-03-19,citizen,,,,483.75,0,0,77,77
908
+ 2014-09-01,1994-06-03,citizen,,,,1232,0,246,198,444
909
+ 2014-09-01,1994-04-11,citizen,,,,75.25,0,0,12,12
910
+ 2014-09-01,1992-07-05,citizen,,,,49,0,0,0,0
911
+ 2014-09-01,1975-12-07,citizen,,,,61.25,0,0,10,10
912
+ 2014-09-01,1994-10-07,citizen,,,,182,0,0,29,29
913
+ 2014-09-01,1975-07-25,citizen,,,,84,0,0,13,13
914
+ 2014-09-01,1995-09-07,citizen,,,,1302,0,260,209,469
915
+ 2014-09-01,1989-07-17,citizen,,,,301.5,0,0,48,48
916
+ 2014-09-01,1991-08-23,citizen,,,,352,0,0,56,56
917
+ 2014-09-01,1996-06-15,citizen,,,,1488,0,297,239,536
918
+ 2014-09-01,1993-01-05,citizen,,,,312.5,0,0,50,50
919
+ 2014-09-01,1995-10-05,citizen,,,,288,0,0,46,46
920
+ 2014-09-01,1996-11-08,citizen,,,,216,0,0,35,35
921
+ 2014-09-01,1996-02-15,citizen,,,,216,0,0,35,35
922
+ 2014-09-01,1984-01-20,citizen,,,,40,0,0,0,0
923
+ 2014-09-01,1995-05-24,citizen,,,,208,0,0,33,33
924
+ 2014-09-01,1985-06-25,permanent_resident,2014-09-01,graduated,graduated,52,0,0,2,2
925
+ 2014-09-01,1994-06-09,citizen,,,,2024,0,404,325,729
926
+ 2014-09-01,1994-04-22,citizen,,,,1370,0,274,219,493
927
+ 2014-09-01,1996-09-18,citizen,,,,1316,0,263,211,474
928
+ 2014-09-01,1974-12-07,citizen,,,,1504,0,300,241,541
929
+ 2014-09-01,1972-07-03,citizen,,,,672,0,103,108,211
930
+ 2014-09-01,1994-03-09,citizen,,,,1636.36,0,327,262,589
931
+ 2014-09-01,1988-09-05,citizen,,,,2066,0,413,331,744
932
+ 2014-09-01,1989-02-16,citizen,,,,2960,8880,2368,1894,4262
933
+ 2014-09-01,1993-01-07,citizen,,,,2167,0,433,347,780
934
+ 2014-09-01,1991-06-14,citizen,,,,3129,450,715,573,1288
935
+ 2014-09-01,1988-11-03,citizen,,,,3250,3000,1250,1000,2250
936
+ 2014-09-01,1985-07-06,citizen,,,,3780,0,756,605,1361
937
+ 2014-09-01,1991-11-02,citizen,,,,390.84,0,0,63,63
938
+ 2014-09-01,1991-08-30,citizen,,,,3129,0,625,501,1126
939
+ 2014-09-01,1988-12-03,citizen,,,,2960,0,592,474,1066
940
+ 2014-09-01,1990-05-04,citizen,,,,2960,450,682,546,1228
941
+ 2014-09-01,1991-07-13,citizen,,,,429.38,0,0,69,69
942
+ 2014-09-01,1990-11-09,citizen,,,,3110,0,622,498,1120
943
+ 2014-09-01,1990-09-11,citizen,,,,2960,0,592,474,1066
944
+ 2014-09-01,1992-12-06,citizen,,,,2960,0,592,474,1066
945
+ 2014-09-01,1988-03-23,citizen,,,,2960,0,592,474,1066
946
+ 2014-09-01,1989-08-31,citizen,,,,3040,0,608,486,1094
947
+ 2014-09-01,1990-09-06,citizen,,,,2960,0,592,474,1066
948
+ 2014-09-01,1982-02-08,citizen,,,,4200,0,840,672,1512
949
+ 2014-09-01,1986-01-04,citizen,,,,1975,0,395,316,711
950
+ 2014-09-01,1987-04-30,citizen,,,,3300,0,660,528,1188
951
+ 2014-09-01,1987-09-26,citizen,,,,2092,0,418,335,753
952
+ 2014-09-01,1981-02-18,citizen,,,,3000,0,600,480,1080
953
+ 2014-09-01,1984-12-14,citizen,,,,2084,0,416,334,750
954
+ 2014-09-01,1987-07-28,citizen,,,,3200,0,640,512,1152
955
+ 2014-09-01,1985-06-24,citizen,,,,3636,0,727,582,1309
956
+ 2014-09-01,1993-08-28,citizen,,,,927.5,0,185,149,334
957
+ 2014-09-01,1990-10-05,citizen,,,,2678.1,450,625,501,1126
958
+ 2014-09-01,1985-08-27,citizen,,,,3136,450,717,574,1291
959
+ 2014-09-01,1975-05-21,citizen,,,,5200,0,1000,800,1800
960
+ 2014-09-01,1992-02-29,citizen,,,,531.82,0,19,85,104
961
+ 2014-09-01,1944-12-03,citizen,,,,980,0,49,64,113
962
+ 2014-09-01,1987-08-03,citizen,,,,1815.01,0,363,290,653
963
+ 2014-09-01,1991-06-06,citizen,,,,426,0,0,68,68
964
+ 2014-09-01,1990-03-08,citizen,,,,1080,0,216,173,389
965
+ 2014-09-01,1993-07-09,citizen,,,,1485,0.22,297,238,535
966
+ 2014-09-01,1987-01-26,citizen,,,,766.5,0,153,123,276
967
+ 2014-09-01,1987-03-16,citizen,,,,2960,0,592,474,1066
968
+ 2014-09-01,1984-03-01,citizen,,,,2405,0,481,385,866
969
+ 2014-09-01,1994-05-18,citizen,,,,1566,0,313,251,564
970
+ 2014-09-01,1989-05-31,citizen,,,,864,0,172,139,311
971
+ 2014-09-01,1986-03-14,citizen,,,,567,0,40,91,131
972
+ 2014-09-01,1995-10-05,citizen,,,,1321.88,0,264,212,476
973
+ 2014-09-01,1995-09-15,citizen,,,,1348,0,269,216,485
974
+ 2014-09-01,1993-12-21,citizen,,,,1586,0,317,254,571
975
+ 2014-09-01,1978-12-31,citizen,,,,1533,0,306,246,552
976
+ 2014-09-01,1990-02-15,citizen,,,,753,0,150,121,271
977
+ 2014-09-01,1996-11-06,citizen,,,,1018,0,203,163,366
978
+ 2014-09-01,1996-05-12,citizen,,,,702,0,121,113,234
979
+ 2014-09-01,1989-09-10,citizen,,,,1855.75,0,371,297,668
980
+ 2014-09-01,1995-03-28,citizen,,,,367.5,0,0,59,59
981
+ 2014-09-01,1995-06-21,citizen,,,,590.75,0,54,95,149
982
+ 2014-09-01,1995-01-15,citizen,,,,210,0,0,34,34
983
+ 2014-09-01,1995-08-29,citizen,,,,210,0,0,34,34
984
+ 2014-09-01,1995-04-20,citizen,,,,308,40,0,56,56
985
+ 2014-09-01,1991-12-22,citizen,,,,2323.08,0,464,372,836
986
+ 2014-09-01,1994-12-18,citizen,,,,1307,0,261,210,471
987
+ 2014-09-01,1993-01-18,citizen,,,,838.5,0,167,135,302
988
+ 2014-09-01,1996-03-08,citizen,,,,890.75,0,178,143,321
989
+ 2014-09-01,1995-07-27,citizen,,,,1004,0,200,161,361
990
+ 2014-09-01,1995-06-30,citizen,,,,308.75,0,0,49,49
991
+ 2014-09-01,1990-01-10,citizen,,,,165,0,0,26,26
992
+ 2014-09-01,1963-11-07,citizen,,,,825.44,0,152,116,268
993
+ 2014-09-01,1991-05-09,citizen,,,,0,600,60,96,156
994
+ 2014-09-01,1991-04-15,citizen,,,,3435.57,0,687,550,1237
995
+ 2014-09-01,1992-02-07,citizen,,,,1656,0,331,265,596
996
+ 2014-09-01,1991-08-27,citizen,,,,2151,0,430,344,774
997
+ 2014-09-01,1991-11-15,citizen,,,,211.5,0,0,34,34
998
+ 2014-09-01,1991-12-07,citizen,,,,305.5,0,0,49,49
999
+ 2014-09-01,1991-04-09,citizen,,,,909,0,181,146,327
1000
+ 2014-09-01,1993-05-12,citizen,,,,670.5,0,102,108,210
1001
+ 2014-09-01,1992-05-24,citizen,,,,1223.25,0,244,196,440
1002
+ 2014-09-01,1989-03-02,citizen,,,,1408.75,0,281,226,507
1003
+ 2014-09-01,1996-08-04,citizen,,,,668.5,0,101,107,208
1004
+ 2014-09-01,1992-09-19,permanent_resident,2010-01-01,,,1178.63,0,235,189,424
1005
+ 2014-09-01,1996-10-26,citizen,,,,1004.5,0,200,162,362
1006
+ 2014-09-01,1997-04-11,citizen,,,,1354.5,0,270,218,488
1007
+ 2014-09-01,1995-08-26,citizen,,,,1145.38,0,229,183,412
1008
+ 2014-09-01,1997-03-18,citizen,,,,304.5,0,0,49,49
1009
+ 2014-09-01,1995-10-20,citizen,,,,1560.13,0,312,250,562
1010
+ 2014-09-01,1995-07-28,citizen,,,,1449.88,0,289,233,522
1011
+ 2014-09-01,1990-03-30,citizen,,,,1515.01,0,303,242,545
1012
+ 2014-09-01,1990-06-14,citizen,,,,1758.75,0,351,282,633
1013
+ 2014-09-01,1991-03-07,citizen,,,,1567.13,0,313,251,564
1014
+ 2014-09-01,1993-01-05,citizen,,,,280,0,0,45,45
1015
+ 2014-09-01,1994-03-03,citizen,,,,1157,0,231,186,417
1016
+ 2014-09-01,1992-10-19,citizen,,,,336,0,0,54,54
1017
+ 2014-09-01,1969-10-07,citizen,,,,923,0,184,148,332
1018
+ 2014-09-01,1975-03-30,citizen,,,,187,0,0,30,30
1019
+ 2014-09-01,1991-12-07,citizen,,,,1196.8,0,239,192,431
1020
+ 2014-09-01,1957-09-27,permanent_resident,2010-01-01,,,1033.6,0,134,109,243
1021
+ 2014-09-01,1982-08-10,citizen,,,,111.92,0,0,18,18
1022
+ 2014-09-01,1989-08-14,citizen,,,,1176.4,0,235,189,424
1023
+ 2014-09-01,1995-08-20,citizen,,,,312,0,0,50,50
1024
+ 2014-09-01,1993-01-01,citizen,,,,102,0,0,16,16
1025
+ 2014-09-01,1983-08-26,citizen,,,,380.8,0,0,61,61
1026
+ 2014-09-01,1975-02-15,citizen,,,,740,0,144,118,262
1027
+ 2014-09-01,1981-05-28,citizen,,,,156,0,0,25,25
1028
+ 2014-09-01,1987-02-19,citizen,,,,210,0,0,34,34
1029
+ 2014-09-01,1995-06-10,citizen,,,,1560,0,312,250,562
1030
+ 2014-09-01,1993-10-12,citizen,,,,1350,0,270,216,486
1031
+ 2014-09-01,1996-09-27,citizen,,,,207.5,0,0,33,33
1032
+ 2014-09-01,1989-05-05,citizen,,,,718.25,0,130,116,246
1033
+ 2014-09-01,1988-08-25,citizen,,,,0,27,0,0,0
1034
+ 2014-09-01,1987-02-19,citizen,,,,2192,0,438,351,789
1035
+ 2014-09-01,1990-03-08,citizen,,,,1851.25,0,370,296,666
1036
+ 2014-09-01,1990-10-11,citizen,,,,1516,0,303,243,546
1037
+ 2014-09-01,1990-08-16,citizen,,,,2097.49,0,419,336,755
1038
+ 2014-09-01,1991-10-17,citizen,,,,2135.32,351,497,398,895
1039
+ 2014-09-01,1989-10-10,citizen,,,,1669.47,80,349,281,630
1040
+ 2014-09-01,1991-08-08,citizen,,,,1756.84,100,371,297,668
1041
+ 2014-09-01,1987-10-01,citizen,,,,895.82,13,181,146,327
1042
+ 2014-09-01,1985-01-17,citizen,,,,1800,1656.99,691,554,1245
1043
+ 2014-09-01,1990-09-07,citizen,,,,2394.75,3647.77,1208,967,2175
1044
+ 2014-09-01,1986-09-11,citizen,,,,1519.38,0,303,244,547
1045
+ 2014-09-01,1993-12-04,citizen,,,,450,0,0,72,72
1046
+ 2014-09-01,1990-07-06,citizen,,,,1491.75,0,298,239,537
1047
+ 2014-09-01,1988-04-30,citizen,,,,1559.75,0,311,251,562
1048
+ 2014-09-01,1975-01-03,citizen,,,,1428,0,285,229,514
1049
+ 2014-09-01,1994-01-07,citizen,,,,1309,0,261,210,471
1050
+ 2014-09-01,1988-04-19,citizen,,,,1950,0,390,312,702
1051
+ 2014-09-01,1985-04-04,citizen,,,,1442.88,0,288,231,519
1052
+ 2014-09-01,1988-06-16,citizen,,,,1498.13,0,299,240,539
1053
+ 2014-09-01,1976-10-26,citizen,,,,358.18,0,0,57,57
1054
+ 2014-09-01,1994-01-16,citizen,,,,345.45,0,0,55,55
1055
+ 2014-09-01,1990-08-08,citizen,,,,345.45,0,0,55,55
1056
+ 2014-09-01,1990-06-20,citizen,,,,345.45,0,0,55,55
1057
+ 2014-09-01,1988-03-22,citizen,,,,210,0,0,34,34
1058
+ 2014-09-01,1993-09-24,citizen,,,,1350,0,270,216,486
1059
+ 2014-09-01,1991-02-06,citizen,,,,772.5,0,154,124,278
1060
+ 2014-09-01,1993-06-11,citizen,,,,165,0,0,26,26
1061
+ 2014-09-01,1991-03-13,citizen,,,,495,0,0,79,79
1062
+ 2014-09-01,1994-09-03,citizen,,,,189,0,0,30,30
1063
+ 2014-09-01,1974-01-18,citizen,,,,731.25,0,138,118,256
1064
+ 2014-09-01,1991-05-02,citizen,,,,336.07,0,0,54,54
1065
+ 2014-09-01,1991-01-25,citizen,,,,500,0,0,80,80
1066
+ 2014-09-01,1991-04-25,citizen,,,,720,0,132,115,247
1067
+ 2014-09-01,1991-07-22,citizen,,,,725,0,135,116,251
1068
+ 2014-09-01,1994-03-30,citizen,,,,211.5,0,0,34,34
1069
+ 2014-09-01,1994-05-07,citizen,,,,211.5,0,0,34,34
1070
+ 2014-09-01,1996-11-27,citizen,,,,0,0,0,0,0
1071
+ 2014-09-01,1996-06-03,citizen,,,,112.5,0,0,18,18
1072
+ 2014-09-01,1996-02-22,citizen,,,,112.5,0,0,18,18
1073
+ 2014-09-01,1990-08-25,citizen,,,,828.75,0,165,133,298
1074
+ 2014-09-01,1996-01-13,citizen,,,,1096.88,0,219,176,395
1075
+ 2014-09-01,1991-05-31,citizen,,,,652.5,0,91,105,196
1076
+ 2014-09-01,1997-12-15,citizen,,,,1194.38,0,238,192,430
1077
+ 2014-09-01,1996-11-08,citizen,,,,1197.63,0,239,192,431
1078
+ 2014-09-01,1997-06-03,citizen,,,,1150.5,0,230,184,414
1079
+ 2014-09-01,1981-03-20,citizen,,,,971.25,0,194,156,350
1080
+ 2014-09-01,1987-02-08,citizen,,,,1302,0,260,209,469
1081
+ 2014-09-01,1986-05-27,citizen,,,,189,0,0,30,30
1082
+ 2014-09-01,1964-10-23,citizen,,,,2386.36,0,477,382,859
1083
+ 2014-09-01,1995-12-05,citizen,,,,1204.88,0,240,194,434
1084
+ 2014-09-01,1993-09-02,citizen,,,,551.25,0,30,89,119
1085
+ 2014-09-01,1991-08-29,citizen,,,,1295.63,0,259,207,466
1086
+ 2014-09-01,1992-09-16,citizen,,,,1724.09,23,349,280,629
1087
+ 2014-09-01,1994-10-30,citizen,,,,1267,0,253,203,456
1088
+ 2014-09-01,1989-12-04,citizen,,,,1333.5,0,266,214,480
1089
+ 2014-09-01,1994-06-18,citizen,,,,1165.5,0,233,187,420
1090
+ 2014-09-01,1990-04-11,citizen,,,,311.5,0,0,50,50
1091
+ 2014-09-01,1990-09-15,citizen,,,,1071,0,214,172,386
1092
+ 2014-09-01,1990-02-22,citizen,,,,486.5,0,0,78,78
1093
+ 2014-09-01,1993-12-20,citizen,,,,1118.25,0,223,180,403
1094
+ 2014-09-01,1990-03-11,citizen,,,,448,0,0,72,72
1095
+ 2014-09-01,1990-03-26,citizen,,,,2742.25,0,548,439,987
1096
+ 2014-09-01,1989-08-31,citizen,,,,1137.5,0,227,183,410
1097
+ 2014-09-01,1994-05-24,citizen,,,,463.75,0,0,74,74
1098
+ 2014-09-01,1994-10-14,citizen,,,,1295,0,259,207,466
1099
+ 2014-09-01,1993-10-03,citizen,,,,2870,0,574,459,1033
1100
+ 2014-09-01,1996-11-06,citizen,,,,917,0,183,147,330
1101
+ 2014-09-01,1991-08-29,citizen,,,,169.75,0,0,27,27
1102
+ 2014-09-01,1993-04-11,citizen,,,,1309,0,261,210,471
1103
+ 2014-09-01,1995-09-29,citizen,,,,1785,0,357,286,643
1104
+ 2014-09-01,1991-03-20,citizen,,,,1653.75,0,330,265,595
1105
+ 2014-09-01,1994-01-07,citizen,,,,1606.5,0,321,257,578
1106
+ 2014-09-01,1992-05-13,citizen,,,,1176,0,235,188,423
1107
+ 2014-09-01,1996-10-10,citizen,,,,1295.88,0,259,208,467
1108
+ 2014-09-01,1996-02-10,citizen,,,,1053.5,0,210,169,379
1109
+ 2014-09-01,1993-08-09,citizen,,,,1352.75,0,270,217,487
1110
+ 2014-09-01,1981-03-13,citizen,,,,934.5,0,186,150,336
1111
+ 2014-09-01,1993-03-01,citizen,,,,560,0,36,90,126
1112
+ 2014-09-01,1992-06-05,citizen,,,,962.5,0,192,155,347
1113
+ 2014-09-01,1991-09-06,citizen,,,,603.75,0,62,97,159
1114
+ 2014-09-01,1997-05-04,permanent_resident,2010-01-01,,,1048.25,0,209,168,377
1115
+ 2014-09-01,1993-01-06,citizen,,,,371,0,0,59,59
1116
+ 2014-09-01,1993-04-29,citizen,,,,1240.91,0,248,199,447
1117
+ 2014-09-01,1995-06-26,citizen,,,,428,0,0,68,68
1118
+ 2014-09-01,1997-04-24,citizen,,,,433,0,0,69,69
1119
+ 2014-09-01,1994-01-26,citizen,,,,367.5,0,0,59,59
1120
+ 2014-09-01,1993-12-31,citizen,,,,1683,0,336,270,606
1121
+ 2014-09-01,1982-07-27,citizen,,,,148.5,0,0,24,24
1122
+ 2014-09-01,1991-10-14,citizen,,,,756,0,151,121,272
1123
+ 2014-09-01,1993-08-28,citizen,,,,1435.5,0,287,230,517
1124
+ 2014-09-01,1992-11-22,citizen,,,,1665,0,333,266,599
1125
+ 2014-09-01,1995-10-16,citizen,,,,378,0,0,60,60
1126
+ 2014-09-01,1965-07-07,citizen,,,,756,0,151,121,272
1127
+ 2014-09-01,1982-11-17,citizen,,,,1914,0,382,307,689
1128
+ 2014-09-01,1990-01-29,citizen,,,,1800,0,360,288,648
1129
+ 2014-09-01,1980-08-23,citizen,,,,2800,0,560,448,1008
1130
+ 2014-09-01,1990-03-05,citizen,,,,2800,0,560,448,1008
1131
+ 2014-09-01,1984-08-01,citizen,,,,2800,0,560,448,1008
1132
+ 2014-09-01,1990-12-14,citizen,,,,2800,0,560,448,1008
1133
+ 2014-09-01,1975-07-17,citizen,,,,2800,0,560,448,1008
1134
+ 2014-09-01,1990-10-19,citizen,,,,2800,0,560,448,1008
1135
+ 2014-09-01,1990-01-31,citizen,,,,2800,0,560,448,1008
1136
+ 2014-09-01,1990-11-05,citizen,,,,2800,0,560,448,1008
1137
+ 2014-09-01,1990-11-27,citizen,,,,2800,0,560,448,1008
1138
+ 2014-09-01,1988-09-10,citizen,,,,2800,0,560,448,1008
1139
+ 2014-09-01,1990-08-03,citizen,,,,2800,0,560,448,1008
1140
+ 2014-09-01,1992-01-30,citizen,,,,1718.18,0,343,276,619
1141
+ 2014-09-01,1989-03-14,citizen,,,,2800,0,560,448,1008
1142
+ 2014-09-01,1989-03-17,citizen,,,,2800,0,560,448,1008
1143
+ 2014-09-01,1996-08-08,citizen,,,,551.25,0,30,89,119
1144
+ 2014-09-01,1991-01-11,citizen,,,,1665,0,333,266,599
1145
+ 2014-09-01,1992-09-21,citizen,,,,90,0,0,14,14
1146
+ 2014-09-01,1990-10-14,citizen,,,,817.5,0,163,131,294
1147
+ 2014-09-01,1991-08-25,citizen,,,,1386,0,277,222,499
1148
+ 2014-09-01,1997-08-31,citizen,,,,420,0,0,67,67
1149
+ 2014-09-01,1997-09-04,citizen,,,,637,0,82,102,184
1150
+ 2014-09-01,1980-06-14,citizen,,,,1672.73,636.92,461,370,831
1151
+ 2014-09-01,1992-06-06,citizen,,,,1426.5,0,285,229,514
1152
+ 2014-09-01,1991-01-29,citizen,,,,1683,0,336,270,606
1153
+ 2014-09-01,1980-07-06,citizen,,,,247.5,0,0,40,40
1154
+ 2014-09-01,1987-11-19,citizen,,,,2408.25,0,481,386,867
1155
+ 2014-09-01,1986-03-15,citizen,,,,3150,0,630,504,1134
1156
+ 2014-09-01,1991-10-22,citizen,,,,1846,0,369,296,665
1157
+ 2014-09-01,1992-01-20,citizen,,,,1165.5,0,233,187,420
1158
+ 2014-09-01,1988-12-08,citizen,,,,2092.5,0,418,335,753
1159
+ 2014-09-01,1987-03-13,citizen,,,,2484.63,0,496,398,894
1160
+ 2014-09-01,1989-02-01,citizen,,,,2772.25,0,554,444,998
1161
+ 2014-09-01,1985-03-30,citizen,,,,2727.27,0,545,437,982
1162
+ 2014-09-01,1971-07-14,citizen,,,,1878.5,0,375,301,676
1163
+ 2014-09-01,1990-08-22,citizen,,,,2416.5,0,483,387,870
1164
+ 2014-09-01,1993-08-10,citizen,,,,304.5,0,0,49,49
1165
+ 2014-09-01,1990-07-21,citizen,,,,1460.25,0,292,234,526
1166
+ 2014-09-01,1986-06-30,citizen,,,,2128,0,425,341,766
1167
+ 2014-09-01,1987-08-09,citizen,,,,1556,0,311,249,560
1168
+ 2014-09-01,1989-09-02,citizen,,,,2000,0,400,320,720
1169
+ 2014-09-01,1990-04-12,citizen,,,,1730.25,0,346,277,623
1170
+ 2014-09-01,1991-04-29,citizen,,,,1584,0,316,254,570
1171
+ 2014-09-01,1985-02-07,citizen,,,,1584,0,316,254,570
1172
+ 2014-09-01,1992-03-03,citizen,,,,729,0,137,117,254
1173
+ 2014-09-01,1992-10-26,citizen,,,,592.5,0,55,95,150
1174
+ 2014-09-01,1992-01-09,citizen,,,,2617.5,0,523,419,942
1175
+ 2014-09-01,1988-12-09,citizen,,,,2400,0,480,384,864
1176
+ 2014-09-01,1989-06-07,citizen,,,,786.15,0,157,126,283
1177
+ 2014-09-01,1993-02-13,permanent_resident,2010-01-01,,,2368.79,3429.68,1159,928,2087
1178
+ 2014-09-01,1993-01-20,citizen,,,,778.5,76.5,171,137,308
1179
+ 2014-09-01,1990-12-26,citizen,,,,337.5,0,0,54,54
1180
+ 2014-09-01,1995-05-11,citizen,,,,852.75,0,170,137,307
1181
+ 2014-09-01,1994-07-29,citizen,,,,1440,0,288,230,518
1182
+ 2014-09-01,1990-08-30,citizen,,,,728.5,382.5,222,178,400
1183
+ 2014-09-01,1993-12-16,citizen,,,,761.5,0,152,122,274
1184
+ 2014-09-01,1992-11-11,citizen,,,,682.88,688.5,274,220,494
1185
+ 2014-09-01,1990-10-10,citizen,,,,2260,0,452,362,814
1186
+ 2014-09-01,1992-02-19,citizen,,,,2200.5,382.5,516,414,930
1187
+ 2014-09-01,1990-10-25,citizen,,,,640.13,229.5,173,140,313
1188
+ 2014-09-01,1994-08-18,citizen,,,,1306.13,0,261,209,470
1189
+ 2014-09-01,1992-08-28,citizen,,,,2570,0,514,411,925
1190
+ 2014-09-01,1991-11-25,citizen,,,,898.88,0,179,145,324
1191
+ 2014-09-01,1989-09-04,citizen,,,,742.5,0,145,119,264
1192
+ 2014-09-01,1984-10-03,citizen,,,,1155.5,0,231,185,416
1193
+ 2014-09-01,1996-11-21,citizen,,,,668.5,0,101,107,208
1194
+ 2014-09-01,1995-06-27,citizen,,,,0,9749.38,1949,1561,3510
1195
+ 2014-09-01,1995-10-22,citizen,,,,101.25,0,0,16,16
1196
+ 2014-09-01,1995-04-13,citizen,,,,0,386.32,0,62,62
1197
+ 2014-09-01,1993-10-25,citizen,,,,0,188.72,0,30,30
1198
+ 2014-09-01,1992-01-25,citizen,,,,2075.63,0,415,332,747
1199
+ 2014-09-01,1994-01-20,citizen,,,,595,1689.13,456,366,822
1200
+ 2014-09-01,1993-05-15,citizen,,,,0,971.31,194,156,350
1201
+ 2014-09-01,1992-04-30,citizen,,,,1896.5,0,379,304,683
1202
+ 2014-09-01,1994-04-18,citizen,,,,306,0,0,49,49
1203
+ 2014-09-01,1993-06-08,citizen,,,,1477.13,0,295,237,532
1204
+ 2014-09-01,2009-10-27,citizen,,,,2547,0,509,408,917
1205
+ 2014-09-01,1993-06-25,citizen,,,,1638,0,327,263,590
1206
+ 2014-09-01,1992-12-31,citizen,,,,2229.76,0,445,358,803
1207
+ 2014-09-01,1995-08-08,citizen,,,,1077.75,0,215,173,388
1208
+ 2014-09-01,1989-11-02,citizen,,,,229.5,0,0,37,37
1209
+ 2014-09-01,1992-12-16,citizen,,,,1238.63,0,247,199,446
1210
+ 2014-09-01,1989-10-14,citizen,,,,1668,0.17,333,268,601
1211
+ 2014-09-01,1991-02-14,citizen,,,,1329,0.57,265,214,479
1212
+ 2014-09-01,1991-04-06,citizen,,,,1635.75,0.64,327,262,589
1213
+ 2014-09-01,1988-09-22,citizen,,,,1284,0.64,256,206,462
1214
+ 2014-09-01,1974-04-04,citizen,,,,1186.5,0.57,237,190,427
1215
+ 2014-09-01,1996-03-04,citizen,,,,1866.75,0.19,373,299,672
1216
+ 2014-09-01,1977-02-04,citizen,,,,1859.25,0.44,371,298,669
1217
+ 2014-09-01,1956-07-17,citizen,,,,1465.5,0.46,190,155,345
1218
+ 2014-09-01,1963-04-22,citizen,,,,1470.75,0.56,272,206,478
1219
+ 2014-09-01,1980-08-08,citizen,,,,1089.75,0.36,218,174,392
1220
+ 2014-09-01,1962-04-01,citizen,,,,521.25,0.45,12,73,85
1221
+ 2014-09-01,1995-12-29,citizen,,,,105.75,0.55,0,17,17
1222
+ 2014-09-01,1954-09-03,citizen,,,,1437,0.59,186,152,338
1223
+ 2014-09-01,1956-04-03,citizen,,,,1222.5,0.71,159,128,287
1224
+ 2014-09-01,1993-06-23,citizen,,,,371.25,0.28,0,59,59
1225
+ 2014-09-01,1992-10-05,citizen,,,,288.75,0.63,0,46,46
1226
+ 2014-09-01,1981-10-10,citizen,,,,310.5,0.54,0,50,50
1227
+ 2014-09-01,1955-01-21,citizen,,,,670.02,0,66,71,137
1228
+ 2014-09-01,1988-12-15,citizen,,,,1044.75,0.42,209,167,376
1229
+ 2014-09-01,1991-01-13,citizen,,,,1536,0.6,307,246,553
1230
+ 2014-09-01,1959-03-16,citizen,,,,1149,0.61,149,121,270
1231
+ 2014-09-01,1987-04-30,citizen,,,,1725.75,0.62,345,276,621
1232
+ 2014-09-01,1949-10-21,citizen,,,,504.75,0.24,1,35,36
1233
+ 2014-09-01,1991-03-01,citizen,,,,666,0.09,99,107,206
1234
+ 2014-09-01,1991-11-05,citizen,,,,2218.58,0,443,356,799
1235
+ 2014-09-01,1994-11-30,citizen,,,,2013,0,402,323,725
1236
+ 2014-09-01,1997-07-27,citizen,,,,670.25,0,102,107,209
1237
+ 2014-09-01,1997-10-18,citizen,,,,72,0,0,12,12
1238
+ 2014-09-01,1997-09-18,citizen,,,,252,0,0,40,40
1239
+ 2014-09-01,1982-01-11,citizen,,,,1470.13,0,294,235,529
1240
+ 2014-09-01,1995-08-09,citizen,,,,133,0,0,21,21
1241
+ 2014-09-01,1995-06-15,citizen,,,,49,0,0,0,0
1242
+ 2014-09-01,1994-06-20,citizen,,,,1058.75,0,211,170,381
1243
+ 2014-09-01,1991-10-21,citizen,,,,140,0,0,22,22
1244
+ 2014-09-01,1993-10-27,citizen,,,,1207.5,0,241,194,435
1245
+ 2014-09-01,1997-05-27,citizen,,,,637,0,82,102,184
1246
+ 2014-09-01,1983-07-04,citizen,,,,521.5,0,12,84,96
1247
+ 2014-09-01,1997-08-07,permanent_resident,2013-08-21,graduated,graduated,390.25,0,0,35,35
1248
+ 2014-09-01,1994-04-19,citizen,,,,626.5,0,75,101,176
1249
+ 2014-09-01,1989-11-16,citizen,,,,21,0,0,0,0
1250
+ 2014-09-01,1991-01-11,citizen,,,,1459.5,0,291,234,525
1251
+ 2014-09-01,1993-10-13,citizen,,,,1853.25,0,370,297,667
1252
+ 2014-09-01,1991-07-27,citizen,,,,171.5,0,0,27,27
1253
+ 2014-09-01,1998-01-01,citizen,,,,763,0,152,123,275
1254
+ 2014-09-01,1981-01-12,permanent_resident,2010-01-01,,,1319.5,0,263,212,475
1255
+ 2014-09-01,1997-08-10,citizen,,,,259,0,0,41,41
1256
+ 2014-09-01,1995-11-17,citizen,,,,255.5,0,0,41,41
1257
+ 2014-09-01,1997-07-31,citizen,,,,290.5,0,0,46,46
1258
+ 2014-09-01,1993-05-26,citizen,,,,133,0,0,21,21
1259
+ 2014-09-01,1995-10-04,citizen,,,,346.5,0,0,55,55
1260
+ 2014-09-01,1992-03-24,citizen,,,,2782.39,2217.95,1000,800,1800
1261
+ 2014-09-01,1984-09-19,citizen,,,,3834.66,44.44,775,621,1396
1262
+ 2014-09-01,1988-11-05,permanent_resident,2010-01-01,,,699.52,4.17,122,113,235
1263
+ 2014-09-01,1996-02-09,citizen,,,,269.5,0,0,43,43
1264
+ 2014-09-01,1983-03-22,citizen,,,,0,160,0,26,26
1265
+ 2014-09-01,1987-10-30,citizen,,,,616,191.1,161,130,291
1266
+ 2014-09-01,1965-02-11,citizen,,,,670.25,0,102,107,209
1267
+ 2014-09-01,1990-07-03,citizen,,,,675.5,0,105,108,213
1268
+ 2014-09-01,1994-07-12,permanent_resident,2010-01-01,,,224,0,0,36,36
1269
+ 2014-09-01,1971-07-25,citizen,,,,227.5,0,0,36,36
1270
+ 2014-09-01,1996-11-05,citizen,,,,728,0,136,117,253
1271
+ 2014-09-01,1996-10-20,citizen,,,,168,0,0,27,27
1272
+ 2014-09-01,1991-10-19,citizen,,,,283.5,0,0,45,45
1273
+ 2014-09-01,1990-11-06,citizen,,,,738.5,0,143,118,261
1274
+ 2014-09-01,1993-04-22,citizen,,,,392,0,0,63,63
1275
+ 2014-09-01,1977-02-07,citizen,,,,451.5,0,0,72,72
1276
+ 2014-09-01,1970-02-17,permanent_resident,2010-01-01,,,5720.72,0,1000,800,1800
1277
+ 2014-09-01,1971-04-15,permanent_resident,2010-01-01,,,7130,0,1000,800,1800
1278
+ 2014-09-01,1995-03-07,citizen,,,,58,0,0,9,9
1279
+ 2014-09-01,1996-07-25,citizen,,,,161.25,0,0,26,26
1280
+ 2014-09-01,1997-02-20,citizen,,,,161.25,0,0,26,26
1281
+ 2014-09-01,1993-08-09,citizen,,,,146.25,0,0,23,23
1282
+ 2014-09-01,1997-10-26,citizen,,,,161.25,0,0,26,26
1283
+ 2014-09-01,1997-04-24,citizen,,,,920,0,184,147,331
1284
+ 2014-09-01,1997-01-24,citizen,,,,1328,0,265,213,478
1285
+ 2014-09-01,1995-12-20,citizen,,,,599.75,0,59,97,156
1286
+ 2014-09-01,1991-08-29,citizen,,,,2011.35,0,402,322,724
1287
+ 2014-09-01,1993-06-01,citizen,,,,229.25,0,0,37,37
1288
+ 2014-09-01,1983-06-23,citizen,,,,428.75,0,0,69,69
1289
+ 2014-09-01,1990-09-18,citizen,,,,1180.85,0,236,189,425
1290
+ 2014-09-01,1964-11-11,citizen,,,,1668.44,0,333,268,601
1291
+ 2014-09-01,1988-07-23,citizen,,,,2000,0,400,320,720
1292
+ 2014-09-01,1992-12-18,citizen,,,,923.08,0,184,148,332
1293
+ 2014-09-01,1991-01-06,citizen,,,,398,0,0,64,64
1294
+ 2014-09-01,1949-02-12,citizen,,,,1791.96,0,89,117,206
1295
+ 2014-09-01,1992-06-30,citizen,,,,1133.13,0,226,182,408
1296
+ 2014-09-01,1992-09-11,citizen,,,,661.82,0,97,106,203
1297
+ 2014-09-01,1990-07-02,citizen,,,,756.36,0,151,121,272
1298
+ 2014-09-01,1990-12-07,citizen,,,,472.73,0,0,76,76
1299
+ 2014-09-01,1992-04-23,citizen,,,,472.73,0,0,76,76
1300
+ 2014-09-01,1990-09-09,citizen,,,,411.25,0,0,66,66
1301
+ 2014-09-01,1991-02-13,citizen,,,,362.25,0,0,58,58
1302
+ 2014-09-01,1991-04-17,citizen,,,,306.25,0,0,49,49
1303
+ 2014-09-01,1993-05-06,citizen,,,,367.5,0,0,59,59
1304
+ 2014-09-01,1993-04-25,citizen,,,,1207.18,0,241,194,435
1305
+ 2014-09-01,1963-05-20,citizen,,,,775,0,143,109,252
1306
+ 2014-09-01,1978-06-28,permanent_resident,2010-01-01,,,2236,0,447,358,805
1307
+ 2014-09-01,1992-06-07,citizen,,,,301.5,0,0,48,48
1308
+ 2014-09-01,1990-06-19,citizen,,,,301.5,0,0,48,48
1309
+ 2014-09-01,1992-10-22,citizen,,,,1021.5,0,204,164,368
1310
+ 2014-09-01,1989-03-10,citizen,,,,720,0,132,115,247
1311
+ 2014-09-01,1994-04-06,citizen,,,,114,0,0,18,18
1312
+ 2014-09-01,1947-11-01,citizen,,,,2930,0,146,191,337
1313
+ 2014-09-01,1989-10-16,citizen,,,,2200,0,440,352,792
1314
+ 2014-09-01,1981-08-23,citizen,,,,2620,0,524,419,943
1315
+ 2014-09-01,1968-12-01,permanent_resident,2010-01-01,,,2630,0,526,421,947
1316
+ 2014-09-01,1981-03-22,citizen,,,,2830,0,566,453,1019
1317
+ 2014-09-01,1988-12-05,citizen,,,,2830,0,566,453,1019
1318
+ 2014-09-01,1953-10-20,citizen,,,,616,0,26,43,69
1319
+ 2014-09-01,1989-04-18,citizen,,,,0,1347.69,269,216,485
1320
+ 2014-09-01,1988-10-29,citizen,,,,0,186.46,0,30,30
1321
+ 2014-09-01,1977-01-25,permanent_resident,2010-01-01,,,3070,0,614,491,1105
1322
+ 2014-09-01,1996-02-06,citizen,,,,63.75,0,0,10,10
1323
+ 2014-09-01,1988-04-29,citizen,,,,1513.64,0,302,243,545
1324
+ 2014-09-01,1987-04-01,citizen,,,,2350,0,470,376,846
1325
+ 2014-09-01,1976-10-03,citizen,,,,1850,0,370,296,666
1326
+ 2014-09-01,1987-01-01,permanent_resident,2010-01-01,,,2140,0,428,342,770
1327
+ 2014-09-01,1991-08-08,citizen,,,,1980,0,396,317,713
1328
+ 2014-09-01,1987-09-02,citizen,,,,2030,0,406,325,731
1329
+ 2014-09-01,1990-12-12,citizen,,,,2100,0,420,336,756
1330
+ 2014-09-01,1979-10-21,citizen,,,,3980.91,4326.15,1661,1330,2991
1331
+ 2014-09-01,1993-09-08,citizen,,,,1512.95,1850,672,539,1211
1332
+ 2014-09-01,1974-03-25,permanent_resident,2010-01-01,,,5950,0,1000,800,1800
1333
+ 2014-09-01,1988-11-04,citizen,,,,2200,0,440,352,792
1334
+ 2014-09-01,1974-02-27,citizen,,,,3850,0,770,616,1386
1335
+ 2014-09-01,1981-06-21,citizen,,,,3300,0,660,528,1188
1336
+ 2014-09-01,1990-06-03,citizen,,,,443.18,0,0,71,71
1337
+ 2014-09-01,1958-10-15,citizen,,,,654.36,0,60,69,129
1338
+ 2014-09-01,1989-02-17,citizen,,,,2100,0,420,336,756
1339
+ 2014-09-01,1981-11-06,citizen,,,,500,0,0,80,80
1340
+ 2014-09-01,1991-03-22,citizen,,,,736,0,141,118,259
1341
+ 2014-09-01,1996-07-13,citizen,,,,835.5,0,167,134,301
1342
+ 2014-09-01,1981-12-15,citizen,,,,544.25,0,26,88,114
1343
+ 2014-09-01,1985-07-08,citizen,,,,736.75,0,142,118,260
1344
+ 2014-09-01,1992-07-28,citizen,,,,868,0,173,139,312
1345
+ 2014-09-01,1959-11-19,citizen,,,,1312.31,0,242,185,427
1346
+ 2014-09-01,1983-09-12,citizen,,,,651,0,90,105,195
1347
+ 2014-09-01,1983-03-30,citizen,,,,49,0,0,0,0
1348
+ 2014-09-01,1996-11-19,permanent_resident,2010-01-01,,,147,0,0,24,24
1349
+ 2014-09-01,1990-06-11,citizen,,,,1611.5,0,322,258,580
1350
+ 2014-09-01,1994-10-23,citizen,,,,112.5,0,0,18,18
1351
+ 2014-09-01,1994-12-15,citizen,,,,112.5,0,0,18,18
1352
+ 2014-09-01,1992-06-03,citizen,,,,127.5,0,0,20,20
1353
+ 2014-09-01,1990-09-04,citizen,,,,112.5,0,0,18,18
1354
+ 2014-09-01,1991-10-29,citizen,,,,112.5,0,0,18,18
1355
+ 2014-09-01,1993-02-25,citizen,,,,112.5,0,0,18,18
1356
+ 2014-09-01,1992-08-18,citizen,,,,112.5,0,0,18,18
1357
+ 2014-09-01,1991-07-14,permanent_resident,2010-01-01,,,108.75,0,0,17,17
1358
+ 2014-09-01,1991-04-30,citizen,,,,112.5,0,0,18,18
1359
+ 2014-09-01,1993-11-23,citizen,,,,1980.95,0,396,317,713
1360
+ 2014-09-01,1993-01-20,citizen,,,,376.88,0,0,60,60
1361
+ 2014-09-01,1993-03-28,citizen,,,,294,0,0,47,47
1362
+ 2014-09-01,1993-03-14,citizen,,,,1158.5,0,231,186,417
1363
+ 2014-09-01,1997-05-13,citizen,,,,616,0,69,99,168
1364
+ 2014-09-01,1997-01-15,citizen,,,,280,0,0,45,45
1365
+ 2014-09-01,1997-03-04,citizen,,,,672,0,103,108,211