spree_multi_currency 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. data.tar.gz.sig +3 -0
  2. data/.gitignore +5 -0
  3. data/Gemfile +11 -0
  4. data/LICENSE +0 -0
  5. data/README.markdown +196 -0
  6. data/Rakefile +28 -0
  7. data/Versionfile +9 -0
  8. data/app/controllers/spree/admin/currencies_controller.rb +11 -0
  9. data/app/controllers/spree/admin/currency_converters_controller.rb +4 -0
  10. data/app/controllers/spree/base_controller_decorator.rb +12 -0
  11. data/app/controllers/spree/currency_controller.rb +16 -0
  12. data/app/helpers/number_helper_decorator.rb +40 -0
  13. data/app/models/spree/adjustment_decorator.rb +4 -0
  14. data/app/models/spree/currency.rb +119 -0
  15. data/app/models/spree/currency_converter.rb +14 -0
  16. data/app/models/spree/line_item_decorator.rb +13 -0
  17. data/app/models/spree/order_decorator.rb +83 -0
  18. data/app/models/spree/variant_decorator.rb +22 -0
  19. data/app/overrides/add_currencies_admin_configurations_menu.rb +10 -0
  20. data/app/views/spree/admin/currencies/_form.html.erb +40 -0
  21. data/app/views/spree/admin/currencies/edit.html.erb +16 -0
  22. data/app/views/spree/admin/currencies/index.html.erb +44 -0
  23. data/app/views/spree/admin/currencies/new.html.erb +16 -0
  24. data/app/views/spree/admin/currency_converters/_form.html.erb +35 -0
  25. data/app/views/spree/admin/currency_converters/edit.html.erb +16 -0
  26. data/app/views/spree/admin/currency_converters/index.html.erb +42 -0
  27. data/app/views/spree/admin/currency_converters/new.html.erb +16 -0
  28. data/config/cucumber.yml +10 -0
  29. data/config/locales/currencies.yml +51 -0
  30. data/config/locales/en_multi_currency.yml +28 -0
  31. data/config/locales/ru_multi_currency.yml +26 -0
  32. data/config/routes.rb +8 -0
  33. data/db/migrate/20101109134351_create_currencies.rb +25 -0
  34. data/db/migrate/20101109134453_create_currency_converters.rb +15 -0
  35. data/db/sample/currencies.yml +1603 -0
  36. data/db/sample/currency_converters.yml +689 -0
  37. data/db/seeds.rb +2 -0
  38. data/features/products.feature +32 -0
  39. data/features/step_definitions/product.rb +124 -0
  40. data/features/step_definitions/ror_ringer.jpeg +0 -0
  41. data/features/support/env.rb +16 -0
  42. data/features/support/paths.rb +42 -0
  43. data/lib/generators/spree_multi_currency/install/install_generator.rb +29 -0
  44. data/lib/spree_multi_currency.rb +40 -0
  45. data/lib/spree_multi_currency/engine.rb +34 -0
  46. data/lib/tasks/spree_multi_currency.rake +99 -0
  47. data/script/rails +5 -0
  48. data/spec/changing_currency_spec.rb +18 -0
  49. data/spec/spec_helper.rb +17 -0
  50. data/spree_multi_currency.gemspec +32 -0
  51. metadata +226 -0
  52. metadata.gz.sig +1 -0
@@ -0,0 +1,28 @@
1
+ ---
2
+ en:
3
+ back_to_currencies: Back to Currencies
4
+ back_to_currency_converters: Back to Currency Converters
5
+ currency_changed: Currency changed
6
+ currency_not_found: Currency not found
7
+ currency_settings: Currency Settings
8
+ currency_converters_settings: Currency Converters
9
+ currency_description: Reference Currency
10
+ currency_converters_description: Currency Exchange Rates
11
+ add_currency_converter: Add currency exchange rate
12
+ currency_converter: Currency Converter
13
+ currency_converter_date_req: Date
14
+ currency_converter_currency: Currency
15
+ currency_converter_nominal: Nominal
16
+ currency_converter_value: Value
17
+ new_currency_converter: New Converter
18
+ editing_currency_converter: Edit Converter
19
+ add_currency: Add Currency
20
+ list_currency: List of Currencies
21
+ currency_name: Currency
22
+ currency_code: Code
23
+ currency_num_code: ISO number code
24
+ currency_char_code: ISO char code
25
+ currency_locale: Locale
26
+ currency_basic: Basic currency
27
+ editing_currency: Edit Currency
28
+ new_currency: Add Currency
@@ -0,0 +1,26 @@
1
+ ---
2
+ ru:
3
+ currency_changed: Валюта изменена
4
+ currency_not_found: Валюта не найдена
5
+ currency_settings: Валюты
6
+ currency_converters_settings: Курсы валют
7
+ currency_description: Настройка справочника валют
8
+ currency_converters_description: Настройка справочника курса валют
9
+ add_currency_converter: Добавить курс
10
+ currency_converter: Курсы валют
11
+ currency_converter_date_req: Дата
12
+ currency_converter_currency: Валюта
13
+ currency_converter_nominal: Номинал
14
+ currency_converter_value: Значение
15
+ new_currency_converter: Новый курс валюты
16
+ editing_currency_converter: Редактирование курса валюты
17
+ add_currency: Добавить валюту
18
+ list_currency: Список валют
19
+ currency_name: Валюта
20
+ currency_code: Код
21
+ currency_num_code: Цифровой код
22
+ currency_char_code: Строковый код
23
+ currency_locale: Локаль
24
+ currency_basic: Основная
25
+ editing_currency: Редактирование валюты
26
+ new_currency: Добавление валюты
data/config/routes.rb ADDED
@@ -0,0 +1,8 @@
1
+ # Put your extension routes here.
2
+ Spree::Core::Engine.routes.prepend do
3
+ match "currency/:id" => "currency#set", :as => :currency
4
+ namespace :admin do
5
+ resources :currencies
6
+ resources :currency_converters
7
+ end
8
+ end
@@ -0,0 +1,25 @@
1
+ # -*- coding: utf-8 -*-
2
+ class CreateCurrencies < ActiveRecord::Migration
3
+ def self.up
4
+ create_table :spree_currencies do |t|
5
+ t.string :num_code, :null => false
6
+ t.string :char_code, :null => false
7
+ t.string :name, :null => false
8
+ t.boolean :basic, :default => false
9
+ t.string :locale
10
+ t.timestamps
11
+ end
12
+ end
13
+
14
+ def self.down
15
+ drop_table :spree_currencies
16
+ end
17
+ end
18
+
19
+ # <Valute ID="R01235">
20
+ # <NumCode>840</NumCode>
21
+ # <CharCode>USD</CharCode>
22
+ # <Nominal>1</Nominal>
23
+ # <Name>Доллар США</Name>
24
+ # <Value>30,8612</Value>
25
+ # </Valute>
@@ -0,0 +1,15 @@
1
+ class CreateCurrencyConverters < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :spree_currency_converters do |t|
4
+ t.integer :currency_id, :null => false
5
+ t.datetime :date_req, :null => false
6
+ t.float :nominal, :null => false, :default => 1
7
+ t.float :value, :null => false
8
+ t.timestamps
9
+ end
10
+ end
11
+
12
+ def self.down
13
+ drop_table :spree_currency_converters
14
+ end
15
+ end
@@ -0,0 +1,1603 @@
1
+ ---
2
+ currencies_130:
3
+ name: Singapore dollar
4
+ created_at: 2011-04-29 09:23:38.475946
5
+ char_code: SGD
6
+ updated_at: 2011-04-29 09:23:38.475946
7
+ id: 130
8
+ basic: f
9
+ locale:
10
+ num_code: "702"
11
+ currencies_84:
12
+ name: Lebanese pound
13
+ created_at: 2011-04-29 09:23:37.613603
14
+ char_code: LBP
15
+ updated_at: 2011-04-29 09:23:37.613603
16
+ id: 84
17
+ basic: f
18
+ locale:
19
+ num_code: "422"
20
+ currencies_56:
21
+ name: Gambian dalasi
22
+ created_at: 2011-04-29 09:23:37.150576
23
+ char_code: GMD
24
+ updated_at: 2011-04-29 09:23:37.150576
25
+ id: 56
26
+ basic: f
27
+ locale:
28
+ num_code: "270"
29
+ currencies_28:
30
+ name: Congolese franc
31
+ created_at: 2011-04-29 09:23:36.690260
32
+ char_code: CDF
33
+ updated_at: 2011-04-29 09:23:36.690260
34
+ id: 28
35
+ basic: f
36
+ locale:
37
+ num_code: "976"
38
+ currencies_101:
39
+ name: Malawian kwacha
40
+ created_at: 2011-04-29 09:23:38.009599
41
+ char_code: MWK
42
+ updated_at: 2011-04-29 09:23:38.009599
43
+ id: 101
44
+ basic: f
45
+ locale:
46
+ num_code: "454"
47
+ currencies_131:
48
+ name: Saint Helena pound
49
+ created_at: 2011-04-29 09:23:38.491220
50
+ char_code: SHP
51
+ updated_at: 2011-04-29 09:23:38.491220
52
+ id: 131
53
+ basic: f
54
+ locale:
55
+ num_code: "654"
56
+ currencies_85:
57
+ name: Sri Lanka rupee
58
+ created_at: 2011-04-29 09:23:37.629388
59
+ char_code: LKR
60
+ updated_at: 2011-04-29 09:23:37.629388
61
+ id: 85
62
+ basic: f
63
+ locale:
64
+ num_code: "144"
65
+ currencies_57:
66
+ name: Guinean franc
67
+ created_at: 2011-04-29 09:23:37.165087
68
+ char_code: GNF
69
+ updated_at: 2011-04-29 09:23:37.165087
70
+ id: 57
71
+ basic: f
72
+ locale:
73
+ num_code: "324"
74
+ currencies_29:
75
+ name: WIR Euro (complementary currency)
76
+ created_at: 2011-04-29 09:23:36.705865
77
+ char_code: CHE
78
+ updated_at: 2011-04-29 09:23:36.705865
79
+ id: 29
80
+ basic: f
81
+ locale:
82
+ num_code: "947"
83
+ currencies_102:
84
+ name: Mexican peso
85
+ created_at: 2011-04-29 09:23:38.034499
86
+ char_code: MXN
87
+ updated_at: 2011-04-29 09:23:38.034499
88
+ id: 102
89
+ basic: f
90
+ locale:
91
+ num_code: "484"
92
+ currencies_160:
93
+ name: Silver (one troy ounce)
94
+ created_at: 2011-04-29 09:23:39.133670
95
+ char_code: XAG
96
+ updated_at: 2011-04-29 09:23:39.133670
97
+ id: 160
98
+ basic: f
99
+ locale:
100
+ num_code: "961"
101
+ currencies_86:
102
+ name: Liberian dollar
103
+ created_at: 2011-04-29 09:23:37.641660
104
+ char_code: LRD
105
+ updated_at: 2011-04-29 09:23:37.641660
106
+ id: 86
107
+ basic: f
108
+ locale:
109
+ num_code: "430"
110
+ currencies_58:
111
+ name: Guatemalan quetzal
112
+ created_at: 2011-04-29 09:23:37.187747
113
+ char_code: GTQ
114
+ updated_at: 2011-04-29 09:23:37.187747
115
+ id: 58
116
+ basic: f
117
+ locale:
118
+ num_code: "320"
119
+ currencies_103:
120
+ name: Mexican Unidad de Inversion (UDI) (funds code)
121
+ created_at: 2011-04-29 09:23:38.049737
122
+ char_code: MXV
123
+ updated_at: 2011-04-29 09:23:38.049737
124
+ id: 103
125
+ basic: f
126
+ locale:
127
+ num_code: "979"
128
+ currencies_161:
129
+ name: Gold (one troy ounce)
130
+ created_at: 2011-04-29 09:23:39.150487
131
+ char_code: XAU
132
+ updated_at: 2011-04-29 09:23:39.150487
133
+ id: 161
134
+ basic: f
135
+ locale:
136
+ num_code: "959"
137
+ currencies_132:
138
+ name: Sierra Leonean leone
139
+ created_at: 2011-04-29 09:23:38.507207
140
+ char_code: SLL
141
+ updated_at: 2011-04-29 09:23:38.507207
142
+ id: 132
143
+ basic: f
144
+ locale:
145
+ num_code: "694"
146
+ currencies_59:
147
+ name: Guyanese dollar
148
+ created_at: 2011-04-29 09:23:37.202289
149
+ char_code: GYD
150
+ updated_at: 2011-04-29 09:23:37.202289
151
+ id: 59
152
+ basic: f
153
+ locale:
154
+ num_code: "328"
155
+ currencies_104:
156
+ name: Malaysian ringgit
157
+ created_at: 2011-04-29 09:23:38.061784
158
+ char_code: MYR
159
+ updated_at: 2011-04-29 09:23:38.061784
160
+ id: 104
161
+ basic: f
162
+ locale:
163
+ num_code: "458"
164
+ currencies_87:
165
+ name: Lesotho loti
166
+ created_at: 2011-04-29 09:23:37.653480
167
+ char_code: LSL
168
+ updated_at: 2011-04-29 09:23:37.653480
169
+ id: 87
170
+ basic: f
171
+ locale:
172
+ num_code: "426"
173
+ currencies_162:
174
+ name: European Composite Unit (EURCO) (bond market unit)
175
+ created_at: 2011-04-29 09:23:39.167943
176
+ char_code: XBA
177
+ updated_at: 2011-04-29 09:23:39.167943
178
+ id: 162
179
+ basic: f
180
+ locale:
181
+ num_code: "955"
182
+ currencies_133:
183
+ name: Somali shilling
184
+ created_at: 2011-04-29 09:23:38.521398
185
+ char_code: SOS
186
+ updated_at: 2011-04-29 09:23:38.521398
187
+ id: 133
188
+ basic: f
189
+ locale:
190
+ num_code: "706"
191
+ currencies_105:
192
+ name: Mozambican metical
193
+ created_at: 2011-04-29 09:23:38.075234
194
+ char_code: MZN
195
+ updated_at: 2011-04-29 09:23:38.075234
196
+ id: 105
197
+ basic: f
198
+ locale:
199
+ num_code: "943"
200
+ currencies_88:
201
+ name: Lithuanian litas
202
+ created_at: 2011-04-29 09:23:37.668036
203
+ char_code: LTL
204
+ updated_at: 2011-04-29 09:23:37.668036
205
+ id: 88
206
+ basic: f
207
+ locale:
208
+ num_code: "440"
209
+ currencies_163:
210
+ name: European Monetary Unit (E.M.U.-6) (bond market unit)
211
+ created_at: 2011-04-29 09:23:39.195260
212
+ char_code: XBB
213
+ updated_at: 2011-04-29 09:23:39.195260
214
+ id: 163
215
+ basic: f
216
+ locale:
217
+ num_code: "956"
218
+ currencies_134:
219
+ name: Surinamese dollar
220
+ created_at: 2011-04-29 09:23:38.542319
221
+ char_code: SRD
222
+ updated_at: 2011-04-29 09:23:38.542319
223
+ id: 134
224
+ basic: f
225
+ locale:
226
+ num_code: "968"
227
+ currencies_106:
228
+ name: Namibian dollar
229
+ created_at: 2011-04-29 09:23:38.089667
230
+ char_code: NAD
231
+ updated_at: 2011-04-29 09:23:38.089667
232
+ id: 106
233
+ basic: f
234
+ locale:
235
+ num_code: "516"
236
+ currencies_30:
237
+ name: Swiss franc
238
+ created_at: 2011-04-29 09:23:36.721373
239
+ char_code: CHF
240
+ updated_at: 2011-04-29 09:23:36.721373
241
+ id: 30
242
+ basic: f
243
+ locale:
244
+ num_code: "756"
245
+ currencies_89:
246
+ name: Latvian lats
247
+ created_at: 2011-04-29 09:23:37.683849
248
+ char_code: LVL
249
+ updated_at: 2011-04-29 09:23:37.683849
250
+ id: 89
251
+ basic: f
252
+ locale:
253
+ num_code: "428"
254
+ currencies_164:
255
+ name: European Unit of Account 9 (E.U.A.-9) (bond market unit)
256
+ created_at: 2011-04-29 09:23:39.210068
257
+ char_code: XBC
258
+ updated_at: 2011-04-29 09:23:39.210068
259
+ id: 164
260
+ basic: f
261
+ locale:
262
+ num_code: "957"
263
+ currencies_135:
264
+ name: "S\xC3\xA3o Tom\xC3\xA9 and Pr\xC3\xADncipe dobra"
265
+ created_at: 2011-04-29 09:23:38.561763
266
+ char_code: STD
267
+ updated_at: 2011-04-29 09:23:38.561763
268
+ id: 135
269
+ basic: f
270
+ locale:
271
+ num_code: "678"
272
+ currencies_107:
273
+ name: Nigerian naira
274
+ created_at: 2011-04-29 09:23:38.103631
275
+ char_code: NGN
276
+ updated_at: 2011-04-29 09:23:38.103631
277
+ id: 107
278
+ basic: f
279
+ locale:
280
+ num_code: "566"
281
+ currencies_31:
282
+ name: WIR Franc (complementary currency)
283
+ created_at: 2011-04-29 09:23:36.734965
284
+ char_code: CHW
285
+ updated_at: 2011-04-29 09:23:36.734965
286
+ id: 31
287
+ basic: f
288
+ locale:
289
+ num_code: "948"
290
+ currencies_136:
291
+ name: Syrian pound
292
+ created_at: 2011-04-29 09:23:38.578737
293
+ char_code: SYP
294
+ updated_at: 2011-04-29 09:23:38.578737
295
+ id: 136
296
+ basic: f
297
+ locale:
298
+ num_code: "760"
299
+ currencies_60:
300
+ name: Hong Kong dollar
301
+ created_at: 2011-04-29 09:23:37.217841
302
+ char_code: HKD
303
+ updated_at: 2011-04-29 09:23:37.217841
304
+ id: 60
305
+ basic: f
306
+ locale:
307
+ num_code: "344"
308
+ currencies_108:
309
+ name: Cordoba oro
310
+ created_at: 2011-04-29 09:23:38.120318
311
+ char_code: NIO
312
+ updated_at: 2011-04-29 09:23:38.120318
313
+ id: 108
314
+ basic: f
315
+ locale:
316
+ num_code: "558"
317
+ currencies_32:
318
+ name: Unidad de Fomento (funds code)
319
+ created_at: 2011-04-29 09:23:36.748473
320
+ char_code: CLF
321
+ updated_at: 2011-04-29 09:23:36.748473
322
+ id: 32
323
+ basic: f
324
+ locale:
325
+ num_code: "990"
326
+ currencies_165:
327
+ name: European Unit of Account 17 (E.U.A.-17) (bond market unit)
328
+ created_at: 2011-04-29 09:23:39.239253
329
+ char_code: XBD
330
+ updated_at: 2011-04-29 09:23:39.239253
331
+ id: 165
332
+ basic: f
333
+ locale:
334
+ num_code: "958"
335
+ currencies_137:
336
+ name: Lilangeni
337
+ created_at: 2011-04-29 09:23:38.595533
338
+ char_code: SZL
339
+ updated_at: 2011-04-29 09:23:38.595533
340
+ id: 137
341
+ basic: f
342
+ locale:
343
+ num_code: "748"
344
+ currencies_61:
345
+ name: Honduran lempira
346
+ created_at: 2011-04-29 09:23:37.233981
347
+ char_code: HNL
348
+ updated_at: 2011-04-29 09:23:37.233981
349
+ id: 61
350
+ basic: f
351
+ locale:
352
+ num_code: "340"
353
+ currencies_109:
354
+ name: Norwegian krone
355
+ created_at: 2011-04-29 09:23:38.137341
356
+ char_code: NOK
357
+ updated_at: 2011-04-29 09:23:38.137341
358
+ id: 109
359
+ basic: f
360
+ locale:
361
+ num_code: "578"
362
+ currencies_33:
363
+ name: Chilean peso
364
+ created_at: 2011-04-29 09:23:36.765208
365
+ char_code: CLP
366
+ updated_at: 2011-04-29 09:23:36.765208
367
+ id: 33
368
+ basic: f
369
+ locale:
370
+ num_code: "152"
371
+ currencies_166:
372
+ name: East Caribbean dollar
373
+ created_at: 2011-04-29 09:23:39.250526
374
+ char_code: XCD
375
+ updated_at: 2011-04-29 09:23:39.250526
376
+ id: 166
377
+ basic: f
378
+ locale:
379
+ num_code: "951"
380
+ currencies_138:
381
+ name: Thai baht
382
+ created_at: 2011-04-29 09:23:38.612111
383
+ char_code: THB
384
+ updated_at: 2011-04-29 09:23:38.612111
385
+ id: 138
386
+ basic: f
387
+ locale:
388
+ num_code: "764"
389
+ currencies_62:
390
+ name: Croatian kuna
391
+ created_at: 2011-04-29 09:23:37.250006
392
+ char_code: HRK
393
+ updated_at: 2011-04-29 09:23:37.250006
394
+ id: 62
395
+ basic: f
396
+ locale:
397
+ num_code: "191"
398
+ currencies_34:
399
+ name: Chinese yuan
400
+ created_at: 2011-04-29 09:23:36.781471
401
+ char_code: CNY
402
+ updated_at: 2011-04-29 09:23:36.781471
403
+ id: 34
404
+ basic: f
405
+ locale:
406
+ num_code: "156"
407
+ currencies_90:
408
+ name: Libyan dinar
409
+ created_at: 2011-04-29 09:23:37.711530
410
+ char_code: LYD
411
+ updated_at: 2011-04-29 09:23:37.711530
412
+ id: 90
413
+ basic: f
414
+ locale:
415
+ num_code: "434"
416
+ currencies_167:
417
+ name: Special Drawing Rights
418
+ created_at: 2011-04-29 09:23:39.271802
419
+ char_code: XDR
420
+ updated_at: 2011-04-29 09:23:39.271802
421
+ id: 167
422
+ basic: f
423
+ locale:
424
+ num_code: "960"
425
+ currencies_139:
426
+ name: Tajikistani somoni
427
+ created_at: 2011-04-29 09:23:38.628226
428
+ char_code: TJS
429
+ updated_at: 2011-04-29 09:23:38.628226
430
+ id: 139
431
+ basic: f
432
+ locale:
433
+ num_code: "972"
434
+ currencies_63:
435
+ name: Haitian gourde
436
+ created_at: 2011-04-29 09:23:37.265776
437
+ char_code: HTG
438
+ updated_at: 2011-04-29 09:23:37.265776
439
+ id: 63
440
+ basic: f
441
+ locale:
442
+ num_code: "332"
443
+ currencies_35:
444
+ name: Colombian peso
445
+ created_at: 2011-04-29 09:23:36.798342
446
+ char_code: COP
447
+ updated_at: 2011-04-29 09:23:36.798342
448
+ id: 35
449
+ basic: f
450
+ locale:
451
+ num_code: "170"
452
+ currencies_91:
453
+ name: Moroccan dirham
454
+ created_at: 2011-04-29 09:23:37.728085
455
+ char_code: MAD
456
+ updated_at: 2011-04-29 09:23:37.728085
457
+ id: 91
458
+ basic: f
459
+ locale:
460
+ num_code: "504"
461
+ currencies_168:
462
+ name: UIC franc (special settlement currency)
463
+ created_at: 2011-04-29 09:23:39.286129
464
+ char_code: XFU
465
+ updated_at: 2011-04-29 09:23:39.286129
466
+ id: 168
467
+ basic: f
468
+ locale:
469
+ num_code: Nil
470
+ currencies_64:
471
+ name: Hungarian forint
472
+ created_at: 2011-04-29 09:23:37.281360
473
+ char_code: HUF
474
+ updated_at: 2011-04-29 09:23:37.281360
475
+ id: 64
476
+ basic: f
477
+ locale:
478
+ num_code: "348"
479
+ currencies_36:
480
+ name: Unidad de Valor Real
481
+ created_at: 2011-04-29 09:23:36.822953
482
+ char_code: COU
483
+ updated_at: 2011-04-29 09:23:36.822953
484
+ id: 36
485
+ basic: f
486
+ locale:
487
+ num_code: "970"
488
+ currencies_92:
489
+ name: Moldovan leu
490
+ created_at: 2011-04-29 09:23:37.743798
491
+ char_code: MDL
492
+ updated_at: 2011-04-29 09:23:37.743798
493
+ id: 92
494
+ basic: f
495
+ locale:
496
+ num_code: "498"
497
+ currencies_169:
498
+ name: CFA Franc BCEAO
499
+ created_at: 2011-04-29 09:23:39.314433
500
+ char_code: XOF
501
+ updated_at: 2011-04-29 09:23:39.314433
502
+ id: 169
503
+ basic: f
504
+ locale:
505
+ num_code: "952"
506
+ currencies_65:
507
+ name: Indonesian rupiah
508
+ created_at: 2011-04-29 09:23:37.297081
509
+ char_code: IDR
510
+ updated_at: 2011-04-29 09:23:37.297081
511
+ id: 65
512
+ basic: f
513
+ locale:
514
+ num_code: "360"
515
+ currencies_37:
516
+ name: Costa Rican colon
517
+ created_at: 2011-04-29 09:23:36.839277
518
+ char_code: CRC
519
+ updated_at: 2011-04-29 09:23:36.839277
520
+ id: 37
521
+ basic: f
522
+ locale:
523
+ num_code: "188"
524
+ currencies_110:
525
+ name: Nepalese rupee
526
+ created_at: 2011-04-29 09:23:38.150757
527
+ char_code: NPR
528
+ updated_at: 2011-04-29 09:23:38.150757
529
+ id: 110
530
+ basic: f
531
+ locale:
532
+ num_code: "524"
533
+ currencies_93:
534
+ name: Malagasy ariary
535
+ created_at: 2011-04-29 09:23:37.760236
536
+ char_code: MGA
537
+ updated_at: 2011-04-29 09:23:37.760236
538
+ id: 93
539
+ basic: f
540
+ locale:
541
+ num_code: "969"
542
+ currencies_140:
543
+ name: Turkmenistani manat
544
+ created_at: 2011-04-29 09:23:38.645272
545
+ char_code: TMT
546
+ updated_at: 2011-04-29 09:23:38.645272
547
+ id: 140
548
+ basic: f
549
+ locale:
550
+ num_code: "934"
551
+ currencies_38:
552
+ name: Cuban convertible peso
553
+ created_at: 2011-04-29 09:23:36.855231
554
+ char_code: CUC
555
+ updated_at: 2011-04-29 09:23:36.855231
556
+ id: 38
557
+ basic: f
558
+ locale:
559
+ num_code: "931"
560
+ currencies_111:
561
+ name: New Zealand dollar
562
+ created_at: 2011-04-29 09:23:38.163768
563
+ char_code: NZD
564
+ updated_at: 2011-04-29 09:23:38.163768
565
+ id: 111
566
+ basic: f
567
+ locale:
568
+ num_code: "554"
569
+ currencies_94:
570
+ name: Macedonian denar
571
+ created_at: 2011-04-29 09:23:37.777188
572
+ char_code: MKD
573
+ updated_at: 2011-04-29 09:23:37.777188
574
+ id: 94
575
+ basic: f
576
+ locale:
577
+ num_code: "807"
578
+ currencies_66:
579
+ name: Israeli new sheqel
580
+ created_at: 2011-04-29 09:23:37.313090
581
+ char_code: ILS
582
+ updated_at: 2011-04-29 09:23:37.313090
583
+ id: 66
584
+ basic: f
585
+ locale:
586
+ num_code: "376"
587
+ currencies_141:
588
+ name: Tunisian dinar
589
+ created_at: 2011-04-29 09:23:38.662437
590
+ char_code: TND
591
+ updated_at: 2011-04-29 09:23:38.662437
592
+ id: 141
593
+ basic: f
594
+ locale:
595
+ num_code: "788"
596
+ currencies_39:
597
+ name: Cuban peso
598
+ created_at: 2011-04-29 09:23:36.868769
599
+ char_code: CUP
600
+ updated_at: 2011-04-29 09:23:36.868769
601
+ id: 39
602
+ basic: f
603
+ locale:
604
+ num_code: "192"
605
+ currencies_112:
606
+ name: Omani rial
607
+ created_at: 2011-04-29 09:23:38.178964
608
+ char_code: OMR
609
+ updated_at: 2011-04-29 09:23:38.178964
610
+ id: 112
611
+ basic: f
612
+ locale:
613
+ num_code: "512"
614
+ currencies_95:
615
+ name: Myanma kyat
616
+ created_at: 2011-04-29 09:23:37.793860
617
+ char_code: MMK
618
+ updated_at: 2011-04-29 09:23:37.793860
619
+ id: 95
620
+ basic: f
621
+ locale:
622
+ num_code: "104"
623
+ currencies_1:
624
+ name: United Arab Emirates dirham
625
+ created_at: 2011-04-29 09:23:36.220534
626
+ char_code: AED
627
+ updated_at: 2011-04-29 09:23:36.220534
628
+ id: 1
629
+ basic: f
630
+ locale:
631
+ num_code: "784"
632
+ currencies_67:
633
+ name: Indian rupee
634
+ created_at: 2011-04-29 09:23:37.328897
635
+ char_code: INR
636
+ updated_at: 2011-04-29 09:23:37.328897
637
+ id: 67
638
+ basic: f
639
+ locale:
640
+ num_code: "356"
641
+ currencies_170:
642
+ name: Palladium (one troy ounce)
643
+ created_at: 2011-04-29 09:23:39.329236
644
+ char_code: XPD
645
+ updated_at: 2011-04-29 09:23:39.329236
646
+ id: 170
647
+ basic: f
648
+ locale:
649
+ num_code: "964"
650
+ currencies_142:
651
+ name: "Tongan pa\xCA\xBBanga"
652
+ created_at: 2011-04-29 09:23:38.679548
653
+ char_code: TOP
654
+ updated_at: 2011-04-29 09:23:38.679548
655
+ id: 142
656
+ basic: f
657
+ locale:
658
+ num_code: "776"
659
+ currencies_113:
660
+ name: Panamanian balboa
661
+ created_at: 2011-04-29 09:23:38.200097
662
+ char_code: PAB
663
+ updated_at: 2011-04-29 09:23:38.200097
664
+ id: 113
665
+ basic: f
666
+ locale:
667
+ num_code: "590"
668
+ currencies_96:
669
+ name: Mongolian tugrik
670
+ created_at: 2011-04-29 09:23:37.809635
671
+ char_code: MNT
672
+ updated_at: 2011-04-29 09:23:37.809635
673
+ id: 96
674
+ basic: f
675
+ locale:
676
+ num_code: "496"
677
+ currencies_2:
678
+ name: Afghan afghani
679
+ created_at: 2011-04-29 09:23:36.253673
680
+ char_code: AFN
681
+ updated_at: 2011-04-29 09:23:36.253673
682
+ id: 2
683
+ basic: f
684
+ locale:
685
+ num_code: "971"
686
+ currencies_68:
687
+ name: Iraqi dinar
688
+ created_at: 2011-04-29 09:23:37.345600
689
+ char_code: IQD
690
+ updated_at: 2011-04-29 09:23:37.345600
691
+ id: 68
692
+ basic: f
693
+ locale:
694
+ num_code: "368"
695
+ currencies_171:
696
+ name: CFP franc
697
+ created_at: 2011-04-29 09:23:39.342542
698
+ char_code: XPF
699
+ updated_at: 2011-04-29 09:23:39.342542
700
+ id: 171
701
+ basic: f
702
+ locale:
703
+ num_code: "953"
704
+ currencies_114:
705
+ name: Peruvian nuevo sol
706
+ created_at: 2011-04-29 09:23:38.215062
707
+ char_code: PEN
708
+ updated_at: 2011-04-29 09:23:38.215062
709
+ id: 114
710
+ basic: f
711
+ locale:
712
+ num_code: "604"
713
+ currencies_97:
714
+ name: Macanese pataca
715
+ created_at: 2011-04-29 09:23:37.826038
716
+ char_code: MOP
717
+ updated_at: 2011-04-29 09:23:37.826038
718
+ id: 97
719
+ basic: f
720
+ locale:
721
+ num_code: "446"
722
+ currencies_3:
723
+ name: Albanian lek
724
+ created_at: 2011-04-29 09:23:36.277869
725
+ char_code: ALL
726
+ updated_at: 2011-04-29 09:23:36.277869
727
+ id: 3
728
+ basic: f
729
+ locale:
730
+ num_code: 008
731
+ currencies_10:
732
+ name: Azerbaijani manat
733
+ created_at: 2011-04-29 09:23:36.385789
734
+ char_code: AZN
735
+ updated_at: 2011-04-29 09:23:36.385789
736
+ id: 10
737
+ basic: f
738
+ locale:
739
+ num_code: "944"
740
+ currencies_69:
741
+ name: Iranian rial
742
+ created_at: 2011-04-29 09:23:37.368662
743
+ char_code: IRR
744
+ updated_at: 2011-04-29 09:23:37.368662
745
+ id: 69
746
+ basic: f
747
+ locale:
748
+ num_code: "364"
749
+ currencies_172:
750
+ name: Platinum (one troy ounce)
751
+ created_at: 2011-04-29 09:23:39.360768
752
+ char_code: XPT
753
+ updated_at: 2011-04-29 09:23:39.360768
754
+ id: 172
755
+ basic: f
756
+ locale:
757
+ num_code: "962"
758
+ currencies_143:
759
+ name: Turkish lira
760
+ created_at: 2011-04-29 09:23:38.696403
761
+ char_code: TRY
762
+ updated_at: 2011-04-29 09:23:38.696403
763
+ id: 143
764
+ basic: f
765
+ locale:
766
+ num_code: "949"
767
+ currencies_115:
768
+ name: Papua New Guinean kina
769
+ created_at: 2011-04-29 09:23:38.231233
770
+ char_code: PGK
771
+ updated_at: 2011-04-29 09:23:38.231233
772
+ id: 115
773
+ basic: f
774
+ locale:
775
+ num_code: "598"
776
+ currencies_98:
777
+ name: Mauritanian ouguiya
778
+ created_at: 2011-04-29 09:23:37.963398
779
+ char_code: MRO
780
+ updated_at: 2011-04-29 09:23:37.963398
781
+ id: 98
782
+ basic: f
783
+ locale:
784
+ num_code: "478"
785
+ currencies_4:
786
+ name: Armenian dram
787
+ created_at: 2011-04-29 09:23:36.293084
788
+ char_code: AMD
789
+ updated_at: 2011-04-29 09:23:36.293084
790
+ id: 4
791
+ basic: f
792
+ locale:
793
+ num_code: "051"
794
+ currencies_11:
795
+ name: Bosnia and Herzegovina convertible mark
796
+ created_at: 2011-04-29 09:23:36.400050
797
+ char_code: BAM
798
+ updated_at: 2011-04-29 09:23:36.400050
799
+ id: 11
800
+ basic: f
801
+ locale:
802
+ num_code: "977"
803
+ currencies_173:
804
+ name: Code reserved for testing purposes
805
+ created_at: 2011-04-29 09:23:39.386866
806
+ char_code: XTS
807
+ updated_at: 2011-04-29 09:23:39.386866
808
+ id: 173
809
+ basic: f
810
+ locale:
811
+ num_code: "963"
812
+ currencies_144:
813
+ name: Trinidad and Tobago dollar
814
+ created_at: 2011-04-29 09:23:38.711330
815
+ char_code: TTD
816
+ updated_at: 2011-04-29 09:23:38.711330
817
+ id: 144
818
+ basic: f
819
+ locale:
820
+ num_code: "780"
821
+ currencies_116:
822
+ name: Philippine peso
823
+ created_at: 2011-04-29 09:23:38.246909
824
+ char_code: PHP
825
+ updated_at: 2011-04-29 09:23:38.246909
826
+ id: 116
827
+ basic: f
828
+ locale:
829
+ num_code: "608"
830
+ currencies_40:
831
+ name: Cape Verde escudo
832
+ created_at: 2011-04-29 09:23:36.885500
833
+ char_code: CVE
834
+ updated_at: 2011-04-29 09:23:36.885500
835
+ id: 40
836
+ basic: f
837
+ locale:
838
+ num_code: "132"
839
+ currencies_99:
840
+ name: Mauritian rupee
841
+ created_at: 2011-04-29 09:23:37.976582
842
+ char_code: MUR
843
+ updated_at: 2011-04-29 09:23:37.976582
844
+ id: 99
845
+ basic: f
846
+ locale:
847
+ num_code: "480"
848
+ currencies_5:
849
+ name: Netherlands Antillean guilder
850
+ created_at: 2011-04-29 09:23:36.309192
851
+ char_code: ANG
852
+ updated_at: 2011-04-29 09:23:36.309192
853
+ id: 5
854
+ basic: f
855
+ locale:
856
+ num_code: "532"
857
+ currencies_12:
858
+ name: Barbados dollar
859
+ created_at: 2011-04-29 09:23:36.416283
860
+ char_code: BBD
861
+ updated_at: 2011-04-29 09:23:36.416283
862
+ id: 12
863
+ basic: f
864
+ locale:
865
+ num_code: "052"
866
+ currencies_174:
867
+ name: No currency
868
+ created_at: 2011-04-29 09:23:39.404435
869
+ char_code: XXX
870
+ updated_at: 2011-04-29 09:23:39.404435
871
+ id: 174
872
+ basic: f
873
+ locale:
874
+ num_code: "999"
875
+ currencies_145:
876
+ name: New Taiwan dollar
877
+ created_at: 2011-04-29 09:23:38.727977
878
+ char_code: TWD
879
+ updated_at: 2011-04-29 09:23:38.727977
880
+ id: 145
881
+ basic: f
882
+ locale:
883
+ num_code: "901"
884
+ currencies_117:
885
+ name: Pakistani rupee
886
+ created_at: 2011-04-29 09:23:38.262852
887
+ char_code: PKR
888
+ updated_at: 2011-04-29 09:23:38.262852
889
+ id: 117
890
+ basic: f
891
+ locale:
892
+ num_code: "586"
893
+ currencies_41:
894
+ name: Czech koruna
895
+ created_at: 2011-04-29 09:23:36.902768
896
+ char_code: CZK
897
+ updated_at: 2011-04-29 09:23:36.902768
898
+ id: 41
899
+ basic: f
900
+ locale:
901
+ num_code: "203"
902
+ currencies_6:
903
+ name: Angolan kwanza
904
+ created_at: 2011-04-29 09:23:36.325569
905
+ char_code: AOA
906
+ updated_at: 2011-04-29 09:23:36.325569
907
+ id: 6
908
+ basic: f
909
+ locale:
910
+ num_code: "973"
911
+ currencies_13:
912
+ name: Bangladeshi taka
913
+ created_at: 2011-04-29 09:23:36.433549
914
+ char_code: BDT
915
+ updated_at: 2011-04-29 09:23:36.433549
916
+ id: 13
917
+ basic: f
918
+ locale:
919
+ num_code: "050"
920
+ currencies_175:
921
+ name: Yemeni rial
922
+ created_at: 2011-04-29 09:23:39.439401
923
+ char_code: YER
924
+ updated_at: 2011-04-29 09:23:39.439401
925
+ id: 175
926
+ basic: f
927
+ locale:
928
+ num_code: "886"
929
+ currencies_146:
930
+ name: Tanzanian shilling
931
+ created_at: 2011-04-29 09:23:38.749488
932
+ char_code: TZS
933
+ updated_at: 2011-04-29 09:23:38.749488
934
+ id: 146
935
+ basic: f
936
+ locale:
937
+ num_code: "834"
938
+ currencies_118:
939
+ name: "Polish z\xC5\x82oty"
940
+ created_at: 2011-04-29 09:23:38.279551
941
+ char_code: PLN
942
+ updated_at: 2011-04-29 09:23:38.279551
943
+ id: 118
944
+ basic: f
945
+ locale:
946
+ num_code: "985"
947
+ currencies_42:
948
+ name: Djiboutian franc
949
+ created_at: 2011-04-29 09:23:36.919264
950
+ char_code: DJF
951
+ updated_at: 2011-04-29 09:23:36.919264
952
+ id: 42
953
+ basic: f
954
+ locale:
955
+ num_code: "262"
956
+ currencies_7:
957
+ name: Argentine peso
958
+ created_at: 2011-04-29 09:23:36.339890
959
+ char_code: ARS
960
+ updated_at: 2011-04-29 09:23:36.339890
961
+ id: 7
962
+ basic: f
963
+ locale:
964
+ num_code: "032"
965
+ currencies_14:
966
+ name: Bulgarian lev
967
+ created_at: 2011-04-29 09:23:36.457941
968
+ char_code: BGN
969
+ updated_at: 2011-04-29 09:23:36.457941
970
+ id: 14
971
+ basic: f
972
+ locale:
973
+ num_code: "975"
974
+ currencies_70:
975
+ name: "Icelandic kr\xC3\xB3na"
976
+ created_at: 2011-04-29 09:23:37.382316
977
+ char_code: ISK
978
+ updated_at: 2011-04-29 09:23:37.382316
979
+ id: 70
980
+ basic: f
981
+ locale:
982
+ num_code: "352"
983
+ currencies_147:
984
+ name: Ukrainian hryvnia
985
+ created_at: 2011-04-29 09:23:38.763526
986
+ char_code: UAH
987
+ updated_at: 2011-04-29 09:23:38.763526
988
+ id: 147
989
+ basic: f
990
+ locale:
991
+ num_code: "980"
992
+ currencies_119:
993
+ name: "Paraguayan guaran\xC3\xAD"
994
+ created_at: 2011-04-29 09:23:38.296627
995
+ char_code: PYG
996
+ updated_at: 2011-04-29 09:23:38.296627
997
+ id: 119
998
+ basic: f
999
+ locale:
1000
+ num_code: "600"
1001
+ currencies_43:
1002
+ name: Danish krone
1003
+ created_at: 2011-04-29 09:23:36.936210
1004
+ char_code: DKK
1005
+ updated_at: 2011-04-29 09:23:36.936210
1006
+ id: 43
1007
+ basic: f
1008
+ locale:
1009
+ num_code: "208"
1010
+ currencies_8:
1011
+ name: Australian dollar
1012
+ created_at: 2011-04-29 09:23:36.353800
1013
+ char_code: AUD
1014
+ updated_at: 2011-04-29 09:23:36.353800
1015
+ id: 8
1016
+ basic: f
1017
+ locale:
1018
+ num_code: "036"
1019
+ currencies_15:
1020
+ name: Bahraini dinar
1021
+ created_at: 2011-04-29 09:23:36.472317
1022
+ char_code: BHD
1023
+ updated_at: 2011-04-29 09:23:36.472317
1024
+ id: 15
1025
+ basic: f
1026
+ locale:
1027
+ num_code: 048
1028
+ currencies_71:
1029
+ name: Jamaican dollar
1030
+ created_at: 2011-04-29 09:23:37.398927
1031
+ char_code: JMD
1032
+ updated_at: 2011-04-29 09:23:37.398927
1033
+ id: 71
1034
+ basic: f
1035
+ locale:
1036
+ num_code: "388"
1037
+ currencies_176:
1038
+ name: South African rand
1039
+ created_at: 2011-04-29 09:23:39.461584
1040
+ char_code: ZAR
1041
+ updated_at: 2011-04-29 09:23:39.461584
1042
+ id: 176
1043
+ basic: f
1044
+ locale:
1045
+ num_code: "710"
1046
+ currencies_148:
1047
+ name: Ugandan shilling
1048
+ created_at: 2011-04-29 09:23:38.780552
1049
+ char_code: UGX
1050
+ updated_at: 2011-04-29 09:23:38.780552
1051
+ id: 148
1052
+ basic: f
1053
+ locale:
1054
+ num_code: "800"
1055
+ currencies_44:
1056
+ name: Dominican peso
1057
+ created_at: 2011-04-29 09:23:36.950666
1058
+ char_code: DOP
1059
+ updated_at: 2011-04-29 09:23:36.950666
1060
+ id: 44
1061
+ basic: f
1062
+ locale:
1063
+ num_code: "214"
1064
+ currencies_9:
1065
+ name: Aruban florin
1066
+ created_at: 2011-04-29 09:23:36.370181
1067
+ char_code: AWG
1068
+ updated_at: 2011-04-29 09:23:36.370181
1069
+ id: 9
1070
+ basic: f
1071
+ locale:
1072
+ num_code: "533"
1073
+ currencies_16:
1074
+ name: Burundian franc
1075
+ created_at: 2011-04-29 09:23:36.489093
1076
+ char_code: BIF
1077
+ updated_at: 2011-04-29 09:23:36.489093
1078
+ id: 16
1079
+ basic: f
1080
+ locale:
1081
+ num_code: "108"
1082
+ currencies_72:
1083
+ name: Jordanian dinar
1084
+ created_at: 2011-04-29 09:23:37.415190
1085
+ char_code: JOD
1086
+ updated_at: 2011-04-29 09:23:37.415190
1087
+ id: 72
1088
+ basic: f
1089
+ locale:
1090
+ num_code: "400"
1091
+ currencies_177:
1092
+ name: Zambian kwacha
1093
+ created_at: 2011-04-29 09:23:39.478933
1094
+ char_code: ZMK
1095
+ updated_at: 2011-04-29 09:23:39.478933
1096
+ id: 177
1097
+ basic: f
1098
+ locale:
1099
+ num_code: "894"
1100
+ currencies_149:
1101
+ name: United States dollar
1102
+ created_at: 2011-04-29 09:23:38.804944
1103
+ char_code: USD
1104
+ updated_at: 2011-04-29 09:31:05.245228
1105
+ id: 149
1106
+ basic: t
1107
+ locale: en
1108
+ num_code: "840"
1109
+ currencies_17:
1110
+ name: Bermudian dollar (customarily known as Bermuda dollar)
1111
+ created_at: 2011-04-29 09:23:36.506325
1112
+ char_code: BMD
1113
+ updated_at: 2011-04-29 09:23:36.506325
1114
+ id: 17
1115
+ basic: f
1116
+ locale:
1117
+ num_code: "060"
1118
+ currencies_73:
1119
+ name: Japanese yen
1120
+ created_at: 2011-04-29 09:23:37.431058
1121
+ char_code: JPY
1122
+ updated_at: 2011-04-29 09:23:37.431058
1123
+ id: 73
1124
+ basic: f
1125
+ locale:
1126
+ num_code: "392"
1127
+ currencies_45:
1128
+ name: Algerian dinar
1129
+ created_at: 2011-04-29 09:23:36.967234
1130
+ char_code: DZD
1131
+ updated_at: 2011-04-29 09:23:36.967234
1132
+ id: 45
1133
+ basic: f
1134
+ locale:
1135
+ num_code: "012"
1136
+ currencies_178:
1137
+ name: Zimbabwe dollar
1138
+ created_at: 2011-04-29 09:23:39.493765
1139
+ char_code: ZWL
1140
+ updated_at: 2011-04-29 09:23:39.493765
1141
+ id: 178
1142
+ basic: f
1143
+ locale:
1144
+ num_code: "932"
1145
+ currencies_120:
1146
+ name: Qatari rial
1147
+ created_at: 2011-04-29 09:23:38.314072
1148
+ char_code: QAR
1149
+ updated_at: 2011-04-29 09:23:38.314072
1150
+ id: 120
1151
+ basic: f
1152
+ locale:
1153
+ num_code: "634"
1154
+ currencies_18:
1155
+ name: Brunei dollar
1156
+ created_at: 2011-04-29 09:23:36.519992
1157
+ char_code: BND
1158
+ updated_at: 2011-04-29 09:23:36.519992
1159
+ id: 18
1160
+ basic: f
1161
+ locale:
1162
+ num_code: 096
1163
+ currencies_74:
1164
+ name: Kenyan shilling
1165
+ created_at: 2011-04-29 09:23:37.446954
1166
+ char_code: KES
1167
+ updated_at: 2011-04-29 09:23:37.446954
1168
+ id: 74
1169
+ basic: f
1170
+ locale:
1171
+ num_code: "404"
1172
+ currencies_46:
1173
+ name: Egyptian pound
1174
+ created_at: 2011-04-29 09:23:36.992699
1175
+ char_code: EGP
1176
+ updated_at: 2011-04-29 09:23:36.992699
1177
+ id: 46
1178
+ basic: f
1179
+ locale:
1180
+ num_code: "818"
1181
+ currencies_19:
1182
+ name: Boliviano
1183
+ created_at: 2011-04-29 09:23:36.536254
1184
+ char_code: BOB
1185
+ updated_at: 2011-04-29 09:23:36.536254
1186
+ id: 19
1187
+ basic: f
1188
+ locale:
1189
+ num_code: 068
1190
+ currencies_75:
1191
+ name: Kyrgyzstani som
1192
+ created_at: 2011-04-29 09:23:37.463358
1193
+ char_code: KGS
1194
+ updated_at: 2011-04-29 09:23:37.463358
1195
+ id: 75
1196
+ basic: f
1197
+ locale:
1198
+ num_code: "417"
1199
+ currencies_47:
1200
+ name: Eritrean nakfa
1201
+ created_at: 2011-04-29 09:23:37.011172
1202
+ char_code: ERN
1203
+ updated_at: 2011-04-29 09:23:37.011172
1204
+ id: 47
1205
+ basic: f
1206
+ locale:
1207
+ num_code: "232"
1208
+ currencies_150:
1209
+ name: United States dollar (next day) (funds code)
1210
+ created_at: 2011-04-29 09:23:38.818956
1211
+ char_code: USN
1212
+ updated_at: 2011-04-29 09:23:38.818956
1213
+ id: 150
1214
+ basic: f
1215
+ locale:
1216
+ num_code: "997"
1217
+ currencies_121:
1218
+ name: Romanian new leu
1219
+ created_at: 2011-04-29 09:23:38.331218
1220
+ char_code: RON
1221
+ updated_at: 2011-04-29 09:23:38.331218
1222
+ id: 121
1223
+ basic: f
1224
+ locale:
1225
+ num_code: "946"
1226
+ currencies_76:
1227
+ name: Cambodian riel
1228
+ created_at: 2011-04-29 09:23:37.480269
1229
+ char_code: KHR
1230
+ updated_at: 2011-04-29 09:23:37.480269
1231
+ id: 76
1232
+ basic: f
1233
+ locale:
1234
+ num_code: "116"
1235
+ currencies_48:
1236
+ name: Ethiopian birr
1237
+ created_at: 2011-04-29 09:23:37.027236
1238
+ char_code: ETB
1239
+ updated_at: 2011-04-29 09:23:37.027236
1240
+ id: 48
1241
+ basic: f
1242
+ locale:
1243
+ num_code: "230"
1244
+ currencies_151:
1245
+ name: United States dollar (same day) (funds code) (one source[who?] claims it is no longer used, but it is still on the ISO 4217-MA list)
1246
+ created_at: 2011-04-29 09:23:38.870967
1247
+ char_code: USS
1248
+ updated_at: 2011-04-29 09:23:38.870967
1249
+ id: 151
1250
+ basic: f
1251
+ locale:
1252
+ num_code: "998"
1253
+ currencies_122:
1254
+ name: Serbian dinar
1255
+ created_at: 2011-04-29 09:23:38.347172
1256
+ char_code: RSD
1257
+ updated_at: 2011-04-29 09:23:38.347172
1258
+ id: 122
1259
+ basic: f
1260
+ locale:
1261
+ num_code: "941"
1262
+ currencies_77:
1263
+ name: Comoro franc
1264
+ created_at: 2011-04-29 09:23:37.495520
1265
+ char_code: KMF
1266
+ updated_at: 2011-04-29 09:23:37.495520
1267
+ id: 77
1268
+ basic: f
1269
+ locale:
1270
+ num_code: "174"
1271
+ currencies_49:
1272
+ name: Euro
1273
+ created_at: 2011-04-29 09:23:37.044014
1274
+ char_code: EUR
1275
+ updated_at: 2011-04-29 09:23:37.044014
1276
+ id: 49
1277
+ basic: f
1278
+ locale:
1279
+ num_code: "978"
1280
+ currencies_152:
1281
+ name: Uruguay Peso en Unidades Indexadas (URUIURUI) (funds code)
1282
+ created_at: 2011-04-29 09:23:38.893716
1283
+ char_code: UYI
1284
+ updated_at: 2011-04-29 09:23:38.893716
1285
+ id: 152
1286
+ basic: f
1287
+ locale:
1288
+ num_code: "940"
1289
+ currencies_123:
1290
+ name: Russian rouble
1291
+ created_at: 2011-04-29 09:23:38.363144
1292
+ char_code: RUB
1293
+ updated_at: 2011-04-29 09:31:54.895206
1294
+ id: 123
1295
+ basic: f
1296
+ locale: ru
1297
+ num_code: "643"
1298
+ currencies_78:
1299
+ name: North Korean won
1300
+ created_at: 2011-04-29 09:23:37.510967
1301
+ char_code: KPW
1302
+ updated_at: 2011-04-29 09:23:37.510967
1303
+ id: 78
1304
+ basic: f
1305
+ locale:
1306
+ num_code: "408"
1307
+ currencies_153:
1308
+ name: Uruguayan peso
1309
+ created_at: 2011-04-29 09:23:38.911636
1310
+ char_code: UYU
1311
+ updated_at: 2011-04-29 09:23:38.911636
1312
+ id: 153
1313
+ basic: f
1314
+ locale:
1315
+ num_code: "858"
1316
+ currencies_124:
1317
+ name: Rwandan franc
1318
+ created_at: 2011-04-29 09:23:38.386805
1319
+ char_code: RWF
1320
+ updated_at: 2011-04-29 09:23:38.386805
1321
+ id: 124
1322
+ basic: f
1323
+ locale:
1324
+ num_code: "646"
1325
+ currencies_20:
1326
+ name: Bolivian Mvdol (funds code)
1327
+ created_at: 2011-04-29 09:23:36.551841
1328
+ char_code: BOV
1329
+ updated_at: 2011-04-29 09:23:36.551841
1330
+ id: 20
1331
+ basic: f
1332
+ locale:
1333
+ num_code: "984"
1334
+ currencies_79:
1335
+ name: South Korean won
1336
+ created_at: 2011-04-29 09:23:37.527144
1337
+ char_code: KRW
1338
+ updated_at: 2011-04-29 09:23:37.527144
1339
+ id: 79
1340
+ basic: f
1341
+ locale:
1342
+ num_code: "410"
1343
+ currencies_125:
1344
+ name: Saudi riyal
1345
+ created_at: 2011-04-29 09:23:38.400152
1346
+ char_code: SAR
1347
+ updated_at: 2011-04-29 09:23:38.400152
1348
+ id: 125
1349
+ basic: f
1350
+ locale:
1351
+ num_code: "682"
1352
+ currencies_21:
1353
+ name: Brazilian real
1354
+ created_at: 2011-04-29 09:23:36.568198
1355
+ char_code: BRL
1356
+ updated_at: 2011-04-29 09:23:36.568198
1357
+ id: 21
1358
+ basic: f
1359
+ locale:
1360
+ num_code: "986"
1361
+ currencies_154:
1362
+ name: Uzbekistan som
1363
+ created_at: 2011-04-29 09:23:38.947854
1364
+ char_code: UZS
1365
+ updated_at: 2011-04-29 09:23:38.947854
1366
+ id: 154
1367
+ basic: f
1368
+ locale:
1369
+ num_code: "860"
1370
+ currencies_126:
1371
+ name: Solomon Islands dollar
1372
+ created_at: 2011-04-29 09:23:38.416063
1373
+ char_code: SBD
1374
+ updated_at: 2011-04-29 09:23:38.416063
1375
+ id: 126
1376
+ basic: f
1377
+ locale:
1378
+ num_code: 090
1379
+ currencies_22:
1380
+ name: Bahamian dollar
1381
+ created_at: 2011-04-29 09:23:36.584166
1382
+ char_code: BSD
1383
+ updated_at: 2011-04-29 09:23:36.584166
1384
+ id: 22
1385
+ basic: f
1386
+ locale:
1387
+ num_code: "044"
1388
+ currencies_50:
1389
+ name: Fiji dollar
1390
+ created_at: 2011-04-29 09:23:37.061236
1391
+ char_code: FJD
1392
+ updated_at: 2011-04-29 09:23:37.061236
1393
+ id: 50
1394
+ basic: f
1395
+ locale:
1396
+ num_code: "242"
1397
+ currencies_155:
1398
+ name: "Venezuelan bol\xC3\xADvar fuerte"
1399
+ created_at: 2011-04-29 09:23:39.045628
1400
+ char_code: VEF
1401
+ updated_at: 2011-04-29 09:23:39.045628
1402
+ id: 155
1403
+ basic: f
1404
+ locale:
1405
+ num_code: "937"
1406
+ currencies_127:
1407
+ name: Seychelles rupee
1408
+ created_at: 2011-04-29 09:23:38.431753
1409
+ char_code: SCR
1410
+ updated_at: 2011-04-29 09:23:38.431753
1411
+ id: 127
1412
+ basic: f
1413
+ locale:
1414
+ num_code: "690"
1415
+ currencies_23:
1416
+ name: Bhutanese ngultrum
1417
+ created_at: 2011-04-29 09:23:36.600468
1418
+ char_code: BTN
1419
+ updated_at: 2011-04-29 09:23:36.600468
1420
+ id: 23
1421
+ basic: f
1422
+ locale:
1423
+ num_code: "064"
1424
+ currencies_51:
1425
+ name: Falkland Islands pound
1426
+ created_at: 2011-04-29 09:23:37.077003
1427
+ char_code: FKP
1428
+ updated_at: 2011-04-29 09:23:37.077003
1429
+ id: 51
1430
+ basic: f
1431
+ locale:
1432
+ num_code: "238"
1433
+ currencies_156:
1434
+ name: "Vietnamese \xC4\x91\xE1\xBB\x93ng"
1435
+ created_at: 2011-04-29 09:23:39.062808
1436
+ char_code: VND
1437
+ updated_at: 2011-04-29 09:23:39.062808
1438
+ id: 156
1439
+ basic: f
1440
+ locale:
1441
+ num_code: "704"
1442
+ currencies_128:
1443
+ name: Sudanese pound
1444
+ created_at: 2011-04-29 09:23:38.445575
1445
+ char_code: SDG
1446
+ updated_at: 2011-04-29 09:23:38.445575
1447
+ id: 128
1448
+ basic: f
1449
+ locale:
1450
+ num_code: "938"
1451
+ currencies_80:
1452
+ name: Kuwaiti dinar
1453
+ created_at: 2011-04-29 09:23:37.551871
1454
+ char_code: KWD
1455
+ updated_at: 2011-04-29 09:23:37.551871
1456
+ id: 80
1457
+ basic: f
1458
+ locale:
1459
+ num_code: "414"
1460
+ currencies_52:
1461
+ name: Pound sterling
1462
+ created_at: 2011-04-29 09:23:37.093200
1463
+ char_code: GBP
1464
+ updated_at: 2011-04-29 09:23:37.093200
1465
+ id: 52
1466
+ basic: f
1467
+ locale:
1468
+ num_code: "826"
1469
+ currencies_24:
1470
+ name: Botswana pula
1471
+ created_at: 2011-04-29 09:23:36.618134
1472
+ char_code: BWP
1473
+ updated_at: 2011-04-29 09:23:36.618134
1474
+ id: 24
1475
+ basic: f
1476
+ locale:
1477
+ num_code: "072"
1478
+ currencies_157:
1479
+ name: Vanuatu vatu
1480
+ created_at: 2011-04-29 09:23:39.080968
1481
+ char_code: VUV
1482
+ updated_at: 2011-04-29 09:23:39.080968
1483
+ id: 157
1484
+ basic: f
1485
+ locale:
1486
+ num_code: "548"
1487
+ currencies_129:
1488
+ name: Swedish krona/kronor
1489
+ created_at: 2011-04-29 09:23:38.460038
1490
+ char_code: SEK
1491
+ updated_at: 2011-04-29 09:23:38.460038
1492
+ id: 129
1493
+ basic: f
1494
+ locale:
1495
+ num_code: "752"
1496
+ currencies_81:
1497
+ name: Cayman Islands dollar
1498
+ created_at: 2011-04-29 09:23:37.568851
1499
+ char_code: KYD
1500
+ updated_at: 2011-04-29 09:23:37.568851
1501
+ id: 81
1502
+ basic: f
1503
+ locale:
1504
+ num_code: "136"
1505
+ currencies_53:
1506
+ name: Georgian lari
1507
+ created_at: 2011-04-29 09:23:37.108997
1508
+ char_code: GEL
1509
+ updated_at: 2011-04-29 09:23:37.108997
1510
+ id: 53
1511
+ basic: f
1512
+ locale:
1513
+ num_code: "981"
1514
+ currencies_25:
1515
+ name: Belarusian ruble
1516
+ created_at: 2011-04-29 09:23:36.641953
1517
+ char_code: BYR
1518
+ updated_at: 2011-04-29 09:23:36.641953
1519
+ id: 25
1520
+ basic: f
1521
+ locale:
1522
+ num_code: "974"
1523
+ currencies_158:
1524
+ name: Samoan tala
1525
+ created_at: 2011-04-29 09:23:39.098484
1526
+ char_code: WST
1527
+ updated_at: 2011-04-29 09:23:39.098484
1528
+ id: 158
1529
+ basic: f
1530
+ locale:
1531
+ num_code: "882"
1532
+ currencies_82:
1533
+ name: Kazakhstani tenge
1534
+ created_at: 2011-04-29 09:23:37.582324
1535
+ char_code: KZT
1536
+ updated_at: 2011-04-29 09:23:37.582324
1537
+ id: 82
1538
+ basic: f
1539
+ locale:
1540
+ num_code: "398"
1541
+ currencies_54:
1542
+ name: Ghanaian cedi
1543
+ created_at: 2011-04-29 09:23:37.121674
1544
+ char_code: GHS
1545
+ updated_at: 2011-04-29 09:23:37.121674
1546
+ id: 54
1547
+ basic: f
1548
+ locale:
1549
+ num_code: "936"
1550
+ currencies_26:
1551
+ name: Belize dollar
1552
+ created_at: 2011-04-29 09:23:36.658136
1553
+ char_code: BZD
1554
+ updated_at: 2011-04-29 09:23:36.658136
1555
+ id: 26
1556
+ basic: f
1557
+ locale:
1558
+ num_code: 084
1559
+ currencies_159:
1560
+ name: CFA franc BEAC
1561
+ created_at: 2011-04-29 09:23:39.116275
1562
+ char_code: XAF
1563
+ updated_at: 2011-04-29 09:23:39.116275
1564
+ id: 159
1565
+ basic: f
1566
+ locale:
1567
+ num_code: "950"
1568
+ currencies_83:
1569
+ name: Lao kip
1570
+ created_at: 2011-04-29 09:23:37.598030
1571
+ char_code: LAK
1572
+ updated_at: 2011-04-29 09:23:37.598030
1573
+ id: 83
1574
+ basic: f
1575
+ locale:
1576
+ num_code: "418"
1577
+ currencies_55:
1578
+ name: Gibraltar pound
1579
+ created_at: 2011-04-29 09:23:37.133980
1580
+ char_code: GIP
1581
+ updated_at: 2011-04-29 09:23:37.133980
1582
+ id: 55
1583
+ basic: f
1584
+ locale:
1585
+ num_code: "292"
1586
+ currencies_27:
1587
+ name: Canadian dollar
1588
+ created_at: 2011-04-29 09:23:36.674247
1589
+ char_code: CAD
1590
+ updated_at: 2011-04-29 09:23:36.674247
1591
+ id: 27
1592
+ basic: f
1593
+ locale:
1594
+ num_code: "124"
1595
+ currencies_100:
1596
+ name: Maldivian rufiyaa
1597
+ created_at: 2011-04-29 09:23:37.992164
1598
+ char_code: MVR
1599
+ updated_at: 2011-04-29 09:23:37.992164
1600
+ id: 100
1601
+ basic: f
1602
+ locale:
1603
+ num_code: "462"