rubillow 0.0.1

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.
Files changed (81) hide show
  1. data/.gitignore +6 -0
  2. data/.rspec +2 -0
  3. data/.yardopts +4 -0
  4. data/Gemfile +3 -0
  5. data/Gemfile.lock +43 -0
  6. data/LICENSE +21 -0
  7. data/README.md +64 -0
  8. data/Rakefile +38 -0
  9. data/lib/rubillow.rb +29 -0
  10. data/lib/rubillow/configuration.rb +31 -0
  11. data/lib/rubillow/home_valuation.rb +141 -0
  12. data/lib/rubillow/models.rb +83 -0
  13. data/lib/rubillow/models/addressable.rb +38 -0
  14. data/lib/rubillow/models/chart.rb +34 -0
  15. data/lib/rubillow/models/comps.rb +35 -0
  16. data/lib/rubillow/models/deep_comps.rb +35 -0
  17. data/lib/rubillow/models/deep_search_result.rb +44 -0
  18. data/lib/rubillow/models/demographic_value.rb +28 -0
  19. data/lib/rubillow/models/demographics.rb +149 -0
  20. data/lib/rubillow/models/images.rb +24 -0
  21. data/lib/rubillow/models/linkable.rb +39 -0
  22. data/lib/rubillow/models/monthly_payments.rb +64 -0
  23. data/lib/rubillow/models/posting.rb +37 -0
  24. data/lib/rubillow/models/postings.rb +64 -0
  25. data/lib/rubillow/models/property_basics.rb +36 -0
  26. data/lib/rubillow/models/property_chart.rb +26 -0
  27. data/lib/rubillow/models/rate_summary.rb +38 -0
  28. data/lib/rubillow/models/region.rb +44 -0
  29. data/lib/rubillow/models/region_chart.rb +30 -0
  30. data/lib/rubillow/models/region_children.rb +30 -0
  31. data/lib/rubillow/models/search_result.rb +19 -0
  32. data/lib/rubillow/models/updated_property_details.rb +87 -0
  33. data/lib/rubillow/models/zestimateable.rb +77 -0
  34. data/lib/rubillow/models/zpidable.rb +25 -0
  35. data/lib/rubillow/mortgage.rb +75 -0
  36. data/lib/rubillow/neighborhood.rb +129 -0
  37. data/lib/rubillow/postings.rb +46 -0
  38. data/lib/rubillow/property_details.rb +107 -0
  39. data/lib/rubillow/request.rb +67 -0
  40. data/lib/rubillow/version.rb +4 -0
  41. data/rubillow.gemspec +31 -0
  42. data/spec/rubillow/configuration_spec.rb +10 -0
  43. data/spec/rubillow/home_valuation_spec.rb +91 -0
  44. data/spec/rubillow/models/comps_spec.rb +71 -0
  45. data/spec/rubillow/models/deep_comps_spec.rb +93 -0
  46. data/spec/rubillow/models/deep_search_results_spec.rb +47 -0
  47. data/spec/rubillow/models/demographics_spec.rb +60 -0
  48. data/spec/rubillow/models/monthly_payments_spec.rb +20 -0
  49. data/spec/rubillow/models/posting_spec.rb +28 -0
  50. data/spec/rubillow/models/postings_spec.rb +15 -0
  51. data/spec/rubillow/models/property_chart_spec.rb +18 -0
  52. data/spec/rubillow/models/rate_summary_spec.rb +14 -0
  53. data/spec/rubillow/models/region_chart_spec.rb +19 -0
  54. data/spec/rubillow/models/region_children_spec.rb +11 -0
  55. data/spec/rubillow/models/search_result_spec.rb +68 -0
  56. data/spec/rubillow/models/updated_property_details_spec.rb +57 -0
  57. data/spec/rubillow/models_spec.rb +46 -0
  58. data/spec/rubillow/mortgage_spec.rb +37 -0
  59. data/spec/rubillow/neighborhood_spec.rb +55 -0
  60. data/spec/rubillow/postings_spec.rb +19 -0
  61. data/spec/rubillow/property_details_spec.rb +67 -0
  62. data/spec/rubillow/request_spec.rb +65 -0
  63. data/spec/rubillow/rubillow_spec.rb +13 -0
  64. data/spec/spec_helper.rb +15 -0
  65. data/spec/support/have_configuration_matcher.rb +23 -0
  66. data/spec/xml/general_failure.xml +12 -0
  67. data/spec/xml/get_chart.xml +18 -0
  68. data/spec/xml/get_comps.xml +252 -0
  69. data/spec/xml/get_deep_comps.xml +307 -0
  70. data/spec/xml/get_deep_search_results.xml +66 -0
  71. data/spec/xml/get_demographics.xml +791 -0
  72. data/spec/xml/get_monthly_payments.xml +33 -0
  73. data/spec/xml/get_rate_summary.xml +21 -0
  74. data/spec/xml/get_region_chart.xml +25 -0
  75. data/spec/xml/get_region_children.xml +870 -0
  76. data/spec/xml/get_region_postings.xml +2660 -0
  77. data/spec/xml/get_search_results.xml +55 -0
  78. data/spec/xml/get_updated_property_details.xml +74 -0
  79. data/spec/xml/get_zestimate.xml +56 -0
  80. data/spec/xml/near_limit.xml +13 -0
  81. metadata +324 -0
@@ -0,0 +1,2660 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <RegionPostings:regionPostings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:RegionPostings="http://www.zillow.com/static/xsd/RegionPostings.xsd" xsi:schemaLocation="http://www.zillow.com/static/xsd/RegionPostings.xsd http://www.zillowstatic.com/vstatic/6b4ea3e571a1ef97dd8f1e6be94b2725/static/xsd/RegionPostings.xsd">
3
+ <request>
4
+ <zipcode>98102</zipcode>
5
+ </request>
6
+ <message>
7
+ <text>Request successfully processed</text>
8
+ <code>0</code>
9
+ </message>
10
+ <response>
11
+ <regionId>99562</regionId>
12
+ <links>
13
+ <forSale>http://www.zillow.com/homes/for_sale/Broadway-Seattle-WA-98102/</forSale>
14
+ <forSaleByOwner>http://www.zillow.com/homes/fsbo/Broadway-Seattle-WA-98102/</forSaleByOwner>
15
+ <foreclosures>http://www.zillow.com/homes/for_sale/Broadway-Seattle-WA-98102/fore_lt/0_mmm/</foreclosures>
16
+ </links>
17
+ <makeMeMove>
18
+ <count>90</count>
19
+ <result>
20
+ <lastRefreshedDate>2011-08-21 00:00:00.0</lastRefreshedDate>
21
+ <property>
22
+ <zpid>48708109</zpid>
23
+ <links>
24
+ <homedetails>http://www.zillow.com/homedetails/1658-Federal-Ave-E-Seattle-WA-98102/48708109_zpid/</homedetails>
25
+ </links>
26
+ <address>
27
+ <street>1658 Federal Ave E</street>
28
+ <zipcode>98102</zipcode>
29
+ <city>Seattle</city>
30
+ <state>WA</state>
31
+ <latitude>47.634532</latitude>
32
+ <longitude>-122.318519</longitude>
33
+ </address>
34
+ <useCode>Single Family</useCode>
35
+ <lotSizeSqFt>20000</lotSizeSqFt>
36
+ <finishedSqFt>7380</finishedSqFt>
37
+ <bathrooms>5.0</bathrooms>
38
+ <bedrooms>6</bedrooms>
39
+ </property>
40
+ <images>
41
+ <count>1</count>
42
+ </images>
43
+ <price>4500000</price>
44
+ </result>
45
+ <result>
46
+ <lastRefreshedDate>2011-08-01 00:00:00.0</lastRefreshedDate>
47
+ <property>
48
+ <zpid>92569937</zpid>
49
+ <links>
50
+ <homedetails>http://www.zillow.com/homedetails/900-Summit-Ave-E-APT-401-Seattle-WA-98102/92569937_zpid/</homedetails>
51
+ </links>
52
+ <address>
53
+ <street>900 Summit Ave E APT 401</street>
54
+ <zipcode>98102</zipcode>
55
+ <city>Seattle</city>
56
+ <state>WA</state>
57
+ <latitude>47.626754</latitude>
58
+ <longitude>-122.325387</longitude>
59
+ </address>
60
+ <useCode>Condo</useCode>
61
+ <lotSizeSqFt>9646</lotSizeSqFt>
62
+ <finishedSqFt>795</finishedSqFt>
63
+ <bathrooms>1.75</bathrooms>
64
+ <bedrooms>2</bedrooms>
65
+ </property>
66
+ <images>
67
+ <count>0</count>
68
+ </images>
69
+ <price>285000</price>
70
+ </result>
71
+ <result>
72
+ <lastRefreshedDate>2011-07-18 00:00:00.0</lastRefreshedDate>
73
+ <property>
74
+ <zpid>49006558</zpid>
75
+ <links>
76
+ <homedetails>http://www.zillow.com/homedetails/1602-E-Lynn-St-Seattle-WA-98112/49006558_zpid/</homedetails>
77
+ </links>
78
+ <address>
79
+ <street>1602 E Lynn St</street>
80
+ <zipcode>98112</zipcode>
81
+ <city>Seattle</city>
82
+ <state>WA</state>
83
+ <latitude>47.639711</latitude>
84
+ <longitude>-122.310462</longitude>
85
+ </address>
86
+ <useCode>Single Family</useCode>
87
+ <lotSizeSqFt>2730</lotSizeSqFt>
88
+ <finishedSqFt>2560</finishedSqFt>
89
+ <bathrooms>2.0</bathrooms>
90
+ <bedrooms>3</bedrooms>
91
+ </property>
92
+ <images>
93
+ <count>0</count>
94
+ </images>
95
+ <price>995000</price>
96
+ </result>
97
+ <result>
98
+ <lastRefreshedDate>2011-05-30 00:00:00.0</lastRefreshedDate>
99
+ <property>
100
+ <zpid>48886613</zpid>
101
+ <links>
102
+ <homedetails>http://www.zillow.com/homedetails/530-Melrose-Ave-E-APT-408-Seattle-WA-98102/48886613_zpid/</homedetails>
103
+ </links>
104
+ <address>
105
+ <street>530 Melrose Ave E APT 408</street>
106
+ <zipcode>98102</zipcode>
107
+ <city>Seattle</city>
108
+ <state>WA</state>
109
+ <latitude>47.624036</latitude>
110
+ <longitude>-122.327514</longitude>
111
+ </address>
112
+ <useCode>Single Family</useCode>
113
+ <lotSizeSqFt>14407</lotSizeSqFt>
114
+ <finishedSqFt>682</finishedSqFt>
115
+ <bathrooms>1.75</bathrooms>
116
+ <bedrooms>2</bedrooms>
117
+ </property>
118
+ <images>
119
+ <count>6</count>
120
+ </images>
121
+ <price>240000</price>
122
+ </result>
123
+ <result>
124
+ <lastRefreshedDate>2011-05-23 00:00:00.0</lastRefreshedDate>
125
+ <property>
126
+ <zpid>61766228</zpid>
127
+ <links>
128
+ <homedetails>http://www.zillow.com/homedetails/2325-Franklin-Ave-E-A-Seattle-WA-98102/61766228_zpid/</homedetails>
129
+ </links>
130
+ <address>
131
+ <street>2325 Franklin Ave E # A</street>
132
+ <zipcode>98102</zipcode>
133
+ <city>Seattle</city>
134
+ <state>WA</state>
135
+ <latitude>47.640437</latitude>
136
+ <longitude>-122.325137</longitude>
137
+ </address>
138
+ <useCode>Single Family</useCode>
139
+ <lotSizeSqFt>1019</lotSizeSqFt>
140
+ <finishedSqFt>711</finishedSqFt>
141
+ <bathrooms>2.0</bathrooms>
142
+ <bedrooms>2</bedrooms>
143
+ </property>
144
+ <images>
145
+ <count>6</count>
146
+ </images>
147
+ <price>329000</price>
148
+ </result>
149
+ <result>
150
+ <lastRefreshedDate>2011-05-12 00:00:00.0</lastRefreshedDate>
151
+ <property>
152
+ <zpid>88876465</zpid>
153
+ <links>
154
+ <homedetails>http://www.zillow.com/homedetails/752-Bellevue-Ave-E-APT-302-Seattle-WA-98102/88876465_zpid/</homedetails>
155
+ </links>
156
+ <address>
157
+ <street>752 Bellevue Ave E APT 302</street>
158
+ <zipcode>98102</zipcode>
159
+ <city>Seattle</city>
160
+ <state>WA</state>
161
+ <latitude>47.626732</latitude>
162
+ <longitude>-122.326372</longitude>
163
+ </address>
164
+ <useCode>Condo</useCode>
165
+ <lotSizeSqFt>15360</lotSizeSqFt>
166
+ <finishedSqFt>448</finishedSqFt>
167
+ <bathrooms>1.0</bathrooms>
168
+ <bedrooms>1</bedrooms>
169
+ </property>
170
+ <images>
171
+ <count>0</count>
172
+ </images>
173
+ <price>223000</price>
174
+ </result>
175
+ <result>
176
+ <lastRefreshedDate>2011-05-09 00:00:00.0</lastRefreshedDate>
177
+ <property>
178
+ <zpid>48771130</zpid>
179
+ <links>
180
+ <homedetails>http://www.zillow.com/homedetails/220-E-Edgar-St-Seattle-WA-98102/48771130_zpid/</homedetails>
181
+ </links>
182
+ <address>
183
+ <street>220 E Edgar St</street>
184
+ <zipcode>98102</zipcode>
185
+ <city>Seattle</city>
186
+ <state>WA</state>
187
+ <latitude>47.64466</latitude>
188
+ <longitude>-122.324897</longitude>
189
+ </address>
190
+ <useCode>Single Family</useCode>
191
+ <lotSizeSqFt>3000</lotSizeSqFt>
192
+ <finishedSqFt>1250</finishedSqFt>
193
+ <bathrooms>1.75</bathrooms>
194
+ <bedrooms>3</bedrooms>
195
+ </property>
196
+ <images>
197
+ <count>0</count>
198
+ </images>
199
+ <price>650000</price>
200
+ </result>
201
+ <result>
202
+ <lastRefreshedDate>2011-04-20 00:00:00.0</lastRefreshedDate>
203
+ <property>
204
+ <zpid>48919632</zpid>
205
+ <links>
206
+ <homedetails>http://www.zillow.com/homedetails/3906-Wallingford-Ave-N-Seattle-WA-98103/48919632_zpid/</homedetails>
207
+ </links>
208
+ <address>
209
+ <street>3906 Wallingford Ave N</street>
210
+ <zipcode>98103</zipcode>
211
+ <city>Seattle</city>
212
+ <state>WA</state>
213
+ <latitude>47.654607</latitude>
214
+ <longitude>-122.335983</longitude>
215
+ </address>
216
+ <useCode>Single Family</useCode>
217
+ <lotSizeSqFt>3900</lotSizeSqFt>
218
+ <finishedSqFt>2517</finishedSqFt>
219
+ <bathrooms>2.5</bathrooms>
220
+ <bedrooms>5</bedrooms>
221
+ </property>
222
+ <images>
223
+ <count>1</count>
224
+ </images>
225
+ <price>650000</price>
226
+ </result>
227
+ <result>
228
+ <lastRefreshedDate>2011-02-17 00:00:00.0</lastRefreshedDate>
229
+ <property>
230
+ <zpid>48859867</zpid>
231
+ <links>
232
+ <homedetails>http://www.zillow.com/homedetails/525-Belmont-Ave-E-APT-7F-Seattle-WA-98102/48859867_zpid/</homedetails>
233
+ </links>
234
+ <address>
235
+ <street>525 Belmont Ave E APT 7F</street>
236
+ <zipcode>98102</zipcode>
237
+ <city>Seattle</city>
238
+ <state>WA</state>
239
+ <latitude>47.623963</latitude>
240
+ <longitude>-122.3244</longitude>
241
+ </address>
242
+ <useCode>Condo</useCode>
243
+ <lotSizeSqFt>21590</lotSizeSqFt>
244
+ <finishedSqFt>961</finishedSqFt>
245
+ <bathrooms>1.75</bathrooms>
246
+ <bedrooms>2</bedrooms>
247
+ </property>
248
+ <images>
249
+ <count>0</count>
250
+ </images>
251
+ <price>750000</price>
252
+ </result>
253
+ <result>
254
+ <lastRefreshedDate>2011-01-30 00:00:00.0</lastRefreshedDate>
255
+ <property>
256
+ <zpid>84756834</zpid>
257
+ <links>
258
+ <homedetails>http://www.zillow.com/homedetails/739-Harvard-Ave-E-B-Seattle-WA-98102/84756834_zpid/</homedetails>
259
+ </links>
260
+ <address>
261
+ <street>739 Harvard Ave E # B</street>
262
+ <zipcode>98102</zipcode>
263
+ <city>Seattle</city>
264
+ <state>WA</state>
265
+ <latitude>47.626178</latitude>
266
+ <longitude>-122.3226</longitude>
267
+ </address>
268
+ <useCode>Condo</useCode>
269
+ <lotSizeSqFt>1410</lotSizeSqFt>
270
+ <finishedSqFt>1350</finishedSqFt>
271
+ <bathrooms>2.5</bathrooms>
272
+ <bedrooms>2</bedrooms>
273
+ </property>
274
+ <images>
275
+ <count>4</count>
276
+ </images>
277
+ <price>595000</price>
278
+ </result>
279
+ <result>
280
+ <lastRefreshedDate>2010-08-03 00:00:00.0</lastRefreshedDate>
281
+ <property>
282
+ <zpid>48930312</zpid>
283
+ <links>
284
+ <homedetails>http://www.zillow.com/homedetails/330-16th-Ave-E-Seattle-WA-98112/48930312_zpid/</homedetails>
285
+ </links>
286
+ <address>
287
+ <street>330 16th Ave E</street>
288
+ <zipcode>98112</zipcode>
289
+ <city>Seattle</city>
290
+ <state>WA</state>
291
+ <latitude>47.621511</latitude>
292
+ <longitude>-122.310985</longitude>
293
+ </address>
294
+ <useCode>Single Family</useCode>
295
+ <lotSizeSqFt>3840</lotSizeSqFt>
296
+ <finishedSqFt>2500</finishedSqFt>
297
+ <bathrooms>3.0</bathrooms>
298
+ <bedrooms>3</bedrooms>
299
+ </property>
300
+ <images>
301
+ <count>21</count>
302
+ </images>
303
+ <price>750000</price>
304
+ </result>
305
+ <result>
306
+ <lastRefreshedDate>2010-07-30 00:00:00.0</lastRefreshedDate>
307
+ <property>
308
+ <zpid>2130744507</zpid>
309
+ <links>
310
+ <homedetails>http://www.zillow.com/homedetails/708-11th-Ave-E-Seattle-WA-98102/2130744507_zpid/</homedetails>
311
+ </links>
312
+ <address>
313
+ <street>708 11th Ave E</street>
314
+ <zipcode>98102</zipcode>
315
+ <city>Seattle</city>
316
+ <state>WA</state>
317
+ <latitude>47.625554</latitude>
318
+ <longitude>-122.317702</longitude>
319
+ </address>
320
+ <useCode>Single Family</useCode>
321
+ <lotSizeSqFt/>
322
+ <finishedSqFt/>
323
+ <bathrooms/>
324
+ <bedrooms/>
325
+ </property>
326
+ <images>
327
+ <count>0</count>
328
+ </images>
329
+ <price>695000</price>
330
+ </result>
331
+ <result>
332
+ <lastRefreshedDate>2010-07-20 00:00:00.0</lastRefreshedDate>
333
+ <property>
334
+ <zpid>48919672</zpid>
335
+ <links>
336
+ <homedetails>http://www.zillow.com/homedetails/3811-Eastern-Ave-N-Seattle-WA-98103/48919672_zpid/</homedetails>
337
+ </links>
338
+ <address>
339
+ <street>3811 Eastern Ave N</street>
340
+ <zipcode>98103</zipcode>
341
+ <city>Seattle</city>
342
+ <state>WA</state>
343
+ <latitude>47.653476</latitude>
344
+ <longitude>-122.329444</longitude>
345
+ </address>
346
+ <useCode>Single Family</useCode>
347
+ <lotSizeSqFt>4104</lotSizeSqFt>
348
+ <finishedSqFt>2000</finishedSqFt>
349
+ <bathrooms>2.0</bathrooms>
350
+ <bedrooms>3</bedrooms>
351
+ </property>
352
+ <images>
353
+ <count>3</count>
354
+ </images>
355
+ <price>600000</price>
356
+ </result>
357
+ <result>
358
+ <lastRefreshedDate>2010-04-14 00:00:00.0</lastRefreshedDate>
359
+ <property>
360
+ <zpid>48782426</zpid>
361
+ <links>
362
+ <homedetails>http://www.zillow.com/homedetails/715-Boylston-Ave-E-E-Seattle-WA-98102/48782426_zpid/</homedetails>
363
+ </links>
364
+ <address>
365
+ <street>715 Boylston Ave E # E</street>
366
+ <zipcode>98102</zipcode>
367
+ <city>Seattle</city>
368
+ <state>WA</state>
369
+ <latitude>47.62557</latitude>
370
+ <longitude>-122.323825</longitude>
371
+ </address>
372
+ <useCode>Townhouse</useCode>
373
+ <lotSizeSqFt>1564</lotSizeSqFt>
374
+ <finishedSqFt>1515</finishedSqFt>
375
+ <bathrooms>2.75</bathrooms>
376
+ <bedrooms>3</bedrooms>
377
+ </property>
378
+ <images>
379
+ <count>0</count>
380
+ </images>
381
+ <price>749999</price>
382
+ </result>
383
+ <result>
384
+ <lastRefreshedDate>2010-04-03 00:00:00.0</lastRefreshedDate>
385
+ <property>
386
+ <zpid>48725013</zpid>
387
+ <links>
388
+ <homedetails>http://www.zillow.com/homedetails/621-16th-Ave-E-Seattle-WA-98112/48725013_zpid/</homedetails>
389
+ </links>
390
+ <address>
391
+ <street>621 16th Ave E</street>
392
+ <zipcode>98112</zipcode>
393
+ <city>Seattle</city>
394
+ <state>WA</state>
395
+ <latitude>47.625112</latitude>
396
+ <longitude>-122.311698</longitude>
397
+ </address>
398
+ <useCode>Single Family</useCode>
399
+ <lotSizeSqFt>5160</lotSizeSqFt>
400
+ <finishedSqFt>2750</finishedSqFt>
401
+ <bathrooms>1.75</bathrooms>
402
+ <bedrooms>4</bedrooms>
403
+ </property>
404
+ <images>
405
+ <count>0</count>
406
+ </images>
407
+ <price>1000000</price>
408
+ </result>
409
+ <result>
410
+ <lastRefreshedDate>2010-03-16 00:00:00.0</lastRefreshedDate>
411
+ <property>
412
+ <zpid>84757716</zpid>
413
+ <links>
414
+ <homedetails>http://www.zillow.com/homedetails/1911-N-35th-St-A-Seattle-WA-98103/84757716_zpid/</homedetails>
415
+ </links>
416
+ <address>
417
+ <street>1911 N 35th St # A</street>
418
+ <zipcode>98103</zipcode>
419
+ <city>Seattle</city>
420
+ <state>WA</state>
421
+ <latitude>47.648917</latitude>
422
+ <longitude>-122.334602</longitude>
423
+ </address>
424
+ <useCode>Townhouse</useCode>
425
+ <lotSizeSqFt>1000</lotSizeSqFt>
426
+ <finishedSqFt>960</finishedSqFt>
427
+ <bathrooms>1.5</bathrooms>
428
+ <bedrooms>2</bedrooms>
429
+ </property>
430
+ <images>
431
+ <count>0</count>
432
+ </images>
433
+ <price>410000</price>
434
+ </result>
435
+ <result>
436
+ <lastRefreshedDate>2010-02-19 00:00:00.0</lastRefreshedDate>
437
+ <property>
438
+ <zpid>70580704</zpid>
439
+ <links>
440
+ <homedetails>http://www.zillow.com/homedetails/416-11th-Ave-E-APT-A-Seattle-WA-98102/70580704_zpid/</homedetails>
441
+ </links>
442
+ <address>
443
+ <street>416 11th Ave E APT A</street>
444
+ <zipcode>98102</zipcode>
445
+ <city>Seattle</city>
446
+ <state>WA</state>
447
+ <latitude>47.622405</latitude>
448
+ <longitude>-122.31739</longitude>
449
+ </address>
450
+ <useCode>Townhouse</useCode>
451
+ <lotSizeSqFt>1082</lotSizeSqFt>
452
+ <finishedSqFt>1435</finishedSqFt>
453
+ <bathrooms>2.5</bathrooms>
454
+ <bedrooms>3</bedrooms>
455
+ </property>
456
+ <images>
457
+ <count>6</count>
458
+ </images>
459
+ <price>525000</price>
460
+ </result>
461
+ <result>
462
+ <lastRefreshedDate>2009-12-28 00:00:00.0</lastRefreshedDate>
463
+ <property>
464
+ <zpid>59699585</zpid>
465
+ <links>
466
+ <homedetails>http://www.zillow.com/homedetails/2035-Eastlake-Ave-E-APT-104-Seattle-WA-98102/59699585_zpid/</homedetails>
467
+ </links>
468
+ <address>
469
+ <street>2035 Eastlake Ave E APT 104</street>
470
+ <zipcode>98102</zipcode>
471
+ <city>Seattle</city>
472
+ <state>WA</state>
473
+ <latitude>47.637873</latitude>
474
+ <longitude>-122.326256</longitude>
475
+ </address>
476
+ <useCode>Condo</useCode>
477
+ <lotSizeSqFt>9528</lotSizeSqFt>
478
+ <finishedSqFt>954</finishedSqFt>
479
+ <bathrooms>1.75</bathrooms>
480
+ <bedrooms>2</bedrooms>
481
+ </property>
482
+ <images>
483
+ <count>0</count>
484
+ </images>
485
+ <price>430000</price>
486
+ </result>
487
+ <result>
488
+ <lastRefreshedDate>2009-12-27 00:00:00.0</lastRefreshedDate>
489
+ <property>
490
+ <zpid>49095485</zpid>
491
+ <links>
492
+ <homedetails>http://www.zillow.com/homedetails/630-13th-Ave-E-APT-5-Seattle-WA-98102/49095485_zpid/</homedetails>
493
+ </links>
494
+ <address>
495
+ <street>630 13th Ave E APT 5</street>
496
+ <zipcode>98102</zipcode>
497
+ <city>Seattle</city>
498
+ <state>WA</state>
499
+ <latitude>47.625213</latitude>
500
+ <longitude>-122.315384</longitude>
501
+ </address>
502
+ <useCode>Condo</useCode>
503
+ <lotSizeSqFt>10016</lotSizeSqFt>
504
+ <finishedSqFt>744</finishedSqFt>
505
+ <bathrooms>1.0</bathrooms>
506
+ <bedrooms>1</bedrooms>
507
+ </property>
508
+ <images>
509
+ <count>0</count>
510
+ </images>
511
+ <price>289000</price>
512
+ </result>
513
+ <result>
514
+ <lastRefreshedDate>2009-12-04 00:00:00.0</lastRefreshedDate>
515
+ <property>
516
+ <zpid>48725262</zpid>
517
+ <links>
518
+ <homedetails>http://www.zillow.com/homedetails/1150-16th-Ave-E-Seattle-WA-98112/48725262_zpid/</homedetails>
519
+ </links>
520
+ <address>
521
+ <street>1150 16th Ave E</street>
522
+ <zipcode>98112</zipcode>
523
+ <city>Seattle</city>
524
+ <state>WA</state>
525
+ <latitude>47.630164</latitude>
526
+ <longitude>-122.310859</longitude>
527
+ </address>
528
+ <useCode>Single Family</useCode>
529
+ <lotSizeSqFt>4800</lotSizeSqFt>
530
+ <finishedSqFt>1440</finishedSqFt>
531
+ <bathrooms>2.5</bathrooms>
532
+ <bedrooms>3</bedrooms>
533
+ </property>
534
+ <images>
535
+ <count>0</count>
536
+ </images>
537
+ <price>1100000</price>
538
+ </result>
539
+ <result>
540
+ <lastRefreshedDate>2009-11-11 00:00:00.0</lastRefreshedDate>
541
+ <property>
542
+ <zpid>48725289</zpid>
543
+ <links>
544
+ <homedetails>http://www.zillow.com/homedetails/1138-15th-Ave-E-Seattle-WA-98112/48725289_zpid/</homedetails>
545
+ </links>
546
+ <address>
547
+ <street>1138 15th Ave E</street>
548
+ <zipcode>98112</zipcode>
549
+ <city>Seattle</city>
550
+ <state>WA</state>
551
+ <latitude>47.629844</latitude>
552
+ <longitude>-122.312171</longitude>
553
+ </address>
554
+ <useCode>Single Family</useCode>
555
+ <lotSizeSqFt>4640</lotSizeSqFt>
556
+ <finishedSqFt>1825</finishedSqFt>
557
+ <bathrooms>3.0</bathrooms>
558
+ <bedrooms>3</bedrooms>
559
+ </property>
560
+ <images>
561
+ <count>0</count>
562
+ </images>
563
+ <price>825000</price>
564
+ </result>
565
+ <result>
566
+ <lastRefreshedDate>2009-10-23 00:00:00.0</lastRefreshedDate>
567
+ <property>
568
+ <zpid>2135954370</zpid>
569
+ <links>
570
+ <homedetails>http://www.zillow.com/homedetails/320-Melrose-Ave-E-APT-405-Seattle-WA-98102/2135954370_zpid/</homedetails>
571
+ </links>
572
+ <address>
573
+ <street>320 Melrose Ave E APT 405</street>
574
+ <zipcode>98102</zipcode>
575
+ <city>Seattle</city>
576
+ <state>WA</state>
577
+ <latitude>47.621344</latitude>
578
+ <longitude>-122.327719</longitude>
579
+ </address>
580
+ <useCode>Condo</useCode>
581
+ <lotSizeSqFt>1095</lotSizeSqFt>
582
+ <finishedSqFt>1095</finishedSqFt>
583
+ <bathrooms>2.0</bathrooms>
584
+ <bedrooms>2</bedrooms>
585
+ </property>
586
+ <images>
587
+ <count>0</count>
588
+ </images>
589
+ <price>350000</price>
590
+ </result>
591
+ <result>
592
+ <lastRefreshedDate>2009-09-07 00:00:00.0</lastRefreshedDate>
593
+ <property>
594
+ <zpid>49004919</zpid>
595
+ <links>
596
+ <homedetails>http://www.zillow.com/homedetails/2226-Harvard-Ave-E-Seattle-WA-98102/49004919_zpid/</homedetails>
597
+ </links>
598
+ <address>
599
+ <street>2226 Harvard Ave E</street>
600
+ <zipcode>98102</zipcode>
601
+ <city>Seattle</city>
602
+ <state>WA</state>
603
+ <latitude>47.63918</latitude>
604
+ <longitude>-122.322067</longitude>
605
+ </address>
606
+ <useCode>Single Family</useCode>
607
+ <lotSizeSqFt>3598</lotSizeSqFt>
608
+ <finishedSqFt>2990</finishedSqFt>
609
+ <bathrooms>2.5</bathrooms>
610
+ <bedrooms>3</bedrooms>
611
+ </property>
612
+ <images>
613
+ <count>2</count>
614
+ </images>
615
+ <price>1900000</price>
616
+ </result>
617
+ <result>
618
+ <lastRefreshedDate>2009-08-14 00:00:00.0</lastRefreshedDate>
619
+ <property>
620
+ <zpid>48930237</zpid>
621
+ <links>
622
+ <homedetails>http://www.zillow.com/homedetails/515-16th-Ave-E-A-Seattle-WA-98112/48930237_zpid/</homedetails>
623
+ </links>
624
+ <address>
625
+ <street>515 16th Ave E # A</street>
626
+ <zipcode>98112</zipcode>
627
+ <city>Seattle</city>
628
+ <state>WA</state>
629
+ <latitude>47.623752</latitude>
630
+ <longitude>-122.311839</longitude>
631
+ </address>
632
+ <useCode>Condo</useCode>
633
+ <lotSizeSqFt>1335</lotSizeSqFt>
634
+ <finishedSqFt>1650</finishedSqFt>
635
+ <bathrooms>3.5</bathrooms>
636
+ <bedrooms>3</bedrooms>
637
+ </property>
638
+ <images>
639
+ <count>0</count>
640
+ </images>
641
+ <price>650000</price>
642
+ </result>
643
+ <result>
644
+ <lastRefreshedDate>2009-08-06 00:00:00.0</lastRefreshedDate>
645
+ <property>
646
+ <zpid>49011397</zpid>
647
+ <links>
648
+ <homedetails>http://www.zillow.com/homedetails/428-10th-Ave-E-Seattle-WA-98102/49011397_zpid/</homedetails>
649
+ </links>
650
+ <address>
651
+ <street>428 10th Ave E</street>
652
+ <zipcode>98102</zipcode>
653
+ <city>Seattle</city>
654
+ <state>WA</state>
655
+ <latitude>47.622837</latitude>
656
+ <longitude>-122.319591</longitude>
657
+ </address>
658
+ <useCode>Multi Family</useCode>
659
+ <lotSizeSqFt>3000</lotSizeSqFt>
660
+ <finishedSqFt>2080</finishedSqFt>
661
+ <bathrooms>3.5</bathrooms>
662
+ <bedrooms>5</bedrooms>
663
+ </property>
664
+ <images>
665
+ <count>0</count>
666
+ </images>
667
+ <price>777777</price>
668
+ </result>
669
+ <result>
670
+ <lastRefreshedDate>2009-06-08 00:00:00.0</lastRefreshedDate>
671
+ <property>
672
+ <zpid>83227653</zpid>
673
+ <links>
674
+ <homedetails>http://www.zillow.com/homedetails/601-14th-Ave-E-APT-302-Seattle-WA-98112/83227653_zpid/</homedetails>
675
+ </links>
676
+ <address>
677
+ <street>601 14th Ave E APT 302</street>
678
+ <zipcode>98112</zipcode>
679
+ <city>Seattle</city>
680
+ <state>WA</state>
681
+ <latitude>47.624419</latitude>
682
+ <longitude>-122.314814</longitude>
683
+ </address>
684
+ <useCode>Condo</useCode>
685
+ <lotSizeSqFt>12038</lotSizeSqFt>
686
+ <finishedSqFt>590</finishedSqFt>
687
+ <bathrooms>1.0</bathrooms>
688
+ <bedrooms>1</bedrooms>
689
+ </property>
690
+ <images>
691
+ <count>0</count>
692
+ </images>
693
+ <price>300000</price>
694
+ </result>
695
+ <result>
696
+ <lastRefreshedDate>2009-05-26 00:00:00.0</lastRefreshedDate>
697
+ <property>
698
+ <zpid>72497236</zpid>
699
+ <links>
700
+ <homedetails>http://www.zillow.com/homedetails/124-Bellevue-Ave-E-UNIT-601-Seattle-WA-98102/72497236_zpid/</homedetails>
701
+ </links>
702
+ <address>
703
+ <street>124 Bellevue Ave E UNIT 601</street>
704
+ <zipcode>98102</zipcode>
705
+ <city>Seattle</city>
706
+ <state>WA</state>
707
+ <latitude>47.61952</latitude>
708
+ <longitude>-122.326257</longitude>
709
+ </address>
710
+ <useCode>Condo</useCode>
711
+ <lotSizeSqFt>10269</lotSizeSqFt>
712
+ <finishedSqFt>762</finishedSqFt>
713
+ <bathrooms>1.0</bathrooms>
714
+ <bedrooms>1</bedrooms>
715
+ </property>
716
+ <images>
717
+ <count>1</count>
718
+ </images>
719
+ <price>350000</price>
720
+ </result>
721
+ <result>
722
+ <lastRefreshedDate>2009-05-03 00:00:00.0</lastRefreshedDate>
723
+ <property>
724
+ <zpid>48725336</zpid>
725
+ <links>
726
+ <homedetails>http://www.zillow.com/homedetails/1224-16th-Ave-E-Seattle-WA-98112/48725336_zpid/</homedetails>
727
+ </links>
728
+ <address>
729
+ <street>1224 16th Ave E</street>
730
+ <zipcode>98112</zipcode>
731
+ <city>Seattle</city>
732
+ <state>WA</state>
733
+ <latitude>47.631421</latitude>
734
+ <longitude>-122.310844</longitude>
735
+ </address>
736
+ <useCode>Single Family</useCode>
737
+ <lotSizeSqFt>4800</lotSizeSqFt>
738
+ <finishedSqFt>2500</finishedSqFt>
739
+ <bathrooms>2.5</bathrooms>
740
+ <bedrooms>4</bedrooms>
741
+ </property>
742
+ <images>
743
+ <count>0</count>
744
+ </images>
745
+ <price>1100000</price>
746
+ </result>
747
+ <result>
748
+ <lastRefreshedDate>2009-04-21 00:00:00.0</lastRefreshedDate>
749
+ <property>
750
+ <zpid>48771114</zpid>
751
+ <links>
752
+ <homedetails>http://www.zillow.com/homedetails/2706-Harvard-Ave-E-Seattle-WA-98102/48771114_zpid/</homedetails>
753
+ </links>
754
+ <address>
755
+ <street>2706 Harvard Ave E</street>
756
+ <zipcode>98102</zipcode>
757
+ <city>Seattle</city>
758
+ <state>WA</state>
759
+ <latitude>47.644725</latitude>
760
+ <longitude>-122.321735</longitude>
761
+ </address>
762
+ <useCode>Single Family</useCode>
763
+ <lotSizeSqFt>6500</lotSizeSqFt>
764
+ <finishedSqFt>5800</finishedSqFt>
765
+ <bathrooms>4.0</bathrooms>
766
+ <bedrooms>5</bedrooms>
767
+ </property>
768
+ <images>
769
+ <count>0</count>
770
+ </images>
771
+ <price>1650000</price>
772
+ </result>
773
+ <result>
774
+ <lastRefreshedDate>2009-03-16 00:00:00.0</lastRefreshedDate>
775
+ <property>
776
+ <zpid>48745076</zpid>
777
+ <links>
778
+ <homedetails>http://www.zillow.com/homedetails/3429-Burke-Ave-N-APT-33-Seattle-WA-98103/48745076_zpid/</homedetails>
779
+ </links>
780
+ <address>
781
+ <street>3429 Burke Ave N APT 33</street>
782
+ <zipcode>98103</zipcode>
783
+ <city>Seattle</city>
784
+ <state>WA</state>
785
+ <latitude>47.648863</latitude>
786
+ <longitude>-122.335511</longitude>
787
+ </address>
788
+ <useCode>Condo</useCode>
789
+ <lotSizeSqFt>6840</lotSizeSqFt>
790
+ <finishedSqFt>660</finishedSqFt>
791
+ <bathrooms>1.0</bathrooms>
792
+ <bedrooms>1</bedrooms>
793
+ </property>
794
+ <images>
795
+ <count>0</count>
796
+ </images>
797
+ <price>275000</price>
798
+ </result>
799
+ <result>
800
+ <lastRefreshedDate>2008-12-23 00:00:00.0</lastRefreshedDate>
801
+ <property>
802
+ <zpid>63925700</zpid>
803
+ <links>
804
+ <homedetails>http://www.zillow.com/homedetails/700-E-Denny-Way-APT-507-Seattle-WA-98122/63925700_zpid/</homedetails>
805
+ </links>
806
+ <address>
807
+ <street>700 E Denny Way APT 507</street>
808
+ <zipcode>98122</zipcode>
809
+ <city>Seattle</city>
810
+ <state>WA</state>
811
+ <latitude>47.618706</latitude>
812
+ <longitude>-122.322417</longitude>
813
+ </address>
814
+ <useCode>Condo</useCode>
815
+ <lotSizeSqFt>16137</lotSizeSqFt>
816
+ <finishedSqFt>1010</finishedSqFt>
817
+ <bathrooms>2.0</bathrooms>
818
+ <bedrooms>2</bedrooms>
819
+ </property>
820
+ <images>
821
+ <count>1</count>
822
+ </images>
823
+ <price>400000</price>
824
+ </result>
825
+ <result>
826
+ <lastRefreshedDate>2008-10-14 00:00:00.0</lastRefreshedDate>
827
+ <property>
828
+ <zpid>48724918</zpid>
829
+ <links>
830
+ <homedetails>http://www.zillow.com/homedetails/712-11th-Ave-E-Seattle-WA-98102/48724918_zpid/</homedetails>
831
+ </links>
832
+ <address>
833
+ <street>712 11th Ave E</street>
834
+ <zipcode>98102</zipcode>
835
+ <city>Seattle</city>
836
+ <state>WA</state>
837
+ <latitude>47.625691</latitude>
838
+ <longitude>-122.317699</longitude>
839
+ </address>
840
+ <useCode>Multi Family</useCode>
841
+ <lotSizeSqFt>5850</lotSizeSqFt>
842
+ <finishedSqFt>4100</finishedSqFt>
843
+ <bathrooms>6.5</bathrooms>
844
+ <bedrooms>7</bedrooms>
845
+ </property>
846
+ <images>
847
+ <count>0</count>
848
+ </images>
849
+ <price>1089000</price>
850
+ </result>
851
+ <result>
852
+ <lastRefreshedDate>2008-10-12 00:00:00.0</lastRefreshedDate>
853
+ <property>
854
+ <zpid>49040305</zpid>
855
+ <links>
856
+ <homedetails>http://www.zillow.com/homedetails/400-Melrose-Ave-E-APT-204-Seattle-WA-98102/49040305_zpid/</homedetails>
857
+ </links>
858
+ <address>
859
+ <street>400 Melrose Ave E APT 204</street>
860
+ <zipcode>98102</zipcode>
861
+ <city>Seattle</city>
862
+ <state>WA</state>
863
+ <latitude>47.622309</latitude>
864
+ <longitude>-122.327504</longitude>
865
+ </address>
866
+ <useCode>Condo</useCode>
867
+ <lotSizeSqFt>21600</lotSizeSqFt>
868
+ <finishedSqFt>780</finishedSqFt>
869
+ <bathrooms>1.0</bathrooms>
870
+ <bedrooms>1</bedrooms>
871
+ </property>
872
+ <images>
873
+ <count>0</count>
874
+ </images>
875
+ <price>280000</price>
876
+ </result>
877
+ <result>
878
+ <lastRefreshedDate>2008-10-02 00:00:00.0</lastRefreshedDate>
879
+ <property>
880
+ <zpid>49099377</zpid>
881
+ <links>
882
+ <homedetails>http://www.zillow.com/homedetails/2228-Yale-Ave-E-APT-34-Seattle-WA-98102/49099377_zpid/</homedetails>
883
+ </links>
884
+ <address>
885
+ <street>2228 Yale Ave E APT 34</street>
886
+ <zipcode>98102</zipcode>
887
+ <city>Seattle</city>
888
+ <state>WA</state>
889
+ <latitude>47.639015</latitude>
890
+ <longitude>-122.326765</longitude>
891
+ </address>
892
+ <useCode>Condo</useCode>
893
+ <lotSizeSqFt>6600</lotSizeSqFt>
894
+ <finishedSqFt>408</finishedSqFt>
895
+ <bathrooms>1.0</bathrooms>
896
+ <bedrooms/>
897
+ </property>
898
+ <images>
899
+ <count>0</count>
900
+ </images>
901
+ <price>300000</price>
902
+ </result>
903
+ <result>
904
+ <lastRefreshedDate>2008-09-30 00:00:00.0</lastRefreshedDate>
905
+ <property>
906
+ <zpid>48725165</zpid>
907
+ <links>
908
+ <homedetails>http://www.zillow.com/homedetails/1431-E-Ward-St-Seattle-WA-98112/48725165_zpid/</homedetails>
909
+ </links>
910
+ <address>
911
+ <street>1431 E Ward St</street>
912
+ <zipcode>98112</zipcode>
913
+ <city>Seattle</city>
914
+ <state>WA</state>
915
+ <latitude>47.627422</latitude>
916
+ <longitude>-122.313224</longitude>
917
+ </address>
918
+ <useCode>Single Family</useCode>
919
+ <lotSizeSqFt>5610</lotSizeSqFt>
920
+ <finishedSqFt>4700</finishedSqFt>
921
+ <bathrooms>3.5</bathrooms>
922
+ <bedrooms>4</bedrooms>
923
+ </property>
924
+ <images>
925
+ <count>10</count>
926
+ </images>
927
+ <price>2950000</price>
928
+ </result>
929
+ <result>
930
+ <lastRefreshedDate>2008-08-26 00:00:00.0</lastRefreshedDate>
931
+ <property>
932
+ <zpid>48826206</zpid>
933
+ <links>
934
+ <homedetails>http://www.zillow.com/homedetails/411-Boylston-Ave-E-APT-308-Seattle-WA-98102/48826206_zpid/</homedetails>
935
+ </links>
936
+ <address>
937
+ <street>411 Boylston Ave E APT 308</street>
938
+ <zipcode>98102</zipcode>
939
+ <city>Seattle</city>
940
+ <state>WA</state>
941
+ <latitude>47.622422</latitude>
942
+ <longitude>-122.323361</longitude>
943
+ </address>
944
+ <useCode>Condo</useCode>
945
+ <lotSizeSqFt>8740</lotSizeSqFt>
946
+ <finishedSqFt>770</finishedSqFt>
947
+ <bathrooms>1.0</bathrooms>
948
+ <bedrooms>1</bedrooms>
949
+ </property>
950
+ <images>
951
+ <count>0</count>
952
+ </images>
953
+ <price>350000</price>
954
+ </result>
955
+ <result>
956
+ <lastRefreshedDate>2008-08-08 00:00:00.0</lastRefreshedDate>
957
+ <property>
958
+ <zpid>65230416</zpid>
959
+ <links>
960
+ <homedetails>http://www.zillow.com/homedetails/321-E-Thomas-St-APT-402-Seattle-WA-98102/65230416_zpid/</homedetails>
961
+ </links>
962
+ <address>
963
+ <street>321 E Thomas St APT 402</street>
964
+ <zipcode>98102</zipcode>
965
+ <city>Seattle</city>
966
+ <state>WA</state>
967
+ <latitude>47.620665</latitude>
968
+ <longitude>-122.326874</longitude>
969
+ </address>
970
+ <useCode>Condo</useCode>
971
+ <lotSizeSqFt>5160</lotSizeSqFt>
972
+ <finishedSqFt>817</finishedSqFt>
973
+ <bathrooms>1.0</bathrooms>
974
+ <bedrooms>2</bedrooms>
975
+ </property>
976
+ <images>
977
+ <count>9</count>
978
+ </images>
979
+ <price>380000</price>
980
+ </result>
981
+ <result>
982
+ <lastRefreshedDate>2008-08-04 00:00:00.0</lastRefreshedDate>
983
+ <property>
984
+ <zpid>48771238</zpid>
985
+ <links>
986
+ <homedetails>http://www.zillow.com/homedetails/874-E-Gwinn-Pl-Seattle-WA-98102/48771238_zpid/</homedetails>
987
+ </links>
988
+ <address>
989
+ <street>874 E Gwinn Pl</street>
990
+ <zipcode>98102</zipcode>
991
+ <city>Seattle</city>
992
+ <state>WA</state>
993
+ <latitude>47.64809</latitude>
994
+ <longitude>-122.318904</longitude>
995
+ </address>
996
+ <useCode>Single Family</useCode>
997
+ <lotSizeSqFt>4800</lotSizeSqFt>
998
+ <finishedSqFt>1980</finishedSqFt>
999
+ <bathrooms>1.75</bathrooms>
1000
+ <bedrooms>4</bedrooms>
1001
+ </property>
1002
+ <images>
1003
+ <count>0</count>
1004
+ </images>
1005
+ <price>1000000</price>
1006
+ </result>
1007
+ <result>
1008
+ <lastRefreshedDate>2008-08-03 00:00:00.0</lastRefreshedDate>
1009
+ <property>
1010
+ <zpid>48835057</zpid>
1011
+ <links>
1012
+ <homedetails>http://www.zillow.com/homedetails/2037-Yale-Ave-E-Seattle-WA-98102/48835057_zpid/</homedetails>
1013
+ </links>
1014
+ <address>
1015
+ <street>2037 Yale Ave E</street>
1016
+ <zipcode>98102</zipcode>
1017
+ <city>Seattle</city>
1018
+ <state>WA</state>
1019
+ <latitude>47.637845</latitude>
1020
+ <longitude>-122.32746</longitude>
1021
+ </address>
1022
+ <useCode>Multi Family</useCode>
1023
+ <lotSizeSqFt>4400</lotSizeSqFt>
1024
+ <finishedSqFt>2600</finishedSqFt>
1025
+ <bathrooms>2.0</bathrooms>
1026
+ <bedrooms>4</bedrooms>
1027
+ </property>
1028
+ <images>
1029
+ <count>0</count>
1030
+ </images>
1031
+ <price>997000</price>
1032
+ </result>
1033
+ <result>
1034
+ <lastRefreshedDate>2008-07-23 00:00:00.0</lastRefreshedDate>
1035
+ <property>
1036
+ <zpid>48920005</zpid>
1037
+ <links>
1038
+ <homedetails>http://www.zillow.com/homedetails/3621-Bagley-Ave-N-Seattle-WA-98103/48920005_zpid/</homedetails>
1039
+ </links>
1040
+ <address>
1041
+ <street>3621 Bagley Ave N</street>
1042
+ <zipcode>98103</zipcode>
1043
+ <city>Seattle</city>
1044
+ <state>WA</state>
1045
+ <latitude>47.65113</latitude>
1046
+ <longitude>-122.333053</longitude>
1047
+ </address>
1048
+ <useCode>Single Family</useCode>
1049
+ <lotSizeSqFt>4104</lotSizeSqFt>
1050
+ <finishedSqFt>1580</finishedSqFt>
1051
+ <bathrooms>2.0</bathrooms>
1052
+ <bedrooms>4</bedrooms>
1053
+ </property>
1054
+ <images>
1055
+ <count>0</count>
1056
+ </images>
1057
+ <price>1200000</price>
1058
+ </result>
1059
+ <result>
1060
+ <lastRefreshedDate>2008-05-20 00:00:00.0</lastRefreshedDate>
1061
+ <property>
1062
+ <zpid>48821214</zpid>
1063
+ <links>
1064
+ <homedetails>http://www.zillow.com/homedetails/516-E-Thomas-St-APT-105-Seattle-WA-98102/48821214_zpid/</homedetails>
1065
+ </links>
1066
+ <address>
1067
+ <street>516 E Thomas St APT 105</street>
1068
+ <zipcode>98102</zipcode>
1069
+ <city>Seattle</city>
1070
+ <state>WA</state>
1071
+ <latitude>47.621</latitude>
1072
+ <longitude>-122.324506</longitude>
1073
+ </address>
1074
+ <useCode>Condo</useCode>
1075
+ <lotSizeSqFt>3258</lotSizeSqFt>
1076
+ <finishedSqFt>694</finishedSqFt>
1077
+ <bathrooms>1.0</bathrooms>
1078
+ <bedrooms>2</bedrooms>
1079
+ </property>
1080
+ <images>
1081
+ <count>0</count>
1082
+ </images>
1083
+ <price>300000</price>
1084
+ </result>
1085
+ <result>
1086
+ <lastRefreshedDate>2008-04-08 00:00:00.0</lastRefreshedDate>
1087
+ <property>
1088
+ <zpid>63335457</zpid>
1089
+ <links>
1090
+ <homedetails>http://www.zillow.com/homedetails/3217-Eastlake-Ave-E-APT-402-Seattle-WA-98102/63335457_zpid/</homedetails>
1091
+ </links>
1092
+ <address>
1093
+ <street>3217 Eastlake Ave E APT 402</street>
1094
+ <zipcode>98102</zipcode>
1095
+ <city>Seattle</city>
1096
+ <state>WA</state>
1097
+ <latitude>47.651281</latitude>
1098
+ <longitude>-122.321857</longitude>
1099
+ </address>
1100
+ <useCode>Condo</useCode>
1101
+ <lotSizeSqFt>21182</lotSizeSqFt>
1102
+ <finishedSqFt>757</finishedSqFt>
1103
+ <bathrooms>1.0</bathrooms>
1104
+ <bedrooms>1</bedrooms>
1105
+ </property>
1106
+ <images>
1107
+ <count>0</count>
1108
+ </images>
1109
+ <price>375000</price>
1110
+ </result>
1111
+ <result>
1112
+ <lastRefreshedDate>2008-03-19 00:00:00.0</lastRefreshedDate>
1113
+ <property>
1114
+ <zpid>63925680</zpid>
1115
+ <links>
1116
+ <homedetails>http://www.zillow.com/homedetails/700-E-Denny-Way-APT-206-Seattle-WA-98122/63925680_zpid/</homedetails>
1117
+ </links>
1118
+ <address>
1119
+ <street>700 E Denny Way APT 206</street>
1120
+ <zipcode>98122</zipcode>
1121
+ <city>Seattle</city>
1122
+ <state>WA</state>
1123
+ <latitude>47.61885</latitude>
1124
+ <longitude>-122.32332</longitude>
1125
+ </address>
1126
+ <useCode>Condo</useCode>
1127
+ <lotSizeSqFt>16137</lotSizeSqFt>
1128
+ <finishedSqFt>502</finishedSqFt>
1129
+ <bathrooms>1.0</bathrooms>
1130
+ <bedrooms>1</bedrooms>
1131
+ </property>
1132
+ <images>
1133
+ <count>6</count>
1134
+ </images>
1135
+ <price>250000</price>
1136
+ </result>
1137
+ <result>
1138
+ <lastRefreshedDate>2008-03-17 00:00:00.0</lastRefreshedDate>
1139
+ <property>
1140
+ <zpid>48919745</zpid>
1141
+ <links>
1142
+ <homedetails>http://www.zillow.com/homedetails/1910-N-38th-St-Seattle-WA-98103/48919745_zpid/</homedetails>
1143
+ </links>
1144
+ <address>
1145
+ <street>1910 N 38th St</street>
1146
+ <zipcode>98103</zipcode>
1147
+ <city>Seattle</city>
1148
+ <state>WA</state>
1149
+ <latitude>47.653356</latitude>
1150
+ <longitude>-122.334552</longitude>
1151
+ </address>
1152
+ <useCode>Single Family</useCode>
1153
+ <lotSizeSqFt>3625</lotSizeSqFt>
1154
+ <finishedSqFt>2300</finishedSqFt>
1155
+ <bathrooms>2.75</bathrooms>
1156
+ <bedrooms>3</bedrooms>
1157
+ </property>
1158
+ <images>
1159
+ <count>2</count>
1160
+ </images>
1161
+ <price>989000</price>
1162
+ </result>
1163
+ <result>
1164
+ <lastRefreshedDate>2008-03-12 00:00:00.0</lastRefreshedDate>
1165
+ <property>
1166
+ <zpid>48771333</zpid>
1167
+ <links>
1168
+ <homedetails>http://www.zillow.com/homedetails/926-E-Shelby-St-Seattle-WA-98102/48771333_zpid/</homedetails>
1169
+ </links>
1170
+ <address>
1171
+ <street>926 E Shelby St</street>
1172
+ <zipcode>98102</zipcode>
1173
+ <city>Seattle</city>
1174
+ <state>WA</state>
1175
+ <latitude>47.647186</latitude>
1176
+ <longitude>-122.319618</longitude>
1177
+ </address>
1178
+ <useCode>Single Family</useCode>
1179
+ <lotSizeSqFt>6000</lotSizeSqFt>
1180
+ <finishedSqFt>3800</finishedSqFt>
1181
+ <bathrooms>2.0</bathrooms>
1182
+ <bedrooms>4</bedrooms>
1183
+ </property>
1184
+ <images>
1185
+ <count>1</count>
1186
+ </images>
1187
+ <price>1625000</price>
1188
+ </result>
1189
+ <result>
1190
+ <lastRefreshedDate>2008-02-25 00:00:00.0</lastRefreshedDate>
1191
+ <property>
1192
+ <zpid>49101974</zpid>
1193
+ <links>
1194
+ <homedetails>http://www.zillow.com/homedetails/2301-Fairview-Ave-E-APT-405-Seattle-WA-98102/49101974_zpid/</homedetails>
1195
+ </links>
1196
+ <address>
1197
+ <street>2301 Fairview Ave E APT 405</street>
1198
+ <zipcode>98102</zipcode>
1199
+ <city>Seattle</city>
1200
+ <state>WA</state>
1201
+ <latitude>47.640096</latitude>
1202
+ <longitude>-122.330056</longitude>
1203
+ </address>
1204
+ <useCode>Condo</useCode>
1205
+ <lotSizeSqFt>24375</lotSizeSqFt>
1206
+ <finishedSqFt>641</finishedSqFt>
1207
+ <bathrooms>1.0</bathrooms>
1208
+ <bedrooms>1</bedrooms>
1209
+ </property>
1210
+ <images>
1211
+ <count>4</count>
1212
+ </images>
1213
+ <price>420000</price>
1214
+ </result>
1215
+ <result>
1216
+ <lastRefreshedDate>2008-02-13 00:00:00.0</lastRefreshedDate>
1217
+ <property>
1218
+ <zpid>72495210</zpid>
1219
+ <links>
1220
+ <homedetails>http://www.zillow.com/homedetails/705-E-Republican-St-APT-301-Seattle-WA-98102/72495210_zpid/</homedetails>
1221
+ </links>
1222
+ <address>
1223
+ <street>705 E Republican St APT 301</street>
1224
+ <zipcode>98102</zipcode>
1225
+ <city>Seattle</city>
1226
+ <state>WA</state>
1227
+ <latitude>47.622892</latitude>
1228
+ <longitude>-122.322739</longitude>
1229
+ </address>
1230
+ <useCode>Condo</useCode>
1231
+ <lotSizeSqFt>11867</lotSizeSqFt>
1232
+ <finishedSqFt>798</finishedSqFt>
1233
+ <bathrooms>1.0</bathrooms>
1234
+ <bedrooms>2</bedrooms>
1235
+ </property>
1236
+ <images>
1237
+ <count>0</count>
1238
+ </images>
1239
+ <price>400000</price>
1240
+ </result>
1241
+ <result>
1242
+ <lastRefreshedDate>2008-01-27 00:00:00.0</lastRefreshedDate>
1243
+ <property>
1244
+ <zpid>48702199</zpid>
1245
+ <links>
1246
+ <homedetails>http://www.zillow.com/homedetails/712-E-Denny-Way-APT-601-Seattle-WA-98122/48702199_zpid/</homedetails>
1247
+ </links>
1248
+ <address>
1249
+ <street>712 E Denny Way APT 601</street>
1250
+ <zipcode>98122</zipcode>
1251
+ <city>Seattle</city>
1252
+ <state>WA</state>
1253
+ <latitude>47.619066</latitude>
1254
+ <longitude>-122.322822</longitude>
1255
+ </address>
1256
+ <useCode>Condo</useCode>
1257
+ <lotSizeSqFt>6610</lotSizeSqFt>
1258
+ <finishedSqFt>868</finishedSqFt>
1259
+ <bathrooms>1.0</bathrooms>
1260
+ <bedrooms>2</bedrooms>
1261
+ </property>
1262
+ <images>
1263
+ <count>0</count>
1264
+ </images>
1265
+ <price>499999</price>
1266
+ </result>
1267
+ <result>
1268
+ <lastRefreshedDate>2008-01-25 00:00:00.0</lastRefreshedDate>
1269
+ <property>
1270
+ <zpid>48724912</zpid>
1271
+ <links>
1272
+ <homedetails>http://www.zillow.com/homedetails/715-12th-Ave-E-Seattle-WA-98102/48724912_zpid/</homedetails>
1273
+ </links>
1274
+ <address>
1275
+ <street>715 12th Ave E</street>
1276
+ <zipcode>98102</zipcode>
1277
+ <city>Seattle</city>
1278
+ <state>WA</state>
1279
+ <latitude>47.625827</latitude>
1280
+ <longitude>-122.317176</longitude>
1281
+ </address>
1282
+ <useCode>Single Family</useCode>
1283
+ <lotSizeSqFt>5800</lotSizeSqFt>
1284
+ <finishedSqFt>3320</finishedSqFt>
1285
+ <bathrooms>4.0</bathrooms>
1286
+ <bedrooms>5</bedrooms>
1287
+ </property>
1288
+ <images>
1289
+ <count>0</count>
1290
+ </images>
1291
+ <price>1500000</price>
1292
+ </result>
1293
+ <result>
1294
+ <lastRefreshedDate>2008-01-22 00:00:00.0</lastRefreshedDate>
1295
+ <property>
1296
+ <zpid>2146701332</zpid>
1297
+ <links>
1298
+ <homedetails>http://www.zillow.com/homedetails/731-Broadway-E-APT-1-Seattle-WA-98102/2146701332_zpid/</homedetails>
1299
+ </links>
1300
+ <address>
1301
+ <street>731 Broadway E APT 1</street>
1302
+ <zipcode>98102</zipcode>
1303
+ <city>Seattle</city>
1304
+ <state>WA</state>
1305
+ <latitude>47.625792</latitude>
1306
+ <longitude>-122.321558</longitude>
1307
+ </address>
1308
+ <useCode>Condo</useCode>
1309
+ <lotSizeSqFt/>
1310
+ <finishedSqFt>720</finishedSqFt>
1311
+ <bathrooms>1.0</bathrooms>
1312
+ <bedrooms>1</bedrooms>
1313
+ </property>
1314
+ <images>
1315
+ <count>0</count>
1316
+ </images>
1317
+ <price>280000</price>
1318
+ </result>
1319
+ <result>
1320
+ <lastRefreshedDate>2008-01-22 00:00:00.0</lastRefreshedDate>
1321
+ <property>
1322
+ <zpid>67704260</zpid>
1323
+ <links>
1324
+ <homedetails>http://www.zillow.com/homedetails/103-Bellevue-Ave-E-APT-501-Seattle-WA-98102/67704260_zpid/</homedetails>
1325
+ </links>
1326
+ <address>
1327
+ <street>103 Bellevue Ave E APT 501</street>
1328
+ <zipcode>98102</zipcode>
1329
+ <city>Seattle</city>
1330
+ <state>WA</state>
1331
+ <latitude>47.618722</latitude>
1332
+ <longitude>-122.327073</longitude>
1333
+ </address>
1334
+ <useCode>Condo</useCode>
1335
+ <lotSizeSqFt>10996</lotSizeSqFt>
1336
+ <finishedSqFt>708</finishedSqFt>
1337
+ <bathrooms>1.0</bathrooms>
1338
+ <bedrooms>1</bedrooms>
1339
+ </property>
1340
+ <images>
1341
+ <count>4</count>
1342
+ </images>
1343
+ <price>392915</price>
1344
+ </result>
1345
+ <result>
1346
+ <lastRefreshedDate>2007-12-02 00:00:00.0</lastRefreshedDate>
1347
+ <property>
1348
+ <zpid>49011373</zpid>
1349
+ <links>
1350
+ <homedetails>http://www.zillow.com/homedetails/511-Federal-Ave-E-E-Seattle-WA-98102/49011373_zpid/</homedetails>
1351
+ </links>
1352
+ <address>
1353
+ <street>511 Federal Ave E # E</street>
1354
+ <zipcode>98102</zipcode>
1355
+ <city>Seattle</city>
1356
+ <state>WA</state>
1357
+ <latitude>47.623489</latitude>
1358
+ <longitude>-122.319175</longitude>
1359
+ </address>
1360
+ <useCode>Multi Family</useCode>
1361
+ <lotSizeSqFt>3000</lotSizeSqFt>
1362
+ <finishedSqFt>1920</finishedSqFt>
1363
+ <bathrooms>3.0</bathrooms>
1364
+ <bedrooms>3</bedrooms>
1365
+ </property>
1366
+ <images>
1367
+ <count>1</count>
1368
+ </images>
1369
+ <price>749950</price>
1370
+ </result>
1371
+ <result>
1372
+ <lastRefreshedDate>2007-12-01 00:00:00.0</lastRefreshedDate>
1373
+ <property>
1374
+ <zpid>49101959</zpid>
1375
+ <links>
1376
+ <homedetails>http://www.zillow.com/homedetails/2301-Fairview-Ave-E-UNIT-216-Seattle-WA-98102/49101959_zpid/</homedetails>
1377
+ </links>
1378
+ <address>
1379
+ <street>2301 Fairview Ave E UNIT 216</street>
1380
+ <zipcode>98102</zipcode>
1381
+ <city>Seattle</city>
1382
+ <state>WA</state>
1383
+ <latitude>47.63987</latitude>
1384
+ <longitude>-122.33033</longitude>
1385
+ </address>
1386
+ <useCode>Condo</useCode>
1387
+ <lotSizeSqFt>24375</lotSizeSqFt>
1388
+ <finishedSqFt>1400</finishedSqFt>
1389
+ <bathrooms>3.0</bathrooms>
1390
+ <bedrooms>2</bedrooms>
1391
+ </property>
1392
+ <images>
1393
+ <count>1</count>
1394
+ </images>
1395
+ <price>1250000</price>
1396
+ </result>
1397
+ <result>
1398
+ <lastRefreshedDate>2007-11-08 00:00:00.0</lastRefreshedDate>
1399
+ <property>
1400
+ <zpid>49101935</zpid>
1401
+ <links>
1402
+ <homedetails>http://www.zillow.com/homedetails/2301-Fairview-Ave-E-PH-3-Seattle-WA-98102/49101935_zpid/</homedetails>
1403
+ </links>
1404
+ <address>
1405
+ <street>2301 Fairview Ave E PH 3</street>
1406
+ <zipcode>98102</zipcode>
1407
+ <city>Seattle</city>
1408
+ <state>WA</state>
1409
+ <latitude>47.640098</latitude>
1410
+ <longitude>-122.330055</longitude>
1411
+ </address>
1412
+ <useCode>Condo</useCode>
1413
+ <lotSizeSqFt>24375</lotSizeSqFt>
1414
+ <finishedSqFt>1833</finishedSqFt>
1415
+ <bathrooms>2.0</bathrooms>
1416
+ <bedrooms>2</bedrooms>
1417
+ </property>
1418
+ <images>
1419
+ <count>0</count>
1420
+ </images>
1421
+ <price>2500000</price>
1422
+ </result>
1423
+ <result>
1424
+ <lastRefreshedDate>2007-10-30 00:00:00.0</lastRefreshedDate>
1425
+ <property>
1426
+ <zpid>72495335</zpid>
1427
+ <links>
1428
+ <homedetails>http://www.zillow.com/homedetails/705-E-Republican-St-APT-507-Seattle-WA-98102/72495335_zpid/</homedetails>
1429
+ </links>
1430
+ <address>
1431
+ <street>705 E Republican St APT 507</street>
1432
+ <zipcode>98102</zipcode>
1433
+ <city>Seattle</city>
1434
+ <state>WA</state>
1435
+ <latitude>47.622892</latitude>
1436
+ <longitude>-122.322739</longitude>
1437
+ </address>
1438
+ <useCode>Condo</useCode>
1439
+ <lotSizeSqFt>11867</lotSizeSqFt>
1440
+ <finishedSqFt>377</finishedSqFt>
1441
+ <bathrooms>1.0</bathrooms>
1442
+ <bedrooms/>
1443
+ </property>
1444
+ <images>
1445
+ <count>0</count>
1446
+ </images>
1447
+ <price>235000</price>
1448
+ </result>
1449
+ <result>
1450
+ <lastRefreshedDate>2007-10-29 00:00:00.0</lastRefreshedDate>
1451
+ <property>
1452
+ <zpid>2146914834</zpid>
1453
+ <links>
1454
+ <homedetails>http://www.zillow.com/homedetails/3275-Fuhrman-Ave-East-201-Seattle-WA-98102/2146914834_zpid/</homedetails>
1455
+ </links>
1456
+ <address>
1457
+ <street>3275 Fuhrman Ave. East #201</street>
1458
+ <zipcode>98102</zipcode>
1459
+ <city>Seattle</city>
1460
+ <state>WA</state>
1461
+ <latitude>47.65116</latitude>
1462
+ <longitude>-122.32119</longitude>
1463
+ </address>
1464
+ <useCode>Single Family</useCode>
1465
+ <lotSizeSqFt/>
1466
+ <finishedSqFt>936</finishedSqFt>
1467
+ <bathrooms>1.75</bathrooms>
1468
+ <bedrooms>2</bedrooms>
1469
+ </property>
1470
+ <images>
1471
+ <count>0</count>
1472
+ </images>
1473
+ <price>525000</price>
1474
+ </result>
1475
+ <result>
1476
+ <lastRefreshedDate>2007-10-26 00:00:00.0</lastRefreshedDate>
1477
+ <property>
1478
+ <zpid>48662543</zpid>
1479
+ <links>
1480
+ <homedetails>http://www.zillow.com/homedetails/511-E-Roy-St-APT-213-Seattle-WA-98102/48662543_zpid/</homedetails>
1481
+ </links>
1482
+ <address>
1483
+ <street>511 E Roy St APT 213</street>
1484
+ <zipcode>98102</zipcode>
1485
+ <city>Seattle</city>
1486
+ <state>WA</state>
1487
+ <latitude>47.624781</latitude>
1488
+ <longitude>-122.324955</longitude>
1489
+ </address>
1490
+ <useCode>Condo</useCode>
1491
+ <lotSizeSqFt>24735</lotSizeSqFt>
1492
+ <finishedSqFt>461</finishedSqFt>
1493
+ <bathrooms>0.75</bathrooms>
1494
+ <bedrooms/>
1495
+ </property>
1496
+ <images>
1497
+ <count>0</count>
1498
+ </images>
1499
+ <price>350000</price>
1500
+ </result>
1501
+ <result>
1502
+ <lastRefreshedDate>2007-10-12 00:00:00.0</lastRefreshedDate>
1503
+ <property>
1504
+ <zpid>2146920225</zpid>
1505
+ <links>
1506
+ <homedetails>http://www.zillow.com/homedetails/901-Harvard-Avenue-E-9-Seattle-WA-98102/2146920225_zpid/</homedetails>
1507
+ </links>
1508
+ <address>
1509
+ <street>901 Harvard Avenue E #9</street>
1510
+ <zipcode>98102</zipcode>
1511
+ <city>Seattle</city>
1512
+ <state>WA</state>
1513
+ <latitude>47.62699</latitude>
1514
+ <longitude>-122.32281</longitude>
1515
+ </address>
1516
+ <useCode>Townhouse</useCode>
1517
+ <lotSizeSqFt/>
1518
+ <finishedSqFt>3800</finishedSqFt>
1519
+ <bathrooms>2.25</bathrooms>
1520
+ <bedrooms>3</bedrooms>
1521
+ </property>
1522
+ <images>
1523
+ <count>0</count>
1524
+ </images>
1525
+ <price>2500000</price>
1526
+ </result>
1527
+ <result>
1528
+ <lastRefreshedDate>2007-10-12 00:00:00.0</lastRefreshedDate>
1529
+ <property>
1530
+ <zpid>48775056</zpid>
1531
+ <links>
1532
+ <homedetails>http://www.zillow.com/homedetails/2350-Yale-Ave-E-Seattle-WA-98102/48775056_zpid/</homedetails>
1533
+ </links>
1534
+ <address>
1535
+ <street>2350 Yale Ave E</street>
1536
+ <zipcode>98102</zipcode>
1537
+ <city>Seattle</city>
1538
+ <state>WA</state>
1539
+ <latitude>47.641128</latitude>
1540
+ <longitude>-122.326763</longitude>
1541
+ </address>
1542
+ <useCode>Single Family</useCode>
1543
+ <lotSizeSqFt>3740</lotSizeSqFt>
1544
+ <finishedSqFt>1850</finishedSqFt>
1545
+ <bathrooms>1.0</bathrooms>
1546
+ <bedrooms>5</bedrooms>
1547
+ </property>
1548
+ <images>
1549
+ <count>0</count>
1550
+ </images>
1551
+ <price>900000</price>
1552
+ </result>
1553
+ <result>
1554
+ <lastRefreshedDate>2007-09-18 00:00:00.0</lastRefreshedDate>
1555
+ <property>
1556
+ <zpid>2146928904</zpid>
1557
+ <links>
1558
+ <homedetails>http://www.zillow.com/homedetails/2201-Fairview-Ave-E-3-Seattle-WA-98102/2146928904_zpid/</homedetails>
1559
+ </links>
1560
+ <address>
1561
+ <street>2201 Fairview Ave. E #3</street>
1562
+ <zipcode>98102</zipcode>
1563
+ <city>Seattle</city>
1564
+ <state>WA</state>
1565
+ <latitude>47.63832</latitude>
1566
+ <longitude>-122.32996</longitude>
1567
+ </address>
1568
+ <useCode>Single Family</useCode>
1569
+ <lotSizeSqFt/>
1570
+ <finishedSqFt/>
1571
+ <bathrooms/>
1572
+ <bedrooms/>
1573
+ </property>
1574
+ <images>
1575
+ <count>0</count>
1576
+ </images>
1577
+ <price>525000</price>
1578
+ </result>
1579
+ <result>
1580
+ <lastRefreshedDate>2007-09-06 00:00:00.0</lastRefreshedDate>
1581
+ <property>
1582
+ <zpid>2146999715</zpid>
1583
+ <links>
1584
+ <homedetails>http://www.zillow.com/homedetails/124-Bellevue-Ave-E-504-Seattle-WA-98102/2146999715_zpid/</homedetails>
1585
+ </links>
1586
+ <address>
1587
+ <street>124 Bellevue Ave E # 504</street>
1588
+ <zipcode>98102</zipcode>
1589
+ <city>Seattle</city>
1590
+ <state>WA</state>
1591
+ <latitude>47.619352</latitude>
1592
+ <longitude>-122.326395</longitude>
1593
+ </address>
1594
+ <useCode>Condo</useCode>
1595
+ <lotSizeSqFt/>
1596
+ <finishedSqFt>747</finishedSqFt>
1597
+ <bathrooms>1.0</bathrooms>
1598
+ <bedrooms>1</bedrooms>
1599
+ </property>
1600
+ <images>
1601
+ <count>15</count>
1602
+ </images>
1603
+ <price>345000</price>
1604
+ </result>
1605
+ <result>
1606
+ <lastRefreshedDate>2007-09-04 00:00:00.0</lastRefreshedDate>
1607
+ <property>
1608
+ <zpid>61359140</zpid>
1609
+ <links>
1610
+ <homedetails>http://www.zillow.com/homedetails/753-Harvard-Ave-E-B-Seattle-WA-98102/61359140_zpid/</homedetails>
1611
+ </links>
1612
+ <address>
1613
+ <street>753 Harvard Ave E # B</street>
1614
+ <zipcode>98102</zipcode>
1615
+ <city>Seattle</city>
1616
+ <state>WA</state>
1617
+ <latitude>47.626592</latitude>
1618
+ <longitude>-122.322833</longitude>
1619
+ </address>
1620
+ <useCode>Miscellaneous</useCode>
1621
+ <lotSizeSqFt>1438</lotSizeSqFt>
1622
+ <finishedSqFt>1438</finishedSqFt>
1623
+ <bathrooms>3.5</bathrooms>
1624
+ <bedrooms>3</bedrooms>
1625
+ </property>
1626
+ <images>
1627
+ <count>0</count>
1628
+ </images>
1629
+ <price>950000</price>
1630
+ </result>
1631
+ <result>
1632
+ <lastRefreshedDate>2007-08-27 00:00:00.0</lastRefreshedDate>
1633
+ <property>
1634
+ <zpid>48860051</zpid>
1635
+ <links>
1636
+ <homedetails>http://www.zillow.com/homedetails/319-Malden-Ave-E-Seattle-WA-98112/48860051_zpid/</homedetails>
1637
+ </links>
1638
+ <address>
1639
+ <street>319 Malden Ave E</street>
1640
+ <zipcode>98112</zipcode>
1641
+ <city>Seattle</city>
1642
+ <state>WA</state>
1643
+ <latitude>47.621705</latitude>
1644
+ <longitude>-122.313956</longitude>
1645
+ </address>
1646
+ <useCode>Multi Family</useCode>
1647
+ <lotSizeSqFt>3960</lotSizeSqFt>
1648
+ <finishedSqFt>1920</finishedSqFt>
1649
+ <bathrooms>3.0</bathrooms>
1650
+ <bedrooms>3</bedrooms>
1651
+ </property>
1652
+ <images>
1653
+ <count>0</count>
1654
+ </images>
1655
+ <price>800000</price>
1656
+ </result>
1657
+ <result>
1658
+ <lastRefreshedDate>2007-08-25 00:00:00.0</lastRefreshedDate>
1659
+ <property>
1660
+ <zpid>72498722</zpid>
1661
+ <links>
1662
+ <homedetails>http://www.zillow.com/homedetails/705-E-Republican-St-APT-407-Seattle-WA-98102/72498722_zpid/</homedetails>
1663
+ </links>
1664
+ <address>
1665
+ <street>705 E Republican St APT 407</street>
1666
+ <zipcode>98102</zipcode>
1667
+ <city>Seattle</city>
1668
+ <state>WA</state>
1669
+ <latitude>47.622892</latitude>
1670
+ <longitude>-122.322739</longitude>
1671
+ </address>
1672
+ <useCode>Condo</useCode>
1673
+ <lotSizeSqFt>11867</lotSizeSqFt>
1674
+ <finishedSqFt>377</finishedSqFt>
1675
+ <bathrooms>1.0</bathrooms>
1676
+ <bedrooms/>
1677
+ </property>
1678
+ <images>
1679
+ <count>3</count>
1680
+ </images>
1681
+ <price>225000</price>
1682
+ </result>
1683
+ <result>
1684
+ <lastRefreshedDate>2007-08-24 00:00:00.0</lastRefreshedDate>
1685
+ <property>
1686
+ <zpid>48771182</zpid>
1687
+ <links>
1688
+ <homedetails>http://www.zillow.com/homedetails/2833-11th-Ave-E-Seattle-WA-98102/48771182_zpid/</homedetails>
1689
+ </links>
1690
+ <address>
1691
+ <street>2833 11th Ave E</street>
1692
+ <zipcode>98102</zipcode>
1693
+ <city>Seattle</city>
1694
+ <state>WA</state>
1695
+ <latitude>47.646608</latitude>
1696
+ <longitude>-122.318706</longitude>
1697
+ </address>
1698
+ <useCode>Single Family</useCode>
1699
+ <lotSizeSqFt>5500</lotSizeSqFt>
1700
+ <finishedSqFt>3800</finishedSqFt>
1701
+ <bathrooms>3.25</bathrooms>
1702
+ <bedrooms>4</bedrooms>
1703
+ </property>
1704
+ <images>
1705
+ <count>13</count>
1706
+ </images>
1707
+ <price>2000000</price>
1708
+ </result>
1709
+ <result>
1710
+ <lastRefreshedDate>2007-08-22 00:00:00.0</lastRefreshedDate>
1711
+ <property>
1712
+ <zpid>48785479</zpid>
1713
+ <links>
1714
+ <homedetails>http://www.zillow.com/homedetails/2006-Federal-Ave-E-Seattle-WA-98102/48785479_zpid/</homedetails>
1715
+ </links>
1716
+ <address>
1717
+ <street>2006 Federal Ave E</street>
1718
+ <zipcode>98102</zipcode>
1719
+ <city>Seattle</city>
1720
+ <state>WA</state>
1721
+ <latitude>47.63749</latitude>
1722
+ <longitude>-122.318698</longitude>
1723
+ </address>
1724
+ <useCode>Single Family</useCode>
1725
+ <lotSizeSqFt>4000</lotSizeSqFt>
1726
+ <finishedSqFt>1270</finishedSqFt>
1727
+ <bathrooms>1.5</bathrooms>
1728
+ <bedrooms>2</bedrooms>
1729
+ </property>
1730
+ <images>
1731
+ <count>0</count>
1732
+ </images>
1733
+ <price>1000000</price>
1734
+ </result>
1735
+ <result>
1736
+ <lastRefreshedDate>2007-08-09 00:00:00.0</lastRefreshedDate>
1737
+ <property>
1738
+ <zpid>49108335</zpid>
1739
+ <links>
1740
+ <homedetails>http://www.zillow.com/homedetails/210-Boylston-Ave-E-APT-202-Seattle-WA-98102/49108335_zpid/</homedetails>
1741
+ </links>
1742
+ <address>
1743
+ <street>210 Boylston Ave E APT 202</street>
1744
+ <zipcode>98102</zipcode>
1745
+ <city>Seattle</city>
1746
+ <state>WA</state>
1747
+ <latitude>47.620533</latitude>
1748
+ <longitude>-122.322831</longitude>
1749
+ </address>
1750
+ <useCode>Condo</useCode>
1751
+ <lotSizeSqFt>18558</lotSizeSqFt>
1752
+ <finishedSqFt>1038</finishedSqFt>
1753
+ <bathrooms>2.0</bathrooms>
1754
+ <bedrooms>2</bedrooms>
1755
+ </property>
1756
+ <images>
1757
+ <count>0</count>
1758
+ </images>
1759
+ <price>600000</price>
1760
+ </result>
1761
+ <result>
1762
+ <lastRefreshedDate>2007-07-28 00:00:00.0</lastRefreshedDate>
1763
+ <property>
1764
+ <zpid>48925352</zpid>
1765
+ <links>
1766
+ <homedetails>http://www.zillow.com/homedetails/3420-Burke-Ave-N-APT-206-Seattle-WA-98103/48925352_zpid/</homedetails>
1767
+ </links>
1768
+ <address>
1769
+ <street>3420 Burke Ave N APT 206</street>
1770
+ <zipcode>98103</zipcode>
1771
+ <city>Seattle</city>
1772
+ <state>WA</state>
1773
+ <latitude>47.648612</latitude>
1774
+ <longitude>-122.334769</longitude>
1775
+ </address>
1776
+ <useCode>Condo</useCode>
1777
+ <lotSizeSqFt>14394</lotSizeSqFt>
1778
+ <finishedSqFt>796</finishedSqFt>
1779
+ <bathrooms>1.0</bathrooms>
1780
+ <bedrooms>1</bedrooms>
1781
+ </property>
1782
+ <images>
1783
+ <count>5</count>
1784
+ </images>
1785
+ <price>340000</price>
1786
+ </result>
1787
+ <result>
1788
+ <lastRefreshedDate>2007-07-28 00:00:00.0</lastRefreshedDate>
1789
+ <property>
1790
+ <zpid>68478031</zpid>
1791
+ <links>
1792
+ <homedetails>http://www.zillow.com/homedetails/1711-E-Olive-Way-APT-419-Seattle-WA-98102/68478031_zpid/</homedetails>
1793
+ </links>
1794
+ <address>
1795
+ <street>1711 E Olive Way APT 419</street>
1796
+ <zipcode>98102</zipcode>
1797
+ <city>Seattle</city>
1798
+ <state>WA</state>
1799
+ <latitude>47.619457</latitude>
1800
+ <longitude>-122.32316</longitude>
1801
+ </address>
1802
+ <useCode>Condo</useCode>
1803
+ <lotSizeSqFt>25897</lotSizeSqFt>
1804
+ <finishedSqFt>711</finishedSqFt>
1805
+ <bathrooms>1.0</bathrooms>
1806
+ <bedrooms>1</bedrooms>
1807
+ </property>
1808
+ <images>
1809
+ <count>0</count>
1810
+ </images>
1811
+ <price>510000</price>
1812
+ </result>
1813
+ <result>
1814
+ <lastRefreshedDate>2007-07-14 00:00:00.0</lastRefreshedDate>
1815
+ <property>
1816
+ <zpid>48662524</zpid>
1817
+ <links>
1818
+ <homedetails>http://www.zillow.com/homedetails/511-E-Roy-St-APT-108-Seattle-WA-98102/48662524_zpid/</homedetails>
1819
+ </links>
1820
+ <address>
1821
+ <street>511 E Roy St APT 108</street>
1822
+ <zipcode>98102</zipcode>
1823
+ <city>Seattle</city>
1824
+ <state>WA</state>
1825
+ <latitude>47.624781</latitude>
1826
+ <longitude>-122.324955</longitude>
1827
+ </address>
1828
+ <useCode>Condo</useCode>
1829
+ <lotSizeSqFt>24735</lotSizeSqFt>
1830
+ <finishedSqFt>703</finishedSqFt>
1831
+ <bathrooms>1.0</bathrooms>
1832
+ <bedrooms>1</bedrooms>
1833
+ </property>
1834
+ <images>
1835
+ <count>1</count>
1836
+ </images>
1837
+ <price>269000</price>
1838
+ </result>
1839
+ <result>
1840
+ <lastRefreshedDate>2007-06-21 00:00:00.0</lastRefreshedDate>
1841
+ <property>
1842
+ <zpid>49049113</zpid>
1843
+ <links>
1844
+ <homedetails>http://www.zillow.com/homedetails/2703-Boylston-Ave-E-APT-103-Seattle-WA-98102/49049113_zpid/</homedetails>
1845
+ </links>
1846
+ <address>
1847
+ <street>2703 Boylston Ave E APT 103</street>
1848
+ <zipcode>98102</zipcode>
1849
+ <city>Seattle</city>
1850
+ <state>WA</state>
1851
+ <latitude>47.644731</latitude>
1852
+ <longitude>-122.323741</longitude>
1853
+ </address>
1854
+ <useCode>Condo</useCode>
1855
+ <lotSizeSqFt>11000</lotSizeSqFt>
1856
+ <finishedSqFt>633</finishedSqFt>
1857
+ <bathrooms>1.0</bathrooms>
1858
+ <bedrooms>1</bedrooms>
1859
+ </property>
1860
+ <images>
1861
+ <count>1</count>
1862
+ </images>
1863
+ <price>265000</price>
1864
+ </result>
1865
+ <result>
1866
+ <lastRefreshedDate>2007-06-21 00:00:00.0</lastRefreshedDate>
1867
+ <property>
1868
+ <zpid>48835052</zpid>
1869
+ <links>
1870
+ <homedetails>http://www.zillow.com/homedetails/2031-Eastlake-Ave-E-Seattle-WA-98102/48835052_zpid/</homedetails>
1871
+ </links>
1872
+ <address>
1873
+ <street>2031 Eastlake Ave E</street>
1874
+ <zipcode>98102</zipcode>
1875
+ <city>Seattle</city>
1876
+ <state>WA</state>
1877
+ <latitude>47.637698</latitude>
1878
+ <longitude>-122.326259</longitude>
1879
+ </address>
1880
+ <useCode>Multi Family</useCode>
1881
+ <lotSizeSqFt>3380</lotSizeSqFt>
1882
+ <finishedSqFt>1890</finishedSqFt>
1883
+ <bathrooms>2.75</bathrooms>
1884
+ <bedrooms>4</bedrooms>
1885
+ </property>
1886
+ <images>
1887
+ <count>0</count>
1888
+ </images>
1889
+ <price>1000000</price>
1890
+ </result>
1891
+ <result>
1892
+ <lastRefreshedDate>2007-06-09 00:00:00.0</lastRefreshedDate>
1893
+ <property>
1894
+ <zpid>48766471</zpid>
1895
+ <links>
1896
+ <homedetails>http://www.zillow.com/homedetails/1008-E-Lynn-St-Seattle-WA-98102/48766471_zpid/</homedetails>
1897
+ </links>
1898
+ <address>
1899
+ <street>1008 E Lynn St</street>
1900
+ <zipcode>98102</zipcode>
1901
+ <city>Seattle</city>
1902
+ <state>WA</state>
1903
+ <latitude>47.639711</latitude>
1904
+ <longitude>-122.319595</longitude>
1905
+ </address>
1906
+ <useCode>Single Family</useCode>
1907
+ <lotSizeSqFt>1800</lotSizeSqFt>
1908
+ <finishedSqFt>1440</finishedSqFt>
1909
+ <bathrooms>1.0</bathrooms>
1910
+ <bedrooms>3</bedrooms>
1911
+ </property>
1912
+ <images>
1913
+ <count>0</count>
1914
+ </images>
1915
+ <price>699000</price>
1916
+ </result>
1917
+ <result>
1918
+ <lastRefreshedDate>2007-06-01 00:00:00.0</lastRefreshedDate>
1919
+ <property>
1920
+ <zpid>49040433</zpid>
1921
+ <links>
1922
+ <homedetails>http://www.zillow.com/homedetails/1111-10th-Ave-E-APT-41-Seattle-WA-98102/49040433_zpid/</homedetails>
1923
+ </links>
1924
+ <address>
1925
+ <street>1111 10th Ave E APT 41</street>
1926
+ <zipcode>98102</zipcode>
1927
+ <city>Seattle</city>
1928
+ <state>WA</state>
1929
+ <latitude>47.629174</latitude>
1930
+ <longitude>-122.320536</longitude>
1931
+ </address>
1932
+ <useCode>Condo</useCode>
1933
+ <lotSizeSqFt>10000</lotSizeSqFt>
1934
+ <finishedSqFt>1227</finishedSqFt>
1935
+ <bathrooms>1.75</bathrooms>
1936
+ <bedrooms>2</bedrooms>
1937
+ </property>
1938
+ <images>
1939
+ <count>0</count>
1940
+ </images>
1941
+ <price>399995</price>
1942
+ </result>
1943
+ <result>
1944
+ <lastRefreshedDate>2007-05-23 00:00:00.0</lastRefreshedDate>
1945
+ <property>
1946
+ <zpid>48785452</zpid>
1947
+ <links>
1948
+ <homedetails>http://www.zillow.com/homedetails/2007-10th-Ave-E-Seattle-WA-98102/48785452_zpid/</homedetails>
1949
+ </links>
1950
+ <address>
1951
+ <street>2007 10th Ave E</street>
1952
+ <zipcode>98102</zipcode>
1953
+ <city>Seattle</city>
1954
+ <state>WA</state>
1955
+ <latitude>47.637496</latitude>
1956
+ <longitude>-122.320461</longitude>
1957
+ </address>
1958
+ <useCode>Single Family</useCode>
1959
+ <lotSizeSqFt>5120</lotSizeSqFt>
1960
+ <finishedSqFt>2580</finishedSqFt>
1961
+ <bathrooms>3.0</bathrooms>
1962
+ <bedrooms>3</bedrooms>
1963
+ </property>
1964
+ <images>
1965
+ <count>0</count>
1966
+ </images>
1967
+ <price>850000</price>
1968
+ </result>
1969
+ <result>
1970
+ <lastRefreshedDate>2007-05-04 00:00:00.0</lastRefreshedDate>
1971
+ <property>
1972
+ <zpid>2146970228</zpid>
1973
+ <links>
1974
+ <homedetails>http://www.zillow.com/homedetails/606-E-Thomas-N-Seattle-WA-98102/2146970228_zpid/</homedetails>
1975
+ </links>
1976
+ <address>
1977
+ <street>606 E Thomas #N</street>
1978
+ <zipcode>98102</zipcode>
1979
+ <city>seattle</city>
1980
+ <state>WA</state>
1981
+ <latitude>47.62104</latitude>
1982
+ <longitude>-122.32361</longitude>
1983
+ </address>
1984
+ <useCode>Cooperative</useCode>
1985
+ <lotSizeSqFt/>
1986
+ <finishedSqFt>470</finishedSqFt>
1987
+ <bathrooms>1.0</bathrooms>
1988
+ <bedrooms/>
1989
+ </property>
1990
+ <images>
1991
+ <count>0</count>
1992
+ </images>
1993
+ <price>185000</price>
1994
+ </result>
1995
+ <result>
1996
+ <lastRefreshedDate>2007-04-27 00:00:00.0</lastRefreshedDate>
1997
+ <property>
1998
+ <zpid>49116349</zpid>
1999
+ <links>
2000
+ <homedetails>http://www.zillow.com/homedetails/3932-Bagley-Ave-N-Seattle-WA-98103/49116349_zpid/</homedetails>
2001
+ </links>
2002
+ <address>
2003
+ <street>3932 Bagley Ave N</street>
2004
+ <zipcode>98103</zipcode>
2005
+ <city>Seattle</city>
2006
+ <state>WA</state>
2007
+ <latitude>47.655274</latitude>
2008
+ <longitude>-122.332271</longitude>
2009
+ </address>
2010
+ <useCode>Single Family</useCode>
2011
+ <lotSizeSqFt>5700</lotSizeSqFt>
2012
+ <finishedSqFt>2051</finishedSqFt>
2013
+ <bathrooms>2.5</bathrooms>
2014
+ <bedrooms>3</bedrooms>
2015
+ </property>
2016
+ <images>
2017
+ <count>1</count>
2018
+ </images>
2019
+ <price>1000000</price>
2020
+ </result>
2021
+ <result>
2022
+ <lastRefreshedDate>2007-04-19 00:00:00.0</lastRefreshedDate>
2023
+ <property>
2024
+ <zpid>48821223</zpid>
2025
+ <links>
2026
+ <homedetails>http://www.zillow.com/homedetails/516-E-Thomas-St-APT-304-Seattle-WA-98102/48821223_zpid/</homedetails>
2027
+ </links>
2028
+ <address>
2029
+ <street>516 E Thomas St APT 304</street>
2030
+ <zipcode>98102</zipcode>
2031
+ <city>Seattle</city>
2032
+ <state>WA</state>
2033
+ <latitude>47.621</latitude>
2034
+ <longitude>-122.324506</longitude>
2035
+ </address>
2036
+ <useCode>Condo</useCode>
2037
+ <lotSizeSqFt>3258</lotSizeSqFt>
2038
+ <finishedSqFt>600</finishedSqFt>
2039
+ <bathrooms>1.0</bathrooms>
2040
+ <bedrooms>1</bedrooms>
2041
+ </property>
2042
+ <images>
2043
+ <count>0</count>
2044
+ </images>
2045
+ <price>450000</price>
2046
+ </result>
2047
+ <result>
2048
+ <lastRefreshedDate>2007-03-30 00:00:00.0</lastRefreshedDate>
2049
+ <property>
2050
+ <zpid>66665621</zpid>
2051
+ <links>
2052
+ <homedetails>http://www.zillow.com/homedetails/1110-10th-Ave-E-APT-A-Seattle-WA-98102/66665621_zpid/</homedetails>
2053
+ </links>
2054
+ <address>
2055
+ <street>1110 10th Ave E APT A</street>
2056
+ <zipcode>98102</zipcode>
2057
+ <city>Seattle</city>
2058
+ <state>WA</state>
2059
+ <latitude>47.629068</latitude>
2060
+ <longitude>-122.319988</longitude>
2061
+ </address>
2062
+ <useCode>Townhouse</useCode>
2063
+ <lotSizeSqFt>1104</lotSizeSqFt>
2064
+ <finishedSqFt>1628</finishedSqFt>
2065
+ <bathrooms>2.5</bathrooms>
2066
+ <bedrooms>3</bedrooms>
2067
+ </property>
2068
+ <images>
2069
+ <count>0</count>
2070
+ </images>
2071
+ <price>790999</price>
2072
+ </result>
2073
+ <result>
2074
+ <lastRefreshedDate>2007-03-07 00:00:00.0</lastRefreshedDate>
2075
+ <property>
2076
+ <zpid>2146984603</zpid>
2077
+ <links>
2078
+ <homedetails>http://www.zillow.com/homedetails/615-Federal-Ave-E-B-Seattle-WA-98102/2146984603_zpid/</homedetails>
2079
+ </links>
2080
+ <address>
2081
+ <street>615 Federal Ave E # B</street>
2082
+ <zipcode>98102</zipcode>
2083
+ <city>Seattle</city>
2084
+ <state>WA</state>
2085
+ <latitude>47.62472</latitude>
2086
+ <longitude>-122.31899</longitude>
2087
+ </address>
2088
+ <useCode>Townhouse</useCode>
2089
+ <lotSizeSqFt>1490</lotSizeSqFt>
2090
+ <finishedSqFt>1576</finishedSqFt>
2091
+ <bathrooms>3.5</bathrooms>
2092
+ <bedrooms>3</bedrooms>
2093
+ </property>
2094
+ <images>
2095
+ <count>0</count>
2096
+ </images>
2097
+ <price>739950</price>
2098
+ </result>
2099
+ <result>
2100
+ <lastRefreshedDate>2007-02-28 00:00:00.0</lastRefreshedDate>
2101
+ <property>
2102
+ <zpid>48888786</zpid>
2103
+ <links>
2104
+ <homedetails>http://www.zillow.com/homedetails/2723-11th-Ave-E-Seattle-WA-98102/48888786_zpid/</homedetails>
2105
+ </links>
2106
+ <address>
2107
+ <street>2723 11th Ave E</street>
2108
+ <zipcode>98102</zipcode>
2109
+ <city>Seattle</city>
2110
+ <state>WA</state>
2111
+ <latitude>47.645206</latitude>
2112
+ <longitude>-122.31871</longitude>
2113
+ </address>
2114
+ <useCode>Single Family</useCode>
2115
+ <lotSizeSqFt>5500</lotSizeSqFt>
2116
+ <finishedSqFt>2790</finishedSqFt>
2117
+ <bathrooms>3.0</bathrooms>
2118
+ <bedrooms>4</bedrooms>
2119
+ </property>
2120
+ <images>
2121
+ <count>0</count>
2122
+ </images>
2123
+ <price>1</price>
2124
+ </result>
2125
+ <result>
2126
+ <lastRefreshedDate>2007-02-19 00:00:00.0</lastRefreshedDate>
2127
+ <property>
2128
+ <zpid>2146988448</zpid>
2129
+ <links>
2130
+ <homedetails>http://www.zillow.com/homedetails/505-Belmont-Ave-E-APT-302-Seattle-WA-98102/2146988448_zpid/</homedetails>
2131
+ </links>
2132
+ <address>
2133
+ <street>505 Belmont Ave E APT 302</street>
2134
+ <zipcode>98102</zipcode>
2135
+ <city>Seattle</city>
2136
+ <state>WA</state>
2137
+ <latitude>47.623381</latitude>
2138
+ <longitude>-122.324203</longitude>
2139
+ </address>
2140
+ <useCode>Single Family</useCode>
2141
+ <lotSizeSqFt/>
2142
+ <finishedSqFt/>
2143
+ <bathrooms/>
2144
+ <bedrooms/>
2145
+ </property>
2146
+ <images>
2147
+ <count>0</count>
2148
+ </images>
2149
+ <price>400000</price>
2150
+ </result>
2151
+ <result>
2152
+ <lastRefreshedDate>2007-02-19 00:00:00.0</lastRefreshedDate>
2153
+ <property>
2154
+ <zpid>48926932</zpid>
2155
+ <links>
2156
+ <homedetails>http://www.zillow.com/homedetails/505-Belmont-Ave-E-APT-302-Seattle-WA-98102/48926932_zpid/</homedetails>
2157
+ </links>
2158
+ <address>
2159
+ <street>505 Belmont Ave E APT 302</street>
2160
+ <zipcode>98102</zipcode>
2161
+ <city>Seattle</city>
2162
+ <state>WA</state>
2163
+ <latitude>47.623469</latitude>
2164
+ <longitude>-122.324397</longitude>
2165
+ </address>
2166
+ <useCode>Condo</useCode>
2167
+ <lotSizeSqFt>27790</lotSizeSqFt>
2168
+ <finishedSqFt>720</finishedSqFt>
2169
+ <bathrooms>1.0</bathrooms>
2170
+ <bedrooms>1</bedrooms>
2171
+ </property>
2172
+ <images>
2173
+ <count>12</count>
2174
+ </images>
2175
+ <price>450000</price>
2176
+ </result>
2177
+ <result>
2178
+ <lastRefreshedDate>2007-02-19 00:00:00.0</lastRefreshedDate>
2179
+ <property>
2180
+ <zpid>48997581</zpid>
2181
+ <links>
2182
+ <homedetails>http://www.zillow.com/homedetails/200-NE-Pacific-St-302-Seattle-WA-98105/48997581_zpid/</homedetails>
2183
+ </links>
2184
+ <address>
2185
+ <street>200 NE Pacific St # 302</street>
2186
+ <zipcode>98105</zipcode>
2187
+ <city>Seattle</city>
2188
+ <state>WA</state>
2189
+ <latitude>47.654955</latitude>
2190
+ <longitude>-122.32628</longitude>
2191
+ </address>
2192
+ <useCode>Condo</useCode>
2193
+ <lotSizeSqFt>21823</lotSizeSqFt>
2194
+ <finishedSqFt>1985</finishedSqFt>
2195
+ <bathrooms>2.0</bathrooms>
2196
+ <bedrooms>3</bedrooms>
2197
+ </property>
2198
+ <images>
2199
+ <count>0</count>
2200
+ </images>
2201
+ <price>980000</price>
2202
+ </result>
2203
+ <result>
2204
+ <lastRefreshedDate>2007-02-11 00:00:00.0</lastRefreshedDate>
2205
+ <property>
2206
+ <zpid>49058801</zpid>
2207
+ <links>
2208
+ <homedetails>http://www.zillow.com/homedetails/613-E-Highland-Dr-APT-5-Seattle-WA-98102/49058801_zpid/</homedetails>
2209
+ </links>
2210
+ <address>
2211
+ <street>613 E Highland Dr APT 5</street>
2212
+ <zipcode>98102</zipcode>
2213
+ <city>Seattle</city>
2214
+ <state>WA</state>
2215
+ <latitude>47.630344</latitude>
2216
+ <longitude>-122.323756</longitude>
2217
+ </address>
2218
+ <useCode>Condo</useCode>
2219
+ <lotSizeSqFt>24808</lotSizeSqFt>
2220
+ <finishedSqFt>2130</finishedSqFt>
2221
+ <bathrooms>2.5</bathrooms>
2222
+ <bedrooms>2</bedrooms>
2223
+ </property>
2224
+ <images>
2225
+ <count>5</count>
2226
+ </images>
2227
+ <price>1250000</price>
2228
+ </result>
2229
+ <result>
2230
+ <lastRefreshedDate>2007-02-11 00:00:00.0</lastRefreshedDate>
2231
+ <property>
2232
+ <zpid>2146990490</zpid>
2233
+ <links>
2234
+ <homedetails>http://www.zillow.com/homedetails/2006-Yale-Ave-E-APT-A-Seattle-WA-98102/2146990490_zpid/</homedetails>
2235
+ </links>
2236
+ <address>
2237
+ <street>2006 Yale Ave E APT A</street>
2238
+ <zipcode>98102</zipcode>
2239
+ <city>Seattle</city>
2240
+ <state>WA</state>
2241
+ <latitude>47.63701</latitude>
2242
+ <longitude>-122.32659</longitude>
2243
+ </address>
2244
+ <useCode>Single Family</useCode>
2245
+ <lotSizeSqFt/>
2246
+ <finishedSqFt/>
2247
+ <bathrooms>2.0</bathrooms>
2248
+ <bedrooms>3</bedrooms>
2249
+ </property>
2250
+ <images>
2251
+ <count>1</count>
2252
+ </images>
2253
+ <price>999000</price>
2254
+ </result>
2255
+ <result>
2256
+ <lastRefreshedDate>2007-01-13 00:00:00.0</lastRefreshedDate>
2257
+ <property>
2258
+ <zpid>48724951</zpid>
2259
+ <links>
2260
+ <homedetails>http://www.zillow.com/homedetails/908-12th-Ave-E-Seattle-WA-98102/48724951_zpid/</homedetails>
2261
+ </links>
2262
+ <address>
2263
+ <street>908 12th Ave E</street>
2264
+ <zipcode>98102</zipcode>
2265
+ <city>Seattle</city>
2266
+ <state>WA</state>
2267
+ <latitude>47.626809</latitude>
2268
+ <longitude>-122.316489</longitude>
2269
+ </address>
2270
+ <useCode>Single Family</useCode>
2271
+ <lotSizeSqFt>4650</lotSizeSqFt>
2272
+ <finishedSqFt>4300</finishedSqFt>
2273
+ <bathrooms>4.5</bathrooms>
2274
+ <bedrooms>5</bedrooms>
2275
+ </property>
2276
+ <images>
2277
+ <count>1</count>
2278
+ </images>
2279
+ <price>1650000</price>
2280
+ </result>
2281
+ <result>
2282
+ <lastRefreshedDate>2007-01-10 00:00:00.0</lastRefreshedDate>
2283
+ <property>
2284
+ <zpid>2146995269</zpid>
2285
+ <links>
2286
+ <homedetails>http://www.zillow.com/homedetails/3401-Wallingford-Ave-N-APT-102-Seattle-WA-98103/2146995269_zpid/</homedetails>
2287
+ </links>
2288
+ <address>
2289
+ <street>3401 Wallingford Ave N APT 102</street>
2290
+ <zipcode>98103</zipcode>
2291
+ <city>Seattle</city>
2292
+ <state>WA</state>
2293
+ <latitude>47.648154</latitude>
2294
+ <longitude>-122.33659</longitude>
2295
+ </address>
2296
+ <useCode>Condo</useCode>
2297
+ <lotSizeSqFt>750</lotSizeSqFt>
2298
+ <finishedSqFt>750</finishedSqFt>
2299
+ <bathrooms>1.0</bathrooms>
2300
+ <bedrooms>2</bedrooms>
2301
+ </property>
2302
+ <images>
2303
+ <count>0</count>
2304
+ </images>
2305
+ <price>300000</price>
2306
+ </result>
2307
+ <result>
2308
+ <lastRefreshedDate>2007-01-05 00:00:00.0</lastRefreshedDate>
2309
+ <property>
2310
+ <zpid>48976168</zpid>
2311
+ <links>
2312
+ <homedetails>http://www.zillow.com/homedetails/1216-E-John-St-Seattle-WA-98102/48976168_zpid/</homedetails>
2313
+ </links>
2314
+ <address>
2315
+ <street>1216 E John St</street>
2316
+ <zipcode>98102</zipcode>
2317
+ <city>Seattle</city>
2318
+ <state>WA</state>
2319
+ <latitude>47.620113</latitude>
2320
+ <longitude>-122.316165</longitude>
2321
+ </address>
2322
+ <useCode>Single Family</useCode>
2323
+ <lotSizeSqFt>3300</lotSizeSqFt>
2324
+ <finishedSqFt>2040</finishedSqFt>
2325
+ <bathrooms>1.0</bathrooms>
2326
+ <bedrooms>5</bedrooms>
2327
+ </property>
2328
+ <images>
2329
+ <count>1</count>
2330
+ </images>
2331
+ <price>750000</price>
2332
+ </result>
2333
+ <result>
2334
+ <lastRefreshedDate>2006-12-10 00:00:00.0</lastRefreshedDate>
2335
+ <property>
2336
+ <zpid>48888785</zpid>
2337
+ <links>
2338
+ <homedetails>http://www.zillow.com/homedetails/2717-11th-Ave-E-Seattle-WA-98102/48888785_zpid/</homedetails>
2339
+ </links>
2340
+ <address>
2341
+ <street>2717 11th Ave E</street>
2342
+ <zipcode>98102</zipcode>
2343
+ <city>Seattle</city>
2344
+ <state>WA</state>
2345
+ <latitude>47.645068</latitude>
2346
+ <longitude>-122.31871</longitude>
2347
+ </address>
2348
+ <useCode>Single Family</useCode>
2349
+ <lotSizeSqFt>5500</lotSizeSqFt>
2350
+ <finishedSqFt>2340</finishedSqFt>
2351
+ <bathrooms>2.25</bathrooms>
2352
+ <bedrooms>3</bedrooms>
2353
+ </property>
2354
+ <images>
2355
+ <count>0</count>
2356
+ </images>
2357
+ <price>1249000</price>
2358
+ </result>
2359
+ </makeMeMove>
2360
+ <forSaleByOwner>
2361
+ <count>1</count>
2362
+ <result>
2363
+ <lastRefreshedDate>2010-03-24 00:00:00.0</lastRefreshedDate>
2364
+ <property>
2365
+ <zpid>49101951</zpid>
2366
+ <links>
2367
+ <homedetails>http://www.zillow.com/homedetails/2301-Fairview-Ave-E-APT-206-Seattle-WA-98102/49101951_zpid/</homedetails>
2368
+ </links>
2369
+ <address>
2370
+ <street>2301 Fairview Ave E APT 206</street>
2371
+ <zipcode>98102</zipcode>
2372
+ <city>Seattle</city>
2373
+ <state>WA</state>
2374
+ <latitude>47.640096</latitude>
2375
+ <longitude>-122.330056</longitude>
2376
+ </address>
2377
+ <useCode>Condo</useCode>
2378
+ <lotSizeSqFt>650</lotSizeSqFt>
2379
+ <finishedSqFt>650</finishedSqFt>
2380
+ <bathrooms>1.0</bathrooms>
2381
+ <bedrooms>1</bedrooms>
2382
+ </property>
2383
+ <images>
2384
+ <count>12</count>
2385
+ </images>
2386
+ <price>249000</price>
2387
+ </result>
2388
+ </forSaleByOwner>
2389
+ <forSaleByAgent>
2390
+ <count>8</count>
2391
+ <result>
2392
+ <lastRefreshedDate>2011-06-08 00:00:00.0</lastRefreshedDate>
2393
+ <property>
2394
+ <zpid>72497563</zpid>
2395
+ <links>
2396
+ <homedetails>http://www.zillow.com/homedetails/124-Bellevue-Ave-E-UNIT-304-Seattle-WA-98102/72497563_zpid/</homedetails>
2397
+ </links>
2398
+ <address>
2399
+ <street>124 Bellevue Ave E UNIT 304</street>
2400
+ <zipcode>98102</zipcode>
2401
+ <city>Seattle</city>
2402
+ <state>WA</state>
2403
+ <latitude>47.61952</latitude>
2404
+ <longitude>-122.326257</longitude>
2405
+ </address>
2406
+ <useCode>Condo</useCode>
2407
+ <lotSizeSqFt>10269</lotSizeSqFt>
2408
+ <finishedSqFt>747</finishedSqFt>
2409
+ <bathrooms>1.0</bathrooms>
2410
+ <bedrooms>1</bedrooms>
2411
+ </property>
2412
+ <images>
2413
+ <count>15</count>
2414
+ </images>
2415
+ <price>275000</price>
2416
+ </result>
2417
+ <result>
2418
+ <lastRefreshedDate>2011-06-08 00:00:00.0</lastRefreshedDate>
2419
+ <property>
2420
+ <zpid>48771390</zpid>
2421
+ <links>
2422
+ <homedetails>http://www.zillow.com/homedetails/2816-Fairview-Ave-E-Seattle-WA-98102/48771390_zpid/</homedetails>
2423
+ </links>
2424
+ <address>
2425
+ <street>2816 Fairview Ave E</street>
2426
+ <zipcode>98102</zipcode>
2427
+ <city>Seattle</city>
2428
+ <state>WA</state>
2429
+ <latitude>47.646177</latitude>
2430
+ <longitude>-122.326366</longitude>
2431
+ </address>
2432
+ <useCode>Single Family</useCode>
2433
+ <lotSizeSqFt>1</lotSizeSqFt>
2434
+ <finishedSqFt>5193</finishedSqFt>
2435
+ <bathrooms>3.5</bathrooms>
2436
+ <bedrooms>3</bedrooms>
2437
+ </property>
2438
+ <images>
2439
+ <count>8</count>
2440
+ </images>
2441
+ <price>3395000</price>
2442
+ </result>
2443
+ <result>
2444
+ <lastRefreshedDate>2011-06-08 00:00:00.0</lastRefreshedDate>
2445
+ <property>
2446
+ <zpid>48771391</zpid>
2447
+ <links>
2448
+ <homedetails>http://www.zillow.com/homedetails/2810-Fairview-Ave-E-Seattle-WA-98102/48771391_zpid/</homedetails>
2449
+ </links>
2450
+ <address>
2451
+ <street>2810 Fairview Ave E</street>
2452
+ <zipcode>98102</zipcode>
2453
+ <city>SEATTLE </city>
2454
+ <state>WA</state>
2455
+ <latitude>47.646072</latitude>
2456
+ <longitude>-122.326467</longitude>
2457
+ </address>
2458
+ <useCode>Townhouse</useCode>
2459
+ <lotSizeSqFt>4031</lotSizeSqFt>
2460
+ <finishedSqFt>5193</finishedSqFt>
2461
+ <bathrooms>1.0</bathrooms>
2462
+ <bedrooms>1</bedrooms>
2463
+ </property>
2464
+ <images>
2465
+ <count>9</count>
2466
+ </images>
2467
+ <price>2950000</price>
2468
+ </result>
2469
+ <result>
2470
+ <lastRefreshedDate>2011-06-08 00:00:00.0</lastRefreshedDate>
2471
+ <property>
2472
+ <zpid>2131940771</zpid>
2473
+ <links>
2474
+ <homedetails>http://www.zillow.com/homedetails/2802-Fairview-Ave-E-Seattle-WA-98102/2131940771_zpid/</homedetails>
2475
+ </links>
2476
+ <address>
2477
+ <street>2802 Fairview Ave E</street>
2478
+ <zipcode>98102</zipcode>
2479
+ <city>Seattle</city>
2480
+ <state>WA</state>
2481
+ <latitude>47.645802</latitude>
2482
+ <longitude>-122.326942</longitude>
2483
+ </address>
2484
+ <useCode>Single Family</useCode>
2485
+ <lotSizeSqFt/>
2486
+ <finishedSqFt>2553</finishedSqFt>
2487
+ <bathrooms>2.5</bathrooms>
2488
+ <bedrooms>2</bedrooms>
2489
+ </property>
2490
+ <images>
2491
+ <count>10</count>
2492
+ </images>
2493
+ <price>1365000</price>
2494
+ </result>
2495
+ <result>
2496
+ <lastRefreshedDate>2011-06-08 00:00:00.0</lastRefreshedDate>
2497
+ <property>
2498
+ <zpid>2126208744</zpid>
2499
+ <links>
2500
+ <homedetails>http://www.zillow.com/homedetails/2800-Fairview-Ave-E-Seatte-WA-98102/2126208744_zpid/</homedetails>
2501
+ </links>
2502
+ <address>
2503
+ <street>2800 Fairview Ave E</street>
2504
+ <zipcode>98102</zipcode>
2505
+ <city>Seatte</city>
2506
+ <state>WA</state>
2507
+ <latitude>47.637016</latitude>
2508
+ <longitude>-122.324439</longitude>
2509
+ </address>
2510
+ <useCode>Single Family</useCode>
2511
+ <lotSizeSqFt/>
2512
+ <finishedSqFt>2640</finishedSqFt>
2513
+ <bathrooms>2.5</bathrooms>
2514
+ <bedrooms>2</bedrooms>
2515
+ </property>
2516
+ <images>
2517
+ <count>8</count>
2518
+ </images>
2519
+ <price>1695000</price>
2520
+ </result>
2521
+ <result>
2522
+ <lastRefreshedDate>2011-05-26 00:00:00.0</lastRefreshedDate>
2523
+ <property>
2524
+ <zpid>2126421345</zpid>
2525
+ <links>
2526
+ <homedetails>http://www.zillow.com/homedetails/2042-Franklin-Ave-E-B-Seattle-WA-98102/2126421345_zpid/</homedetails>
2527
+ </links>
2528
+ <address>
2529
+ <street>2042 Franklin Ave E #B</street>
2530
+ <zipcode>98102</zipcode>
2531
+ <city>seattle</city>
2532
+ <state>WA</state>
2533
+ <latitude>47.637016</latitude>
2534
+ <longitude>-122.324439</longitude>
2535
+ </address>
2536
+ <useCode>Single Family</useCode>
2537
+ <lotSizeSqFt/>
2538
+ <finishedSqFt/>
2539
+ <bathrooms/>
2540
+ <bedrooms/>
2541
+ </property>
2542
+ <images>
2543
+ <count>10</count>
2544
+ </images>
2545
+ <price>259900</price>
2546
+ </result>
2547
+ <result>
2548
+ <lastRefreshedDate>2011-05-11 00:00:00.0</lastRefreshedDate>
2549
+ <property>
2550
+ <zpid>48920435</zpid>
2551
+ <links>
2552
+ <homedetails>http://www.zillow.com/homedetails/1912-Franklin-Ave-E-Seattle-WA-98102/48920435_zpid/</homedetails>
2553
+ </links>
2554
+ <address>
2555
+ <street>1912 Franklin Ave E</street>
2556
+ <zipcode>98102</zipcode>
2557
+ <city>Seattle</city>
2558
+ <state>WA</state>
2559
+ <latitude>47.636298</latitude>
2560
+ <longitude>-122.324417</longitude>
2561
+ </address>
2562
+ <useCode>Single Family</useCode>
2563
+ <lotSizeSqFt>2613</lotSizeSqFt>
2564
+ <finishedSqFt>2010</finishedSqFt>
2565
+ <bathrooms>1.75</bathrooms>
2566
+ <bedrooms>3</bedrooms>
2567
+ </property>
2568
+ <images>
2569
+ <count>14</count>
2570
+ </images>
2571
+ <price>624900</price>
2572
+ </result>
2573
+ <result>
2574
+ <lastRefreshedDate>2011-04-22 00:00:00.0</lastRefreshedDate>
2575
+ <property>
2576
+ <zpid>48775020</zpid>
2577
+ <links>
2578
+ <homedetails>http://www.zillow.com/homedetails/2222-Everett-Ave-E-Seattle-WA-98102/48775020_zpid/</homedetails>
2579
+ </links>
2580
+ <address>
2581
+ <street>2222 Everett Ave E</street>
2582
+ <zipcode>98102</zipcode>
2583
+ <city>Seattle</city>
2584
+ <state>WA</state>
2585
+ <latitude>47.63903</latitude>
2586
+ <longitude>-122.314594</longitude>
2587
+ </address>
2588
+ <useCode>Single Family</useCode>
2589
+ <lotSizeSqFt>19946</lotSizeSqFt>
2590
+ <finishedSqFt>7630</finishedSqFt>
2591
+ <bathrooms>3.5</bathrooms>
2592
+ <bedrooms>4</bedrooms>
2593
+ </property>
2594
+ <images>
2595
+ <count>2</count>
2596
+ </images>
2597
+ <price>2500000</price>
2598
+ </result>
2599
+ </forSaleByAgent>
2600
+ <reportForSale>
2601
+ <count>1</count>
2602
+ <result>
2603
+ <lastRefreshedDate>2011-04-22 00:00:00.0</lastRefreshedDate>
2604
+ <property>
2605
+ <zpid>48775020</zpid>
2606
+ <links>
2607
+ <homedetails>http://www.zillow.com/homedetails/2222-Everett-Ave-E-Seattle-WA-98102/48775020_zpid/</homedetails>
2608
+ </links>
2609
+ <address>
2610
+ <street>2222 Everett Ave E</street>
2611
+ <zipcode>98102</zipcode>
2612
+ <city>Seattle</city>
2613
+ <state>WA</state>
2614
+ <latitude>47.63903</latitude>
2615
+ <longitude>-122.314594</longitude>
2616
+ </address>
2617
+ <useCode>Single Family</useCode>
2618
+ <lotSizeSqFt>19946</lotSizeSqFt>
2619
+ <finishedSqFt>7630</finishedSqFt>
2620
+ <bathrooms>3.5</bathrooms>
2621
+ <bedrooms>4</bedrooms>
2622
+ </property>
2623
+ <images>
2624
+ <count>2</count>
2625
+ </images>
2626
+ <price>2500000</price>
2627
+ </result>
2628
+ </reportForSale>
2629
+ <forRent>
2630
+ <count>1</count>
2631
+ <result>
2632
+ <lastRefreshedDate>2011-04-22 00:00:00.0</lastRefreshedDate>
2633
+ <property>
2634
+ <zpid>48775020</zpid>
2635
+ <links>
2636
+ <homedetails>http://www.zillow.com/homedetails/2222-Everett-Ave-E-Seattle-WA-98102/48775020_zpid/</homedetails>
2637
+ </links>
2638
+ <address>
2639
+ <street>2222 Everett Ave E</street>
2640
+ <zipcode>98102</zipcode>
2641
+ <city>Seattle</city>
2642
+ <state>WA</state>
2643
+ <latitude>47.63903</latitude>
2644
+ <longitude>-122.314594</longitude>
2645
+ </address>
2646
+ <useCode>Single Family</useCode>
2647
+ <lotSizeSqFt>19946</lotSizeSqFt>
2648
+ <finishedSqFt>7630</finishedSqFt>
2649
+ <bathrooms>3.5</bathrooms>
2650
+ <bedrooms>4</bedrooms>
2651
+ </property>
2652
+ <images>
2653
+ <count>2</count>
2654
+ </images>
2655
+ <price>2500000</price>
2656
+ </result>
2657
+ </forRent>
2658
+ </response>
2659
+ </RegionPostings:regionPostings>
2660
+ <!-- H:117 T:63ms S:42516 R:Fri Aug 26 12:48:06 PDT 2011 B:3.0.121144.20110823141116-comp_rel_b -->