exchange-rates 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +39 -0
  4. data/Rakefile +28 -0
  5. data/db/migrate/1_create_exchange_rates.rb +10 -0
  6. data/lib/exchange-rates.rb +5 -0
  7. data/lib/exchange_rates/engine.rb +5 -0
  8. data/lib/exchange_rates/rate.rb +35 -0
  9. data/lib/exchange_rates/version.rb +3 -0
  10. data/lib/tasks/exchange_rates_tasks.rake +34 -0
  11. data/test/dummy/README.rdoc +28 -0
  12. data/test/dummy/Rakefile +6 -0
  13. data/test/dummy/app/assets/javascripts/application.js +13 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  15. data/test/dummy/app/controllers/application_controller.rb +5 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  18. data/test/dummy/bin/bundle +3 -0
  19. data/test/dummy/bin/rails +4 -0
  20. data/test/dummy/bin/rake +4 -0
  21. data/test/dummy/bin/setup +29 -0
  22. data/test/dummy/config.ru +4 -0
  23. data/test/dummy/config/application.rb +26 -0
  24. data/test/dummy/config/boot.rb +5 -0
  25. data/test/dummy/config/database.yml +27 -0
  26. data/test/dummy/config/environment.rb +5 -0
  27. data/test/dummy/config/environments/development.rb +41 -0
  28. data/test/dummy/config/environments/production.rb +79 -0
  29. data/test/dummy/config/environments/test.rb +42 -0
  30. data/test/dummy/config/initializers/assets.rb +11 -0
  31. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  32. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  33. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/test/dummy/config/initializers/inflections.rb +16 -0
  35. data/test/dummy/config/initializers/mime_types.rb +4 -0
  36. data/test/dummy/config/initializers/session_store.rb +3 -0
  37. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  38. data/test/dummy/config/locales/en.yml +23 -0
  39. data/test/dummy/config/routes.rb +56 -0
  40. data/test/dummy/config/secrets.yml +22 -0
  41. data/test/dummy/db/migrate/20160707090951_create_exchange_rates.exchange_rates.rb +11 -0
  42. data/test/dummy/db/schema.rb +26 -0
  43. data/test/dummy/log/development.log +689 -0
  44. data/test/dummy/public/404.html +67 -0
  45. data/test/dummy/public/422.html +67 -0
  46. data/test/dummy/public/500.html +66 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/tmp/cache/428/4B0/twd_to_hkd +1 -0
  49. data/test/exchange_rates_test.rb +7 -0
  50. data/test/test_helper.rb +20 -0
  51. metadata +189 -0
@@ -0,0 +1,79 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like
20
+ # NGINX, varnish or squid.
21
+ # config.action_dispatch.rack_cache = true
22
+
23
+ # Disable serving static files from the `/public` folder by default since
24
+ # Apache or NGINX already handles this.
25
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
26
+
27
+ # Compress JavaScripts and CSS.
28
+ config.assets.js_compressor = :uglifier
29
+ # config.assets.css_compressor = :sass
30
+
31
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
32
+ config.assets.compile = false
33
+
34
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
35
+ # yet still be able to expire them through the digest params.
36
+ config.assets.digest = true
37
+
38
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
39
+
40
+ # Specifies the header that your server uses for sending files.
41
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
42
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
43
+
44
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
45
+ # config.force_ssl = true
46
+
47
+ # Use the lowest log level to ensure availability of diagnostic information
48
+ # when problems arise.
49
+ config.log_level = :debug
50
+
51
+ # Prepend all log lines with the following tags.
52
+ # config.log_tags = [ :subdomain, :uuid ]
53
+
54
+ # Use a different logger for distributed setups.
55
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
56
+
57
+ # Use a different cache store in production.
58
+ # config.cache_store = :mem_cache_store
59
+
60
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
61
+ # config.action_controller.asset_host = 'http://assets.example.com'
62
+
63
+ # Ignore bad email addresses and do not raise email delivery errors.
64
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
65
+ # config.action_mailer.raise_delivery_errors = false
66
+
67
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
68
+ # the I18n.default_locale when a translation cannot be found).
69
+ config.i18n.fallbacks = true
70
+
71
+ # Send deprecation notices to registered listeners.
72
+ config.active_support.deprecation = :notify
73
+
74
+ # Use default logging formatter so that PID and timestamp are not suppressed.
75
+ config.log_formatter = ::Logger::Formatter.new
76
+
77
+ # Do not dump schema after migrations.
78
+ config.active_record.dump_schema_after_migration = false
79
+ end
@@ -0,0 +1,42 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: c0d7e5011f903da8410e8d42ad78e6cc27b3c4e2712c9e98d84a49a2f3b74b452eaa1ca3a596187a3a8fd5a6dae69ede26627cd71ceaf8013d663e6551a9cc76
15
+
16
+ test:
17
+ secret_key_base: 0b7dc8def90f3fc7e2ec596dcb7c42676af84a45b1065afd08e646348afb9359a9959158c9a8f83ccf6baa35d887bd029a0c040ca1cc9f5df7c5bd6f5534ba99
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,11 @@
1
+ # This migration comes from exchange_rates (originally 1)
2
+ class CreateExchangeRates < ActiveRecord::Migration
3
+ def change
4
+ create_table :exchange_rates do |t|
5
+ t.string :from_currency
6
+ t.decimal :rate_to_base_currency
7
+
8
+ t.timestamps null: false
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,26 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20160707090951) do
15
+
16
+ # These are extensions that must be enabled in order to support this database
17
+ enable_extension "plpgsql"
18
+
19
+ create_table "exchange_rates", force: :cascade do |t|
20
+ t.string "from_currency"
21
+ t.decimal "rate_to_base_currency"
22
+ t.datetime "created_at", null: false
23
+ t.datetime "updated_at", null: false
24
+ end
25
+
26
+ end
@@ -0,0 +1,689 @@
1
+  (8.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2
+  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
+ Migrating to CreateExchangeRates (20160707090951)
5
+  (0.5ms) BEGIN
6
+  (14.1ms) CREATE TABLE "exchange_rates" ("id" serial primary key, "from_currency" character varying, "rate_to_base_currency" decimal, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
7
+ SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160707090951"]]
8
+  (2.2ms) COMMIT
9
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
+  (13.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
11
+ FROM pg_constraint c
12
+ JOIN pg_class t1 ON c.conrelid = t1.oid
13
+ JOIN pg_class t2 ON c.confrelid = t2.oid
14
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
15
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
16
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
17
+ WHERE c.contype = 'f'
18
+ AND t1.relname = 'exchange_rates'
19
+ AND t3.nspname = ANY (current_schemas(false))
20
+ ORDER BY c.conname
21
+ 
22
+ ExchangeRates::Rate Load (1.3ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "AED"]]
23
+  (0.4ms) BEGIN
24
+ SQL (1.2ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "AED"], ["rate_to_base_currency", "2.1121"], ["created_at", "2016-07-07 09:10:23.105650"], ["updated_at", "2016-07-07 09:10:23.105650"]]
25
+  (1.1ms) COMMIT
26
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "AFN"]]
27
+  (0.5ms) BEGIN
28
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "AFN"], ["rate_to_base_currency", "0.113"], ["created_at", "2016-07-07 09:10:23.191868"], ["updated_at", "2016-07-07 09:10:23.191868"]]
29
+  (0.8ms) COMMIT
30
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ALL"]]
31
+  (0.5ms) BEGIN
32
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "ALL"], ["rate_to_base_currency", "0.0628950596"], ["created_at", "2016-07-07 09:10:23.350335"], ["updated_at", "2016-07-07 09:10:23.350335"]]
33
+  (0.8ms) COMMIT
34
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "AMD"]]
35
+  (0.7ms) BEGIN
36
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "AMD"], ["rate_to_base_currency", "0.0162667222"], ["created_at", "2016-07-07 09:10:23.497702"], ["updated_at", "2016-07-07 09:10:23.497702"]]
37
+  (2.3ms) COMMIT
38
+ ExchangeRates::Rate Load (2.5ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ANG"]]
39
+  (0.5ms) BEGIN
40
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "ANG"], ["rate_to_base_currency", "4.3341"], ["created_at", "2016-07-07 09:10:23.557817"], ["updated_at", "2016-07-07 09:10:23.557817"]]
41
+  (1.0ms) COMMIT
42
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "AOA"]]
43
+  (0.5ms) BEGIN
44
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "AOA"], ["rate_to_base_currency", "0.046809905"], ["created_at", "2016-07-07 09:10:23.684853"], ["updated_at", "2016-07-07 09:10:23.684853"]]
45
+  (0.9ms) COMMIT
46
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ARS"]]
47
+  (0.4ms) BEGIN
48
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "ARS"], ["rate_to_base_currency", "0.5279"], ["created_at", "2016-07-07 09:10:23.770544"], ["updated_at", "2016-07-07 09:10:23.770544"]]
49
+  (0.8ms) COMMIT
50
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "AUD"]]
51
+  (0.6ms) BEGIN
52
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "AUD"], ["rate_to_base_currency", "5.8426"], ["created_at", "2016-07-07 09:10:23.830465"], ["updated_at", "2016-07-07 09:10:23.830465"]]
53
+  (0.8ms) COMMIT
54
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "AWG"]]
55
+  (0.6ms) BEGIN
56
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "AWG"], ["rate_to_base_currency", "4.3341"], ["created_at", "2016-07-07 09:10:23.888406"], ["updated_at", "2016-07-07 09:10:23.888406"]]
57
+  (0.8ms) COMMIT
58
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "AZN"]]
59
+  (1.5ms) BEGIN
60
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "AZN"], ["rate_to_base_currency", "4.9974"], ["created_at", "2016-07-07 09:10:23.946302"], ["updated_at", "2016-07-07 09:10:23.946302"]]
61
+  (1.0ms) COMMIT
62
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BAM"]]
63
+  (0.7ms) BEGIN
64
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BAM"], ["rate_to_base_currency", "4.3954"], ["created_at", "2016-07-07 09:10:24.010375"], ["updated_at", "2016-07-07 09:10:24.010375"]]
65
+  (1.1ms) COMMIT
66
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BBD"]]
67
+  (0.6ms) BEGIN
68
+ SQL (1.2ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BBD"], ["rate_to_base_currency", "3.879"], ["created_at", "2016-07-07 09:10:24.078819"], ["updated_at", "2016-07-07 09:10:24.078819"]]
69
+  (0.9ms) COMMIT
70
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BDT"]]
71
+  (0.5ms) BEGIN
72
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BDT"], ["rate_to_base_currency", "0.0992644504"], ["created_at", "2016-07-07 09:10:24.537592"], ["updated_at", "2016-07-07 09:10:24.537592"]]
73
+  (1.0ms) COMMIT
74
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BGN"]]
75
+  (0.5ms) BEGIN
76
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BGN"], ["rate_to_base_currency", "4.3883"], ["created_at", "2016-07-07 09:10:24.603954"], ["updated_at", "2016-07-07 09:10:24.603954"]]
77
+  (0.7ms) COMMIT
78
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BHD"]]
79
+  (0.6ms) BEGIN
80
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BHD"], ["rate_to_base_currency", "20.5616"], ["created_at", "2016-07-07 09:10:24.668819"], ["updated_at", "2016-07-07 09:10:24.668819"]]
81
+  (0.9ms) COMMIT
82
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BIF"]]
83
+  (0.5ms) BEGIN
84
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BIF"], ["rate_to_base_currency", "0.0046245148"], ["created_at", "2016-07-07 09:10:24.787881"], ["updated_at", "2016-07-07 09:10:24.787881"]]
85
+  (0.9ms) COMMIT
86
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BMD"]]
87
+  (0.7ms) BEGIN
88
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BMD"], ["rate_to_base_currency", "7.7585"], ["created_at", "2016-07-07 09:10:24.851435"], ["updated_at", "2016-07-07 09:10:24.851435"]]
89
+  (0.9ms) COMMIT
90
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BND"]]
91
+  (0.6ms) BEGIN
92
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BND"], ["rate_to_base_currency", "5.7587"], ["created_at", "2016-07-07 09:10:24.934335"], ["updated_at", "2016-07-07 09:10:24.934335"]]
93
+  (0.8ms) COMMIT
94
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BOB"]]
95
+  (0.5ms) BEGIN
96
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BOB"], ["rate_to_base_currency", "1.1261"], ["created_at", "2016-07-07 09:10:25.000608"], ["updated_at", "2016-07-07 09:10:25.000608"]]
97
+  (0.8ms) COMMIT
98
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BRL"]]
99
+  (0.5ms) BEGIN
100
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BRL"], ["rate_to_base_currency", "2.3307"], ["created_at", "2016-07-07 09:10:25.057209"], ["updated_at", "2016-07-07 09:10:25.057209"]]
101
+  (0.8ms) COMMIT
102
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BSD"]]
103
+  (0.4ms) BEGIN
104
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BSD"], ["rate_to_base_currency", "7.7753"], ["created_at", "2016-07-07 09:10:25.118254"], ["updated_at", "2016-07-07 09:10:25.118254"]]
105
+  (0.9ms) COMMIT
106
+ ExchangeRates::Rate Load (1.1ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BTN"]]
107
+  (0.8ms) BEGIN
108
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BTN"], ["rate_to_base_currency", "0.1152"], ["created_at", "2016-07-07 09:10:25.188263"], ["updated_at", "2016-07-07 09:10:25.188263"]]
109
+  (0.8ms) COMMIT
110
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BWP"]]
111
+  (0.5ms) BEGIN
112
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BWP"], ["rate_to_base_currency", "0.7104"], ["created_at", "2016-07-07 09:10:25.258017"], ["updated_at", "2016-07-07 09:10:25.258017"]]
113
+  (0.8ms) COMMIT
114
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BYN"]]
115
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BYR"]]
116
+  (0.4ms) BEGIN
117
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BYR"], ["rate_to_base_currency", "0.0003859744"], ["created_at", "2016-07-07 09:10:25.427029"], ["updated_at", "2016-07-07 09:10:25.427029"]]
118
+  (1.9ms) COMMIT
119
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BZD"]]
120
+  (0.5ms) BEGIN
121
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BZD"], ["rate_to_base_currency", "3.8598"], ["created_at", "2016-07-07 09:10:25.490463"], ["updated_at", "2016-07-07 09:10:25.490463"]]
122
+  (1.0ms) COMMIT
123
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "CAD"]]
124
+  (0.7ms) BEGIN
125
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "CAD"], ["rate_to_base_currency", "5.9984"], ["created_at", "2016-07-07 09:10:25.548095"], ["updated_at", "2016-07-07 09:10:25.548095"]]
126
+  (1.0ms) COMMIT
127
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "CDF"]]
128
+  (0.5ms) BEGIN
129
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "CDF"], ["rate_to_base_currency", "0.0081236484"], ["created_at", "2016-07-07 09:10:25.656446"], ["updated_at", "2016-07-07 09:10:25.656446"]]
130
+  (0.9ms) COMMIT
131
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "CHF"]]
132
+  (2.7ms) BEGIN
133
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "CHF"], ["rate_to_base_currency", "7.9391"], ["created_at", "2016-07-07 09:10:25.717414"], ["updated_at", "2016-07-07 09:10:25.717414"]]
134
+  (0.9ms) COMMIT
135
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "CLF"]]
136
+  (0.5ms) BEGIN
137
+ SQL (1.2ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "CLF"], ["rate_to_base_currency", "308.1057"], ["created_at", "2016-07-07 09:10:25.775769"], ["updated_at", "2016-07-07 09:10:25.775769"]]
138
+  (1.8ms) COMMIT
139
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "CLP"]]
140
+  (0.5ms) BEGIN
141
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "CLP"], ["rate_to_base_currency", "0.0117391146"], ["created_at", "2016-07-07 09:10:25.899984"], ["updated_at", "2016-07-07 09:10:25.899984"]]
142
+  (0.8ms) COMMIT
143
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "CNY"]]
144
+  (0.6ms) BEGIN
145
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "CNY"], ["rate_to_base_currency", "1.1608"], ["created_at", "2016-07-07 09:10:25.968240"], ["updated_at", "2016-07-07 09:10:25.968240"]]
146
+  (0.9ms) COMMIT
147
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "COP"]]
148
+  (0.7ms) BEGIN
149
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "COP"], ["rate_to_base_currency", "0.002601176"], ["created_at", "2016-07-07 09:10:26.092310"], ["updated_at", "2016-07-07 09:10:26.092310"]]
150
+  (1.4ms) COMMIT
151
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "CRC"]]
152
+  (0.6ms) BEGIN
153
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "CRC"], ["rate_to_base_currency", "0.014157087"], ["created_at", "2016-07-07 09:10:26.227035"], ["updated_at", "2016-07-07 09:10:26.227035"]]
154
+  (1.0ms) COMMIT
155
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "CUC"]]
156
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "CUP"]]
157
+  (0.6ms) BEGIN
158
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "CUP"], ["rate_to_base_currency", "7.7581"], ["created_at", "2016-07-07 09:10:26.341778"], ["updated_at", "2016-07-07 09:10:26.341778"]]
159
+  (1.0ms) COMMIT
160
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "CVE"]]
161
+  (0.6ms) BEGIN
162
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "CVE"], ["rate_to_base_currency", "0.0780481713"], ["created_at", "2016-07-07 09:10:26.491234"], ["updated_at", "2016-07-07 09:10:26.491234"]]
163
+  (1.1ms) COMMIT
164
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "CZK"]]
165
+  (0.5ms) BEGIN
166
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "CZK"], ["rate_to_base_currency", "0.3178"], ["created_at", "2016-07-07 09:10:26.558561"], ["updated_at", "2016-07-07 09:10:26.558561"]]
167
+  (1.6ms) COMMIT
168
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "DJF"]]
169
+  (0.5ms) BEGIN
170
+ SQL (2.3ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "DJF"], ["rate_to_base_currency", "0.0436866271"], ["created_at", "2016-07-07 09:10:26.680843"], ["updated_at", "2016-07-07 09:10:26.680843"]]
171
+  (1.2ms) COMMIT
172
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "DKK"]]
173
+  (0.7ms) BEGIN
174
+ SQL (2.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "DKK"], ["rate_to_base_currency", "1.1551"], ["created_at", "2016-07-07 09:10:26.744709"], ["updated_at", "2016-07-07 09:10:26.744709"]]
175
+  (1.5ms) COMMIT
176
+ ExchangeRates::Rate Load (1.3ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "DOP"]]
177
+  (1.2ms) BEGIN
178
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "DOP"], ["rate_to_base_currency", "0.1688"], ["created_at", "2016-07-07 09:10:26.820052"], ["updated_at", "2016-07-07 09:10:26.820052"]]
179
+  (1.9ms) COMMIT
180
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "DZD"]]
181
+  (0.6ms) BEGIN
182
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "DZD"], ["rate_to_base_currency", "0.0702089418"], ["created_at", "2016-07-07 09:10:26.957529"], ["updated_at", "2016-07-07 09:10:26.957529"]]
183
+  (1.2ms) COMMIT
184
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "EGP"]]
185
+  (0.6ms) BEGIN
186
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "EGP"], ["rate_to_base_currency", "0.8736"], ["created_at", "2016-07-07 09:10:27.028148"], ["updated_at", "2016-07-07 09:10:27.028148"]]
187
+  (1.3ms) COMMIT
188
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ERN"]]
189
+  (0.7ms) BEGIN
190
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "ERN"], ["rate_to_base_currency", "0.4951"], ["created_at", "2016-07-07 09:10:27.107774"], ["updated_at", "2016-07-07 09:10:27.107774"]]
191
+  (4.5ms) COMMIT
192
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ETB"]]
193
+  (0.7ms) BEGIN
194
+ SQL (1.2ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "ETB"], ["rate_to_base_currency", "0.3539"], ["created_at", "2016-07-07 09:10:27.185720"], ["updated_at", "2016-07-07 09:10:27.185720"]]
195
+  (6.4ms) COMMIT
196
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "EUR"]]
197
+  (1.1ms) BEGIN
198
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "EUR"], ["rate_to_base_currency", "8.5952"], ["created_at", "2016-07-07 09:10:27.252173"], ["updated_at", "2016-07-07 09:10:27.252173"]]
199
+  (1.4ms) COMMIT
200
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "FJD"]]
201
+  (0.7ms) BEGIN
202
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "FJD"], ["rate_to_base_currency", "3.7463"], ["created_at", "2016-07-07 09:10:27.319774"], ["updated_at", "2016-07-07 09:10:27.319774"]]
203
+  (1.1ms) COMMIT
204
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "FKP"]]
205
+  (0.6ms) BEGIN
206
+ SQL (1.2ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "FKP"], ["rate_to_base_currency", "10.0389"], ["created_at", "2016-07-07 09:10:27.378941"], ["updated_at", "2016-07-07 09:10:27.378941"]]
207
+  (1.1ms) COMMIT
208
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "GBP"]]
209
+  (0.5ms) BEGIN
210
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "GBP"], ["rate_to_base_currency", "10.0699"], ["created_at", "2016-07-07 09:10:27.446382"], ["updated_at", "2016-07-07 09:10:27.446382"]]
211
+  (1.0ms) COMMIT
212
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "GEL"]]
213
+  (0.7ms) BEGIN
214
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "GEL"], ["rate_to_base_currency", "3.3157"], ["created_at", "2016-07-07 09:10:27.520605"], ["updated_at", "2016-07-07 09:10:27.520605"]]
215
+  (2.4ms) COMMIT
216
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "GHS"]]
217
+  (0.7ms) BEGIN
218
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "GHS"], ["rate_to_base_currency", "1.9604"], ["created_at", "2016-07-07 09:10:27.588895"], ["updated_at", "2016-07-07 09:10:27.588895"]]
219
+  (1.1ms) COMMIT
220
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "GIP"]]
221
+  (0.5ms) BEGIN
222
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "GIP"], ["rate_to_base_currency", "10.0105"], ["created_at", "2016-07-07 09:10:27.659941"], ["updated_at", "2016-07-07 09:10:27.659941"]]
223
+  (1.1ms) COMMIT
224
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "GMD"]]
225
+  (0.5ms) BEGIN
226
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "GMD"], ["rate_to_base_currency", "0.1811"], ["created_at", "2016-07-07 09:10:27.747060"], ["updated_at", "2016-07-07 09:10:27.747060"]]
227
+  (0.8ms) COMMIT
228
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "GNF"]]
229
+  (0.5ms) BEGIN
230
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "GNF"], ["rate_to_base_currency", "0.0008712055"], ["created_at", "2016-07-07 09:10:27.899383"], ["updated_at", "2016-07-07 09:10:27.899383"]]
231
+  (0.9ms) COMMIT
232
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "GTQ"]]
233
+  (0.5ms) BEGIN
234
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "GTQ"], ["rate_to_base_currency", "1.0165"], ["created_at", "2016-07-07 09:10:27.956219"], ["updated_at", "2016-07-07 09:10:27.956219"]]
235
+  (3.0ms) COMMIT
236
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "GYD"]]
237
+  (0.5ms) BEGIN
238
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "GYD"], ["rate_to_base_currency", "0.0374407033"], ["created_at", "2016-07-07 09:10:28.073579"], ["updated_at", "2016-07-07 09:10:28.073579"]]
239
+  (0.9ms) COMMIT
240
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "HKD"]]
241
+  (0.4ms) BEGIN
242
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "HKD"], ["rate_to_base_currency", "1.0"], ["created_at", "2016-07-07 09:10:28.082234"], ["updated_at", "2016-07-07 09:10:28.082234"]]
243
+  (0.7ms) COMMIT
244
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "HNL"]]
245
+  (0.5ms) BEGIN
246
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "HNL"], ["rate_to_base_currency", "0.3404"], ["created_at", "2016-07-07 09:10:28.136573"], ["updated_at", "2016-07-07 09:10:28.136573"]]
247
+  (0.8ms) COMMIT
248
+ ExchangeRates::Rate Load (1.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "HRK"]]
249
+  (0.7ms) BEGIN
250
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "HRK"], ["rate_to_base_currency", "1.1482"], ["created_at", "2016-07-07 09:10:28.198132"], ["updated_at", "2016-07-07 09:10:28.198132"]]
251
+  (1.0ms) COMMIT
252
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "HTG"]]
253
+  (0.6ms) BEGIN
254
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "HTG"], ["rate_to_base_currency", "0.123"], ["created_at", "2016-07-07 09:10:28.256161"], ["updated_at", "2016-07-07 09:10:28.256161"]]
255
+  (0.8ms) COMMIT
256
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "HUF"]]
257
+  (0.5ms) BEGIN
258
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "HUF"], ["rate_to_base_currency", "0.02715753"], ["created_at", "2016-07-07 09:10:28.369820"], ["updated_at", "2016-07-07 09:10:28.369820"]]
259
+  (0.8ms) COMMIT
260
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "IDR"]]
261
+  (0.5ms) BEGIN
262
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "IDR"], ["rate_to_base_currency", "0.0005901929"], ["created_at", "2016-07-07 09:10:28.485462"], ["updated_at", "2016-07-07 09:10:28.485462"]]
263
+  (1.2ms) COMMIT
264
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ILS"]]
265
+  (0.6ms) BEGIN
266
+ SQL (1.3ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "ILS"], ["rate_to_base_currency", "1.9971"], ["created_at", "2016-07-07 09:10:28.543309"], ["updated_at", "2016-07-07 09:10:28.543309"]]
267
+  (1.7ms) COMMIT
268
+ ExchangeRates::Rate Load (1.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "INR"]]
269
+  (0.8ms) BEGIN
270
+ SQL (1.2ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "INR"], ["rate_to_base_currency", "0.1152"], ["created_at", "2016-07-07 09:10:28.623475"], ["updated_at", "2016-07-07 09:10:28.623475"]]
271
+  (1.2ms) COMMIT
272
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "IQD"]]
273
+  (0.8ms) BEGIN
274
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "IQD"], ["rate_to_base_currency", "0.0066575857"], ["created_at", "2016-07-07 09:10:28.757567"], ["updated_at", "2016-07-07 09:10:28.757567"]]
275
+  (2.4ms) COMMIT
276
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "IRR"]]
277
+  (0.6ms) BEGIN
278
+ SQL (1.2ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "IRR"], ["rate_to_base_currency", "0.0002519677"], ["created_at", "2016-07-07 09:10:28.884539"], ["updated_at", "2016-07-07 09:10:28.884539"]]
279
+  (1.2ms) COMMIT
280
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ISK"]]
281
+  (0.6ms) BEGIN
282
+ SQL (1.2ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "ISK"], ["rate_to_base_currency", "0.0630739732"], ["created_at", "2016-07-07 09:10:29.014741"], ["updated_at", "2016-07-07 09:10:29.014741"]]
283
+  (1.0ms) COMMIT
284
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "JMD"]]
285
+  (0.5ms) BEGIN
286
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "JMD"], ["rate_to_base_currency", "0.061256118"], ["created_at", "2016-07-07 09:10:29.131305"], ["updated_at", "2016-07-07 09:10:29.131305"]]
287
+  (0.8ms) COMMIT
288
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "JOD"]]
289
+  (0.4ms) BEGIN
290
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "JOD"], ["rate_to_base_currency", "10.95"], ["created_at", "2016-07-07 09:10:29.190774"], ["updated_at", "2016-07-07 09:10:29.190774"]]
291
+  (0.7ms) COMMIT
292
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "JPY"]]
293
+  (0.4ms) BEGIN
294
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "JPY"], ["rate_to_base_currency", "0.0768326508"], ["created_at", "2016-07-07 09:10:29.315849"], ["updated_at", "2016-07-07 09:10:29.315849"]]
295
+  (0.6ms) COMMIT
296
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "KES"]]
297
+  (0.4ms) BEGIN
298
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "KES"], ["rate_to_base_currency", "0.0766665389"], ["created_at", "2016-07-07 09:10:29.430187"], ["updated_at", "2016-07-07 09:10:29.430187"]]
299
+  (0.7ms) COMMIT
300
+ ExchangeRates::Rate Load (0.5ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "KGS"]]
301
+  (0.6ms) BEGIN
302
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "KGS"], ["rate_to_base_currency", "0.1151"], ["created_at", "2016-07-07 09:10:29.486019"], ["updated_at", "2016-07-07 09:10:29.486019"]]
303
+  (0.9ms) COMMIT
304
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "KHR"]]
305
+  (0.6ms) BEGIN
306
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "KHR"], ["rate_to_base_currency", "0.0019030774"], ["created_at", "2016-07-07 09:10:29.630936"], ["updated_at", "2016-07-07 09:10:29.630936"]]
307
+  (1.0ms) COMMIT
308
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "KMF"]]
309
+  (0.6ms) BEGIN
310
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "KMF"], ["rate_to_base_currency", "0.0174741775"], ["created_at", "2016-07-07 09:10:29.737390"], ["updated_at", "2016-07-07 09:10:29.737390"]]
311
+  (1.1ms) COMMIT
312
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "KPW"]]
313
+  (0.5ms) BEGIN
314
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "KPW"], ["rate_to_base_currency", "0.0086200952"], ["created_at", "2016-07-07 09:10:29.853472"], ["updated_at", "2016-07-07 09:10:29.853472"]]
315
+  (1.1ms) COMMIT
316
+ ExchangeRates::Rate Load (1.5ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "KRW"]]
317
+  (0.7ms) BEGIN
318
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "KRW"], ["rate_to_base_currency", "0.0067277049"], ["created_at", "2016-07-07 09:10:30.020259"], ["updated_at", "2016-07-07 09:10:30.020259"]]
319
+  (1.1ms) COMMIT
320
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "KWD"]]
321
+  (0.5ms) BEGIN
322
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "KWD"], ["rate_to_base_currency", "25.7019"], ["created_at", "2016-07-07 09:10:30.082464"], ["updated_at", "2016-07-07 09:10:30.082464"]]
323
+  (0.8ms) COMMIT
324
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "KYD"]]
325
+  (0.4ms) BEGIN
326
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "KYD"], ["rate_to_base_currency", "9.4611"], ["created_at", "2016-07-07 09:10:30.146034"], ["updated_at", "2016-07-07 09:10:30.146034"]]
327
+  (0.7ms) COMMIT
328
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "KZT"]]
329
+  (0.5ms) BEGIN
330
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "KZT"], ["rate_to_base_currency", "0.0230637945"], ["created_at", "2016-07-07 09:10:30.274523"], ["updated_at", "2016-07-07 09:10:30.274523"]]
331
+  (1.1ms) COMMIT
332
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "LAK"]]
333
+  (0.6ms) BEGIN
334
+ SQL (1.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "LAK"], ["rate_to_base_currency", "0.0009609678"], ["created_at", "2016-07-07 09:10:30.419068"], ["updated_at", "2016-07-07 09:10:30.419068"]]
335
+  (5.1ms) COMMIT
336
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "LBP"]]
337
+  (0.6ms) BEGIN
338
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "LBP"], ["rate_to_base_currency", "0.0051497416"], ["created_at", "2016-07-07 09:10:30.553594"], ["updated_at", "2016-07-07 09:10:30.553594"]]
339
+  (1.1ms) COMMIT
340
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "LKR"]]
341
+  (0.8ms) BEGIN
342
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "LKR"], ["rate_to_base_currency", "0.0533714761"], ["created_at", "2016-07-07 09:10:30.680214"], ["updated_at", "2016-07-07 09:10:30.680214"]]
343
+  (1.2ms) COMMIT
344
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "LRD"]]
345
+  (0.7ms) BEGIN
346
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "LRD"], ["rate_to_base_currency", "0.0916271143"], ["created_at", "2016-07-07 09:10:30.818379"], ["updated_at", "2016-07-07 09:10:30.818379"]]
347
+  (1.0ms) COMMIT
348
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "LSL"]]
349
+  (1.9ms) BEGIN
350
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "LSL"], ["rate_to_base_currency", "0.5305"], ["created_at", "2016-07-07 09:10:30.885024"], ["updated_at", "2016-07-07 09:10:30.885024"]]
351
+  (1.0ms) COMMIT
352
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "LTL"]]
353
+  (0.6ms) BEGIN
354
+ SQL (2.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "LTL"], ["rate_to_base_currency", "2.5447"], ["created_at", "2016-07-07 09:10:30.956892"], ["updated_at", "2016-07-07 09:10:30.956892"]]
355
+  (2.1ms) COMMIT
356
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "LVL"]]
357
+  (0.7ms) BEGIN
358
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "LVL"], ["rate_to_base_currency", "12.502"], ["created_at", "2016-07-07 09:10:31.028804"], ["updated_at", "2016-07-07 09:10:31.028804"]]
359
+  (1.1ms) COMMIT
360
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "LYD"]]
361
+  (0.7ms) BEGIN
362
+ SQL (1.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "LYD"], ["rate_to_base_currency", "5.6268"], ["created_at", "2016-07-07 09:10:31.094141"], ["updated_at", "2016-07-07 09:10:31.094141"]]
363
+  (1.1ms) COMMIT
364
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MAD"]]
365
+  (0.5ms) BEGIN
366
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MAD"], ["rate_to_base_currency", "0.7902"], ["created_at", "2016-07-07 09:10:31.166487"], ["updated_at", "2016-07-07 09:10:31.166487"]]
367
+  (0.9ms) COMMIT
368
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MDL"]]
369
+  (0.5ms) BEGIN
370
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MDL"], ["rate_to_base_currency", "0.3924"], ["created_at", "2016-07-07 09:10:31.253257"], ["updated_at", "2016-07-07 09:10:31.253257"]]
371
+  (0.9ms) COMMIT
372
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MGA"]]
373
+  (0.4ms) BEGIN
374
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MGA"], ["rate_to_base_currency", "0.0024313538"], ["created_at", "2016-07-07 09:10:31.360394"], ["updated_at", "2016-07-07 09:10:31.360394"]]
375
+  (0.8ms) COMMIT
376
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MKD"]]
377
+  (0.5ms) BEGIN
378
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MKD"], ["rate_to_base_currency", "0.1396"], ["created_at", "2016-07-07 09:10:31.418422"], ["updated_at", "2016-07-07 09:10:31.418422"]]
379
+  (1.0ms) COMMIT
380
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MMK"]]
381
+  (0.5ms) BEGIN
382
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MMK"], ["rate_to_base_currency", "0.0066544447"], ["created_at", "2016-07-07 09:10:31.529446"], ["updated_at", "2016-07-07 09:10:31.529446"]]
383
+  (1.0ms) COMMIT
384
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MNT"]]
385
+  (0.5ms) BEGIN
386
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MNT"], ["rate_to_base_currency", "0.0038674396"], ["created_at", "2016-07-07 09:10:31.686870"], ["updated_at", "2016-07-07 09:10:31.686870"]]
387
+  (0.9ms) COMMIT
388
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MOP"]]
389
+  (0.6ms) BEGIN
390
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MOP"], ["rate_to_base_currency", "0.9709"], ["created_at", "2016-07-07 09:10:31.759092"], ["updated_at", "2016-07-07 09:10:31.759092"]]
391
+  (1.1ms) COMMIT
392
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MRO"]]
393
+  (0.5ms) BEGIN
394
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MRO"], ["rate_to_base_currency", "0.0217661015"], ["created_at", "2016-07-07 09:10:31.888787"], ["updated_at", "2016-07-07 09:10:31.888787"]]
395
+  (0.8ms) COMMIT
396
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MUR"]]
397
+  (0.5ms) BEGIN
398
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MUR"], ["rate_to_base_currency", "0.2192"], ["created_at", "2016-07-07 09:10:31.953313"], ["updated_at", "2016-07-07 09:10:31.953313"]]
399
+  (0.9ms) COMMIT
400
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MVR"]]
401
+  (0.5ms) BEGIN
402
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MVR"], ["rate_to_base_currency", "0.5034"], ["created_at", "2016-07-07 09:10:32.020169"], ["updated_at", "2016-07-07 09:10:32.020169"]]
403
+  (0.9ms) COMMIT
404
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MWK"]]
405
+  (0.7ms) BEGIN
406
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MWK"], ["rate_to_base_currency", "0.0108541924"], ["created_at", "2016-07-07 09:10:32.137244"], ["updated_at", "2016-07-07 09:10:32.137244"]]
407
+  (1.5ms) COMMIT
408
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MXN"]]
409
+  (0.6ms) BEGIN
410
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MXN"], ["rate_to_base_currency", "0.4161"], ["created_at", "2016-07-07 09:10:32.221967"], ["updated_at", "2016-07-07 09:10:32.221967"]]
411
+  (1.2ms) COMMIT
412
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MYR"]]
413
+  (0.8ms) BEGIN
414
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MYR"], ["rate_to_base_currency", "1.9335"], ["created_at", "2016-07-07 09:10:32.288454"], ["updated_at", "2016-07-07 09:10:32.288454"]]
415
+  (1.1ms) COMMIT
416
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MZN"]]
417
+  (0.6ms) BEGIN
418
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "MZN"], ["rate_to_base_currency", "0.1219"], ["created_at", "2016-07-07 09:10:32.360255"], ["updated_at", "2016-07-07 09:10:32.360255"]]
419
+  (1.2ms) COMMIT
420
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "NAD"]]
421
+  (0.6ms) BEGIN
422
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "NAD"], ["rate_to_base_currency", "0.5305"], ["created_at", "2016-07-07 09:10:32.426844"], ["updated_at", "2016-07-07 09:10:32.426844"]]
423
+  (1.0ms) COMMIT
424
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "NGN"]]
425
+  (0.5ms) BEGIN
426
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "NGN"], ["rate_to_base_currency", "0.0275109218"], ["created_at", "2016-07-07 09:10:32.564934"], ["updated_at", "2016-07-07 09:10:32.564934"]]
427
+  (0.9ms) COMMIT
428
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "NIO"]]
429
+  (0.5ms) BEGIN
430
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "NIO"], ["rate_to_base_currency", "0.2709"], ["created_at", "2016-07-07 09:10:32.626432"], ["updated_at", "2016-07-07 09:10:32.626432"]]
431
+  (1.0ms) COMMIT
432
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "NOK"]]
433
+  (0.6ms) BEGIN
434
+ SQL (1.3ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "NOK"], ["rate_to_base_currency", "0.918"], ["created_at", "2016-07-07 09:10:32.690670"], ["updated_at", "2016-07-07 09:10:32.690670"]]
435
+  (1.4ms) COMMIT
436
+ ExchangeRates::Rate Load (1.3ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "NPR"]]
437
+  (0.6ms) BEGIN
438
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "NPR"], ["rate_to_base_currency", "0.0719942405"], ["created_at", "2016-07-07 09:10:32.837246"], ["updated_at", "2016-07-07 09:10:32.837246"]]
439
+  (1.5ms) COMMIT
440
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "NZD"]]
441
+  (0.5ms) BEGIN
442
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "NZD"], ["rate_to_base_currency", "5.601"], ["created_at", "2016-07-07 09:10:32.906259"], ["updated_at", "2016-07-07 09:10:32.906259"]]
443
+  (1.2ms) COMMIT
444
+ ExchangeRates::Rate Load (1.2ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "OMR"]]
445
+  (1.0ms) BEGIN
446
+ SQL (1.5ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "OMR"], ["rate_to_base_currency", "20.1483"], ["created_at", "2016-07-07 09:10:32.976868"], ["updated_at", "2016-07-07 09:10:32.976868"]]
447
+  (1.2ms) COMMIT
448
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "PAB"]]
449
+  (0.7ms) BEGIN
450
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "PAB"], ["rate_to_base_currency", "7.779"], ["created_at", "2016-07-07 09:10:33.048231"], ["updated_at", "2016-07-07 09:10:33.048231"]]
451
+  (1.2ms) COMMIT
452
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "PEN"]]
453
+  (0.6ms) BEGIN
454
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "PEN"], ["rate_to_base_currency", "2.3635"], ["created_at", "2016-07-07 09:10:33.117389"], ["updated_at", "2016-07-07 09:10:33.117389"]]
455
+  (0.9ms) COMMIT
456
+ ExchangeRates::Rate Load (1.2ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "PGK"]]
457
+  (0.6ms) BEGIN
458
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "PGK"], ["rate_to_base_currency", "2.4515"], ["created_at", "2016-07-07 09:10:33.193749"], ["updated_at", "2016-07-07 09:10:33.193749"]]
459
+  (0.9ms) COMMIT
460
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "PHP"]]
461
+  (0.6ms) BEGIN
462
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "PHP"], ["rate_to_base_currency", "0.1649"], ["created_at", "2016-07-07 09:10:33.271420"], ["updated_at", "2016-07-07 09:10:33.271420"]]
463
+  (1.2ms) COMMIT
464
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "PKR"]]
465
+  (0.6ms) BEGIN
466
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "PKR"], ["rate_to_base_currency", "0.0740910876"], ["created_at", "2016-07-07 09:10:33.481130"], ["updated_at", "2016-07-07 09:10:33.481130"]]
467
+  (1.1ms) COMMIT
468
+ ExchangeRates::Rate Load (1.3ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "PLN"]]
469
+  (1.7ms) BEGIN
470
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "PLN"], ["rate_to_base_currency", "1.9371"], ["created_at", "2016-07-07 09:10:33.566475"], ["updated_at", "2016-07-07 09:10:33.566475"]]
471
+  (1.0ms) COMMIT
472
+ ExchangeRates::Rate Load (1.3ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "PYG"]]
473
+  (0.4ms) BEGIN
474
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "PYG"], ["rate_to_base_currency", "0.0013908351"], ["created_at", "2016-07-07 09:10:33.713850"], ["updated_at", "2016-07-07 09:10:33.713850"]]
475
+  (0.9ms) COMMIT
476
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "QAR"]]
477
+  (0.5ms) BEGIN
478
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "QAR"], ["rate_to_base_currency", "2.1306"], ["created_at", "2016-07-07 09:10:33.766312"], ["updated_at", "2016-07-07 09:10:33.766312"]]
479
+  (1.0ms) COMMIT
480
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "RON"]]
481
+  (0.5ms) BEGIN
482
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "RON"], ["rate_to_base_currency", "1.9008"], ["created_at", "2016-07-07 09:10:33.833870"], ["updated_at", "2016-07-07 09:10:33.833870"]]
483
+  (0.9ms) COMMIT
484
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "RSD"]]
485
+  (0.6ms) BEGIN
486
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "RSD"], ["rate_to_base_currency", "0.0696102522"], ["created_at", "2016-07-07 09:10:33.958338"], ["updated_at", "2016-07-07 09:10:33.958338"]]
487
+  (0.9ms) COMMIT
488
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "RUB"]]
489
+  (0.5ms) BEGIN
490
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "RUB"], ["rate_to_base_currency", "0.1214"], ["created_at", "2016-07-07 09:10:34.021541"], ["updated_at", "2016-07-07 09:10:34.021541"]]
491
+  (1.3ms) COMMIT
492
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "RWF"]]
493
+  (0.4ms) BEGIN
494
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "RWF"], ["rate_to_base_currency", "0.0099497042"], ["created_at", "2016-07-07 09:10:34.149618"], ["updated_at", "2016-07-07 09:10:34.149618"]]
495
+  (0.8ms) COMMIT
496
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SAR"]]
497
+  (0.5ms) BEGIN
498
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SAR"], ["rate_to_base_currency", "2.068"], ["created_at", "2016-07-07 09:10:34.220646"], ["updated_at", "2016-07-07 09:10:34.220646"]]
499
+  (0.8ms) COMMIT
500
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SBD"]]
501
+  (0.5ms) BEGIN
502
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SBD"], ["rate_to_base_currency", "0.995"], ["created_at", "2016-07-07 09:10:34.299521"], ["updated_at", "2016-07-07 09:10:34.299521"]]
503
+  (0.8ms) COMMIT
504
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SCR"]]
505
+  (0.9ms) BEGIN
506
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SCR"], ["rate_to_base_currency", "0.5851"], ["created_at", "2016-07-07 09:10:34.388322"], ["updated_at", "2016-07-07 09:10:34.388322"]]
507
+  (1.3ms) COMMIT
508
+ ExchangeRates::Rate Load (1.2ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SDG"]]
509
+  (0.5ms) BEGIN
510
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SDG"], ["rate_to_base_currency", "1.2781"], ["created_at", "2016-07-07 09:10:34.467378"], ["updated_at", "2016-07-07 09:10:34.467378"]]
511
+  (0.7ms) COMMIT
512
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SEK"]]
513
+  (0.5ms) BEGIN
514
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SEK"], ["rate_to_base_currency", "0.9074"], ["created_at", "2016-07-07 09:10:34.694747"], ["updated_at", "2016-07-07 09:10:34.694747"]]
515
+  (0.8ms) COMMIT
516
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SGD"]]
517
+  (1.5ms) BEGIN
518
+ SQL (1.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SGD"], ["rate_to_base_currency", "5.7593"], ["created_at", "2016-07-07 09:10:34.766810"], ["updated_at", "2016-07-07 09:10:34.766810"]]
519
+  (2.0ms) COMMIT
520
+ ExchangeRates::Rate Load (1.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SHP"]]
521
+  (0.9ms) BEGIN
522
+ SQL (1.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SHP"], ["rate_to_base_currency", "10.0105"], ["created_at", "2016-07-07 09:10:34.842460"], ["updated_at", "2016-07-07 09:10:34.842460"]]
523
+  (1.7ms) COMMIT
524
+ ExchangeRates::Rate Load (1.1ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SKK"]]
525
+  (0.4ms) BEGIN
526
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SKK"], ["rate_to_base_currency", "0.3486"], ["created_at", "2016-07-07 09:10:34.932503"], ["updated_at", "2016-07-07 09:10:34.932503"]]
527
+  (0.9ms) COMMIT
528
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SLL"]]
529
+  (0.6ms) BEGIN
530
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SLL"], ["rate_to_base_currency", "0.001401135"], ["created_at", "2016-07-07 09:10:35.070431"], ["updated_at", "2016-07-07 09:10:35.070431"]]
531
+  (1.5ms) COMMIT
532
+ ExchangeRates::Rate Load (1.1ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SOS"]]
533
+  (0.6ms) BEGIN
534
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SOS"], ["rate_to_base_currency", "0.0132594165"], ["created_at", "2016-07-07 09:10:35.232736"], ["updated_at", "2016-07-07 09:10:35.232736"]]
535
+  (1.0ms) COMMIT
536
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SRD"]]
537
+  (0.5ms) BEGIN
538
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SRD"], ["rate_to_base_currency", "1.0894"], ["created_at", "2016-07-07 09:10:35.320041"], ["updated_at", "2016-07-07 09:10:35.320041"]]
539
+  (0.8ms) COMMIT
540
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SSP"]]
541
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "STD"]]
542
+  (1.5ms) BEGIN
543
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "STD"], ["rate_to_base_currency", "0.0003512432"], ["created_at", "2016-07-07 09:10:35.548401"], ["updated_at", "2016-07-07 09:10:35.548401"]]
544
+  (1.0ms) COMMIT
545
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SVC"]]
546
+  (1.3ms) BEGIN
547
+ SQL (5.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SVC"], ["rate_to_base_currency", "0.889"], ["created_at", "2016-07-07 09:10:35.635792"], ["updated_at", "2016-07-07 09:10:35.635792"]]
548
+  (1.8ms) COMMIT
549
+ ExchangeRates::Rate Load (1.5ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SYP"]]
550
+  (0.5ms) BEGIN
551
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SYP"], ["rate_to_base_currency", "0.0358672338"], ["created_at", "2016-07-07 09:10:35.773589"], ["updated_at", "2016-07-07 09:10:35.773589"]]
552
+  (0.7ms) COMMIT
553
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "SZL"]]
554
+  (0.4ms) BEGIN
555
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "SZL"], ["rate_to_base_currency", "0.5305"], ["created_at", "2016-07-07 09:10:35.828613"], ["updated_at", "2016-07-07 09:10:35.828613"]]
556
+  (0.8ms) COMMIT
557
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "THB"]]
558
+  (1.5ms) BEGIN
559
+ SQL (1.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "THB"], ["rate_to_base_currency", "0.2205"], ["created_at", "2016-07-07 09:10:35.910271"], ["updated_at", "2016-07-07 09:10:35.910271"]]
560
+  (3.2ms) COMMIT
561
+ ExchangeRates::Rate Load (1.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "TJS"]]
562
+  (0.7ms) BEGIN
563
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "TJS"], ["rate_to_base_currency", "0.986"], ["created_at", "2016-07-07 09:10:35.988567"], ["updated_at", "2016-07-07 09:10:35.988567"]]
564
+  (1.3ms) COMMIT
565
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "TMT"]]
566
+  (0.5ms) BEGIN
567
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "TMT"], ["rate_to_base_currency", "2.2166"], ["created_at", "2016-07-07 09:10:36.122601"], ["updated_at", "2016-07-07 09:10:36.122601"]]
568
+  (0.9ms) COMMIT
569
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "TND"]]
570
+  (0.4ms) BEGIN
571
+ SQL (0.5ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "TND"], ["rate_to_base_currency", "3.5294"], ["created_at", "2016-07-07 09:10:36.187999"], ["updated_at", "2016-07-07 09:10:36.187999"]]
572
+  (0.7ms) COMMIT
573
+ ExchangeRates::Rate Load (0.5ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "TOP"]]
574
+  (0.5ms) BEGIN
575
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "TOP"], ["rate_to_base_currency", "3.5602"], ["created_at", "2016-07-07 09:10:36.261347"], ["updated_at", "2016-07-07 09:10:36.261347"]]
576
+  (0.8ms) COMMIT
577
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "TRY"]]
578
+  (0.5ms) BEGIN
579
+ SQL (0.5ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "TRY"], ["rate_to_base_currency", "2.6493"], ["created_at", "2016-07-07 09:10:36.320142"], ["updated_at", "2016-07-07 09:10:36.320142"]]
580
+  (0.7ms) COMMIT
581
+ ExchangeRates::Rate Load (0.5ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "TTD"]]
582
+  (0.4ms) BEGIN
583
+ SQL (0.5ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "TTD"], ["rate_to_base_currency", "1.1694"], ["created_at", "2016-07-07 09:10:36.384311"], ["updated_at", "2016-07-07 09:10:36.384311"]]
584
+  (0.7ms) COMMIT
585
+ ExchangeRates::Rate Load (0.5ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "TWD"]]
586
+  (0.8ms) BEGIN
587
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "TWD"], ["rate_to_base_currency", "0.2401"], ["created_at", "2016-07-07 09:10:36.546685"], ["updated_at", "2016-07-07 09:10:36.546685"]]
588
+  (1.1ms) COMMIT
589
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "TZS"]]
590
+  (0.4ms) BEGIN
591
+ SQL (0.5ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "TZS"], ["rate_to_base_currency", "0.0035489057"], ["created_at", "2016-07-07 09:10:36.661134"], ["updated_at", "2016-07-07 09:10:36.661134"]]
592
+  (0.7ms) COMMIT
593
+ ExchangeRates::Rate Load (0.5ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "UAH"]]
594
+  (0.9ms) BEGIN
595
+ SQL (1.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "UAH"], ["rate_to_base_currency", "0.3128"], ["created_at", "2016-07-07 09:10:36.760925"], ["updated_at", "2016-07-07 09:10:36.760925"]]
596
+  (1.4ms) COMMIT
597
+ ExchangeRates::Rate Load (1.5ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "UGX"]]
598
+  (0.4ms) BEGIN
599
+ SQL (0.5ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "UGX"], ["rate_to_base_currency", "0.0022851502"], ["created_at", "2016-07-07 09:10:36.954642"], ["updated_at", "2016-07-07 09:10:36.954642"]]
600
+  (0.7ms) COMMIT
601
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "USD"]]
602
+  (0.5ms) BEGIN
603
+ SQL (1.0ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "USD"], ["rate_to_base_currency", "7.7581"], ["created_at", "2016-07-07 09:10:37.028266"], ["updated_at", "2016-07-07 09:10:37.028266"]]
604
+  (1.4ms) COMMIT
605
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "UYU"]]
606
+  (0.4ms) BEGIN
607
+ SQL (0.5ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "UYU"], ["rate_to_base_currency", "0.2523"], ["created_at", "2016-07-07 09:10:37.102940"], ["updated_at", "2016-07-07 09:10:37.102940"]]
608
+  (0.7ms) COMMIT
609
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "UZS"]]
610
+  (0.4ms) BEGIN
611
+ SQL (0.5ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "UZS"], ["rate_to_base_currency", "0.0026311171"], ["created_at", "2016-07-07 09:10:37.247165"], ["updated_at", "2016-07-07 09:10:37.247165"]]
612
+  (0.7ms) COMMIT
613
+ ExchangeRates::Rate Load (0.4ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "VEF"]]
614
+  (3.0ms) BEGIN
615
+ SQL (1.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "VEF"], ["rate_to_base_currency", "0.7797"], ["created_at", "2016-07-07 09:10:37.346669"], ["updated_at", "2016-07-07 09:10:37.346669"]]
616
+  (1.8ms) COMMIT
617
+ ExchangeRates::Rate Load (1.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "VND"]]
618
+  (0.5ms) BEGIN
619
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "VND"], ["rate_to_base_currency", "0.0003478166"], ["created_at", "2016-07-07 09:10:37.487214"], ["updated_at", "2016-07-07 09:10:37.487214"]]
620
+  (0.8ms) COMMIT
621
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "VUV"]]
622
+  (0.3ms) BEGIN
623
+ SQL (0.5ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "VUV"], ["rate_to_base_currency", "0.0704766335"], ["created_at", "2016-07-07 09:10:37.622754"], ["updated_at", "2016-07-07 09:10:37.622754"]]
624
+  (0.5ms) COMMIT
625
+ ExchangeRates::Rate Load (0.4ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "WST"]]
626
+  (1.4ms) BEGIN
627
+ SQL (1.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "WST"], ["rate_to_base_currency", "3.0753"], ["created_at", "2016-07-07 09:10:37.706730"], ["updated_at", "2016-07-07 09:10:37.706730"]]
628
+  (2.3ms) COMMIT
629
+ ExchangeRates::Rate Load (1.3ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "XAF"]]
630
+  (0.5ms) BEGIN
631
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "XAF"], ["rate_to_base_currency", "0.0131056274"], ["created_at", "2016-07-07 09:10:37.835700"], ["updated_at", "2016-07-07 09:10:37.835700"]]
632
+  (0.8ms) COMMIT
633
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "XAG"]]
634
+ ExchangeRates::Rate Load (0.5ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "XAU"]]
635
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "XCD"]]
636
+  (0.5ms) BEGIN
637
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "XCD"], ["rate_to_base_currency", "2.8734"], ["created_at", "2016-07-07 09:10:37.986488"], ["updated_at", "2016-07-07 09:10:37.986488"]]
638
+  (1.2ms) COMMIT
639
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "XDR"]]
640
+  (0.5ms) BEGIN
641
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "XDR"], ["rate_to_base_currency", "10.8036"], ["created_at", "2016-07-07 09:10:38.050488"], ["updated_at", "2016-07-07 09:10:38.050488"]]
642
+  (0.7ms) COMMIT
643
+ ExchangeRates::Rate Load (0.6ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "XOF"]]
644
+  (0.3ms) BEGIN
645
+ SQL (0.5ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "XOF"], ["rate_to_base_currency", "0.0131056274"], ["created_at", "2016-07-07 09:10:38.155283"], ["updated_at", "2016-07-07 09:10:38.155283"]]
646
+  (0.6ms) COMMIT
647
+ ExchangeRates::Rate Load (0.4ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "XPF"]]
648
+  (0.8ms) BEGIN
649
+ SQL (1.1ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "XPF"], ["rate_to_base_currency", "0.0720404003"], ["created_at", "2016-07-07 09:10:38.287986"], ["updated_at", "2016-07-07 09:10:38.287986"]]
650
+  (1.1ms) COMMIT
651
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "YER"]]
652
+  (0.5ms) BEGIN
653
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "YER"], ["rate_to_base_currency", "0.0310199676"], ["created_at", "2016-07-07 09:10:38.402107"], ["updated_at", "2016-07-07 09:10:38.402107"]]
654
+  (0.7ms) COMMIT
655
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ZAR"]]
656
+  (0.4ms) BEGIN
657
+ SQL (0.6ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "ZAR"], ["rate_to_base_currency", "0.5301"], ["created_at", "2016-07-07 09:10:38.465589"], ["updated_at", "2016-07-07 09:10:38.465589"]]
658
+  (0.6ms) COMMIT
659
+ ExchangeRates::Rate Load (0.5ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ZMK"]]
660
+ ExchangeRates::Rate Load (0.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ZMW"]]
661
+  (0.4ms) BEGIN
662
+ SQL (0.7ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "ZMW"], ["rate_to_base_currency", "0.8077"], ["created_at", "2016-07-07 09:10:38.616445"], ["updated_at", "2016-07-07 09:10:38.616445"]]
663
+  (1.1ms) COMMIT
664
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "BTC"]]
665
+  (0.8ms) BEGIN
666
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "BTC"], ["rate_to_base_currency", "5029.8866"], ["created_at", "2016-07-07 09:10:38.677905"], ["updated_at", "2016-07-07 09:10:38.677905"]]
667
+  (0.8ms) COMMIT
668
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "JEP"]]
669
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "GGP"]]
670
+ ExchangeRates::Rate Load (0.9ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "IMP"]]
671
+ ExchangeRates::Rate Load (1.1ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "EEK"]]
672
+ ExchangeRates::Rate Load (1.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "GHC"]]
673
+  (0.5ms) BEGIN
674
+ SQL (0.8ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "GHC"], ["rate_to_base_currency", "1.9603"], ["created_at", "2016-07-07 09:10:38.952206"], ["updated_at", "2016-07-07 09:10:38.952206"]]
675
+  (0.8ms) COMMIT
676
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "MTL"]]
677
+ ExchangeRates::Rate Load (0.7ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "TMM"]]
678
+ ExchangeRates::Rate Load (1.3ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "YEN"]]
679
+  (0.5ms) BEGIN
680
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "YEN"], ["rate_to_base_currency", "0.0768326508"], ["created_at", "2016-07-07 09:10:39.172152"], ["updated_at", "2016-07-07 09:10:39.172152"]]
681
+  (1.9ms) COMMIT
682
+ ExchangeRates::Rate Load (1.2ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ZWD"]]
683
+ ExchangeRates::Rate Load (1.8ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ZWL"]]
684
+  (0.8ms) BEGIN
685
+ SQL (0.9ms) INSERT INTO "exchange_rates" ("from_currency", "rate_to_base_currency", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["from_currency", "ZWL"], ["rate_to_base_currency", "0.0240669253"], ["created_at", "2016-07-07 09:10:39.361832"], ["updated_at", "2016-07-07 09:10:39.361832"]]
686
+  (1.1ms) COMMIT
687
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ZWN"]]
688
+ ExchangeRates::Rate Load (1.0ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 LIMIT 1 [["from_currency", "ZWR"]]
689
+ ExchangeRates::Rate Load (1.4ms) SELECT "exchange_rates".* FROM "exchange_rates" WHERE "exchange_rates"."from_currency" = $1 ORDER BY "exchange_rates"."id" ASC LIMIT 1 [["from_currency", "TWD"]]