ibandit 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/TODO.md ADDED
@@ -0,0 +1,5 @@
1
+ - Build IBANs from national banking details for each SEPA country
2
+ - GREECE: TODO
3
+ - MALTA: TODO (maybe - not sure if local details are still used in Malta).
4
+
5
+ - Specs for IBANSTRUCTURE parser
@@ -0,0 +1,101 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Script for parsing the IBAN registry (IBAN_Registry.txt) and IBAN structures
4
+ # (IBANSTRUCTURE.xml) files from SWIFT.
5
+ #
6
+ require 'csv'
7
+ require 'yaml'
8
+ require 'sax-machine'
9
+
10
+ class Country
11
+ include SAXMachine
12
+ element 'iban_country_code', as: :country_code
13
+ element 'bank_identifier_position', as: :bank_code_position
14
+ element 'bank_identifier_length', as: :bank_code_length
15
+ element 'branch_identifier_position', as: :branch_code_position
16
+ element 'branch_identifier_length', as: :branch_code_length
17
+ element 'account_number_position', as: :account_number_position
18
+ element 'account_number_length', as: :account_number_length
19
+ element 'iban_total_length', as: :total_length
20
+ element 'iban_national_id_length', as: :iban_national_id_length
21
+ end
22
+
23
+ class Report
24
+ include SAXMachine
25
+ elements 'ibanstructure', as: :countries, class: Country
26
+ end
27
+
28
+ def get_iban_structures(iban_structures_file, iban_registry_file)
29
+ bban_formats = get_bban_formats(iban_registry_file)
30
+
31
+ report = Report.parse(iban_structures_file)
32
+ report.countries.each_with_object({}) do |country, hash|
33
+ hash[country.country_code] = {
34
+ bank_code_position: country.bank_code_position.to_i,
35
+ bank_code_length: country.bank_code_length.to_i,
36
+ branch_code_position: country.branch_code_position.to_i,
37
+ branch_code_length: country.branch_code_length.to_i,
38
+ account_number_position: country.account_number_position.to_i,
39
+ account_number_length: country.account_number_length.to_i,
40
+ total_length: country.total_length.to_i,
41
+ iban_national_id_length: country.iban_national_id_length.to_i,
42
+ bban_format: bban_formats[country.country_code]
43
+ }
44
+ end
45
+ end
46
+
47
+ def get_bban_formats(iban_registry_file)
48
+ iban_registry_file.each_with_object({}) do |line, hash|
49
+ bban_structure = line['BBAN structure '].strip
50
+ country_code = line['Country code as defined in ISO 3166'].strip
51
+ hash[country_code] = convert_swift_convention(bban_structure)
52
+ end
53
+ end
54
+
55
+ def convert_swift_convention(swift_string)
56
+ swift_string.gsub(/(\d+)!([nac])/, '\2{\1}').
57
+ gsub('n', '\d').
58
+ gsub('a', '[A-Z]').
59
+ gsub('c', '[A-Z0-9]')
60
+ end
61
+
62
+ def merge_structures(structures, additions)
63
+ additions.each_pair do |key, value|
64
+ structures[key].merge!(value) if structures.include?(key)
65
+ end
66
+
67
+ structures
68
+ end
69
+
70
+ # Only parse the files if this file is run as an executable (not required in,
71
+ # as it is in the specs)
72
+ if __FILE__ == $PROGRAM_NAME
73
+ iban_registry_file = CSV.read(
74
+ File.expand_path('../../data/IBAN_Registry.txt', __FILE__),
75
+ col_sep: "\t",
76
+ headers: true
77
+ )
78
+
79
+ iban_structures_file = File.read(
80
+ File.expand_path('../../data/IBANSTRUCTURE.xml', __FILE__)
81
+ )
82
+
83
+ iban_structures = get_iban_structures(
84
+ iban_structures_file,
85
+ iban_registry_file
86
+ )
87
+
88
+ structure_additions = YAML.load_file(
89
+ File.expand_path('../../data/structure_additions.yml', __FILE__)
90
+ )
91
+
92
+ complete_structures = merge_structures(iban_structures, structure_additions)
93
+ output_file_path = File.expand_path(
94
+ '../../lib/ibandit/structures.yml',
95
+ __FILE__
96
+ )
97
+
98
+ File.open(output_file_path, 'w') do |f|
99
+ f.write(complete_structures.to_yaml)
100
+ end
101
+ end
@@ -0,0 +1,19 @@
1
+ machine:
2
+ ruby:
3
+ version: 2.0.0-p353
4
+
5
+ test:
6
+ pre:
7
+ - bundle exec rubocop:
8
+ parallel: true
9
+ files:
10
+ - config.ru
11
+ - Rakefile
12
+ - app/**/*.rb
13
+ - lib/**/*.rb
14
+ - spec/**/*.rb
15
+ override:
16
+ - bundle exec rspec:
17
+ parallel: true
18
+ files:
19
+ - spec/**/*_spec.rb
@@ -0,0 +1,1184 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <dataexport filedate="20141128" filetype="full" product="ibanstructure">
3
+ <ibanstructure>
4
+ <tag>IS</tag>
5
+ <modification_flag>U</modification_flag>
6
+ <iban_country_code>AD</iban_country_code>
7
+ <iban_country_code_position>1</iban_country_code_position>
8
+ <iban_country_code_length>2</iban_country_code_length>
9
+ <iban_check_digits_position>3</iban_check_digits_position>
10
+ <iban_check_digits_length>2</iban_check_digits_length>
11
+ <bank_identifier_position>5</bank_identifier_position>
12
+ <bank_identifier_length>4</bank_identifier_length>
13
+ <branch_identifier_position>9</branch_identifier_position>
14
+ <branch_identifier_length>4</branch_identifier_length>
15
+ <iban_national_id_length>8</iban_national_id_length>
16
+ <account_number_position>13</account_number_position>
17
+ <account_number_length>12</account_number_length>
18
+ <iban_total_length>24</iban_total_length>
19
+ <sepa>N</sepa>
20
+ </ibanstructure>
21
+ <ibanstructure>
22
+ <tag>IS</tag>
23
+ <modification_flag>U</modification_flag>
24
+ <iban_country_code>AE</iban_country_code>
25
+ <iban_country_code_position>1</iban_country_code_position>
26
+ <iban_country_code_length>2</iban_country_code_length>
27
+ <iban_check_digits_position>3</iban_check_digits_position>
28
+ <iban_check_digits_length>2</iban_check_digits_length>
29
+ <bank_identifier_position>5</bank_identifier_position>
30
+ <bank_identifier_length>3</bank_identifier_length>
31
+ <branch_identifier_length>0</branch_identifier_length>
32
+ <iban_national_id_length>3</iban_national_id_length>
33
+ <account_number_position>8</account_number_position>
34
+ <account_number_length>16</account_number_length>
35
+ <iban_total_length>23</iban_total_length>
36
+ <sepa>N</sepa>
37
+ </ibanstructure>
38
+ <ibanstructure>
39
+ <tag>IS</tag>
40
+ <modification_flag>U</modification_flag>
41
+ <iban_country_code>AL</iban_country_code>
42
+ <iban_country_code_position>1</iban_country_code_position>
43
+ <iban_country_code_length>2</iban_country_code_length>
44
+ <iban_check_digits_position>3</iban_check_digits_position>
45
+ <iban_check_digits_length>2</iban_check_digits_length>
46
+ <bank_identifier_position>5</bank_identifier_position>
47
+ <bank_identifier_length>3</bank_identifier_length>
48
+ <branch_identifier_position>8</branch_identifier_position>
49
+ <branch_identifier_length>5</branch_identifier_length>
50
+ <iban_national_id_length>8</iban_national_id_length>
51
+ <account_number_position>13</account_number_position>
52
+ <account_number_length>16</account_number_length>
53
+ <iban_total_length>28</iban_total_length>
54
+ <sepa>N</sepa>
55
+ </ibanstructure>
56
+ <ibanstructure>
57
+ <tag>IS</tag>
58
+ <modification_flag>U</modification_flag>
59
+ <iban_country_code>AT</iban_country_code>
60
+ <iban_country_code_position>1</iban_country_code_position>
61
+ <iban_country_code_length>2</iban_country_code_length>
62
+ <iban_check_digits_position>3</iban_check_digits_position>
63
+ <iban_check_digits_length>2</iban_check_digits_length>
64
+ <bank_identifier_position>5</bank_identifier_position>
65
+ <bank_identifier_length>5</bank_identifier_length>
66
+ <branch_identifier_length>0</branch_identifier_length>
67
+ <iban_national_id_length>5</iban_national_id_length>
68
+ <account_number_position>10</account_number_position>
69
+ <account_number_length>11</account_number_length>
70
+ <iban_total_length>20</iban_total_length>
71
+ <sepa>Y</sepa>
72
+ </ibanstructure>
73
+ <ibanstructure>
74
+ <tag>IS</tag>
75
+ <modification_flag>U</modification_flag>
76
+ <iban_country_code>AZ</iban_country_code>
77
+ <iban_country_code_position>1</iban_country_code_position>
78
+ <iban_country_code_length>2</iban_country_code_length>
79
+ <iban_check_digits_position>3</iban_check_digits_position>
80
+ <iban_check_digits_length>2</iban_check_digits_length>
81
+ <bank_identifier_position>5</bank_identifier_position>
82
+ <bank_identifier_length>4</bank_identifier_length>
83
+ <branch_identifier_length>0</branch_identifier_length>
84
+ <iban_national_id_length>4</iban_national_id_length>
85
+ <account_number_position>9</account_number_position>
86
+ <account_number_length>20</account_number_length>
87
+ <iban_total_length>28</iban_total_length>
88
+ <sepa>N</sepa>
89
+ </ibanstructure>
90
+ <ibanstructure>
91
+ <tag>IS</tag>
92
+ <modification_flag>U</modification_flag>
93
+ <iban_country_code>BA</iban_country_code>
94
+ <iban_country_code_position>1</iban_country_code_position>
95
+ <iban_country_code_length>2</iban_country_code_length>
96
+ <iban_check_digits_position>3</iban_check_digits_position>
97
+ <iban_check_digits_length>2</iban_check_digits_length>
98
+ <bank_identifier_position>5</bank_identifier_position>
99
+ <bank_identifier_length>3</bank_identifier_length>
100
+ <branch_identifier_position>8</branch_identifier_position>
101
+ <branch_identifier_length>3</branch_identifier_length>
102
+ <iban_national_id_length>3</iban_national_id_length>
103
+ <account_number_position>11</account_number_position>
104
+ <account_number_length>10</account_number_length>
105
+ <iban_total_length>20</iban_total_length>
106
+ <sepa>N</sepa>
107
+ </ibanstructure>
108
+ <ibanstructure>
109
+ <tag>IS</tag>
110
+ <modification_flag>U</modification_flag>
111
+ <iban_country_code>BE</iban_country_code>
112
+ <iban_country_code_position>1</iban_country_code_position>
113
+ <iban_country_code_length>2</iban_country_code_length>
114
+ <iban_check_digits_position>3</iban_check_digits_position>
115
+ <iban_check_digits_length>2</iban_check_digits_length>
116
+ <bank_identifier_position>5</bank_identifier_position>
117
+ <bank_identifier_length>3</bank_identifier_length>
118
+ <branch_identifier_length>0</branch_identifier_length>
119
+ <iban_national_id_length>3</iban_national_id_length>
120
+ <account_number_position>5</account_number_position>
121
+ <account_number_length>12</account_number_length>
122
+ <iban_total_length>16</iban_total_length>
123
+ <sepa>Y</sepa>
124
+ </ibanstructure>
125
+ <ibanstructure>
126
+ <tag>IS</tag>
127
+ <modification_flag>U</modification_flag>
128
+ <iban_country_code>BG</iban_country_code>
129
+ <iban_country_code_position>1</iban_country_code_position>
130
+ <iban_country_code_length>2</iban_country_code_length>
131
+ <iban_check_digits_position>3</iban_check_digits_position>
132
+ <iban_check_digits_length>2</iban_check_digits_length>
133
+ <bank_identifier_position>5</bank_identifier_position>
134
+ <bank_identifier_length>4</bank_identifier_length>
135
+ <branch_identifier_position>9</branch_identifier_position>
136
+ <branch_identifier_length>4</branch_identifier_length>
137
+ <iban_national_id_length>8</iban_national_id_length>
138
+ <account_number_position>13</account_number_position>
139
+ <account_number_length>10</account_number_length>
140
+ <iban_total_length>22</iban_total_length>
141
+ <sepa>Y</sepa>
142
+ </ibanstructure>
143
+ <ibanstructure>
144
+ <tag>IS</tag>
145
+ <modification_flag>U</modification_flag>
146
+ <iban_country_code>BH</iban_country_code>
147
+ <iban_country_code_position>1</iban_country_code_position>
148
+ <iban_country_code_length>2</iban_country_code_length>
149
+ <iban_check_digits_position>3</iban_check_digits_position>
150
+ <iban_check_digits_length>2</iban_check_digits_length>
151
+ <bank_identifier_position>5</bank_identifier_position>
152
+ <bank_identifier_length>4</bank_identifier_length>
153
+ <branch_identifier_length>0</branch_identifier_length>
154
+ <iban_national_id_length>4</iban_national_id_length>
155
+ <account_number_position>9</account_number_position>
156
+ <account_number_length>14</account_number_length>
157
+ <iban_total_length>22</iban_total_length>
158
+ <sepa>N</sepa>
159
+ </ibanstructure>
160
+ <ibanstructure>
161
+ <tag>IS</tag>
162
+ <modification_flag>U</modification_flag>
163
+ <iban_country_code>BR</iban_country_code>
164
+ <iban_country_code_position>1</iban_country_code_position>
165
+ <iban_country_code_length>2</iban_country_code_length>
166
+ <iban_check_digits_position>3</iban_check_digits_position>
167
+ <iban_check_digits_length>2</iban_check_digits_length>
168
+ <bank_identifier_position>5</bank_identifier_position>
169
+ <bank_identifier_length>8</bank_identifier_length>
170
+ <branch_identifier_position>13</branch_identifier_position>
171
+ <branch_identifier_length>5</branch_identifier_length>
172
+ <iban_national_id_length>8</iban_national_id_length>
173
+ <account_number_position>18</account_number_position>
174
+ <account_number_length>12</account_number_length>
175
+ <iban_total_length>29</iban_total_length>
176
+ <sepa>N</sepa>
177
+ </ibanstructure>
178
+ <ibanstructure>
179
+ <tag>IS</tag>
180
+ <modification_flag>U</modification_flag>
181
+ <iban_country_code>CH</iban_country_code>
182
+ <iban_country_code_position>1</iban_country_code_position>
183
+ <iban_country_code_length>2</iban_country_code_length>
184
+ <iban_check_digits_position>3</iban_check_digits_position>
185
+ <iban_check_digits_length>2</iban_check_digits_length>
186
+ <bank_identifier_position>5</bank_identifier_position>
187
+ <bank_identifier_length>5</bank_identifier_length>
188
+ <branch_identifier_length>0</branch_identifier_length>
189
+ <iban_national_id_length>5</iban_national_id_length>
190
+ <account_number_position>10</account_number_position>
191
+ <account_number_length>12</account_number_length>
192
+ <iban_total_length>21</iban_total_length>
193
+ <sepa>Y</sepa>
194
+ </ibanstructure>
195
+ <ibanstructure>
196
+ <tag>IS</tag>
197
+ <modification_flag>U</modification_flag>
198
+ <iban_country_code>CR</iban_country_code>
199
+ <iban_country_code_position>1</iban_country_code_position>
200
+ <iban_country_code_length>2</iban_country_code_length>
201
+ <iban_check_digits_position>3</iban_check_digits_position>
202
+ <iban_check_digits_length>2</iban_check_digits_length>
203
+ <bank_identifier_position>5</bank_identifier_position>
204
+ <bank_identifier_length>3</bank_identifier_length>
205
+ <branch_identifier_length>0</branch_identifier_length>
206
+ <iban_national_id_length>3</iban_national_id_length>
207
+ <account_number_position>8</account_number_position>
208
+ <account_number_length>14</account_number_length>
209
+ <iban_total_length>21</iban_total_length>
210
+ <sepa>N</sepa>
211
+ </ibanstructure>
212
+ <ibanstructure>
213
+ <tag>IS</tag>
214
+ <modification_flag>U</modification_flag>
215
+ <iban_country_code>CY</iban_country_code>
216
+ <iban_country_code_position>1</iban_country_code_position>
217
+ <iban_country_code_length>2</iban_country_code_length>
218
+ <iban_check_digits_position>3</iban_check_digits_position>
219
+ <iban_check_digits_length>2</iban_check_digits_length>
220
+ <bank_identifier_position>5</bank_identifier_position>
221
+ <bank_identifier_length>3</bank_identifier_length>
222
+ <branch_identifier_position>8</branch_identifier_position>
223
+ <branch_identifier_length>5</branch_identifier_length>
224
+ <iban_national_id_length>8</iban_national_id_length>
225
+ <account_number_position>13</account_number_position>
226
+ <account_number_length>16</account_number_length>
227
+ <iban_total_length>28</iban_total_length>
228
+ <sepa>Y</sepa>
229
+ </ibanstructure>
230
+ <ibanstructure>
231
+ <tag>IS</tag>
232
+ <modification_flag>U</modification_flag>
233
+ <iban_country_code>CZ</iban_country_code>
234
+ <iban_country_code_position>1</iban_country_code_position>
235
+ <iban_country_code_length>2</iban_country_code_length>
236
+ <iban_check_digits_position>3</iban_check_digits_position>
237
+ <iban_check_digits_length>2</iban_check_digits_length>
238
+ <bank_identifier_position>5</bank_identifier_position>
239
+ <bank_identifier_length>4</bank_identifier_length>
240
+ <branch_identifier_length>0</branch_identifier_length>
241
+ <iban_national_id_length>4</iban_national_id_length>
242
+ <account_number_position>9</account_number_position>
243
+ <account_number_length>16</account_number_length>
244
+ <iban_total_length>24</iban_total_length>
245
+ <sepa>Y</sepa>
246
+ </ibanstructure>
247
+ <ibanstructure>
248
+ <tag>IS</tag>
249
+ <modification_flag>U</modification_flag>
250
+ <iban_country_code>DE</iban_country_code>
251
+ <iban_country_code_position>1</iban_country_code_position>
252
+ <iban_country_code_length>2</iban_country_code_length>
253
+ <iban_check_digits_position>3</iban_check_digits_position>
254
+ <iban_check_digits_length>2</iban_check_digits_length>
255
+ <bank_identifier_position>5</bank_identifier_position>
256
+ <bank_identifier_length>8</bank_identifier_length>
257
+ <branch_identifier_length>0</branch_identifier_length>
258
+ <iban_national_id_length>8</iban_national_id_length>
259
+ <account_number_position>13</account_number_position>
260
+ <account_number_length>10</account_number_length>
261
+ <iban_total_length>22</iban_total_length>
262
+ <sepa>Y</sepa>
263
+ </ibanstructure>
264
+ <ibanstructure>
265
+ <tag>IS</tag>
266
+ <modification_flag>U</modification_flag>
267
+ <iban_country_code>DK</iban_country_code>
268
+ <iban_country_code_position>1</iban_country_code_position>
269
+ <iban_country_code_length>2</iban_country_code_length>
270
+ <iban_check_digits_position>3</iban_check_digits_position>
271
+ <iban_check_digits_length>2</iban_check_digits_length>
272
+ <bank_identifier_position>5</bank_identifier_position>
273
+ <bank_identifier_length>4</bank_identifier_length>
274
+ <branch_identifier_length>0</branch_identifier_length>
275
+ <iban_national_id_length>4</iban_national_id_length>
276
+ <account_number_position>9</account_number_position>
277
+ <account_number_length>10</account_number_length>
278
+ <iban_total_length>18</iban_total_length>
279
+ <sepa>Y</sepa>
280
+ </ibanstructure>
281
+ <ibanstructure>
282
+ <tag>IS</tag>
283
+ <modification_flag>U</modification_flag>
284
+ <iban_country_code>DO</iban_country_code>
285
+ <iban_country_code_position>1</iban_country_code_position>
286
+ <iban_country_code_length>2</iban_country_code_length>
287
+ <iban_check_digits_position>3</iban_check_digits_position>
288
+ <iban_check_digits_length>2</iban_check_digits_length>
289
+ <bank_identifier_position>5</bank_identifier_position>
290
+ <bank_identifier_length>4</bank_identifier_length>
291
+ <branch_identifier_length>0</branch_identifier_length>
292
+ <iban_national_id_length>4</iban_national_id_length>
293
+ <account_number_position>9</account_number_position>
294
+ <account_number_length>20</account_number_length>
295
+ <iban_total_length>28</iban_total_length>
296
+ <sepa>N</sepa>
297
+ </ibanstructure>
298
+ <ibanstructure>
299
+ <tag>IS</tag>
300
+ <modification_flag>U</modification_flag>
301
+ <iban_country_code>EE</iban_country_code>
302
+ <iban_country_code_position>1</iban_country_code_position>
303
+ <iban_country_code_length>2</iban_country_code_length>
304
+ <iban_check_digits_position>3</iban_check_digits_position>
305
+ <iban_check_digits_length>2</iban_check_digits_length>
306
+ <bank_identifier_position>5</bank_identifier_position>
307
+ <bank_identifier_length>2</bank_identifier_length>
308
+ <branch_identifier_length>0</branch_identifier_length>
309
+ <iban_national_id_length>2</iban_national_id_length>
310
+ <account_number_position>7</account_number_position>
311
+ <account_number_length>14</account_number_length>
312
+ <iban_total_length>20</iban_total_length>
313
+ <sepa>Y</sepa>
314
+ </ibanstructure>
315
+ <ibanstructure>
316
+ <tag>IS</tag>
317
+ <modification_flag>U</modification_flag>
318
+ <iban_country_code>ES</iban_country_code>
319
+ <iban_country_code_position>1</iban_country_code_position>
320
+ <iban_country_code_length>2</iban_country_code_length>
321
+ <iban_check_digits_position>3</iban_check_digits_position>
322
+ <iban_check_digits_length>2</iban_check_digits_length>
323
+ <bank_identifier_position>5</bank_identifier_position>
324
+ <bank_identifier_length>4</bank_identifier_length>
325
+ <branch_identifier_position>9</branch_identifier_position>
326
+ <branch_identifier_length>4</branch_identifier_length>
327
+ <iban_national_id_length>8</iban_national_id_length>
328
+ <account_number_position>13</account_number_position>
329
+ <account_number_length>12</account_number_length>
330
+ <iban_total_length>24</iban_total_length>
331
+ <sepa>Y</sepa>
332
+ </ibanstructure>
333
+ <ibanstructure>
334
+ <tag>IS</tag>
335
+ <modification_flag>U</modification_flag>
336
+ <iban_country_code>FI</iban_country_code>
337
+ <iban_country_code_position>1</iban_country_code_position>
338
+ <iban_country_code_length>2</iban_country_code_length>
339
+ <iban_check_digits_position>3</iban_check_digits_position>
340
+ <iban_check_digits_length>2</iban_check_digits_length>
341
+ <bank_identifier_position>5</bank_identifier_position>
342
+ <bank_identifier_length>6</bank_identifier_length>
343
+ <branch_identifier_length>0</branch_identifier_length>
344
+ <iban_national_id_length>3</iban_national_id_length>
345
+ <account_number_position>11</account_number_position>
346
+ <account_number_length>8</account_number_length>
347
+ <iban_total_length>18</iban_total_length>
348
+ <sepa>Y</sepa>
349
+ </ibanstructure>
350
+ <ibanstructure>
351
+ <tag>IS</tag>
352
+ <modification_flag>U</modification_flag>
353
+ <iban_country_code>FO</iban_country_code>
354
+ <iban_country_code_position>1</iban_country_code_position>
355
+ <iban_country_code_length>2</iban_country_code_length>
356
+ <iban_check_digits_position>3</iban_check_digits_position>
357
+ <iban_check_digits_length>2</iban_check_digits_length>
358
+ <bank_identifier_position>5</bank_identifier_position>
359
+ <bank_identifier_length>4</bank_identifier_length>
360
+ <branch_identifier_length>0</branch_identifier_length>
361
+ <iban_national_id_length>4</iban_national_id_length>
362
+ <account_number_position>9</account_number_position>
363
+ <account_number_length>10</account_number_length>
364
+ <iban_total_length>18</iban_total_length>
365
+ <sepa>N</sepa>
366
+ </ibanstructure>
367
+ <ibanstructure>
368
+ <tag>IS</tag>
369
+ <modification_flag>U</modification_flag>
370
+ <iban_country_code>FR</iban_country_code>
371
+ <iban_country_code_position>1</iban_country_code_position>
372
+ <iban_country_code_length>2</iban_country_code_length>
373
+ <iban_check_digits_position>3</iban_check_digits_position>
374
+ <iban_check_digits_length>2</iban_check_digits_length>
375
+ <bank_identifier_position>5</bank_identifier_position>
376
+ <bank_identifier_length>5</bank_identifier_length>
377
+ <branch_identifier_position>10</branch_identifier_position>
378
+ <branch_identifier_length>5</branch_identifier_length>
379
+ <iban_national_id_length>10</iban_national_id_length>
380
+ <account_number_position>15</account_number_position>
381
+ <account_number_length>13</account_number_length>
382
+ <iban_total_length>27</iban_total_length>
383
+ <sepa>Y</sepa>
384
+ </ibanstructure>
385
+ <ibanstructure>
386
+ <tag>IS</tag>
387
+ <modification_flag>U</modification_flag>
388
+ <iban_country_code>GB</iban_country_code>
389
+ <iban_country_code_position>1</iban_country_code_position>
390
+ <iban_country_code_length>2</iban_country_code_length>
391
+ <iban_check_digits_position>3</iban_check_digits_position>
392
+ <iban_check_digits_length>2</iban_check_digits_length>
393
+ <bank_identifier_position>5</bank_identifier_position>
394
+ <bank_identifier_length>4</bank_identifier_length>
395
+ <branch_identifier_position>9</branch_identifier_position>
396
+ <branch_identifier_length>6</branch_identifier_length>
397
+ <iban_national_id_length>10</iban_national_id_length>
398
+ <account_number_position>15</account_number_position>
399
+ <account_number_length>8</account_number_length>
400
+ <iban_total_length>22</iban_total_length>
401
+ <sepa>Y</sepa>
402
+ </ibanstructure>
403
+ <ibanstructure>
404
+ <tag>IS</tag>
405
+ <modification_flag>U</modification_flag>
406
+ <iban_country_code>GE</iban_country_code>
407
+ <iban_country_code_position>1</iban_country_code_position>
408
+ <iban_country_code_length>2</iban_country_code_length>
409
+ <iban_check_digits_position>3</iban_check_digits_position>
410
+ <iban_check_digits_length>2</iban_check_digits_length>
411
+ <bank_identifier_position>5</bank_identifier_position>
412
+ <bank_identifier_length>2</bank_identifier_length>
413
+ <branch_identifier_length>0</branch_identifier_length>
414
+ <iban_national_id_length>2</iban_national_id_length>
415
+ <account_number_position>7</account_number_position>
416
+ <account_number_length>16</account_number_length>
417
+ <iban_total_length>22</iban_total_length>
418
+ <sepa>N</sepa>
419
+ </ibanstructure>
420
+ <ibanstructure>
421
+ <tag>IS</tag>
422
+ <modification_flag>U</modification_flag>
423
+ <iban_country_code>GI</iban_country_code>
424
+ <iban_country_code_position>1</iban_country_code_position>
425
+ <iban_country_code_length>2</iban_country_code_length>
426
+ <iban_check_digits_position>3</iban_check_digits_position>
427
+ <iban_check_digits_length>2</iban_check_digits_length>
428
+ <bank_identifier_position>5</bank_identifier_position>
429
+ <bank_identifier_length>4</bank_identifier_length>
430
+ <branch_identifier_length>0</branch_identifier_length>
431
+ <iban_national_id_length>4</iban_national_id_length>
432
+ <account_number_position>9</account_number_position>
433
+ <account_number_length>15</account_number_length>
434
+ <iban_total_length>23</iban_total_length>
435
+ <sepa>Y</sepa>
436
+ </ibanstructure>
437
+ <ibanstructure>
438
+ <tag>IS</tag>
439
+ <modification_flag>U</modification_flag>
440
+ <iban_country_code>GL</iban_country_code>
441
+ <iban_country_code_position>1</iban_country_code_position>
442
+ <iban_country_code_length>2</iban_country_code_length>
443
+ <iban_check_digits_position>3</iban_check_digits_position>
444
+ <iban_check_digits_length>2</iban_check_digits_length>
445
+ <bank_identifier_position>5</bank_identifier_position>
446
+ <bank_identifier_length>4</bank_identifier_length>
447
+ <branch_identifier_length>0</branch_identifier_length>
448
+ <iban_national_id_length>4</iban_national_id_length>
449
+ <account_number_position>9</account_number_position>
450
+ <account_number_length>10</account_number_length>
451
+ <iban_total_length>18</iban_total_length>
452
+ <sepa>N</sepa>
453
+ </ibanstructure>
454
+ <ibanstructure>
455
+ <tag>IS</tag>
456
+ <modification_flag>U</modification_flag>
457
+ <iban_country_code>GR</iban_country_code>
458
+ <iban_country_code_position>1</iban_country_code_position>
459
+ <iban_country_code_length>2</iban_country_code_length>
460
+ <iban_check_digits_position>3</iban_check_digits_position>
461
+ <iban_check_digits_length>2</iban_check_digits_length>
462
+ <bank_identifier_position>5</bank_identifier_position>
463
+ <bank_identifier_length>3</bank_identifier_length>
464
+ <branch_identifier_position>8</branch_identifier_position>
465
+ <branch_identifier_length>4</branch_identifier_length>
466
+ <iban_national_id_length>3</iban_national_id_length>
467
+ <account_number_position>12</account_number_position>
468
+ <account_number_length>16</account_number_length>
469
+ <iban_total_length>27</iban_total_length>
470
+ <sepa>Y</sepa>
471
+ </ibanstructure>
472
+ <ibanstructure>
473
+ <tag>IS</tag>
474
+ <modification_flag>U</modification_flag>
475
+ <iban_country_code>GT</iban_country_code>
476
+ <iban_country_code_position>1</iban_country_code_position>
477
+ <iban_country_code_length>2</iban_country_code_length>
478
+ <iban_check_digits_position>3</iban_check_digits_position>
479
+ <iban_check_digits_length>2</iban_check_digits_length>
480
+ <bank_identifier_position>5</bank_identifier_position>
481
+ <bank_identifier_length>4</bank_identifier_length>
482
+ <branch_identifier_length>0</branch_identifier_length>
483
+ <iban_national_id_length>4</iban_national_id_length>
484
+ <account_number_position>9</account_number_position>
485
+ <account_number_length>20</account_number_length>
486
+ <iban_total_length>28</iban_total_length>
487
+ <sepa>N</sepa>
488
+ <optional_commence_date>20140701</optional_commence_date>
489
+ </ibanstructure>
490
+ <ibanstructure>
491
+ <tag>IS</tag>
492
+ <modification_flag>U</modification_flag>
493
+ <iban_country_code>HR</iban_country_code>
494
+ <iban_country_code_position>1</iban_country_code_position>
495
+ <iban_country_code_length>2</iban_country_code_length>
496
+ <iban_check_digits_position>3</iban_check_digits_position>
497
+ <iban_check_digits_length>2</iban_check_digits_length>
498
+ <bank_identifier_position>5</bank_identifier_position>
499
+ <bank_identifier_length>7</bank_identifier_length>
500
+ <branch_identifier_length>0</branch_identifier_length>
501
+ <iban_national_id_length>7</iban_national_id_length>
502
+ <account_number_position>12</account_number_position>
503
+ <account_number_length>10</account_number_length>
504
+ <iban_total_length>21</iban_total_length>
505
+ <sepa>Y</sepa>
506
+ </ibanstructure>
507
+ <ibanstructure>
508
+ <tag>IS</tag>
509
+ <modification_flag>U</modification_flag>
510
+ <iban_country_code>HU</iban_country_code>
511
+ <iban_country_code_position>1</iban_country_code_position>
512
+ <iban_country_code_length>2</iban_country_code_length>
513
+ <iban_check_digits_position>3</iban_check_digits_position>
514
+ <iban_check_digits_length>2</iban_check_digits_length>
515
+ <bank_identifier_position>5</bank_identifier_position>
516
+ <bank_identifier_length>3</bank_identifier_length>
517
+ <branch_identifier_position>8</branch_identifier_position>
518
+ <branch_identifier_length>4</branch_identifier_length>
519
+ <iban_national_id_length>7</iban_national_id_length>
520
+ <account_number_position>12</account_number_position>
521
+ <account_number_length>17</account_number_length>
522
+ <iban_total_length>28</iban_total_length>
523
+ <sepa>Y</sepa>
524
+ </ibanstructure>
525
+ <ibanstructure>
526
+ <tag>IS</tag>
527
+ <modification_flag>U</modification_flag>
528
+ <iban_country_code>IE</iban_country_code>
529
+ <iban_country_code_position>1</iban_country_code_position>
530
+ <iban_country_code_length>2</iban_country_code_length>
531
+ <iban_check_digits_position>3</iban_check_digits_position>
532
+ <iban_check_digits_length>2</iban_check_digits_length>
533
+ <bank_identifier_position>5</bank_identifier_position>
534
+ <bank_identifier_length>4</bank_identifier_length>
535
+ <branch_identifier_position>9</branch_identifier_position>
536
+ <branch_identifier_length>6</branch_identifier_length>
537
+ <iban_national_id_length>10</iban_national_id_length>
538
+ <account_number_position>15</account_number_position>
539
+ <account_number_length>8</account_number_length>
540
+ <iban_total_length>22</iban_total_length>
541
+ <sepa>Y</sepa>
542
+ </ibanstructure>
543
+ <ibanstructure>
544
+ <tag>IS</tag>
545
+ <modification_flag>U</modification_flag>
546
+ <iban_country_code>IL</iban_country_code>
547
+ <iban_country_code_position>1</iban_country_code_position>
548
+ <iban_country_code_length>2</iban_country_code_length>
549
+ <iban_check_digits_position>3</iban_check_digits_position>
550
+ <iban_check_digits_length>2</iban_check_digits_length>
551
+ <bank_identifier_position>5</bank_identifier_position>
552
+ <bank_identifier_length>3</bank_identifier_length>
553
+ <branch_identifier_position>8</branch_identifier_position>
554
+ <branch_identifier_length>3</branch_identifier_length>
555
+ <iban_national_id_length>6</iban_national_id_length>
556
+ <account_number_position>11</account_number_position>
557
+ <account_number_length>13</account_number_length>
558
+ <iban_total_length>23</iban_total_length>
559
+ <sepa>N</sepa>
560
+ </ibanstructure>
561
+ <ibanstructure>
562
+ <tag>IS</tag>
563
+ <modification_flag>U</modification_flag>
564
+ <iban_country_code>IS</iban_country_code>
565
+ <iban_country_code_position>1</iban_country_code_position>
566
+ <iban_country_code_length>2</iban_country_code_length>
567
+ <iban_check_digits_position>3</iban_check_digits_position>
568
+ <iban_check_digits_length>2</iban_check_digits_length>
569
+ <bank_identifier_position>5</bank_identifier_position>
570
+ <bank_identifier_length>4</bank_identifier_length>
571
+ <branch_identifier_length>0</branch_identifier_length>
572
+ <iban_national_id_length>4</iban_national_id_length>
573
+ <account_number_position>9</account_number_position>
574
+ <account_number_length>18</account_number_length>
575
+ <iban_total_length>26</iban_total_length>
576
+ <sepa>Y</sepa>
577
+ </ibanstructure>
578
+ <ibanstructure>
579
+ <tag>IS</tag>
580
+ <modification_flag>U</modification_flag>
581
+ <iban_country_code>IT</iban_country_code>
582
+ <iban_country_code_position>1</iban_country_code_position>
583
+ <iban_country_code_length>2</iban_country_code_length>
584
+ <iban_check_digits_position>3</iban_check_digits_position>
585
+ <iban_check_digits_length>2</iban_check_digits_length>
586
+ <bank_identifier_position>6</bank_identifier_position>
587
+ <bank_identifier_length>5</bank_identifier_length>
588
+ <branch_identifier_position>11</branch_identifier_position>
589
+ <branch_identifier_length>5</branch_identifier_length>
590
+ <iban_national_id_length>10</iban_national_id_length>
591
+ <account_number_position>16</account_number_position>
592
+ <account_number_length>12</account_number_length>
593
+ <iban_total_length>27</iban_total_length>
594
+ <sepa>Y</sepa>
595
+ </ibanstructure>
596
+ <ibanstructure>
597
+ <tag>IS</tag>
598
+ <modification_flag>U</modification_flag>
599
+ <iban_country_code>KW</iban_country_code>
600
+ <iban_country_code_position>1</iban_country_code_position>
601
+ <iban_country_code_length>2</iban_country_code_length>
602
+ <iban_check_digits_position>3</iban_check_digits_position>
603
+ <iban_check_digits_length>2</iban_check_digits_length>
604
+ <bank_identifier_position>5</bank_identifier_position>
605
+ <bank_identifier_length>4</bank_identifier_length>
606
+ <branch_identifier_length>0</branch_identifier_length>
607
+ <iban_national_id_length>4</iban_national_id_length>
608
+ <account_number_position>9</account_number_position>
609
+ <account_number_length>22</account_number_length>
610
+ <iban_total_length>30</iban_total_length>
611
+ <sepa>N</sepa>
612
+ </ibanstructure>
613
+ <ibanstructure>
614
+ <tag>IS</tag>
615
+ <modification_flag>U</modification_flag>
616
+ <iban_country_code>KZ</iban_country_code>
617
+ <iban_country_code_position>1</iban_country_code_position>
618
+ <iban_country_code_length>2</iban_country_code_length>
619
+ <iban_check_digits_position>3</iban_check_digits_position>
620
+ <iban_check_digits_length>2</iban_check_digits_length>
621
+ <bank_identifier_position>5</bank_identifier_position>
622
+ <bank_identifier_length>3</bank_identifier_length>
623
+ <branch_identifier_length>0</branch_identifier_length>
624
+ <iban_national_id_length>3</iban_national_id_length>
625
+ <account_number_position>8</account_number_position>
626
+ <account_number_length>13</account_number_length>
627
+ <iban_total_length>20</iban_total_length>
628
+ <sepa>N</sepa>
629
+ </ibanstructure>
630
+ <ibanstructure>
631
+ <tag>IS</tag>
632
+ <modification_flag>U</modification_flag>
633
+ <iban_country_code>LB</iban_country_code>
634
+ <iban_country_code_position>1</iban_country_code_position>
635
+ <iban_country_code_length>2</iban_country_code_length>
636
+ <iban_check_digits_position>3</iban_check_digits_position>
637
+ <iban_check_digits_length>2</iban_check_digits_length>
638
+ <bank_identifier_position>5</bank_identifier_position>
639
+ <bank_identifier_length>4</bank_identifier_length>
640
+ <branch_identifier_length>0</branch_identifier_length>
641
+ <iban_national_id_length>4</iban_national_id_length>
642
+ <account_number_position>14</account_number_position>
643
+ <account_number_length>14</account_number_length>
644
+ <iban_total_length>28</iban_total_length>
645
+ <sepa>N</sepa>
646
+ </ibanstructure>
647
+ <ibanstructure>
648
+ <tag>IS</tag>
649
+ <modification_flag>U</modification_flag>
650
+ <iban_country_code>LI</iban_country_code>
651
+ <iban_country_code_position>1</iban_country_code_position>
652
+ <iban_country_code_length>2</iban_country_code_length>
653
+ <iban_check_digits_position>3</iban_check_digits_position>
654
+ <iban_check_digits_length>2</iban_check_digits_length>
655
+ <bank_identifier_position>5</bank_identifier_position>
656
+ <bank_identifier_length>5</bank_identifier_length>
657
+ <branch_identifier_length>0</branch_identifier_length>
658
+ <iban_national_id_length>5</iban_national_id_length>
659
+ <account_number_position>10</account_number_position>
660
+ <account_number_length>12</account_number_length>
661
+ <iban_total_length>21</iban_total_length>
662
+ <sepa>Y</sepa>
663
+ </ibanstructure>
664
+ <ibanstructure>
665
+ <tag>IS</tag>
666
+ <modification_flag>U</modification_flag>
667
+ <iban_country_code>LT</iban_country_code>
668
+ <iban_country_code_position>1</iban_country_code_position>
669
+ <iban_country_code_length>2</iban_country_code_length>
670
+ <iban_check_digits_position>3</iban_check_digits_position>
671
+ <iban_check_digits_length>2</iban_check_digits_length>
672
+ <bank_identifier_position>5</bank_identifier_position>
673
+ <bank_identifier_length>5</bank_identifier_length>
674
+ <branch_identifier_length>0</branch_identifier_length>
675
+ <iban_national_id_length>5</iban_national_id_length>
676
+ <account_number_position>10</account_number_position>
677
+ <account_number_length>11</account_number_length>
678
+ <iban_total_length>20</iban_total_length>
679
+ <sepa>Y</sepa>
680
+ </ibanstructure>
681
+ <ibanstructure>
682
+ <tag>IS</tag>
683
+ <modification_flag>U</modification_flag>
684
+ <iban_country_code>LU</iban_country_code>
685
+ <iban_country_code_position>1</iban_country_code_position>
686
+ <iban_country_code_length>2</iban_country_code_length>
687
+ <iban_check_digits_position>3</iban_check_digits_position>
688
+ <iban_check_digits_length>2</iban_check_digits_length>
689
+ <bank_identifier_position>5</bank_identifier_position>
690
+ <bank_identifier_length>3</bank_identifier_length>
691
+ <branch_identifier_length>0</branch_identifier_length>
692
+ <iban_national_id_length>3</iban_national_id_length>
693
+ <account_number_position>8</account_number_position>
694
+ <account_number_length>13</account_number_length>
695
+ <iban_total_length>20</iban_total_length>
696
+ <sepa>Y</sepa>
697
+ </ibanstructure>
698
+ <ibanstructure>
699
+ <tag>IS</tag>
700
+ <modification_flag>U</modification_flag>
701
+ <iban_country_code>LV</iban_country_code>
702
+ <iban_country_code_position>1</iban_country_code_position>
703
+ <iban_country_code_length>2</iban_country_code_length>
704
+ <iban_check_digits_position>3</iban_check_digits_position>
705
+ <iban_check_digits_length>2</iban_check_digits_length>
706
+ <bank_identifier_position>5</bank_identifier_position>
707
+ <bank_identifier_length>4</bank_identifier_length>
708
+ <branch_identifier_length>0</branch_identifier_length>
709
+ <iban_national_id_length>4</iban_national_id_length>
710
+ <account_number_position>9</account_number_position>
711
+ <account_number_length>13</account_number_length>
712
+ <iban_total_length>21</iban_total_length>
713
+ <sepa>Y</sepa>
714
+ </ibanstructure>
715
+ <ibanstructure>
716
+ <tag>IS</tag>
717
+ <modification_flag>U</modification_flag>
718
+ <iban_country_code>MC</iban_country_code>
719
+ <iban_country_code_position>1</iban_country_code_position>
720
+ <iban_country_code_length>2</iban_country_code_length>
721
+ <iban_check_digits_position>3</iban_check_digits_position>
722
+ <iban_check_digits_length>2</iban_check_digits_length>
723
+ <bank_identifier_position>5</bank_identifier_position>
724
+ <bank_identifier_length>5</bank_identifier_length>
725
+ <branch_identifier_position>10</branch_identifier_position>
726
+ <branch_identifier_length>5</branch_identifier_length>
727
+ <iban_national_id_length>10</iban_national_id_length>
728
+ <account_number_position>15</account_number_position>
729
+ <account_number_length>13</account_number_length>
730
+ <iban_total_length>27</iban_total_length>
731
+ <sepa>Y</sepa>
732
+ </ibanstructure>
733
+ <ibanstructure>
734
+ <tag>IS</tag>
735
+ <modification_flag>U</modification_flag>
736
+ <iban_country_code>MD</iban_country_code>
737
+ <iban_country_code_position>1</iban_country_code_position>
738
+ <iban_country_code_length>2</iban_country_code_length>
739
+ <iban_check_digits_position>3</iban_check_digits_position>
740
+ <iban_check_digits_length>2</iban_check_digits_length>
741
+ <bank_identifier_position>5</bank_identifier_position>
742
+ <bank_identifier_length>2</bank_identifier_length>
743
+ <branch_identifier_length>0</branch_identifier_length>
744
+ <iban_national_id_length>2</iban_national_id_length>
745
+ <account_number_position>7</account_number_position>
746
+ <account_number_length>18</account_number_length>
747
+ <iban_total_length>24</iban_total_length>
748
+ <sepa>N</sepa>
749
+ </ibanstructure>
750
+ <ibanstructure>
751
+ <tag>IS</tag>
752
+ <modification_flag>U</modification_flag>
753
+ <iban_country_code>ME</iban_country_code>
754
+ <iban_country_code_position>1</iban_country_code_position>
755
+ <iban_country_code_length>2</iban_country_code_length>
756
+ <iban_check_digits_position>3</iban_check_digits_position>
757
+ <iban_check_digits_length>2</iban_check_digits_length>
758
+ <bank_identifier_position>5</bank_identifier_position>
759
+ <bank_identifier_length>3</bank_identifier_length>
760
+ <branch_identifier_length>0</branch_identifier_length>
761
+ <iban_national_id_length>3</iban_national_id_length>
762
+ <account_number_position>8</account_number_position>
763
+ <account_number_length>15</account_number_length>
764
+ <iban_total_length>22</iban_total_length>
765
+ <sepa>N</sepa>
766
+ </ibanstructure>
767
+ <ibanstructure>
768
+ <tag>IS</tag>
769
+ <modification_flag>U</modification_flag>
770
+ <iban_country_code>MK</iban_country_code>
771
+ <iban_country_code_position>1</iban_country_code_position>
772
+ <iban_country_code_length>2</iban_country_code_length>
773
+ <iban_check_digits_position>3</iban_check_digits_position>
774
+ <iban_check_digits_length>2</iban_check_digits_length>
775
+ <bank_identifier_position>5</bank_identifier_position>
776
+ <bank_identifier_length>3</bank_identifier_length>
777
+ <branch_identifier_length>0</branch_identifier_length>
778
+ <iban_national_id_length>3</iban_national_id_length>
779
+ <account_number_position>8</account_number_position>
780
+ <account_number_length>12</account_number_length>
781
+ <iban_total_length>19</iban_total_length>
782
+ <sepa>N</sepa>
783
+ </ibanstructure>
784
+ <ibanstructure>
785
+ <tag>IS</tag>
786
+ <modification_flag>U</modification_flag>
787
+ <iban_country_code>MR</iban_country_code>
788
+ <iban_country_code_position>1</iban_country_code_position>
789
+ <iban_country_code_length>2</iban_country_code_length>
790
+ <iban_check_digits_position>3</iban_check_digits_position>
791
+ <iban_check_digits_length>2</iban_check_digits_length>
792
+ <bank_identifier_position>5</bank_identifier_position>
793
+ <bank_identifier_length>5</bank_identifier_length>
794
+ <branch_identifier_position>10</branch_identifier_position>
795
+ <branch_identifier_length>5</branch_identifier_length>
796
+ <iban_national_id_length>10</iban_national_id_length>
797
+ <account_number_position>15</account_number_position>
798
+ <account_number_length>13</account_number_length>
799
+ <iban_total_length>27</iban_total_length>
800
+ <sepa>N</sepa>
801
+ </ibanstructure>
802
+ <ibanstructure>
803
+ <tag>IS</tag>
804
+ <modification_flag>U</modification_flag>
805
+ <iban_country_code>MT</iban_country_code>
806
+ <iban_country_code_position>1</iban_country_code_position>
807
+ <iban_country_code_length>2</iban_country_code_length>
808
+ <iban_check_digits_position>3</iban_check_digits_position>
809
+ <iban_check_digits_length>2</iban_check_digits_length>
810
+ <bank_identifier_position>5</bank_identifier_position>
811
+ <bank_identifier_length>4</bank_identifier_length>
812
+ <branch_identifier_position>9</branch_identifier_position>
813
+ <branch_identifier_length>5</branch_identifier_length>
814
+ <iban_national_id_length>9</iban_national_id_length>
815
+ <account_number_position>14</account_number_position>
816
+ <account_number_length>18</account_number_length>
817
+ <iban_total_length>31</iban_total_length>
818
+ <sepa>Y</sepa>
819
+ </ibanstructure>
820
+ <ibanstructure>
821
+ <tag>IS</tag>
822
+ <modification_flag>U</modification_flag>
823
+ <iban_country_code>MU</iban_country_code>
824
+ <iban_country_code_position>1</iban_country_code_position>
825
+ <iban_country_code_length>2</iban_country_code_length>
826
+ <iban_check_digits_position>3</iban_check_digits_position>
827
+ <iban_check_digits_length>2</iban_check_digits_length>
828
+ <bank_identifier_position>5</bank_identifier_position>
829
+ <bank_identifier_length>6</bank_identifier_length>
830
+ <branch_identifier_position>11</branch_identifier_position>
831
+ <branch_identifier_length>2</branch_identifier_length>
832
+ <iban_national_id_length>8</iban_national_id_length>
833
+ <account_number_position>13</account_number_position>
834
+ <account_number_length>18</account_number_length>
835
+ <iban_total_length>30</iban_total_length>
836
+ <sepa>N</sepa>
837
+ </ibanstructure>
838
+ <ibanstructure>
839
+ <tag>IS</tag>
840
+ <modification_flag>U</modification_flag>
841
+ <iban_country_code>NL</iban_country_code>
842
+ <iban_country_code_position>1</iban_country_code_position>
843
+ <iban_country_code_length>2</iban_country_code_length>
844
+ <iban_check_digits_position>3</iban_check_digits_position>
845
+ <iban_check_digits_length>2</iban_check_digits_length>
846
+ <bank_identifier_position>5</bank_identifier_position>
847
+ <bank_identifier_length>4</bank_identifier_length>
848
+ <branch_identifier_length>0</branch_identifier_length>
849
+ <iban_national_id_length>4</iban_national_id_length>
850
+ <account_number_position>9</account_number_position>
851
+ <account_number_length>10</account_number_length>
852
+ <iban_total_length>18</iban_total_length>
853
+ <sepa>Y</sepa>
854
+ </ibanstructure>
855
+ <ibanstructure>
856
+ <tag>IS</tag>
857
+ <modification_flag>U</modification_flag>
858
+ <iban_country_code>NO</iban_country_code>
859
+ <iban_country_code_position>1</iban_country_code_position>
860
+ <iban_country_code_length>2</iban_country_code_length>
861
+ <iban_check_digits_position>3</iban_check_digits_position>
862
+ <iban_check_digits_length>2</iban_check_digits_length>
863
+ <bank_identifier_position>5</bank_identifier_position>
864
+ <bank_identifier_length>4</bank_identifier_length>
865
+ <branch_identifier_length>0</branch_identifier_length>
866
+ <iban_national_id_length>4</iban_national_id_length>
867
+ <account_number_position>9</account_number_position>
868
+ <account_number_length>7</account_number_length>
869
+ <iban_total_length>15</iban_total_length>
870
+ <sepa>Y</sepa>
871
+ </ibanstructure>
872
+ <ibanstructure>
873
+ <tag>IS</tag>
874
+ <modification_flag>U</modification_flag>
875
+ <iban_country_code>PK</iban_country_code>
876
+ <iban_country_code_position>1</iban_country_code_position>
877
+ <iban_country_code_length>2</iban_country_code_length>
878
+ <iban_check_digits_position>3</iban_check_digits_position>
879
+ <iban_check_digits_length>2</iban_check_digits_length>
880
+ <bank_identifier_position>5</bank_identifier_position>
881
+ <bank_identifier_length>4</bank_identifier_length>
882
+ <branch_identifier_length>0</branch_identifier_length>
883
+ <iban_national_id_length>4</iban_national_id_length>
884
+ <account_number_position>9</account_number_position>
885
+ <account_number_length>16</account_number_length>
886
+ <iban_total_length>24</iban_total_length>
887
+ <sepa>N</sepa>
888
+ </ibanstructure>
889
+ <ibanstructure>
890
+ <tag>IS</tag>
891
+ <modification_flag>U</modification_flag>
892
+ <iban_country_code>PL</iban_country_code>
893
+ <iban_country_code_position>1</iban_country_code_position>
894
+ <iban_country_code_length>2</iban_country_code_length>
895
+ <iban_check_digits_position>3</iban_check_digits_position>
896
+ <iban_check_digits_length>2</iban_check_digits_length>
897
+ <bank_identifier_position>5</bank_identifier_position>
898
+ <bank_identifier_length>8</bank_identifier_length>
899
+ <branch_identifier_length>0</branch_identifier_length>
900
+ <iban_national_id_length>8</iban_national_id_length>
901
+ <account_number_position>13</account_number_position>
902
+ <account_number_length>16</account_number_length>
903
+ <iban_total_length>28</iban_total_length>
904
+ <sepa>Y</sepa>
905
+ </ibanstructure>
906
+ <ibanstructure>
907
+ <tag>IS</tag>
908
+ <modification_flag>U</modification_flag>
909
+ <iban_country_code>PS</iban_country_code>
910
+ <iban_country_code_position>1</iban_country_code_position>
911
+ <iban_country_code_length>2</iban_country_code_length>
912
+ <iban_check_digits_position>3</iban_check_digits_position>
913
+ <iban_check_digits_length>2</iban_check_digits_length>
914
+ <bank_identifier_position>5</bank_identifier_position>
915
+ <bank_identifier_length>4</bank_identifier_length>
916
+ <branch_identifier_length>0</branch_identifier_length>
917
+ <iban_national_id_length>4</iban_national_id_length>
918
+ <account_number_position>9</account_number_position>
919
+ <account_number_length>21</account_number_length>
920
+ <iban_total_length>29</iban_total_length>
921
+ <sepa>N</sepa>
922
+ </ibanstructure>
923
+ <ibanstructure>
924
+ <tag>IS</tag>
925
+ <modification_flag>U</modification_flag>
926
+ <iban_country_code>PT</iban_country_code>
927
+ <iban_country_code_position>1</iban_country_code_position>
928
+ <iban_country_code_length>2</iban_country_code_length>
929
+ <iban_check_digits_position>3</iban_check_digits_position>
930
+ <iban_check_digits_length>2</iban_check_digits_length>
931
+ <bank_identifier_position>5</bank_identifier_position>
932
+ <bank_identifier_length>4</bank_identifier_length>
933
+ <branch_identifier_position>9</branch_identifier_position>
934
+ <branch_identifier_length>4</branch_identifier_length>
935
+ <iban_national_id_length>4</iban_national_id_length>
936
+ <account_number_position>13</account_number_position>
937
+ <account_number_length>13</account_number_length>
938
+ <iban_total_length>25</iban_total_length>
939
+ <sepa>Y</sepa>
940
+ </ibanstructure>
941
+ <ibanstructure>
942
+ <tag>IS</tag>
943
+ <modification_flag>U</modification_flag>
944
+ <iban_country_code>RO</iban_country_code>
945
+ <iban_country_code_position>1</iban_country_code_position>
946
+ <iban_country_code_length>2</iban_country_code_length>
947
+ <iban_check_digits_position>3</iban_check_digits_position>
948
+ <iban_check_digits_length>2</iban_check_digits_length>
949
+ <bank_identifier_position>5</bank_identifier_position>
950
+ <bank_identifier_length>4</bank_identifier_length>
951
+ <branch_identifier_length>0</branch_identifier_length>
952
+ <iban_national_id_length>4</iban_national_id_length>
953
+ <account_number_position>9</account_number_position>
954
+ <account_number_length>16</account_number_length>
955
+ <iban_total_length>24</iban_total_length>
956
+ <sepa>Y</sepa>
957
+ </ibanstructure>
958
+ <ibanstructure>
959
+ <tag>IS</tag>
960
+ <modification_flag>U</modification_flag>
961
+ <iban_country_code>RS</iban_country_code>
962
+ <iban_country_code_position>1</iban_country_code_position>
963
+ <iban_country_code_length>2</iban_country_code_length>
964
+ <iban_check_digits_position>3</iban_check_digits_position>
965
+ <iban_check_digits_length>2</iban_check_digits_length>
966
+ <bank_identifier_position>5</bank_identifier_position>
967
+ <bank_identifier_length>3</bank_identifier_length>
968
+ <branch_identifier_length>0</branch_identifier_length>
969
+ <iban_national_id_length>3</iban_national_id_length>
970
+ <account_number_position>8</account_number_position>
971
+ <account_number_length>15</account_number_length>
972
+ <iban_total_length>22</iban_total_length>
973
+ <sepa>N</sepa>
974
+ </ibanstructure>
975
+ <ibanstructure>
976
+ <tag>IS</tag>
977
+ <modification_flag>U</modification_flag>
978
+ <iban_country_code>SA</iban_country_code>
979
+ <iban_country_code_position>1</iban_country_code_position>
980
+ <iban_country_code_length>2</iban_country_code_length>
981
+ <iban_check_digits_position>3</iban_check_digits_position>
982
+ <iban_check_digits_length>2</iban_check_digits_length>
983
+ <bank_identifier_position>5</bank_identifier_position>
984
+ <bank_identifier_length>2</bank_identifier_length>
985
+ <branch_identifier_length>0</branch_identifier_length>
986
+ <iban_national_id_length>2</iban_national_id_length>
987
+ <account_number_position>7</account_number_position>
988
+ <account_number_length>18</account_number_length>
989
+ <iban_total_length>24</iban_total_length>
990
+ <sepa>N</sepa>
991
+ </ibanstructure>
992
+ <ibanstructure>
993
+ <tag>IS</tag>
994
+ <modification_flag>U</modification_flag>
995
+ <iban_country_code>SE</iban_country_code>
996
+ <iban_country_code_position>1</iban_country_code_position>
997
+ <iban_country_code_length>2</iban_country_code_length>
998
+ <iban_check_digits_position>3</iban_check_digits_position>
999
+ <iban_check_digits_length>2</iban_check_digits_length>
1000
+ <bank_identifier_position>5</bank_identifier_position>
1001
+ <bank_identifier_length>3</bank_identifier_length>
1002
+ <branch_identifier_length>0</branch_identifier_length>
1003
+ <iban_national_id_length>3</iban_national_id_length>
1004
+ <account_number_position>8</account_number_position>
1005
+ <account_number_length>17</account_number_length>
1006
+ <iban_total_length>24</iban_total_length>
1007
+ <sepa>Y</sepa>
1008
+ </ibanstructure>
1009
+ <ibanstructure>
1010
+ <tag>IS</tag>
1011
+ <modification_flag>U</modification_flag>
1012
+ <iban_country_code>SI</iban_country_code>
1013
+ <iban_country_code_position>1</iban_country_code_position>
1014
+ <iban_country_code_length>2</iban_country_code_length>
1015
+ <iban_check_digits_position>3</iban_check_digits_position>
1016
+ <iban_check_digits_length>2</iban_check_digits_length>
1017
+ <bank_identifier_position>5</bank_identifier_position>
1018
+ <bank_identifier_length>5</bank_identifier_length>
1019
+ <branch_identifier_length>0</branch_identifier_length>
1020
+ <iban_national_id_length>2</iban_national_id_length>
1021
+ <account_number_position>10</account_number_position>
1022
+ <account_number_length>10</account_number_length>
1023
+ <iban_total_length>19</iban_total_length>
1024
+ <sepa>Y</sepa>
1025
+ </ibanstructure>
1026
+ <ibanstructure>
1027
+ <tag>IS</tag>
1028
+ <modification_flag>U</modification_flag>
1029
+ <iban_country_code>SK</iban_country_code>
1030
+ <iban_country_code_position>1</iban_country_code_position>
1031
+ <iban_country_code_length>2</iban_country_code_length>
1032
+ <iban_check_digits_position>3</iban_check_digits_position>
1033
+ <iban_check_digits_length>2</iban_check_digits_length>
1034
+ <bank_identifier_position>5</bank_identifier_position>
1035
+ <bank_identifier_length>4</bank_identifier_length>
1036
+ <branch_identifier_length>0</branch_identifier_length>
1037
+ <iban_national_id_length>4</iban_national_id_length>
1038
+ <account_number_position>9</account_number_position>
1039
+ <account_number_length>16</account_number_length>
1040
+ <iban_total_length>24</iban_total_length>
1041
+ <sepa>Y</sepa>
1042
+ </ibanstructure>
1043
+ <ibanstructure>
1044
+ <tag>IS</tag>
1045
+ <modification_flag>U</modification_flag>
1046
+ <iban_country_code>SM</iban_country_code>
1047
+ <iban_country_code_position>1</iban_country_code_position>
1048
+ <iban_country_code_length>2</iban_country_code_length>
1049
+ <iban_check_digits_position>3</iban_check_digits_position>
1050
+ <iban_check_digits_length>2</iban_check_digits_length>
1051
+ <bank_identifier_position>6</bank_identifier_position>
1052
+ <bank_identifier_length>5</bank_identifier_length>
1053
+ <branch_identifier_position>11</branch_identifier_position>
1054
+ <branch_identifier_length>5</branch_identifier_length>
1055
+ <iban_national_id_length>10</iban_national_id_length>
1056
+ <account_number_position>16</account_number_position>
1057
+ <account_number_length>12</account_number_length>
1058
+ <iban_total_length>27</iban_total_length>
1059
+ <sepa>Y</sepa>
1060
+ </ibanstructure>
1061
+ <ibanstructure>
1062
+ <tag>IS</tag>
1063
+ <modification_flag>U</modification_flag>
1064
+ <iban_country_code>TN</iban_country_code>
1065
+ <iban_country_code_position>1</iban_country_code_position>
1066
+ <iban_country_code_length>2</iban_country_code_length>
1067
+ <iban_check_digits_position>3</iban_check_digits_position>
1068
+ <iban_check_digits_length>2</iban_check_digits_length>
1069
+ <bank_identifier_position>5</bank_identifier_position>
1070
+ <bank_identifier_length>2</bank_identifier_length>
1071
+ <branch_identifier_position>7</branch_identifier_position>
1072
+ <branch_identifier_length>3</branch_identifier_length>
1073
+ <iban_national_id_length>2</iban_national_id_length>
1074
+ <account_number_position>10</account_number_position>
1075
+ <account_number_length>15</account_number_length>
1076
+ <iban_total_length>24</iban_total_length>
1077
+ <sepa>N</sepa>
1078
+ </ibanstructure>
1079
+ <ibanstructure>
1080
+ <tag>IS</tag>
1081
+ <modification_flag>U</modification_flag>
1082
+ <iban_country_code>TR</iban_country_code>
1083
+ <iban_country_code_position>1</iban_country_code_position>
1084
+ <iban_country_code_length>2</iban_country_code_length>
1085
+ <iban_check_digits_position>3</iban_check_digits_position>
1086
+ <iban_check_digits_length>2</iban_check_digits_length>
1087
+ <bank_identifier_position>5</bank_identifier_position>
1088
+ <bank_identifier_length>5</bank_identifier_length>
1089
+ <branch_identifier_length>0</branch_identifier_length>
1090
+ <iban_national_id_length>5</iban_national_id_length>
1091
+ <account_number_position>10</account_number_position>
1092
+ <account_number_length>17</account_number_length>
1093
+ <iban_total_length>26</iban_total_length>
1094
+ <sepa>N</sepa>
1095
+ </ibanstructure>
1096
+ <ibanstructure>
1097
+ <tag>IS</tag>
1098
+ <modification_flag>U</modification_flag>
1099
+ <iban_country_code>VG</iban_country_code>
1100
+ <iban_country_code_position>1</iban_country_code_position>
1101
+ <iban_country_code_length>2</iban_country_code_length>
1102
+ <iban_check_digits_position>3</iban_check_digits_position>
1103
+ <iban_check_digits_length>2</iban_check_digits_length>
1104
+ <bank_identifier_position>5</bank_identifier_position>
1105
+ <bank_identifier_length>4</bank_identifier_length>
1106
+ <branch_identifier_length>0</branch_identifier_length>
1107
+ <iban_national_id_length>4</iban_national_id_length>
1108
+ <account_number_position>9</account_number_position>
1109
+ <account_number_length>16</account_number_length>
1110
+ <iban_total_length>24</iban_total_length>
1111
+ <sepa>N</sepa>
1112
+ </ibanstructure>
1113
+ <ibanstructure>
1114
+ <tag>IS</tag>
1115
+ <modification_flag>U</modification_flag>
1116
+ <iban_country_code>JO</iban_country_code>
1117
+ <iban_country_code_position>1</iban_country_code_position>
1118
+ <iban_country_code_length>2</iban_country_code_length>
1119
+ <iban_check_digits_position>3</iban_check_digits_position>
1120
+ <iban_check_digits_length>2</iban_check_digits_length>
1121
+ <bank_identifier_position>5</bank_identifier_position>
1122
+ <bank_identifier_length>4</bank_identifier_length>
1123
+ <branch_identifier_length>0</branch_identifier_length>
1124
+ <iban_national_id_length>4</iban_national_id_length>
1125
+ <account_number_position>9</account_number_position>
1126
+ <account_number_length>22</account_number_length>
1127
+ <iban_total_length>30</iban_total_length>
1128
+ <sepa>N</sepa>
1129
+ <optional_commence_date>20140202</optional_commence_date>
1130
+ </ibanstructure>
1131
+ <ibanstructure>
1132
+ <tag>IS</tag>
1133
+ <modification_flag>U</modification_flag>
1134
+ <iban_country_code>QA</iban_country_code>
1135
+ <iban_country_code_position>1</iban_country_code_position>
1136
+ <iban_country_code_length>2</iban_country_code_length>
1137
+ <iban_check_digits_position>3</iban_check_digits_position>
1138
+ <iban_check_digits_length>2</iban_check_digits_length>
1139
+ <bank_identifier_position>5</bank_identifier_position>
1140
+ <bank_identifier_length>4</bank_identifier_length>
1141
+ <branch_identifier_length>0</branch_identifier_length>
1142
+ <iban_national_id_length>4</iban_national_id_length>
1143
+ <account_number_position>9</account_number_position>
1144
+ <account_number_length>21</account_number_length>
1145
+ <iban_total_length>29</iban_total_length>
1146
+ <sepa>N</sepa>
1147
+ <optional_commence_date>20140101</optional_commence_date>
1148
+ </ibanstructure>
1149
+ <ibanstructure>
1150
+ <tag>IS</tag>
1151
+ <modification_flag>U</modification_flag>
1152
+ <iban_country_code>XK</iban_country_code>
1153
+ <iban_country_code_position>1</iban_country_code_position>
1154
+ <iban_country_code_length>2</iban_country_code_length>
1155
+ <iban_check_digits_position>3</iban_check_digits_position>
1156
+ <iban_check_digits_length>2</iban_check_digits_length>
1157
+ <bank_identifier_position>5</bank_identifier_position>
1158
+ <bank_identifier_length>4</bank_identifier_length>
1159
+ <branch_identifier_length>0</branch_identifier_length>
1160
+ <iban_national_id_length>4</iban_national_id_length>
1161
+ <account_number_position>5</account_number_position>
1162
+ <account_number_length>16</account_number_length>
1163
+ <iban_total_length>20</iban_total_length>
1164
+ <sepa>N</sepa>
1165
+ <optional_commence_date>20150201</optional_commence_date>
1166
+ </ibanstructure>
1167
+ <ibanstructure>
1168
+ <tag>IS</tag>
1169
+ <modification_flag>U</modification_flag>
1170
+ <iban_country_code>TL</iban_country_code>
1171
+ <iban_country_code_position>1</iban_country_code_position>
1172
+ <iban_country_code_length>2</iban_country_code_length>
1173
+ <iban_check_digits_position>3</iban_check_digits_position>
1174
+ <iban_check_digits_length>2</iban_check_digits_length>
1175
+ <bank_identifier_position>5</bank_identifier_position>
1176
+ <bank_identifier_length>3</bank_identifier_length>
1177
+ <branch_identifier_length>0</branch_identifier_length>
1178
+ <iban_national_id_length>3</iban_national_id_length>
1179
+ <account_number_position>8</account_number_position>
1180
+ <account_number_length>16</account_number_length>
1181
+ <iban_total_length>23</iban_total_length>
1182
+ <sepa>N</sepa>
1183
+ </ibanstructure>
1184
+ </dataexport>