spain_zip_codes 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5ab39791cd13b82fee3c8fed7ce20f6e5e6c24a1
4
+ data.tar.gz: 3b92e71db4e7383b46553cfb883414e432216e90
5
+ SHA512:
6
+ metadata.gz: 887b9bb89f739a5d95ff8f82c25b40068188b8e9a4265d0ebda51b88227fdd29f2db8aec10a89ebeebcd2e01fe9b237008dcf0ff1d73fe7cb480ae9c2253ccac
7
+ data.tar.gz: 6a5a2c182e614c344bda25f6995d56f3a1595557b172448f61cdfba5a77800dfa72d3c84aa7e3718c61c7356950de7f35c0f1ab3120ce4426b0aafce36a715c7
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ script: "bundle exec rspec spec"
5
+
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in spain_zip_codes.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Luismi Ramírez
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,104 @@
1
+ # SpainZipCodes
2
+
3
+ [![Build Status](https://travis-ci.org/luismiramirez/spain_zip_codes.svg?branch=master)](https://travis-ci.org/luismiramirez/spain_zip_codes)
4
+ [![Code Climate](https://codeclimate.com/github/luismiramirez/spain_zip_codes/badges/gpa.svg)](https://codeclimate.com/github/luismiramirez/spain_zip_codes)
5
+
6
+ With SpainZipCodes you can obtain Spain locations and provinces using a zip code and you can obtain zip codes for provinces and locations using their names!
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ gem 'spain_zip_codes'
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install spain_zip_codes
21
+
22
+ Require the gem:
23
+
24
+ ```ruby
25
+ require 'spain_zip_codes'
26
+ ```
27
+ ## Usage
28
+
29
+ ### Provinces
30
+
31
+ #### To get a province name from a zip code do:
32
+
33
+ ```ruby
34
+ SpainZipCodes.zip_to_province(zip)
35
+
36
+ > SpainZipCodes.zip_to_province('28001')
37
+ => 'Madrid'
38
+ ```
39
+
40
+ #### To get a zip code prefix for a province do:
41
+
42
+ ```ruby
43
+ SpainZipCodes.province_to_zip(province)
44
+
45
+ > SpainZipCodes.province_to_zip('Madrid')
46
+ => '28'
47
+ ```
48
+
49
+ ### Locations
50
+
51
+ #### To get a location name from a zip code do:
52
+
53
+ ```ruby
54
+ SpainZipCodes.zip_to_location(zip)
55
+
56
+ > SpainZipCodes.zip_to_location('28922')
57
+ => 'Alcorcón'
58
+ ```
59
+
60
+ #### To get the zip codes from a location name do:
61
+
62
+ ```ruby
63
+ SpainZipCodes.location_to_zip(location)
64
+
65
+ > SpainZipCodes.location_to_zip('Alcorcón')
66
+ => ['28920', '28921', '28922', '28923', '28924', '28925']
67
+
68
+ # A not found location will return an empty array
69
+
70
+ > SpainZipCodes.location_to_zip('Gallifrey')
71
+ => []
72
+ ```
73
+
74
+ #### To get the location slug from a zip code do:
75
+
76
+ ```ruby
77
+ SpainZipCodes.zip_to_location_slug(zip)
78
+
79
+ > SpainZipCodes.zip_to_location_slug('28750')
80
+ => 'san-agustin-de-guadalix'
81
+ ```
82
+
83
+ #### To get the zip codes from a location slug:
84
+
85
+ ```ruby
86
+ SpainZipCodes.location_slug_to_zip(location_slug)
87
+
88
+ > SpainZipCodes.location_slug_to_zip('alcorcon')
89
+ => ['28920', '28921', '28922', '28923', '28924', '28925']
90
+ ```
91
+
92
+ Note:
93
+
94
+ Arguments need to be strings.
95
+
96
+ If you give a function an invalid argument or nothing is found it will always return ``false``
97
+
98
+ ## Contributing
99
+
100
+ 1. Fork it ( https://github.com/luismiramirez/spain_zip_codes/fork )
101
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
102
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
103
+ 4. Push to the branch (`git push origin my-new-feature`)
104
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,29 @@
1
+ require 'spain_zip_codes/version'
2
+ require 'spain_zip_codes/provincer'
3
+ require 'spain_zip_codes/locationer'
4
+
5
+ module SpainZipCodes
6
+ def self.zip_to_province(zip)
7
+ Provincer.to_province(zip)
8
+ end
9
+
10
+ def self.province_to_zip(province)
11
+ Provincer.to_zip(province)
12
+ end
13
+
14
+ def self.zip_to_location(zip)
15
+ Locationer.to_location(zip)
16
+ end
17
+
18
+ def self.location_to_zip(location)
19
+ Locationer.to_zip(location)
20
+ end
21
+
22
+ def self.location_slug_to_zip(location_slug)
23
+ Locationer.slug_to_zip(location_slug)
24
+ end
25
+
26
+ def self.zip_to_location_slug(zip)
27
+ Locationer.zip_to_slug(zip)
28
+ end
29
+ end
@@ -0,0 +1,2049 @@
1
+ ---
2
+ locations:
3
+ madrid:
4
+ - '28001'
5
+ - '28002'
6
+ - '28003'
7
+ - '28004'
8
+ - '28005'
9
+ - '28006'
10
+ - '28007'
11
+ - '28008'
12
+ - '28009'
13
+ - '28010'
14
+ - '28011'
15
+ - '28012'
16
+ - '28013'
17
+ - '28014'
18
+ - '28015'
19
+ - '28016'
20
+ - '28017'
21
+ - '28018'
22
+ - '28019'
23
+ - '28020'
24
+ - '28021'
25
+ - '28022'
26
+ - '28023'
27
+ - '28024'
28
+ - '28025'
29
+ - '28026'
30
+ - '28027'
31
+ - '28028'
32
+ - '28029'
33
+ - '28030'
34
+ - '28031'
35
+ - '28032'
36
+ - '28033'
37
+ - '28034'
38
+ - '28035'
39
+ - '28036'
40
+ - '28037'
41
+ - '28038'
42
+ - '28039'
43
+ - '28040'
44
+ - '28041'
45
+ - '28042'
46
+ - '28043'
47
+ - '28044'
48
+ - '28045'
49
+ - '28046'
50
+ - '28047'
51
+ - '28048'
52
+ - '28049'
53
+ - '28050'
54
+ - '28051'
55
+ - '28052'
56
+ - '28053'
57
+ - '28070'
58
+ - '28071'
59
+ - '28080'
60
+ - '28082'
61
+ - '28083'
62
+ - '28085'
63
+ - '28086'
64
+ - '28087'
65
+ - '28706'
66
+ barcelona:
67
+ - '08001'
68
+ - '08002'
69
+ - '08003'
70
+ - '08004'
71
+ - '08005'
72
+ - '08006'
73
+ - '08007'
74
+ - '08008'
75
+ - '08009'
76
+ - '08010'
77
+ - '08011'
78
+ - '08012'
79
+ - '08013'
80
+ - '08014'
81
+ - '08015'
82
+ - '08016'
83
+ - '08017'
84
+ - '08018'
85
+ - '08019'
86
+ - '08020'
87
+ - '08021'
88
+ - '08022'
89
+ - '08023'
90
+ - '08024'
91
+ - '08025'
92
+ - '08026'
93
+ - '08027'
94
+ - '08028'
95
+ - '08029'
96
+ - '08030'
97
+ - '08031'
98
+ - '08032'
99
+ - '08033'
100
+ - '08034'
101
+ - '08035'
102
+ - '08036'
103
+ - '08037'
104
+ - '08038'
105
+ - '08039'
106
+ - '08040'
107
+ - '08041'
108
+ - '08042'
109
+ - '08070'
110
+ - '08071'
111
+ - '08080'
112
+ valencia:
113
+ - '46001'
114
+ - '46002'
115
+ - '46003'
116
+ - '46004'
117
+ - '46005'
118
+ - '46006'
119
+ - '46007'
120
+ - '46008'
121
+ - '46009'
122
+ - '46010'
123
+ - '46011'
124
+ - '46012'
125
+ - '46013'
126
+ - '46014'
127
+ - '46015'
128
+ - '46016'
129
+ - '46017'
130
+ - '46018'
131
+ - '46019'
132
+ - '46020'
133
+ - '46021'
134
+ - '46022'
135
+ - '46023'
136
+ - '46024'
137
+ - '46025'
138
+ - '46026'
139
+ - '46070'
140
+ - '46071'
141
+ - '46080'
142
+ - '46116'
143
+ sevilla:
144
+ - '41001'
145
+ - '41002'
146
+ - '41003'
147
+ - '41004'
148
+ - '41005'
149
+ - '41006'
150
+ - '41007'
151
+ - '41008'
152
+ - '41009'
153
+ - '41010'
154
+ - '41011'
155
+ - '41012'
156
+ - '41013'
157
+ - '41014'
158
+ - '41015'
159
+ - '41016'
160
+ - '41017'
161
+ - '41018'
162
+ - '41019'
163
+ - '41020'
164
+ - '41070'
165
+ - '41071'
166
+ - '41080'
167
+ - '41092'
168
+ zaragoza:
169
+ - '50001'
170
+ - '50002'
171
+ - '50003'
172
+ - '50004'
173
+ - '50005'
174
+ - '50006'
175
+ - '50007'
176
+ - '50008'
177
+ - '50009'
178
+ - '50010'
179
+ - '50011'
180
+ - '50012'
181
+ - '50013'
182
+ - '50014'
183
+ - '50015'
184
+ - '50016'
185
+ - '50017'
186
+ - '50018'
187
+ - '50059'
188
+ - '50070'
189
+ - '50071'
190
+ - '50080'
191
+ - '50090'
192
+ - '50190'
193
+ malaga:
194
+ - '29001'
195
+ - '29002'
196
+ - '29003'
197
+ - '29004'
198
+ - '29005'
199
+ - '29006'
200
+ - '29007'
201
+ - '29008'
202
+ - '29009'
203
+ - '29010'
204
+ - '29011'
205
+ - '29012'
206
+ - '29013'
207
+ - '29014'
208
+ - '29015'
209
+ - '29016'
210
+ - '29017'
211
+ - '29018'
212
+ - '29070'
213
+ - '29071'
214
+ - '29080'
215
+ - '29140'
216
+ - '29190'
217
+ - '29590'
218
+ murcia:
219
+ - '30001'
220
+ - '30002'
221
+ - '30003'
222
+ - '30004'
223
+ - '30005'
224
+ - '30006'
225
+ - '30007'
226
+ - '30008'
227
+ - '30009'
228
+ - '30010'
229
+ - '30011'
230
+ - '30012'
231
+ - '30070'
232
+ - '30071'
233
+ - '30080'
234
+ - '30100'
235
+ - '30570'
236
+ palma-de-mallorca:
237
+ - '07001'
238
+ - '07002'
239
+ - '07003'
240
+ - '07004'
241
+ - '07005'
242
+ - '07006'
243
+ - '07007'
244
+ - '07008'
245
+ - '07009'
246
+ - '07010'
247
+ - '07011'
248
+ - '07012'
249
+ - '07013'
250
+ - '07014'
251
+ - '07015'
252
+ - '07070'
253
+ - '07071'
254
+ - '07080'
255
+ - '07120'
256
+ - '07121'
257
+ - '07122'
258
+ - '07198'
259
+ - '07199'
260
+ - '07600'
261
+ - '07608'
262
+ - '07609'
263
+ - '07610'
264
+ - '07611'
265
+ bilbao:
266
+ - '48001'
267
+ - '48002'
268
+ - '48003'
269
+ - '48004'
270
+ - '48005'
271
+ - '48006'
272
+ - '48007'
273
+ - '48008'
274
+ - '48009'
275
+ - '48010'
276
+ - '48011'
277
+ - '48012'
278
+ - '48013'
279
+ - '48014'
280
+ - '48015'
281
+ - '48070'
282
+ - '48071'
283
+ - '48080'
284
+ cordoba:
285
+ - '14001'
286
+ - '14002'
287
+ - '14003'
288
+ - '14004'
289
+ - '14005'
290
+ - '14006'
291
+ - '14007'
292
+ - '14008'
293
+ - '14009'
294
+ - '14010'
295
+ - '14011'
296
+ - '14012'
297
+ - '14013'
298
+ - '14014'
299
+ - '14070'
300
+ - '14071'
301
+ - '14080'
302
+ - '14350'
303
+ - '14610'
304
+ - '14710'
305
+ - '14711'
306
+ valladolid:
307
+ - '47001'
308
+ - '47002'
309
+ - '47003'
310
+ - '47004'
311
+ - '47005'
312
+ - '47006'
313
+ - '47007'
314
+ - '47008'
315
+ - '47009'
316
+ - '47010'
317
+ - '47011'
318
+ - '47012'
319
+ - '47013'
320
+ - '47014'
321
+ - '47015'
322
+ - '47016'
323
+ - '47070'
324
+ - '47071'
325
+ - '47080'
326
+ vigo:
327
+ - '36200'
328
+ - '36201'
329
+ - '36202'
330
+ - '36203'
331
+ - '36204'
332
+ - '36205'
333
+ - '36206'
334
+ - '36207'
335
+ - '36208'
336
+ - '36209'
337
+ - '36210'
338
+ - '36211'
339
+ - '36212'
340
+ - '36213'
341
+ - '36214'
342
+ - '36215'
343
+ - '36216'
344
+ - '36310'
345
+ - '36312'
346
+ - '36313'
347
+ - '36314'
348
+ - '36315'
349
+ - '36317'
350
+ - '36318'
351
+ - '36330'
352
+ - '36331'
353
+ - '36339'
354
+ - '36390'
355
+ - '36392'
356
+ gijon:
357
+ - '33200'
358
+ - '33201'
359
+ - '33202'
360
+ - '33203'
361
+ - '33204'
362
+ - '33205'
363
+ - '33206'
364
+ - '33207'
365
+ - '33208'
366
+ - '33209'
367
+ - '33210'
368
+ - '33211'
369
+ - '33212'
370
+ - '33213'
371
+ - '33290'
372
+ - '33299'
373
+ - '33350'
374
+ - '33392'
375
+ - '33394'
376
+ granada:
377
+ - '18001'
378
+ - '18002'
379
+ - '18003'
380
+ - '18004'
381
+ - '18005'
382
+ - '18006'
383
+ - '18007'
384
+ - '18008'
385
+ - '18009'
386
+ - '18010'
387
+ - '18011'
388
+ - '18012'
389
+ - '18013'
390
+ - '18014'
391
+ - '18015'
392
+ - '18070'
393
+ - '18071'
394
+ - '18080'
395
+ oviedo:
396
+ - '33001'
397
+ - '33002'
398
+ - '33003'
399
+ - '33004'
400
+ - '33005'
401
+ - '33006'
402
+ - '33007'
403
+ - '33008'
404
+ - '33009'
405
+ - '33010'
406
+ - '33011'
407
+ - '33012'
408
+ - '33013'
409
+ - '33070'
410
+ - '33071'
411
+ - '33080'
412
+ - '33194'
413
+ - '33199'
414
+ - '33558'
415
+ badalona:
416
+ - '08910'
417
+ - '08911'
418
+ - '08912'
419
+ - '08913'
420
+ - '08914'
421
+ - '08915'
422
+ - '08916'
423
+ - '08917'
424
+ - '08918'
425
+ cartagena:
426
+ - '30200'
427
+ - '30201'
428
+ - '30202'
429
+ - '30203'
430
+ - '30204'
431
+ - '30205'
432
+ - '30300'
433
+ - '30310'
434
+ jerez-de-la-frontera:
435
+ - '11401'
436
+ - '11402'
437
+ - '11403'
438
+ - '11404'
439
+ - '11405'
440
+ - '11406'
441
+ - '11407'
442
+ - '11408'
443
+ - '11470'
444
+ - '11471'
445
+ - '11480'
446
+ - '11570'
447
+ - '11574'
448
+ - '11591'
449
+ - '11593'
450
+ - '11595'
451
+ sabadell:
452
+ - '08200'
453
+ - '08201'
454
+ - '08202'
455
+ - '08203'
456
+ - '08204'
457
+ - '08205'
458
+ - '08206'
459
+ - '08207'
460
+ - '08208'
461
+ - '08802'
462
+ - '08805'
463
+ santa-cruz-de-tenerife:
464
+ - '38001'
465
+ - '38002'
466
+ - '38003'
467
+ - '38004'
468
+ - '38005'
469
+ - '38006'
470
+ - '38007'
471
+ - '38008'
472
+ - '38009'
473
+ - '38010'
474
+ - '38070'
475
+ - '38071'
476
+ - '38080'
477
+ - '38150'
478
+ - '38170'
479
+ mostoles:
480
+ - '28930'
481
+ - '28931'
482
+ - '28932'
483
+ - '28933'
484
+ - '28934'
485
+ - '28935'
486
+ - '28936'
487
+ - '28937'
488
+ - '28938'
489
+ alcala-de-henares:
490
+ - '28800'
491
+ - '28801'
492
+ - '28802'
493
+ - '28803'
494
+ - '28804'
495
+ - '28805'
496
+ - '28806'
497
+ - '28807'
498
+ - '28870'
499
+ fuenlabrada:
500
+ - '28940'
501
+ - '28941'
502
+ - '28942'
503
+ - '28943'
504
+ - '28944'
505
+ - '28945'
506
+ - '28946'
507
+ - '28947'
508
+ pamplona:
509
+ - '31001'
510
+ - '31002'
511
+ - '31003'
512
+ - '31004'
513
+ - '31005'
514
+ - '31006'
515
+ - '31007'
516
+ - '31008'
517
+ - '31009'
518
+ - '31010'
519
+ - '31011'
520
+ - '31012'
521
+ - '31013'
522
+ - '31014'
523
+ - '31015'
524
+ - '31016'
525
+ - '31070'
526
+ - '31071'
527
+ - '31080'
528
+ almeria:
529
+ - '04001'
530
+ - '04002'
531
+ - '04003'
532
+ - '04004'
533
+ - '04005'
534
+ - '04006'
535
+ - '04007'
536
+ - '04008'
537
+ - '04009'
538
+ - '04070'
539
+ - '04071'
540
+ - '04080'
541
+ leganes:
542
+ - '28910'
543
+ - '28911'
544
+ - '28912'
545
+ - '28913'
546
+ - '28914'
547
+ - '28915'
548
+ - '28916'
549
+ - '28917'
550
+ - '28918'
551
+ - '28919'
552
+ san-sebastian:
553
+ - '49581'
554
+ burgos:
555
+ - '09001'
556
+ - '09002'
557
+ - '09003'
558
+ - '09004'
559
+ - '09005'
560
+ - '09006'
561
+ - '09007'
562
+ - '09070'
563
+ - '09071'
564
+ - '09080'
565
+ santander:
566
+ - '39001'
567
+ - '39002'
568
+ - '39003'
569
+ - '39004'
570
+ - '39005'
571
+ - '39006'
572
+ - '39007'
573
+ - '39008'
574
+ - '39009'
575
+ - '39010'
576
+ - '39011'
577
+ - '39012'
578
+ - '39070'
579
+ - '39071'
580
+ - '39080'
581
+ albacete:
582
+ - '02001'
583
+ - '02002'
584
+ - '02003'
585
+ - '02004'
586
+ - '02005'
587
+ - '02006'
588
+ - '02007'
589
+ - '02049'
590
+ - '02070'
591
+ - '02071'
592
+ - '02080'
593
+ getafe:
594
+ - '28900'
595
+ - '28901'
596
+ - '28902'
597
+ - '28903'
598
+ - '28904'
599
+ - '28905'
600
+ - '28906'
601
+ - '28909'
602
+ alcorcon:
603
+ - '28920'
604
+ - '28921'
605
+ - '28922'
606
+ - '28923'
607
+ - '28924'
608
+ - '28925'
609
+ logrono:
610
+ - '26001'
611
+ - '26002'
612
+ - '26003'
613
+ - '26004'
614
+ - '26005'
615
+ - '26006'
616
+ - '26007'
617
+ - '26070'
618
+ - '26071'
619
+ - '26080'
620
+ badajoz:
621
+ - '06001'
622
+ - '06002'
623
+ - '06003'
624
+ - '06004'
625
+ - '06005'
626
+ - '06006'
627
+ - '06007'
628
+ - '06008'
629
+ - '06009'
630
+ - '06010'
631
+ - '06011'
632
+ - '06012'
633
+ - '06070'
634
+ - '06071'
635
+ - '06080'
636
+ salamanca:
637
+ - '37001'
638
+ - '37002'
639
+ - '37003'
640
+ - '37004'
641
+ - '37005'
642
+ - '37006'
643
+ - '37007'
644
+ - '37008'
645
+ - '37070'
646
+ - '37071'
647
+ - '37080'
648
+ huelva:
649
+ - '21001'
650
+ - '21002'
651
+ - '21003'
652
+ - '21004'
653
+ - '21005'
654
+ - '21006'
655
+ - '21007'
656
+ - '21070'
657
+ - '21071'
658
+ - '21080'
659
+ tarragona:
660
+ - '43001'
661
+ - '43002'
662
+ - '43003'
663
+ - '43004'
664
+ - '43005'
665
+ - '43006'
666
+ - '43007'
667
+ - '43008'
668
+ - '43070'
669
+ - '43071'
670
+ - '43080'
671
+ - '43205'
672
+ leon:
673
+ - '24001'
674
+ - '24002'
675
+ - '24003'
676
+ - '24004'
677
+ - '24005'
678
+ - '24006'
679
+ - '24007'
680
+ - '24008'
681
+ - '24009'
682
+ - '24010'
683
+ - '24070'
684
+ - '24071'
685
+ - '24080'
686
+ dos-hermanas:
687
+ - '41700'
688
+ mataro:
689
+ - '08300'
690
+ - '08301'
691
+ - '08302'
692
+ - '08303'
693
+ - '08304'
694
+ cadiz:
695
+ - '11001'
696
+ - '11002'
697
+ - '11003'
698
+ - '11004'
699
+ - '11005'
700
+ - '11006'
701
+ - '11007'
702
+ - '11008'
703
+ - '11009'
704
+ - '11010'
705
+ - '11011'
706
+ - '11012'
707
+ - '11070'
708
+ - '11071'
709
+ - '11080'
710
+ santa-coloma-de-gramanet:
711
+ - '08920'
712
+ - '08921'
713
+ - '08922'
714
+ - '08923'
715
+ - '08924'
716
+ jaen:
717
+ - '23001'
718
+ - '23002'
719
+ - '23003'
720
+ - '23004'
721
+ - '23005'
722
+ - '23006'
723
+ - '23007'
724
+ - '23008'
725
+ - '23009'
726
+ - '23070'
727
+ - '23071'
728
+ - '23080'
729
+ algeciras:
730
+ - '11200'
731
+ - '11201'
732
+ - '11202'
733
+ - '11203'
734
+ - '11204'
735
+ - '11205'
736
+ - '11206'
737
+ - '11207'
738
+ - '11270'
739
+ - '11271'
740
+ - '11280'
741
+ reus:
742
+ - '43200'
743
+ - '43201'
744
+ - '43202'
745
+ - '43203'
746
+ - '43204'
747
+ - '43206'
748
+ telde:
749
+ - '35200'
750
+ - '35210'
751
+ - '35211'
752
+ - '35212'
753
+ - '35213'
754
+ - '35214'
755
+ - '35215'
756
+ - '35218'
757
+ - '35219'
758
+ lugo:
759
+ - '27001'
760
+ - '27002'
761
+ - '27003'
762
+ - '27004'
763
+ - '27070'
764
+ - '27071'
765
+ - '27080'
766
+ - '27297'
767
+ san-fernando:
768
+ - '37492'
769
+ santiago-de-compostela:
770
+ - '15701'
771
+ - '15702'
772
+ - '15703'
773
+ - '15704'
774
+ - '15705'
775
+ - '15706'
776
+ - '15707'
777
+ - '15770'
778
+ - '15771'
779
+ - '15780'
780
+ - '15781'
781
+ - '15782'
782
+ - '15898'
783
+ caceres:
784
+ - '10001'
785
+ - '10002'
786
+ - '10003'
787
+ - '10004'
788
+ - '10005'
789
+ - '10070'
790
+ - '10071'
791
+ - '10080'
792
+ cornella-de-llobregat:
793
+ - '08940'
794
+ guadalajara:
795
+ - '19001'
796
+ - '19002'
797
+ - '19003'
798
+ - '19004'
799
+ - '19005'
800
+ - '19070'
801
+ - '19071'
802
+ - '19080'
803
+ pozuelo-de-alarcon:
804
+ - '28220'
805
+ - '28223'
806
+ - '28224'
807
+ - '28230'
808
+ ceuta:
809
+ - '51001'
810
+ - '51002'
811
+ - '51003'
812
+ - '51004'
813
+ - '51005'
814
+ - '51070'
815
+ - '51071'
816
+ - '51080'
817
+ melilla:
818
+ - '52000'
819
+ - '52001'
820
+ - '52002'
821
+ - '52003'
822
+ - '52004'
823
+ - '52005'
824
+ - '52006'
825
+ - '52070'
826
+ - '52071'
827
+ - '52080'
828
+ toledo:
829
+ - '45001'
830
+ - '45002'
831
+ - '45003'
832
+ - '45004'
833
+ - '45005'
834
+ - '45006'
835
+ - '45007'
836
+ - '45008'
837
+ - '45009'
838
+ - '45070'
839
+ - '45071'
840
+ - '45080'
841
+ pontevedra:
842
+ - '36001'
843
+ - '36002'
844
+ - '36003'
845
+ - '36004'
846
+ - '36005'
847
+ - '36070'
848
+ - '36071'
849
+ - '36080'
850
+ - '36155'
851
+ - '36162'
852
+ aviles:
853
+ - '30812'
854
+ arona:
855
+ - '38640'
856
+ palencia:
857
+ - '34001'
858
+ - '34002'
859
+ - '34003'
860
+ - '34004'
861
+ - '34005'
862
+ - '34006'
863
+ - '34070'
864
+ - '34071'
865
+ - '34080'
866
+ gandia:
867
+ - '46700'
868
+ - '46701'
869
+ - '46702'
870
+ - '46703'
871
+ - '46730'
872
+ manresa:
873
+ - '08240'
874
+ - '08241'
875
+ - '08242'
876
+ - '08243'
877
+ - '08248'
878
+ ciudad-real:
879
+ - '13001'
880
+ - '13002'
881
+ - '13003'
882
+ - '13004'
883
+ - '13005'
884
+ - '13070'
885
+ - '13071'
886
+ - '13080'
887
+ rubi:
888
+ - '08191'
889
+ benidorm:
890
+ - '03500'
891
+ - '03501'
892
+ - '03502'
893
+ - '03503'
894
+ - '03508'
895
+ valdemoro:
896
+ - '28340'
897
+ ferrol:
898
+ - '15401'
899
+ - '15402'
900
+ - '15403'
901
+ - '15404'
902
+ - '15405'
903
+ - '15406'
904
+ - '15470'
905
+ - '15471'
906
+ - '15480'
907
+ - '15482'
908
+ - '15490'
909
+ torremolinos:
910
+ - '29620'
911
+ benalmadena:
912
+ - '29639'
913
+ estepona:
914
+ - '29680'
915
+ viladecans:
916
+ - '08840'
917
+ zamora:
918
+ - '49001'
919
+ - '49002'
920
+ - '49003'
921
+ - '49004'
922
+ - '49005'
923
+ - '49006'
924
+ - '49007'
925
+ - '49008'
926
+ - '49009'
927
+ - '49010'
928
+ - '49011'
929
+ - '49012'
930
+ - '49013'
931
+ - '49014'
932
+ - '49015'
933
+ - '49016'
934
+ - '49017'
935
+ - '49018'
936
+ - '49019'
937
+ - '49020'
938
+ - '49021'
939
+ - '49022'
940
+ - '49023'
941
+ - '49024'
942
+ - '49025'
943
+ - '49026'
944
+ - '49027'
945
+ - '49028'
946
+ - '49029'
947
+ - '49030'
948
+ - '49031'
949
+ - '49032'
950
+ - '49070'
951
+ - '49071'
952
+ - '49080'
953
+ collado-villalba:
954
+ - '28400'
955
+ motril:
956
+ - '18600'
957
+ irun:
958
+ - '20300'
959
+ - '20301'
960
+ - '20302'
961
+ - '20303'
962
+ - '20304'
963
+ - '20305'
964
+ linares:
965
+ - '23700'
966
+ granollers:
967
+ - '08400'
968
+ - '08401'
969
+ - '08402'
970
+ - '08403'
971
+ - '08404'
972
+ avila:
973
+ - '05001'
974
+ - '05002'
975
+ - '05003'
976
+ - '05004'
977
+ - '05005'
978
+ - '05070'
979
+ - '05071'
980
+ - '05080'
981
+ merida:
982
+ - '06800'
983
+ cuenca:
984
+ - '16001'
985
+ - '16002'
986
+ - '16003'
987
+ - '16004'
988
+ - '16070'
989
+ - '16071'
990
+ - '16080'
991
+ arganda-del-rey:
992
+ - '28500'
993
+ arrecife:
994
+ - '35500'
995
+ segovia:
996
+ - '40001'
997
+ - '40002'
998
+ - '40003'
999
+ - '40004'
1000
+ - '40005'
1001
+ - '40006'
1002
+ - '40070'
1003
+ - '40071'
1004
+ - '40080'
1005
+ huesca:
1006
+ - '22001'
1007
+ - '22002'
1008
+ - '22003'
1009
+ - '22004'
1010
+ - '22005'
1011
+ - '22006'
1012
+ - '22070'
1013
+ - '22071'
1014
+ - '22080'
1015
+ calvia:
1016
+ - '07184'
1017
+ mollet-del-valles:
1018
+ - '08100'
1019
+ puertollano:
1020
+ - '13500'
1021
+ villarreal:
1022
+ - '06107'
1023
+ portugalete:
1024
+ - '48920'
1025
+ boadilla-del-monte:
1026
+ - '28660'
1027
+ adeje:
1028
+ - '38670'
1029
+ pinto:
1030
+ - '28320'
1031
+ gava:
1032
+ - '08850'
1033
+ colmenar-viejo:
1034
+ - '28770'
1035
+ mislata:
1036
+ - '46920'
1037
+ mairena-del-aljarafe:
1038
+ - '41927'
1039
+ antequera:
1040
+ - '29200'
1041
+ alcantarilla:
1042
+ - '30820'
1043
+ plasencia:
1044
+ - '10600'
1045
+ manacor:
1046
+ - '07500'
1047
+ ecija:
1048
+ - '41400'
1049
+ soria:
1050
+ - '42001'
1051
+ - '42002'
1052
+ - '42003'
1053
+ - '42004'
1054
+ - '42005'
1055
+ - '42070'
1056
+ - '42071'
1057
+ - '42080'
1058
+ blanes:
1059
+ - '17300'
1060
+ igualada:
1061
+ - '08700'
1062
+ tomelloso:
1063
+ - '13700'
1064
+ andujar:
1065
+ - '23740'
1066
+ ripollet:
1067
+ - '08291'
1068
+ don-benito:
1069
+ - '06400'
1070
+ ubeda:
1071
+ - '23400'
1072
+ mazarron:
1073
+ - '30870'
1074
+ teruel:
1075
+ - '44001'
1076
+ - '44002'
1077
+ - '44003'
1078
+ - '44070'
1079
+ - '44071'
1080
+ - '44080'
1081
+ aguilas:
1082
+ - '30880'
1083
+ villena:
1084
+ - '03400'
1085
+ yecla:
1086
+ - '30510'
1087
+ almendralejo:
1088
+ - '06200'
1089
+ olot:
1090
+ - '17800'
1091
+ aranda-de-duero:
1092
+ - '09400'
1093
+ cambrils:
1094
+ - '43850'
1095
+ puerto-de-la-cruz:
1096
+ - '38400'
1097
+ castro-urdiales:
1098
+ - '39700'
1099
+ san-javier:
1100
+ - '30730'
1101
+ barbera-del-valles:
1102
+ - '08210'
1103
+ alcazar-de-san-juan:
1104
+ - '13600'
1105
+ camargo:
1106
+ - '39609'
1107
+ carballo:
1108
+ - '15100'
1109
+ hellin:
1110
+ - '02400'
1111
+ valdepenas:
1112
+ - '13300'
1113
+ redondela:
1114
+ - '36800'
1115
+ inca:
1116
+ - '07300'
1117
+ san-roque:
1118
+ - '11360'
1119
+ sueca:
1120
+ - '46410'
1121
+ sestao:
1122
+ - '48910'
1123
+ carmona:
1124
+ - '41410'
1125
+ sitges:
1126
+ - '08870'
1127
+ moron-de-la-frontera:
1128
+ - '41530'
1129
+ premia-de-mar:
1130
+ - '08330'
1131
+ algemesi:
1132
+ - '46680'
1133
+ durango:
1134
+ - '48200'
1135
+ almunecar:
1136
+ - '18690'
1137
+ martorell:
1138
+ - '08760'
1139
+ lepe:
1140
+ - '21440'
1141
+ lebrija:
1142
+ - '41740'
1143
+ benicarlo:
1144
+ - '12580'
1145
+ villarrobledo:
1146
+ - '02600'
1147
+ caravaca-de-la-cruz:
1148
+ - '30400'
1149
+ camas:
1150
+ - '41900'
1151
+ villanueva-de-la-serena:
1152
+ - '06700'
1153
+ pineda-de-mar:
1154
+ - '08397'
1155
+ jumilla:
1156
+ - '30520'
1157
+ marin:
1158
+ - '36900'
1159
+ onda:
1160
+ - '12200'
1161
+ almansa:
1162
+ - '02640'
1163
+ valls:
1164
+ - '43800'
1165
+ calafell:
1166
+ - '43820'
1167
+ calahorra:
1168
+ - '26500'
1169
+ martos:
1170
+ - '23600'
1171
+ adra:
1172
+ - '04770'
1173
+ paiporta:
1174
+ - '46200'
1175
+ altea:
1176
+ - '03590'
1177
+ olesa-de-montserrat:
1178
+ - '08640'
1179
+ tacoronte:
1180
+ - '38350'
1181
+ san-jose:
1182
+ - '11597'
1183
+ tomares:
1184
+ - '41940'
1185
+ illescas:
1186
+ - '45200'
1187
+ ciempozuelos:
1188
+ - '28350'
1189
+ pilar-de-la-horadada:
1190
+ - '03190'
1191
+ barbate:
1192
+ - '11160'
1193
+ alcala-la-real:
1194
+ - '23680'
1195
+ mejorada-del-campo:
1196
+ - '28840'
1197
+ alboraya:
1198
+ - '46120'
1199
+ almonte:
1200
+ - '21730'
1201
+ laguna-de-duero:
1202
+ - '47140'
1203
+ armilla:
1204
+ - '18100'
1205
+ baza:
1206
+ - '18800'
1207
+ isla-cristina:
1208
+ - '21410'
1209
+ moncada:
1210
+ - '46113'
1211
+ conil-de-la-frontera:
1212
+ - '11140'
1213
+ medina-del-campo:
1214
+ - '47400'
1215
+ betera:
1216
+ - '46117'
1217
+ amposta:
1218
+ - '43870'
1219
+ san-juan-de-aznalfarache:
1220
+ - '41920'
1221
+ requena:
1222
+ - '46340'
1223
+ maracena:
1224
+ - '18200'
1225
+ calatayud:
1226
+ - '50300'
1227
+ ayamonte:
1228
+ - '21400'
1229
+ alfafar:
1230
+ - '46910'
1231
+ alhama-de-murcia:
1232
+ - '30840'
1233
+ algete:
1234
+ - '28110'
1235
+ carcaixent:
1236
+ - '46740'
1237
+ manlleu:
1238
+ - '08560'
1239
+ moguer:
1240
+ - '21800'
1241
+ guia-de-isora:
1242
+ - '38680'
1243
+ guadix:
1244
+ - '18500'
1245
+ aspe:
1246
+ - '03680'
1247
+ las-palmas-de-gran-canaria:
1248
+ - '35001'
1249
+ - '35002'
1250
+ - '35003'
1251
+ - '35004'
1252
+ - '35005'
1253
+ - '35006'
1254
+ - '35007'
1255
+ - '35008'
1256
+ - '35009'
1257
+ - '35010'
1258
+ - '35011'
1259
+ - '35012'
1260
+ - '35013'
1261
+ - '35014'
1262
+ - '35015'
1263
+ - '35016'
1264
+ - '35017'
1265
+ - '35018'
1266
+ - '35019'
1267
+ - '35070'
1268
+ - '35071'
1269
+ - '35080'
1270
+ - '35220'
1271
+ - '35309'
1272
+ - '35310'
1273
+ alicante:
1274
+ - '03001'
1275
+ - '03002'
1276
+ - '03003'
1277
+ - '03004'
1278
+ - '03005'
1279
+ - '03006'
1280
+ - '03007'
1281
+ - '03008'
1282
+ - '03009'
1283
+ - '03010'
1284
+ - '03011'
1285
+ - '03012'
1286
+ - '03013'
1287
+ - '03014'
1288
+ - '03015'
1289
+ - '03016'
1290
+ - '03070'
1291
+ - '03071'
1292
+ - '03080'
1293
+ - '03114'
1294
+ - '03540'
1295
+ - '03559'
1296
+ hospitalet-de-llobregat:
1297
+ - '08900'
1298
+ - '08901'
1299
+ - '08902'
1300
+ - '08903'
1301
+ - '08904'
1302
+ - '08905'
1303
+ - '08906'
1304
+ - '08907'
1305
+ - '08908'
1306
+ la-coruna:
1307
+ - '15001'
1308
+ - '15002'
1309
+ - '15003'
1310
+ - '15004'
1311
+ - '15005'
1312
+ - '15006'
1313
+ - '15007'
1314
+ - '15008'
1315
+ - '15009'
1316
+ - '15010'
1317
+ - '15011'
1318
+ - '15070'
1319
+ - '15071'
1320
+ - '15080'
1321
+ - '15082'
1322
+ vitoria:
1323
+ - '01001'
1324
+ - '01002'
1325
+ - '01003'
1326
+ - '01004'
1327
+ - '01005'
1328
+ - '01006'
1329
+ - '01007'
1330
+ - '01008'
1331
+ - '01009'
1332
+ - '01010'
1333
+ - '01012'
1334
+ - '01013'
1335
+ - '01015'
1336
+ - '01070'
1337
+ - '01071'
1338
+ - '01080'
1339
+ elche:
1340
+ - '03200'
1341
+ - '03201'
1342
+ - '03202'
1343
+ - '03203'
1344
+ - '03204'
1345
+ - '03205'
1346
+ - '03206'
1347
+ - '03207'
1348
+ - '03290'
1349
+ - '03291'
1350
+ - '03293'
1351
+ - '03294'
1352
+ - '03295'
1353
+ - '03296'
1354
+ tarrasa:
1355
+ - '08220'
1356
+ - '08221'
1357
+ - '08222'
1358
+ - '08223'
1359
+ - '08224'
1360
+ - '08225'
1361
+ - '08226'
1362
+ - '08227'
1363
+ - '08228'
1364
+ castellon-de-la-plana:
1365
+ - '12001'
1366
+ - '12002'
1367
+ - '12003'
1368
+ - '12004'
1369
+ - '12005'
1370
+ - '12006'
1371
+ - '12070'
1372
+ - '12071'
1373
+ - '12080'
1374
+ - '12100'
1375
+ san-cristobal-de-la-laguna:
1376
+ - '38200'
1377
+ - '38201'
1378
+ - '38202'
1379
+ - '38203'
1380
+ - '38204'
1381
+ - '38205'
1382
+ - '38206'
1383
+ - '38207'
1384
+ - '38208'
1385
+ - '38291'
1386
+ - '38293'
1387
+ - '38295'
1388
+ - '38296'
1389
+ - '38297'
1390
+ - '38298'
1391
+ - '38320'
1392
+ marbella:
1393
+ - '29602'
1394
+ lerida:
1395
+ - '25001'
1396
+ - '25002'
1397
+ - '25003'
1398
+ - '25004'
1399
+ - '25005'
1400
+ - '25006'
1401
+ - '25007'
1402
+ - '25008'
1403
+ - '25070'
1404
+ - '25071'
1405
+ - '25080'
1406
+ - '25110'
1407
+ - '25190'
1408
+ - '25191'
1409
+ - '25192'
1410
+ - '25193'
1411
+ - '25194'
1412
+ - '25195'
1413
+ - '25196'
1414
+ - '25197'
1415
+ - '25198'
1416
+ - '25199'
1417
+ - '25716'
1418
+ parla:
1419
+ - '28982'
1420
+ torrejon-de-ardoz:
1421
+ - '28850'
1422
+ - '28851'
1423
+ alcobendas:
1424
+ - '28100'
1425
+ - '28108'
1426
+ - '28109'
1427
+ orense:
1428
+ - '32001'
1429
+ - '32002'
1430
+ - '32003'
1431
+ - '32004'
1432
+ - '32005'
1433
+ - '32070'
1434
+ - '32071'
1435
+ - '32080'
1436
+ torrevieja:
1437
+ - '03183'
1438
+ baracaldo:
1439
+ - '48900'
1440
+ - '48901'
1441
+ - '48902'
1442
+ - '48903'
1443
+ gerona:
1444
+ - '17001'
1445
+ - '17002'
1446
+ - '17003'
1447
+ - '17004'
1448
+ - '17005'
1449
+ - '17006'
1450
+ - '17007'
1451
+ - '17070'
1452
+ - '17071'
1453
+ - '17080'
1454
+ - '17190'
1455
+ lorca:
1456
+ - '30800'
1457
+ las-rozas-de-madrid:
1458
+ - '28231'
1459
+ coslada:
1460
+ - '28821'
1461
+ orihuela:
1462
+ - '03300'
1463
+ - '03689'
1464
+ - '03191'
1465
+ - '03192'
1466
+ - '03310'
1467
+ el-puerto-de-santa-maria:
1468
+ - '11500'
1469
+ talavera-de-la-reina:
1470
+ - '45600'
1471
+ - '45613'
1472
+ - '45614'
1473
+ - '45694'
1474
+ roquetas-de-mar:
1475
+ - '04740'
1476
+ san-cugat-del-valles:
1477
+ - '08171'
1478
+ - '08172'
1479
+ - '08173'
1480
+ - '08174'
1481
+ - '08190'
1482
+ - '08195'
1483
+ - '08196'
1484
+ - '08197'
1485
+ - '08198'
1486
+ mijas:
1487
+ - '29647'
1488
+ - '29648'
1489
+ - '29649'
1490
+ - '29650'
1491
+ - '29651'
1492
+ san-baudilio-de-llobregat:
1493
+ - '08830'
1494
+ el-ejido:
1495
+ - '04700'
1496
+ chiclana-de-la-frontera:
1497
+ - '11130'
1498
+ san-sebastian-de-los-reyes:
1499
+ - '28700'
1500
+ - '28701'
1501
+ - '28702'
1502
+ - '28703'
1503
+ - '28706'
1504
+ - '28707'
1505
+ - '28708'
1506
+ - '28709'
1507
+ torrente:
1508
+ - '46900'
1509
+ guecho:
1510
+ - '48930'
1511
+ - '48990'
1512
+ - '48991'
1513
+ - '48992'
1514
+ - '48993'
1515
+ rivas-vaciamadrid:
1516
+ - '28521'
1517
+ - '28522'
1518
+ - '28523'
1519
+ - '28529'
1520
+ fuengirola:
1521
+ - '29640'
1522
+ velez-malaga:
1523
+ - '29700'
1524
+ alcala-de-guadaira:
1525
+ - '41500'
1526
+ majadahonda:
1527
+ - '28221'
1528
+ - '28222'
1529
+ santa-lucia-de-tirajana:
1530
+ - '35280'
1531
+ molina-de-segura:
1532
+ - '30500'
1533
+ ponferrada:
1534
+ - '24400'
1535
+ sanlucar-de-barrameda:
1536
+ - '11540'
1537
+ paterna:
1538
+ - '46980'
1539
+ villanueva-y-geltru:
1540
+ - '08800'
1541
+ sagunto:
1542
+ - '46500'
1543
+ el-prat-de-llobregat:
1544
+ - '08820'
1545
+ casteldefels:
1546
+ - '08860'
1547
+ la-linea-de-la-concepcion:
1548
+ - '11300'
1549
+ alcoy:
1550
+ - '03800'
1551
+ - '03801'
1552
+ - '03802'
1553
+ - '03803'
1554
+ - '03804'
1555
+ aranjuez:
1556
+ - '28300'
1557
+ sardanola-del-valles:
1558
+ - '08290'
1559
+ san-bartolome-de-tirajana:
1560
+ - '35550'
1561
+ san-vicente-del-raspeig:
1562
+ - '03690'
1563
+ torrelavega:
1564
+ - '39300'
1565
+ - '39315'
1566
+ - '39316'
1567
+ - '39317'
1568
+ elda:
1569
+ - '03600'
1570
+ siero:
1571
+ - '33510'
1572
+ utrera:
1573
+ - '41471'
1574
+ - '41710'
1575
+ - '41719'
1576
+ - '41720'
1577
+ - '41727'
1578
+ - '41728'
1579
+ ibiza:
1580
+ - '07800'
1581
+ santurce:
1582
+ - '48980'
1583
+ esplugas-de-llobregat:
1584
+ - '08950'
1585
+ figueras:
1586
+ - '17484'
1587
+ - '17600'
1588
+ alcira:
1589
+ - '46600'
1590
+ denia:
1591
+ - '03700'
1592
+ - '03709'
1593
+ - '03749'
1594
+ - '03770'
1595
+ - '03780'
1596
+ san-feliu-de-llobregat:
1597
+ - '08980'
1598
+ langreo:
1599
+ - '33949'
1600
+ lucena:
1601
+ - '14900'
1602
+ granadilla-de-abona:
1603
+ - '38600'
1604
+ mieres:
1605
+ - '33600'
1606
+ basauri:
1607
+ - '48970'
1608
+ la-orotava:
1609
+ - '38300'
1610
+ san-fernando-de-henares:
1611
+ - '28830'
1612
+ puerto-real:
1613
+ - '11510'
1614
+ tres-cantos:
1615
+ - '28760'
1616
+ - '28761'
1617
+ rincon-de-la-victoria:
1618
+ - '29738'
1619
+ - '29730'
1620
+ - '29720'
1621
+ vich:
1622
+ - '08500'
1623
+ lloret-de-mar:
1624
+ - '17310'
1625
+ - '17430'
1626
+ renteria:
1627
+ - '20100'
1628
+ naron:
1629
+ - '15570'
1630
+ villafranca-del-panades:
1631
+ - '08720'
1632
+ miranda-de-ebro:
1633
+ - '09200'
1634
+ - '09293'
1635
+ - '09212'
1636
+ - '09218'
1637
+ - '09219'
1638
+ - '26212'
1639
+ burjasot:
1640
+ - '46100'
1641
+ los-realejos:
1642
+ - '38419'
1643
+ - '38410'
1644
+ - '38412'
1645
+ - '38413'
1646
+ - '38415'
1647
+ - '38417'
1648
+ - '38412'
1649
+ - '38414'
1650
+ - '38416'
1651
+ - '38414'
1652
+ los-palacios-y-villafranca:
1653
+ - '41720'
1654
+ villagarcia-de-arosa:
1655
+ - '36600'
1656
+ la-rinconada:
1657
+ - '41309'
1658
+ onteniente:
1659
+ - '46870'
1660
+ lluchmayor:
1661
+ - '07620'
1662
+ arucas:
1663
+ - '35400'
1664
+ - '35411'
1665
+ - '35413'
1666
+ - '35415'
1667
+ - '35000'
1668
+ - '35404'
1669
+ - '35412'
1670
+ - '35414'
1671
+ - '35418'
1672
+ ronda:
1673
+ - '29400'
1674
+ - '29394'
1675
+ - '29430'
1676
+ - '29471'
1677
+ alhaurin-de-la-torre:
1678
+ - '29130'
1679
+ vendrell:
1680
+ - '43700'
1681
+ puerto-del-rosario:
1682
+ - '35600'
1683
+ - '35610'
1684
+ - '35611'
1685
+ - '35612'
1686
+ - '35613'
1687
+ - '35637'
1688
+ burriana:
1689
+ - '12530'
1690
+ tudela:
1691
+ - '31500'
1692
+ cieza:
1693
+ - '30530'
1694
+ petrel:
1695
+ - '03610'
1696
+ tortosa:
1697
+ - '43500'
1698
+ marrachi:
1699
+ - '07141'
1700
+ moncada-y-reixach:
1701
+ - '08110'
1702
+ azuqueca-de-henares:
1703
+ - '19200'
1704
+ san-adrian-de-besos:
1705
+ - '08930'
1706
+ oleiros:
1707
+ - '15171'
1708
+ - '15172'
1709
+ - '15173'
1710
+ - '15176'
1711
+ - '15177'
1712
+ - '15178'
1713
+ - '15179'
1714
+ santa-eulalia-del-rio:
1715
+ - '07840'
1716
+ santa-pola:
1717
+ - '03130'
1718
+ torre-pacheco:
1719
+ - '30591'
1720
+ - '30592'
1721
+ - '30700'
1722
+ - '30708'
1723
+ - '30709'
1724
+ - '30710'
1725
+ - '30739'
1726
+ vall-de-uxo:
1727
+ - '12600'
1728
+ villajoyosa:
1729
+ - '03570'
1730
+ galapagar:
1731
+ - '28250'
1732
+ - '28260'
1733
+ - '28270'
1734
+ - '28292'
1735
+ - '28400'
1736
+ - '28420'
1737
+ javea:
1738
+ - '03730'
1739
+ - '03737'
1740
+ - '03738'
1741
+ - '03739'
1742
+ san-juan-despi:
1743
+ - '08970'
1744
+ san-andres-del-rabanedo:
1745
+ - '24190'
1746
+ - '24191'
1747
+ - '24009'
1748
+ - '24010'
1749
+ - '24282'
1750
+ arcos-de-la-frontera:
1751
+ - '11620'
1752
+ - '11630'
1753
+ - '11638'
1754
+ manises:
1755
+ - '46940'
1756
+ aldaya:
1757
+ - '46960'
1758
+ arteijo:
1759
+ - '15142'
1760
+ lejona:
1761
+ - '48940'
1762
+ puente-genil:
1763
+ - '14500'
1764
+ - '14512'
1765
+ san-juan-de-alicante:
1766
+ - '03550'
1767
+ el-masnou:
1768
+ - '08320'
1769
+ torrelodones:
1770
+ - '28250'
1771
+ san-antonio-abad:
1772
+ - '07800'
1773
+ - '07816'
1774
+ - '07820'
1775
+ - '07828'
1776
+ nerja:
1777
+ - '29780'
1778
+ - '29787'
1779
+ pielagos:
1780
+ - '39612'
1781
+ - '39120'
1782
+ - '39470'
1783
+ - '39477'
1784
+ - '39478'
1785
+ - '39479'
1786
+ coin:
1787
+ - '29100'
1788
+ esparraguera:
1789
+ - '08292'
1790
+ mondragon:
1791
+ - '20500'
1792
+ - '20509'
1793
+ vilaseca:
1794
+ - '43480'
1795
+ san-feliu-de-guixols:
1796
+ - '17220'
1797
+ la-estrada:
1798
+ - '36680'
1799
+ puebla-de-vallbona:
1800
+ - '46185'
1801
+ alfaz-del-pi:
1802
+ - '03580'
1803
+ loja:
1804
+ - '18300'
1805
+ - '18311'
1806
+ - '18312'
1807
+ - '18313'
1808
+ - '18314'
1809
+ rojales:
1810
+ - '03170'
1811
+ mairena-del-alcor:
1812
+ - '41510'
1813
+ baranain:
1814
+ - '31010'
1815
+ palma-del-rio:
1816
+ - '14700'
1817
+ - '14709'
1818
+ - '14730'
1819
+ - '14749'
1820
+ las-torres-de-cotillas:
1821
+ - '30565'
1822
+ cabra:
1823
+ - '14811'
1824
+ - '14930'
1825
+ - '14940'
1826
+ - '14949'
1827
+ los-llanos-de-aridane:
1828
+ - '38768'
1829
+ lalin:
1830
+ - '36500'
1831
+ - '36515'
1832
+ - '36511'
1833
+ - '36516'
1834
+ - '36519'
1835
+ - '36598'
1836
+ - '36512'
1837
+ - '36517'
1838
+ - '36583'
1839
+ - '36510'
1840
+ - '36514'
1841
+ - '36518'
1842
+ - '36596'
1843
+ ribarroja-del-turia:
1844
+ - '46190'
1845
+ baena:
1846
+ - '14850'
1847
+ - '14859'
1848
+ - '14950'
1849
+ teguise:
1850
+ - '35530'
1851
+ pajara:
1852
+ - '35628'
1853
+ - '35625'
1854
+ - '35626'
1855
+ - '35627'
1856
+ tias:
1857
+ - '35510'
1858
+ - '35571'
1859
+ - '35572'
1860
+ picasent:
1861
+ - '46220'
1862
+ chirivela:
1863
+ - '46950'
1864
+ salt:
1865
+ - '17190'
1866
+ alacuas:
1867
+ - '46970'
1868
+ totana:
1869
+ - '30850'
1870
+ - '30858'
1871
+ - '30859'
1872
+ ingenio:
1873
+ - '35250'
1874
+ - '35240'
1875
+ - '35259'
1876
+ - '35000'
1877
+ aguimes:
1878
+ - '35260'
1879
+ calpe:
1880
+ - '03710'
1881
+ jativa:
1882
+ - '46800'
1883
+ ciudadela:
1884
+ - '07760'
1885
+ nijar:
1886
+ - '04100'
1887
+ - '04110'
1888
+ - '04113'
1889
+ - '04114'
1890
+ - '04115'
1891
+ - '04116'
1892
+ - '04117'
1893
+ - '04118'
1894
+ - '04119'
1895
+ - '04147'
1896
+ - '04149'
1897
+ - '04151'
1898
+ - '04188'
1899
+ coria-del-rio:
1900
+ - '41100'
1901
+ culleredo:
1902
+ - '15189'
1903
+ - '15139'
1904
+ - '15174'
1905
+ - '15180'
1906
+ - '15170'
1907
+ - '15198'
1908
+ - '15199'
1909
+ rota:
1910
+ - '11520'
1911
+ galdacano:
1912
+ - '48960'
1913
+ mahon:
1914
+ - '07700'
1915
+ - '07701'
1916
+ - '07702'
1917
+ - '07703'
1918
+ - '07714'
1919
+ ames:
1920
+ - '15229'
1921
+ - '15864'
1922
+ - '15870'
1923
+ - '15895'
1924
+ - '15220'
1925
+ - '15228'
1926
+ san-pedro-de-ribas:
1927
+ - '08810'
1928
+ vinaroz:
1929
+ - '12500'
1930
+ oliva:
1931
+ - '46780'
1932
+ crevillente:
1933
+ - '03330'
1934
+ san-vicente-dels-horts:
1935
+ - '08620'
1936
+ riveira:
1937
+ - '15960'
1938
+ eibar:
1939
+ - '20600'
1940
+ campello:
1941
+ - '03560'
1942
+ catarroja:
1943
+ - '46470'
1944
+ san-andres-de-la-barca:
1945
+ - '08740'
1946
+ novelda:
1947
+ - '03660'
1948
+ villaviciosa-de-odon:
1949
+ - '28670'
1950
+ salou:
1951
+ - '43840'
1952
+ cangas-de-morrazo:
1953
+ - '36940'
1954
+ candelaria:
1955
+ - '38509'
1956
+ - '38510'
1957
+ - '38520'
1958
+ - '38530'
1959
+ - '38540'
1960
+ almazora:
1961
+ - '12550'
1962
+ cuart-de-poblet:
1963
+ - '46930'
1964
+ santa-perpetua-de-moguda:
1965
+ - '08130'
1966
+ navalcarnero:
1967
+ - '28600'
1968
+ molins-de-rey:
1969
+ - '08750'
1970
+ galdar:
1971
+ - '35460'
1972
+ erandio:
1973
+ - '48950'
1974
+ icod-de-los-vinos:
1975
+ - '38438'
1976
+ - '38430'
1977
+ - '38434'
1978
+ - '38339'
1979
+ san-pedro-del-pinatar:
1980
+ - '30740'
1981
+ - '30749'
1982
+ montilla:
1983
+ - '14550'
1984
+ alhaurin-el-grande:
1985
+ - '29120'
1986
+ ibi:
1987
+ - '03440'
1988
+ vicar:
1989
+ - '04738'
1990
+ - '04727'
1991
+ cambre:
1992
+ - '15660'
1993
+ - '15650'
1994
+ - '15659'
1995
+ - '15668'
1996
+ - '15669'
1997
+ - '15679'
1998
+ - '15181'
1999
+ puenteareas:
2000
+ - '36860'
2001
+ priego-de-cordoba:
2002
+ - '14800'
2003
+ - '14811'
2004
+ - '14814'
2005
+ - '14815'
2006
+ - '14816'
2007
+ - '14817'
2008
+ muchamiel:
2009
+ - '03110'
2010
+ mogan:
2011
+ - '35140'
2012
+ liria:
2013
+ - '46160'
2014
+ cullera:
2015
+ - '46400'
2016
+ - '46408'
2017
+ - '46409'
2018
+ castellar-del-valles:
2019
+ - '08211'
2020
+ la-oliva:
2021
+ - '35640'
2022
+ castrillon:
2023
+ - '33610'
2024
+ - '33401'
2025
+ - '33405'
2026
+ - '33410'
2027
+ - '33412'
2028
+ - '33417'
2029
+ - '33450'
2030
+ - '33456'
2031
+ - '33457'
2032
+ - '33459'
2033
+ cartama:
2034
+ - '29010'
2035
+ - '29569'
2036
+ - '29570'
2037
+ - '29580'
2038
+ - '29592'
2039
+ los-barrios:
2040
+ - '11370'
2041
+ palafrugell:
2042
+ - '17200'
2043
+ - '17210'
2044
+ - '17211'
2045
+ - '17212'
2046
+ - '17213'
2047
+ - '17124'
2048
+ zarauz:
2049
+ - '20800'