apriori-algorithm 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0678ee3955b30739e4a1a07bdfd2587e0a730fc0
4
+ data.tar.gz: 5f5f1f904078c4e16d50d04d095cc9b4e6b93ed3
5
+ SHA512:
6
+ metadata.gz: d4bf608b911079ffa2787bd25d4bfe5c52e64c2829b16a7b77f9eed24f90a5f71ba7db2f9548cf9a1d5b27939309f968c3d88c97ca1dc2a148a4d76efeee47dc
7
+ data.tar.gz: 052a4f3c19db3be39352233e97ce021e508ff231a2ebd910094260732e4768844eb2616bba32e0a3f70b01963422376f24de102c19e7940f7501b05f9a85be22
@@ -0,0 +1,5 @@
1
+ *.gem
2
+ .bundle
3
+ pkg/*
4
+ .DS_Store
5
+ .idea
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
@@ -0,0 +1,64 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ apriori-algorithm (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ celluloid (0.16.0)
10
+ timers (~> 4.0.0)
11
+ coderay (1.1.0)
12
+ diff-lcs (1.2.5)
13
+ ffi (1.9.3)
14
+ formatador (0.2.5)
15
+ guard (2.6.1)
16
+ formatador (>= 0.2.4)
17
+ listen (~> 2.7)
18
+ lumberjack (~> 1.0)
19
+ pry (>= 0.9.12)
20
+ thor (>= 0.18.1)
21
+ guard-rspec (4.3.1)
22
+ guard (~> 2.1)
23
+ rspec (>= 2.14, < 4.0)
24
+ hitimes (1.2.2)
25
+ listen (2.7.9)
26
+ celluloid (>= 0.15.2)
27
+ rb-fsevent (>= 0.9.3)
28
+ rb-inotify (>= 0.9)
29
+ lumberjack (1.0.9)
30
+ method_source (0.8.2)
31
+ pry (0.10.1)
32
+ coderay (~> 1.1.0)
33
+ method_source (~> 0.8.1)
34
+ slop (~> 3.4)
35
+ rake (10.3.2)
36
+ rb-fsevent (0.9.4)
37
+ rb-inotify (0.9.5)
38
+ ffi (>= 0.5.0)
39
+ rspec (3.1.0)
40
+ rspec-core (~> 3.1.0)
41
+ rspec-expectations (~> 3.1.0)
42
+ rspec-mocks (~> 3.1.0)
43
+ rspec-core (3.1.4)
44
+ rspec-support (~> 3.1.0)
45
+ rspec-expectations (3.1.1)
46
+ diff-lcs (>= 1.2.0, < 2.0)
47
+ rspec-support (~> 3.1.0)
48
+ rspec-mocks (3.1.1)
49
+ rspec-support (~> 3.1.0)
50
+ rspec-support (3.1.0)
51
+ slop (3.6.0)
52
+ thor (0.19.1)
53
+ timers (4.0.1)
54
+ hitimes
55
+
56
+ PLATFORMS
57
+ ruby
58
+
59
+ DEPENDENCIES
60
+ apriori-algorithm!
61
+ bundler (~> 1.7)
62
+ guard-rspec
63
+ rake (~> 10.0)
64
+ rspec
@@ -0,0 +1,6 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+ guard :rspec, cmd: 'bundle exec rspec' do
4
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
5
+ end
6
+
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Kazuhiro Sera
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,45 @@
1
+ # Apriori::Algorithm
2
+
3
+ [Apriori Algorithm](http://en.wikipedia.org/wiki/Apriori_algorithm) Ruby implementation which is based on https://github.com/asaini/Apriori/blob/master/apriori.py.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'apriori-algorithm'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install apriori-algorithm
20
+
21
+ ## Usage
22
+
23
+ See also: spec/usage_spec.rb
24
+
25
+ require 'apriori/algorithm'
26
+ algorithm = Apriori::Algorithm.new()
27
+ #algorithm = Apriori::Algorithm.new(0.15, 0.8)
28
+
29
+ result = algorithm.analyze(transactions)
30
+ result.frequent_item_sets
31
+ result.association_rules
32
+
33
+ ## License
34
+
35
+ The MIT License
36
+
37
+ Copyright (c) 2014 Kazuhiro Sera
38
+
39
+ ## Contributing
40
+
41
+ 1. Fork it ( https://github.com/[my-github-username]/apriori-algorithm/fork )
42
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
43
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
44
+ 4. Push to the branch (`git push origin my-new-feature`)
45
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'apriori'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "apriori-algorithm"
8
+ spec.version = Apriori::VERSION
9
+ spec.authors = ["Kazuhiro Sera"]
10
+ spec.email = ["seratch@gmail.com"]
11
+ spec.summary = %q{Apriori Algorithm implementation in Ruby}
12
+ spec.description = %q{Apriori Algorithm implementation in Ruby}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
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.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_development_dependency 'rspec'
24
+ spec.add_development_dependency 'guard-rspec'
25
+ end
@@ -0,0 +1,9 @@
1
+ #
2
+ # Apriori Algorithm(http://en.wikipedia.org/wiki/Apriori_algorithm) implementation in Ruby.
3
+ # which is based on https://github.com/asaini/Apriori/blob/master/apriori.py.
4
+ #
5
+ module Apriori
6
+
7
+ VERSION = '1.0.0'
8
+
9
+ end
@@ -0,0 +1,137 @@
1
+ require 'apriori/analysis_result'
2
+ require 'apriori/association_rule'
3
+ require 'apriori/frequent_item_set'
4
+
5
+ #
6
+ # Apriori Algorithm(http://en.wikipedia.org/wiki/Apriori_algorithm) implementation in Ruby.
7
+ # which is based on https://github.com/asaini/Apriori/blob/master/apriori.py.
8
+ #
9
+ module Apriori
10
+ class Algorithm
11
+
12
+ attr_reader :min_support, :min_confidence
13
+
14
+ def initialize(min_support = 0.15, min_confidence = 0.6)
15
+ @min_support = min_support
16
+ @min_confidence = min_confidence
17
+ end
18
+
19
+ # transactions: string[][]
20
+ def analyze(transactions) # AnalysisResult
21
+ frequencies = {} # {item_set: count}
22
+ frequent_item_sets = {} # {item_set_size: FrequentItemSet[]}
23
+
24
+ one_element_item_sets = to_one_element_item_sets(transactions) # string[][]
25
+ one_c_item_sets = find_item_sets_min_support_satisfied(
26
+ one_element_item_sets, transactions, min_support, frequencies) # FrequentItemSet[]
27
+
28
+ current_l_item_sets = one_c_item_sets # FrequentItemSet[]
29
+ item_set_size = 1
30
+ while current_l_item_sets.length != 0
31
+ frequent_item_sets[item_set_size] = current_l_item_sets
32
+ joined_sets = to_fixed_size_joined_sets(current_l_item_sets.map { |_| _.item_set }, item_set_size + 1)
33
+ current_l_item_sets = find_item_sets_min_support_satisfied(joined_sets, transactions, min_support, frequencies)
34
+ item_set_size += 1
35
+ end
36
+
37
+ found_sub_sets = [] # string[][]
38
+ association_rules = [] # AssociationRule[]
39
+ frequent_item_sets.each do |item_set_size, item_sets|
40
+ item_sets = item_sets.map { |_| _.item_set }
41
+ next if item_sets.length == 0 || item_sets[0].length <= 1
42
+
43
+ item_sets.each do |item_set|
44
+ to_all_sub_sets(item_set).each do |subset_item_set|
45
+ diff_item_set = ((item_set - subset_item_set) + (subset_item_set - item_set)).uniq
46
+ if diff_item_set.length > 0
47
+ item_support = calculate_support(item_set, frequencies, transactions)
48
+ subset_support = calculate_support(subset_item_set, frequencies, transactions)
49
+ confidence = item_support / subset_support
50
+ if !is_the_rule_already_found(found_sub_sets, subset_item_set) && confidence >= min_confidence
51
+ found_sub_sets << subset_item_set
52
+ association_rules << Apriori::AssociationRule.new(subset_item_set, diff_item_set, confidence)
53
+ end
54
+ end
55
+ end
56
+ end
57
+ end
58
+
59
+ Apriori::AnalysisResult.new(frequent_item_sets, association_rules)
60
+ end
61
+
62
+ private
63
+
64
+ def find_item_sets_min_support_satisfied(item_sets, transactions, min_support, frequencies)
65
+ local_frequencies = {} # {item_set: count}
66
+
67
+ item_sets.each do |item_set|
68
+ transactions.each do |transaction|
69
+ # just optimization for performance
70
+ is_subset = item_set.length == 1 ? transaction.include?(item_set.first) :
71
+ item_set.to_set.subset?(transaction.to_set)
72
+ if is_subset
73
+ frequencies[item_set] = 0 unless frequencies[item_set]
74
+ local_frequencies[item_set] = 0 unless local_frequencies[item_set]
75
+ frequencies[item_set] += 1
76
+ local_frequencies[item_set] += 1
77
+ end
78
+ end
79
+ end
80
+
81
+ filtered_item_sets = [] # FrequentItemSet[]
82
+ local_frequencies.each do |item_set, local_count|
83
+ support = local_count.to_f / transactions.length
84
+ if support >= min_support
85
+ already_added = false
86
+ filtered_item_sets.each do |frequent_item_set|
87
+ unless already_added
88
+ diff_set = ((frequent_item_set.item_set - item_set) + (frequent_item_set.item_set - item_set)).uniq
89
+ already_added = diff_set.length == 0
90
+ end
91
+ end
92
+ unless already_added
93
+ filtered_item_sets << Apriori::FrequentItemSet.new(item_set, support)
94
+ end
95
+ end
96
+ end
97
+ filtered_item_sets
98
+ end
99
+
100
+ def to_one_element_item_sets(transactions)
101
+ nested_array_of_item = []
102
+ transactions.each do |transaction|
103
+ transaction.reject { |_| _.nil? }.each do |item|
104
+ nested_array_of_item << [item]
105
+ end
106
+ end
107
+ nested_array_of_item.uniq
108
+ end
109
+
110
+ def to_fixed_size_joined_sets(item_sets, length)
111
+ joined_set_array = []
112
+ item_sets.each do |item_set_a|
113
+ item_sets.each do |item_set_b|
114
+ joined_set = ((item_set_a - item_set_b) + (item_set_b - item_set_a)).uniq
115
+ if joined_set.length > 0 && joined_set.length == length
116
+ joined_set_array << joined_set
117
+ end
118
+ end
119
+ end
120
+ joined_set_array.uniq
121
+ end
122
+
123
+ def to_all_sub_sets(item_set)
124
+ (1..(item_set.length)).flat_map { |n| item_set.to_a.combination(n) }.first
125
+ end
126
+
127
+ def calculate_support(item_set, frequencies, transactions)
128
+ frequency = frequencies[item_set]
129
+ frequency ? (frequency.to_f / transactions.length) : 0
130
+ end
131
+
132
+ def is_the_rule_already_found(found_sub_sets, item_set)
133
+ found_sub_sets.any? { |sub_set| sub_set == item_set }
134
+ end
135
+
136
+ end
137
+ end
@@ -0,0 +1,12 @@
1
+ module Apriori
2
+ class AnalysisResult
3
+
4
+ attr_reader :frequent_item_sets, # {[itemSetSize: number]: FrequentItemSet[]}
5
+ :association_rules # AssociationRule[]
6
+
7
+ def initialize(frequent_item_sets, association_rules)
8
+ @frequent_item_sets = frequent_item_sets
9
+ @association_rules = association_rules
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,14 @@
1
+ module Apriori
2
+ class AssociationRule
3
+
4
+ attr_reader :lhs, # string[]
5
+ :rhs, # string[]
6
+ :confidence # number
7
+
8
+ def initialize(lhs, rhs, confidence)
9
+ @lhs = lhs
10
+ @rhs = rhs
11
+ @confidence = confidence
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,12 @@
1
+ module Apriori
2
+ class FrequentItemSet
3
+
4
+ attr_reader :item_set, # string[]
5
+ :support # number
6
+
7
+ def initialize(item_set, support)
8
+ @item_set = item_set
9
+ @support = support
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,1421 @@
1
+ LBE,Brooklyn,11204,
2
+ MBE,WBE,BLACK,Cambria Heights,11411,
3
+ MBE,BLACK,Yorktown Heights,10598,
4
+ MBE,BLACK,Long Beach,11561,
5
+ MBE,ASIAN,Brooklyn,11235,
6
+ MBE,WBE,ASIAN,New York,10010,
7
+ MBE,ASIAN,New York,10026,
8
+ MBE,BLACK,New York,10026,
9
+ MBE,HISPANIC,New York,10034,
10
+ MBE,WBE,BLACK,Staten Island,10303,
11
+ MBE,ASIAN,New York,10018,
12
+ MBE,WBE,HISPANIC,New York,10034,
13
+ MBE,WBE,ASIAN,New York,10013,
14
+ MBE,BLACK,Jamaica,11434,
15
+ WBE,NON-MINORITY,New York,10022,
16
+ MBE,BLACK,Staten Island,10304,
17
+ MBE,BLACK,Bronx,10454,
18
+ WBE,NON-MINORITY,New Rochelle,10801,
19
+ WBE,NON-MINORITY,Staten Island,10301,
20
+ WBE,NON-MINORITY,New York,10006,
21
+ MBE,BLACK,Brooklyn,11239,
22
+ MBE,HISPANIC,Lincoln Park,7035,
23
+ MBE,WBE,BLACK,New York,10027,
24
+ WBE,NON-MINORITY,Staten Island,10310,
25
+ MBE,ASIAN,New York,10013,
26
+ WBE,NON-MINORITY,Cliffside Park,7010,
27
+ MBE,WBE,BLACK,Bronx,10456,
28
+ LBE,New York,10003,
29
+ MBE,HISPANIC,Staten Island,10303,
30
+ MBE,ASIAN,New York,10001,
31
+ MBE,BLACK,New York,11435,
32
+ WBE,Ozone Park,11417,
33
+ WBE,NON-MINORITY,Lawrence,11559,
34
+ MBE,LBE,ASIAN,Brooklyn,11230,
35
+ MBE,HISPANIC,Lynbrook,11563,
36
+ MBE,BLACK,Newark,7104,
37
+ WBE,NON-MINORITY,College Point,11356,
38
+ MBE,ASIAN,Berkeley Heights,7922,
39
+ MBE,WBE,LBE,HISPANIC,New York,10040
40
+ MBE,ASIAN,East Elmhurst,11370,
41
+ LBE,Astoria,11106,
42
+ MBE,WBE,HISPANIC,New York,10001,
43
+ MBE,LBE,BLACK,Bronx,10457,
44
+ MBE,WBE,BLACK,South Ozone Park,11420,
45
+ MBE,ASIAN,Congers,10920,
46
+ MBE,BLACK,Bronx,10456,
47
+ MBE,ASIAN,Brooklyn,11219,
48
+ MBE,ASIAN,Bayside,11360,
49
+ WBE,NON-MINORITY,New York,10001,
50
+ MBE,HISPANIC,Bronx,10462,
51
+ MBE,LBE,BLACK,Bronx,10470,
52
+ MBE,ASIAN,Plainview,11803,
53
+ WBE,NON-MINORITY,Bronx,10461,
54
+ WBE,NON-MINORITY,Copiague,11726,
55
+ WBE,NON-MINORITY,Bellingham,98229,
56
+ MBE,BLACK,Jamaica,11435,
57
+ WBE,NON-MINORITY,Forest Hills,11375,
58
+ WBE,NON-MINORITY,New York,10012,
59
+ MBE,WBE,LBE,BLACK,Bronx,10463
60
+ MBE,BLACK,Bay Shore,11706,
61
+ WBE,NON-MINORITY,Montclair,7042,
62
+ WBE,NON-MINORITY,Elmhurst,11101,
63
+ MBE,ASIAN,Hicksville,11801,
64
+ MBE,HISPANIC,Westwood,7675,
65
+ MBE,ASIAN,New York,10018,
66
+ LBE,Miller Place,11764,
67
+ MBE,ASIAN,Jericho,11753,
68
+ WBE,NON-MINORITY,New York,10107,
69
+ MBE,BLACK,Jamaica,11432,
70
+ MBE,ASIAN,Flushing,11367,
71
+ MBE,WBE,BLACK,New York,10019,
72
+ MBE,WBE,ASIAN,Richmond Hill,11418,
73
+ MBE,BLACK,Hempstead,11550,
74
+ MBE,WBE,HISPANIC,Bronx,10465,
75
+ MBE,WBE,HISPANIC,Croton-on-Hudson,10520,
76
+ MBE,HISPANIC,New York,10010,
77
+ WBE,NON-MINORITY,Bronx,10461,
78
+ WBE,NON-MINORITY,Mineola,11501,
79
+ MBE,ASIAN,Mount Vernon,10550,
80
+ MBE,HISPANIC,Port Chester,10573,
81
+ WBE,NON-MINORITY,Merrick,11566,
82
+ WBE,NON-MINORITY,Long Island City,11101,
83
+ MBE,HISPANIC,Brooklyn,11208,
84
+ MBE,ASIAN,Floral Park,11001,
85
+ WBE,NON-MINORITY,New York,10017,
86
+ WBE,NON-MINORITY,New York,10017,
87
+ MBE,ASIAN,New York,10016,
88
+ MBE,BLACK,Bronx,10469,
89
+ MBE,ASIAN,New York,10011,
90
+ MBE,BLACK,Bronx,10466,
91
+ MBE,ASIAN,East Meadow,11554,
92
+ WBE,NON-MINORITY,Ocean Township,7712,
93
+ MBE,ASIAN,Bronx,10454,
94
+ WBE,NON-MINORITY,Flushing,11366,
95
+ WBE,NON-MINORITY,Fairfield,7004,
96
+ MBE,WBE,ASIAN,New York,10016,
97
+ MBE,ASIAN,Richmond Hill,11418,
98
+ MBE,BLACK,Brooklyn,11216,
99
+ MBE,WBE,HISPANIC,New York,10013,
100
+ MBE,WBE,HISPANIC,Bronx,10454,
101
+ MBE,ASIAN,New York,10010,
102
+ WBE,NON-MINORITY,Hillsdale,7642,
103
+ MBE,WBE,BLACK,Brooklyn,11238,
104
+ MBE,LBE,ASIAN,Bayside,11361,
105
+ MBE,HISPANIC,Bronx,10456,
106
+ MBE,ASIAN,New York,10018,
107
+ WBE,NON-MINORITY,Elmsford,10523,
108
+ MBE,ASIAN,Brooklyn,11220,
109
+ WBE,NON-MINORITY,Chappaqua,10514,
110
+ MBE,ASIAN,Ozone Park,11417,
111
+ MBE,ASIAN,Jamaica,11435,
112
+ MBE,HISPANIC,Westbury,11590,
113
+ MBE,ASIAN,New York,10174,
114
+ MBE,HISPANIC,New York,10032,
115
+ WBE,New York,10175,
116
+ MBE,WBE,HISPANIC,New York,10128,
117
+ WBE,NON-MINORITY,Brooklyn,11217,
118
+ MBE,BLACK,Brooklyn,11225,
119
+ MBE,BLACK,Brooklyn,11225,
120
+ MBE,WBE,HISPANIC,Bloomfield,7003,
121
+ MBE,HISPANIC,Bronx,10463,
122
+ WBE,NON-MINORITY,Highland Park,8904,
123
+ MBE,WBE,HISPANIC,Astoria,11102,
124
+ MBE,BLACK,Brooklyn,11221,
125
+ WBE,NON-MINORITY,South Salem,10590,
126
+ MBE,BLACK,Bronx,10467,
127
+ MBE,LBE,HISPANIC,Middletown,10940,
128
+ MBE,BLACK,Brooklyn,11212,
129
+ MBE,ASIAN,N Plainfield,7060,
130
+ MBE,BLACK,Watchung,7069,
131
+ MBE,ASIAN,Flushing,11355,
132
+ WBE,NON-MINORITY,Bronx,10474,
133
+ MBE,WBE,HISPANIC,Forest Hills,11375,
134
+ MBE,BLACK,Bronx,10467,
135
+ WBE,NON-MINORITY,New York,10021,
136
+ WBE,NON-MINORITY,Whitestone,11357,
137
+ MBE,BLACK,Plainfield,7060,
138
+ WBE,NON-MINORITY,New York,10013,
139
+ MBE,LBE,ASIAN,Brooklyn,11214,
140
+ WBE,NON-MINORITY,Brooklyn,11206,
141
+ MBE,LBE,HISPANIC,Jamaica,11434,
142
+ WBE,NON-MINORITY,LIC,11101,
143
+ MBE,WBE,HISPANIC,Cliffside Park,7010,
144
+ WBE,NON-MINORITY,White Plains,10604,
145
+ MBE,ASIAN,Flushing,11354,
146
+ MBE,ASIAN,New York,10016,
147
+ WBE,NON-MINORITY,Staten Island,10314,
148
+ MBE,ASIAN,Lindehurst,11757,
149
+ MBE,ASIAN,Jericho,11753,
150
+ WBE,NON-MINORITY,Amityville,11701,
151
+ MBE,HISPANIC,Maspeth,11378,
152
+ MBE,WBE,BLACK,Brooklyn,11234,
153
+ MBE,BLACK,New York,10030,
154
+ MBE,WBE,BLACK,Huntington Station,11746,
155
+ MBE,WBE,NATIVE AMERICAN,Lewiston,14092,
156
+ MBE,HISPANIC,Bronx,10462,
157
+ MBE,BLACK,Far Rockaway,11691,
158
+ MBE,BLACK,St. Albans,11412,
159
+ WBE,NON-MINORITY,Brooklyn,11230,
160
+ MBE,HISPANIC,Great Neck,11021,
161
+ MBE,ASIAN,Albertson,11507,
162
+ MBE,WBE,BLACK,New York,10118,
163
+ WBE,NON-MINORITY,New York,10017,
164
+ MBE,BLACK,St. Albans,11412,
165
+ MBE,WBE,ASIAN,Staten Island,10302,
166
+ WBE,NON-MINORITY,New York,10010,
167
+ WBE,NON-MINORITY,Flemington,8822,
168
+ MBE,BLACK,Brooklyn,11203,
169
+ MBE,WBE,ASIAN,Alpine,7620,
170
+ MBE,WBE,ASIAN,New York,10018,
171
+ MBE,HISPANIC,Hempstead,11550,
172
+ MBE,HISPANIC,Mount Vernon,10552,
173
+ MBE,BLACK,Queens Village,11427,
174
+ WBE,NON-MINORITY,Brooklyn,11206,
175
+ MBE,HISPANIC,Elmhurst,11373,
176
+ MBE,ASIAN,Brooklyn,11232,
177
+ MBE,HISPANIC,Brooklyn,11231,
178
+ WBE,NON-MINORITY,Staten Island,10306,
179
+ WBE,NON-MINORITY,New York,10013,
180
+ WBE,NON-MINORITY,New York,10021,
181
+ WBE,NON-MINORITY,New York,10018,
182
+ MBE,WBE,BLACK,Brooklyn,11205,
183
+ MBE,WBE,BLACK,Brooklyn,11234,
184
+ MBE,ASIAN,South Plainfield,7080,
185
+ WBE,NON-MINORITY,Huntington,11743,
186
+ MBE,LBE,ASIAN,Woodside,11377,
187
+ MBE,BLACK,New York,10001,
188
+ MBE,BLACK,Brooklyn,11221,
189
+ WBE,NON-MINORITY,New York,10176,
190
+ MBE,BLACK,Hackensack,7601,
191
+ MBE,ASIAN,Bronx,10462,
192
+ MBE,BLACK,Yonkers,10703,
193
+ MBE,BLACK,Bronx,10467,
194
+ MBE,HISPANIC,New Hyde Park,11040,
195
+ MBE,ASIAN,East Elmhurst,11370,
196
+ MBE,BLACK,New York,10030,
197
+ MBE,HISPANIC,Long Island City,11101,
198
+ WBE,NON-MINORITY,Staten Island,10302,
199
+ WBE,NON-MINORITY,New York,10001,
200
+ MBE,WBE,HISPANIC,New York,10001,
201
+ MBE,HISPANIC,Brooklyn,11233,
202
+ MBE,ASIAN,New York,10165,
203
+ MBE,ASIAN,Dayton,8810,
204
+ MBE,ASIAN,Springfield Gardens,11413,
205
+ MBE,HISPANIC,New York,10018,
206
+ MBE,ASIAN,Hillsborough,8844,
207
+ MBE,BLACK,Brooklyn,11226,
208
+ MBE,WBE,HISPANIC,Edison,8837,
209
+ MBE,HISPANIC,New York,10033,
210
+ MBE,BLACK,Rosedale,11422,
211
+ MBE,LBE,ASIAN,Brooklyn,11204,
212
+ MBE,ASIAN,Long Island City,11101,
213
+ MBE,WBE,BLACK,New York,10029,
214
+ MBE,WBE,BLACK,Cherry Hill,8003,
215
+ WBE,NON-MINORITY,Long Island City,11101,
216
+ LBE,Jamaica,11435,
217
+ WBE,NON-MINORITY,Brooklyn,11201,
218
+ MBE,ASIAN,Woodbridge,7095,
219
+ WBE,NON-MINORITY,Brooklyn,11205,
220
+ MBE,WBE,BLACK,Bronx,10466,
221
+ MBE,HISPANIC,Long Island City,11106,
222
+ MBE,HISPANIC,New York,10011,
223
+ MBE,LBE,ASIAN,Brooklyn,11236,
224
+ MBE,BLACK,Jamaica,11432,
225
+ MBE,BLACK,Far Rockaway,11691,
226
+ MBE,ASIAN,New York,10013,
227
+ MBE,ASIAN,New York,10011,
228
+ MBE,BLACK,Jamaica,11434,
229
+ MBE,HISPANIC,New York,10010,
230
+ MBE,WBE,HISPANIC,Union,7083,
231
+ MBE,BLACK,Brooklyn,11208,
232
+ MBE,BLACK,Bronx,10454,
233
+ MBE,WBE,ASIAN,Morris Plains,7950,
234
+ MBE,HISPANIC,Jackson Heights,11372,
235
+ MBE,WBE,ASIAN,New York,10011,
236
+ MBE,ASIAN,New York,10016,
237
+ MBE,BLACK,South Nyack,10960,
238
+ WBE,NON-MINORITY,Totowa,7511,
239
+ WBE,NON-MINORITY,Westfield,7090,
240
+ WBE,NON-MINORITY,New York,10018,
241
+ WBE,NON-MINORITY,New York,10003,
242
+ MBE,ASIAN,Brooklyn,11211,
243
+ MBE,HISPANIC,Bronx,10469,
244
+ MBE,BLACK,Bronx,10470,
245
+ WBE,NON-MINORITY,Jamaica,11430,
246
+ WBE,NON-MINORITY,Summit,7901,
247
+ MBE,WBE,HISPANIC,Bronx,10460,
248
+ MBE,WBE,ASIAN,New York,10022,
249
+ MBE,BLACK,Malverne,11565,
250
+ MBE,LBE,ASIAN,New York,10012,
251
+ MBE,BLACK,Briarwood,11435,
252
+ MBE,HISPANIC,Atlantic Beach,11509,
253
+ MBE,ASIAN,Brooklyn,11205,
254
+ MBE,BLACK,Bronx,10454,
255
+ WBE,NON-MINORITY,Middletown,10941,
256
+ MBE,BLACK,New York,10030,
257
+ MBE,WBE,BLACK,New York,10024,
258
+ MBE,ASIAN,Brooklyn,11226,
259
+ LBE,Huntington,11746,
260
+ MBE,BLACK,Brooklyn,11236,
261
+ MBE,ASIAN,New York,10038,
262
+ WBE,NON-MINORITY,Edgewater,7020,
263
+ WBE,NON-MINORITY,New York,10010,
264
+ MBE,BLACK,New York,10280,
265
+ MBE,BLACK,Kew Gardens,11415,
266
+ MBE,BLACK,Bronx,10457,
267
+ MBE,ASIAN,Cranbury,8512,
268
+ MBE,HISPANIC,New York,10011,
269
+ MBE,BLACK,Jamaica,11435,
270
+ WBE,NON-MINORITY,Huntington,11743,
271
+ MBE,ASIAN,Ozone Park,11417,
272
+ WBE,NON-MINORITY,New York,10025,
273
+ MBE,WBE,BLACK,Brooklyn,11233,
274
+ WBE,NON-MINORITY,Brooklyn,11218,
275
+ MBE,LBE,BLACK,Brooklyn,11210,
276
+ WBE,NON-MINORITY,Harrison,10532,
277
+ WBE,NON-MINORITY,Dix Hills,11746,
278
+ WBE,NON-MINORITY,New York,10012,
279
+ MBE,HISPANIC,New York,10019,
280
+ MBE,ASIAN,Bohemia,11716,
281
+ MBE,ASIAN,Brooklyn,11232,
282
+ WBE,NON-MINORITY,Island Park,11558,
283
+ MBE,WBE,BLACK,Bellerose Village,11001,
284
+ MBE,WBE,BLACK,Coram,11727,
285
+ WBE,NON-MINORITY,Tarrytown,10591,
286
+ MBE,BLACK,Brooklyn,11224,
287
+ WBE,NON-MINORITY,Palisades Park,7650,
288
+ MBE,BLACK,New York,10036,
289
+ MBE,BLACK,New York,10019,
290
+ MBE,HISPANIC,New York,10018,
291
+ WBE,NON-MINORITY,Hackensack,7601,
292
+ WBE,NON-MINORITY,New York,10032,
293
+ WBE,NON-MINORITY,Lindenhurst,11757,
294
+ MBE,HISPANIC,New York,10012,
295
+ WBE,NON-MINORITY,Westport,6880,
296
+ WBE,NON-MINORITY,New York,10004,
297
+ WBE,NON-MINORITY,Nyack,10960,
298
+ WBE,NON-MINORITY,New York,10007,
299
+ MBE,WBE,BLACK,New York,10031,
300
+ MBE,HISPANIC,Union City,7087,
301
+ MBE,HISPANIC,Hackensack,7601,
302
+ MBE,ASIAN,Flushing,11354,
303
+ WBE,N/A,Syosset,11791,
304
+ WBE,New York,10013,
305
+ MBE,WBE,BLACK,Bronx,10453,
306
+ MBE,WBE,BLACK,New York,10023,
307
+ MBE,BLACK,Jamaica,11432,
308
+ WBE,NON-MINORITY,New York,10013,
309
+ MBE,ASIAN,New York,10279,
310
+ MBE,ASIAN,Long Island City,11106,
311
+ MBE,WBE,New York,10018,
312
+ MBE,HISPANIC,Ridgewood,11385,
313
+ MBE,ASIAN,New York,10001,
314
+ WBE,NON-MINORITY,Staten Island,10310,
315
+ MBE,LBE,ASIAN,Brooklyn,11238,
316
+ WBE,NON-MINORITY,New York,10002,
317
+ WBE,NON-MINORITY,New York,10004,
318
+ MBE,BLACK,New York,10001,
319
+ MBE,BLACK,Elmont,11003,
320
+ MBE,BLACK,Ossining,10562,
321
+ MBE,BLACK,New York,10019,
322
+ MBE,ASIAN,Mineola,11501,
323
+ WBE,NON-MINORITY,Valley Stream,11581,
324
+ MBE,BLACK,New York,10035,
325
+ WBE,NON-MINORITY,Fort Salonga,11768,
326
+ WBE,NON-MINORITY,Brooklyn,11222,
327
+ MBE,LBE,ASIAN,New Hyde Park,11040,
328
+ MBE,WBE,ASIAN,Rutherford,7070,
329
+ WBE,NON-MINORITY,Brooklyn,11209,
330
+ MBE,BLACK,Uniondale,11556,
331
+ LBE,Middle Village,11379,
332
+ MBE,WBE,ASIAN,Jersey City,7310,
333
+ WBE,NON-MINORITY,New York,10016,
334
+ MBE,BLACK,Rosedale,11422,
335
+ MBE,BLACK,South Richmond Hill,11419,
336
+ WBE,NON-MINORITY,Brooklyn,11224,
337
+ MBE,BLACK,Brooklyn,11236,
338
+ MBE,BLACK,St. Albans,11412,
339
+ MBE,BLACK,New York,10030,
340
+ MBE,HISPANIC,Brooklyn,11206,
341
+ WBE,NON-MINORITY,Kinnelon,7405,
342
+ WBE,NON-MINORITY,Hackensack,7601,
343
+ MBE,WBE,BLACK,Deer Park,11729,
344
+ WBE,NON-MINORITY,Bronx,10454,
345
+ WBE,NON-MINORITY,Brooklyn,11201,
346
+ MBE,HISPANIC,New York,10036,
347
+ MBE,ASIAN,Ozone Park,11417,
348
+ WBE,NON-MINORITY,New York,10005,
349
+ MBE,WBE,BLACK,Freehold,7728,
350
+ WBE,NON-MINORITY,New York,10018,
351
+ WBE,NON-MINORITY,New York,10001,
352
+ WBE,NON-MINORITY,Old Bethpage,11804,
353
+ MBE,WBE,BLACK,Bronx,10456,
354
+ LBE,Old Bridge,8857,
355
+ MBE,ASIAN,Bayside,11361,
356
+ MBE,ASIAN,Flushing,11355,
357
+ WBE,NON-MINORITY,Manasquan,8736,
358
+ MBE,HISPANIC,New York,10001,
359
+ WBE,LBE,NON-MINORITY,Brooklyn,11229,
360
+ MBE,HISPANIC,Bronx,10465,
361
+ WBE,NON-MINORITY,Brooklyn,11206,
362
+ MBE,BLACK,New York,10035,
363
+ WBE,NON-MINORITY,New York,10022,
364
+ MBE,HISPANIC,Astoria,11106,
365
+ WBE,NON-MINORITY,New York,10004,
366
+ WBE,NON-MINORITY,Woodside,11377,
367
+ MBE,HISPANIC,Rockaway Park,11694,
368
+ MBE,BLACK,Bronx,10466,
369
+ MBE,BLACK,New York,10004,
370
+ MBE,WBE,ASIAN,Long Beach,11561,
371
+ MBE,ASIAN,New York,10120,
372
+ MBE,BLACK,Jamaica,11434,
373
+ MBE,WBE,BLACK,New York,10030,
374
+ MBE,BLACK,Tenafly,7670,
375
+ MBE,BLACK,Brooklyn,11210,
376
+ MBE,HISPANIC,Bronx,10451,
377
+ WBE,NON-MINORITY,New York,10009,
378
+ MBE,ASIAN,New York,10016,
379
+ MBE,LBE,HISPANIC,Brooklyn,11231,
380
+ MBE,BLACK,Mt. Vernon,10553,
381
+ MBE,LBE,BLACK,Brooklyn,11216,
382
+ MBE,BLACK,Yonkers,10701,
383
+ MBE,HISPANIC,New York,10025,
384
+ MBE,BLACK,Bronx,10457,
385
+ WBE,NON-MINORITY,Staten Island,10312,
386
+ WBE,NON-MINORITY,Staten Island,10314,
387
+ LBE,Staten Island,10302,
388
+ WBE,NON-MINORITY,Thornwood,10594,
389
+ MBE,HISPANIC,New York,10168,
390
+ MBE,BLACK,Richmond Hill,11419,
391
+ MBE,WBE,HISPANIC,Brooklyn,11218,
392
+ WBE,NON-MINORITY,New York,10075,
393
+ MBE,BLACK,Cambria Heights,11411,
394
+ WBE,NON-MINORITY,New York,10005,
395
+ MBE,HISPANIC,Central Islip,11722,
396
+ MBE,WBE,BLACK,New York,10026,
397
+ MBE,WBE,BLACK,Brooklyn,11205,
398
+ MBE,BLACK,Bronx,10475,
399
+ MBE,BLACK,New York,10018,
400
+ LBE,Staten Island,10314,
401
+ MBE,ASIAN,Brooklyn,11205,
402
+ MBE,WBE,HISPANIC,Bronx,10454,
403
+ MBE,HISPANIC,Mt. Vernon,10550,
404
+ MBE,HISPANIC,Jamaica,11433,
405
+ MBE,BLACK,New York,10004,
406
+ MBE,HISPANIC,Syosset,11791,
407
+ MBE,HISPANIC,Bronx,10469,
408
+ MBE,BLACK,Brooklyn,11226,
409
+ MBE,HISPANIC,West Haverstraw,10993,
410
+ MBE,WBE,BLACK,Bronx,10458,
411
+ MBE,WBE,BLACK,Brooklyn,11216,
412
+ WBE,NON-MINORITY,New York,10012,
413
+ WBE,NON-MINORITY,Long Island City,11101,
414
+ MBE,BLACK,Mineola,11501,
415
+ WBE,NON-MINORITY,Oakhurst,7755,
416
+ MBE,HISPANIC,New York,10029,
417
+ MBE,HISPANIC,New York,10038,
418
+ MBE,WBE,ASIAN,Greenbrook,8812,
419
+ MBE,BLACK,Mount Vernon,10553,
420
+ MBE,HISPANIC,Bronx,10456,
421
+ MBE,LBE,ASIAN,Astoria,11106,
422
+ MBE,LBE,HISPANIC,Roslyn,11576,
423
+ MBE,BLACK,Lyndhurst,7071,
424
+ MBE,WBE,BLACK,New York,10031,
425
+ WBE,NON-MINORITY,New York,10013,
426
+ MBE,BLACK,Brooklyn,11226,
427
+ MBE,BLACK,Bronx,10467,
428
+ WBE,NON-MINORITY,Montvale,7645,
429
+ WBE,NON-MINORITY,New York,10023,
430
+ WBE,NON-MINORITY,Congers,10920,
431
+ MBE,ASIAN,Brooklyn,11207,
432
+ MBE,HISPANIC,New York,10034,
433
+ WBE,NON-MINORITY,New York,10018,
434
+ MBE,BLACK,Yonkers,10703,
435
+ WBE,NON-MINORITY,Bronxville,10708,
436
+ WBE,NON-MINORITY,New York,10016,
437
+ MBE,WBE,ASIAN,West Islip,11795,
438
+ MBE,HISPANIC,Far Rockaway,11691,
439
+ WBE,NON-MINORITY,New York,10001,
440
+ MBE,BLACK,Brooklyn,11205,
441
+ MBE,ASIAN,River Edge,7661,
442
+ MBE,WBE,BLACK,New York,10037,
443
+ MBE,ASIAN,New York,10001,
444
+ MBE,ASIAN,Mountainside,7092,
445
+ MBE,BLACK,Brooklyn,11220,
446
+ WBE,NON-MINORITY,Brooklyn,11215,
447
+ WBE,NON-MINORITY,New York,10024,
448
+ WBE,NON-MINORITY,New York,10017,
449
+ MBE,WBE,ASIAN,Long Island City,11101,
450
+ MBE,ASIAN,New York,10007,
451
+ WBE,NON-MINORITY,Brooklyn,11208,
452
+ WBE,NON-MINORITY,Glendale,11385,
453
+ WBE,NON-MINORITY,Brooklyn,11218,
454
+ WBE,NON-MINORITY,Brooklyn,11234,
455
+ MBE,ASIAN,New York,10004,
456
+ MBE,HISPANIC,Bronx,10455,
457
+ WBE,NON-MINORITY,New York,10010,
458
+ LBE,Bronx,10475,
459
+ WBE,NON-MINORITY,Hazlet,7730,
460
+ MBE,BLACK,Hartsdale,10530,
461
+ MBE,ASIAN,Staten Island,10306,
462
+ MBE,BLACK,Brooklyn,11226,
463
+ MBE,BLACK,Brooklyn,11226,
464
+ MBE,ASIAN,Hoboken,7030,
465
+ MBE,ASIAN,Ozone Park,11417,
466
+ LBE,Maspeth,11378,
467
+ MBE,HISPANIC,Ozone Park,11417,
468
+ MBE,ASIAN,Staten Island,10310,
469
+ WBE,NON-MINORITY,Bayside,11361,
470
+ MBE,HISPANIC,Monsey,10952,
471
+ MBE,HISPANIC,Springfield Gardens,11413,
472
+ MBE,BLACK,Bronx,10467,
473
+ WBE,NON-MINORITY,New York,10013,
474
+ WBE,NON-MINORITY,Lattingtown,11560,
475
+ MBE,HISPANIC,Woodside,11377,
476
+ MBE,WBE,HISPANIC,Bronx,10467,
477
+ MBE,WBE,BLACK,Brookhaven,11719,
478
+ WBE,NON-MINORITY,Marion,2738,
479
+ MBE,HISPANIC,Brooklyn,11232,
480
+ MBE,HISPANIC,Westbury,11590,
481
+ MBE,ASIAN,New York,10007,
482
+ WBE,NON-MINORITY,Staten Island,10304,
483
+ MBE,BLACK,Bronx,10470,
484
+ MBE,WBE,HISPANIC,Howard Beach,11414,
485
+ MBE,BLACK,New York,10018,
486
+ MBE,BLACK,Englewood,7631,
487
+ MBE,WBE,BLACK,Brooklyn,11216,
488
+ MBE,BLACK,Freeport,11520,
489
+ MBE,HISPANIC,Central Islip,11722,
490
+ MBE,WBE,HISPANIC,New York,10003,
491
+ MBE,HISPANIC,Bronx,10460,
492
+ MBE,BLACK,Laurelton,11413,
493
+ MBE,Long Island City,11101,
494
+ MBE,HISPANIC,Flushing,11354,
495
+ MBE,BLACK,Mount Vernon,10550,
496
+ MBE,BLACK,Brooklyn,11210,
497
+ MBE,ASIAN,Brooklyn,11208,
498
+ MBE,WBE,BLACK,New York,10026,
499
+ MBE,ASIAN,Skillman,8558,
500
+ MBE,ASIAN,New York,10001,
501
+ MBE,HISPANIC,New York,10001,
502
+ WBE,NON-MINORITY,Flushing,11355,
503
+ MBE,HISPANIC,Brooklyn,11237,
504
+ MBE,WBE,BLACK,Mt. Vernon,10553,
505
+ MBE,HISPANIC,New York,10001,
506
+ WBE,NON-MINORITY,New York,10016,
507
+ WBE,NON-MINORITY,Bergenfield,7621,
508
+ MBE,WBE,HISPANIC,Teterboro,7608,
509
+ WBE,NON-MINORITY,Booton,7005,
510
+ LBE,Maspeth,11378,
511
+ MBE,BLACK,Newark,7107,
512
+ MBE,BLACK,New York,10038,
513
+ MBE,WBE,ASIAN,Farmingdale,11735,
514
+ MBE,ASIAN,Poughquag,12570,
515
+ MBE,BLACK,Princeton,8540,
516
+ MBE,BLACK,New York,10010,
517
+ MBE,ASIAN,Kenilworth,7033,
518
+ MBE,HISPANIC,Staten Island,10314,
519
+ MBE,WBE,HISPANIC,Vero Beach,32963,
520
+ MBE,WBE,HISPANIC,Brooklyn,11205,
521
+ WBE,NON-MINORITY,New York,10038,
522
+ MBE,ASIAN,New York,10021,
523
+ MBE,BLACK,Brooklyn,11236,
524
+ WBE,NON-MINORITY,Brooklyn,11206,
525
+ WBE,NON-MINORITY,Mineola,11501,
526
+ WBE,NON-MINORITY,New York,10010,
527
+ MBE,BLACK,New York,10029,
528
+ LBE,New York,10016,
529
+ WBE,LBE,NON-MINORITY,Maspeth,11378,
530
+ WBE,NON-MINORITY,Harrison,10528,
531
+ MBE,WBE,ASIAN,Medord,11763,
532
+ MBE,BLACK,New York,10001,
533
+ WBE,NON-MINORITY,Melville,11747,
534
+ MBE,BLACK,Bethel,6801,
535
+ MBE,HISPANIC,Long Island City,11101,
536
+ LBE,Massapequa,11758,
537
+ MBE,BLACK,Newark,7107,
538
+ WBE,NON-MINORITY,New York,10011,
539
+ MBE,BLACK,Huntington,11743,
540
+ WBE,NON-MINORITY,Baldwin,11510,
541
+ MBE,BLACK,Cambria Heights,11411,
542
+ WBE,NON-MINORITY,Forest Hills,11375,
543
+ MBE,BLACK,Rego Park,11374,
544
+ MBE,BLACK,Mount Vernon,10552,
545
+ WBE,NON-MINORITY,Garden City,11530,
546
+ WBE,NON-MINORITY,Cedarhurst,11516,
547
+ WBE,NON-MINORITY,New York,10119,
548
+ MBE,WBE,BLACK,Elmont,11003,
549
+ WBE,NON-MINORITY,New York,10010,
550
+ MBE,HISPANIC,Peekskill,10566,
551
+ MBE,HISPANIC,Peekskill,10566,
552
+ WBE,NON-MINORITY,Brooklyn,11201,
553
+ WBE,NON-MINORITY,Carle Place,11514,
554
+ MBE,WBE,HISPANIC,Hackensack,7601,
555
+ MBE,HISPANIC,New York,10010,
556
+ WBE,NON-MINORITY,Long Island City,11106,
557
+ MBE,HISPANIC,Brooklyn,11217,
558
+ MBE,BLACK,Huntington,11743,
559
+ MBE,ASIAN,Flushing,11354,
560
+ MBE,HISPANIC,New York,10005,
561
+ MBE,WBE,ASIAN,Merrick,11566,
562
+ MBE,WBE,ASIAN,Merrick,11566,
563
+ MBE,BLACK,Brooklyn,11226,
564
+ WBE,NON-MINORITY,Brooklyn,11235,
565
+ MBE,WBE,BLACK,New York,10005,
566
+ MBE,ASIAN,New York,10018,
567
+ MBE,HISPANIC,Bronx,10461,
568
+ WBE,NON-MINORITY,Millstone Township,8535,
569
+ WBE,NON-MINORITY,Yorktown Heights,10598,
570
+ WBE,NON-MINORITY,New York,10011,
571
+ LBE,Bronx,10465,
572
+ MBE,WBE,HISPANIC,New York,10001,
573
+ MBE,HISPANIC,Tuckahoe,10707,
574
+ LBE,Bronx,10465,
575
+ WBE,NON-MINORITY,New York,10010,
576
+ MBE,BLACK,Brooklyn,11211,
577
+ MBE,WBE,HISPANIC,Ossining,10562,
578
+ MBE,WBE,BLACK,White Plains,10601,
579
+ MBE,BLACK,New York,10005,
580
+ MBE,WBE,BLACK,Hawthorne,10532,
581
+ WBE,NON-MINORITY,New York,10013,
582
+ MBE,HISPANIC,South Ozone Park,11420,
583
+ WBE,NON-MINORITY,Levittown,11756,
584
+ MBE,BLACK,Bronx,10451,
585
+ MBE,ASIAN,Tinton Falls,7724,
586
+ WBE,NON-MINORITY,New York,10010,
587
+ MBE,BLACK,Lynbrook,11563,
588
+ MBE,ASIAN,Brooklyn,11237,
589
+ MBE,HISPANIC,New York,10005,
590
+ MBE,BLACK,Jamaica,11436,
591
+ MBE,ASIAN,New York,10013,
592
+ MBE,BLACK,Brooklyn,11216,
593
+ MBE,WBE,ASIAN,Dix Hills,11746,
594
+ MBE,BLACK,St. Albans,11412,
595
+ WBE,NON-MINORITY,Hazlet,7730,
596
+ MBE,BLACK,White Plains,10601,
597
+ MBE,BLACK,Brooklyn,11225,
598
+ WBE,NON-MINORITY,New York,10035,
599
+ MBE,BLACK,Brooklyn,11217,
600
+ MBE,BLACK,Valley Stream,11580,
601
+ MBE,WBE,BLACK,Yonkers,10701,
602
+ MBE,WBE,BLACK,New Rochelle,10801,
603
+ WBE,NON-MINORITY,Martinsville,8836,
604
+ WBE,NON-MINORITY,New York,10001,
605
+ WBE,NON-MINORITY,New York,10025,
606
+ WBE,NON-MINORITY,New York,10017,
607
+ MBE,BLACK,Edgewater,7020,
608
+ MBE,ASIAN,Brooklyn,11229,
609
+ MBE,BLACK,East Orange,7018,
610
+ MBE,ASIAN,Brooklyn,11205,
611
+ MBE,ASIAN,Briarcliff Manor,10510,
612
+ MBE,HISPANIC,Long Island City,11101,
613
+ WBE,NON-MINORITY,New York,10003,
614
+ MBE,WBE,HISPANIC,Brooklyn,11212,
615
+ WBE,NON-MINORITY,New York,10018,
616
+ MBE,ASIAN,New York,10036,
617
+ WBE,NON-MINORITY,Rahway,7065,
618
+ MBE,WBE,BLACK,New York,10007,
619
+ MBE,BLACK,Jamaica,11434,
620
+ MBE,ASIAN,New York,10038,
621
+ MBE,WBE,BLACK,New York,10026,
622
+ MBE,HISPANIC,Long Island City,11101,
623
+ WBE,NON-MINORITY,New York,10016,
624
+ WBE,NON-MINORITY,New York,10001,
625
+ MBE,BLACK,Bronx,10462,
626
+ WBE,NON-MINORITY,New York,10012,
627
+ MBE,HISPANIC,New York,10128,
628
+ MBE,HISPANIC,Long Island City,11101,
629
+ MBE,BLACK,Brooklyn,11213,
630
+ WBE,NON-MINORITY,Brooklyn,11241,
631
+ MBE,BLACK,West Babylon,11704,
632
+ MBE,HISPANIC,New York,10018,
633
+ WBE,NON-MINORITY,Long Island City,11101,
634
+ WBE,NON-MINORITY,New York,10017,
635
+ WBE,NON-MINORITY,Paramus,7652,
636
+ MBE,WBE,ASIAN,Woodcliff Lake,7677,
637
+ MBE,BLACK,Brooklyn,11225,
638
+ WBE,NON-MINORITY,New York,10007,
639
+ MBE,LBE,BLACK,Long Island City,11101,
640
+ MBE,WBE,HISPANIC,Elmont,11003,
641
+ MBE,ASIAN,N. Bergen,7047,
642
+ MBE,HISPANIC,New York,10005,
643
+ WBE,NON-MINORITY,West Babylon,11704,
644
+ WBE,NON-MINORITY,New York,10016,
645
+ WBE,NON-MINORITY,New York,10165,
646
+ MBE,ASIAN,New York,10022,
647
+ WBE,NON-MINORITY,New York,10001,
648
+ MBE,BLACK,New York,10006,
649
+ MBE,WBE,BLACK,Florham Park,7932,
650
+ MBE,BLACK,Bronx,10475,
651
+ MBE,ASIAN,New York,10001,
652
+ MBE,WBE,HISPANIC,Elmhurst,11373,
653
+ MBE,ASIAN,Bronx,10467,
654
+ WBE,Brooklyn,11201,
655
+ MBE,ASIAN,Bronx,10469,
656
+ MBE,WBE,ASIAN,Ardsley,10502,
657
+ MBE,WBE,BLACK,New York,10032,
658
+ MBE,WBE,HISPANIC,North Bellmore,11710,
659
+ LBE,Bronx,10466,
660
+ MBE,BLACK,Bronx,10473,
661
+ MBE,BLACK,Brooklyn,11213,
662
+ MBE,BLACK,Brooklyn,11236,
663
+ MBE,BLACK,New York,10037,
664
+ MBE,HISPANIC,New York,10007,
665
+ MBE,HISPANIC,Bronx,10467,
666
+ MBE,WBE,BLACK,Melville,11747,
667
+ MBE,ASIAN,Flushing,11354,
668
+ MBE,ASIAN,Brooklyn,11216,
669
+ MBE,HISPANIC,New York,10030,
670
+ MBE,BLACK,New York,10128,
671
+ MBE,WBE,BLACK,Brooklyn,11222,
672
+ WBE,NON-MINORITY,Brooklyn,11201,
673
+ MBE,WBE,HISPANIC,New City,10956,
674
+ WBE,NON-MINORITY,Queens Village,11429,
675
+ MBE,ASIAN,Iselin,8830,
676
+ MBE,BLACK,Jamaica,11433,
677
+ MBE,ASIAN,Queens Village,11428,
678
+ MBE,WBE,ASIAN,New York,10002,
679
+ MBE,WBE,BLACK,New York,10031,
680
+ MBE,BLACK,Bronx,10460,
681
+ MBE,HISPANIC,Roosevelt,11575,
682
+ MBE,ASIAN,Port Washington,11050,
683
+ MBE,HISPANIC,Brooklyn,11207,
684
+ WBE,NON-MINORITY,New York,10032,
685
+ MBE,HISPANIC,Bronx,10458,
686
+ MBE,BLACK,Bronx,10452,
687
+ MBE,ASIAN,New York,10010,
688
+ MBE,BLACK,Mount Vernon,10550,
689
+ WBE,NON-MINORITY,Riverdale,10471,
690
+ MBE,ASIAN,Richmond Hills,11418,
691
+ MBE,BLACK,Brooklyn,11203,
692
+ MBE,BLACK,Hackensack,7601,
693
+ MBE,ASIAN,Bayside,11361,
694
+ MBE,HISPANIC,Fairview,7022,
695
+ MBE,ASIAN,Flushing,11354,
696
+ MBE,HISPANIC,New York,10001,
697
+ WBE,NON-MINORITY,East Northport,11731,
698
+ MBE,ASIAN,Brooklyn,11201,
699
+ MBE,BLACK,Brooklyn,11236,
700
+ MBE,BLACK,Brooklyn,11238,
701
+ WBE,NON-MINORITY,New York,10017,
702
+ WBE,NON-MINORITY,Brooklyn,11201,
703
+ MBE,BLACK,Long Island City,11101,
704
+ WBE,NON-MINORITY,Brooklyn,11215,
705
+ MBE,BLACK,New York,10027,
706
+ MBE,WBE,LBE,BLACK,Brooklyn,11225
707
+ WBE,NON-MINORITY,Deer Park,11729,
708
+ MBE,WBE,BLACK,New York,10026,
709
+ MBE,BLACK,Bohemia,11716,
710
+ MBE,LBE,ASIAN,Floral Park,11004,
711
+ MBE,BLACK,Brooklyn,11210,
712
+ MBE,HISPANIC,Bronx,10454,
713
+ MBE,ASIAN,Staten Island,10301,
714
+ MBE,BLACK,Bronx,10475,
715
+ MBE,BLACK,Bronx,10475,
716
+ MBE,BLACK,Long Island City,11101,
717
+ WBE,NON-MINORITY,New York,10024,
718
+ MBE,WBE,BLACK,Brooklyn,11223,
719
+ MBE,ASIAN,Mountainside,7092,
720
+ WBE,NON-MINORITY,Ossining,10562,
721
+ WBE,NON-MINORITY,Westport,6880,
722
+ MBE,WBE,HISPANIC,Long Island City,11101,
723
+ WBE,NON-MINORITY,New York,10010,
724
+ MBE,BLACK,Cambria Heights,11411,
725
+ MBE,BLACK,Somerset,8873,
726
+ WBE,NON-MINORITY,Millburn,7041,
727
+ MBE,BLACK,Baldwin,11510,
728
+ MBE,WBE,BLACK,Bronx,10466,
729
+ WBE,NON-MINORITY,New York,10010,
730
+ MBE,BLACK,Rosedale,11422,
731
+ MBE,ASIAN,New York,10001,
732
+ MBE,HISPANIC,Maspeth,11378,
733
+ WBE,NON-MINORITY,New York,10016,
734
+ MBE,WBE,HISPANIC,New York,10280,
735
+ WBE,NON-MINORITY,Whitestone,11357,
736
+ MBE,WBE,BLACK,Yorktown Heights,10598,
737
+ MBE,BLACK,New York,10022,
738
+ MBE,ASIAN,Corona,11368,
739
+ WBE,NON-MINORITY,Holbrook,11741,
740
+ WBE,NON-MINORITY,New York,10003,
741
+ MBE,WBE,BLACK,Brooklyn,11205,
742
+ WBE,NON-MINORITY,New York,10005,
743
+ WBE,NON-MINORITY,Brooklyn,11201,
744
+ MBE,WBE,BLACK,Brooklyn,11233,
745
+ WBE,NON-MINORITY,Old Bethpage,11804,
746
+ WBE,N/A,New York,10001,
747
+ MBE,ASIAN,New York,10007,
748
+ MBE,WBE,HISPANIC,Astoria,11105,
749
+ MBE,HISPANIC,New York,10037,
750
+ WBE,NON-MINORITY,East Northport,11731,
751
+ MBE,LBE,ASIAN,New York,10025,
752
+ MBE,BLACK,New York,10018,
753
+ WBE,NON-MINORITY,Briarwood,11435,
754
+ MBE,ASIAN,New York,10023,
755
+ MBE,ASIAN,New York,10121,
756
+ MBE,WBE,BLACK,Freeport,11520,
757
+ WBE,NON-MINORITY,Bronx,10465,
758
+ MBE,BLACK,Rosedale,11422,
759
+ WBE,NON-MINORITY,Closter,7624,
760
+ WBE,NON-MINORITY,New York,10004,
761
+ MBE,BLACK,Bronx,10466,
762
+ MBE,HISPANIC,Brooklyn,11207,
763
+ LBE,Staten Island,10308,
764
+ MBE,ASIAN,Ridgefield,7657,
765
+ MBE,ASIAN,Peekskill,10566,
766
+ MBE,WBE,HISPANIC,Morristown,7960,
767
+ WBE,NON-MINORITY,Lake Success,11042,
768
+ MBE,ASIAN,Bronx,10461,
769
+ MBE,BLACK,Bronx,10461,
770
+ WBE,NON-MINORITY,New York,10001,
771
+ WBE,NON-MINORITY,Brooklyn,11211,
772
+ MBE,WBE,HISPANIC,West Hempstead,11552,
773
+ WBE,NON-MINORITY,New York,10001,
774
+ MBE,BLACK,Brooklyn,11203,
775
+ MBE,WBE,ASIAN,New York,10012,
776
+ MBE,WBE,ASIAN,New York,10018,
777
+ WBE,NON-MINORITY,Brooklyn,11201,
778
+ WBE,NON-MINORITY,Brooklyn,11217,
779
+ MBE,HISPANIC,Weehawken,7086,
780
+ WBE,NON-MINORITY,Fairfield,6825,
781
+ MBE,WBE,NON-MINORITY,Scarsdale,10583,
782
+ MBE,WBE,BLACK,Yonkers,10701,
783
+ MBE,WBE,HISPANIC,Rego Park,11374,
784
+ MBE,WBE,BLACK,Brooklyn,11206,
785
+ WBE,NON-MINORITY,Long Island City,11101,
786
+ WBE,NON-MINORITY,South Hackensack,7606,
787
+ MBE,ASIAN,Long Island City,11102,
788
+ MBE,ASIAN,Jackson Heights,11372,
789
+ WBE,NON-MINORITY,New York,10001,
790
+ MBE,WBE,BLACK,Arverne,11692,
791
+ WBE,NON-MINORITY,New York,10021,
792
+ MBE,HISPANIC,Ridgewood,11385,
793
+ MBE,ASIAN,Ozone Park,11417,
794
+ WBE,NON-MINORITY,Nesconset,11767,
795
+ WBE,NON-MINORITY,Roslyn,11576,
796
+ MBE,BLACK,Long Island City,11101,
797
+ MBE,HISPANIC,New York,10001,
798
+ MBE,HISPANIC,New York,10018,
799
+ MBE,BLACK,Westbury,11590,
800
+ MBE,BLACK,Springfield Gardens,11413,
801
+ MBE,BLACK,Far Rockaway,11691,
802
+ MBE,WBE,BLACK,New York,10023,
803
+ WBE,NON-MINORITY,New York,10024,
804
+ MBE,HISPANIC,New York,10036,
805
+ MBE,HISPANIC,Brooklyn,11216,
806
+ MBE,WBE,ASIAN,Albany,12205,
807
+ MBE,HISPANIC,New York,10019,
808
+ WBE,NON-MINORITY,Staten Island,10314,
809
+ MBE,WBE,BLACK,Brooklyn,11234,
810
+ MBE,WBE,BLACK,Queens Village,11429,
811
+ MBE,BLACK,Brooklyn,11221,
812
+ MBE,HISPANIC,Bronx,10460,
813
+ MBE,WBE,BLACK,Brooklyn,11205,
814
+ MBE,ASIAN,Rego Park,11374,
815
+ MBE,BLACK,Bronx,10469,
816
+ MBE,HISPANIC,Hempstead,11550,
817
+ MBE,BLACK,Corona,11368,
818
+ MBE,HISPANIC,Bronx,10467,
819
+ LBE,Brooklyn,11206,
820
+ MBE,LBE,Brooklyn,11210,
821
+ WBE,NON-MINORITY,Brooklyn,11234,
822
+ MBE,HISPANIC,Jackson Heights,11372,
823
+ LBE,Staten Island,10314,
824
+ MBE,ASIAN,Brooklyn,11222,
825
+ MBE,HISPANIC,New York,10032,
826
+ MBE,WBE,BLACK,Brooklyn,11234,
827
+ MBE,BLACK,New York,10027,
828
+ MBE,ASIAN,Lynbrook,11563,
829
+ MBE,LBE,BLACK,Bronx,10469,
830
+ MBE,HISPANIC,Bronx,10454,
831
+ WBE,NON-MINORITY,College Point,11356,
832
+ MBE,HISPANIC,Branchberg,8876,
833
+ MBE,BLACK,Brooklyn,11205,
834
+ MBE,BLACK,Roosevelt,11575,
835
+ MBE,WBE,HISPANIC,Wayne,7470,
836
+ MBE,BLACK,Yonkers,10710,
837
+ MBE,ASIAN,Mountainside,7092,
838
+ MBE,ASIAN,Hempstead,11550,
839
+ WBE,NON-MINORITY,Brooklyn,11210,
840
+ MBE,BLACK,Brooklyn,11201,
841
+ MBE,BLACK,Jamaica,11434,
842
+ MBE,HISPANIC,Richmond Hill,11418,
843
+ MBE,HISPANIC,New York,10031,
844
+ WBE,NON-MINORITY,New York,10028,
845
+ WBE,NON-MINORITY,Brooklyn,11218,
846
+ WBE,NON-MINORITY,East Islip,11730,
847
+ MBE,BLACK,Islip,11751,
848
+ WBE,NON-MINORITY,New York,10038,
849
+ WBE,NON-MINORITY,Nesconset,11767,
850
+ MBE,ASIAN,Flushing,11354,
851
+ WBE,NON-MINORITY,New York,10001,
852
+ WBE,NON-MINORITY,Astoria,11102,
853
+ MBE,HISPANIC,New York,10010,
854
+ MBE,WBE,BLACK,New York,10031,
855
+ WBE,NON-MINORITY,New York,10010,
856
+ WBE,NON-MINORITY,New York,10021,
857
+ MBE,ASIAN,Syosset,11791,
858
+ MBE,HISPANIC,New York,10040,
859
+ WBE,NON-MINORITY,New York,10018,
860
+ MBE,LBE,BLACK,Brooklyn,11205,
861
+ MBE,BLACK,New York,10031,
862
+ MBE,BLACK,East Stroudsburg,18301,
863
+ WBE,NON-MINORITY,Freehold,7728,
864
+ MBE,BLACK,Freeport,11520,
865
+ WBE,NON-MINORITY,Flushing,11354,
866
+ WBE,NON-MINORITY,East Northport,11731,
867
+ MBE,WBE,ASIAN,New York,10013,
868
+ MBE,BLACK,Staten Island,10303,
869
+ MBE,HISPANIC,New York,10022,
870
+ MBE,WBE,ASIAN,Brooklyn,11201,
871
+ WBE,NON-MINORITY,New York,10022,
872
+ MBE,HISPANIC,Levittown,11756,
873
+ WBE,NON-MINORITY,Bronx,10461,
874
+ MBE,WBE,BLACK,Peeksville,10566,
875
+ MBE,WBE,HISPANIC,Brooklyn,11211,
876
+ MBE,WBE,HISPANIC,Staten Island,10301,
877
+ MBE,BLACK,Yonkers,10701,
878
+ MBE,HISPANIC,Richmond Hill,11418,
879
+ MBE,HISPANIC,Farmingdale,7727,
880
+ MBE,BLACK,Brooklyn,11208,
881
+ MBE,ASIAN,New York,10009,
882
+ MBE,ASIAN,Brooklyn,11226,
883
+ MBE,HISPANIC,College Point,11356,
884
+ MBE,ASIAN,Jersey City,7307,
885
+ WBE,NON-MINORITY,New York,10001,
886
+ MBE,WBE,HISPANIC,New York,10033,
887
+ MBE,WBE,HISPANIC,Jackson Heights,11372,
888
+ WBE,NON-MINORITY,Bayonne,7002,
889
+ MBE,ASIAN,West Orange,7052,
890
+ MBE,ASIAN,New York,10038,
891
+ MBE,HISPANIC,Astoria,11105,
892
+ WBE,NON-MINORITY,Uniondale,11553,
893
+ MBE,ASIAN,New York,10122,
894
+ MBE,BLACK,New York,10165,
895
+ WBE,NON-MINORITY,Dix Hills,11746,
896
+ MBE,ASIAN,New York,10001,
897
+ MBE,ASIAN,New York,10001,
898
+ WBE,NON-MINORITY,New York,10028,
899
+ MBE,BLACK,Mineola,11501,
900
+ MBE,ASIAN,Brooklyn,11220,
901
+ MBE,WBE,BLACK,Rosedale,11422,
902
+ MBE,ASIAN,New York,10006,
903
+ MBE,BLACK,New York,10003,
904
+ WBE,NON-MINORITY,North Babylon,11703,
905
+ MBE,LBE,BLACK,Bronx,10466,
906
+ MBE,WBE,BLACK,Scotch Plains,7076,
907
+ MBE,BLACK,Maspeth,11378,
908
+ WBE,NON-MINORITY,Albany,12205,
909
+ MBE,BLACK,Jamaica,11433,
910
+ MBE,ASIAN,Cliffwood Beach,7735,
911
+ WBE,NON-MINORITY,New York,10016,
912
+ MBE,ASIAN,Mineola,11501,
913
+ MBE,WBE,ASIAN,Brooklyn,11211,
914
+ WBE,NON-MINORITY,New York,10018,
915
+ WBE,NON-MINORITY,Brooklyn,11234,
916
+ MBE,HISPANIC,New York,10016,
917
+ MBE,WBE,BLACK,Brooklyn,11216,
918
+ MBE,HISPANIC,Bronx,10451,
919
+ MBE,WBE,BLACK,Laurelton,11413,
920
+ WBE,NON-MINORITY,New York,10001,
921
+ MBE,HISPANIC,Jackson Heights,11372,
922
+ WBE,NON-MINORITY,Parsippany,7054,
923
+ WBE,NON-MINORITY,Brooklyn,11211,
924
+ WBE,NON-MINORITY,Brooklyn,11210,
925
+ MBE,WBE,ASIAN,Whitestone,11357,
926
+ MBE,ASIAN,Brooklyn,11211,
927
+ MBE,WBE,HISPANIC,Roslyn,11576,
928
+ WBE,NON-MINORITY,Jamaica,11435,
929
+ MBE,BLACK,Brooklyn,11212,
930
+ MBE,BLACK,Westbury,11590,
931
+ MBE,WBE,BLACK,Brooklyn,11212,
932
+ MBE,LBE,BLACK,Bronx,10451,
933
+ MBE,WBE,BLACK,New York,10018,
934
+ WBE,NON-MINORITY,Staten Island,10314,
935
+ MBE,BLACK,Brooklyn,11217,
936
+ MBE,ASIAN,Hollis,11423,
937
+ MBE,BLACK,Brooklyn,11210,
938
+ MBE,BLACK,Bronx,10457,
939
+ MBE,WBE,HISPANIC,Bronx,10467,
940
+ MBE,BLACK,New York,10118,
941
+ MBE,WBE,BLACK,New York,10036,
942
+ MBE,BLACK,Queens,11411,
943
+ WBE,NON-MINORITY,Orangeburg,10962,
944
+ WBE,NON-MINORITY,Brooklyn,11231,
945
+ MBE,BLACK,Yonkers,10703,
946
+ MBE,HISPANIC,New York,10016,
947
+ MBE,ASIAN,New York,10002,
948
+ MBE,BLACK,Yonkers,10701,
949
+ MBE,ASIAN,Long Island City,11101,
950
+ MBE,BLACK,Bellerose,11426,
951
+ MBE,BLACK,Mount Vernon,10550,
952
+ MBE,WBE,HISPANIC,New York,10128,
953
+ MBE,BLACK,Brooklyn,11205,
954
+ LBE,Brooklyn,11218,
955
+ MBE,ASIAN,Brooklyn,11206,
956
+ WBE,NON-MINORITY,New York,10013,
957
+ WBE,NON-MINORITY,New York,10014,
958
+ WBE,NON-MINORITY,New York,10128,
959
+ MBE,WBE,BLACK,Brooklyn,11216,
960
+ MBE,BLACK,New York,10018,
961
+ MBE,BLACK,New York,10030,
962
+ WBE,NON-MINORITY,New York,10007,
963
+ WBE,NON-MINORITY,New York,10001,
964
+ WBE,NON-MINORITY,New York,10001,
965
+ WBE,NON-MINORITY,Commack,11725,
966
+ WBE,NON-MINORITY,Brooklyn,11238,
967
+ LBE,Brooklyn,11203,
968
+ MBE,HISPANIC,White Plains,10604,
969
+ MBE,ASIAN,Brooklyn,11210,
970
+ MBE,ASIAN,Edison,8837,
971
+ MBE,WBE,EBE,N/A,Staten Island,10301
972
+ MBE,WBE,BLACK,Brooklyn,11207,
973
+ MBE,BLACK,Queens Village,11429,
974
+ MBE,ASIAN,Bronx,10472,
975
+ MBE,BLACK,Hollis,11423,
976
+ MBE,BLACK,New York,10003,
977
+ MBE,BLACK,Whitestone,11357,
978
+ MBE,BLACK,Brooklyn,11205,
979
+ MBE,WBE,BLACK,Brooklyn,11225,
980
+ MBE,WBE,ASIAN,New York,10035,
981
+ MBE,ASIAN,Queens Village,11427,
982
+ WBE,NON-MINORITY,Sayville,11782,
983
+ MBE,WBE,ASIAN,Great Neck,11021,
984
+ WBE,NON-MINORITY,Setauket,11733,
985
+ MBE,WBE,BLACK,Mount Vernon,10550,
986
+ MBE,ASIAN,New York,10005,
987
+ MBE,BLACK,E. Elmhurst,11369,
988
+ WBE,NON-MINORITY,New Hyde Park,11040,
989
+ MBE,HISPANIC,Perth Amboy,8861,
990
+ MBE,BLACK,Brooklyn,11201,
991
+ MBE,BLACK,Hollis,11423,
992
+ MBE,BLACK,New York,10001,
993
+ MBE,WBE,BLACK,New York,10025,
994
+ MBE,WBE,BLACK,New York,10030,
995
+ WBE,NON-MINORITY,New York,10003,
996
+ MBE,BLACK,Brooklyn,11225,
997
+ MBE,BLACK,Brooklyn,11225,
998
+ MBE,ASIAN,Wood Ridge,7075,
999
+ MBE,ASIAN,Brooklyn,11238,
1000
+ MBE,BLACK,Bronx,10454,
1001
+ WBE,NON-MINORITY,Farmingdale,11735,
1002
+ MBE,LBE,ASIAN,College Point,11356,
1003
+ WBE,NON-MINORITY,New York,10003,
1004
+ WBE,NON-MINORITY,Ramsey,7446,
1005
+ WBE,NON-MINORITY,Flushing,11358,
1006
+ MBE,HISPANIC,Bronx,10475,
1007
+ MBE,WBE,BLACK,Freeport,11520,
1008
+ WBE,NON-MINORITY,New York,10016,
1009
+ MBE,BLACK,Hempstead,11550,
1010
+ WBE,NON-MINORITY,New York,10001,
1011
+ MBE,HISPANIC,New York,10032,
1012
+ WBE,NON-MINORITY,Paramus,7652,
1013
+ WBE,NON-MINORITY,Long Island City,11101,
1014
+ MBE,BLACK,Brooklyn,11210,
1015
+ MBE,BLACK,Freeport,11520,
1016
+ MBE,ASIAN,Williston Park,11596,
1017
+ MBE,ASIAN,Jamaica,11435,
1018
+ LBE,Somerville,8876,
1019
+ MBE,BLACK,Wheatley Heights,11798,
1020
+ WBE,NON-MINORITY,Astoria,11105,
1021
+ MBE,BLACK,Brooklyn,11216,
1022
+ WBE,NON-MINORITY,Woodbury,11797,
1023
+ MBE,ASIAN,Brooklyn,11222,
1024
+ MBE,ASIAN,Jericho,11753,
1025
+ WBE,NON-MINORITY,Westport,6880,
1026
+ MBE,HISPANIC,Baldwin,11510,
1027
+ MBE,ASIAN,Brooklyn,11204,
1028
+ MBE,WBE,ASIAN,Brooklyn,11214,
1029
+ MBE,WBE,New York,10019,
1030
+ WBE,NON-MINORITY,New York,10021,
1031
+ MBE,WBE,LBE,BLACK,Springfield Gardens,11413
1032
+ WBE,NON-MINORITY,New York,10003,
1033
+ MBE,WBE,BLACK,New York,10036,
1034
+ MBE,BLACK,Brooklyn,11229,
1035
+ MBE,HISPANIC,New York,10005,
1036
+ MBE,WBE,ASIAN,New York,10016,
1037
+ WBE,NON-MINORITY,New York,10010,
1038
+ MBE,BLACK,Brooklyn,11201,
1039
+ WBE,NON-MINORITY,New York,10036,
1040
+ WBE,NON-MINORITY,New York,10003,
1041
+ MBE,HISPANIC,New York,10040,
1042
+ MBE,WBE,ASIAN,Brooklyn,11225,
1043
+ WBE,NON-MINORITY,New York,10038,
1044
+ WBE,NON-MINORITY,Summit,7901,
1045
+ MBE,HISPANIC,New York,10003,
1046
+ MBE,ASIAN,Mineola,11501,
1047
+ MBE,BLACK,Middletown,10941,
1048
+ MBE,HISPANIC,Elmhurst,11373,
1049
+ WBE,NON-MINORITY,New York,10027,
1050
+ MBE,ASIAN,Staten Island,10307,
1051
+ WBE,NON-MINORITY,New York,10010,
1052
+ MBE,WBE,BLACK,Chestnut Ridge,10977,
1053
+ MBE,WBE,BLACK,New York,10007,
1054
+ MBE,BLACK,Rosedale,11422,
1055
+ MBE,WBE,ASIAN,Garden City Park,11040,
1056
+ MBE,BLACK,Mt. Vernon,10550,
1057
+ WBE,NON-MINORITY,New Hyde Park,11040,
1058
+ WBE,NON-MINORITY,Long Island City,11101,
1059
+ MBE,ASIAN,New York,10013,
1060
+ MBE,WBE,ASIAN,New York,10018,
1061
+ MBE,BLACK,New York,10017,
1062
+ MBE,HISPANIC,New York,10018,
1063
+ MBE,LBE,BLACK,Brooklyn,11234,
1064
+ MBE,ASIAN,Princeton,8540,
1065
+ MBE,WBE,BLACK,New York,10027,
1066
+ WBE,NON-MINORITY,Bloomfield,7003,
1067
+ WBE,NON-MINORITY,Breezy Point,11697,
1068
+ MBE,BLACK,Yonkers,10705,
1069
+ MBE,WBE,HISPANIC,Bronx,10462,
1070
+ WBE,NON-MINORITY,New Hempstead,10977,
1071
+ MBE,BLACK,New York,10027,
1072
+ MBE,WBE,ASIAN,New York,10038,
1073
+ MBE,BLACK,Flushing,11354,
1074
+ MBE,HISPANIC,Bronx,10460,
1075
+ MBE,BLACK,Staten Island,10304,
1076
+ WBE,NON-MINORITY,East Brunswick,8816,
1077
+ WBE,NON-MINORITY,Brooklyn,11211,
1078
+ WBE,NON-MINORITY,New York,10022,
1079
+ MBE,LBE,BLACK,Bronx,10467,
1080
+ MBE,ASIAN,New York,10038,
1081
+ MBE,WBE,ASIAN,Hackensack,7601,
1082
+ MBE,ASIAN,New York,10005,
1083
+ MBE,ASIAN,Bronx,10470,
1084
+ MBE,ASIAN,Glendale,11385,
1085
+ MBE,ASIAN,Plainview,11803,
1086
+ WBE,NON-MINORITY,New York,10014,
1087
+ WBE,NON-MINORITY,Allendale,7401,
1088
+ MBE,ASIAN,Staten Island,10314,
1089
+ MBE,WBE,BLACK,Brooklyn,11214,
1090
+ WBE,NON-MINORITY,Westfield,7090,
1091
+ WBE,ASIAN,Edison,8817,
1092
+ WBE,NON-MINORITY,Oceanside,11572,
1093
+ WBE,NON-MINORITY,Edison,8837,
1094
+ WBE,NON-MINORITY,New York,10025,
1095
+ WBE,NON-MINORITY,Whitestone,11357,
1096
+ WBE,NON-MINORITY,Brooklyn,11238,
1097
+ MBE,WBE,HISPANIC,New York,10022,
1098
+ MBE,WBE,BLACK,Cambria Heights,11411,
1099
+ MBE,WBE,BLACK,New York,10029,
1100
+ MBE,WBE,HISPANIC,Freeport,11520,
1101
+ MBE,BLACK,Bronx,10474,
1102
+ WBE,NON-MINORITY,New York,10001,
1103
+ MBE,WBE,ASIAN,New York,10025,
1104
+ MBE,WBE,BLACK,Brooklyn,11210,
1105
+ MBE,ASIAN,New York,10118,
1106
+ MBE,HISPANIC,Bronx,10473,
1107
+ MBE,WBE,BLACK,Bronx,10451,
1108
+ MBE,HISPANIC,Bronx,10470,
1109
+ MBE,WBE,BLACK,Yonkers,10710,
1110
+ WBE,NON-MINORITY,Staten Island,10301,
1111
+ WBE,NON-MINORITY,New York,10011,
1112
+ WBE,NON-MINORITY,Woodside,11377,
1113
+ MBE,ASIAN,New York,10004,
1114
+ WBE,NON-MINORITY,New York,10017,
1115
+ MBE,ASIAN,Edison,8837,
1116
+ WBE,NON-MINORITY,New York,10022,
1117
+ WBE,NON-MINORITY,New York,10017,
1118
+ MBE,WBE,HISPANIC,New York,10022,
1119
+ MBE,LBE,ASIAN,Elmhurst,11373,
1120
+ MBE,ASIAN,Edsion,8817,
1121
+ MBE,LBE,BLACK,Staten Island,10304,
1122
+ MBE,HISPANIC,Queens Village,11429,
1123
+ MBE,WBE,HISPANIC,New York,10010,
1124
+ MBE,LBE,HISPANIC,Woodside,11377,
1125
+ MBE,LBE,BLACK,St. Albans,11412,
1126
+ MBE,HISPANIC,Maspeth,11378,
1127
+ MBE,WBE,HISPANIC,Maspeth,11378,
1128
+ WBE,NON-MINORITY,New York,10003,
1129
+ MBE,ASIAN,Lake Success,11042,
1130
+ WBE,New York,10016,
1131
+ MBE,WBE,ASIAN,New York,10013,
1132
+ WBE,NON-MINORITY,Staten Island,10305,
1133
+ WBE,NON-MINORITY,Plainview,11803,
1134
+ WBE,NON-MINORITY,West Babylon,11704,
1135
+ WBE,NON-MINORITY,New York,10013,
1136
+ WBE,NON-MINORITY,Jamaica,11430,
1137
+ MBE,BLACK,Bronx,10462,
1138
+ WBE,NON-MINORITY,New York,10023,
1139
+ WBE,ASIAN,Saddle Brook,7663,
1140
+ WBE,NON-MINORITY,Belle Harbor,11694,
1141
+ MBE,LBE,BLACK,Brooklyn,11205,
1142
+ MBE,ASIAN,Brooklyn,11208,
1143
+ WBE,NON-MINORITY,Yorktown Heights,10598,
1144
+ MBE,LBE,BLACK,Bronx,10451,
1145
+ MBE,ASIAN,Linwood,8221,
1146
+ MBE,WBE,ASIAN,Sleepy Hollow,10591,
1147
+ MBE,WBE,HISPANIC,Centerport,11721,
1148
+ WBE,NON-MINORITY,Melville,11747,
1149
+ WBE,NON-MINORITY,New York,10004,
1150
+ WBE,NON-MINORITY,New York,10018,
1151
+ LBE,Staten Island,10304,
1152
+ MBE,BLACK,New York,10018,
1153
+ MBE,ASIAN,Queens Village,11428,
1154
+ WBE,NON-MINORITY,Huntington Station,11746,
1155
+ MBE,ASIAN,Brooklyn,11206,
1156
+ MBE,BLACK,New York,10018,
1157
+ MBE,WBE,HISPANIC,Bronx,10466,
1158
+ WBE,NON-MINORITY,Farmingdale,11735,
1159
+ WBE,NON-MINORITY,Flushing,11358,
1160
+ WBE,NON-MINORITY,Brooklyn,11234,
1161
+ MBE,WBE,BLACK,New York,10005,
1162
+ WBE,NON-MINORITY,New York,10001,
1163
+ WBE,NON-MINORITY,Great Neck,11021,
1164
+ MBE,BLACK,New York,10001,
1165
+ WBE,NON-MINORITY,New York,10018,
1166
+ MBE,WBE,BLACK,Rosedale,11422,
1167
+ WBE,NON-MINORITY,Brooklyn,11242,
1168
+ MBE,BLACK,Brooklyn,11225,
1169
+ MBE,BLACK,Hollis,11423,
1170
+ MBE,BLACK,Brooklyn,11216,
1171
+ WBE,NON-MINORITY,Dobbs Ferry,10522,
1172
+ WBE,NON-MINORITY,New York,10010,
1173
+ WBE,NON-MINORITY,New York,10018,
1174
+ MBE,WBE,BLACK,Brooklyn,11230,
1175
+ WBE,NON-MINORITY,New York,10025,
1176
+ MBE,BLACK,Brooklyn,11203,
1177
+ WBE,NON-MINORITY,Chappaqua,10514,
1178
+ WBE,NON-MINORITY,Stamford,6902,
1179
+ MBE,BLACK,Glen Head,11545,
1180
+ MBE,WBE,BLACK,Brooklyn,11216,
1181
+ MBE,ASIAN,Bronx,10458,
1182
+ WBE,NON-MINORITY,New York,10001,
1183
+ MBE,ASIAN,East Elmhurst,11370,
1184
+ MBE,ASIAN,New York,10001,
1185
+ MBE,WBE,LBE,BLACK,Hempstead,11550
1186
+ MBE,BLACK,Brooklyn,11204,
1187
+ MBE,WBE,LBE,HISPANIC,Maspeth,11378
1188
+ MBE,WBE,BLACK,Bowie,20720,
1189
+ WBE,NON-MINORITY,Huntington Station,11746,
1190
+ MBE,BLACK,Long Island City,11101,
1191
+ MBE,BLACK,Woodhaven,11421,
1192
+ MBE,BLACK,New York,10033,
1193
+ WBE,NON-MINORITY,Valhalla,10595,
1194
+ MBE,WBE,New York,10032,
1195
+ MBE,HISPANIC,Paterson,7513,
1196
+ MBE,HISPANIC,College Point,11356,
1197
+ WBE,NON-MINORITY,Springfield,7081,
1198
+ WBE,NON-MINORITY,Brooklyn,11216,
1199
+ MBE,BLACK,New York,10038,
1200
+ MBE,HISPANIC,Matawan,7747,
1201
+ WBE,NON-MINORITY,Newark,7114,
1202
+ MBE,ASIAN,Hamilton Township,8638,
1203
+ WBE,NON-MINORITY,Great Neck,11021,
1204
+ MBE,HISPANIC,Long Island City,11101,
1205
+ WBE,NON-MINORITY,New York,10016,
1206
+ MBE,WBE,HISPANIC,Bronx,10465,
1207
+ MBE,HISPANIC,New York,10025,
1208
+ WBE,NON-MINORITY,New York,10021,
1209
+ MBE,ASIAN,Elmhurst,11373,
1210
+ MBE,WBE,ASIAN,New York,10016,
1211
+ WBE,NON-MINORITY,New City,10956,
1212
+ MBE,HISPANIC,New York,10022,
1213
+ WBE,NON-MINORITY,New York,10010,
1214
+ MBE,BLACK,Mamaroneck,10543,
1215
+ MBE,WBE,BLACK,Arverne,11692,
1216
+ WBE,NON-MINORITY,New York,10004,
1217
+ MBE,HISPANIC,Montville,7045,
1218
+ WBE,NON-MINORITY,New York,10028,
1219
+ WBE,NON-MINORITY,Brooklyn,11201,
1220
+ WBE,NON-MINORITY,New York,10017,
1221
+ WBE,NON-MINORITY,Westbury,11590,
1222
+ MBE,HISPANIC,Brooklyn,11225,
1223
+ MBE,BLACK,New York,10007,
1224
+ MBE,BLACK,Bronx,10451,
1225
+ MBE,BLACK,St. Albans,11412,
1226
+ MBE,WBE,BLACK,Brooklyn,11236,
1227
+ MBE,ASIAN,Brooklyn,11218,
1228
+ MBE,WBE,BLACK,Brooklyn,11234,
1229
+ MBE,ASIAN,Brooklyn,11218,
1230
+ MBE,WBE,BLACK,Brooklyn,11230,
1231
+ WBE,NON-MINORITY,New York,10019,
1232
+ WBE,NON-MINORITY,Hudson,12534,
1233
+ WBE,NON-MINORITY,Succasunna,7876,
1234
+ MBE,BLACK,New York,10038,
1235
+ WBE,NON-MINORITY,Brooklyn,11231,
1236
+ WBE,NON-MINORITY,Scarsdale,10583,
1237
+ MBE,BLACK,Laurelton,11413,
1238
+ MBE,ASIAN,Brooklyn,11223,
1239
+ MBE,ASIAN,Elmhurst,11373,
1240
+ MBE,WBE,BLACK,Bronx,10467,
1241
+ MBE,WBE,BLACK,Bronx,10462,
1242
+ WBE,NON-MINORITY,Staten Island,10309,
1243
+ MBE,ASIAN,New York,10010,
1244
+ MBE,HISPANIC,New York,10014,
1245
+ MBE,N/A,Hollis,11423,
1246
+ WBE,NON-MINORITY,New York,10036,
1247
+ WBE,NON-MINORITY,Southold,11971,
1248
+ MBE,LBE,BLACK,Huntington Station,11746,
1249
+ MBE,LBE,ASIAN,New York,10039,
1250
+ MBE,HISPANIC,Yonkers,10710,
1251
+ MBE,BLACK,Hempstead,11550,
1252
+ MBE,ASIAN,Richmond Hill,11419,
1253
+ WBE,NON-MINORITY,Brooklyn,11217,
1254
+ WBE,NON-MINORITY,Yonkers,10710,
1255
+ MBE,ASIAN,Woodside,11377,
1256
+ MBE,ASIAN,Edison,8820,
1257
+ WBE,NON-MINORITY,New York,10016,
1258
+ WBE,NON-MINORITY,New York,10014,
1259
+ MBE,WBE,ASIAN,New York,10018,
1260
+ WBE,NON-MINORITY,New York,10036,
1261
+ WBE,NON-MINORITY,North Babylon,11704,
1262
+ MBE,WBE,ASIAN,New York,10018,
1263
+ MBE,BLACK,New York,10018,
1264
+ MBE,ASIAN,Oxford,6478,
1265
+ LBE,Brooklyn,11234,
1266
+ WBE,NON-MINORITY,New York,10001,
1267
+ MBE,HISPANIC,New York,10010,
1268
+ MBE,ASIAN,Staten Island,10301,
1269
+ WBE,White Plains,10604,
1270
+ MBE,ASIAN,New York,10003,
1271
+ MBE,BLACK,Bronx,10453,
1272
+ MBE,WBE,BLACK,New York,10034,
1273
+ WBE,NON-MINORITY,Mahwah,7430,
1274
+ MBE,WBE,HISPANIC,Inwood,11096,
1275
+ WBE,NON-MINORITY,New York,10005,
1276
+ MBE,ASIAN,New York,10001,
1277
+ MBE,BLACK,Brooklyn,11233,
1278
+ MBE,BLACK,Hollis,11423,
1279
+ MBE,BLACK,Bronx,10452,
1280
+ MBE,ASIAN,New York,10038,
1281
+ WBE,NON-MINORITY,New York,10022,
1282
+ MBE,ASIAN,New York,10017,
1283
+ MBE,BLACK,Bronx,10469,
1284
+ MBE,BLACK,Mount Vernon,10550,
1285
+ WBE,NON-MINORITY,New York,10011,
1286
+ WBE,NON-MINORITY,New York,10018,
1287
+ WBE,NON-MINORITY,Brooklyn,11232,
1288
+ MBE,WBE,BLACK,Springfield Gardens,11413,
1289
+ MBE,ASIAN,Flushing,11358,
1290
+ WBE,NON-MINORITY,New York,10003,
1291
+ MBE,ASIAN,Woodside,11377,
1292
+ WBE,NON-MINORITY,Deer Park,11729,
1293
+ MBE,HISPANIC,Brooklyn,11206,
1294
+ MBE,BLACK,Bronx,10457,
1295
+ MBE,LBE,ASIAN,Brooklyn,11235,
1296
+ WBE,NON-MINORITY,Brooklyn,11215,
1297
+ MBE,WBE,BLACK,Bronx,10466,
1298
+ MBE,BLACK,Hempstead,11520,
1299
+ MBE,ASIAN,New York,10006,
1300
+ MBE,BLACK,Rosedale,11422,
1301
+ MBE,HISPANIC,Flushing,11358,
1302
+ MBE,ASIAN,Edison,8817,
1303
+ MBE,BLACK,Brooklyn,11205,
1304
+ MBE,BLACK,Rahway,7065,
1305
+ WBE,NON-MINORITY,New York,10018,
1306
+ MBE,BLACK,Springfield Gardens,11413,
1307
+ MBE,BLACK,Bronx,10472,
1308
+ MBE,HISPANIC,Brooklyn,11211,
1309
+ WBE,NON-MINORITY,New York,10025,
1310
+ LBE,Maspeth,11378,
1311
+ MBE,WBE,HISPANIC,New York,10031,
1312
+ WBE,NON-MINORITY,North Arlington,7031,
1313
+ WBE,Saugerties,12477,
1314
+ MBE,BLACK,Queens Village,11428,
1315
+ MBE,ASIAN,New York,10017,
1316
+ MBE,ASIAN,East Norwich,11732,
1317
+ MBE,BLACK,Brooklyn,11236,
1318
+ WBE,NON-MINORITY,New York,10016,
1319
+ MBE,BLACK,Bloomfield,7003,
1320
+ WBE,NON-MINORITY,New York,10011,
1321
+ WBE,NON-MINORITY,Center Moriches,11934,
1322
+ WBE,NON-MINORITY,New York,10016,
1323
+ MBE,ASIAN,New York,10001,
1324
+ MBE,BLACK,Yonkers,10701,
1325
+ MBE,BLACK,Brooklyn,11203,
1326
+ WBE,NON-MINORITY,Long Island City,11101,
1327
+ MBE,WBE,ASIAN,Staten Island,10306,
1328
+ MBE,BLACK,Brooklyn,11233,
1329
+ WBE,NON-MINORITY,Bronx,10471,
1330
+ MBE,HISPANIC,Bronx,10460,
1331
+ MBE,WBE,HISPANIC,New York,10011,
1332
+ MBE,HISPANIC,New York,10010,
1333
+ MBE,WBE,HISPANIC,New York,10040,
1334
+ WBE,NON-MINORITY,Sunnyside,11104,
1335
+ MBE,WBE,BLACK,Rego Park,11374,
1336
+ MBE,WBE,HISPANIC,New York,10280,
1337
+ WBE,NON-MINORITY,New York,10016,
1338
+ MBE,WBE,BLACK,Jamaica,11435,
1339
+ MBE,BLACK,Baltimore,21207,
1340
+ MBE,BLACK,Brooklyn,11201,
1341
+ MBE,BLACK,Brooklyn,11236,
1342
+ WBE,NON-MINORITY,Brooklyn,11230,
1343
+ MBE,BLACK,Hillsborough,8844,
1344
+ MBE,BLACK,New York,10001,
1345
+ MBE,WBE,HISPANIC,Floral Park,11001,
1346
+ WBE,NON-MINORITY,New York,10001,
1347
+ MBE,BLACK,Laurelton,11413,
1348
+ WBE,NON-MINORITY,New York,10036,
1349
+ WBE,NON-MINORITY,Staten Island,10308,
1350
+ MBE,WBE,HISPANIC,New York,10011,
1351
+ MBE,WBE,HISPANIC,Morganville,7751,
1352
+ WBE,NON-MINORITY,New York,10018,
1353
+ MBE,BLACK,Jamaica,11434,
1354
+ MBE,WBE,ASIAN,New York,10004,
1355
+ WBE,NON-MINORITY,New York,10016,
1356
+ MBE,WBE,HISPANIC,New York,10012,
1357
+ MBE,WBE,HISPANIC,Hillside,7205,
1358
+ MBE,WBE,ASIAN,New York,10018,
1359
+ WBE,NON-MINORITY,New York,10023,
1360
+ MBE,BLACK,New York,10128,
1361
+ WBE,NON-MINORITY,New York,10038,
1362
+ MBE,BLACK,Freeport,11520,
1363
+ WBE,ASIAN,New York,10013,
1364
+ MBE,WBE,BLACK,Bronx,10453,
1365
+ MBE,ASIAN,South Richmond Hill,11419,
1366
+ MBE,BLACK,South Richmond Hill,11419,
1367
+ WBE,NON-MINORITY,Great Neck,11020,
1368
+ WBE,NON-MINORITY,Yonkers,10710,
1369
+ MBE,BLACK,Jamaica,11432,
1370
+ WBE,NON-MINORITY,Brooklyn,11235,
1371
+ MBE,WBE,BLACK,New York,10018,
1372
+ WBE,NON-MINORITY,Smithtown,11787,
1373
+ MBE,BLACK,Teaneck,7666,
1374
+ MBE,ASIAN,Flushing,11354,
1375
+ MBE,ASIAN,Jackson Heights,11370,
1376
+ WBE,NON-MINORITY,West Nyack,10994,
1377
+ WBE,NON-MINORITY,Woodbury,11797,
1378
+ MBE,BLACK,Brooklyn,11226,
1379
+ WBE,NON-MINORITY,New York,10010,
1380
+ MBE,BLACK,St. Albans,11412,
1381
+ MBE,WBE,HISPANIC,Bronx,10462,
1382
+ LBE,Astoria,11103,
1383
+ MBE,HISPANIC,New York,10027,
1384
+ WBE,NON-MINORITY,Brooklyn,11215,
1385
+ MBE,WBE,ASIAN,Valley Stream,11581,
1386
+ MBE,HISPANIC,White Plains,10601,
1387
+ WBE,NON-MINORITY,Webster,14580,
1388
+ MBE,ASIAN,Linden,7036,
1389
+ MBE,ASIAN,Lodi,7644,
1390
+ MBE,BLACK,Brooklyn,11233,
1391
+ MBE,ASIAN,New York,10018,
1392
+ WBE,NON-MINORITY,New York,10014,
1393
+ MBE,ASIAN,North Bergen,7047,
1394
+ MBE,ASIAN,Elmwood Park,7407,
1395
+ WBE,NON-MINORITY,Washington,20005,
1396
+ WBE,New York,10075,
1397
+ MBE,WBE,BLACK,St. Albans,11412,
1398
+ WBE,NON-MINORITY,Garden City,11530,
1399
+ WBE,LBE,NON-MINORITY,Bronx,10461,
1400
+ MBE,WBE,BLACK,Bronx,10469,
1401
+ WBE,NON-MINORITY,Brooklyn,11201,
1402
+ WBE,NON-MINORITY,New York,10003,
1403
+ MBE,ASIAN,Cambria Heights,11411,
1404
+ MBE,ASIAN,Fort Lee,7024,
1405
+ MBE,ASIAN,Fort Lee,7024,
1406
+ MBE,BLACK,New York,10001,
1407
+ WBE,NON-MINORITY,New York,10025,
1408
+ MBE,WBE,ASIAN,East Meadow,11554,
1409
+ MBE,WBE,BLACK,Brooklyn,11208,
1410
+ WBE,NON-MINORITY,Avon by the Sea,7717,
1411
+ MBE,LBE,ASIAN,Ozone Park,11417,
1412
+ WBE,NON-MINORITY,New York,10010,
1413
+ WBE,NON-MINORITY,Teaneck,7666,
1414
+ MBE,WBE,BLACK,Bronx,10456,
1415
+ MBE,BLACK,Paterson,7514,
1416
+ WBE,NON-MINORITY,New York,10023,
1417
+ MBE,ASIAN,Valley Stream,11580,
1418
+ MBE,BLACK,Brooklyn,11214,
1419
+ LBE,New York,10016,
1420
+ MBE,ASIAN,New York,10002,
1421
+