quicktravel_client 3.6.1 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. checksums.yaml +5 -5
  2. data/.ruby-version +1 -1
  3. data/.travis.yml +6 -3
  4. data/CHANGELOG.md +36 -3
  5. data/README.md +1 -1
  6. data/gemfiles/rails6.gemfile +8 -0
  7. data/lib/quick_travel.rb +4 -0
  8. data/lib/quick_travel/adapter.rb +19 -81
  9. data/lib/quick_travel/address.rb +4 -2
  10. data/lib/quick_travel/adjustment.rb +3 -2
  11. data/lib/quick_travel/background_check.rb +4 -2
  12. data/lib/quick_travel/bed_configuration.rb +3 -2
  13. data/lib/quick_travel/bed_requirement.rb +3 -2
  14. data/lib/quick_travel/booking.rb +11 -1
  15. data/lib/quick_travel/cache.rb +24 -5
  16. data/lib/quick_travel/checkout.rb +1 -1
  17. data/lib/quick_travel/client.rb +9 -0
  18. data/lib/quick_travel/contact.rb +4 -1
  19. data/lib/quick_travel/init_from_hash.rb +58 -1
  20. data/lib/quick_travel/package.rb +13 -0
  21. data/lib/quick_travel/passenger.rb +7 -2
  22. data/lib/quick_travel/passenger_price_break.rb +3 -2
  23. data/lib/quick_travel/passenger_split.rb +5 -0
  24. data/lib/quick_travel/passenger_type.rb +1 -1
  25. data/lib/quick_travel/product_configuration.rb +1 -1
  26. data/lib/quick_travel/products/base.rb +4 -4
  27. data/lib/quick_travel/property.rb +2 -1
  28. data/lib/quick_travel/property_facility.rb +3 -2
  29. data/lib/quick_travel/reservation.rb +5 -1
  30. data/lib/quick_travel/resource.rb +12 -3
  31. data/lib/quick_travel/resource_category.rb +5 -1
  32. data/lib/quick_travel/resource_group.rb +9 -0
  33. data/lib/quick_travel/room_facility.rb +3 -2
  34. data/lib/quick_travel/route.rb +1 -1
  35. data/lib/quick_travel/route_stop.rb +18 -2
  36. data/lib/quick_travel/service.rb +3 -2
  37. data/lib/quick_travel/version.rb +1 -1
  38. data/quicktravel_client.gemspec +6 -5
  39. data/spec/adapter_spec.rb +36 -5
  40. data/spec/booking_spec.rb +24 -6
  41. data/spec/clients_spec.rb +42 -0
  42. data/spec/discounts_spec.rb +21 -21
  43. data/spec/package_spec.rb +24 -0
  44. data/spec/passenger_type_spec.rb +1 -1
  45. data/spec/product_configuration_spec.rb +11 -0
  46. data/spec/product_spec.rb +5 -5
  47. data/spec/region_spec.rb +2 -2
  48. data/spec/reservation_spec.rb +22 -6
  49. data/spec/spec_helper.rb +6 -3
  50. data/spec/support/cassettes/accommodation_reserve.yml +119 -53
  51. data/spec/support/cassettes/basic_product_scheduled_trips.yml +22 -34
  52. data/spec/support/cassettes/basic_product_scheduled_trips_multi_sector.yml +22 -28
  53. data/spec/support/cassettes/basic_product_scheduled_trips_unbookable.yml +12 -12
  54. data/spec/support/cassettes/booking_activate.yml +31 -30
  55. data/spec/support/cassettes/booking_cancel.yml +31 -30
  56. data/spec/support/cassettes/booking_create.yml +17 -16
  57. data/spec/support/cassettes/booking_create_accommodation.yml +64 -0
  58. data/spec/support/cassettes/booking_documents.yml +12 -12
  59. data/spec/support/cassettes/booking_non_existant.yml +11 -11
  60. data/spec/support/cassettes/booking_price_changes.yml +22 -18
  61. data/spec/support/cassettes/booking_show.yml +16 -15
  62. data/spec/support/cassettes/booking_update.yml +31 -29
  63. data/spec/support/cassettes/booking_with_comments.yml +119 -0
  64. data/spec/support/cassettes/booking_with_documents.yml +41 -38
  65. data/spec/support/cassettes/booking_with_nested_attributes.yml +70 -64
  66. data/spec/support/cassettes/booking_with_price_changes.yml +30 -27
  67. data/spec/support/cassettes/checkout_client_token.yml +14 -14
  68. data/spec/support/cassettes/client_templates.yml +120 -0
  69. data/spec/support/cassettes/countries.yml +18 -94
  70. data/spec/support/cassettes/country_all.yml +18 -94
  71. data/spec/support/cassettes/create_reservation_fail.yml +11 -11
  72. data/spec/support/cassettes/create_reservation_with_booking.yml +18 -17
  73. data/spec/support/cassettes/locations.yml +15 -15
  74. data/spec/support/cassettes/opal_modern_pay_failed_booking.yml +64 -0
  75. data/spec/support/cassettes/opal_modern_pay_failed_create.yml +61 -0
  76. data/spec/support/cassettes/opal_modern_pay_failed_update.yml +59 -0
  77. data/spec/support/cassettes/opal_modern_pay_successful_booking.yml +64 -0
  78. data/spec/support/cassettes/opal_modern_pay_successful_response.yml +61 -0
  79. data/spec/support/cassettes/opal_modern_pay_successful_update_response.yml +61 -0
  80. data/spec/support/cassettes/opal_pay.yml +61 -0
  81. data/spec/support/cassettes/opal_pay_booking.yml +64 -0
  82. data/spec/support/cassettes/package_show.yml +83 -0
  83. data/spec/support/cassettes/package_show_product_type.yml +80 -0
  84. data/spec/support/cassettes/passenger_all.yml +14 -14
  85. data/spec/support/cassettes/payment_info.yml +12 -12
  86. data/spec/support/cassettes/price_quote.yml +23 -23
  87. data/spec/support/cassettes/product_date_range_bookability.yml +35 -49
  88. data/spec/support/cassettes/product_show.yml +16 -18
  89. data/spec/support/cassettes/product_show_as_agent.yml +17 -23
  90. data/spec/support/cassettes/product_type_all.yml +19 -15
  91. data/spec/support/cassettes/product_type_resource_categories.yml +12 -12
  92. data/spec/support/cassettes/product_type_resource_categories_tickets.yml +15 -15
  93. data/spec/support/cassettes/product_type_routes.yml +17 -17
  94. data/spec/support/cassettes/property.yml +19 -19
  95. data/spec/support/cassettes/property_types.yml +15 -15
  96. data/spec/support/cassettes/region_show.yml +14 -14
  97. data/spec/support/cassettes/reservation_resource.yml +64 -0
  98. data/spec/support/cassettes/reservation_with_extra_picks.yml +63 -63
  99. data/spec/support/cassettes/resource_category_all.yml +15 -15
  100. data/spec/support/cassettes/resource_category_all_for_product_type_8.yml +14 -14
  101. data/spec/support/cassettes/resource_fare_bases.yml +21 -24
  102. data/spec/support/cassettes/resource_show.yml +18 -18
  103. data/spec/support/cassettes/resource_with_price.yml +19 -19
  104. data/spec/support/cassettes/settings_basic.yml +12 -12
  105. data/spec/support/cassettes/tenant_switcher.yml +37 -29
  106. data/spec/support/cassettes/wrong_url.yml +28 -47
  107. data/spec/support/coverage_loader.rb +1 -1
  108. metadata +69 -27
  109. data/gemfiles/rails4.gemfile +0 -9
@@ -5,10 +5,12 @@ http_interactions:
5
5
  uri: http://test.qt.sealink.com.au:8080/api/bookings/reference/222223.json
6
6
  body:
7
7
  encoding: UTF-8
8
- string: access_key=<QT_KEY>
8
+ string: ''
9
9
  headers:
10
10
  Content-Length:
11
11
  - '0'
12
+ X-API-KEY:
13
+ - <QT_KEY>
12
14
  response:
13
15
  status:
14
16
  code: 200
@@ -18,22 +20,20 @@ http_interactions:
18
20
  - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
19
21
  Content-Type:
20
22
  - application/json; charset=utf-8
21
- X-Ua-Compatible:
22
- - IE=Edge,chrome=1
23
23
  Etag:
24
- - '"795979f24e7421f51cae13d82446d84a"'
24
+ - W/"685ae49cb57c9b594806370995c9b4c1"
25
25
  Cache-Control:
26
26
  - max-age=0, private, must-revalidate
27
27
  X-Request-Id:
28
- - b3b78d6941533c517f465f85baa4a0b3
28
+ - b982f959-77a4-40de-bd67-f66c2a340912
29
29
  X-Runtime:
30
- - '0.260748'
31
- Vary:
32
- - Origin
30
+ - '1.294057'
33
31
  Date:
34
- - Fri, 01 Jan 2016 02:32:33 GMT
32
+ - Fri, 01 Jan 2016 02:32:23 GMT
35
33
  X-Rack-Cache:
36
34
  - miss
35
+ Vary:
36
+ - Origin
37
37
  X-Content-Type-Options:
38
38
  - nosniff
39
39
  X-Download-Options:
@@ -47,40 +47,43 @@ http_interactions:
47
47
  Server:
48
48
  - WEBrick/1.3.1 (Ruby/2.2.5/2016-04-26)
49
49
  Content-Length:
50
- - '11906'
50
+ - '12299'
51
51
  Connection:
52
52
  - Keep-Alive
53
53
  Set-Cookie:
54
- - _quick_travel_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFVEkiJTczYTY0ZWZhYTU5M2I1YjA5OTE1NjQxYjIwMGVhNzg3BjsAVEkiCXVzZXIGOwBGaQY%3D--084496bde08ffb1f2ffe2e04d2b843de84202a80;
54
+ - _session_id=dlpudHFZdmYxa3Zmb1U1K2tKeTROWERGc3RISEJnSE1aTVpGQmw3VHcxK01tdldjOGMzZWYxRkhYUUl3R0t5UExlVGU4V1AyZjgrb2Z5ZnlFRTdiN3lFaEVXbithYkJVdnBweVAyR3JtWWs9LS1sQXVtbWt5dXBCU2hOZngwbFBOM0dRPT0%3D--ff052df27f5c02dff2aeec8c9da90bd96e882864;
55
55
  path=/; HttpOnly
56
56
  body:
57
57
  encoding: UTF-8
58
58
  string: '{"id":1,"state":"active","reference":"222223","public_comments":null,"internal_comments":null,"customer_contact_name":"New
59
- Name","customer_contact_phone":null,"customer_contact_mobile":null,"customer_contact_email":null,"currency_iso_code":"AUD","country_id":3,"post_code":"","referral_code_id":1,"external_identifier":null,"created_at":"2013-03-01T00:05:46+10:30","updated_at":"2016-01-01T13:02:32+10:30","promo_code":null,"promo_code_id":null,"insurance_offered":false,"total_adjustments_in_cents":0,"pre_adjusted_gross_in_cents":38000,"nett_in_cents":38000,"gross_in_cents":38000,"commission_in_cents":0,"balance_in_cents":38000,"paid_in_cents":0,"surcharge_in_cents":0,"deposit_in_cents":0,"web_site_name":null,"deposit_relevant":false,"deposit_due_on":{"_type":"Date","_value":"2016-03-01T00:00:00+10:30"},"balance_due_on":{"_type":"Date","_value":"2016-03-01T00:00:00+10:30"},"first_travel_date":{"_type":"Date","_value":"2016-03-01"},"last_travel_date":{"_type":"Date","_value":"2016-03-02"},"complete":true,"reason_not_complete":"","first_reason_not_complete":"","discardable_in":60,"inactivatable_in":10,"notices":{},"client":null,"passenger_ids":[1,2],"vehicle_ids":[],"reservation_ids":[1,3,2],"adjustment_ids":[],"todo_items":[],"confirmation_requests":[],"passengers_attributes":[{"id":1,"title":"Mr","first_name":"New","last_name":"Name","passenger_type_id":1,"age":30,"gender":"Male","position":1},{"id":2,"title":null,"first_name":null,"last_name":null,"passenger_type_id":1,"age":30,"gender":null,"position":2}],"vehicles_attributes":[],"reservations_attributes":[{"id":1,"booking_id":1,"description":"A
60
- basic studio room","comment":"","active":true,"service_ids":[3,4],"resource_id":6,"quantity":null,"adjustments_attributes":[{"id":6,"gross_in_cents":-20000,"creator":{"active":true,"age":null,"business_number":null,"business_number_type":null,"created_at":"2013-03-01T00:00:02+10:30","creator_id":null,"currency_iso_code":"AUD","first_name":"administrator","gender":null,"id":1,"internal_staff":true,"internal_subdivision":false,"last_name":"administrator","name":"Administrator
61
- Administrator","notes":null,"remember_token":null,"remember_token_expires_at":null,"salt":null,"title":null,"updated_at":"2013-03-01T00:00:03+10:30","updator_id":null},"created_at":"2013-03-01T00:40:04+10:30","description":"50%
59
+ Name","customer_contact_phone":null,"customer_contact_mobile":null,"customer_contact_email":null,"currency_iso_code":"AUD","country_id":3,"drop_off_option_id":null,"drop_off_location_id":null,"post_code":"","referral_code_id":1,"external_identifier":null,"created_at":"2013-03-01T00:05:46.000+10:30","updated_at":"2016-01-01T13:02:11.000+10:30","promo_code":null,"promo_code_id":null,"insurance_offered":false,"total_adjustments_in_cents":0,"pre_adjusted_gross_in_cents":38000,"nett_in_cents":38000,"gross_in_cents":38000,"commission_in_cents":0,"balance_in_cents":38000,"paid_in_cents":0,"surcharge_in_cents":0,"deposit_in_cents":0,"web_site_name":null,"deposit_relevant":false,"deposit_due_on":{"_type":"Date","_value":"2016-03-01T00:00:00.000+10:30"},"balance_due_on":{"_type":"Date","_value":"2016-03-01T00:00:00.000+10:30"},"due":false,"first_travel_date":{"_type":"Date","_value":"2016-03-01"},"last_travel_date":{"_type":"Date","_value":"2016-03-02"},"complete":true,"reason_not_complete":"","first_reason_not_complete":"","unprintable_luggage_tags":false,"discardable_in":60,"inactivatable_in":10,"notices":{},"client":null,"passenger_ids":[1,2],"vehicle_ids":[],"reservation_ids":[1,3,2],"adjustment_ids":[],"todo_items":[],"confirmation_requests":[],"passengers_attributes":[{"id":1,"title":"Mr","first_name":"New","last_name":"Name","passenger_type_id":1,"age":30,"gender":"Male","position":1},{"id":2,"title":null,"first_name":null,"last_name":null,"passenger_type_id":1,"age":30,"gender":null,"position":2}],"vehicles_attributes":[],"reservations_attributes":[{"id":1,"booking_id":1,"description":"A
60
+ basic studio room","comment":"","active":true,"service_ids":[3,4],"resource_id":6,"quantity":null,"adjustments_attributes":[{"id":6,"gross_in_cents":-20000,"creator":{"id":1,"name":"Administrator
61
+ Administrator","age":null,"first_name":"administrator","last_name":"administrator","title":null,"gender":null,"created_at":null,"updated_at":null,"notes":null,"updator_id":null,"creator_id":null,"active":true,"internal_subdivision":false,"business_number":null,"business_number_type":null,"currency_iso_code":"AUD","access_type":2},"created_at":"2013-03-01T00:40:04.000+10:30","description":"50%
62
62
  Off","adjustable_item_type":"Reservation","adjustable_item_id":1,"adjustment_definition_id":1,"adjustment_category_id":1,"automatic":true}],"complete":true,"reason_not_complete":"","first_reason_not_complete":"","enough_time_before_travel_to_edit":true,"bed_configuration":"1
63
- x Double and 1 x Single","product_type_id":2,"itinerary_footer":false,"fare_basis_set_id":12,"manually_priced":false,"manually_assigned_fare_basis_set":false,"has_fare_basis":true,"fare_basis_season_name":"","fare_basis_pointer_id":6,"pick_up_info":null,"drop_off_info":null,"selection_name":"Hilton
64
- Hotel: Executive Room","product_name_underscore":"accommodation","resource_class_name_underscore":"accommodation","resource_class_name":"Accommodation","has_ticket_template":false,"first_travel_date":{"_type":"Date","_value":"2016-03-01"},"last_travel_date":{"_type":"Date","_value":"2016-03-02"},"durational":true,"duration":2,"checkout_date":{"_type":"Date","_value":"2016-03-03"},"duration_units":"Nights","date_start_label":"In:","date_end_label":"Out:","accommodation_extra_picks":false,"expires":false,"expiry":"*NA*","has_skipped_reservation_groups":false,"editable_reservation_groups":[],"tariff_level_name":"Auto
63
+ x Double and 1 x Single","product_type_id":2,"itinerary_footer":false,"fare_basis_set_id":12,"manually_priced":false,"manually_assigned_fare_basis_set":false,"has_fare_basis":true,"fare_basis_season_name":null,"fare_basis_pointer_id":6,"pick_up_info":null,"drop_off_info":null,"selection_name":"Hilton
64
+ Hotel: Executive Room","product_name_underscore":"accommodation","resource_class_name_underscore":"accommodation","resource_class_name":"Accommodation","has_ticket_template":false,"first_travel_date":{"_type":"Date","_value":"2016-03-01"},"last_travel_date":{"_type":"Date","_value":"2016-03-02"},"durational":true,"duration":2,"span":2,"checkout_date":{"_type":"Date","_value":"2016-03-03"},"duration_units":"Nights","date_start_label":"In:","date_end_label":"Out:","accommodation_extra_picks":false,"expires":false,"expiry":"*NA*","has_skipped_reservation_groups":false,"editable_reservation_groups":[],"tariff_level_name":"Auto
65
65
  Priced as: Rack Rate","gross_including_packaged_item_in_cents":38000,"pre_adjusted_gross_including_packaged_item_in_cents":64000,"gross_in_cents":20000,"pre_adjusted_gross_in_cents":40000,"pre_adjusted_commission_in_cents":0,"cost_in_cents":20000,"sub_items_gross_in_cents":18000,"rules":[{"unique_name":"Test
66
66
  Discount Hilton","description":"","display_name":"Test Discount Hilton"}],"package":false,"sub_reservation_depth":0,"sub_reservations_attributes":[{"id":3,"booking_id":1,"description":"You
67
67
  have declined Travel Insurance for your booking. If you wish to add Travel
68
68
  Insurance to this booking, please contact the SeaLink Travel Group on 13 13
69
- 01 prior to commencing your travels.","comment":null,"active":true,"service_ids":[7,8],"resource_id":4,"quantity":null,"adjustments_attributes":[],"complete":true,"reason_not_complete":"","first_reason_not_complete":"","enough_time_before_travel_to_edit":true,"product_type_id":7,"itinerary_footer":true,"fare_basis_set_id":8,"manually_priced":false,"manually_assigned_fare_basis_set":false,"has_fare_basis":true,"fare_basis_season_name":"","fare_basis_pointer_id":4,"pick_up_info":null,"drop_off_info":null,"selection_name":"Travel
70
- Insurance - Declined","product_name_underscore":"travel_insurance","resource_class_name_underscore":"insurance","resource_class_name":"Insurance","has_ticket_template":false,"first_travel_date":{"_type":"Date","_value":"2016-03-01"},"last_travel_date":{"_type":"Date","_value":"2016-03-02"},"durational":true,"duration":2,"duration_units":"Days","date_start_label":"Start
69
+ 01 prior to commencing your travels.","comment":null,"active":true,"service_ids":[7,8],"resource_id":4,"quantity":null,"adjustments_attributes":[],"complete":true,"reason_not_complete":"","first_reason_not_complete":"","enough_time_before_travel_to_edit":true,"product_type_id":7,"itinerary_footer":true,"fare_basis_set_id":8,"manually_priced":false,"manually_assigned_fare_basis_set":false,"has_fare_basis":true,"fare_basis_season_name":null,"fare_basis_pointer_id":4,"pick_up_info":null,"drop_off_info":null,"selection_name":"Travel
70
+ Insurance - Declined","product_name_underscore":"travel_insurance","resource_class_name_underscore":"insurance","resource_class_name":"Insurance","has_ticket_template":false,"first_travel_date":{"_type":"Date","_value":"2016-03-01"},"last_travel_date":{"_type":"Date","_value":"2016-03-02"},"durational":true,"duration":2,"span":2,"duration_units":"Days","date_start_label":"Start
71
71
  Date:","date_end_label":"End Date:","expires":false,"expiry":"*NA*","has_skipped_reservation_groups":false,"editable_reservation_groups":[],"tariff_level_name":"Auto
72
- Priced as: Rack Rate","gross_including_packaged_item_in_cents":12000,"pre_adjusted_gross_including_packaged_item_in_cents":12000,"gross_in_cents":12000,"pre_adjusted_gross_in_cents":12000,"pre_adjusted_commission_in_cents":0,"cost_in_cents":8000,"rules":[],"package":false,"sub_reservation_depth":1,"extra_pick":null,"child_resource":true,"pending_confirmation":false,"confirmation_request_fields":["pick_up_information","drop_off_information","vendor_pnr","notes_for_vendor","vendor_staff","note_for_inventory_type_change"],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[1,2],"passenger_splits":[{"commission_in_cents":0,"commission_percentage":"0.0","consumer_id":1,"consumer_splittable_id":3,"consumer_splittable_type":"Reservation","created_at":"2013-03-01T00:17:34+10:30","gross_in_cents":6000,"id":7,"updated_at":"2013-03-01T00:17:34+10:30"},{"commission_in_cents":0,"commission_percentage":"0.0","consumer_id":2,"consumer_splittable_id":3,"consumer_splittable_type":"Reservation","created_at":"2013-03-01T00:17:34+10:30","gross_in_cents":6000,"id":8,"updated_at":"2013-03-01T00:17:34+10:30"}],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{"1":6000,"2":6000}},{"id":2,"booking_id":1,"description":"QBE
72
+ Priced as: Rack Rate","gross_including_packaged_item_in_cents":12000,"pre_adjusted_gross_including_packaged_item_in_cents":12000,"gross_in_cents":12000,"pre_adjusted_gross_in_cents":12000,"pre_adjusted_commission_in_cents":0,"cost_in_cents":8000,"rules":[],"package":false,"sub_reservation_depth":1,"extra_pick":null,"child_resource":true,"pending_confirmation":false,"confirmation_request_fields":["pick_up_information","drop_off_information","vendor_pnr
73
+ notes_for_vendor","vendor_staff note_for_inventory_type_change"],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[1],"passenger_splits":[{"id":7,"consumer_id":1,"consumer_splittable_id":3,"gross_in_cents":6000,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"}],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{"1":6000}},{"id":2,"booking_id":1,"description":"QBE
73
74
  Travel Insurance Policy E known as the ''Australian Cancellation and Additional
74
75
  Expenses'' plan has been included into this booking. This covers you for defined
75
76
  unforeseen cancellations and additional expenses. Please refer to the Product
76
- Disclosure Statement for further information.","comment":null,"active":true,"service_ids":[5,6],"resource_id":3,"quantity":null,"adjustments_attributes":[{"id":5,"gross_in_cents":-6000,"creator":{"active":true,"age":null,"business_number":null,"business_number_type":null,"created_at":"2013-03-01T00:00:02+10:30","creator_id":null,"currency_iso_code":"AUD","first_name":"administrator","gender":null,"id":1,"internal_staff":true,"internal_subdivision":false,"last_name":"administrator","name":"Administrator
77
- Administrator","notes":null,"remember_token":null,"remember_token_expires_at":null,"salt":null,"title":null,"updated_at":"2013-03-01T00:00:03+10:30","updator_id":null},"created_at":"2013-03-01T00:40:04+10:30","description":"50%
78
- Off","adjustable_item_type":"Reservation","adjustable_item_id":2,"adjustment_definition_id":1,"adjustment_category_id":1,"automatic":true}],"complete":true,"reason_not_complete":"","first_reason_not_complete":"","enough_time_before_travel_to_edit":true,"product_type_id":7,"itinerary_footer":true,"fare_basis_set_id":8,"manually_priced":false,"manually_assigned_fare_basis_set":false,"has_fare_basis":true,"fare_basis_season_name":"","fare_basis_pointer_id":4,"pick_up_info":null,"drop_off_info":null,"selection_name":"QBE
79
- Travel Insurance - Policy E","product_name_underscore":"travel_insurance","resource_class_name_underscore":"insurance","resource_class_name":"Insurance","has_ticket_template":false,"first_travel_date":{"_type":"Date","_value":"2016-03-01"},"last_travel_date":{"_type":"Date","_value":"2016-03-02"},"durational":true,"duration":2,"duration_units":"Days","date_start_label":"Start
77
+ Disclosure Statement for further information.","comment":null,"active":true,"service_ids":[5,6],"resource_id":3,"quantity":null,"adjustments_attributes":[{"id":5,"gross_in_cents":-6000,"creator":{"id":1,"name":"Administrator
78
+ Administrator","age":null,"first_name":"administrator","last_name":"administrator","title":null,"gender":null,"created_at":null,"updated_at":null,"notes":null,"updator_id":null,"creator_id":null,"active":true,"internal_subdivision":false,"business_number":null,"business_number_type":null,"currency_iso_code":"AUD","access_type":2},"created_at":"2013-03-01T00:40:04.000+10:30","description":"50%
79
+ Off","adjustable_item_type":"Reservation","adjustable_item_id":2,"adjustment_definition_id":1,"adjustment_category_id":1,"automatic":true}],"complete":true,"reason_not_complete":"","first_reason_not_complete":"","enough_time_before_travel_to_edit":true,"product_type_id":7,"itinerary_footer":true,"fare_basis_set_id":8,"manually_priced":false,"manually_assigned_fare_basis_set":false,"has_fare_basis":true,"fare_basis_season_name":null,"fare_basis_pointer_id":4,"pick_up_info":null,"drop_off_info":null,"selection_name":"QBE
80
+ Travel Insurance - Policy E","product_name_underscore":"travel_insurance","resource_class_name_underscore":"insurance","resource_class_name":"Insurance","has_ticket_template":false,"first_travel_date":{"_type":"Date","_value":"2016-03-01"},"last_travel_date":{"_type":"Date","_value":"2016-03-02"},"durational":true,"duration":2,"span":2,"duration_units":"Days","date_start_label":"Start
80
81
  Date:","date_end_label":"End Date:","expires":false,"expiry":"*NA*","has_skipped_reservation_groups":false,"editable_reservation_groups":[],"tariff_level_name":"Auto
81
82
  Priced as: Rack Rate","gross_including_packaged_item_in_cents":6000,"pre_adjusted_gross_including_packaged_item_in_cents":12000,"gross_in_cents":6000,"pre_adjusted_gross_in_cents":12000,"pre_adjusted_commission_in_cents":0,"cost_in_cents":8000,"rules":[{"unique_name":"QBE
82
- Get Me","description":"","display_name":"QBE Get Me"}],"package":false,"sub_reservation_depth":1,"extra_pick":null,"child_resource":true,"pending_confirmation":false,"confirmation_request_fields":["pick_up_information","drop_off_information","vendor_pnr","notes_for_vendor","vendor_staff","note_for_inventory_type_change"],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[1,2],"passenger_splits":[{"commission_in_cents":0,"commission_percentage":"0.0","consumer_id":1,"consumer_splittable_id":2,"consumer_splittable_type":"Reservation","created_at":"2013-03-01T00:11:08+10:30","gross_in_cents":6000,"id":3,"updated_at":"2013-03-01T00:11:08+10:30"},{"commission_in_cents":0,"commission_percentage":"0.0","consumer_id":2,"consumer_splittable_id":2,"consumer_splittable_type":"Reservation","created_at":"2013-03-01T00:11:08+10:30","gross_in_cents":6000,"id":4,"updated_at":"2013-03-01T00:11:08+10:30"}],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{"1":3000,"2":3000}}],"extra_pick":null,"child_resource":null,"pending_confirmation":false,"confirmation_request_fields":[],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[1,2],"passenger_splits":[{"commission_in_cents":0,"commission_percentage":"0.0","consumer_id":1,"consumer_splittable_id":1,"consumer_splittable_type":"Reservation","created_at":"2013-03-01T00:08:00+10:30","gross_in_cents":0,"id":1,"updated_at":"2013-03-01T00:08:00+10:30"},{"commission_in_cents":0,"commission_percentage":"0.0","consumer_id":2,"consumer_splittable_id":1,"consumer_splittable_type":"Reservation","created_at":"2013-03-01T00:08:00+10:30","gross_in_cents":0,"id":2,"updated_at":"2013-03-01T00:08:00+10:30"}],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{"1":0,"2":0}}],"adjustments_attributes":[],"payments_attributes":[],"payment_types_attributes":[{"id":5,"name":"master","description":"master","payment_method":"credit_card","gateway":"braintree","credit_card_brand":"MasterCard","transaction_fee":"0.0","active":true,"position":2,"surchargeable":false,"for_frequent_traveller_redemption":false,"comment_required":false,"internal":false,"redirect":false},{"id":4,"name":"visa","description":"visa","payment_method":"credit_card","gateway":"braintree","credit_card_brand":"Visa","transaction_fee":"0.0","active":true,"position":3,"surchargeable":false,"for_frequent_traveller_redemption":false,"comment_required":false,"internal":false,"redirect":false},{"id":7,"name":"PayPal","description":"Payments
83
- made via PayPal account","payment_method":"paypal","gateway":"braintree","credit_card_brand":null,"transaction_fee":"0.0","active":true,"position":6,"surchargeable":false,"for_frequent_traveller_redemption":false,"comment_required":false,"internal":false,"redirect":false}],"issued_tickets_attributes":[]}'
83
+ Get Me","description":"","display_name":"QBE Get Me"}],"package":false,"sub_reservation_depth":1,"extra_pick":null,"child_resource":true,"pending_confirmation":false,"confirmation_request_fields":["pick_up_information","drop_off_information","vendor_pnr
84
+ notes_for_vendor","vendor_staff note_for_inventory_type_change"],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[1,2],"passenger_splits":[{"id":3,"consumer_id":1,"consumer_splittable_id":2,"gross_in_cents":6000,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"},{"id":4,"consumer_id":2,"consumer_splittable_id":2,"gross_in_cents":6000,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"}],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{"1":3000,"2":3000}}],"extra_pick":null,"child_resource":null,"pending_confirmation":false,"confirmation_request_fields":[],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[1,2],"passenger_splits":[{"id":1,"consumer_id":1,"consumer_splittable_id":1,"gross_in_cents":0,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"},{"id":2,"consumer_id":2,"consumer_splittable_id":1,"gross_in_cents":0,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"}],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{"1":0,"2":0}}],"adjustments_attributes":[],"payments_attributes":[],"payment_types_attributes":[{"id":4,"name":"visa","description":"visa","transaction_fee":"0.0","active":true,"position":3,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":"Visa","payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":5,"name":"master","description":"master","transaction_fee":"0.0","active":true,"position":4,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":7,"name":"PayPal","description":"Payments
85
+ made via PayPal account","transaction_fee":"0.0","active":true,"position":6,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"paypal","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":10,"name":"Opal
86
+ Pay","description":"Opal Payments","transaction_fee":"0.0","active":true,"position":9,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"opal_pay","gateway":null,"on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":false,"creditlink":false,"surchargeable":false}],"issued_tickets_attributes":[]}'
84
87
  http_version:
85
- recorded_at: Fri, 28 Oct 2016 05:28:09 GMT
86
- recorded_with: VCR 3.0.3
88
+ recorded_at: Wed, 21 Mar 2018 04:40:30 GMT
89
+ recorded_with: VCR 4.0.0
@@ -5,10 +5,12 @@ http_interactions:
5
5
  uri: http://test.qt.sealink.com.au:8080/api/checkouts/client_token.json?gateway=braintree
6
6
  body:
7
7
  encoding: UTF-8
8
- string: access_key=<QT_KEY>
8
+ string: ''
9
9
  headers:
10
10
  Content-Length:
11
11
  - '0'
12
+ X-API-KEY:
13
+ - <QT_KEY>
12
14
  response:
13
15
  status:
14
16
  code: 200
@@ -18,22 +20,20 @@ http_interactions:
18
20
  - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
19
21
  Content-Type:
20
22
  - application/json; charset=utf-8
21
- X-Ua-Compatible:
22
- - IE=Edge,chrome=1
23
23
  Etag:
24
- - '"cda6bc3f3414cab26afaeeb1aed78399"'
24
+ - W/"3f3fa513804e3c472e03ae7cdc8822f8"
25
25
  Cache-Control:
26
26
  - max-age=0, private, must-revalidate
27
27
  X-Request-Id:
28
- - ec6354ccbc937b85106f6f839bde6e39
28
+ - e8dcdde1-edf6-49e2-a592-f1b875a0f511
29
29
  X-Runtime:
30
- - '3.865619'
31
- Vary:
32
- - Origin
30
+ - '1.325420'
33
31
  Date:
34
- - Fri, 01 Jan 2016 02:30:19 GMT
32
+ - Fri, 01 Jan 2016 02:32:19 GMT
35
33
  X-Rack-Cache:
36
34
  - miss
35
+ Vary:
36
+ - Origin
37
37
  X-Content-Type-Options:
38
38
  - nosniff
39
39
  X-Download-Options:
@@ -47,15 +47,15 @@ http_interactions:
47
47
  Server:
48
48
  - WEBrick/1.3.1 (Ruby/2.2.5/2016-04-26)
49
49
  Content-Length:
50
- - '1951'
50
+ - '2023'
51
51
  Connection:
52
52
  - Keep-Alive
53
53
  Set-Cookie:
54
- - _quick_travel_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFVEkiJTczZTQ0NTQ3MDE0OWJkNDZkMzNhZmU0ZGUwZGE2MWNlBjsAVEkiCXVzZXIGOwBGaQY%3D--0db3ef975d0c7058bd1a7dc8cfd788d3b5a7f56c;
54
+ - _session_id=dDlUdVlDTnZNTlNDQmtvdVlYVkx1OWZhSUpZVENPcFJVa3ZyakIxNEdoeHcrK1RFSFNva2ZCVm5Eb1VOVkp4NC9mKzJEUmo4cm8zSmhjQXNab1A0dENaam5GbEQwQjRnaDhaUmFERVh4Wms9LS1lSTJMTDdWNkFtRkR0cG91T0xJQzJBPT0%3D--83868f791ab24c3e42cc462e205d5615604891d1;
55
55
  path=/; HttpOnly
56
56
  body:
57
57
  encoding: UTF-8
58
- string: '{"client_token":"eyJ2ZXJzaW9uIjoyLCJhdXRob3JpemF0aW9uRmluZ2VycHJpbnQiOiJmN2I0NWI1MWUzMzg5OTVhZDVmYzhkNjFiYmFjNDJlMTU1NTI1N2MzZjYyMDljOTkxNjI5MWJmYWYyM2Q5NTBjfGNyZWF0ZWRfYXQ9MjAxNi0xMS0xMVQwMDozNjowOS4zODAzMDYyNTErMDAwMFx1MDAyNm1lcmNoYW50X2lkPTd6Mzg0d2s4NGd6OWI1dm5cdTAwMjZwdWJsaWNfa2V5PTh3YzJzZ3E2ZDVubXQyNzgiLCJjb25maWdVcmwiOiJodHRwczovL2FwaS5zYW5kYm94LmJyYWludHJlZWdhdGV3YXkuY29tOjQ0My9tZXJjaGFudHMvN3ozODR3azg0Z3o5YjV2bi9jbGllbnRfYXBpL3YxL2NvbmZpZ3VyYXRpb24iLCJjaGFsbGVuZ2VzIjpbXSwiZW52aXJvbm1lbnQiOiJzYW5kYm94IiwiY2xpZW50QXBpVXJsIjoiaHR0cHM6Ly9hcGkuc2FuZGJveC5icmFpbnRyZWVnYXRld2F5LmNvbTo0NDMvbWVyY2hhbnRzLzd6Mzg0d2s4NGd6OWI1dm4vY2xpZW50X2FwaSIsImFzc2V0c1VybCI6Imh0dHBzOi8vYXNzZXRzLmJyYWludHJlZWdhdGV3YXkuY29tIiwiYXV0aFVybCI6Imh0dHBzOi8vYXV0aC52ZW5tby5zYW5kYm94LmJyYWludHJlZWdhdGV3YXkuY29tIiwiYW5hbHl0aWNzIjp7InVybCI6Imh0dHBzOi8vY2xpZW50LWFuYWx5dGljcy5zYW5kYm94LmJyYWludHJlZWdhdGV3YXkuY29tLzd6Mzg0d2s4NGd6OWI1dm4ifSwidGhyZWVEU2VjdXJlRW5hYmxlZCI6ZmFsc2UsInBheXBhbEVuYWJsZWQiOnRydWUsInBheXBhbCI6eyJkaXNwbGF5TmFtZSI6IlNlYUxpbmsiLCJjbGllbnRJZCI6bnVsbCwicHJpdmFjeVVybCI6Imh0dHA6Ly9leGFtcGxlLmNvbS9wcCIsInVzZXJBZ3JlZW1lbnRVcmwiOiJodHRwOi8vZXhhbXBsZS5jb20vdG9zIiwiYmFzZVVybCI6Imh0dHBzOi8vYXNzZXRzLmJyYWludHJlZWdhdGV3YXkuY29tIiwiYXNzZXRzVXJsIjoiaHR0cHM6Ly9jaGVja291dC5wYXlwYWwuY29tIiwiZGlyZWN0QmFzZVVybCI6bnVsbCwiYWxsb3dIdHRwIjp0cnVlLCJlbnZpcm9ubWVudE5vTmV0d29yayI6dHJ1ZSwiZW52aXJvbm1lbnQiOiJvZmZsaW5lIiwidW52ZXR0ZWRNZXJjaGFudCI6ZmFsc2UsImJyYWludHJlZUNsaWVudElkIjoibWFzdGVyY2xpZW50MyIsImJpbGxpbmdBZ3JlZW1lbnRzRW5hYmxlZCI6dHJ1ZSwibWVyY2hhbnRBY2NvdW50SWQiOiJiOW5kaDhrcGR6c3N6cm44IiwiY3VycmVuY3lJc29Db2RlIjoiVVNEIn0sImNvaW5iYXNlRW5hYmxlZCI6ZmFsc2UsIm1lcmNoYW50SWQiOiI3ejM4NHdrODRnejliNXZuIiwidmVubW8iOiJvZmYiLCJhcHBsZVBheSI6eyJzdGF0dXMiOiJtb2NrIiwiY291bnRyeUNvZGUiOiJVUyIsImN1cnJlbmN5Q29kZSI6IlVTRCIsIm1lcmNoYW50SWRlbnRpZmllciI6Im1lcmNoYW50LmF1LmNvbS5zZWFsaW5rLnNhbmRib3giLCJzdXBwb3J0ZWROZXR3b3JrcyI6WyJ2aXNhIiwibWFzdGVyY2FyZCIsImFtZXgiLCJkaXNjb3ZlciJdfX0="}'
58
+ string: '{"client_token":"eyJ2ZXJzaW9uIjoyLCJhdXRob3JpemF0aW9uRmluZ2VycHJpbnQiOiIxMTk2NjkxNWRhYmI4ZTZkMmNlY2VlMGQyN2IyOWRhYWE4YzU1OTM4ZmM5ODcyZjYyZWUxZTlkYzg3NThlNjMzfGNyZWF0ZWRfYXQ9MjAxOC0wMy0yMVQwNDo0MDoyNi4xNjIzNjk2NjArMDAwMFx1MDAyNm1lcmNoYW50X2lkPTd6Mzg0d2s4NGd6OWI1dm5cdTAwMjZwdWJsaWNfa2V5PTh3YzJzZ3E2ZDVubXQyNzgiLCJjb25maWdVcmwiOiJodHRwczovL2FwaS5zYW5kYm94LmJyYWludHJlZWdhdGV3YXkuY29tOjQ0My9tZXJjaGFudHMvN3ozODR3azg0Z3o5YjV2bi9jbGllbnRfYXBpL3YxL2NvbmZpZ3VyYXRpb24iLCJjaGFsbGVuZ2VzIjpbXSwiZW52aXJvbm1lbnQiOiJzYW5kYm94IiwiY2xpZW50QXBpVXJsIjoiaHR0cHM6Ly9hcGkuc2FuZGJveC5icmFpbnRyZWVnYXRld2F5LmNvbTo0NDMvbWVyY2hhbnRzLzd6Mzg0d2s4NGd6OWI1dm4vY2xpZW50X2FwaSIsImFzc2V0c1VybCI6Imh0dHBzOi8vYXNzZXRzLmJyYWludHJlZWdhdGV3YXkuY29tIiwiYXV0aFVybCI6Imh0dHBzOi8vYXV0aC52ZW5tby5zYW5kYm94LmJyYWludHJlZWdhdGV3YXkuY29tIiwiYW5hbHl0aWNzIjp7InVybCI6Imh0dHBzOi8vY2xpZW50LWFuYWx5dGljcy5zYW5kYm94LmJyYWludHJlZWdhdGV3YXkuY29tLzd6Mzg0d2s4NGd6OWI1dm4ifSwidGhyZWVEU2VjdXJlRW5hYmxlZCI6ZmFsc2UsInBheXBhbEVuYWJsZWQiOnRydWUsInBheXBhbCI6eyJkaXNwbGF5TmFtZSI6IlNlYUxpbmsiLCJjbGllbnRJZCI6IkFUQlk1ZE92ZHlZaXVIOFdMOXhqaVJTb3ZlZnZfeXlfNGdVemlLNzVPVTlVVExpTXdKamNHZWdibi1ydk41Mjh0Qk9vc0pTMkNzMzh2LUNJIiwicHJpdmFjeVVybCI6Imh0dHA6Ly9leGFtcGxlLmNvbS9wcCIsInVzZXJBZ3JlZW1lbnRVcmwiOiJodHRwOi8vZXhhbXBsZS5jb20vdG9zIiwiYmFzZVVybCI6Imh0dHBzOi8vYXNzZXRzLmJyYWludHJlZWdhdGV3YXkuY29tIiwiYXNzZXRzVXJsIjoiaHR0cHM6Ly9jaGVja291dC5wYXlwYWwuY29tIiwiZGlyZWN0QmFzZVVybCI6bnVsbCwiYWxsb3dIdHRwIjp0cnVlLCJlbnZpcm9ubWVudE5vTmV0d29yayI6ZmFsc2UsImVudmlyb25tZW50Ijoib2ZmbGluZSIsInVudmV0dGVkTWVyY2hhbnQiOmZhbHNlLCJicmFpbnRyZWVDbGllbnRJZCI6Im1hc3RlcmNsaWVudDMiLCJiaWxsaW5nQWdyZWVtZW50c0VuYWJsZWQiOnRydWUsIm1lcmNoYW50QWNjb3VudElkIjoiYjluZGg4a3BkenNzenJuOCIsImN1cnJlbmN5SXNvQ29kZSI6IlVTRCJ9LCJtZXJjaGFudElkIjoiN3ozODR3azg0Z3o5YjV2biIsInZlbm1vIjoib2ZmIiwiYXBwbGVQYXkiOnsic3RhdHVzIjoibW9jayIsImNvdW50cnlDb2RlIjoiVVMiLCJjdXJyZW5jeUNvZGUiOiJVU0QiLCJtZXJjaGFudElkZW50aWZpZXIiOiJtZXJjaGFudC5hdS5jb20uc2VhbGluay5zYW5kYm94Iiwic3VwcG9ydGVkTmV0d29ya3MiOlsidmlzYSIsIm1hc3RlcmNhcmQiLCJhbWV4IiwiZGlzY292ZXIiXX19"}'
59
59
  http_version:
60
- recorded_at: Fri, 11 Nov 2016 00:36:09 GMT
61
- recorded_with: VCR 3.0.3
60
+ recorded_at: Wed, 21 Mar 2018 04:40:26 GMT
61
+ recorded_with: VCR 4.0.0
@@ -0,0 +1,120 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://test.qt.sealink.com.au:8080/api/clients/2.json
6
+ body:
7
+ encoding: UTF-8
8
+ string: ''
9
+ headers:
10
+ Content-Length:
11
+ - '0'
12
+ X-API-KEY:
13
+ - <QT_KEY>
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: 'OK '
18
+ headers:
19
+ P3p:
20
+ - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
21
+ Content-Type:
22
+ - application/json; charset=utf-8
23
+ Etag:
24
+ - W/"651918ea3a399afbf3a755713a8511dd"
25
+ Cache-Control:
26
+ - max-age=0, private, must-revalidate
27
+ X-Request-Id:
28
+ - 0c6843e0-e8ae-47a1-b924-a10de907d9a8
29
+ X-Runtime:
30
+ - '0.188579'
31
+ Date:
32
+ - Fri, 01 Jan 2016 02:59:22 GMT
33
+ X-Rack-Cache:
34
+ - miss
35
+ Vary:
36
+ - Origin
37
+ X-Content-Type-Options:
38
+ - nosniff
39
+ X-Download-Options:
40
+ - noopen
41
+ X-Frame-Options:
42
+ - sameorigin
43
+ X-Permitted-Cross-Domain-Policies:
44
+ - none
45
+ X-Xss-Protection:
46
+ - 1; mode=block
47
+ Server:
48
+ - WEBrick/1.3.1 (Ruby/2.4.4/2018-03-28)
49
+ Content-Length:
50
+ - '130'
51
+ Connection:
52
+ - Keep-Alive
53
+ Set-Cookie:
54
+ - _session_id=YXoxbGRNb3k4UTFlb2RXM01UdUJLR25CY2Njb0szaXBYRkUyMnh3V3Y5OTcvQm1WS2tiYmhqSkc5dzdNWk5mc2p6aWt1NFhMOGJ6bnNGUlhIY2VvcnltSEg0ZHJyMldvaUw2Z1hTYkZvakk9LS1LWGUvQm0rQWlIMHVjcTJ5TmZFVXVBPT0%3D--891c529278599f4be47ecbcd76995319f87b95cc;
55
+ path=/; HttpOnly
56
+ body:
57
+ encoding: UTF-8
58
+ string: '{"id":2,"client_type_id":3,"party_id":9,"commission_level_id":null,"created_at":null,"external_identifier":null,"updated_at":null}'
59
+ http_version:
60
+ recorded_at: Tue, 20 Nov 2018 03:00:05 GMT
61
+ - request:
62
+ method: get
63
+ uri: http://test.qt.sealink.com.au:8080/api/clients/2/templates
64
+ body:
65
+ encoding: UTF-8
66
+ string: ''
67
+ headers:
68
+ Content-Length:
69
+ - '0'
70
+ X-API-KEY:
71
+ - <QT_KEY>
72
+ response:
73
+ status:
74
+ code: 200
75
+ message: 'OK '
76
+ headers:
77
+ P3p:
78
+ - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
79
+ Content-Type:
80
+ - application/json; charset=utf-8
81
+ Etag:
82
+ - W/"b6be9931bd0aa8a85b01110a597d8bb7"
83
+ Cache-Control:
84
+ - max-age=0, private, must-revalidate
85
+ X-Request-Id:
86
+ - 8ea40255-40e0-41f6-bffa-85c54ab8ff86
87
+ X-Runtime:
88
+ - '0.168409'
89
+ Date:
90
+ - Fri, 01 Jan 2016 02:59:22 GMT
91
+ X-Rack-Cache:
92
+ - miss
93
+ Vary:
94
+ - Origin
95
+ X-Content-Type-Options:
96
+ - nosniff
97
+ X-Download-Options:
98
+ - noopen
99
+ X-Frame-Options:
100
+ - sameorigin
101
+ X-Permitted-Cross-Domain-Policies:
102
+ - none
103
+ X-Xss-Protection:
104
+ - 1; mode=block
105
+ Server:
106
+ - WEBrick/1.3.1 (Ruby/2.4.4/2018-03-28)
107
+ Content-Length:
108
+ - '336'
109
+ Connection:
110
+ - Keep-Alive
111
+ Set-Cookie:
112
+ - _session_id=RmhvbVl3dlhyL2lqdzZCM2FGb3ZKa2x6cC9hWEtvUHMxZE8vcTluSXd6MTZUMVNDY0xxYnphUklrTVk1OXNVdmJBbFFjSndtVVlLRFFtN0pkbVFyejZGcVhSN251a0VtdnRULzZ5YmpkcWM9LS1QSVFmSmFTWnZqOWlOK280QU9Cem1nPT0%3D--ffb6e33b92be7dfc7b7efce9ccd06c5f691a4d83;
113
+ path=/; HttpOnly
114
+ body:
115
+ encoding: UTF-8
116
+ string: '{"vehicle_templates":[{"id":1,"length":5.0,"height":1.5,"width":1.8,"weight":1000.0,"details":"Holden
117
+ Commodore","registration":"ABC123","cargo":"None","vehicle_type_id":1,"party_id":9}],"passenger_templates":[{"id":1,"age":30,"title":"Mr","first_name":"Homer","last_name":"Simpson","gender":"Male","passenger_type_id":1,"party_id":9}]}'
118
+ http_version:
119
+ recorded_at: Tue, 20 Nov 2018 03:00:05 GMT
120
+ recorded_with: VCR 4.0.0
@@ -5,10 +5,12 @@ http_interactions:
5
5
  uri: http://test.qt.sealink.com.au:8080/api/countries.json
6
6
  body:
7
7
  encoding: UTF-8
8
- string: access_key=<QT_KEY>
8
+ string: ''
9
9
  headers:
10
10
  Content-Length:
11
11
  - '0'
12
+ X-API-KEY:
13
+ - <QT_KEY>
12
14
  response:
13
15
  status:
14
16
  code: 200
@@ -18,22 +20,20 @@ http_interactions:
18
20
  - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
19
21
  Content-Type:
20
22
  - application/json; charset=utf-8
21
- X-Ua-Compatible:
22
- - IE=Edge,chrome=1
23
23
  Etag:
24
- - '"4b81caf850c90a277ec60621b06aae8b"'
24
+ - W/"9d087a36fd9911293c5f6497f0cf93b8"
25
25
  Cache-Control:
26
26
  - max-age=0, private, must-revalidate
27
27
  X-Request-Id:
28
- - db8ab95e81d0b208e8442de75066d08b
28
+ - df973b5d-e4a2-42cd-a0f8-f7ee6b603247
29
29
  X-Runtime:
30
- - '0.117373'
31
- Vary:
32
- - Origin
30
+ - '0.141456'
33
31
  Date:
34
- - Fri, 01 Jan 2016 02:32:37 GMT
32
+ - Fri, 01 Jan 2016 02:32:32 GMT
35
33
  X-Rack-Cache:
36
34
  - miss
35
+ Vary:
36
+ - Origin
37
37
  X-Content-Type-Options:
38
38
  - nosniff
39
39
  X-Download-Options:
@@ -47,94 +47,18 @@ http_interactions:
47
47
  Server:
48
48
  - WEBrick/1.3.1 (Ruby/2.2.5/2016-04-26)
49
49
  Content-Length:
50
- - '41663'
50
+ - '106'
51
51
  Connection:
52
52
  - Keep-Alive
53
53
  Set-Cookie:
54
- - _quick_travel_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFVEkiJTA4NzU5MWYxNjU4OTIyMzE0ODU0YTY1Yjg4NTM3NDUzBjsAVEkiCXVzZXIGOwBGaQY%3D--45156529958ca46b6d22869e87f74cc429ba0a45;
54
+ - _session_id=VnZkWG83NVE0K01QVmthSHE5WXdiLzBYdkNFRkwyWlRNeWdGYnJ0T3pTQkF3b3RDSWZ5NWE4Tm1BQ01FM3lrb3VHUmpRTjFyV1l4YlhjWkZPcXVCL3ZQOXAyV1FSZ2lUdHBON3ArNEhLS2M9LS1aNFpRdnQwT2JZb3ZrRk1MemtON1hBPT0%3D--c05a461b44e6460a0fa8b3abe789352b68584775;
55
55
  path=/; HttpOnly
56
56
  body:
57
- encoding: UTF-8
58
- string: '[{"created_at":"2013-03-01T00:00:00+10:30","id":1,"iso_3166_code":"AD","latitude":42.3,"longitude":-1.3,"name":"Andorra","updated_at":"2013-03-01T00:00:00+10:30"},{"created_at":"2013-03-01T00:00:01+10:30","id":2,"iso_3166_code":"AE","latitude":24.0,"longitude":-54.0,"name":"United
59
- Arab Emirates","updated_at":"2013-03-01T00:00:01+10:30"},{"created_at":"2013-03-01T00:00:01+10:30","id":3,"iso_3166_code":"AF","latitude":33.0,"longitude":-65.0,"name":"Afghanistan","updated_at":"2013-03-01T00:00:01+10:30"},{"created_at":"2013-03-01T00:00:03+10:30","id":4,"iso_3166_code":"AG","latitude":17.03,"longitude":61.48,"name":"Antigua
60
- and Barbuda","updated_at":"2013-03-01T00:00:03+10:30"},{"created_at":"2013-03-01T00:00:03+10:30","id":5,"iso_3166_code":"AI","latitude":18.15,"longitude":63.1,"name":"Anguilla","updated_at":"2013-03-01T00:00:03+10:30"},{"created_at":"2013-03-01T00:00:03+10:30","id":6,"iso_3166_code":"AL","latitude":41.0,"longitude":-20.0,"name":"Albania","updated_at":"2013-03-01T00:00:03+10:30"},{"created_at":"2013-03-01T00:00:04+10:30","id":7,"iso_3166_code":"AM","latitude":40.0,"longitude":-45.0,"name":"Armenia","updated_at":"2013-03-01T00:00:04+10:30"},{"created_at":"2013-03-01T00:00:05+10:30","id":8,"iso_3166_code":"AN","latitude":0.0,"longitude":0.0,"name":"Netherlands
61
- Antilles","updated_at":"2013-03-01T00:00:05+10:30"},{"created_at":"2013-03-01T00:00:05+10:30","id":9,"iso_3166_code":"AO","latitude":-12.3,"longitude":-18.3,"name":"Angola","updated_at":"2013-03-01T00:00:05+10:30"},{"created_at":"2013-03-01T00:00:06+10:30","id":10,"iso_3166_code":"AQ","latitude":-90.0,"longitude":0.0,"name":"Antarctica","updated_at":"2013-03-01T00:00:06+10:30"},{"created_at":"2013-03-01T00:00:06+10:30","id":11,"iso_3166_code":"AR","latitude":-34.0,"longitude":64.0,"name":"Argentina","updated_at":"2013-03-01T00:00:06+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":12,"iso_3166_code":"AS","latitude":-14.2,"longitude":170.0,"name":"American
62
- Samoa","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":13,"iso_3166_code":"AT","latitude":47.2,"longitude":-13.2,"name":"Austria","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":14,"iso_3166_code":"AU","latitude":-27.0,"longitude":-133.0,"name":"Australia","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":15,"iso_3166_code":"AW","latitude":12.3,"longitude":69.58,"name":"Aruba","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":16,"iso_3166_code":"AX","latitude":0.0,"longitude":0.0,"name":"\u00c5land
63
- Islands","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":17,"iso_3166_code":"AZ","latitude":40.3,"longitude":-47.3,"name":"Azerbaijan","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:11+10:30","id":18,"iso_3166_code":"BA","latitude":44.0,"longitude":-18.0,"name":"Bosnia
64
- and Herzegovina","updated_at":"2013-03-01T00:00:11+10:30"},{"created_at":"2013-03-01T00:00:11+10:30","id":19,"iso_3166_code":"BB","latitude":13.1,"longitude":59.32,"name":"Barbados","updated_at":"2013-03-01T00:00:11+10:30"},{"created_at":"2013-03-01T00:00:11+10:30","id":20,"iso_3166_code":"BD","latitude":24.0,"longitude":-90.0,"name":"Bangladesh","updated_at":"2013-03-01T00:00:11+10:30"},{"created_at":"2013-03-01T00:00:14+10:30","id":21,"iso_3166_code":"BE","latitude":50.5,"longitude":-4.0,"name":"Belgium","updated_at":"2013-03-01T00:00:14+10:30"},{"created_at":"2013-03-01T00:00:15+10:30","id":22,"iso_3166_code":"BF","latitude":13.0,"longitude":2.0,"name":"Burkina
65
- Faso","updated_at":"2013-03-01T00:00:15+10:30"},{"created_at":"2013-03-01T00:00:17+10:30","id":23,"iso_3166_code":"BG","latitude":43.0,"longitude":-25.0,"name":"Bulgaria","updated_at":"2013-03-01T00:00:17+10:30"},{"created_at":"2013-03-01T00:00:17+10:30","id":24,"iso_3166_code":"BH","latitude":26.0,"longitude":-50.33,"name":"Bahrain","updated_at":"2013-03-01T00:00:17+10:30"},{"created_at":"2013-03-01T00:00:17+10:30","id":25,"iso_3166_code":"BI","latitude":-3.3,"longitude":-30.0,"name":"Burundi","updated_at":"2013-03-01T00:00:17+10:30"},{"created_at":"2013-03-01T00:00:17+10:30","id":26,"iso_3166_code":"BJ","latitude":9.3,"longitude":-2.15,"name":"Benin","updated_at":"2013-03-01T00:00:17+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":27,"iso_3166_code":"BL","latitude":17.9,"longitude":62.85,"name":"Saint
66
- Barth\u00e9lemy","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":28,"iso_3166_code":"BM","latitude":32.2,"longitude":64.45,"name":"Bermuda","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":29,"iso_3166_code":"BN","latitude":4.3,"longitude":-114.4,"name":"Brunei
67
- Darussalam","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":30,"iso_3166_code":"BO","latitude":-17.0,"longitude":65.0,"name":"Bolivia","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":31,"iso_3166_code":"BR","latitude":-10.0,"longitude":55.0,"name":"Brazil","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:19+10:30","id":32,"iso_3166_code":"BS","latitude":24.15,"longitude":76.0,"name":"Bahamas","updated_at":"2013-03-01T00:00:19+10:30"},{"created_at":"2013-03-01T00:00:20+10:30","id":33,"iso_3166_code":"BT","latitude":27.3,"longitude":-90.3,"name":"Bhutan","updated_at":"2013-03-01T00:00:20+10:30"},{"created_at":"2013-03-01T00:00:20+10:30","id":34,"iso_3166_code":"BV","latitude":-54.26,"longitude":-3.24,"name":"Bouvet
68
- Island","updated_at":"2013-03-01T00:00:20+10:30"},{"created_at":"2013-03-01T00:00:20+10:30","id":35,"iso_3166_code":"BW","latitude":-22.0,"longitude":-24.0,"name":"Botswana","updated_at":"2013-03-01T00:00:20+10:30"},{"created_at":"2013-03-01T00:00:20+10:30","id":36,"iso_3166_code":"BY","latitude":53.0,"longitude":-28.0,"name":"Belarus","updated_at":"2013-03-01T00:00:20+10:30"},{"created_at":"2013-03-01T00:00:21+10:30","id":37,"iso_3166_code":"BZ","latitude":17.15,"longitude":88.45,"name":"Belize","updated_at":"2013-03-01T00:00:21+10:30"},{"created_at":"2013-03-01T00:00:21+10:30","id":38,"iso_3166_code":"CA","latitude":60.0,"longitude":95.0,"name":"Canada","updated_at":"2013-03-01T00:00:21+10:30"},{"created_at":"2013-03-01T00:00:21+10:30","id":39,"iso_3166_code":"CC","latitude":-12.3,"longitude":-96.5,"name":"Cocos
69
- (Keeling) Islands","updated_at":"2013-03-01T00:00:21+10:30"},{"created_at":"2013-03-01T00:00:21+10:30","id":40,"iso_3166_code":"CD","latitude":0.0,"longitude":-25.0,"name":"Congo,
70
- The Democratic Republic Of The","updated_at":"2013-03-01T00:00:21+10:30"},{"created_at":"2013-03-01T00:00:22+10:30","id":41,"iso_3166_code":"CF","latitude":7.0,"longitude":-21.0,"name":"Central
71
- African Republic","updated_at":"2013-03-01T00:00:22+10:30"},{"created_at":"2013-03-01T00:00:22+10:30","id":42,"iso_3166_code":"CG","latitude":-1.0,"longitude":-15.0,"name":"Congo","updated_at":"2013-03-01T00:00:22+10:30"},{"created_at":"2013-03-01T00:00:22+10:30","id":43,"iso_3166_code":"CH","latitude":47.0,"longitude":-8.0,"name":"Switzerland","updated_at":"2013-03-01T00:00:22+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":44,"iso_3166_code":"CI","latitude":8.0,"longitude":5.0,"name":"C\u00f4te
72
- D''Ivoire","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":45,"iso_3166_code":"CK","latitude":-21.14,"longitude":159.46,"name":"Cook
73
- Islands","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":46,"iso_3166_code":"CL","latitude":-30.0,"longitude":71.0,"name":"Chile","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":47,"iso_3166_code":"CM","latitude":6.0,"longitude":-12.0,"name":"Cameroon","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":48,"iso_3166_code":"CN","latitude":35.0,"longitude":-105.0,"name":"China","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:24+10:30","id":49,"iso_3166_code":"CO","latitude":4.0,"longitude":72.0,"name":"Colombia","updated_at":"2013-03-01T00:00:24+10:30"},{"created_at":"2013-03-01T00:00:25+10:30","id":50,"iso_3166_code":"CR","latitude":10.0,"longitude":84.0,"name":"Costa
74
- Rica","updated_at":"2013-03-01T00:00:25+10:30"},{"created_at":"2013-03-01T00:00:25+10:30","id":51,"iso_3166_code":"CU","latitude":21.3,"longitude":80.0,"name":"Cuba","updated_at":"2013-03-01T00:00:25+10:30"},{"created_at":"2013-03-01T00:00:25+10:30","id":52,"iso_3166_code":"CV","latitude":16.0,"longitude":24.0,"name":"Cape
75
- Verde","updated_at":"2013-03-01T00:00:25+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":53,"iso_3166_code":"CX","latitude":-10.3,"longitude":-105.4,"name":"Christmas
76
- Island","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":54,"iso_3166_code":"CY","latitude":35.0,"longitude":-33.0,"name":"Cyprus","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":55,"iso_3166_code":"CZ","latitude":49.45,"longitude":-15.3,"name":"Czech
77
- Republic","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":56,"iso_3166_code":"DE","latitude":51.0,"longitude":-9.0,"name":"Germany","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":57,"iso_3166_code":"DJ","latitude":11.3,"longitude":-43.0,"name":"Djibouti","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:27+10:30","id":58,"iso_3166_code":"DK","latitude":56.0,"longitude":-10.0,"name":"Denmark","updated_at":"2013-03-01T00:00:27+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":59,"iso_3166_code":"DM","latitude":15.25,"longitude":61.2,"name":"Dominica","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":60,"iso_3166_code":"DO","latitude":19.0,"longitude":70.4,"name":"Dominican
78
- Republic","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":61,"iso_3166_code":"DZ","latitude":28.0,"longitude":-3.0,"name":"Algeria","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":62,"iso_3166_code":"EC","latitude":-2.0,"longitude":77.3,"name":"Ecuador","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":63,"iso_3166_code":"EE","latitude":59.0,"longitude":-26.0,"name":"Estonia","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:29+10:30","id":64,"iso_3166_code":"EG","latitude":27.0,"longitude":-30.0,"name":"Egypt","updated_at":"2013-03-01T00:00:29+10:30"},{"created_at":"2013-03-01T00:00:29+10:30","id":65,"iso_3166_code":"EH","latitude":24.3,"longitude":13.0,"name":"Western
79
- Sahara","updated_at":"2013-03-01T00:00:29+10:30"},{"created_at":"2013-03-01T00:00:30+10:30","id":66,"iso_3166_code":"ER","latitude":15.0,"longitude":-39.0,"name":"Eritrea","updated_at":"2013-03-01T00:00:30+10:30"},{"created_at":"2013-03-01T00:00:30+10:30","id":67,"iso_3166_code":"ES","latitude":40.0,"longitude":4.0,"name":"Spain","updated_at":"2013-03-01T00:00:30+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":68,"iso_3166_code":"ET","latitude":8.0,"longitude":-38.0,"name":"Ethiopia","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":69,"iso_3166_code":"FI","latitude":64.0,"longitude":-26.0,"name":"Finland","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":70,"iso_3166_code":"FJ","latitude":-18.0,"longitude":-175.0,"name":"Fiji","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":71,"iso_3166_code":"FK","latitude":-51.45,"longitude":59.0,"name":"Falkland
80
- Islands (Malvinas)","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":72,"iso_3166_code":"FM","latitude":6.55,"longitude":-158.15,"name":"Micronesia,
81
- Federated States Of","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:32+10:30","id":73,"iso_3166_code":"FO","latitude":62.0,"longitude":7.0,"name":"Faroe
82
- Islands","updated_at":"2013-03-01T00:00:32+10:30"},{"created_at":"2013-03-01T00:00:32+10:30","id":74,"iso_3166_code":"FR","latitude":46.0,"longitude":-2.0,"name":"France","updated_at":"2013-03-01T00:00:32+10:30"},{"created_at":"2013-03-01T00:00:33+10:30","id":75,"iso_3166_code":"GA","latitude":-1.0,"longitude":-11.45,"name":"Gabon","updated_at":"2013-03-01T00:00:33+10:30"},{"created_at":"2013-03-01T00:00:33+10:30","id":76,"iso_3166_code":"GB","latitude":54.0,"longitude":2.0,"name":"United
83
- Kingdom","updated_at":"2013-03-01T00:00:33+10:30"},{"created_at":"2013-03-01T00:00:42+10:30","id":77,"iso_3166_code":"GD","latitude":12.07,"longitude":61.4,"name":"Grenada","updated_at":"2013-03-01T00:00:42+10:30"},{"created_at":"2013-03-01T00:00:42+10:30","id":78,"iso_3166_code":"GE","latitude":42.0,"longitude":-43.3,"name":"Georgia","updated_at":"2013-03-01T00:00:42+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":79,"iso_3166_code":"GF","latitude":4.0,"longitude":53.0,"name":"French
84
- Guiana","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":80,"iso_3166_code":"GG","latitude":49.28,"longitude":2.35,"name":"Guernsey","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":81,"iso_3166_code":"GH","latitude":8.0,"longitude":2.0,"name":"Ghana","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":82,"iso_3166_code":"GI","latitude":36.08,"longitude":5.21,"name":"Gibraltar","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":83,"iso_3166_code":"GL","latitude":72.0,"longitude":40.0,"name":"Greenland","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":84,"iso_3166_code":"GM","latitude":13.28,"longitude":16.34,"name":"Gambia","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":85,"iso_3166_code":"GN","latitude":11.0,"longitude":10.0,"name":"Guinea","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":86,"iso_3166_code":"GP","latitude":0.0,"longitude":0.0,"name":"Guadeloupe","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":87,"iso_3166_code":"GQ","latitude":2.0,"longitude":-10.0,"name":"Equatorial
85
- Guinea","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":88,"iso_3166_code":"GR","latitude":39.0,"longitude":-22.0,"name":"Greece","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":89,"iso_3166_code":"GS","latitude":-54.3,"longitude":37.0,"name":"South
86
- Georgia and the South Sandwich Islands","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":90,"iso_3166_code":"GT","latitude":15.3,"longitude":90.15,"name":"Guatemala","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":91,"iso_3166_code":"GU","latitude":13.28,"longitude":-144.47,"name":"Guam","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":92,"iso_3166_code":"GW","latitude":12.0,"longitude":15.0,"name":"Guinea-Bissau","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":93,"iso_3166_code":"GY","latitude":5.0,"longitude":59.0,"name":"Guyana","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":94,"iso_3166_code":"HK","latitude":22.15,"longitude":-114.1,"name":"Hong
87
- Kong","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":95,"iso_3166_code":"HM","latitude":-53.06,"longitude":-72.31,"name":"Heard
88
- and McDonald Islands","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":96,"iso_3166_code":"HN","latitude":15.0,"longitude":86.3,"name":"Honduras","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":97,"iso_3166_code":"HR","latitude":45.1,"longitude":-15.3,"name":"Croatia","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":98,"iso_3166_code":"HT","latitude":19.0,"longitude":72.25,"name":"Haiti","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":99,"iso_3166_code":"HU","latitude":47.0,"longitude":-20.0,"name":"Hungary","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":100,"iso_3166_code":"ID","latitude":-5.0,"longitude":-120.0,"name":"Indonesia","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":101,"iso_3166_code":"IE","latitude":53.0,"longitude":8.0,"name":"Ireland","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:47+10:30","id":102,"iso_3166_code":"IL","latitude":31.3,"longitude":-34.45,"name":"Israel","updated_at":"2013-03-01T00:00:47+10:30"},{"created_at":"2013-03-01T00:00:47+10:30","id":103,"iso_3166_code":"IM","latitude":54.15,"longitude":4.3,"name":"Isle
89
- of Man","updated_at":"2013-03-01T00:00:47+10:30"},{"created_at":"2013-03-01T00:00:47+10:30","id":104,"iso_3166_code":"IN","latitude":20.0,"longitude":-77.0,"name":"India","updated_at":"2013-03-01T00:00:47+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":105,"iso_3166_code":"IO","latitude":-6.0,"longitude":-71.3,"name":"British
90
- Indian Ocean Territory","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":106,"iso_3166_code":"IQ","latitude":33.0,"longitude":-44.0,"name":"Iraq","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":107,"iso_3166_code":"IR","latitude":32.0,"longitude":-53.0,"name":"Iran,
91
- Islamic Republic Of","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":108,"iso_3166_code":"IS","latitude":65.0,"longitude":18.0,"name":"Iceland","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":109,"iso_3166_code":"IT","latitude":42.5,"longitude":-12.5,"name":"Italy","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":110,"iso_3166_code":"JE","latitude":49.15,"longitude":2.1,"name":"Jersey","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":111,"iso_3166_code":"JM","latitude":18.15,"longitude":77.3,"name":"Jamaica","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":112,"iso_3166_code":"JO","latitude":31.0,"longitude":-36.0,"name":"Jordan","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":113,"iso_3166_code":"JP","latitude":36.0,"longitude":-138.0,"name":"Japan","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":114,"iso_3166_code":"KE","latitude":1.0,"longitude":-38.0,"name":"Kenya","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":115,"iso_3166_code":"KG","latitude":41.0,"longitude":-75.0,"name":"Kyrgyzstan","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":116,"iso_3166_code":"KH","latitude":13.0,"longitude":-105.0,"name":"Cambodia","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":117,"iso_3166_code":"KI","latitude":1.25,"longitude":-173.0,"name":"Kiribati","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":118,"iso_3166_code":"KM","latitude":-12.1,"longitude":-44.15,"name":"Comoros","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":119,"iso_3166_code":"KN","latitude":17.2,"longitude":62.45,"name":"Saint
92
- Kitts And Nevis","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":120,"iso_3166_code":"KP","latitude":40.0,"longitude":-127.0,"name":"Korea,
93
- Democratic People''s Republic Of","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:51+10:30","id":121,"iso_3166_code":"KR","latitude":37.0,"longitude":-127.3,"name":"Korea,
94
- Republic of","updated_at":"2013-03-01T00:00:51+10:30"},{"created_at":"2013-03-01T00:00:51+10:30","id":122,"iso_3166_code":"KW","latitude":29.3,"longitude":-45.45,"name":"Kuwait","updated_at":"2013-03-01T00:00:51+10:30"},{"created_at":"2013-03-01T00:00:51+10:30","id":123,"iso_3166_code":"KY","latitude":19.3,"longitude":80.3,"name":"Cayman
95
- Islands","updated_at":"2013-03-01T00:00:51+10:30"},{"created_at":"2013-03-01T00:00:51+10:30","id":124,"iso_3166_code":"KZ","latitude":48.0,"longitude":-68.0,"name":"Kazakhstan","updated_at":"2013-03-01T00:00:51+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":125,"iso_3166_code":"LA","latitude":18.0,"longitude":-105.0,"name":"Lao
96
- People''s Democratic Republic","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":126,"iso_3166_code":"LB","latitude":33.5,"longitude":-35.5,"name":"Lebanon","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":127,"iso_3166_code":"LC","latitude":13.53,"longitude":60.58,"name":"Saint
97
- Lucia","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":128,"iso_3166_code":"LI","latitude":47.16,"longitude":-9.32,"name":"Liechtenstein","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":129,"iso_3166_code":"LK","latitude":7.0,"longitude":-81.0,"name":"Sri
98
- Lanka","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":130,"iso_3166_code":"LR","latitude":6.3,"longitude":9.3,"name":"Liberia","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":131,"iso_3166_code":"LS","latitude":-29.3,"longitude":-28.3,"name":"Lesotho","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:53+10:30","id":132,"iso_3166_code":"LT","latitude":56.0,"longitude":-24.0,"name":"Lithuania","updated_at":"2013-03-01T00:00:53+10:30"},{"created_at":"2013-03-01T00:00:53+10:30","id":133,"iso_3166_code":"LU","latitude":49.45,"longitude":-6.1,"name":"Luxembourg","updated_at":"2013-03-01T00:00:53+10:30"},{"created_at":"2013-03-01T00:00:53+10:30","id":134,"iso_3166_code":"LV","latitude":57.0,"longitude":-25.0,"name":"Latvia","updated_at":"2013-03-01T00:00:53+10:30"},{"created_at":"2013-03-01T00:00:53+10:30","id":135,"iso_3166_code":"LY","latitude":25.0,"longitude":-17.0,"name":"Libya","updated_at":"2013-03-01T00:00:53+10:30"},{"created_at":"2013-03-01T00:00:54+10:30","id":136,"iso_3166_code":"MA","latitude":32.0,"longitude":5.0,"name":"Morocco","updated_at":"2013-03-01T00:00:54+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":137,"iso_3166_code":"MC","latitude":43.44,"longitude":-7.24,"name":"Monaco","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":138,"iso_3166_code":"MD","latitude":47.0,"longitude":-29.0,"name":"Moldova,
99
- Republic of","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":139,"iso_3166_code":"ME","latitude":42.3,"longitude":-19.18,"name":"Montenegro","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":140,"iso_3166_code":"MF","latitude":18.05,"longitude":63.57,"name":"Saint
100
- Martin","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":141,"iso_3166_code":"MG","latitude":-20.0,"longitude":-47.0,"name":"Madagascar","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":142,"iso_3166_code":"MH","latitude":9.0,"longitude":-168.0,"name":"Marshall
101
- Islands","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:57+10:30","id":143,"iso_3166_code":"MK","latitude":41.5,"longitude":-22.0,"name":"Macedonia,
102
- the Former Yugoslav Republic Of","updated_at":"2013-03-01T00:00:57+10:30"},{"created_at":"2013-03-01T00:00:58+10:30","id":144,"iso_3166_code":"ML","latitude":17.0,"longitude":4.0,"name":"Mali","updated_at":"2013-03-01T00:00:58+10:30"},{"created_at":"2013-03-01T00:00:58+10:30","id":145,"iso_3166_code":"MM","latitude":22.0,"longitude":-98.0,"name":"Myanmar","updated_at":"2013-03-01T00:00:58+10:30"},{"created_at":"2013-03-01T00:00:58+10:30","id":146,"iso_3166_code":"MN","latitude":46.0,"longitude":-105.0,"name":"Mongolia","updated_at":"2013-03-01T00:00:58+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":147,"iso_3166_code":"MO","latitude":22.1,"longitude":-113.33,"name":"Macao","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":148,"iso_3166_code":"MP","latitude":15.12,"longitude":-145.45,"name":"Northern
103
- Mariana Islands","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":149,"iso_3166_code":"MQ","latitude":0.0,"longitude":0.0,"name":"Martinique","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":150,"iso_3166_code":"MR","latitude":20.0,"longitude":12.0,"name":"Mauritania","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":151,"iso_3166_code":"MS","latitude":16.45,"longitude":62.12,"name":"Montserrat","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":152,"iso_3166_code":"MT","latitude":35.5,"longitude":-14.35,"name":"Malta","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":153,"iso_3166_code":"MU","latitude":-20.17,"longitude":-57.33,"name":"Mauritius","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:01:00+10:30","id":154,"iso_3166_code":"MV","latitude":3.15,"longitude":-73.0,"name":"Maldives","updated_at":"2013-03-01T00:01:00+10:30"},{"created_at":"2013-03-01T00:01:00+10:30","id":155,"iso_3166_code":"MW","latitude":-13.3,"longitude":-34.0,"name":"Malawi","updated_at":"2013-03-01T00:01:00+10:30"},{"created_at":"2013-03-01T00:01:00+10:30","id":156,"iso_3166_code":"MX","latitude":23.0,"longitude":102.0,"name":"Mexico","updated_at":"2013-03-01T00:01:00+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":157,"iso_3166_code":"MY","latitude":2.3,"longitude":-112.3,"name":"Malaysia","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":158,"iso_3166_code":"MZ","latitude":-18.15,"longitude":-35.0,"name":"Mozambique","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":159,"iso_3166_code":"NA","latitude":-22.0,"longitude":-17.0,"name":"Namibia","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":160,"iso_3166_code":"NC","latitude":-21.3,"longitude":-165.3,"name":"New
104
- Caledonia","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":161,"iso_3166_code":"NE","latitude":16.0,"longitude":-8.0,"name":"Niger","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":162,"iso_3166_code":"NF","latitude":-29.02,"longitude":-167.57,"name":"Norfolk
105
- Island","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":163,"iso_3166_code":"NG","latitude":10.0,"longitude":-8.0,"name":"Nigeria","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":164,"iso_3166_code":"NI","latitude":13.0,"longitude":85.0,"name":"Nicaragua","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":165,"iso_3166_code":"NL","latitude":52.3,"longitude":-5.45,"name":"Netherlands","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":166,"iso_3166_code":"NO","latitude":62.0,"longitude":-10.0,"name":"Norway","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":167,"iso_3166_code":"NP","latitude":28.0,"longitude":-84.0,"name":"Nepal","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":168,"iso_3166_code":"NR","latitude":-0.32,"longitude":-166.55,"name":"Nauru","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":169,"iso_3166_code":"NU","latitude":-19.02,"longitude":169.52,"name":"Niue","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":170,"iso_3166_code":"NZ","latitude":-41.0,"longitude":-174.0,"name":"New
106
- Zealand","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:03+10:30","id":171,"iso_3166_code":"OM","latitude":21.0,"longitude":-57.0,"name":"Oman","updated_at":"2013-03-01T00:01:03+10:30"},{"created_at":"2013-03-01T00:01:03+10:30","id":172,"iso_3166_code":"PA","latitude":9.0,"longitude":80.0,"name":"Panama","updated_at":"2013-03-01T00:01:03+10:30"},{"created_at":"2013-03-01T00:01:03+10:30","id":173,"iso_3166_code":"PE","latitude":-10.0,"longitude":76.0,"name":"Peru","updated_at":"2013-03-01T00:01:03+10:30"},{"created_at":"2013-03-01T00:01:04+10:30","id":174,"iso_3166_code":"PF","latitude":-15.0,"longitude":140.0,"name":"French
107
- Polynesia","updated_at":"2013-03-01T00:01:04+10:30"},{"created_at":"2013-03-01T00:01:04+10:30","id":175,"iso_3166_code":"PG","latitude":-6.0,"longitude":-147.0,"name":"Papua
108
- New Guinea","updated_at":"2013-03-01T00:01:04+10:30"},{"created_at":"2013-03-01T00:01:04+10:30","id":176,"iso_3166_code":"PH","latitude":13.0,"longitude":-122.0,"name":"Philippines","updated_at":"2013-03-01T00:01:04+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":177,"iso_3166_code":"PK","latitude":30.0,"longitude":-70.0,"name":"Pakistan","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":178,"iso_3166_code":"PL","latitude":52.0,"longitude":-20.0,"name":"Poland","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":179,"iso_3166_code":"PM","latitude":46.5,"longitude":56.2,"name":"Saint
109
- Pierre And Miquelon","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":180,"iso_3166_code":"PN","latitude":-25.04,"longitude":130.06,"name":"Pitcairn","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":181,"iso_3166_code":"PR","latitude":18.15,"longitude":66.3,"name":"Puerto
110
- Rico","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":182,"iso_3166_code":"PS","latitude":0.0,"longitude":0.0,"name":"Palestinian
111
- Territory, Occupied","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":183,"iso_3166_code":"PT","latitude":39.3,"longitude":8.0,"name":"Portugal","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":184,"iso_3166_code":"PW","latitude":7.3,"longitude":-134.3,"name":"Palau","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:08+10:30","id":185,"iso_3166_code":"PY","latitude":-23.0,"longitude":58.0,"name":"Paraguay","updated_at":"2013-03-01T00:01:08+10:30"},{"created_at":"2013-03-01T00:01:08+10:30","id":186,"iso_3166_code":"QA","latitude":25.3,"longitude":-51.15,"name":"Qatar","updated_at":"2013-03-01T00:01:08+10:30"},{"created_at":"2013-03-01T00:01:08+10:30","id":187,"iso_3166_code":"RE","latitude":0.0,"longitude":0.0,"name":"R\u00e9union","updated_at":"2013-03-01T00:01:08+10:30"},{"created_at":"2013-03-01T00:01:08+10:30","id":188,"iso_3166_code":"RO","latitude":46.0,"longitude":-25.0,"name":"Romania","updated_at":"2013-03-01T00:01:08+10:30"},{"created_at":"2013-03-01T00:01:09+10:30","id":189,"iso_3166_code":"RS","latitude":44.0,"longitude":-21.0,"name":"Serbia","updated_at":"2013-03-01T00:01:09+10:30"},{"created_at":"2013-03-01T00:01:09+10:30","id":190,"iso_3166_code":"RU","latitude":60.0,"longitude":-100.0,"name":"Russian
112
- Federation","updated_at":"2013-03-01T00:01:09+10:30"},{"created_at":"2013-03-01T00:01:11+10:30","id":191,"iso_3166_code":"RW","latitude":-2.0,"longitude":-30.0,"name":"Rwanda","updated_at":"2013-03-01T00:01:11+10:30"},{"created_at":"2013-03-01T00:01:11+10:30","id":192,"iso_3166_code":"SA","latitude":25.0,"longitude":-45.0,"name":"Saudi
113
- Arabia","updated_at":"2013-03-01T00:01:11+10:30"},{"created_at":"2013-03-01T00:01:11+10:30","id":193,"iso_3166_code":"SB","latitude":-8.0,"longitude":-159.0,"name":"Solomon
114
- Islands","updated_at":"2013-03-01T00:01:11+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":194,"iso_3166_code":"SC","latitude":-4.35,"longitude":-55.4,"name":"Seychelles","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":195,"iso_3166_code":"SD","latitude":15.0,"longitude":-30.0,"name":"Sudan","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":196,"iso_3166_code":"SE","latitude":62.0,"longitude":-15.0,"name":"Sweden","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":197,"iso_3166_code":"SG","latitude":1.22,"longitude":-103.48,"name":"Singapore","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":198,"iso_3166_code":"SH","latitude":-15.57,"longitude":5.42,"name":"Saint
115
- Helena","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":199,"iso_3166_code":"SI","latitude":46.07,"longitude":-14.49,"name":"Slovenia","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":200,"iso_3166_code":"SJ","latitude":78.0,"longitude":-20.0,"name":"Svalbard
116
- And Jan Mayen","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":201,"iso_3166_code":"SK","latitude":48.4,"longitude":-19.3,"name":"Slovakia","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":202,"iso_3166_code":"SL","latitude":8.3,"longitude":11.3,"name":"Sierra
117
- Leone","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":203,"iso_3166_code":"SM","latitude":43.46,"longitude":-12.25,"name":"San
118
- Marino","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":204,"iso_3166_code":"SN","latitude":14.0,"longitude":14.0,"name":"Senegal","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":205,"iso_3166_code":"SO","latitude":10.0,"longitude":-49.0,"name":"Somalia","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":206,"iso_3166_code":"SR","latitude":4.0,"longitude":56.0,"name":"Suriname","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":207,"iso_3166_code":"SS","latitude":7.0,"longitude":-30.0,"name":"South
119
- Sudan","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":208,"iso_3166_code":"ST","latitude":1.0,"longitude":-7.0,"name":"Sao
120
- Tome and Principe","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":209,"iso_3166_code":"SV","latitude":13.5,"longitude":88.55,"name":"El
121
- Salvador","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":210,"iso_3166_code":"SY","latitude":35.0,"longitude":-38.0,"name":"Syrian
122
- Arab Republic","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":211,"iso_3166_code":"SZ","latitude":-26.3,"longitude":-31.3,"name":"Swaziland","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":212,"iso_3166_code":"TC","latitude":21.45,"longitude":71.35,"name":"Turks
123
- and Caicos Islands","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":213,"iso_3166_code":"TD","latitude":15.0,"longitude":-19.0,"name":"Chad","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":214,"iso_3166_code":"TF","latitude":0.0,"longitude":0.0,"name":"French
124
- Southern Territories","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":215,"iso_3166_code":"TG","latitude":8.0,"longitude":-1.1,"name":"Togo","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":216,"iso_3166_code":"TH","latitude":15.0,"longitude":-100.0,"name":"Thailand","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":217,"iso_3166_code":"TJ","latitude":39.0,"longitude":-71.0,"name":"Tajikistan","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":218,"iso_3166_code":"TK","latitude":-9.0,"longitude":172.0,"name":"Tokelau","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":219,"iso_3166_code":"TL","latitude":-8.5,"longitude":-125.55,"name":"Timor-Leste","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":220,"iso_3166_code":"TM","latitude":40.0,"longitude":-60.0,"name":"Turkmenistan","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":221,"iso_3166_code":"TN","latitude":34.0,"longitude":-9.0,"name":"Tunisia","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":222,"iso_3166_code":"TO","latitude":-20.0,"longitude":175.0,"name":"Tonga","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":223,"iso_3166_code":"TR","latitude":39.0,"longitude":-35.0,"name":"Turkey","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":224,"iso_3166_code":"TT","latitude":11.0,"longitude":61.0,"name":"Trinidad
125
- and Tobago","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:22+10:30","id":225,"iso_3166_code":"TV","latitude":-8.0,"longitude":-178.0,"name":"Tuvalu","updated_at":"2013-03-01T00:01:22+10:30"},{"created_at":"2013-03-01T00:01:23+10:30","id":226,"iso_3166_code":"TW","latitude":23.3,"longitude":-121.0,"name":"Taiwan,
126
- Republic Of China","updated_at":"2013-03-01T00:01:23+10:30"},{"created_at":"2013-03-01T00:01:24+10:30","id":227,"iso_3166_code":"TZ","latitude":-6.0,"longitude":-35.0,"name":"Tanzania,
127
- United Republic of","updated_at":"2013-03-01T00:01:24+10:30"},{"created_at":"2013-03-01T00:01:24+10:30","id":228,"iso_3166_code":"UA","latitude":49.0,"longitude":-32.0,"name":"Ukraine","updated_at":"2013-03-01T00:01:24+10:30"},{"created_at":"2013-03-01T00:01:24+10:30","id":229,"iso_3166_code":"UG","latitude":1.0,"longitude":-32.0,"name":"Uganda","updated_at":"2013-03-01T00:01:24+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":230,"iso_3166_code":"UM","latitude":0.0,"longitude":0.0,"name":"United
128
- States Minor Outlying Islands","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":231,"iso_3166_code":"US","latitude":38.0,"longitude":97.0,"name":"United
129
- States","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":232,"iso_3166_code":"UY","latitude":-33.0,"longitude":56.0,"name":"Uruguay","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":233,"iso_3166_code":"UZ","latitude":41.0,"longitude":-64.0,"name":"Uzbekistan","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":234,"iso_3166_code":"VA","latitude":41.54,"longitude":-12.27,"name":"Holy
130
- See (Vatican City State)","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":235,"iso_3166_code":"VC","latitude":13.15,"longitude":61.12,"name":"Saint
131
- Vincent And The Grenedines","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":236,"iso_3166_code":"VE","latitude":8.0,"longitude":66.0,"name":"Venezuela,
132
- Bolivarian Republic of","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":237,"iso_3166_code":"VG","latitude":0.0,"longitude":0.0,"name":"Virgin
133
- Islands, British","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":238,"iso_3166_code":"VI","latitude":0.0,"longitude":0.0,"name":"Virgin
134
- Islands, U.S.","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":239,"iso_3166_code":"VN","latitude":16.1,"longitude":-107.5,"name":"Viet
135
- Nam","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":240,"iso_3166_code":"VU","latitude":-16.0,"longitude":-167.0,"name":"Vanuatu","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":241,"iso_3166_code":"WF","latitude":-13.18,"longitude":176.12,"name":"Wallis
136
- and Futuna","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":242,"iso_3166_code":"WS","latitude":-13.35,"longitude":172.2,"name":"Samoa","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":243,"iso_3166_code":"YE","latitude":15.0,"longitude":-48.0,"name":"Yemen","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":244,"iso_3166_code":"YT","latitude":-12.5,"longitude":-45.1,"name":"Mayotte","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":245,"iso_3166_code":"ZA","latitude":-29.0,"longitude":-24.0,"name":"South
137
- Africa","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":246,"iso_3166_code":"ZM","latitude":-15.0,"longitude":-30.0,"name":"Zambia","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":247,"iso_3166_code":"ZW","latitude":-20.0,"longitude":-30.0,"name":"Zimbabwe","updated_at":"2013-03-01T00:01:27+10:30"}]'
57
+ encoding: ASCII-8BIT
58
+ string: !binary |-
59
+ W3siaWQiOjE0LCJuYW1lIjoiQXVzdHJhbGlhIiwiaXNvXzMxNjZfY29kZSI6
60
+ IkFVIn0seyJpZCI6MTYsIm5hbWUiOiLDhWxhbmQgSXNsYW5kcyIsImlzb18z
61
+ MTY2X2NvZGUiOiJBWCJ9XQ==
138
62
  http_version:
139
- recorded_at: Fri, 28 Oct 2016 05:28:14 GMT
140
- recorded_with: VCR 3.0.3
63
+ recorded_at: Wed, 21 Mar 2018 04:40:39 GMT
64
+ recorded_with: VCR 4.0.0
@@ -5,10 +5,12 @@ http_interactions:
5
5
  uri: http://test.qt.sealink.com.au:8080/api/countries.json
6
6
  body:
7
7
  encoding: UTF-8
8
- string: access_key=<QT_KEY>
8
+ string: ''
9
9
  headers:
10
10
  Content-Length:
11
11
  - '0'
12
+ X-API-KEY:
13
+ - <QT_KEY>
12
14
  response:
13
15
  status:
14
16
  code: 200
@@ -18,22 +20,20 @@ http_interactions:
18
20
  - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
19
21
  Content-Type:
20
22
  - application/json; charset=utf-8
21
- X-Ua-Compatible:
22
- - IE=Edge,chrome=1
23
23
  Etag:
24
- - '"4b81caf850c90a277ec60621b06aae8b"'
24
+ - W/"9d087a36fd9911293c5f6497f0cf93b8"
25
25
  Cache-Control:
26
26
  - max-age=0, private, must-revalidate
27
27
  X-Request-Id:
28
- - ffcd6273b916fb54bfede404797a0348
28
+ - bf19abe7-2bbd-407c-8281-06d4acce2cab
29
29
  X-Runtime:
30
- - '0.133988'
31
- Vary:
32
- - Origin
30
+ - '0.211104'
33
31
  Date:
34
- - Fri, 01 Jan 2016 02:32:32 GMT
32
+ - Fri, 01 Jan 2016 02:32:22 GMT
35
33
  X-Rack-Cache:
36
34
  - miss
35
+ Vary:
36
+ - Origin
37
37
  X-Content-Type-Options:
38
38
  - nosniff
39
39
  X-Download-Options:
@@ -47,94 +47,18 @@ http_interactions:
47
47
  Server:
48
48
  - WEBrick/1.3.1 (Ruby/2.2.5/2016-04-26)
49
49
  Content-Length:
50
- - '41663'
50
+ - '106'
51
51
  Connection:
52
52
  - Keep-Alive
53
53
  Set-Cookie:
54
- - _quick_travel_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFVEkiJTlhNTZiYjNiMDQzYmEwMDdjMDZkYWU1NzE1ZWE5ZDk1BjsAVEkiCXVzZXIGOwBGaQY%3D--581ac4929780ca144a9549374b63ff9bc1536036;
54
+ - _session_id=SWV5emlrV1ZrQUNJY1d5aHYrREVXUjRub0t3dUNHOTd3V1dGYVhaY3gxelRCMWZGVVY1MGFaaVREbkt2K2dWTDduR1hiS0t2VE5nOUVXRXprU2NQRXpqYkY4c0JYZmNSN2ZjV1JrY3d6SFE9LS1kdnRDQ3dTTCs5RldaeXU4L0tMZ0hRPT0%3D--ded21530c4d7e343a173eadbf42eadf0a75bb24a;
55
55
  path=/; HttpOnly
56
56
  body:
57
- encoding: UTF-8
58
- string: '[{"created_at":"2013-03-01T00:00:00+10:30","id":1,"iso_3166_code":"AD","latitude":42.3,"longitude":-1.3,"name":"Andorra","updated_at":"2013-03-01T00:00:00+10:30"},{"created_at":"2013-03-01T00:00:01+10:30","id":2,"iso_3166_code":"AE","latitude":24.0,"longitude":-54.0,"name":"United
59
- Arab Emirates","updated_at":"2013-03-01T00:00:01+10:30"},{"created_at":"2013-03-01T00:00:01+10:30","id":3,"iso_3166_code":"AF","latitude":33.0,"longitude":-65.0,"name":"Afghanistan","updated_at":"2013-03-01T00:00:01+10:30"},{"created_at":"2013-03-01T00:00:03+10:30","id":4,"iso_3166_code":"AG","latitude":17.03,"longitude":61.48,"name":"Antigua
60
- and Barbuda","updated_at":"2013-03-01T00:00:03+10:30"},{"created_at":"2013-03-01T00:00:03+10:30","id":5,"iso_3166_code":"AI","latitude":18.15,"longitude":63.1,"name":"Anguilla","updated_at":"2013-03-01T00:00:03+10:30"},{"created_at":"2013-03-01T00:00:03+10:30","id":6,"iso_3166_code":"AL","latitude":41.0,"longitude":-20.0,"name":"Albania","updated_at":"2013-03-01T00:00:03+10:30"},{"created_at":"2013-03-01T00:00:04+10:30","id":7,"iso_3166_code":"AM","latitude":40.0,"longitude":-45.0,"name":"Armenia","updated_at":"2013-03-01T00:00:04+10:30"},{"created_at":"2013-03-01T00:00:05+10:30","id":8,"iso_3166_code":"AN","latitude":0.0,"longitude":0.0,"name":"Netherlands
61
- Antilles","updated_at":"2013-03-01T00:00:05+10:30"},{"created_at":"2013-03-01T00:00:05+10:30","id":9,"iso_3166_code":"AO","latitude":-12.3,"longitude":-18.3,"name":"Angola","updated_at":"2013-03-01T00:00:05+10:30"},{"created_at":"2013-03-01T00:00:06+10:30","id":10,"iso_3166_code":"AQ","latitude":-90.0,"longitude":0.0,"name":"Antarctica","updated_at":"2013-03-01T00:00:06+10:30"},{"created_at":"2013-03-01T00:00:06+10:30","id":11,"iso_3166_code":"AR","latitude":-34.0,"longitude":64.0,"name":"Argentina","updated_at":"2013-03-01T00:00:06+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":12,"iso_3166_code":"AS","latitude":-14.2,"longitude":170.0,"name":"American
62
- Samoa","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":13,"iso_3166_code":"AT","latitude":47.2,"longitude":-13.2,"name":"Austria","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":14,"iso_3166_code":"AU","latitude":-27.0,"longitude":-133.0,"name":"Australia","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":15,"iso_3166_code":"AW","latitude":12.3,"longitude":69.58,"name":"Aruba","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":16,"iso_3166_code":"AX","latitude":0.0,"longitude":0.0,"name":"\u00c5land
63
- Islands","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":17,"iso_3166_code":"AZ","latitude":40.3,"longitude":-47.3,"name":"Azerbaijan","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:11+10:30","id":18,"iso_3166_code":"BA","latitude":44.0,"longitude":-18.0,"name":"Bosnia
64
- and Herzegovina","updated_at":"2013-03-01T00:00:11+10:30"},{"created_at":"2013-03-01T00:00:11+10:30","id":19,"iso_3166_code":"BB","latitude":13.1,"longitude":59.32,"name":"Barbados","updated_at":"2013-03-01T00:00:11+10:30"},{"created_at":"2013-03-01T00:00:11+10:30","id":20,"iso_3166_code":"BD","latitude":24.0,"longitude":-90.0,"name":"Bangladesh","updated_at":"2013-03-01T00:00:11+10:30"},{"created_at":"2013-03-01T00:00:14+10:30","id":21,"iso_3166_code":"BE","latitude":50.5,"longitude":-4.0,"name":"Belgium","updated_at":"2013-03-01T00:00:14+10:30"},{"created_at":"2013-03-01T00:00:15+10:30","id":22,"iso_3166_code":"BF","latitude":13.0,"longitude":2.0,"name":"Burkina
65
- Faso","updated_at":"2013-03-01T00:00:15+10:30"},{"created_at":"2013-03-01T00:00:17+10:30","id":23,"iso_3166_code":"BG","latitude":43.0,"longitude":-25.0,"name":"Bulgaria","updated_at":"2013-03-01T00:00:17+10:30"},{"created_at":"2013-03-01T00:00:17+10:30","id":24,"iso_3166_code":"BH","latitude":26.0,"longitude":-50.33,"name":"Bahrain","updated_at":"2013-03-01T00:00:17+10:30"},{"created_at":"2013-03-01T00:00:17+10:30","id":25,"iso_3166_code":"BI","latitude":-3.3,"longitude":-30.0,"name":"Burundi","updated_at":"2013-03-01T00:00:17+10:30"},{"created_at":"2013-03-01T00:00:17+10:30","id":26,"iso_3166_code":"BJ","latitude":9.3,"longitude":-2.15,"name":"Benin","updated_at":"2013-03-01T00:00:17+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":27,"iso_3166_code":"BL","latitude":17.9,"longitude":62.85,"name":"Saint
66
- Barth\u00e9lemy","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":28,"iso_3166_code":"BM","latitude":32.2,"longitude":64.45,"name":"Bermuda","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":29,"iso_3166_code":"BN","latitude":4.3,"longitude":-114.4,"name":"Brunei
67
- Darussalam","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":30,"iso_3166_code":"BO","latitude":-17.0,"longitude":65.0,"name":"Bolivia","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":31,"iso_3166_code":"BR","latitude":-10.0,"longitude":55.0,"name":"Brazil","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:19+10:30","id":32,"iso_3166_code":"BS","latitude":24.15,"longitude":76.0,"name":"Bahamas","updated_at":"2013-03-01T00:00:19+10:30"},{"created_at":"2013-03-01T00:00:20+10:30","id":33,"iso_3166_code":"BT","latitude":27.3,"longitude":-90.3,"name":"Bhutan","updated_at":"2013-03-01T00:00:20+10:30"},{"created_at":"2013-03-01T00:00:20+10:30","id":34,"iso_3166_code":"BV","latitude":-54.26,"longitude":-3.24,"name":"Bouvet
68
- Island","updated_at":"2013-03-01T00:00:20+10:30"},{"created_at":"2013-03-01T00:00:20+10:30","id":35,"iso_3166_code":"BW","latitude":-22.0,"longitude":-24.0,"name":"Botswana","updated_at":"2013-03-01T00:00:20+10:30"},{"created_at":"2013-03-01T00:00:20+10:30","id":36,"iso_3166_code":"BY","latitude":53.0,"longitude":-28.0,"name":"Belarus","updated_at":"2013-03-01T00:00:20+10:30"},{"created_at":"2013-03-01T00:00:21+10:30","id":37,"iso_3166_code":"BZ","latitude":17.15,"longitude":88.45,"name":"Belize","updated_at":"2013-03-01T00:00:21+10:30"},{"created_at":"2013-03-01T00:00:21+10:30","id":38,"iso_3166_code":"CA","latitude":60.0,"longitude":95.0,"name":"Canada","updated_at":"2013-03-01T00:00:21+10:30"},{"created_at":"2013-03-01T00:00:21+10:30","id":39,"iso_3166_code":"CC","latitude":-12.3,"longitude":-96.5,"name":"Cocos
69
- (Keeling) Islands","updated_at":"2013-03-01T00:00:21+10:30"},{"created_at":"2013-03-01T00:00:21+10:30","id":40,"iso_3166_code":"CD","latitude":0.0,"longitude":-25.0,"name":"Congo,
70
- The Democratic Republic Of The","updated_at":"2013-03-01T00:00:21+10:30"},{"created_at":"2013-03-01T00:00:22+10:30","id":41,"iso_3166_code":"CF","latitude":7.0,"longitude":-21.0,"name":"Central
71
- African Republic","updated_at":"2013-03-01T00:00:22+10:30"},{"created_at":"2013-03-01T00:00:22+10:30","id":42,"iso_3166_code":"CG","latitude":-1.0,"longitude":-15.0,"name":"Congo","updated_at":"2013-03-01T00:00:22+10:30"},{"created_at":"2013-03-01T00:00:22+10:30","id":43,"iso_3166_code":"CH","latitude":47.0,"longitude":-8.0,"name":"Switzerland","updated_at":"2013-03-01T00:00:22+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":44,"iso_3166_code":"CI","latitude":8.0,"longitude":5.0,"name":"C\u00f4te
72
- D''Ivoire","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":45,"iso_3166_code":"CK","latitude":-21.14,"longitude":159.46,"name":"Cook
73
- Islands","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":46,"iso_3166_code":"CL","latitude":-30.0,"longitude":71.0,"name":"Chile","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":47,"iso_3166_code":"CM","latitude":6.0,"longitude":-12.0,"name":"Cameroon","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":48,"iso_3166_code":"CN","latitude":35.0,"longitude":-105.0,"name":"China","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:24+10:30","id":49,"iso_3166_code":"CO","latitude":4.0,"longitude":72.0,"name":"Colombia","updated_at":"2013-03-01T00:00:24+10:30"},{"created_at":"2013-03-01T00:00:25+10:30","id":50,"iso_3166_code":"CR","latitude":10.0,"longitude":84.0,"name":"Costa
74
- Rica","updated_at":"2013-03-01T00:00:25+10:30"},{"created_at":"2013-03-01T00:00:25+10:30","id":51,"iso_3166_code":"CU","latitude":21.3,"longitude":80.0,"name":"Cuba","updated_at":"2013-03-01T00:00:25+10:30"},{"created_at":"2013-03-01T00:00:25+10:30","id":52,"iso_3166_code":"CV","latitude":16.0,"longitude":24.0,"name":"Cape
75
- Verde","updated_at":"2013-03-01T00:00:25+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":53,"iso_3166_code":"CX","latitude":-10.3,"longitude":-105.4,"name":"Christmas
76
- Island","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":54,"iso_3166_code":"CY","latitude":35.0,"longitude":-33.0,"name":"Cyprus","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":55,"iso_3166_code":"CZ","latitude":49.45,"longitude":-15.3,"name":"Czech
77
- Republic","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":56,"iso_3166_code":"DE","latitude":51.0,"longitude":-9.0,"name":"Germany","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":57,"iso_3166_code":"DJ","latitude":11.3,"longitude":-43.0,"name":"Djibouti","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:27+10:30","id":58,"iso_3166_code":"DK","latitude":56.0,"longitude":-10.0,"name":"Denmark","updated_at":"2013-03-01T00:00:27+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":59,"iso_3166_code":"DM","latitude":15.25,"longitude":61.2,"name":"Dominica","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":60,"iso_3166_code":"DO","latitude":19.0,"longitude":70.4,"name":"Dominican
78
- Republic","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":61,"iso_3166_code":"DZ","latitude":28.0,"longitude":-3.0,"name":"Algeria","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":62,"iso_3166_code":"EC","latitude":-2.0,"longitude":77.3,"name":"Ecuador","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":63,"iso_3166_code":"EE","latitude":59.0,"longitude":-26.0,"name":"Estonia","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:29+10:30","id":64,"iso_3166_code":"EG","latitude":27.0,"longitude":-30.0,"name":"Egypt","updated_at":"2013-03-01T00:00:29+10:30"},{"created_at":"2013-03-01T00:00:29+10:30","id":65,"iso_3166_code":"EH","latitude":24.3,"longitude":13.0,"name":"Western
79
- Sahara","updated_at":"2013-03-01T00:00:29+10:30"},{"created_at":"2013-03-01T00:00:30+10:30","id":66,"iso_3166_code":"ER","latitude":15.0,"longitude":-39.0,"name":"Eritrea","updated_at":"2013-03-01T00:00:30+10:30"},{"created_at":"2013-03-01T00:00:30+10:30","id":67,"iso_3166_code":"ES","latitude":40.0,"longitude":4.0,"name":"Spain","updated_at":"2013-03-01T00:00:30+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":68,"iso_3166_code":"ET","latitude":8.0,"longitude":-38.0,"name":"Ethiopia","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":69,"iso_3166_code":"FI","latitude":64.0,"longitude":-26.0,"name":"Finland","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":70,"iso_3166_code":"FJ","latitude":-18.0,"longitude":-175.0,"name":"Fiji","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":71,"iso_3166_code":"FK","latitude":-51.45,"longitude":59.0,"name":"Falkland
80
- Islands (Malvinas)","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":72,"iso_3166_code":"FM","latitude":6.55,"longitude":-158.15,"name":"Micronesia,
81
- Federated States Of","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:32+10:30","id":73,"iso_3166_code":"FO","latitude":62.0,"longitude":7.0,"name":"Faroe
82
- Islands","updated_at":"2013-03-01T00:00:32+10:30"},{"created_at":"2013-03-01T00:00:32+10:30","id":74,"iso_3166_code":"FR","latitude":46.0,"longitude":-2.0,"name":"France","updated_at":"2013-03-01T00:00:32+10:30"},{"created_at":"2013-03-01T00:00:33+10:30","id":75,"iso_3166_code":"GA","latitude":-1.0,"longitude":-11.45,"name":"Gabon","updated_at":"2013-03-01T00:00:33+10:30"},{"created_at":"2013-03-01T00:00:33+10:30","id":76,"iso_3166_code":"GB","latitude":54.0,"longitude":2.0,"name":"United
83
- Kingdom","updated_at":"2013-03-01T00:00:33+10:30"},{"created_at":"2013-03-01T00:00:42+10:30","id":77,"iso_3166_code":"GD","latitude":12.07,"longitude":61.4,"name":"Grenada","updated_at":"2013-03-01T00:00:42+10:30"},{"created_at":"2013-03-01T00:00:42+10:30","id":78,"iso_3166_code":"GE","latitude":42.0,"longitude":-43.3,"name":"Georgia","updated_at":"2013-03-01T00:00:42+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":79,"iso_3166_code":"GF","latitude":4.0,"longitude":53.0,"name":"French
84
- Guiana","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":80,"iso_3166_code":"GG","latitude":49.28,"longitude":2.35,"name":"Guernsey","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":81,"iso_3166_code":"GH","latitude":8.0,"longitude":2.0,"name":"Ghana","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":82,"iso_3166_code":"GI","latitude":36.08,"longitude":5.21,"name":"Gibraltar","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":83,"iso_3166_code":"GL","latitude":72.0,"longitude":40.0,"name":"Greenland","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":84,"iso_3166_code":"GM","latitude":13.28,"longitude":16.34,"name":"Gambia","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":85,"iso_3166_code":"GN","latitude":11.0,"longitude":10.0,"name":"Guinea","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":86,"iso_3166_code":"GP","latitude":0.0,"longitude":0.0,"name":"Guadeloupe","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":87,"iso_3166_code":"GQ","latitude":2.0,"longitude":-10.0,"name":"Equatorial
85
- Guinea","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":88,"iso_3166_code":"GR","latitude":39.0,"longitude":-22.0,"name":"Greece","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":89,"iso_3166_code":"GS","latitude":-54.3,"longitude":37.0,"name":"South
86
- Georgia and the South Sandwich Islands","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":90,"iso_3166_code":"GT","latitude":15.3,"longitude":90.15,"name":"Guatemala","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":91,"iso_3166_code":"GU","latitude":13.28,"longitude":-144.47,"name":"Guam","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":92,"iso_3166_code":"GW","latitude":12.0,"longitude":15.0,"name":"Guinea-Bissau","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":93,"iso_3166_code":"GY","latitude":5.0,"longitude":59.0,"name":"Guyana","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":94,"iso_3166_code":"HK","latitude":22.15,"longitude":-114.1,"name":"Hong
87
- Kong","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":95,"iso_3166_code":"HM","latitude":-53.06,"longitude":-72.31,"name":"Heard
88
- and McDonald Islands","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":96,"iso_3166_code":"HN","latitude":15.0,"longitude":86.3,"name":"Honduras","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":97,"iso_3166_code":"HR","latitude":45.1,"longitude":-15.3,"name":"Croatia","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":98,"iso_3166_code":"HT","latitude":19.0,"longitude":72.25,"name":"Haiti","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":99,"iso_3166_code":"HU","latitude":47.0,"longitude":-20.0,"name":"Hungary","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":100,"iso_3166_code":"ID","latitude":-5.0,"longitude":-120.0,"name":"Indonesia","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":101,"iso_3166_code":"IE","latitude":53.0,"longitude":8.0,"name":"Ireland","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:47+10:30","id":102,"iso_3166_code":"IL","latitude":31.3,"longitude":-34.45,"name":"Israel","updated_at":"2013-03-01T00:00:47+10:30"},{"created_at":"2013-03-01T00:00:47+10:30","id":103,"iso_3166_code":"IM","latitude":54.15,"longitude":4.3,"name":"Isle
89
- of Man","updated_at":"2013-03-01T00:00:47+10:30"},{"created_at":"2013-03-01T00:00:47+10:30","id":104,"iso_3166_code":"IN","latitude":20.0,"longitude":-77.0,"name":"India","updated_at":"2013-03-01T00:00:47+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":105,"iso_3166_code":"IO","latitude":-6.0,"longitude":-71.3,"name":"British
90
- Indian Ocean Territory","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":106,"iso_3166_code":"IQ","latitude":33.0,"longitude":-44.0,"name":"Iraq","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":107,"iso_3166_code":"IR","latitude":32.0,"longitude":-53.0,"name":"Iran,
91
- Islamic Republic Of","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":108,"iso_3166_code":"IS","latitude":65.0,"longitude":18.0,"name":"Iceland","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":109,"iso_3166_code":"IT","latitude":42.5,"longitude":-12.5,"name":"Italy","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":110,"iso_3166_code":"JE","latitude":49.15,"longitude":2.1,"name":"Jersey","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":111,"iso_3166_code":"JM","latitude":18.15,"longitude":77.3,"name":"Jamaica","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":112,"iso_3166_code":"JO","latitude":31.0,"longitude":-36.0,"name":"Jordan","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":113,"iso_3166_code":"JP","latitude":36.0,"longitude":-138.0,"name":"Japan","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":114,"iso_3166_code":"KE","latitude":1.0,"longitude":-38.0,"name":"Kenya","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":115,"iso_3166_code":"KG","latitude":41.0,"longitude":-75.0,"name":"Kyrgyzstan","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":116,"iso_3166_code":"KH","latitude":13.0,"longitude":-105.0,"name":"Cambodia","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":117,"iso_3166_code":"KI","latitude":1.25,"longitude":-173.0,"name":"Kiribati","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":118,"iso_3166_code":"KM","latitude":-12.1,"longitude":-44.15,"name":"Comoros","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":119,"iso_3166_code":"KN","latitude":17.2,"longitude":62.45,"name":"Saint
92
- Kitts And Nevis","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":120,"iso_3166_code":"KP","latitude":40.0,"longitude":-127.0,"name":"Korea,
93
- Democratic People''s Republic Of","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:51+10:30","id":121,"iso_3166_code":"KR","latitude":37.0,"longitude":-127.3,"name":"Korea,
94
- Republic of","updated_at":"2013-03-01T00:00:51+10:30"},{"created_at":"2013-03-01T00:00:51+10:30","id":122,"iso_3166_code":"KW","latitude":29.3,"longitude":-45.45,"name":"Kuwait","updated_at":"2013-03-01T00:00:51+10:30"},{"created_at":"2013-03-01T00:00:51+10:30","id":123,"iso_3166_code":"KY","latitude":19.3,"longitude":80.3,"name":"Cayman
95
- Islands","updated_at":"2013-03-01T00:00:51+10:30"},{"created_at":"2013-03-01T00:00:51+10:30","id":124,"iso_3166_code":"KZ","latitude":48.0,"longitude":-68.0,"name":"Kazakhstan","updated_at":"2013-03-01T00:00:51+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":125,"iso_3166_code":"LA","latitude":18.0,"longitude":-105.0,"name":"Lao
96
- People''s Democratic Republic","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":126,"iso_3166_code":"LB","latitude":33.5,"longitude":-35.5,"name":"Lebanon","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":127,"iso_3166_code":"LC","latitude":13.53,"longitude":60.58,"name":"Saint
97
- Lucia","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":128,"iso_3166_code":"LI","latitude":47.16,"longitude":-9.32,"name":"Liechtenstein","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":129,"iso_3166_code":"LK","latitude":7.0,"longitude":-81.0,"name":"Sri
98
- Lanka","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":130,"iso_3166_code":"LR","latitude":6.3,"longitude":9.3,"name":"Liberia","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":131,"iso_3166_code":"LS","latitude":-29.3,"longitude":-28.3,"name":"Lesotho","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:53+10:30","id":132,"iso_3166_code":"LT","latitude":56.0,"longitude":-24.0,"name":"Lithuania","updated_at":"2013-03-01T00:00:53+10:30"},{"created_at":"2013-03-01T00:00:53+10:30","id":133,"iso_3166_code":"LU","latitude":49.45,"longitude":-6.1,"name":"Luxembourg","updated_at":"2013-03-01T00:00:53+10:30"},{"created_at":"2013-03-01T00:00:53+10:30","id":134,"iso_3166_code":"LV","latitude":57.0,"longitude":-25.0,"name":"Latvia","updated_at":"2013-03-01T00:00:53+10:30"},{"created_at":"2013-03-01T00:00:53+10:30","id":135,"iso_3166_code":"LY","latitude":25.0,"longitude":-17.0,"name":"Libya","updated_at":"2013-03-01T00:00:53+10:30"},{"created_at":"2013-03-01T00:00:54+10:30","id":136,"iso_3166_code":"MA","latitude":32.0,"longitude":5.0,"name":"Morocco","updated_at":"2013-03-01T00:00:54+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":137,"iso_3166_code":"MC","latitude":43.44,"longitude":-7.24,"name":"Monaco","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":138,"iso_3166_code":"MD","latitude":47.0,"longitude":-29.0,"name":"Moldova,
99
- Republic of","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":139,"iso_3166_code":"ME","latitude":42.3,"longitude":-19.18,"name":"Montenegro","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":140,"iso_3166_code":"MF","latitude":18.05,"longitude":63.57,"name":"Saint
100
- Martin","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":141,"iso_3166_code":"MG","latitude":-20.0,"longitude":-47.0,"name":"Madagascar","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":142,"iso_3166_code":"MH","latitude":9.0,"longitude":-168.0,"name":"Marshall
101
- Islands","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:57+10:30","id":143,"iso_3166_code":"MK","latitude":41.5,"longitude":-22.0,"name":"Macedonia,
102
- the Former Yugoslav Republic Of","updated_at":"2013-03-01T00:00:57+10:30"},{"created_at":"2013-03-01T00:00:58+10:30","id":144,"iso_3166_code":"ML","latitude":17.0,"longitude":4.0,"name":"Mali","updated_at":"2013-03-01T00:00:58+10:30"},{"created_at":"2013-03-01T00:00:58+10:30","id":145,"iso_3166_code":"MM","latitude":22.0,"longitude":-98.0,"name":"Myanmar","updated_at":"2013-03-01T00:00:58+10:30"},{"created_at":"2013-03-01T00:00:58+10:30","id":146,"iso_3166_code":"MN","latitude":46.0,"longitude":-105.0,"name":"Mongolia","updated_at":"2013-03-01T00:00:58+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":147,"iso_3166_code":"MO","latitude":22.1,"longitude":-113.33,"name":"Macao","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":148,"iso_3166_code":"MP","latitude":15.12,"longitude":-145.45,"name":"Northern
103
- Mariana Islands","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":149,"iso_3166_code":"MQ","latitude":0.0,"longitude":0.0,"name":"Martinique","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":150,"iso_3166_code":"MR","latitude":20.0,"longitude":12.0,"name":"Mauritania","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":151,"iso_3166_code":"MS","latitude":16.45,"longitude":62.12,"name":"Montserrat","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":152,"iso_3166_code":"MT","latitude":35.5,"longitude":-14.35,"name":"Malta","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":153,"iso_3166_code":"MU","latitude":-20.17,"longitude":-57.33,"name":"Mauritius","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:01:00+10:30","id":154,"iso_3166_code":"MV","latitude":3.15,"longitude":-73.0,"name":"Maldives","updated_at":"2013-03-01T00:01:00+10:30"},{"created_at":"2013-03-01T00:01:00+10:30","id":155,"iso_3166_code":"MW","latitude":-13.3,"longitude":-34.0,"name":"Malawi","updated_at":"2013-03-01T00:01:00+10:30"},{"created_at":"2013-03-01T00:01:00+10:30","id":156,"iso_3166_code":"MX","latitude":23.0,"longitude":102.0,"name":"Mexico","updated_at":"2013-03-01T00:01:00+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":157,"iso_3166_code":"MY","latitude":2.3,"longitude":-112.3,"name":"Malaysia","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":158,"iso_3166_code":"MZ","latitude":-18.15,"longitude":-35.0,"name":"Mozambique","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":159,"iso_3166_code":"NA","latitude":-22.0,"longitude":-17.0,"name":"Namibia","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":160,"iso_3166_code":"NC","latitude":-21.3,"longitude":-165.3,"name":"New
104
- Caledonia","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":161,"iso_3166_code":"NE","latitude":16.0,"longitude":-8.0,"name":"Niger","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":162,"iso_3166_code":"NF","latitude":-29.02,"longitude":-167.57,"name":"Norfolk
105
- Island","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":163,"iso_3166_code":"NG","latitude":10.0,"longitude":-8.0,"name":"Nigeria","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":164,"iso_3166_code":"NI","latitude":13.0,"longitude":85.0,"name":"Nicaragua","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":165,"iso_3166_code":"NL","latitude":52.3,"longitude":-5.45,"name":"Netherlands","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":166,"iso_3166_code":"NO","latitude":62.0,"longitude":-10.0,"name":"Norway","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":167,"iso_3166_code":"NP","latitude":28.0,"longitude":-84.0,"name":"Nepal","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":168,"iso_3166_code":"NR","latitude":-0.32,"longitude":-166.55,"name":"Nauru","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":169,"iso_3166_code":"NU","latitude":-19.02,"longitude":169.52,"name":"Niue","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":170,"iso_3166_code":"NZ","latitude":-41.0,"longitude":-174.0,"name":"New
106
- Zealand","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:03+10:30","id":171,"iso_3166_code":"OM","latitude":21.0,"longitude":-57.0,"name":"Oman","updated_at":"2013-03-01T00:01:03+10:30"},{"created_at":"2013-03-01T00:01:03+10:30","id":172,"iso_3166_code":"PA","latitude":9.0,"longitude":80.0,"name":"Panama","updated_at":"2013-03-01T00:01:03+10:30"},{"created_at":"2013-03-01T00:01:03+10:30","id":173,"iso_3166_code":"PE","latitude":-10.0,"longitude":76.0,"name":"Peru","updated_at":"2013-03-01T00:01:03+10:30"},{"created_at":"2013-03-01T00:01:04+10:30","id":174,"iso_3166_code":"PF","latitude":-15.0,"longitude":140.0,"name":"French
107
- Polynesia","updated_at":"2013-03-01T00:01:04+10:30"},{"created_at":"2013-03-01T00:01:04+10:30","id":175,"iso_3166_code":"PG","latitude":-6.0,"longitude":-147.0,"name":"Papua
108
- New Guinea","updated_at":"2013-03-01T00:01:04+10:30"},{"created_at":"2013-03-01T00:01:04+10:30","id":176,"iso_3166_code":"PH","latitude":13.0,"longitude":-122.0,"name":"Philippines","updated_at":"2013-03-01T00:01:04+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":177,"iso_3166_code":"PK","latitude":30.0,"longitude":-70.0,"name":"Pakistan","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":178,"iso_3166_code":"PL","latitude":52.0,"longitude":-20.0,"name":"Poland","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":179,"iso_3166_code":"PM","latitude":46.5,"longitude":56.2,"name":"Saint
109
- Pierre And Miquelon","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":180,"iso_3166_code":"PN","latitude":-25.04,"longitude":130.06,"name":"Pitcairn","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":181,"iso_3166_code":"PR","latitude":18.15,"longitude":66.3,"name":"Puerto
110
- Rico","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":182,"iso_3166_code":"PS","latitude":0.0,"longitude":0.0,"name":"Palestinian
111
- Territory, Occupied","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":183,"iso_3166_code":"PT","latitude":39.3,"longitude":8.0,"name":"Portugal","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":184,"iso_3166_code":"PW","latitude":7.3,"longitude":-134.3,"name":"Palau","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:08+10:30","id":185,"iso_3166_code":"PY","latitude":-23.0,"longitude":58.0,"name":"Paraguay","updated_at":"2013-03-01T00:01:08+10:30"},{"created_at":"2013-03-01T00:01:08+10:30","id":186,"iso_3166_code":"QA","latitude":25.3,"longitude":-51.15,"name":"Qatar","updated_at":"2013-03-01T00:01:08+10:30"},{"created_at":"2013-03-01T00:01:08+10:30","id":187,"iso_3166_code":"RE","latitude":0.0,"longitude":0.0,"name":"R\u00e9union","updated_at":"2013-03-01T00:01:08+10:30"},{"created_at":"2013-03-01T00:01:08+10:30","id":188,"iso_3166_code":"RO","latitude":46.0,"longitude":-25.0,"name":"Romania","updated_at":"2013-03-01T00:01:08+10:30"},{"created_at":"2013-03-01T00:01:09+10:30","id":189,"iso_3166_code":"RS","latitude":44.0,"longitude":-21.0,"name":"Serbia","updated_at":"2013-03-01T00:01:09+10:30"},{"created_at":"2013-03-01T00:01:09+10:30","id":190,"iso_3166_code":"RU","latitude":60.0,"longitude":-100.0,"name":"Russian
112
- Federation","updated_at":"2013-03-01T00:01:09+10:30"},{"created_at":"2013-03-01T00:01:11+10:30","id":191,"iso_3166_code":"RW","latitude":-2.0,"longitude":-30.0,"name":"Rwanda","updated_at":"2013-03-01T00:01:11+10:30"},{"created_at":"2013-03-01T00:01:11+10:30","id":192,"iso_3166_code":"SA","latitude":25.0,"longitude":-45.0,"name":"Saudi
113
- Arabia","updated_at":"2013-03-01T00:01:11+10:30"},{"created_at":"2013-03-01T00:01:11+10:30","id":193,"iso_3166_code":"SB","latitude":-8.0,"longitude":-159.0,"name":"Solomon
114
- Islands","updated_at":"2013-03-01T00:01:11+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":194,"iso_3166_code":"SC","latitude":-4.35,"longitude":-55.4,"name":"Seychelles","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":195,"iso_3166_code":"SD","latitude":15.0,"longitude":-30.0,"name":"Sudan","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":196,"iso_3166_code":"SE","latitude":62.0,"longitude":-15.0,"name":"Sweden","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":197,"iso_3166_code":"SG","latitude":1.22,"longitude":-103.48,"name":"Singapore","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":198,"iso_3166_code":"SH","latitude":-15.57,"longitude":5.42,"name":"Saint
115
- Helena","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":199,"iso_3166_code":"SI","latitude":46.07,"longitude":-14.49,"name":"Slovenia","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":200,"iso_3166_code":"SJ","latitude":78.0,"longitude":-20.0,"name":"Svalbard
116
- And Jan Mayen","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":201,"iso_3166_code":"SK","latitude":48.4,"longitude":-19.3,"name":"Slovakia","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":202,"iso_3166_code":"SL","latitude":8.3,"longitude":11.3,"name":"Sierra
117
- Leone","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":203,"iso_3166_code":"SM","latitude":43.46,"longitude":-12.25,"name":"San
118
- Marino","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":204,"iso_3166_code":"SN","latitude":14.0,"longitude":14.0,"name":"Senegal","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":205,"iso_3166_code":"SO","latitude":10.0,"longitude":-49.0,"name":"Somalia","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":206,"iso_3166_code":"SR","latitude":4.0,"longitude":56.0,"name":"Suriname","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":207,"iso_3166_code":"SS","latitude":7.0,"longitude":-30.0,"name":"South
119
- Sudan","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":208,"iso_3166_code":"ST","latitude":1.0,"longitude":-7.0,"name":"Sao
120
- Tome and Principe","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":209,"iso_3166_code":"SV","latitude":13.5,"longitude":88.55,"name":"El
121
- Salvador","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":210,"iso_3166_code":"SY","latitude":35.0,"longitude":-38.0,"name":"Syrian
122
- Arab Republic","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":211,"iso_3166_code":"SZ","latitude":-26.3,"longitude":-31.3,"name":"Swaziland","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":212,"iso_3166_code":"TC","latitude":21.45,"longitude":71.35,"name":"Turks
123
- and Caicos Islands","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":213,"iso_3166_code":"TD","latitude":15.0,"longitude":-19.0,"name":"Chad","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":214,"iso_3166_code":"TF","latitude":0.0,"longitude":0.0,"name":"French
124
- Southern Territories","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":215,"iso_3166_code":"TG","latitude":8.0,"longitude":-1.1,"name":"Togo","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":216,"iso_3166_code":"TH","latitude":15.0,"longitude":-100.0,"name":"Thailand","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":217,"iso_3166_code":"TJ","latitude":39.0,"longitude":-71.0,"name":"Tajikistan","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":218,"iso_3166_code":"TK","latitude":-9.0,"longitude":172.0,"name":"Tokelau","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":219,"iso_3166_code":"TL","latitude":-8.5,"longitude":-125.55,"name":"Timor-Leste","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":220,"iso_3166_code":"TM","latitude":40.0,"longitude":-60.0,"name":"Turkmenistan","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":221,"iso_3166_code":"TN","latitude":34.0,"longitude":-9.0,"name":"Tunisia","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":222,"iso_3166_code":"TO","latitude":-20.0,"longitude":175.0,"name":"Tonga","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":223,"iso_3166_code":"TR","latitude":39.0,"longitude":-35.0,"name":"Turkey","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":224,"iso_3166_code":"TT","latitude":11.0,"longitude":61.0,"name":"Trinidad
125
- and Tobago","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:22+10:30","id":225,"iso_3166_code":"TV","latitude":-8.0,"longitude":-178.0,"name":"Tuvalu","updated_at":"2013-03-01T00:01:22+10:30"},{"created_at":"2013-03-01T00:01:23+10:30","id":226,"iso_3166_code":"TW","latitude":23.3,"longitude":-121.0,"name":"Taiwan,
126
- Republic Of China","updated_at":"2013-03-01T00:01:23+10:30"},{"created_at":"2013-03-01T00:01:24+10:30","id":227,"iso_3166_code":"TZ","latitude":-6.0,"longitude":-35.0,"name":"Tanzania,
127
- United Republic of","updated_at":"2013-03-01T00:01:24+10:30"},{"created_at":"2013-03-01T00:01:24+10:30","id":228,"iso_3166_code":"UA","latitude":49.0,"longitude":-32.0,"name":"Ukraine","updated_at":"2013-03-01T00:01:24+10:30"},{"created_at":"2013-03-01T00:01:24+10:30","id":229,"iso_3166_code":"UG","latitude":1.0,"longitude":-32.0,"name":"Uganda","updated_at":"2013-03-01T00:01:24+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":230,"iso_3166_code":"UM","latitude":0.0,"longitude":0.0,"name":"United
128
- States Minor Outlying Islands","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":231,"iso_3166_code":"US","latitude":38.0,"longitude":97.0,"name":"United
129
- States","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":232,"iso_3166_code":"UY","latitude":-33.0,"longitude":56.0,"name":"Uruguay","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":233,"iso_3166_code":"UZ","latitude":41.0,"longitude":-64.0,"name":"Uzbekistan","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":234,"iso_3166_code":"VA","latitude":41.54,"longitude":-12.27,"name":"Holy
130
- See (Vatican City State)","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":235,"iso_3166_code":"VC","latitude":13.15,"longitude":61.12,"name":"Saint
131
- Vincent And The Grenedines","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":236,"iso_3166_code":"VE","latitude":8.0,"longitude":66.0,"name":"Venezuela,
132
- Bolivarian Republic of","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":237,"iso_3166_code":"VG","latitude":0.0,"longitude":0.0,"name":"Virgin
133
- Islands, British","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":238,"iso_3166_code":"VI","latitude":0.0,"longitude":0.0,"name":"Virgin
134
- Islands, U.S.","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":239,"iso_3166_code":"VN","latitude":16.1,"longitude":-107.5,"name":"Viet
135
- Nam","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":240,"iso_3166_code":"VU","latitude":-16.0,"longitude":-167.0,"name":"Vanuatu","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":241,"iso_3166_code":"WF","latitude":-13.18,"longitude":176.12,"name":"Wallis
136
- and Futuna","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":242,"iso_3166_code":"WS","latitude":-13.35,"longitude":172.2,"name":"Samoa","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":243,"iso_3166_code":"YE","latitude":15.0,"longitude":-48.0,"name":"Yemen","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":244,"iso_3166_code":"YT","latitude":-12.5,"longitude":-45.1,"name":"Mayotte","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":245,"iso_3166_code":"ZA","latitude":-29.0,"longitude":-24.0,"name":"South
137
- Africa","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":246,"iso_3166_code":"ZM","latitude":-15.0,"longitude":-30.0,"name":"Zambia","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":247,"iso_3166_code":"ZW","latitude":-20.0,"longitude":-30.0,"name":"Zimbabwe","updated_at":"2013-03-01T00:01:27+10:30"}]'
57
+ encoding: ASCII-8BIT
58
+ string: !binary |-
59
+ W3siaWQiOjE0LCJuYW1lIjoiQXVzdHJhbGlhIiwiaXNvXzMxNjZfY29kZSI6
60
+ IkFVIn0seyJpZCI6MTYsIm5hbWUiOiLDhWxhbmQgSXNsYW5kcyIsImlzb18z
61
+ MTY2X2NvZGUiOiJBWCJ9XQ==
138
62
  http_version:
139
- recorded_at: Fri, 28 Oct 2016 05:28:09 GMT
140
- recorded_with: VCR 3.0.3
63
+ recorded_at: Wed, 21 Mar 2018 04:40:29 GMT
64
+ recorded_with: VCR 4.0.0