opensteam 0.9.2 → 0.9.3

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 (213) hide show
  1. data/CHANGELOG +53 -0
  2. data/README.rdoc +19 -10
  3. data/generators/opensteam/opensteam_generator.rb +27 -3
  4. data/generators/opensteam/templates/app/controllers/admin/configurations_controller.rb +85 -0
  5. data/generators/opensteam/templates/app/controllers/admin/inventories_controller.rb +1 -1
  6. data/generators/opensteam/templates/app/controllers/admin/invoices_controller.rb +35 -4
  7. data/generators/opensteam/templates/app/controllers/admin/orders_controller.rb +5 -4
  8. data/generators/opensteam/templates/app/controllers/admin/shipments_controller.rb +6 -3
  9. data/generators/opensteam/templates/app/controllers/admin/shipping_rate_groups_controller.rb +76 -0
  10. data/generators/opensteam/templates/app/controllers/admin/tax_groups_controller.rb +124 -0
  11. data/generators/opensteam/templates/app/controllers/admin/tax_rules_controller.rb +19 -0
  12. data/generators/opensteam/templates/app/controllers/admin/tax_zones_controller.rb +118 -0
  13. data/generators/opensteam/templates/app/controllers/admin/users_controller.rb +1 -1
  14. data/generators/opensteam/templates/app/controllers/admin_controller.rb +20 -0
  15. data/generators/opensteam/templates/app/controllers/carts_controller.rb +118 -0
  16. data/generators/opensteam/templates/app/controllers/checkout_controller.rb +119 -79
  17. data/generators/opensteam/templates/app/controllers/profile_controller.rb +2 -4
  18. data/generators/opensteam/templates/app/controllers/searches_controller.rb +1 -1
  19. data/generators/opensteam/templates/app/controllers/user_sessions_controller.rb +2 -1
  20. data/generators/opensteam/templates/app/controllers/users_controller.rb +10 -3
  21. data/generators/opensteam/templates/app/helpers/admin_helper.rb +15 -1
  22. data/generators/opensteam/templates/app/helpers/checkout_helper.rb +38 -0
  23. data/generators/opensteam/templates/app/helpers/webshop_helper.rb +6 -1
  24. data/generators/opensteam/templates/app/models/zone.rb +18 -0
  25. data/generators/opensteam/templates/app/views/admin/_menu.html.erb +18 -0
  26. data/generators/opensteam/templates/app/views/admin/catalog.html.erb +2 -3
  27. data/generators/opensteam/templates/app/views/admin/configurations/edit.html.erb +20 -0
  28. data/generators/opensteam/templates/app/views/admin/configurations/index.html.erb +22 -0
  29. data/generators/opensteam/templates/app/views/admin/configurations/new.html.erb +19 -0
  30. data/generators/opensteam/templates/app/views/admin/configurations/show.html.erb +13 -0
  31. data/generators/opensteam/templates/app/views/admin/filters/_filter.html.erb +1 -1
  32. data/generators/opensteam/templates/app/views/admin/index.html.erb +0 -19
  33. data/generators/opensteam/templates/app/views/admin/inventories/edit.html.erb +10 -6
  34. data/generators/opensteam/templates/app/views/admin/inventories/new.html.erb +5 -0
  35. data/generators/opensteam/templates/app/views/admin/inventories/show.html.erb +10 -6
  36. data/generators/opensteam/templates/app/views/admin/invoices/_invoice.html.erb +1 -0
  37. data/generators/opensteam/templates/app/views/admin/invoices/_invoice_fields.html.erb +52 -0
  38. data/generators/opensteam/templates/app/views/admin/invoices/new.html.erb +9 -37
  39. data/generators/opensteam/templates/app/views/admin/invoices/show.html.erb +10 -36
  40. data/generators/opensteam/templates/app/views/admin/invoices/show.pdf.prawn +59 -0
  41. data/generators/opensteam/templates/app/views/admin/order_config.html.erb +5 -0
  42. data/generators/opensteam/templates/app/views/admin/order_items/_item_entry.html.erb +9 -0
  43. data/generators/opensteam/templates/app/views/admin/order_items/_items_table.html.erb +16 -0
  44. data/generators/opensteam/templates/app/views/admin/orders/_order.html.erb +9 -9
  45. data/generators/opensteam/templates/app/views/admin/orders/_orders.html.erb +1 -1
  46. data/generators/opensteam/templates/app/views/admin/orders/show.html.erb +25 -9
  47. data/generators/opensteam/templates/app/views/admin/payment_types.html.erb +27 -0
  48. data/generators/opensteam/templates/app/views/admin/payments/_credit_card_payment.html.erb +26 -0
  49. data/generators/opensteam/templates/app/views/admin/payments/_credit_card_payment_info.html.erb +15 -0
  50. data/generators/opensteam/templates/app/views/admin/payments/_direct_debit_payment.html.erb +5 -0
  51. data/generators/opensteam/templates/app/views/admin/shipments/new.html.erb +45 -30
  52. data/generators/opensteam/templates/app/views/admin/shipments/show.html.erb +3 -3
  53. data/generators/opensteam/templates/app/views/admin/shipping_rate_groups/_payment_addition.html.erb +12 -0
  54. data/generators/opensteam/templates/app/views/admin/shipping_rate_groups/_rate.html.erb +16 -0
  55. data/generators/opensteam/templates/app/views/admin/shipping_rate_groups/edit.html.erb +63 -0
  56. data/generators/opensteam/templates/app/views/admin/shipping_rate_groups/index.html.erb +28 -0
  57. data/generators/opensteam/templates/app/views/admin/shipping_rate_groups/new.html.erb +60 -0
  58. data/generators/opensteam/templates/app/views/admin/shipping_rate_groups/show.html.erb +13 -0
  59. data/generators/opensteam/templates/app/views/admin/system.html.erb +5 -0
  60. data/generators/opensteam/templates/app/views/admin/tax_groups/_attributes.html.erb +11 -0
  61. data/generators/opensteam/templates/app/views/admin/tax_groups/_tax_groups.html.erb +17 -0
  62. data/generators/opensteam/templates/app/views/admin/tax_groups/_tax_groups_row.html.erb +12 -0
  63. data/generators/opensteam/templates/app/views/admin/tax_groups/_tax_rule.html.erb +14 -0
  64. data/generators/opensteam/templates/app/views/admin/tax_groups/edit.html.erb +26 -0
  65. data/generators/opensteam/templates/app/views/admin/tax_groups/index.html.erb +8 -0
  66. data/generators/opensteam/templates/app/views/admin/tax_groups/new.html.erb +27 -0
  67. data/generators/opensteam/templates/app/views/admin/tax_groups/show.html.erb +28 -0
  68. data/generators/opensteam/templates/app/views/admin/tax_zones/_attributes.html.erb +18 -0
  69. data/generators/opensteam/templates/app/views/admin/tax_zones/_tax_zone_row.html.erb +13 -0
  70. data/generators/opensteam/templates/app/views/admin/tax_zones/_tax_zones.html.erb +11 -0
  71. data/generators/opensteam/templates/app/views/admin/tax_zones/edit.html.erb +16 -0
  72. data/generators/opensteam/templates/app/views/admin/tax_zones/index.html.erb +16 -0
  73. data/generators/opensteam/templates/app/views/admin/tax_zones/new.html.erb +14 -0
  74. data/generators/opensteam/templates/app/views/admin/tax_zones/show.html.erb +15 -0
  75. data/generators/opensteam/templates/app/views/admin/users.html.erb +0 -1
  76. data/generators/opensteam/templates/app/views/admin/users/show.html.erb +10 -0
  77. data/generators/opensteam/templates/app/views/administration_mailer/order_customer.erb +1 -1
  78. data/generators/opensteam/templates/app/views/carts/_cart.html.erb +7 -0
  79. data/generators/opensteam/templates/app/views/carts/_cart_content.html.erb +45 -0
  80. data/generators/opensteam/templates/app/views/carts/create.rjs +3 -0
  81. data/generators/opensteam/templates/app/views/{cart → carts}/index.html.erb +0 -0
  82. data/generators/opensteam/templates/app/views/carts/update.rjs +11 -0
  83. data/generators/opensteam/templates/app/views/checkout/_address.html.erb +42 -0
  84. data/generators/opensteam/templates/app/views/checkout/_customer.html.erb +31 -0
  85. data/generators/opensteam/templates/app/views/checkout/_edit_checkout.html.erb +42 -0
  86. data/generators/opensteam/templates/app/views/checkout/_new_checkout.html.erb +44 -0
  87. data/generators/opensteam/templates/app/views/checkout/_shipping_buttons.html.erb +8 -0
  88. data/generators/opensteam/templates/app/views/checkout/edit.html.erb +7 -0
  89. data/generators/opensteam/templates/app/views/checkout/new.html.erb +11 -0
  90. data/generators/opensteam/templates/app/views/checkout/outro.html.erb +1 -4
  91. data/generators/opensteam/templates/app/views/checkout/show.html.erb +63 -0
  92. data/generators/opensteam/templates/app/views/common/_header_admin.html.erb +5 -0
  93. data/generators/opensteam/templates/app/views/layouts/admin.html.erb +28 -12
  94. data/generators/opensteam/templates/app/views/layouts/profile.html.erb +2 -2
  95. data/generators/opensteam/templates/app/views/layouts/webshop.html.erb +5 -4
  96. data/generators/opensteam/templates/app/views/payment/_advance_payment_payment.html.erb +1 -0
  97. data/generators/opensteam/templates/app/views/payment/_credit_card_payment.html.erb +37 -0
  98. data/generators/opensteam/templates/app/views/payment/_credit_card_payment_confirmation.html.erb +20 -0
  99. data/generators/opensteam/templates/app/views/payment/_direct_debit_payment.html.erb +5 -0
  100. data/generators/opensteam/templates/app/views/payment/_direct_debit_payment_confirmation.html.erb +5 -0
  101. data/generators/opensteam/templates/app/views/profile/index.html.erb +1 -1
  102. data/generators/opensteam/templates/app/views/profile/infos/edit.html.erb +20 -12
  103. data/generators/opensteam/templates/app/views/profile/infos/edit_password.html.erb +16 -12
  104. data/generators/opensteam/templates/app/views/profile/orders/_order.html.erb +1 -1
  105. data/generators/opensteam/templates/app/views/profile/orders/show.html.erb +10 -7
  106. data/generators/opensteam/templates/app/views/webshop/_inventory_content.html.erb +1 -0
  107. data/generators/opensteam/templates/app/views/webshop/show.html.erb +3 -1
  108. data/generators/opensteam/templates/config/initializers/init_states.rb +13 -24
  109. data/generators/opensteam/templates/config/initializers/opensteam.rb +41 -0
  110. data/generators/opensteam/templates/config/initializers/opensteam_model_tables.rb +49 -10
  111. data/generators/opensteam/templates/config/initializers/opensteam_security.rb +8 -0
  112. data/generators/opensteam/templates/config/initializers/payment_process.rb +37 -0
  113. data/generators/opensteam/templates/db/migrate/20080609095723_create_addresses.rb +8 -2
  114. data/generators/opensteam/templates/db/migrate/20080609095726_create_inventories.rb +6 -3
  115. data/generators/opensteam/templates/db/migrate/20080609095728_create_order_items.rb +12 -1
  116. data/generators/opensteam/templates/db/migrate/20080609095729_create_orders.rb +8 -12
  117. data/generators/opensteam/templates/db/migrate/20080609095730_create_payment_types.rb +2 -0
  118. data/generators/opensteam/templates/db/migrate/20080714131513_create_invoices.rb +2 -1
  119. data/generators/opensteam/templates/db/migrate/20080714131650_create_shipments.rb +3 -1
  120. data/generators/opensteam/templates/db/migrate/20080808075247_create_containers.rb +30 -0
  121. data/generators/opensteam/templates/db/migrate/20080808083011_create_container_items.rb +25 -0
  122. data/generators/opensteam/templates/db/migrate/20080812102727_create_tax_zones.rb +16 -0
  123. data/generators/opensteam/templates/db/migrate/20080812102858_create_tax_rules.rb +15 -0
  124. data/generators/opensteam/templates/db/migrate/20080812102956_create_tax_groups.rb +14 -0
  125. data/generators/opensteam/templates/db/migrate/20080831181436_create_configurations.rb +15 -0
  126. data/generators/opensteam/templates/db/migrate/20080903131506_create_payments.rb +22 -0
  127. data/generators/opensteam/templates/db/migrate/20080904133625_create_payment_transactions.rb +24 -0
  128. data/generators/opensteam/templates/db/migrate/20080916102341_create_zones.rb +19 -0
  129. data/generators/opensteam/templates/db/migrate/20080916134340_create_region_shipping_rates.rb +18 -0
  130. data/generators/opensteam/templates/db/migrate/20080916134523_create_shipping_rate_groups.rb +18 -0
  131. data/generators/opensteam/templates/db/migrate/20080916135226_create_shipping_payment_additions.rb +20 -0
  132. data/generators/opensteam/templates/db/migrate/20080916135228_init_opensteam_config.rb +60 -0
  133. data/generators/opensteam/templates/public/images/opensteam_black.jpg +0 -0
  134. data/generators/opensteam/templates/public/images/pdf.png +0 -0
  135. data/generators/opensteam/templates/public/images/shader.png +0 -0
  136. data/generators/opensteam/templates/public/index.html +1 -0
  137. data/generators/opensteam/templates/public/javascripts/opensteam.js +21 -21
  138. data/generators/opensteam/templates/public/stylesheets/opensteam_admin.css +291 -0
  139. data/generators/opensteam/templates/public/stylesheets/opensteam_white.css +47 -11
  140. data/generators/opensteam/templates/tasks/opensteam.rake +2 -12
  141. data/generators/opensteam/templates/test/fixtures/addresses.yml +26 -0
  142. data/generators/opensteam/templates/test/fixtures/configurations.yml +29 -0
  143. data/generators/opensteam/templates/test/fixtures/inventories.yml +32 -15
  144. data/generators/opensteam/templates/test/fixtures/profiles.yml +21 -0
  145. data/generators/opensteam/templates/test/fixtures/region_shipping_rates.yml +33 -0
  146. data/generators/opensteam/templates/test/fixtures/shipping_payment_additions.yml +91 -0
  147. data/generators/opensteam/templates/test/fixtures/shipping_rate_groups.yml +25 -0
  148. data/generators/opensteam/templates/test/fixtures/tax_groups.yml +13 -0
  149. data/generators/opensteam/templates/test/fixtures/tax_rules.yml +29 -0
  150. data/generators/opensteam/templates/test/fixtures/tax_zones.yml +33 -0
  151. data/generators/opensteam/templates/test/fixtures/users.yml +26 -0
  152. data/generators/opensteam/templates/test/fixtures/zones.yml +2707 -0
  153. data/generators/opensteam/templates/test/functional/carts_controller_test.rb +103 -0
  154. data/generators/opensteam/templates/test/test_helper.rb +38 -0
  155. data/generators/opensteam/templates/test/unit/container_test.rb +71 -0
  156. data/generators/opensteam/templates/test/unit/order_test.rb +93 -0
  157. data/generators/opensteam/templates/test/unit/payment_test.rb +220 -0
  158. data/generators/opensteam/templates/test/unit/product_test.rb +158 -0
  159. data/generators/opensteam/templates/vendor/plugins/prawnto/.gitignore +3 -0
  160. data/generators/opensteam/templates/vendor/plugins/prawnto/MIT-LICENSE +20 -0
  161. data/generators/opensteam/templates/vendor/plugins/prawnto/README +12 -0
  162. data/generators/opensteam/templates/vendor/plugins/prawnto/Rakefile +22 -0
  163. data/generators/opensteam/templates/vendor/plugins/prawnto/init.rb +6 -0
  164. data/generators/opensteam/templates/vendor/plugins/prawnto/lib/prawnto.rb +13 -0
  165. data/generators/opensteam/templates/vendor/plugins/prawnto/lib/prawnto/action_controller.rb +47 -0
  166. data/generators/opensteam/templates/vendor/plugins/prawnto/lib/prawnto/template_handler/base.rb +75 -0
  167. data/generators/opensteam/templates/vendor/plugins/prawnto/lib/prawnto/template_handler/raw.rb +54 -0
  168. data/generators/opensteam/templates/vendor/plugins/prawnto/tasks/prawnto_tasks.rake +4 -0
  169. data/generators/opensteam/templates/vendor/plugins/prawnto/test/action_controller_test.rb +36 -0
  170. data/generators/opensteam/templates/vendor/plugins/prawnto/test/base_template_handler_test.rb +58 -0
  171. data/generators/opensteam/templates/vendor/plugins/prawnto/test/raw_template_handler_test.rb +163 -0
  172. data/generators/opensteam/templates/vendor/plugins/prawnto/test/template_handler_test_mocks.rb +83 -0
  173. data/generators/opensteam_product/templates/views/admin/_attributes.html.erb +8 -3
  174. data/generators/opensteam_product/templates/views/admin/_inventories.html.erb +2 -0
  175. data/lib/opensteam.rb +0 -1
  176. data/lib/opensteam/base.rb +2 -1
  177. data/lib/opensteam/checkout.rb +3 -12
  178. data/lib/opensteam/config.rb +50 -2
  179. data/lib/opensteam/container.rb +196 -0
  180. data/lib/opensteam/extension_base.rb +19 -1
  181. data/lib/opensteam/finder.rb +1 -1
  182. data/lib/opensteam/helpers/config_table_helper.rb +18 -6
  183. data/lib/opensteam/initializer.rb +24 -4
  184. data/lib/opensteam/inventory_base.rb +6 -1
  185. data/lib/opensteam/invoice_base.rb +12 -13
  186. data/lib/opensteam/money.rb +230 -0
  187. data/lib/opensteam/order_base.rb +122 -48
  188. data/lib/opensteam/payment.rb +225 -0
  189. data/lib/opensteam/payment/advance_payment.rb +34 -0
  190. data/lib/opensteam/payment/credit_card_payment.rb +217 -0
  191. data/lib/opensteam/payment/direct_debit_payment.rb +53 -0
  192. data/lib/opensteam/product_base.rb +48 -12
  193. data/lib/opensteam/security.rb +54 -0
  194. data/lib/opensteam/shipment_base.rb +214 -6
  195. data/lib/opensteam/shopping_cart.rb +20 -300
  196. data/lib/opensteam/state_logic.rb +5 -3
  197. data/lib/opensteam/state_machine.rb +8 -3
  198. data/lib/opensteam/user_base.rb +48 -6
  199. data/lib/opensteam/version.rb +1 -1
  200. metadata +122 -16
  201. data/generators/opensteam/templates/app/controllers/cart_controller.rb +0 -94
  202. data/generators/opensteam/templates/app/views/admin/orders/_event.html.erb +0 -5
  203. data/generators/opensteam/templates/app/views/admin/orders/_order_item.html.erb +0 -10
  204. data/generators/opensteam/templates/app/views/cart/_cart.html.erb +0 -8
  205. data/generators/opensteam/templates/app/views/cart/_cart_content.html.erb +0 -20
  206. data/generators/opensteam/templates/app/views/cart/update.rjs +0 -1
  207. data/generators/opensteam/templates/app/views/checkout/payment.html.erb +0 -8
  208. data/generators/opensteam/templates/app/views/checkout/shipping.html.erb +0 -45
  209. data/generators/opensteam/templates/app/views/checkout/show_cart.html.erb +0 -13
  210. data/generators/opensteam/templates/app/views/checkout/update_cart_content.rjs +0 -2
  211. data/generators/opensteam/templates/app/views/profile/orders/_order_item.html.erb +0 -10
  212. data/generators/opensteam/templates/db/migrate/20080609095725_create_dummy_users.rb +0 -21
  213. data/lib/opensteam/cart_base.rb +0 -227
@@ -0,0 +1,29 @@
1
+ ---
2
+ tax_rule_00001:
3
+ updated_at: 2008-08-26 11:02:42 Z
4
+ id: 1
5
+ tax_zone_id: 6
6
+ product_tax_group_id: 1
7
+ customer_tax_group_id:
8
+ created_at: 2008-08-26 11:02:42 Z
9
+ tax_rule_00002:
10
+ updated_at: 2008-08-26 11:02:42 Z
11
+ id: 2
12
+ tax_zone_id: 7
13
+ product_tax_group_id: 1
14
+ customer_tax_group_id:
15
+ created_at: 2008-08-26 11:02:42 Z
16
+ tax_rule_00003:
17
+ updated_at: 2008-08-26 11:03:27 Z
18
+ id: 3
19
+ tax_zone_id: 8
20
+ product_tax_group_id: 2
21
+ customer_tax_group_id:
22
+ created_at: 2008-08-26 11:03:27 Z
23
+ tax_rule_00004:
24
+ updated_at: 2008-08-26 11:03:27 Z
25
+ id: 4
26
+ tax_zone_id: 9
27
+ product_tax_group_id: 2
28
+ customer_tax_group_id:
29
+ created_at: 2008-08-26 11:03:27 Z
@@ -0,0 +1,33 @@
1
+ ---
2
+ tax_zone_00006:
3
+ postal: "*"
4
+ updated_at: 2008-08-26 11:01:01 Z
5
+ rate: 20.0
6
+ country: Austria
7
+ id: 6
8
+ state: "*"
9
+ created_at: 2008-08-26 11:01:01 Z
10
+ tax_zone_00007:
11
+ postal: "*"
12
+ updated_at: 2008-08-26 11:01:12 Z
13
+ rate: 19.0
14
+ country: Germany
15
+ id: 7
16
+ state: "*"
17
+ created_at: 2008-08-26 11:01:12 Z
18
+ tax_zone_00008:
19
+ postal: "*"
20
+ updated_at: 2008-08-26 11:01:45 Z
21
+ rate: 7.0
22
+ country: Germany
23
+ id: 8
24
+ state: "*"
25
+ created_at: 2008-08-26 11:01:45 Z
26
+ tax_zone_00009:
27
+ postal: "*"
28
+ updated_at: 2008-08-26 11:02:16 Z
29
+ rate: 10.0
30
+ country: Austria
31
+ id: 9
32
+ state: "*"
33
+ created_at: 2008-08-26 11:02:16 Z
@@ -0,0 +1,26 @@
1
+ ---
2
+ user_00001:
3
+ salt: d06107bd9ba65a72072df622993c4486fe774817
4
+ updated_at: 2008-09-02 12:27:03 Z
5
+ crypted_password: 9c192a93169372e81de6114e3852c6882cb4ff4b
6
+ remember_token_expires_at:
7
+ lastname: admin
8
+ id: 1
9
+ firstname: admin
10
+ remember_token:
11
+ profile_id: 1
12
+ email: admin@host.com
13
+ created_at: 2008-09-02 12:27:03 Z
14
+
15
+ user_00002:
16
+ salt: 0ddc2926020e6718eefa95557af86a8f064fce8f
17
+ updated_at: 2008-09-02 12:33:47 Z
18
+ crypted_password: 445910fe19e1626a915aed73abb2869a49de340e
19
+ remember_token_expires_at:
20
+ lastname: guest
21
+ id: 2
22
+ firstname: guest
23
+ remember_token:
24
+ profile_id: 3
25
+ email: guest1@host.com
26
+ created_at: 2008-09-02 12:33:47 Z
@@ -0,0 +1,2707 @@
1
+ ---
2
+ zone_00199:
3
+ postal:
4
+ city:
5
+ updated_at: 2008-09-16 11:21:33 Z
6
+ country_numeric: 624
7
+ country_a2: GW
8
+ id: 199
9
+ country_a3: GNB
10
+ country_name: Guinea-Bissau
11
+ state:
12
+ created_at: 2008-09-16 11:21:33 Z
13
+ zone_00010:
14
+ postal:
15
+ city:
16
+ updated_at: 2008-09-16 11:21:27 Z
17
+ country_numeric: 520
18
+ country_a2: NR
19
+ id: 10
20
+ country_a3: NRU
21
+ country_name: Nauru
22
+ state:
23
+ created_at: 2008-09-16 11:21:27 Z
24
+ zone_00011:
25
+ postal:
26
+ city:
27
+ updated_at: 2008-09-16 11:21:27 Z
28
+ country_numeric: 744
29
+ country_a2: SJ
30
+ id: 11
31
+ country_a3: SJM
32
+ country_name: Svalbard and Jan Mayen Islands
33
+ state:
34
+ created_at: 2008-09-16 11:21:27 Z
35
+ zone_00200:
36
+ postal:
37
+ city:
38
+ updated_at: 2008-09-16 11:21:33 Z
39
+ country_numeric: 417
40
+ country_a2: KG
41
+ id: 200
42
+ country_a3: KGZ
43
+ country_name: Kyrgyzstan
44
+ state:
45
+ created_at: 2008-09-16 11:21:33 Z
46
+ zone_00012:
47
+ postal:
48
+ city:
49
+ updated_at: 2008-09-16 11:21:27 Z
50
+ country_numeric: 208
51
+ country_a2: DK
52
+ id: 12
53
+ country_a3: DNK
54
+ country_name: Denmark
55
+ state:
56
+ created_at: 2008-09-16 11:21:27 Z
57
+ zone_00120:
58
+ postal:
59
+ city:
60
+ updated_at: 2008-09-16 11:21:31 Z
61
+ country_numeric: 659
62
+ country_a2: KN
63
+ id: 120
64
+ country_a3: KNA
65
+ country_name: Saint Kitts and Nevis
66
+ state:
67
+ created_at: 2008-09-16 11:21:31 Z
68
+ zone_00013:
69
+ postal:
70
+ city:
71
+ updated_at: 2008-09-16 11:21:27 Z
72
+ country_numeric: 516
73
+ country_a2: NA
74
+ id: 13
75
+ country_a3: NAM
76
+ country_name: Namibia
77
+ state:
78
+ created_at: 2008-09-16 11:21:27 Z
79
+ zone_00121:
80
+ postal:
81
+ city:
82
+ updated_at: 2008-09-16 11:21:31 Z
83
+ country_numeric: 404
84
+ country_a2: KE
85
+ id: 121
86
+ country_a3: KEN
87
+ country_name: Kenya
88
+ state:
89
+ created_at: 2008-09-16 11:21:31 Z
90
+ zone_00201:
91
+ postal:
92
+ city:
93
+ updated_at: 2008-09-16 11:21:33 Z
94
+ country_numeric: 56
95
+ country_a2: BE
96
+ id: 201
97
+ country_a3: BEL
98
+ country_name: Belgium
99
+ state:
100
+ created_at: 2008-09-16 11:21:33 Z
101
+ zone_00040:
102
+ postal:
103
+ city:
104
+ updated_at: 2008-09-16 11:21:28 Z
105
+ country_numeric: 344
106
+ country_a2: HK
107
+ id: 40
108
+ country_a3: HKG
109
+ country_name: Hong Kong
110
+ state:
111
+ created_at: 2008-09-16 11:21:28 Z
112
+ zone_00122:
113
+ postal:
114
+ city:
115
+ updated_at: 2008-09-16 11:21:31 Z
116
+ country_numeric: 716
117
+ country_a2: ZW
118
+ id: 122
119
+ country_a3: ZWE
120
+ country_name: Zimbabwe
121
+ state:
122
+ created_at: 2008-09-16 11:21:31 Z
123
+ zone_00202:
124
+ postal:
125
+ city:
126
+ updated_at: 2008-09-16 11:21:33 Z
127
+ country_numeric: 666
128
+ country_a2: PM
129
+ id: 202
130
+ country_a3: SPM
131
+ country_name: Saint Pierre and Miquelon
132
+ state:
133
+ created_at: 2008-09-16 11:21:33 Z
134
+ zone_00014:
135
+ postal:
136
+ city:
137
+ updated_at: 2008-09-16 11:21:27 Z
138
+ country_numeric: 780
139
+ country_a2: TT
140
+ id: 14
141
+ country_a3: TTO
142
+ country_name: Trinidad and Tobago
143
+ state:
144
+ created_at: 2008-09-16 11:21:27 Z
145
+ zone_00041:
146
+ postal:
147
+ city:
148
+ updated_at: 2008-09-16 11:21:28 Z
149
+ country_numeric: 4
150
+ country_a2: AF
151
+ id: 41
152
+ country_a3: AFG
153
+ country_name: Afghanistan
154
+ state:
155
+ created_at: 2008-09-16 11:21:28 Z
156
+ zone_00123:
157
+ postal:
158
+ city:
159
+ updated_at: 2008-09-16 11:21:31 Z
160
+ country_numeric: 234
161
+ country_a2: FO
162
+ id: 123
163
+ country_a3: FRO
164
+ country_name: Faroe Islands
165
+ state:
166
+ created_at: 2008-09-16 11:21:31 Z
167
+ zone_00203:
168
+ postal:
169
+ city:
170
+ updated_at: 2008-09-16 11:21:33 Z
171
+ country_numeric: 792
172
+ country_a2: TR
173
+ id: 203
174
+ country_a3: TUR
175
+ country_name: Turkey
176
+ state:
177
+ created_at: 2008-09-16 11:21:33 Z
178
+ zone_00230:
179
+ postal:
180
+ city:
181
+ updated_at: 2008-09-16 11:21:34 Z
182
+ country_numeric: 591
183
+ country_a2: PA
184
+ id: 230
185
+ country_a3: PAN
186
+ country_name: Panama
187
+ state:
188
+ created_at: 2008-09-16 11:21:34 Z
189
+ zone_00015:
190
+ postal:
191
+ city:
192
+ updated_at: 2008-09-16 11:21:27 Z
193
+ country_numeric: 162
194
+ country_a2: CX
195
+ id: 15
196
+ country_a3: CXR
197
+ country_name: Christmas Island
198
+ state:
199
+ created_at: 2008-09-16 11:21:27 Z
200
+ zone_00042:
201
+ postal:
202
+ city:
203
+ updated_at: 2008-09-16 11:21:28 Z
204
+ country_numeric: 530
205
+ country_a2: AN
206
+ id: 42
207
+ country_a3: ANT
208
+ country_name: Netherlands Antilles
209
+ state:
210
+ created_at: 2008-09-16 11:21:28 Z
211
+ zone_00150:
212
+ postal:
213
+ city:
214
+ updated_at: 2008-09-16 11:21:32 Z
215
+ country_numeric: 76
216
+ country_a2: BR
217
+ id: 150
218
+ country_a3: BRA
219
+ country_name: Brazil
220
+ state:
221
+ created_at: 2008-09-16 11:21:32 Z
222
+ zone_00204:
223
+ postal:
224
+ city:
225
+ updated_at: 2008-09-16 11:21:33 Z
226
+ country_numeric: 64
227
+ country_a2: BT
228
+ id: 204
229
+ country_a3: BTN
230
+ country_name: Bhutan
231
+ state:
232
+ created_at: 2008-09-16 11:21:33 Z
233
+ zone_00231:
234
+ postal:
235
+ city:
236
+ updated_at: 2008-09-16 11:21:34 Z
237
+ country_numeric: 702
238
+ country_a2: SG
239
+ id: 231
240
+ country_a3: SGP
241
+ country_name: Singapore
242
+ state:
243
+ created_at: 2008-09-16 11:21:34 Z
244
+ zone_00016:
245
+ postal:
246
+ city:
247
+ updated_at: 2008-09-16 11:21:28 Z
248
+ country_numeric: 540
249
+ country_a2: NC
250
+ id: 16
251
+ country_a3: NCL
252
+ country_name: New Caledonia
253
+ state:
254
+ created_at: 2008-09-16 11:21:28 Z
255
+ zone_00043:
256
+ postal:
257
+ city:
258
+ updated_at: 2008-09-16 11:21:28 Z
259
+ country_numeric: 474
260
+ country_a2: MQ
261
+ id: 43
262
+ country_a3: MTQ
263
+ country_name: Martinique
264
+ state:
265
+ created_at: 2008-09-16 11:21:28 Z
266
+ zone_00124:
267
+ postal:
268
+ city:
269
+ updated_at: 2008-09-16 11:21:31 Z
270
+ country_numeric: 74
271
+ country_a2: BV
272
+ id: 124
273
+ country_a3: BVT
274
+ country_name: Bouvet Island
275
+ state:
276
+ created_at: 2008-09-16 11:21:31 Z
277
+ zone_00151:
278
+ postal:
279
+ city:
280
+ updated_at: 2008-09-16 11:21:32 Z
281
+ country_numeric: 804
282
+ country_a2: UA
283
+ id: 151
284
+ country_a3: UKR
285
+ country_name: Ukraine
286
+ state:
287
+ created_at: 2008-09-16 11:21:32 Z
288
+ zone_00205:
289
+ postal:
290
+ city:
291
+ updated_at: 2008-09-16 11:21:33 Z
292
+ country_numeric: 188
293
+ country_a2: CR
294
+ id: 205
295
+ country_a3: CRI
296
+ country_name: Costa Rica
297
+ state:
298
+ created_at: 2008-09-16 11:21:33 Z
299
+ zone_00232:
300
+ postal:
301
+ city:
302
+ updated_at: 2008-09-16 11:21:34 Z
303
+ country_numeric: 752
304
+ country_a2: SE
305
+ id: 232
306
+ country_a3: SWE
307
+ country_name: Sweden
308
+ state:
309
+ created_at: 2008-09-16 11:21:34 Z
310
+ zone_00017:
311
+ postal:
312
+ city:
313
+ updated_at: 2008-09-16 11:21:28 Z
314
+ country_numeric: 328
315
+ country_a2: GY
316
+ id: 17
317
+ country_a3: GUY
318
+ country_name: Guyana
319
+ state:
320
+ created_at: 2008-09-16 11:21:28 Z
321
+ zone_00044:
322
+ postal:
323
+ city:
324
+ updated_at: 2008-09-16 11:21:28 Z
325
+ country_numeric: 662
326
+ country_a2: LC
327
+ id: 44
328
+ country_a3: LCA
329
+ country_name: Saint Lucia
330
+ state:
331
+ created_at: 2008-09-16 11:21:28 Z
332
+ zone_00070:
333
+ postal:
334
+ city:
335
+ updated_at: 2008-09-16 11:21:29 Z
336
+ country_numeric: 100
337
+ country_a2: BG
338
+ id: 70
339
+ country_a3: BGR
340
+ country_name: Bulgaria
341
+ state:
342
+ created_at: 2008-09-16 11:21:29 Z
343
+ zone_00152:
344
+ postal:
345
+ city:
346
+ updated_at: 2008-09-16 11:21:32 Z
347
+ country_numeric: 410
348
+ country_a2: KR
349
+ id: 152
350
+ country_a3: KOR
351
+ country_name: Korea, South
352
+ state:
353
+ created_at: 2008-09-16 11:21:32 Z
354
+ zone_00206:
355
+ postal:
356
+ city:
357
+ updated_at: 2008-09-16 11:21:33 Z
358
+ country_numeric: 238
359
+ country_a2: FK
360
+ id: 206
361
+ country_a3: FLK
362
+ country_name: Falkland Islands
363
+ state:
364
+ created_at: 2008-09-16 11:21:33 Z
365
+ zone_00233:
366
+ postal:
367
+ city:
368
+ updated_at: 2008-09-16 11:21:34 Z
369
+ country_numeric: 470
370
+ country_a2: MT
371
+ id: 233
372
+ country_a3: MLT
373
+ country_name: Malta
374
+ state:
375
+ created_at: 2008-09-16 11:21:34 Z
376
+ zone_00018:
377
+ postal:
378
+ city:
379
+ updated_at: 2008-09-16 11:21:28 Z
380
+ country_numeric: 414
381
+ country_a2: KW
382
+ id: 18
383
+ country_a3: KWT
384
+ country_name: Kuwait
385
+ state:
386
+ created_at: 2008-09-16 11:21:28 Z
387
+ zone_00045:
388
+ postal:
389
+ city:
390
+ updated_at: 2008-09-16 11:21:28 Z
391
+ country_numeric: 860
392
+ country_a2: UZ
393
+ id: 45
394
+ country_a3: UZB
395
+ country_name: Uzbekistan
396
+ state:
397
+ created_at: 2008-09-16 11:21:28 Z
398
+ zone_00071:
399
+ postal:
400
+ city:
401
+ updated_at: 2008-09-16 11:21:29 Z
402
+ country_numeric: 807
403
+ country_a2: MK
404
+ id: 71
405
+ country_a3: MKD
406
+ country_name: Macedonia
407
+ state:
408
+ created_at: 2008-09-16 11:21:29 Z
409
+ zone_00125:
410
+ postal:
411
+ city:
412
+ updated_at: 2008-09-16 11:21:31 Z
413
+ country_numeric: 152
414
+ country_a2: CL
415
+ id: 125
416
+ country_a3: CHL
417
+ country_name: Chile
418
+ state:
419
+ created_at: 2008-09-16 11:21:31 Z
420
+ zone_00153:
421
+ postal:
422
+ city:
423
+ updated_at: 2008-09-16 11:21:32 Z
424
+ country_numeric: 60
425
+ country_a2: BM
426
+ id: 153
427
+ country_a3: BMU
428
+ country_name: Bermuda
429
+ state:
430
+ created_at: 2008-09-16 11:21:32 Z
431
+ zone_00207:
432
+ postal:
433
+ city:
434
+ updated_at: 2008-09-16 11:21:33 Z
435
+ country_numeric: 887
436
+ country_a2: YE
437
+ id: 207
438
+ country_a3: YEM
439
+ country_name: Yemen
440
+ state:
441
+ created_at: 2008-09-16 11:21:33 Z
442
+ zone_00019:
443
+ postal:
444
+ city:
445
+ updated_at: 2008-09-16 11:21:28 Z
446
+ country_numeric: 826
447
+ country_a2: GB
448
+ id: 19
449
+ country_a3: GBR
450
+ country_name: United Kingdom
451
+ state:
452
+ created_at: 2008-09-16 11:21:28 Z
453
+ zone_00046:
454
+ postal:
455
+ city:
456
+ updated_at: 2008-09-16 11:21:28 Z
457
+ country_numeric: 320
458
+ country_a2: GT
459
+ id: 46
460
+ country_a3: GTM
461
+ country_name: Guatemala
462
+ state:
463
+ created_at: 2008-09-16 11:21:28 Z
464
+ zone_00072:
465
+ postal:
466
+ city:
467
+ updated_at: 2008-09-16 11:21:29 Z
468
+ country_numeric: 450
469
+ country_a2: MG
470
+ id: 72
471
+ country_a3: MDG
472
+ country_name: Madagascar
473
+ state:
474
+ created_at: 2008-09-16 11:21:29 Z
475
+ zone_00126:
476
+ postal:
477
+ city:
478
+ updated_at: 2008-09-16 11:21:31 Z
479
+ country_numeric: 140
480
+ country_a2: CF
481
+ id: 126
482
+ country_a3: CAF
483
+ country_name: Central African Republic
484
+ state:
485
+ created_at: 2008-09-16 11:21:31 Z
486
+ zone_00180:
487
+ postal:
488
+ city:
489
+ updated_at: 2008-09-16 11:21:32 Z
490
+ country_numeric: 239
491
+ country_a2: GS
492
+ id: 180
493
+ country_a3: SGS
494
+ country_name: South Georgia and South Sandwich Islands
495
+ state:
496
+ created_at: 2008-09-16 11:21:32 Z
497
+ zone_00208:
498
+ postal:
499
+ city:
500
+ updated_at: 2008-09-16 11:21:33 Z
501
+ country_numeric: 710
502
+ country_a2: ZA
503
+ id: 208
504
+ country_a3: ZAF
505
+ country_name: South Africa
506
+ state:
507
+ created_at: 2008-09-16 11:21:33 Z
508
+ zone_00234:
509
+ postal:
510
+ city:
511
+ updated_at: 2008-09-16 11:21:34 Z
512
+ country_numeric: 586
513
+ country_a2: PK
514
+ id: 234
515
+ country_a3: PAK
516
+ country_name: Pakistan
517
+ state:
518
+ created_at: 2008-09-16 11:21:34 Z
519
+ zone_00073:
520
+ postal:
521
+ city:
522
+ updated_at: 2008-09-16 11:21:29 Z
523
+ country_numeric: 585
524
+ country_a2: PW
525
+ id: 73
526
+ country_a3: PLW
527
+ country_name: Palau
528
+ state:
529
+ created_at: 2008-09-16 11:21:29 Z
530
+ zone_00127:
531
+ postal:
532
+ city:
533
+ updated_at: 2008-09-16 11:21:31 Z
534
+ country_numeric: 652
535
+ country_a2: BL
536
+ id: 127
537
+ country_a3: BLM
538
+ country_name: "Saint Barth\xC3\xA9lemy"
539
+ state:
540
+ created_at: 2008-09-16 11:21:31 Z
541
+ zone_00154:
542
+ postal:
543
+ city:
544
+ updated_at: 2008-09-16 11:21:32 Z
545
+ country_numeric: 438
546
+ country_a2: LI
547
+ id: 154
548
+ country_a3: LIE
549
+ country_name: Liechtenstein
550
+ state:
551
+ created_at: 2008-09-16 11:21:32 Z
552
+ zone_00181:
553
+ postal:
554
+ city:
555
+ updated_at: 2008-09-16 11:21:32 Z
556
+ country_numeric: 581
557
+ country_a2: UM
558
+ id: 181
559
+ country_a3: UMI
560
+ country_name: United States Minor Outlying Islands
561
+ state:
562
+ created_at: 2008-09-16 11:21:32 Z
563
+ zone_00209:
564
+ postal:
565
+ city:
566
+ updated_at: 2008-09-16 11:21:33 Z
567
+ country_numeric: 156
568
+ country_a2: CN
569
+ id: 209
570
+ country_a3: CHN
571
+ country_name: China
572
+ state:
573
+ created_at: 2008-09-16 11:21:33 Z
574
+ zone_00235:
575
+ postal:
576
+ city:
577
+ updated_at: 2008-09-16 11:21:34 Z
578
+ country_numeric: 246
579
+ country_a2: FI
580
+ id: 235
581
+ country_a3: FIN
582
+ country_name: Finland
583
+ state:
584
+ created_at: 2008-09-16 11:21:34 Z
585
+ zone_00047:
586
+ postal:
587
+ city:
588
+ updated_at: 2008-09-16 11:21:28 Z
589
+ country_numeric: 612
590
+ country_a2: PN
591
+ id: 47
592
+ country_a3: PCN
593
+ country_name: Pitcairn
594
+ state:
595
+ created_at: 2008-09-16 11:21:28 Z
596
+ zone_00074:
597
+ postal:
598
+ city:
599
+ updated_at: 2008-09-16 11:21:29 Z
600
+ country_numeric: 426
601
+ country_a2: LS
602
+ id: 74
603
+ country_a3: LSO
604
+ country_name: Lesotho
605
+ state:
606
+ created_at: 2008-09-16 11:21:29 Z
607
+ zone_00128:
608
+ postal:
609
+ city:
610
+ updated_at: 2008-09-16 11:21:31 Z
611
+ country_numeric: 166
612
+ country_a2: CC
613
+ id: 128
614
+ country_a3: CCK
615
+ country_name: Cocos (Keeling) Islands
616
+ state:
617
+ created_at: 2008-09-16 11:21:31 Z
618
+ zone_00155:
619
+ postal:
620
+ city:
621
+ updated_at: 2008-09-16 11:21:32 Z
622
+ country_numeric: 376
623
+ country_a2: IL
624
+ id: 155
625
+ country_a3: ISR
626
+ country_name: Israel
627
+ state:
628
+ created_at: 2008-09-16 11:21:32 Z
629
+ zone_00236:
630
+ postal:
631
+ city:
632
+ updated_at: 2008-09-16 11:21:34 Z
633
+ country_numeric: 850
634
+ country_a2: VI
635
+ id: 236
636
+ country_a3: VIR
637
+ country_name: Virgin Islands, U.S.
638
+ state:
639
+ created_at: 2008-09-16 11:21:34 Z
640
+ zone_00048:
641
+ postal:
642
+ city:
643
+ updated_at: 2008-09-16 11:21:28 Z
644
+ country_numeric: 170
645
+ country_a2: CO
646
+ id: 48
647
+ country_a3: COL
648
+ country_name: Colombia
649
+ state:
650
+ created_at: 2008-09-16 11:21:28 Z
651
+ zone_00075:
652
+ postal:
653
+ city:
654
+ updated_at: 2008-09-16 11:21:29 Z
655
+ country_numeric: 250
656
+ country_a2: FR
657
+ id: 75
658
+ country_a3: FRA
659
+ country_name: France
660
+ state:
661
+ created_at: 2008-09-16 11:21:29 Z
662
+ zone_00129:
663
+ postal:
664
+ city:
665
+ updated_at: 2008-09-16 11:21:31 Z
666
+ country_numeric: 760
667
+ country_a2: SY
668
+ id: 129
669
+ country_a3: SYR
670
+ country_name: Syria
671
+ state:
672
+ created_at: 2008-09-16 11:21:31 Z
673
+ zone_00156:
674
+ postal:
675
+ city:
676
+ updated_at: 2008-09-16 11:21:32 Z
677
+ country_numeric: 430
678
+ country_a2: LR
679
+ id: 156
680
+ country_a3: LBR
681
+ country_name: Liberia
682
+ state:
683
+ created_at: 2008-09-16 11:21:32 Z
684
+ zone_00182:
685
+ postal:
686
+ city:
687
+ updated_at: 2008-09-16 11:21:32 Z
688
+ country_numeric: 178
689
+ country_a2: CG
690
+ id: 182
691
+ country_a3: COG
692
+ country_name: Congo (Brazzaville)
693
+ state:
694
+ created_at: 2008-09-16 11:21:32 Z
695
+ zone_00237:
696
+ postal:
697
+ city:
698
+ updated_at: 2008-09-16 11:21:34 Z
699
+ country_numeric: 356
700
+ country_a2: IN
701
+ id: 237
702
+ country_a3: IND
703
+ country_name: India
704
+ state:
705
+ created_at: 2008-09-16 11:21:34 Z
706
+ zone_00049:
707
+ postal:
708
+ city:
709
+ updated_at: 2008-09-16 11:21:28 Z
710
+ country_numeric: 10
711
+ country_a2: AQ
712
+ id: 49
713
+ country_a3: ATA
714
+ country_name: Antarctica
715
+ state:
716
+ created_at: 2008-09-16 11:21:28 Z
717
+ zone_00076:
718
+ postal:
719
+ city:
720
+ updated_at: 2008-09-16 11:21:29 Z
721
+ country_numeric: 148
722
+ country_a2: TD
723
+ id: 76
724
+ country_a3: TCD
725
+ country_name: Chad
726
+ state:
727
+ created_at: 2008-09-16 11:21:29 Z
728
+ zone_00183:
729
+ postal:
730
+ city:
731
+ updated_at: 2008-09-16 11:21:32 Z
732
+ country_numeric: 104
733
+ country_a2: MM
734
+ id: 183
735
+ country_a3: MMR
736
+ country_name: Myanmar
737
+ state:
738
+ created_at: 2008-09-16 11:21:32 Z
739
+ zone_00238:
740
+ postal:
741
+ city:
742
+ updated_at: 2008-09-16 11:21:34 Z
743
+ country_numeric: 504
744
+ country_a2: MA
745
+ id: 238
746
+ country_a3: MAR
747
+ country_name: Morocco
748
+ state:
749
+ created_at: 2008-09-16 11:21:34 Z
750
+ zone_00077:
751
+ postal:
752
+ city:
753
+ updated_at: 2008-09-16 11:21:29 Z
754
+ country_numeric: 818
755
+ country_a2: EG
756
+ id: 77
757
+ country_a3: EGY
758
+ country_name: Egypt
759
+ state:
760
+ created_at: 2008-09-16 11:21:29 Z
761
+ zone_00157:
762
+ postal:
763
+ city:
764
+ updated_at: 2008-09-16 11:21:32 Z
765
+ country_numeric: 308
766
+ country_a2: GD
767
+ id: 157
768
+ country_a3: GRD
769
+ country_name: Grenada
770
+ state:
771
+ created_at: 2008-09-16 11:21:32 Z
772
+ zone_00184:
773
+ postal:
774
+ city:
775
+ updated_at: 2008-09-16 11:21:32 Z
776
+ country_numeric: 32
777
+ country_a2: AR
778
+ id: 184
779
+ country_a3: ARG
780
+ country_name: Argentina
781
+ state:
782
+ created_at: 2008-09-16 11:21:32 Z
783
+ zone_00078:
784
+ postal:
785
+ city:
786
+ updated_at: 2008-09-16 11:21:29 Z
787
+ country_numeric: 418
788
+ country_a2: LA
789
+ id: 78
790
+ country_a3: LAO
791
+ country_name: Laos
792
+ state:
793
+ created_at: 2008-09-16 11:21:29 Z
794
+ zone_00158:
795
+ postal:
796
+ city:
797
+ updated_at: 2008-09-16 11:21:32 Z
798
+ country_numeric: 31
799
+ country_a2: AZ
800
+ id: 158
801
+ country_a3: AZE
802
+ country_name: Azerbaijan
803
+ state:
804
+ created_at: 2008-09-16 11:21:32 Z
805
+ zone_00185:
806
+ postal:
807
+ city:
808
+ updated_at: 2008-09-16 11:21:33 Z
809
+ country_numeric: 48
810
+ country_a2: BH
811
+ id: 185
812
+ country_a3: BHR
813
+ country_name: Bahrain
814
+ state:
815
+ created_at: 2008-09-16 11:21:33 Z
816
+ zone_00239:
817
+ postal:
818
+ city:
819
+ updated_at: 2008-09-16 11:21:34 Z
820
+ country_numeric: 706
821
+ country_a2: SO
822
+ id: 239
823
+ country_a3: SOM
824
+ country_name: Somalia
825
+ state:
826
+ created_at: 2008-09-16 11:21:34 Z
827
+ zone_00079:
828
+ postal:
829
+ city:
830
+ updated_at: 2008-09-16 11:21:29 Z
831
+ country_numeric: 222
832
+ country_a2: SV
833
+ id: 79
834
+ country_a3: SLV
835
+ country_name: El Salvador
836
+ state:
837
+ created_at: 2008-09-16 11:21:29 Z
838
+ zone_00159:
839
+ postal:
840
+ city:
841
+ updated_at: 2008-09-16 11:21:32 Z
842
+ country_numeric: 192
843
+ country_a2: CU
844
+ id: 159
845
+ country_a3: CUB
846
+ country_name: Cuba
847
+ state:
848
+ created_at: 2008-09-16 11:21:32 Z
849
+ zone_00186:
850
+ postal:
851
+ city:
852
+ updated_at: 2008-09-16 11:21:33 Z
853
+ country_numeric: 876
854
+ country_a2: WF
855
+ id: 186
856
+ country_a3: WLF
857
+ country_name: Wallis and Futuna Islands
858
+ state:
859
+ created_at: 2008-09-16 11:21:33 Z
860
+ zone_00187:
861
+ postal:
862
+ city:
863
+ updated_at: 2008-09-16 11:21:33 Z
864
+ country_numeric: 583
865
+ country_a2: FM
866
+ id: 187
867
+ country_a3: FSM
868
+ country_name: Micronesia
869
+ state:
870
+ created_at: 2008-09-16 11:21:33 Z
871
+ zone_00188:
872
+ postal:
873
+ city:
874
+ updated_at: 2008-09-16 11:21:33 Z
875
+ country_numeric: 882
876
+ country_a2: WS
877
+ id: 188
878
+ country_a3: WSM
879
+ country_name: Samoa
880
+ state:
881
+ created_at: 2008-09-16 11:21:33 Z
882
+ zone_00189:
883
+ postal:
884
+ city:
885
+ updated_at: 2008-09-16 11:21:33 Z
886
+ country_numeric: 50
887
+ country_a2: BD
888
+ id: 189
889
+ country_a3: BGD
890
+ country_name: Bangladesh
891
+ state:
892
+ created_at: 2008-09-16 11:21:33 Z
893
+ zone_00001:
894
+ postal:
895
+ city:
896
+ updated_at: 2008-09-16 11:21:27 Z
897
+ country_numeric: 524
898
+ country_a2: NP
899
+ id: 1
900
+ country_a3: NPL
901
+ country_name: Nepal
902
+ state:
903
+ created_at: 2008-09-16 11:21:27 Z
904
+ zone_00002:
905
+ postal:
906
+ city:
907
+ updated_at: 2008-09-16 11:21:27 Z
908
+ country_numeric: 646
909
+ country_a2: RW
910
+ id: 2
911
+ country_a3: RWA
912
+ country_name: Rwanda
913
+ state:
914
+ created_at: 2008-09-16 11:21:27 Z
915
+ zone_00110:
916
+ postal:
917
+ city:
918
+ updated_at: 2008-09-16 11:21:30 Z
919
+ country_numeric: 292
920
+ country_a2: GI
921
+ id: 110
922
+ country_a3: GIB
923
+ country_name: Gibraltar
924
+ state:
925
+ created_at: 2008-09-16 11:21:30 Z
926
+ zone_00003:
927
+ postal:
928
+ city:
929
+ updated_at: 2008-09-16 11:21:27 Z
930
+ country_numeric: 862
931
+ country_a2: VE
932
+ id: 3
933
+ country_a3: VEN
934
+ country_name: Venezuela
935
+ state:
936
+ created_at: 2008-09-16 11:21:27 Z
937
+ zone_00030:
938
+ postal:
939
+ city:
940
+ updated_at: 2008-09-16 11:21:28 Z
941
+ country_numeric: 8
942
+ country_a2: AL
943
+ id: 30
944
+ country_a3: ALB
945
+ country_name: Albania
946
+ state:
947
+ created_at: 2008-09-16 11:21:28 Z
948
+ zone_00111:
949
+ postal:
950
+ city:
951
+ updated_at: 2008-09-16 11:21:30 Z
952
+ country_numeric: 620
953
+ country_a2: PT
954
+ id: 111
955
+ country_a3: PRT
956
+ country_name: Portugal
957
+ state:
958
+ created_at: 2008-09-16 11:21:30 Z
959
+ zone_00004:
960
+ postal:
961
+ city:
962
+ updated_at: 2008-09-16 11:21:27 Z
963
+ country_numeric: 51
964
+ country_a2: AM
965
+ id: 4
966
+ country_a3: ARM
967
+ country_name: Armenia
968
+ state:
969
+ created_at: 2008-09-16 11:21:27 Z
970
+ zone_00031:
971
+ postal:
972
+ city:
973
+ updated_at: 2008-09-16 11:21:28 Z
974
+ country_numeric: 772
975
+ country_a2: TK
976
+ id: 31
977
+ country_a3: TKL
978
+ country_name: Tokelau
979
+ state:
980
+ created_at: 2008-09-16 11:21:28 Z
981
+ zone_00112:
982
+ postal:
983
+ city:
984
+ updated_at: 2008-09-16 11:21:30 Z
985
+ country_numeric: 288
986
+ country_a2: GH
987
+ id: 112
988
+ country_a3: GHA
989
+ country_name: Ghana
990
+ state:
991
+ created_at: 2008-09-16 11:21:30 Z
992
+ zone_00005:
993
+ postal:
994
+ city:
995
+ updated_at: 2008-09-16 11:21:27 Z
996
+ country_numeric: 480
997
+ country_a2: MU
998
+ id: 5
999
+ country_a3: MUS
1000
+ country_name: Mauritius
1001
+ state:
1002
+ created_at: 2008-09-16 11:21:27 Z
1003
+ zone_00032:
1004
+ postal:
1005
+ city:
1006
+ updated_at: 2008-09-16 11:21:28 Z
1007
+ country_numeric: 834
1008
+ country_a2: TZ
1009
+ id: 32
1010
+ country_a3: TZA
1011
+ country_name: Tanzania
1012
+ state:
1013
+ created_at: 2008-09-16 11:21:28 Z
1014
+ zone_00220:
1015
+ postal:
1016
+ city:
1017
+ updated_at: 2008-09-16 11:21:34 Z
1018
+ country_numeric: 268
1019
+ country_a2: GE
1020
+ id: 220
1021
+ country_a3: GEO
1022
+ country_name: Georgia
1023
+ state:
1024
+ created_at: 2008-09-16 11:21:34 Z
1025
+ zone_00006:
1026
+ postal:
1027
+ city:
1028
+ updated_at: 2008-09-16 11:21:27 Z
1029
+ country_numeric: 400
1030
+ country_a2: JO
1031
+ id: 6
1032
+ country_a3: JOR
1033
+ country_name: Jordan
1034
+ state:
1035
+ created_at: 2008-09-16 11:21:27 Z
1036
+ zone_00033:
1037
+ postal:
1038
+ city:
1039
+ updated_at: 2008-09-16 11:21:28 Z
1040
+ country_numeric: 690
1041
+ country_a2: SC
1042
+ id: 33
1043
+ country_a3: SYC
1044
+ country_name: Seychelles
1045
+ state:
1046
+ created_at: 2008-09-16 11:21:28 Z
1047
+ zone_00113:
1048
+ postal:
1049
+ city:
1050
+ updated_at: 2008-09-16 11:21:30 Z
1051
+ country_numeric: 144
1052
+ country_a2: LK
1053
+ id: 113
1054
+ country_a3: LKA
1055
+ country_name: Sri Lanka
1056
+ state:
1057
+ created_at: 2008-09-16 11:21:30 Z
1058
+ zone_00140:
1059
+ postal:
1060
+ city:
1061
+ updated_at: 2008-09-16 11:21:31 Z
1062
+ country_numeric: 304
1063
+ country_a2: GL
1064
+ id: 140
1065
+ country_a3: GRL
1066
+ country_name: Greenland
1067
+ state:
1068
+ created_at: 2008-09-16 11:21:31 Z
1069
+ zone_00221:
1070
+ postal:
1071
+ city:
1072
+ updated_at: 2008-09-16 11:21:34 Z
1073
+ country_numeric: 484
1074
+ country_a2: MX
1075
+ id: 221
1076
+ country_a3: MEX
1077
+ country_name: Mexico
1078
+ state:
1079
+ created_at: 2008-09-16 11:21:34 Z
1080
+ zone_00007:
1081
+ postal:
1082
+ city:
1083
+ updated_at: 2008-09-16 11:21:27 Z
1084
+ country_numeric: 580
1085
+ country_a2: MP
1086
+ id: 7
1087
+ country_a3: MNP
1088
+ country_name: Northern Mariana Islands
1089
+ state:
1090
+ created_at: 2008-09-16 11:21:27 Z
1091
+ zone_00034:
1092
+ postal:
1093
+ city:
1094
+ updated_at: 2008-09-16 11:21:28 Z
1095
+ country_numeric: 643
1096
+ country_a2: RU
1097
+ id: 34
1098
+ country_a3: RUS
1099
+ country_name: Russian Federation
1100
+ state:
1101
+ created_at: 2008-09-16 11:21:28 Z
1102
+ zone_00060:
1103
+ postal:
1104
+ city:
1105
+ updated_at: 2008-09-16 11:21:29 Z
1106
+ country_numeric: 784
1107
+ country_a2: AE
1108
+ id: 60
1109
+ country_a3: ARE
1110
+ country_name: United Arab Emirates
1111
+ state:
1112
+ created_at: 2008-09-16 11:21:29 Z
1113
+ zone_00114:
1114
+ postal:
1115
+ city:
1116
+ updated_at: 2008-09-16 11:21:30 Z
1117
+ country_numeric: 392
1118
+ country_a2: JP
1119
+ id: 114
1120
+ country_a3: JPN
1121
+ country_name: Japan
1122
+ state:
1123
+ created_at: 2008-09-16 11:21:30 Z
1124
+ zone_00141:
1125
+ postal:
1126
+ city:
1127
+ updated_at: 2008-09-16 11:21:31 Z
1128
+ country_numeric: 600
1129
+ country_a2: PY
1130
+ id: 141
1131
+ country_a3: PRY
1132
+ country_name: Paraguay
1133
+ state:
1134
+ created_at: 2008-09-16 11:21:31 Z
1135
+ zone_00222:
1136
+ postal:
1137
+ city:
1138
+ updated_at: 2008-09-16 11:21:34 Z
1139
+ country_numeric: 724
1140
+ country_a2: ES
1141
+ id: 222
1142
+ country_a3: ESP
1143
+ country_name: Spain
1144
+ state:
1145
+ created_at: 2008-09-16 11:21:34 Z
1146
+ zone_00008:
1147
+ postal:
1148
+ city:
1149
+ updated_at: 2008-09-16 11:21:27 Z
1150
+ country_numeric: 548
1151
+ country_a2: VU
1152
+ id: 8
1153
+ country_a3: VUT
1154
+ country_name: Vanuatu
1155
+ state:
1156
+ created_at: 2008-09-16 11:21:27 Z
1157
+ zone_00035:
1158
+ postal:
1159
+ city:
1160
+ updated_at: 2008-09-16 11:21:28 Z
1161
+ country_numeric: 203
1162
+ country_a2: CZ
1163
+ id: 35
1164
+ country_a3: CZE
1165
+ country_name: Czech Republic
1166
+ state:
1167
+ created_at: 2008-09-16 11:21:28 Z
1168
+ zone_00061:
1169
+ postal:
1170
+ city:
1171
+ updated_at: 2008-09-16 11:21:29 Z
1172
+ country_numeric: 678
1173
+ country_a2: ST
1174
+ id: 61
1175
+ country_a3: STP
1176
+ country_name: Sao Tome and Principe
1177
+ state:
1178
+ created_at: 2008-09-16 11:21:29 Z
1179
+ zone_00115:
1180
+ postal:
1181
+ city:
1182
+ updated_at: 2008-09-16 11:21:30 Z
1183
+ country_numeric: 266
1184
+ country_a2: GA
1185
+ id: 115
1186
+ country_a3: GAB
1187
+ country_name: Gabon
1188
+ state:
1189
+ created_at: 2008-09-16 11:21:30 Z
1190
+ zone_00142:
1191
+ postal:
1192
+ city:
1193
+ updated_at: 2008-09-16 11:21:31 Z
1194
+ country_numeric: 270
1195
+ country_a2: GM
1196
+ id: 142
1197
+ country_a3: GMB
1198
+ country_name: Gambia
1199
+ state:
1200
+ created_at: 2008-09-16 11:21:31 Z
1201
+ zone_00009:
1202
+ postal:
1203
+ city:
1204
+ updated_at: 2008-09-16 11:21:27 Z
1205
+ country_numeric: 762
1206
+ country_a2: TJ
1207
+ id: 9
1208
+ country_a3: TJK
1209
+ country_name: Tajikistan
1210
+ state:
1211
+ created_at: 2008-09-16 11:21:27 Z
1212
+ zone_00062:
1213
+ postal:
1214
+ city:
1215
+ updated_at: 2008-09-16 11:21:29 Z
1216
+ country_numeric: 196
1217
+ country_a2: CY
1218
+ id: 62
1219
+ country_a3: CYP
1220
+ country_name: Cyprus
1221
+ state:
1222
+ created_at: 2008-09-16 11:21:29 Z
1223
+ zone_00116:
1224
+ postal:
1225
+ city:
1226
+ updated_at: 2008-09-16 11:21:30 Z
1227
+ country_numeric: 492
1228
+ country_a2: MC
1229
+ id: 116
1230
+ country_a3: MCO
1231
+ country_name: Monaco
1232
+ state:
1233
+ created_at: 2008-09-16 11:21:30 Z
1234
+ zone_00143:
1235
+ postal:
1236
+ city:
1237
+ updated_at: 2008-09-16 11:21:31 Z
1238
+ country_numeric: 660
1239
+ country_a2: AI
1240
+ id: 143
1241
+ country_a3: AIA
1242
+ country_name: Anguilla
1243
+ state:
1244
+ created_at: 2008-09-16 11:21:31 Z
1245
+ zone_00223:
1246
+ postal:
1247
+ city:
1248
+ updated_at: 2008-09-16 11:21:34 Z
1249
+ country_numeric: 616
1250
+ country_a2: PL
1251
+ id: 223
1252
+ country_a3: POL
1253
+ country_name: Poland
1254
+ state:
1255
+ created_at: 2008-09-16 11:21:34 Z
1256
+ zone_00036:
1257
+ postal:
1258
+ city:
1259
+ updated_at: 2008-09-16 11:21:28 Z
1260
+ country_numeric: 398
1261
+ country_a2: KZ
1262
+ id: 36
1263
+ country_a3: KAZ
1264
+ country_name: Kazakhstan
1265
+ state:
1266
+ created_at: 2008-09-16 11:21:28 Z
1267
+ zone_00063:
1268
+ postal:
1269
+ city:
1270
+ updated_at: 2008-09-16 11:21:29 Z
1271
+ country_numeric: 368
1272
+ country_a2: IQ
1273
+ id: 63
1274
+ country_a3: IRQ
1275
+ country_name: Iraq
1276
+ state:
1277
+ created_at: 2008-09-16 11:21:29 Z
1278
+ zone_00117:
1279
+ postal:
1280
+ city:
1281
+ updated_at: 2008-09-16 11:21:30 Z
1282
+ country_numeric: 174
1283
+ country_a2: KM
1284
+ id: 117
1285
+ country_a3: COM
1286
+ country_name: Comoros
1287
+ state:
1288
+ created_at: 2008-09-16 11:21:30 Z
1289
+ zone_00144:
1290
+ postal:
1291
+ city:
1292
+ updated_at: 2008-09-16 11:21:31 Z
1293
+ country_numeric: 831
1294
+ country_a2: GG
1295
+ id: 144
1296
+ country_a3: GGY
1297
+ country_name: Guernsey
1298
+ state:
1299
+ created_at: 2008-09-16 11:21:31 Z
1300
+ zone_00170:
1301
+ postal:
1302
+ city:
1303
+ updated_at: 2008-09-16 11:21:32 Z
1304
+ country_numeric: 212
1305
+ country_a2: DM
1306
+ id: 170
1307
+ country_a3: DMA
1308
+ country_name: Dominica
1309
+ state:
1310
+ created_at: 2008-09-16 11:21:32 Z
1311
+ zone_00224:
1312
+ postal:
1313
+ city:
1314
+ updated_at: 2008-09-16 11:21:34 Z
1315
+ country_numeric: 498
1316
+ country_a2: MD
1317
+ id: 224
1318
+ country_a3: MDA
1319
+ country_name: Moldova
1320
+ state:
1321
+ created_at: 2008-09-16 11:21:34 Z
1322
+ zone_00037:
1323
+ postal:
1324
+ city:
1325
+ updated_at: 2008-09-16 11:21:28 Z
1326
+ country_numeric: 16
1327
+ country_a2: AS
1328
+ id: 37
1329
+ country_a3: ASM
1330
+ country_name: American Samoa
1331
+ state:
1332
+ created_at: 2008-09-16 11:21:28 Z
1333
+ zone_00064:
1334
+ postal:
1335
+ city:
1336
+ updated_at: 2008-09-16 11:21:29 Z
1337
+ country_numeric: 740
1338
+ country_a2: SR
1339
+ id: 64
1340
+ country_a3: SUR
1341
+ country_name: Suriname
1342
+ state:
1343
+ created_at: 2008-09-16 11:21:29 Z
1344
+ zone_00090:
1345
+ postal:
1346
+ city:
1347
+ updated_at: 2008-09-16 11:21:30 Z
1348
+ country_numeric: 682
1349
+ country_a2: SA
1350
+ id: 90
1351
+ country_a3: SAU
1352
+ country_name: Saudi Arabia
1353
+ state:
1354
+ created_at: 2008-09-16 11:21:30 Z
1355
+ zone_00118:
1356
+ postal:
1357
+ city:
1358
+ updated_at: 2008-09-16 11:21:31 Z
1359
+ country_numeric: 312
1360
+ country_a2: GP
1361
+ id: 118
1362
+ country_a3: GLP
1363
+ country_name: Guadeloupe
1364
+ state:
1365
+ created_at: 2008-09-16 11:21:31 Z
1366
+ zone_00145:
1367
+ postal:
1368
+ city:
1369
+ updated_at: 2008-09-16 11:21:31 Z
1370
+ country_numeric: 12
1371
+ country_a2: DZ
1372
+ id: 145
1373
+ country_a3: DZA
1374
+ country_name: Algeria
1375
+ state:
1376
+ created_at: 2008-09-16 11:21:31 Z
1377
+ zone_00171:
1378
+ postal:
1379
+ city:
1380
+ updated_at: 2008-09-16 11:21:32 Z
1381
+ country_numeric: 500
1382
+ country_a2: MS
1383
+ id: 171
1384
+ country_a3: MSR
1385
+ country_name: Montserrat
1386
+ state:
1387
+ created_at: 2008-09-16 11:21:32 Z
1388
+ zone_00225:
1389
+ postal:
1390
+ city:
1391
+ updated_at: 2008-09-16 11:21:34 Z
1392
+ country_numeric: 604
1393
+ country_a2: PE
1394
+ id: 225
1395
+ country_a3: PER
1396
+ country_name: Peru
1397
+ state:
1398
+ created_at: 2008-09-16 11:21:34 Z
1399
+ zone_00038:
1400
+ postal:
1401
+ city:
1402
+ updated_at: 2008-09-16 11:21:28 Z
1403
+ country_numeric: 70
1404
+ country_a2: BA
1405
+ id: 38
1406
+ country_a3: BIH
1407
+ country_name: Bosnia and Herzegovina
1408
+ state:
1409
+ created_at: 2008-09-16 11:21:28 Z
1410
+ zone_00065:
1411
+ postal:
1412
+ city:
1413
+ updated_at: 2008-09-16 11:21:29 Z
1414
+ country_numeric: 204
1415
+ country_a2: BJ
1416
+ id: 65
1417
+ country_a3: BEN
1418
+ country_name: Benin
1419
+ state:
1420
+ created_at: 2008-09-16 11:21:29 Z
1421
+ zone_00091:
1422
+ postal:
1423
+ city:
1424
+ updated_at: 2008-09-16 11:21:30 Z
1425
+ country_numeric: 20
1426
+ country_a2: AD
1427
+ id: 91
1428
+ country_a3: AND
1429
+ country_name: Andorra
1430
+ state:
1431
+ created_at: 2008-09-16 11:21:30 Z
1432
+ zone_00119:
1433
+ postal:
1434
+ city:
1435
+ updated_at: 2008-09-16 11:21:31 Z
1436
+ country_numeric: 462
1437
+ country_a2: MV
1438
+ id: 119
1439
+ country_a3: MDV
1440
+ country_name: Maldives
1441
+ state:
1442
+ created_at: 2008-09-16 11:21:31 Z
1443
+ zone_00172:
1444
+ postal:
1445
+ city:
1446
+ updated_at: 2008-09-16 11:21:32 Z
1447
+ country_numeric: 894
1448
+ country_a2: ZM
1449
+ id: 172
1450
+ country_a3: ZMB
1451
+ country_name: Zambia
1452
+ state:
1453
+ created_at: 2008-09-16 11:21:32 Z
1454
+ zone_00226:
1455
+ postal:
1456
+ city:
1457
+ updated_at: 2008-09-16 11:21:34 Z
1458
+ country_numeric: 184
1459
+ country_a2: CK
1460
+ id: 226
1461
+ country_a3: COK
1462
+ country_name: Cook Islands
1463
+ state:
1464
+ created_at: 2008-09-16 11:21:34 Z
1465
+ zone_00039:
1466
+ postal:
1467
+ city:
1468
+ updated_at: 2008-09-16 11:21:28 Z
1469
+ country_numeric: 466
1470
+ country_a2: ML
1471
+ id: 39
1472
+ country_a3: MLI
1473
+ country_name: Mali
1474
+ state:
1475
+ created_at: 2008-09-16 11:21:28 Z
1476
+ zone_00066:
1477
+ postal:
1478
+ city:
1479
+ updated_at: 2008-09-16 11:21:29 Z
1480
+ country_numeric: 496
1481
+ country_a2: MN
1482
+ id: 66
1483
+ country_a3: MNG
1484
+ country_name: Mongolia
1485
+ state:
1486
+ created_at: 2008-09-16 11:21:29 Z
1487
+ zone_00092:
1488
+ postal:
1489
+ city:
1490
+ updated_at: 2008-09-16 11:21:30 Z
1491
+ country_numeric: 388
1492
+ country_a2: JM
1493
+ id: 92
1494
+ country_a3: JAM
1495
+ country_name: Jamaica
1496
+ state:
1497
+ created_at: 2008-09-16 11:21:30 Z
1498
+ zone_00146:
1499
+ postal:
1500
+ city:
1501
+ updated_at: 2008-09-16 11:21:31 Z
1502
+ country_numeric: 704
1503
+ country_a2: VN
1504
+ id: 146
1505
+ country_a3: VNM
1506
+ country_name: Vietnam
1507
+ state:
1508
+ created_at: 2008-09-16 11:21:31 Z
1509
+ zone_00173:
1510
+ postal:
1511
+ city:
1512
+ updated_at: 2008-09-16 11:21:32 Z
1513
+ country_numeric: 800
1514
+ country_a2: UG
1515
+ id: 173
1516
+ country_a3: UGA
1517
+ country_name: Uganda
1518
+ state:
1519
+ created_at: 2008-09-16 11:21:32 Z
1520
+ zone_00227:
1521
+ postal:
1522
+ city:
1523
+ updated_at: 2008-09-16 11:21:34 Z
1524
+ country_numeric: 336
1525
+ country_a2: VA
1526
+ id: 227
1527
+ country_a3: VAT
1528
+ country_name: Vatican City
1529
+ state:
1530
+ created_at: 2008-09-16 11:21:34 Z
1531
+ zone_00067:
1532
+ postal:
1533
+ city:
1534
+ updated_at: 2008-09-16 11:21:29 Z
1535
+ country_numeric: 360
1536
+ country_a2: ID
1537
+ id: 67
1538
+ country_a3: IDN
1539
+ country_name: Indonesia
1540
+ state:
1541
+ created_at: 2008-09-16 11:21:29 Z
1542
+ zone_00093:
1543
+ postal:
1544
+ city:
1545
+ updated_at: 2008-09-16 11:21:30 Z
1546
+ country_numeric: 72
1547
+ country_a2: BW
1548
+ id: 93
1549
+ country_a3: BWA
1550
+ country_name: Botswana
1551
+ state:
1552
+ created_at: 2008-09-16 11:21:30 Z
1553
+ zone_00147:
1554
+ postal:
1555
+ city:
1556
+ updated_at: 2008-09-16 11:21:31 Z
1557
+ country_numeric: 36
1558
+ country_a2: AU
1559
+ id: 147
1560
+ country_a3: AUS
1561
+ country_name: Australia
1562
+ state:
1563
+ created_at: 2008-09-16 11:21:31 Z
1564
+ zone_00174:
1565
+ postal:
1566
+ city:
1567
+ updated_at: 2008-09-16 11:21:32 Z
1568
+ country_numeric: 384
1569
+ country_a2: CI
1570
+ id: 174
1571
+ country_a3: CIV
1572
+ country_name: "C\xC3\xB4te d'Ivoire"
1573
+ state:
1574
+ created_at: 2008-09-16 11:21:32 Z
1575
+ zone_00228:
1576
+ postal:
1577
+ city:
1578
+ updated_at: 2008-09-16 11:21:34 Z
1579
+ country_numeric: 231
1580
+ country_a2: ET
1581
+ id: 228
1582
+ country_a3: ETH
1583
+ country_name: Ethiopia
1584
+ state:
1585
+ created_at: 2008-09-16 11:21:34 Z
1586
+ zone_00068:
1587
+ postal:
1588
+ city:
1589
+ updated_at: 2008-09-16 11:21:29 Z
1590
+ country_numeric: 840
1591
+ country_a2: US
1592
+ id: 68
1593
+ country_a3: USA
1594
+ country_name: United States of America
1595
+ state:
1596
+ created_at: 2008-09-16 11:21:29 Z
1597
+ zone_00094:
1598
+ postal:
1599
+ city:
1600
+ updated_at: 2008-09-16 11:21:30 Z
1601
+ country_numeric: 788
1602
+ country_a2: TN
1603
+ id: 94
1604
+ country_a3: TUN
1605
+ country_name: Tunisia
1606
+ state:
1607
+ created_at: 2008-09-16 11:21:30 Z
1608
+ zone_00148:
1609
+ postal:
1610
+ city:
1611
+ updated_at: 2008-09-16 11:21:31 Z
1612
+ country_numeric: 608
1613
+ country_a2: PH
1614
+ id: 148
1615
+ country_a3: PHL
1616
+ country_name: Philippines
1617
+ state:
1618
+ created_at: 2008-09-16 11:21:31 Z
1619
+ zone_00175:
1620
+ postal:
1621
+ city:
1622
+ updated_at: 2008-09-16 11:21:32 Z
1623
+ country_numeric: 316
1624
+ country_a2: GU
1625
+ id: 175
1626
+ country_a3: GUM
1627
+ country_name: Guam
1628
+ state:
1629
+ created_at: 2008-09-16 11:21:32 Z
1630
+ zone_00229:
1631
+ postal:
1632
+ city:
1633
+ updated_at: 2008-09-16 11:21:34 Z
1634
+ country_numeric: 226
1635
+ country_a2: GQ
1636
+ id: 229
1637
+ country_a3: GNQ
1638
+ country_name: Equatorial Guinea
1639
+ state:
1640
+ created_at: 2008-09-16 11:21:34 Z
1641
+ zone_00095:
1642
+ postal:
1643
+ city:
1644
+ updated_at: 2008-09-16 11:21:30 Z
1645
+ country_numeric: 214
1646
+ country_a2: DO
1647
+ id: 95
1648
+ country_a3: DOM
1649
+ country_name: Dominican Republic
1650
+ state:
1651
+ created_at: 2008-09-16 11:21:30 Z
1652
+ zone_00149:
1653
+ postal:
1654
+ city:
1655
+ updated_at: 2008-09-16 11:21:32 Z
1656
+ country_numeric: 334
1657
+ country_a2: HM
1658
+ id: 149
1659
+ country_a3: HMD
1660
+ country_name: Heard and McDonald Islands
1661
+ state:
1662
+ created_at: 2008-09-16 11:21:32 Z
1663
+ zone_00176:
1664
+ postal:
1665
+ city:
1666
+ updated_at: 2008-09-16 11:21:32 Z
1667
+ country_numeric: 663
1668
+ country_a2: MF
1669
+ id: 176
1670
+ country_a3: MAF
1671
+ country_name: Saint Martin (French part)
1672
+ state:
1673
+ created_at: 2008-09-16 11:21:32 Z
1674
+ zone_00069:
1675
+ postal:
1676
+ city:
1677
+ updated_at: 2008-09-16 11:21:29 Z
1678
+ country_numeric: 795
1679
+ country_a2: TM
1680
+ id: 69
1681
+ country_a3: TKM
1682
+ country_name: Turkmenistan
1683
+ state:
1684
+ created_at: 2008-09-16 11:21:29 Z
1685
+ zone_00096:
1686
+ postal:
1687
+ city:
1688
+ updated_at: 2008-09-16 11:21:30 Z
1689
+ country_numeric: 233
1690
+ country_a2: EE
1691
+ id: 96
1692
+ country_a3: EST
1693
+ country_name: Estonia
1694
+ state:
1695
+ created_at: 2008-09-16 11:21:30 Z
1696
+ zone_00177:
1697
+ postal:
1698
+ city:
1699
+ updated_at: 2008-09-16 11:21:32 Z
1700
+ country_numeric: 442
1701
+ country_a2: LU
1702
+ id: 177
1703
+ country_a3: LUX
1704
+ country_name: Luxembourg
1705
+ state:
1706
+ created_at: 2008-09-16 11:21:32 Z
1707
+ zone_00097:
1708
+ postal:
1709
+ city:
1710
+ updated_at: 2008-09-16 11:21:30 Z
1711
+ country_numeric: 705
1712
+ country_a2: SI
1713
+ id: 97
1714
+ country_a3: SVN
1715
+ country_name: Slovenia
1716
+ state:
1717
+ created_at: 2008-09-16 11:21:30 Z
1718
+ zone_00178:
1719
+ postal:
1720
+ city:
1721
+ updated_at: 2008-09-16 11:21:32 Z
1722
+ country_numeric: 434
1723
+ country_a2: LY
1724
+ id: 178
1725
+ country_a3: LBY
1726
+ country_name: Libya
1727
+ state:
1728
+ created_at: 2008-09-16 11:21:32 Z
1729
+ zone_00098:
1730
+ postal:
1731
+ city:
1732
+ updated_at: 2008-09-16 11:21:30 Z
1733
+ country_numeric: 254
1734
+ country_a2: GF
1735
+ id: 98
1736
+ country_a3: GUF
1737
+ country_name: French Guiana
1738
+ state:
1739
+ created_at: 2008-09-16 11:21:30 Z
1740
+ zone_00179:
1741
+ postal:
1742
+ city:
1743
+ updated_at: 2008-09-16 11:21:32 Z
1744
+ country_numeric: 116
1745
+ country_a2: KH
1746
+ id: 179
1747
+ country_a3: KHM
1748
+ country_name: Cambodia
1749
+ state:
1750
+ created_at: 2008-09-16 11:21:32 Z
1751
+ zone_00099:
1752
+ postal:
1753
+ city:
1754
+ updated_at: 2008-09-16 11:21:30 Z
1755
+ country_numeric: 756
1756
+ country_a2: CH
1757
+ id: 99
1758
+ country_a3: CHE
1759
+ country_name: Switzerland
1760
+ state:
1761
+ created_at: 2008-09-16 11:21:30 Z
1762
+ zone_00100:
1763
+ postal:
1764
+ city:
1765
+ updated_at: 2008-09-16 11:21:30 Z
1766
+ country_numeric: 440
1767
+ country_a2: LT
1768
+ id: 100
1769
+ country_a3: LTU
1770
+ country_name: Lithuania
1771
+ state:
1772
+ created_at: 2008-09-16 11:21:30 Z
1773
+ zone_00020:
1774
+ postal:
1775
+ city:
1776
+ updated_at: 2008-09-16 11:21:28 Z
1777
+ country_numeric: 84
1778
+ country_a2: BZ
1779
+ id: 20
1780
+ country_a3: BLZ
1781
+ country_name: Belize
1782
+ state:
1783
+ created_at: 2008-09-16 11:21:28 Z
1784
+ zone_00101:
1785
+ postal:
1786
+ city:
1787
+ updated_at: 2008-09-16 11:21:30 Z
1788
+ country_numeric: 175
1789
+ country_a2: YT
1790
+ id: 101
1791
+ country_a3: MYT
1792
+ country_name: Mayotte
1793
+ state:
1794
+ created_at: 2008-09-16 11:21:30 Z
1795
+ zone_00021:
1796
+ postal:
1797
+ city:
1798
+ updated_at: 2008-09-16 11:21:28 Z
1799
+ country_numeric: 132
1800
+ country_a2: CV
1801
+ id: 21
1802
+ country_a3: CPV
1803
+ country_name: Cape Verde
1804
+ state:
1805
+ created_at: 2008-09-16 11:21:28 Z
1806
+ zone_00022:
1807
+ postal:
1808
+ city:
1809
+ updated_at: 2008-09-16 11:21:28 Z
1810
+ country_numeric: 528
1811
+ country_a2: NL
1812
+ id: 22
1813
+ country_a3: NLD
1814
+ country_name: Netherlands
1815
+ state:
1816
+ created_at: 2008-09-16 11:21:28 Z
1817
+ zone_00102:
1818
+ postal:
1819
+ city:
1820
+ updated_at: 2008-09-16 11:21:30 Z
1821
+ country_numeric: 630
1822
+ country_a2: PR
1823
+ id: 102
1824
+ country_a3: PRI
1825
+ country_name: Puerto Rico
1826
+ state:
1827
+ created_at: 2008-09-16 11:21:30 Z
1828
+ zone_00210:
1829
+ postal:
1830
+ city:
1831
+ updated_at: 2008-09-16 11:21:33 Z
1832
+ country_numeric: 533
1833
+ country_a2: AW
1834
+ id: 210
1835
+ country_a3: ABW
1836
+ country_name: Aruba
1837
+ state:
1838
+ created_at: 2008-09-16 11:21:33 Z
1839
+ zone_00023:
1840
+ postal:
1841
+ city:
1842
+ updated_at: 2008-09-16 11:21:28 Z
1843
+ country_numeric: 324
1844
+ country_a2: GN
1845
+ id: 23
1846
+ country_a3: GIN
1847
+ country_name: Guinea
1848
+ state:
1849
+ created_at: 2008-09-16 11:21:28 Z
1850
+ zone_00103:
1851
+ postal:
1852
+ city:
1853
+ updated_at: 2008-09-16 11:21:30 Z
1854
+ country_numeric: 566
1855
+ country_a2: NG
1856
+ id: 103
1857
+ country_a3: NGA
1858
+ country_name: Nigeria
1859
+ state:
1860
+ created_at: 2008-09-16 11:21:30 Z
1861
+ zone_00130:
1862
+ postal:
1863
+ city:
1864
+ updated_at: 2008-09-16 11:21:31 Z
1865
+ country_numeric: 798
1866
+ country_a2: TV
1867
+ id: 130
1868
+ country_a3: TUV
1869
+ country_name: Tuvalu
1870
+ state:
1871
+ created_at: 2008-09-16 11:21:31 Z
1872
+ zone_00211:
1873
+ postal:
1874
+ city:
1875
+ updated_at: 2008-09-16 11:21:33 Z
1876
+ country_numeric: 688
1877
+ country_a2: RS
1878
+ id: 211
1879
+ country_a3: SRB
1880
+ country_name: Serbia
1881
+ state:
1882
+ created_at: 2008-09-16 11:21:33 Z
1883
+ zone_00024:
1884
+ postal:
1885
+ city:
1886
+ updated_at: 2008-09-16 11:21:28 Z
1887
+ country_numeric: 352
1888
+ country_a2: IS
1889
+ id: 24
1890
+ country_a3: ISL
1891
+ country_name: Iceland
1892
+ state:
1893
+ created_at: 2008-09-16 11:21:28 Z
1894
+ zone_00050:
1895
+ postal:
1896
+ city:
1897
+ updated_at: 2008-09-16 11:21:29 Z
1898
+ country_numeric: 120
1899
+ country_a2: CM
1900
+ id: 50
1901
+ country_a3: CMR
1902
+ country_name: Cameroon
1903
+ state:
1904
+ created_at: 2008-09-16 11:21:29 Z
1905
+ zone_00104:
1906
+ postal:
1907
+ city:
1908
+ updated_at: 2008-09-16 11:21:30 Z
1909
+ country_numeric: 40
1910
+ country_a2: AT
1911
+ id: 104
1912
+ country_a3: AUT
1913
+ country_name: Austria
1914
+ state:
1915
+ created_at: 2008-09-16 11:21:30 Z
1916
+ zone_00131:
1917
+ postal:
1918
+ city:
1919
+ updated_at: 2008-09-16 11:21:31 Z
1920
+ country_numeric: 380
1921
+ country_a2: IT
1922
+ id: 131
1923
+ country_a3: ITA
1924
+ country_name: Italy
1925
+ state:
1926
+ created_at: 2008-09-16 11:21:31 Z
1927
+ zone_00051:
1928
+ postal:
1929
+ city:
1930
+ updated_at: 2008-09-16 11:21:29 Z
1931
+ country_numeric: 554
1932
+ country_a2: NZ
1933
+ id: 51
1934
+ country_a3: NZL
1935
+ country_name: New Zealand
1936
+ state:
1937
+ created_at: 2008-09-16 11:21:29 Z
1938
+ zone_00105:
1939
+ postal:
1940
+ city:
1941
+ updated_at: 2008-09-16 11:21:30 Z
1942
+ country_numeric: 348
1943
+ country_a2: HU
1944
+ id: 105
1945
+ country_a3: HUN
1946
+ country_name: Hungary
1947
+ state:
1948
+ created_at: 2008-09-16 11:21:30 Z
1949
+ zone_00132:
1950
+ postal:
1951
+ city:
1952
+ updated_at: 2008-09-16 11:21:31 Z
1953
+ country_numeric: 276
1954
+ country_a2: DE
1955
+ id: 132
1956
+ country_a3: DEU
1957
+ country_name: Germany
1958
+ state:
1959
+ created_at: 2008-09-16 11:21:31 Z
1960
+ zone_00212:
1961
+ postal:
1962
+ city:
1963
+ updated_at: 2008-09-16 11:21:33 Z
1964
+ country_numeric: 258
1965
+ country_a2: PF
1966
+ id: 212
1967
+ country_a3: PYF
1968
+ country_name: French Polynesia
1969
+ state:
1970
+ created_at: 2008-09-16 11:21:33 Z
1971
+ zone_00025:
1972
+ postal:
1973
+ city:
1974
+ updated_at: 2008-09-16 11:21:28 Z
1975
+ country_numeric: 44
1976
+ country_a2: BS
1977
+ id: 25
1978
+ country_a3: BHS
1979
+ country_name: Bahamas
1980
+ state:
1981
+ created_at: 2008-09-16 11:21:28 Z
1982
+ zone_00052:
1983
+ postal:
1984
+ city:
1985
+ updated_at: 2008-09-16 11:21:29 Z
1986
+ country_numeric: 703
1987
+ country_a2: SK
1988
+ id: 52
1989
+ country_a3: SVK
1990
+ country_name: Slovakia
1991
+ state:
1992
+ created_at: 2008-09-16 11:21:29 Z
1993
+ zone_00106:
1994
+ postal:
1995
+ city:
1996
+ updated_at: 2008-09-16 11:21:30 Z
1997
+ country_numeric: 242
1998
+ country_a2: FJ
1999
+ id: 106
2000
+ country_a3: FJI
2001
+ country_name: Fiji
2002
+ state:
2003
+ created_at: 2008-09-16 11:21:30 Z
2004
+ zone_00133:
2005
+ postal:
2006
+ city:
2007
+ updated_at: 2008-09-16 11:21:31 Z
2008
+ country_numeric: 499
2009
+ country_a2: ME
2010
+ id: 133
2011
+ country_a3: MNE
2012
+ country_name: Montenegro
2013
+ state:
2014
+ created_at: 2008-09-16 11:21:31 Z
2015
+ zone_00213:
2016
+ postal:
2017
+ city:
2018
+ updated_at: 2008-09-16 11:21:33 Z
2019
+ country_numeric: 686
2020
+ country_a2: SN
2021
+ id: 213
2022
+ country_a3: SEN
2023
+ country_name: Senegal
2024
+ state:
2025
+ created_at: 2008-09-16 11:21:33 Z
2026
+ zone_00240:
2027
+ postal:
2028
+ city:
2029
+ updated_at: 2008-09-16 11:21:34 Z
2030
+ country_numeric: 574
2031
+ country_a2: NF
2032
+ id: 240
2033
+ country_a3: NFK
2034
+ country_name: Norfolk Island
2035
+ state:
2036
+ created_at: 2008-09-16 11:21:34 Z
2037
+ zone_00026:
2038
+ postal:
2039
+ city:
2040
+ updated_at: 2008-09-16 11:21:28 Z
2041
+ country_numeric: 584
2042
+ country_a2: MH
2043
+ id: 26
2044
+ country_a3: MHL
2045
+ country_name: Marshall Islands
2046
+ state:
2047
+ created_at: 2008-09-16 11:21:28 Z
2048
+ zone_00053:
2049
+ postal:
2050
+ city:
2051
+ updated_at: 2008-09-16 11:21:29 Z
2052
+ country_numeric: 364
2053
+ country_a2: IR
2054
+ id: 53
2055
+ country_a3: IRN
2056
+ country_name: Iran
2057
+ state:
2058
+ created_at: 2008-09-16 11:21:29 Z
2059
+ zone_00107:
2060
+ postal:
2061
+ city:
2062
+ updated_at: 2008-09-16 11:21:30 Z
2063
+ country_numeric: 28
2064
+ country_a2: AG
2065
+ id: 107
2066
+ country_a3: ATG
2067
+ country_name: Antigua and Barbuda
2068
+ state:
2069
+ created_at: 2008-09-16 11:21:30 Z
2070
+ zone_00134:
2071
+ postal:
2072
+ city:
2073
+ updated_at: 2008-09-16 11:21:31 Z
2074
+ country_numeric: 232
2075
+ country_a2: ER
2076
+ id: 134
2077
+ country_a3: ERI
2078
+ country_name: Eritrea
2079
+ state:
2080
+ created_at: 2008-09-16 11:21:31 Z
2081
+ zone_00160:
2082
+ postal:
2083
+ city:
2084
+ updated_at: 2008-09-16 11:21:32 Z
2085
+ country_numeric: 340
2086
+ country_a2: HN
2087
+ id: 160
2088
+ country_a3: HND
2089
+ country_name: Honduras
2090
+ state:
2091
+ created_at: 2008-09-16 11:21:32 Z
2092
+ zone_00214:
2093
+ postal:
2094
+ city:
2095
+ updated_at: 2008-09-16 11:21:33 Z
2096
+ country_numeric: 858
2097
+ country_a2: UY
2098
+ id: 214
2099
+ country_a3: URY
2100
+ country_name: Uruguay
2101
+ state:
2102
+ created_at: 2008-09-16 11:21:33 Z
2103
+ zone_00241:
2104
+ postal:
2105
+ city:
2106
+ updated_at: 2008-09-16 11:21:34 Z
2107
+ country_numeric: 68
2108
+ country_a2: BO
2109
+ id: 241
2110
+ country_a3: BOL
2111
+ country_name: Bolivia
2112
+ state:
2113
+ created_at: 2008-09-16 11:21:34 Z
2114
+ zone_00027:
2115
+ postal:
2116
+ city:
2117
+ updated_at: 2008-09-16 11:21:28 Z
2118
+ country_numeric: 854
2119
+ country_a2: BF
2120
+ id: 27
2121
+ country_a3: BFA
2122
+ country_name: Burkina Faso
2123
+ state:
2124
+ created_at: 2008-09-16 11:21:28 Z
2125
+ zone_00054:
2126
+ postal:
2127
+ city:
2128
+ updated_at: 2008-09-16 11:21:29 Z
2129
+ country_numeric: 124
2130
+ country_a2: CA
2131
+ id: 54
2132
+ country_a3: CAN
2133
+ country_name: Canada
2134
+ state:
2135
+ created_at: 2008-09-16 11:21:29 Z
2136
+ zone_00080:
2137
+ postal:
2138
+ city:
2139
+ updated_at: 2008-09-16 11:21:29 Z
2140
+ country_numeric: 428
2141
+ country_a2: LV
2142
+ id: 80
2143
+ country_a3: LVA
2144
+ country_name: Latvia
2145
+ state:
2146
+ created_at: 2008-09-16 11:21:29 Z
2147
+ zone_00108:
2148
+ postal:
2149
+ city:
2150
+ updated_at: 2008-09-16 11:21:30 Z
2151
+ country_numeric: 372
2152
+ country_a2: IE
2153
+ id: 108
2154
+ country_a3: IRL
2155
+ country_name: Ireland
2156
+ state:
2157
+ created_at: 2008-09-16 11:21:30 Z
2158
+ zone_00161:
2159
+ postal:
2160
+ city:
2161
+ updated_at: 2008-09-16 11:21:32 Z
2162
+ country_numeric: 832
2163
+ country_a2: JE
2164
+ id: 161
2165
+ country_a3: JEY
2166
+ country_name: Jersey
2167
+ state:
2168
+ created_at: 2008-09-16 11:21:32 Z
2169
+ zone_00215:
2170
+ postal:
2171
+ city:
2172
+ updated_at: 2008-09-16 11:21:33 Z
2173
+ country_numeric: 732
2174
+ country_a2: EH
2175
+ id: 215
2176
+ country_a3: ESH
2177
+ country_name: Western Sahara
2178
+ state:
2179
+ created_at: 2008-09-16 11:21:33 Z
2180
+ zone_00242:
2181
+ postal:
2182
+ city:
2183
+ updated_at: 2008-09-16 11:21:34 Z
2184
+ country_numeric: 598
2185
+ country_a2: PG
2186
+ id: 242
2187
+ country_a3: PNG
2188
+ country_name: Papua New Guinea
2189
+ state:
2190
+ created_at: 2008-09-16 11:21:34 Z
2191
+ zone_00028:
2192
+ postal:
2193
+ city:
2194
+ updated_at: 2008-09-16 11:21:28 Z
2195
+ country_numeric: 96
2196
+ country_a2: BN
2197
+ id: 28
2198
+ country_a3: BRN
2199
+ country_name: Brunei Darussalam
2200
+ state:
2201
+ created_at: 2008-09-16 11:21:28 Z
2202
+ zone_00055:
2203
+ postal:
2204
+ city:
2205
+ updated_at: 2008-09-16 11:21:29 Z
2206
+ country_numeric: 458
2207
+ country_a2: MY
2208
+ id: 55
2209
+ country_a3: MYS
2210
+ country_name: Malaysia
2211
+ state:
2212
+ created_at: 2008-09-16 11:21:29 Z
2213
+ zone_00081:
2214
+ postal:
2215
+ city:
2216
+ updated_at: 2008-09-16 11:21:29 Z
2217
+ country_numeric: 748
2218
+ country_a2: SZ
2219
+ id: 81
2220
+ country_a3: SWZ
2221
+ country_name: Swaziland
2222
+ state:
2223
+ created_at: 2008-09-16 11:21:29 Z
2224
+ zone_00109:
2225
+ postal:
2226
+ city:
2227
+ updated_at: 2008-09-16 11:21:30 Z
2228
+ country_numeric: 158
2229
+ country_a2: TW
2230
+ id: 109
2231
+ country_a3: TWN
2232
+ country_name: Taiwan
2233
+ state:
2234
+ created_at: 2008-09-16 11:21:30 Z
2235
+ zone_00135:
2236
+ postal:
2237
+ city:
2238
+ updated_at: 2008-09-16 11:21:31 Z
2239
+ country_numeric: 764
2240
+ country_a2: TH
2241
+ id: 135
2242
+ country_a3: THA
2243
+ country_name: Thailand
2244
+ state:
2245
+ created_at: 2008-09-16 11:21:31 Z
2246
+ zone_00162:
2247
+ postal:
2248
+ city:
2249
+ updated_at: 2008-09-16 11:21:32 Z
2250
+ country_numeric: 86
2251
+ country_a2: IO
2252
+ id: 162
2253
+ country_a3: IOT
2254
+ country_name: British Indian Ocean Territory
2255
+ state:
2256
+ created_at: 2008-09-16 11:21:32 Z
2257
+ zone_00216:
2258
+ postal:
2259
+ city:
2260
+ updated_at: 2008-09-16 11:21:33 Z
2261
+ country_numeric: 275
2262
+ country_a2: PS
2263
+ id: 216
2264
+ country_a3: PSE
2265
+ country_name: Palestine
2266
+ state:
2267
+ created_at: 2008-09-16 11:21:33 Z
2268
+ zone_00243:
2269
+ postal:
2270
+ city:
2271
+ updated_at: 2008-09-16 11:21:34 Z
2272
+ country_numeric: 180
2273
+ country_a2: CD
2274
+ id: 243
2275
+ country_a3: COD
2276
+ country_name: Congo (Kinshasa)
2277
+ state:
2278
+ created_at: 2008-09-16 11:21:34 Z
2279
+ zone_00029:
2280
+ postal:
2281
+ city:
2282
+ updated_at: 2008-09-16 11:21:28 Z
2283
+ country_numeric: 736
2284
+ country_a2: SD
2285
+ id: 29
2286
+ country_a3: SDN
2287
+ country_name: Sudan
2288
+ state:
2289
+ created_at: 2008-09-16 11:21:28 Z
2290
+ zone_00056:
2291
+ postal:
2292
+ city:
2293
+ updated_at: 2008-09-16 11:21:29 Z
2294
+ country_numeric: 454
2295
+ country_a2: MW
2296
+ id: 56
2297
+ country_a3: MWI
2298
+ country_name: Malawi
2299
+ state:
2300
+ created_at: 2008-09-16 11:21:29 Z
2301
+ zone_00082:
2302
+ postal:
2303
+ city:
2304
+ updated_at: 2008-09-16 11:21:29 Z
2305
+ country_numeric: 626
2306
+ country_a2: TL
2307
+ id: 82
2308
+ country_a3: TLS
2309
+ country_name: Timor-Leste
2310
+ state:
2311
+ created_at: 2008-09-16 11:21:29 Z
2312
+ zone_00136:
2313
+ postal:
2314
+ city:
2315
+ updated_at: 2008-09-16 11:21:31 Z
2316
+ country_numeric: 92
2317
+ country_a2: VG
2318
+ id: 136
2319
+ country_a3: VGB
2320
+ country_name: Virgin Islands, British
2321
+ state:
2322
+ created_at: 2008-09-16 11:21:31 Z
2323
+ zone_00163:
2324
+ postal:
2325
+ city:
2326
+ updated_at: 2008-09-16 11:21:32 Z
2327
+ country_numeric: 248
2328
+ country_a2: AX
2329
+ id: 163
2330
+ country_a3: ALA
2331
+ country_name: "\xC3\x85land"
2332
+ state:
2333
+ created_at: 2008-09-16 11:21:32 Z
2334
+ zone_00217:
2335
+ postal:
2336
+ city:
2337
+ updated_at: 2008-09-16 11:21:33 Z
2338
+ country_numeric: 478
2339
+ country_a2: MR
2340
+ id: 217
2341
+ country_a3: MRT
2342
+ country_name: Mauritania
2343
+ state:
2344
+ created_at: 2008-09-16 11:21:33 Z
2345
+ zone_00244:
2346
+ postal:
2347
+ city:
2348
+ updated_at: 2008-09-16 11:21:34 Z
2349
+ country_numeric: 136
2350
+ country_a2: KY
2351
+ id: 244
2352
+ country_a3: CYM
2353
+ country_name: Cayman Islands
2354
+ state:
2355
+ created_at: 2008-09-16 11:21:34 Z
2356
+ zone_00057:
2357
+ postal:
2358
+ city:
2359
+ updated_at: 2008-09-16 11:21:29 Z
2360
+ country_numeric: 408
2361
+ country_a2: KP
2362
+ id: 57
2363
+ country_a3: PRK
2364
+ country_name: Korea, North
2365
+ state:
2366
+ created_at: 2008-09-16 11:21:29 Z
2367
+ zone_00083:
2368
+ postal:
2369
+ city:
2370
+ updated_at: 2008-09-16 11:21:30 Z
2371
+ country_numeric: 191
2372
+ country_a2: HR
2373
+ id: 83
2374
+ country_a3: HRV
2375
+ country_name: Croatia
2376
+ state:
2377
+ created_at: 2008-09-16 11:21:30 Z
2378
+ zone_00137:
2379
+ postal:
2380
+ city:
2381
+ updated_at: 2008-09-16 11:21:31 Z
2382
+ country_numeric: 296
2383
+ country_a2: KI
2384
+ id: 137
2385
+ country_a3: KIR
2386
+ country_name: Kiribati
2387
+ state:
2388
+ created_at: 2008-09-16 11:21:31 Z
2389
+ zone_00164:
2390
+ postal:
2391
+ city:
2392
+ updated_at: 2008-09-16 11:21:32 Z
2393
+ country_numeric: 768
2394
+ country_a2: TG
2395
+ id: 164
2396
+ country_a3: TGO
2397
+ country_name: Togo
2398
+ state:
2399
+ created_at: 2008-09-16 11:21:32 Z
2400
+ zone_00190:
2401
+ postal:
2402
+ city:
2403
+ updated_at: 2008-09-16 11:21:33 Z
2404
+ country_numeric: 638
2405
+ country_a2: RE
2406
+ id: 190
2407
+ country_a3: REU
2408
+ country_name: Reunion
2409
+ state:
2410
+ created_at: 2008-09-16 11:21:33 Z
2411
+ zone_00218:
2412
+ postal:
2413
+ city:
2414
+ updated_at: 2008-09-16 11:21:33 Z
2415
+ country_numeric: 654
2416
+ country_a2: SH
2417
+ id: 218
2418
+ country_a3: SHN
2419
+ country_name: Saint Helena
2420
+ state:
2421
+ created_at: 2008-09-16 11:21:33 Z
2422
+ zone_00191:
2423
+ postal:
2424
+ city:
2425
+ updated_at: 2008-09-16 11:21:33 Z
2426
+ country_numeric: 570
2427
+ country_a2: NU
2428
+ id: 191
2429
+ country_a3: NIU
2430
+ country_name: Niue
2431
+ state:
2432
+ created_at: 2008-09-16 11:21:33 Z
2433
+ zone_00165:
2434
+ postal:
2435
+ city:
2436
+ updated_at: 2008-09-16 11:21:32 Z
2437
+ country_numeric: 512
2438
+ country_a2: OM
2439
+ id: 165
2440
+ country_a3: OMN
2441
+ country_name: Oman
2442
+ state:
2443
+ created_at: 2008-09-16 11:21:32 Z
2444
+ zone_00084:
2445
+ postal:
2446
+ city:
2447
+ updated_at: 2008-09-16 11:21:30 Z
2448
+ country_numeric: 52
2449
+ country_a2: BB
2450
+ id: 84
2451
+ country_a3: BRB
2452
+ country_name: Barbados
2453
+ state:
2454
+ created_at: 2008-09-16 11:21:30 Z
2455
+ zone_00138:
2456
+ postal:
2457
+ city:
2458
+ updated_at: 2008-09-16 11:21:31 Z
2459
+ country_numeric: 262
2460
+ country_a2: DJ
2461
+ id: 138
2462
+ country_a3: DJI
2463
+ country_name: Djibouti
2464
+ state:
2465
+ created_at: 2008-09-16 11:21:31 Z
2466
+ zone_00219:
2467
+ postal:
2468
+ city:
2469
+ updated_at: 2008-09-16 11:21:34 Z
2470
+ country_numeric: 112
2471
+ country_a2: BY
2472
+ id: 219
2473
+ country_a3: BLR
2474
+ country_name: Belarus
2475
+ state:
2476
+ created_at: 2008-09-16 11:21:34 Z
2477
+ zone_00245:
2478
+ postal:
2479
+ city:
2480
+ updated_at: 2008-09-16 11:21:34 Z
2481
+ country_numeric: 260
2482
+ country_a2: TF
2483
+ id: 245
2484
+ country_a3: ATF
2485
+ country_name: French Southern Lands
2486
+ state:
2487
+ created_at: 2008-09-16 11:21:34 Z
2488
+ zone_00246:
2489
+ postal:
2490
+ city:
2491
+ updated_at: 2008-09-16 11:21:34 Z
2492
+ country_numeric: 446
2493
+ country_a2: MO
2494
+ id: 246
2495
+ country_a3: MAC
2496
+ country_name: Macau
2497
+ state:
2498
+ created_at: 2008-09-16 11:21:34 Z
2499
+ zone_00192:
2500
+ postal:
2501
+ city:
2502
+ updated_at: 2008-09-16 11:21:33 Z
2503
+ country_numeric: 300
2504
+ country_a2: GR
2505
+ id: 192
2506
+ country_a3: GRC
2507
+ country_name: Greece
2508
+ state:
2509
+ created_at: 2008-09-16 11:21:33 Z
2510
+ zone_00085:
2511
+ postal:
2512
+ city:
2513
+ updated_at: 2008-09-16 11:21:30 Z
2514
+ country_numeric: 796
2515
+ country_a2: TC
2516
+ id: 85
2517
+ country_a3: TCA
2518
+ country_name: Turks and Caicos Islands
2519
+ state:
2520
+ created_at: 2008-09-16 11:21:30 Z
2521
+ zone_00058:
2522
+ postal:
2523
+ city:
2524
+ updated_at: 2008-09-16 11:21:29 Z
2525
+ country_numeric: 508
2526
+ country_a2: MZ
2527
+ id: 58
2528
+ country_a3: MOZ
2529
+ country_name: Mozambique
2530
+ state:
2531
+ created_at: 2008-09-16 11:21:29 Z
2532
+ zone_00139:
2533
+ postal:
2534
+ city:
2535
+ updated_at: 2008-09-16 11:21:31 Z
2536
+ country_numeric: 634
2537
+ country_a2: QA
2538
+ id: 139
2539
+ country_a3: QAT
2540
+ country_name: Qatar
2541
+ state:
2542
+ created_at: 2008-09-16 11:21:31 Z
2543
+ zone_00166:
2544
+ postal:
2545
+ city:
2546
+ updated_at: 2008-09-16 11:21:32 Z
2547
+ country_numeric: 558
2548
+ country_a2: NI
2549
+ id: 166
2550
+ country_a3: NIC
2551
+ country_name: Nicaragua
2552
+ state:
2553
+ created_at: 2008-09-16 11:21:32 Z
2554
+ zone_00193:
2555
+ postal:
2556
+ city:
2557
+ updated_at: 2008-09-16 11:21:33 Z
2558
+ country_numeric: 670
2559
+ country_a2: VC
2560
+ id: 193
2561
+ country_a3: VCT
2562
+ country_name: Saint Vincent and the Grenadines
2563
+ state:
2564
+ created_at: 2008-09-16 11:21:33 Z
2565
+ zone_00059:
2566
+ postal:
2567
+ city:
2568
+ updated_at: 2008-09-16 11:21:29 Z
2569
+ country_numeric: 578
2570
+ country_a2: "NO"
2571
+ id: 59
2572
+ country_a3: NOR
2573
+ country_name: Norway
2574
+ state:
2575
+ created_at: 2008-09-16 11:21:29 Z
2576
+ zone_00086:
2577
+ postal:
2578
+ city:
2579
+ updated_at: 2008-09-16 11:21:30 Z
2580
+ country_numeric: 776
2581
+ country_a2: TO
2582
+ id: 86
2583
+ country_a3: TON
2584
+ country_name: Tonga
2585
+ state:
2586
+ created_at: 2008-09-16 11:21:30 Z
2587
+ zone_00167:
2588
+ postal:
2589
+ city:
2590
+ updated_at: 2008-09-16 11:21:32 Z
2591
+ country_numeric: 24
2592
+ country_a2: AO
2593
+ id: 167
2594
+ country_a3: AGO
2595
+ country_name: Angola
2596
+ state:
2597
+ created_at: 2008-09-16 11:21:32 Z
2598
+ zone_00194:
2599
+ postal:
2600
+ city:
2601
+ updated_at: 2008-09-16 11:21:33 Z
2602
+ country_numeric: 674
2603
+ country_a2: SM
2604
+ id: 194
2605
+ country_a3: SMR
2606
+ country_name: San Marino
2607
+ state:
2608
+ created_at: 2008-09-16 11:21:33 Z
2609
+ zone_00087:
2610
+ postal:
2611
+ city:
2612
+ updated_at: 2008-09-16 11:21:30 Z
2613
+ country_numeric: 562
2614
+ country_a2: NE
2615
+ id: 87
2616
+ country_a3: NER
2617
+ country_name: Niger
2618
+ state:
2619
+ created_at: 2008-09-16 11:21:30 Z
2620
+ zone_00168:
2621
+ postal:
2622
+ city:
2623
+ updated_at: 2008-09-16 11:21:32 Z
2624
+ country_numeric: 422
2625
+ country_a2: LB
2626
+ id: 168
2627
+ country_a3: LBN
2628
+ country_name: Lebanon
2629
+ state:
2630
+ created_at: 2008-09-16 11:21:32 Z
2631
+ zone_00088:
2632
+ postal:
2633
+ city:
2634
+ updated_at: 2008-09-16 11:21:30 Z
2635
+ country_numeric: 218
2636
+ country_a2: EC
2637
+ id: 88
2638
+ country_a3: ECU
2639
+ country_name: Ecuador
2640
+ state:
2641
+ created_at: 2008-09-16 11:21:30 Z
2642
+ zone_00195:
2643
+ postal:
2644
+ city:
2645
+ updated_at: 2008-09-16 11:21:33 Z
2646
+ country_numeric: 642
2647
+ country_a2: RO
2648
+ id: 195
2649
+ country_a3: ROU
2650
+ country_name: Romania
2651
+ state:
2652
+ created_at: 2008-09-16 11:21:33 Z
2653
+ zone_00196:
2654
+ postal:
2655
+ city:
2656
+ updated_at: 2008-09-16 11:21:33 Z
2657
+ country_numeric: 90
2658
+ country_a2: SB
2659
+ id: 196
2660
+ country_a3: SLB
2661
+ country_name: Solomon Islands
2662
+ state:
2663
+ created_at: 2008-09-16 11:21:33 Z
2664
+ zone_00089:
2665
+ postal:
2666
+ city:
2667
+ updated_at: 2008-09-16 11:21:30 Z
2668
+ country_numeric: 833
2669
+ country_a2: IM
2670
+ id: 89
2671
+ country_a3: IMN
2672
+ country_name: Isle of Man
2673
+ state:
2674
+ created_at: 2008-09-16 11:21:30 Z
2675
+ zone_00169:
2676
+ postal:
2677
+ city:
2678
+ updated_at: 2008-09-16 11:21:32 Z
2679
+ country_numeric: 694
2680
+ country_a2: SL
2681
+ id: 169
2682
+ country_a3: SLE
2683
+ country_name: Sierra Leone
2684
+ state:
2685
+ created_at: 2008-09-16 11:21:32 Z
2686
+ zone_00197:
2687
+ postal:
2688
+ city:
2689
+ updated_at: 2008-09-16 11:21:33 Z
2690
+ country_numeric: 108
2691
+ country_a2: BI
2692
+ id: 197
2693
+ country_a3: BDI
2694
+ country_name: Burundi
2695
+ state:
2696
+ created_at: 2008-09-16 11:21:33 Z
2697
+ zone_00198:
2698
+ postal:
2699
+ city:
2700
+ updated_at: 2008-09-16 11:21:33 Z
2701
+ country_numeric: 332
2702
+ country_a2: HT
2703
+ id: 198
2704
+ country_a3: HTI
2705
+ country_name: Haiti
2706
+ state:
2707
+ created_at: 2008-09-16 11:21:33 Z