ibandit 1.2.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.circleci/config.yml +2 -2
- data/.ruby-version +1 -0
- data/CHANGELOG.md +22 -0
- data/README.md +1 -1
- data/bin/build_structure_file.rb +73 -40
- data/data/german_iban_rules.yml +262 -157
- data/data/raw/BLZ2.txt +2072 -2231
- data/data/raw/IBAN_Registry.txt +53 -70
- data/data/raw/structure_additions.yml +3 -0
- data/data/raw/swedish_bank_lookup.yml +12 -2
- data/data/structures.yml +157 -42
- data/ibandit.gemspec +1 -1
- data/lib/ibandit/check_digit.rb +1 -1
- data/lib/ibandit/errors.rb +1 -0
- data/lib/ibandit/german_details_converter.rb +2 -2
- data/lib/ibandit/version.rb +1 -1
- data/spec/fixtures/germany_integration_test_cases.json +1 -1
- data/spec/ibandit/iban_assembler_spec.rb +1 -1
- data/spec/ibandit/iban_spec.rb +173 -5
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bd9995eaf5ee5234723077679edc4d0a392f2e94179f29dc3dde3957f9164ce9
|
4
|
+
data.tar.gz: 77487285fcfaf55c76c6ec12c7122a3c7ba33e659ab03211f8720181d0315a72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e99899a1576356e2580619ab63eec53ca8d83259e1de48d4b8d939468e3629724559a39dc6db2265d0e6a058295f962b16aa6294048c9afa156e299a3a269366
|
7
|
+
data.tar.gz: 5862d478bd2a01ed65b9fffe6df750b085a3cd027a13f9c27803d02c875be0880c9db3eb85135540f81a76de18c5fc960a331e9f64f401f9b2992216572efd0f
|
data/.circleci/config.yml
CHANGED
@@ -3,7 +3,7 @@ version: 2.1
|
|
3
3
|
jobs:
|
4
4
|
test:
|
5
5
|
docker:
|
6
|
-
- image:
|
6
|
+
- image: cimg/ruby:<< parameters.ruby-version >>
|
7
7
|
parameters:
|
8
8
|
ruby-version:
|
9
9
|
type: string
|
@@ -34,4 +34,4 @@ workflows:
|
|
34
34
|
name: Ruby << matrix.ruby-version >>
|
35
35
|
matrix:
|
36
36
|
parameters:
|
37
|
-
ruby-version: ["2.4.
|
37
|
+
ruby-version: ["2.4.10", "2.5.8", "2.6.6", "2.7.2", "3.0.0"]
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
3.0.0
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,25 @@
|
|
1
|
+
## 1.4.0 - February 22, 2021
|
2
|
+
|
3
|
+
- [Breaking] Correct `swift_national_id` for Canadian Psudo Ibans. Before `swift_national_id`
|
4
|
+
would return the institution code only. Now it returns the `{institution_code}{branch_code}` as
|
5
|
+
per the format for electronic transfers - `0YYYXXXXX`
|
6
|
+
|
7
|
+
## 1.3.0 - February 18, 2021
|
8
|
+
|
9
|
+
- Add support for BY, EG, FO, IQ, LC, SC, UA and VA
|
10
|
+
|
11
|
+
## 1.2.3 - December 11, 2020
|
12
|
+
|
13
|
+
- Update BLZ data - BLZ_20201207
|
14
|
+
|
15
|
+
## 1.2.2 - October 30, 2020
|
16
|
+
|
17
|
+
- Update Swedish Bank data
|
18
|
+
|
19
|
+
## 1.2.1 - September 1, 2020
|
20
|
+
|
21
|
+
- Update BLZ data - BLZ_20200907
|
22
|
+
|
1
23
|
## 1.2.0 - August 25, 2020
|
2
24
|
|
3
25
|
- Improve validation for iban lengths
|
data/README.md
CHANGED
data/bin/build_structure_file.rb
CHANGED
@@ -1,29 +1,31 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
4
|
# Script for parsing the IBAN registry (IBAN_Registry.txt) and IBAN structures
|
4
5
|
# (IBANSTRUCTURE.xml) files from SWIFT.
|
5
|
-
require
|
6
|
-
require
|
7
|
-
require
|
6
|
+
require "csv"
|
7
|
+
require "yaml"
|
8
|
+
require "sax-machine"
|
8
9
|
|
9
10
|
class Country
|
10
11
|
include SAXMachine
|
11
|
-
element
|
12
|
-
element
|
13
|
-
element
|
14
|
-
element
|
15
|
-
element
|
16
|
-
element
|
17
|
-
element
|
18
|
-
element
|
19
|
-
element
|
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: :national_id_length
|
20
21
|
end
|
21
22
|
|
22
23
|
class Report
|
23
24
|
include SAXMachine
|
24
|
-
elements
|
25
|
+
elements "ibanstructure", as: :countries, class: Country
|
25
26
|
end
|
26
27
|
|
28
|
+
# rubocop:disable Metrics/AbcSize
|
27
29
|
def get_iban_structures(iban_structures_file, iban_registry_file)
|
28
30
|
bban_formats = get_bban_formats(iban_registry_file)
|
29
31
|
|
@@ -37,23 +39,51 @@ def get_iban_structures(iban_structures_file, iban_registry_file)
|
|
37
39
|
account_number_position: country.account_number_position.to_i,
|
38
40
|
account_number_length: country.account_number_length.to_i,
|
39
41
|
total_length: country.total_length.to_i,
|
40
|
-
national_id_length: country.national_id_length.to_i
|
42
|
+
national_id_length: country.national_id_length.to_i,
|
41
43
|
}.merge(bban_formats[country.country_code])
|
42
44
|
end
|
43
45
|
end
|
46
|
+
# rubocop:enable Metrics/AbcSize
|
47
|
+
|
48
|
+
FILE_ELEMENTS = [
|
49
|
+
# 0 Data element
|
50
|
+
# 1 Name of country
|
51
|
+
# 2 IBAN prefix country code (ISO 3166)
|
52
|
+
COUNTRY_CODE = 2,
|
53
|
+
# 3 Country code includes other countries/territories
|
54
|
+
# 4 SEPA country
|
55
|
+
# 5 SEPA country also includes
|
56
|
+
# 6 Domestic account number example
|
57
|
+
# 7 BBAN
|
58
|
+
# 8 BBAN structure
|
59
|
+
BBAN_STRUCTURE = 8,
|
60
|
+
# 9 BBAN length
|
61
|
+
# 10 Bank identifier position within the BBAN
|
62
|
+
# 11 Bank identifier pattern
|
63
|
+
BANK_IDENTIFIER_PATTERN = 11,
|
64
|
+
# 12 Branch identifier position within the BBAN
|
65
|
+
# 13 Branch identifier pattern
|
66
|
+
BRANCH_IDENTIFIER_PATTERN = 13,
|
67
|
+
# 14 Bank identifier example
|
68
|
+
# 15 Branch identifier example
|
69
|
+
# 16 BBAN example
|
70
|
+
# 17 IBAN
|
71
|
+
# 18 IBAN structure
|
72
|
+
# 19 IBAN length
|
73
|
+
# 20 Effective date
|
74
|
+
# 21 IBAN electronic format example
|
75
|
+
].freeze
|
44
76
|
|
45
77
|
def get_bban_formats(iban_registry_file)
|
46
78
|
iban_registry_file.each_with_object({}) do |line, hash|
|
47
|
-
bban_structure = line[
|
79
|
+
bban_structure = line[BBAN_STRUCTURE].strip
|
48
80
|
|
49
|
-
bank_code_structure
|
50
|
-
|
51
|
-
line['Bank identifier length'].split(/, Branch identifier length:? /)
|
52
|
-
else
|
53
|
-
['', nil]
|
54
|
-
end
|
81
|
+
bank_code_structure = line[BANK_IDENTIFIER_PATTERN].strip
|
82
|
+
branch_code_structure = line[BRANCH_IDENTIFIER_PATTERN]&.strip
|
55
83
|
|
56
|
-
|
84
|
+
bank_code_structure = "" if bank_code_structure == "N/A"
|
85
|
+
|
86
|
+
country_code = line[COUNTRY_CODE].strip
|
57
87
|
hash[country_code] = convert_swift_convention(bban_structure,
|
58
88
|
bank_code_structure,
|
59
89
|
branch_code_structure)
|
@@ -76,22 +106,22 @@ def convert_swift_convention(bban, bank, branch)
|
|
76
106
|
|
77
107
|
non_account_number_regex = [bank_regex, branch_regex].join
|
78
108
|
account_number_start = (bban_regex.index(non_account_number_regex) || 0) +
|
79
|
-
|
109
|
+
non_account_number_regex.length
|
80
110
|
account_number_regex = bban_regex[account_number_start..-1]
|
81
111
|
|
82
112
|
{
|
83
|
-
bban_format:
|
84
|
-
bank_code_format:
|
85
|
-
branch_code_format:
|
86
|
-
account_number_format: account_number_regex
|
87
|
-
}.
|
113
|
+
bban_format: bban_regex,
|
114
|
+
bank_code_format: bank_regex,
|
115
|
+
branch_code_format: branch_regex,
|
116
|
+
account_number_format: account_number_regex,
|
117
|
+
}.compact
|
88
118
|
end
|
89
119
|
|
90
120
|
def iban_registry_to_regex(swift_string)
|
91
121
|
swift_string.gsub(/(\d+)!([nac])/, '\2{\1}').
|
92
|
-
gsub(
|
93
|
-
gsub(
|
94
|
-
gsub(
|
122
|
+
gsub("n", '\d').
|
123
|
+
gsub("a", "[A-Z]").
|
124
|
+
gsub("c", "[A-Z0-9]")
|
95
125
|
end
|
96
126
|
|
97
127
|
def merge_structures(structures, additions)
|
@@ -106,30 +136,33 @@ end
|
|
106
136
|
# as it is in the specs)
|
107
137
|
if __FILE__ == $PROGRAM_NAME
|
108
138
|
iban_registry_file = CSV.read(
|
109
|
-
File.expand_path(
|
139
|
+
File.expand_path("../data/raw/IBAN_Registry.txt", __dir__),
|
110
140
|
col_sep: "\t",
|
111
|
-
headers: true
|
112
|
-
|
141
|
+
headers: true,
|
142
|
+
encoding: Encoding::ISO_8859_1,
|
143
|
+
).to_a.transpose
|
144
|
+
|
145
|
+
iban_registry_file.shift
|
113
146
|
|
114
147
|
iban_structures_file = File.read(
|
115
|
-
File.expand_path(
|
148
|
+
File.expand_path("../data/raw/IBANSTRUCTURE.xml", __dir__),
|
116
149
|
)
|
117
150
|
|
118
151
|
iban_structures = get_iban_structures(
|
119
152
|
iban_structures_file,
|
120
|
-
iban_registry_file
|
153
|
+
iban_registry_file,
|
121
154
|
)
|
122
155
|
|
123
156
|
structure_additions = YAML.load_file(
|
124
|
-
File.expand_path(
|
157
|
+
File.expand_path("../data/raw/structure_additions.yml", __dir__),
|
125
158
|
)
|
126
159
|
|
127
160
|
complete_structures = merge_structures(iban_structures, structure_additions)
|
128
161
|
|
129
162
|
output_file_path = File.expand_path(
|
130
|
-
|
131
|
-
|
163
|
+
"../data/structures.yml",
|
164
|
+
__dir__,
|
132
165
|
)
|
133
166
|
|
134
|
-
File.open(output_file_path,
|
167
|
+
File.open(output_file_path, "w") { |f| f.write(complete_structures.to_yaml) }
|
135
168
|
end
|
data/data/german_iban_rules.yml
CHANGED
@@ -8,19 +8,19 @@
|
|
8
8
|
'10010123':
|
9
9
|
:check_digit_rule: '09'
|
10
10
|
:iban_rule: '000000'
|
11
|
-
'
|
11
|
+
'10010300':
|
12
12
|
:check_digit_rule: '09'
|
13
13
|
:iban_rule: '000000'
|
14
|
-
'
|
14
|
+
'10010424':
|
15
15
|
:check_digit_rule: '09'
|
16
16
|
:iban_rule: '000000'
|
17
|
-
'
|
17
|
+
'10010500':
|
18
18
|
:check_digit_rule: '09'
|
19
19
|
:iban_rule: '000000'
|
20
|
-
'
|
20
|
+
'10011001':
|
21
21
|
:check_digit_rule: '09'
|
22
22
|
:iban_rule: '000000'
|
23
|
-
'
|
23
|
+
'10017997':
|
24
24
|
:check_digit_rule: '09'
|
25
25
|
:iban_rule: '000000'
|
26
26
|
'10020200':
|
@@ -134,9 +134,27 @@
|
|
134
134
|
'10070124':
|
135
135
|
:check_digit_rule: '63'
|
136
136
|
:iban_rule: '002002'
|
137
|
+
'10070324':
|
138
|
+
:check_digit_rule: '63'
|
139
|
+
:iban_rule: '002002'
|
140
|
+
'10070397':
|
141
|
+
:check_digit_rule: '63'
|
142
|
+
:iban_rule: '002002'
|
143
|
+
'10070398':
|
144
|
+
:check_digit_rule: '63'
|
145
|
+
:iban_rule: '002002'
|
146
|
+
'10070399':
|
147
|
+
:check_digit_rule: '63'
|
148
|
+
:iban_rule: '002002'
|
137
149
|
'10070848':
|
138
150
|
:check_digit_rule: '63'
|
139
151
|
:iban_rule: '002002'
|
152
|
+
'10071324':
|
153
|
+
:check_digit_rule: '63'
|
154
|
+
:iban_rule: '002002'
|
155
|
+
'10072324':
|
156
|
+
:check_digit_rule: '63'
|
157
|
+
:iban_rule: '002002'
|
140
158
|
'10077777':
|
141
159
|
:check_digit_rule: '63'
|
142
160
|
:iban_rule: '002002'
|
@@ -185,9 +203,6 @@
|
|
185
203
|
'10090300':
|
186
204
|
:check_digit_rule: '09'
|
187
205
|
:iban_rule: '000000'
|
188
|
-
'10090603':
|
189
|
-
:check_digit_rule: A4
|
190
|
-
:iban_rule: '001400'
|
191
206
|
'10090900':
|
192
207
|
:check_digit_rule: '91'
|
193
208
|
:iban_rule: '000000'
|
@@ -257,21 +272,21 @@
|
|
257
272
|
'12070088':
|
258
273
|
:check_digit_rule: '09'
|
259
274
|
:iban_rule: '000000'
|
275
|
+
'12070400':
|
276
|
+
:check_digit_rule: '63'
|
277
|
+
:iban_rule: '002002'
|
278
|
+
'12070424':
|
279
|
+
:check_digit_rule: '63'
|
280
|
+
:iban_rule: '002002'
|
260
281
|
'12080000':
|
261
282
|
:check_digit_rule: '76'
|
262
283
|
:iban_rule: '000503'
|
263
|
-
'12090640':
|
264
|
-
:check_digit_rule: A4
|
265
|
-
:iban_rule: '001400'
|
266
284
|
'12096597':
|
267
285
|
:check_digit_rule: A8
|
268
286
|
:iban_rule: '000000'
|
269
287
|
'13000000':
|
270
288
|
:check_digit_rule: '09'
|
271
289
|
:iban_rule: '004201'
|
272
|
-
'13010111':
|
273
|
-
:check_digit_rule: '13'
|
274
|
-
:iban_rule: '000000'
|
275
290
|
'13040000':
|
276
291
|
:check_digit_rule: '13'
|
277
292
|
:iban_rule: '000503'
|
@@ -299,6 +314,12 @@
|
|
299
314
|
'13070024':
|
300
315
|
:check_digit_rule: '63'
|
301
316
|
:iban_rule: '002002'
|
317
|
+
'13070405':
|
318
|
+
:check_digit_rule: '63'
|
319
|
+
:iban_rule: '002002'
|
320
|
+
'13070424':
|
321
|
+
:check_digit_rule: '63'
|
322
|
+
:iban_rule: '002002'
|
302
323
|
'13080000':
|
303
324
|
:check_digit_rule: '76'
|
304
325
|
:iban_rule: '000503'
|
@@ -485,9 +506,6 @@
|
|
485
506
|
'20010020':
|
486
507
|
:check_digit_rule: '24'
|
487
508
|
:iban_rule: '000000'
|
488
|
-
'20010111':
|
489
|
-
:check_digit_rule: '13'
|
490
|
-
:iban_rule: '000000'
|
491
509
|
'20010424':
|
492
510
|
:check_digit_rule: '09'
|
493
511
|
:iban_rule: '000000'
|
@@ -638,6 +656,12 @@
|
|
638
656
|
'20070024':
|
639
657
|
:check_digit_rule: '63'
|
640
658
|
:iban_rule: '002002'
|
659
|
+
'20070404':
|
660
|
+
:check_digit_rule: '63'
|
661
|
+
:iban_rule: '002002'
|
662
|
+
'20070424':
|
663
|
+
:check_digit_rule: '63'
|
664
|
+
:iban_rule: '002002'
|
641
665
|
'20080000':
|
642
666
|
:check_digit_rule: '76'
|
643
667
|
:iban_rule: '000503'
|
@@ -686,9 +710,6 @@
|
|
686
710
|
'20090500':
|
687
711
|
:check_digit_rule: '81'
|
688
712
|
:iban_rule: '000000'
|
689
|
-
'20090602':
|
690
|
-
:check_digit_rule: A4
|
691
|
-
:iban_rule: '001400'
|
692
713
|
'20090700':
|
693
714
|
:check_digit_rule: '50'
|
694
715
|
:iban_rule: '000000'
|
@@ -786,7 +807,7 @@
|
|
786
807
|
:check_digit_rule: '09'
|
787
808
|
:iban_rule: '000000'
|
788
809
|
'20690500':
|
789
|
-
:check_digit_rule:
|
810
|
+
:check_digit_rule: '09'
|
790
811
|
:iban_rule: '000000'
|
791
812
|
'20730001':
|
792
813
|
:check_digit_rule: '09'
|
@@ -1124,9 +1145,6 @@
|
|
1124
1145
|
'21090099':
|
1125
1146
|
:check_digit_rule: '10'
|
1126
1147
|
:iban_rule: '000000'
|
1127
|
-
'21090619':
|
1128
|
-
:check_digit_rule: A4
|
1129
|
-
:iban_rule: '001400'
|
1130
1148
|
'21090900':
|
1131
1149
|
:check_digit_rule: '91'
|
1132
1150
|
:iban_rule: '000000'
|
@@ -1208,6 +1226,12 @@
|
|
1208
1226
|
'21570024':
|
1209
1227
|
:check_digit_rule: '63'
|
1210
1228
|
:iban_rule: '002002'
|
1229
|
+
'21570202':
|
1230
|
+
:check_digit_rule: '63'
|
1231
|
+
:iban_rule: '002002'
|
1232
|
+
'21570224':
|
1233
|
+
:check_digit_rule: '63'
|
1234
|
+
:iban_rule: '002002'
|
1211
1235
|
'21580000':
|
1212
1236
|
:check_digit_rule: '76'
|
1213
1237
|
:iban_rule: '000503'
|
@@ -1340,6 +1364,12 @@
|
|
1340
1364
|
'23064107':
|
1341
1365
|
:check_digit_rule: '32'
|
1342
1366
|
:iban_rule: '000000'
|
1367
|
+
'23070203':
|
1368
|
+
:check_digit_rule: '63'
|
1369
|
+
:iban_rule: '002002'
|
1370
|
+
'23070224':
|
1371
|
+
:check_digit_rule: '63'
|
1372
|
+
:iban_rule: '002002'
|
1343
1373
|
'23070700':
|
1344
1374
|
:check_digit_rule: '63'
|
1345
1375
|
:iban_rule: '002002'
|
@@ -1355,9 +1385,6 @@
|
|
1355
1385
|
'23090142':
|
1356
1386
|
:check_digit_rule: '10'
|
1357
1387
|
:iban_rule: '000000'
|
1358
|
-
'23092620':
|
1359
|
-
:check_digit_rule: A4
|
1360
|
-
:iban_rule: '001400'
|
1361
1388
|
'24040000':
|
1362
1389
|
:check_digit_rule: '13'
|
1363
1390
|
:iban_rule: '000503'
|
@@ -1376,6 +1403,12 @@
|
|
1376
1403
|
'24070075':
|
1377
1404
|
:check_digit_rule: '63'
|
1378
1405
|
:iban_rule: '002002'
|
1406
|
+
'24070324':
|
1407
|
+
:check_digit_rule: '63'
|
1408
|
+
:iban_rule: '002002'
|
1409
|
+
'24070368':
|
1410
|
+
:check_digit_rule: '63'
|
1411
|
+
:iban_rule: '002002'
|
1379
1412
|
'24080000':
|
1380
1413
|
:check_digit_rule: '76'
|
1381
1414
|
:iban_rule: '000503'
|
@@ -1499,6 +1532,12 @@
|
|
1499
1532
|
'25070086':
|
1500
1533
|
:check_digit_rule: '63'
|
1501
1534
|
:iban_rule: '002002'
|
1535
|
+
'25070324':
|
1536
|
+
:check_digit_rule: '63'
|
1537
|
+
:iban_rule: '002002'
|
1538
|
+
'25070370':
|
1539
|
+
:check_digit_rule: '63'
|
1540
|
+
:iban_rule: '002002'
|
1502
1541
|
'25080020':
|
1503
1542
|
:check_digit_rule: '76'
|
1504
1543
|
:iban_rule: '000503'
|
@@ -1514,9 +1553,6 @@
|
|
1514
1553
|
'25090500':
|
1515
1554
|
:check_digit_rule: '09'
|
1516
1555
|
:iban_rule: '000000'
|
1517
|
-
'25090608':
|
1518
|
-
:check_digit_rule: A4
|
1519
|
-
:iban_rule: '001400'
|
1520
1556
|
'25090900':
|
1521
1557
|
:check_digit_rule: '91'
|
1522
1558
|
:iban_rule: '000000'
|
@@ -1817,9 +1853,6 @@
|
|
1817
1853
|
'26552286':
|
1818
1854
|
:check_digit_rule: '00'
|
1819
1855
|
:iban_rule: '000000'
|
1820
|
-
'26560625':
|
1821
|
-
:check_digit_rule: A4
|
1822
|
-
:iban_rule: '001400'
|
1823
1856
|
'26562490':
|
1824
1857
|
:check_digit_rule: '28'
|
1825
1858
|
:iban_rule: '000000'
|
@@ -1994,6 +2027,12 @@
|
|
1994
2027
|
'27070079':
|
1995
2028
|
:check_digit_rule: '63'
|
1996
2029
|
:iban_rule: '002002'
|
2030
|
+
'27070324':
|
2031
|
+
:check_digit_rule: '63'
|
2032
|
+
:iban_rule: '002002'
|
2033
|
+
'27070369':
|
2034
|
+
:check_digit_rule: '63'
|
2035
|
+
:iban_rule: '002002'
|
1997
2036
|
'27072524':
|
1998
2037
|
:check_digit_rule: '63'
|
1999
2038
|
:iban_rule: '002002'
|
@@ -2012,9 +2051,6 @@
|
|
2012
2051
|
'27089221':
|
2013
2052
|
:check_digit_rule: '09'
|
2014
2053
|
:iban_rule: '000503'
|
2015
|
-
'27090618':
|
2016
|
-
:check_digit_rule: A4
|
2017
|
-
:iban_rule: '001400'
|
2018
2054
|
'27090900':
|
2019
2055
|
:check_digit_rule: '91'
|
2020
2056
|
:iban_rule: '000000'
|
@@ -2228,9 +2264,6 @@
|
|
2228
2264
|
'28070057':
|
2229
2265
|
:check_digit_rule: '63'
|
2230
2266
|
:iban_rule: '002002'
|
2231
|
-
'28090633':
|
2232
|
-
:check_digit_rule: A4
|
2233
|
-
:iban_rule: '001400'
|
2234
2267
|
'28220026':
|
2235
2268
|
:check_digit_rule: '61'
|
2236
2269
|
:iban_rule: '003900'
|
@@ -2348,9 +2381,6 @@
|
|
2348
2381
|
'29020000':
|
2349
2382
|
:check_digit_rule: '09'
|
2350
2383
|
:iban_rule: '000000'
|
2351
|
-
'29020100':
|
2352
|
-
:check_digit_rule: '18'
|
2353
|
-
:iban_rule: '000000'
|
2354
2384
|
'29020200':
|
2355
2385
|
:check_digit_rule: '09'
|
2356
2386
|
:iban_rule: '000000'
|
@@ -2390,15 +2420,18 @@
|
|
2390
2420
|
'29070059':
|
2391
2421
|
:check_digit_rule: '63'
|
2392
2422
|
:iban_rule: '002002'
|
2423
|
+
'29070324':
|
2424
|
+
:check_digit_rule: '63'
|
2425
|
+
:iban_rule: '002002'
|
2426
|
+
'29070367':
|
2427
|
+
:check_digit_rule: '63'
|
2428
|
+
:iban_rule: '002002'
|
2393
2429
|
'29080010':
|
2394
2430
|
:check_digit_rule: '76'
|
2395
2431
|
:iban_rule: '000503'
|
2396
2432
|
'29089210':
|
2397
2433
|
:check_digit_rule: '09'
|
2398
2434
|
:iban_rule: '000503'
|
2399
|
-
'29090605':
|
2400
|
-
:check_digit_rule: A4
|
2401
|
-
:iban_rule: '001400'
|
2402
2435
|
'29090900':
|
2403
2436
|
:check_digit_rule: '91'
|
2404
2437
|
:iban_rule: '000000'
|
@@ -2486,6 +2519,9 @@
|
|
2486
2519
|
'30010700':
|
2487
2520
|
:check_digit_rule: '09'
|
2488
2521
|
:iban_rule: '000000'
|
2522
|
+
'30018800':
|
2523
|
+
:check_digit_rule: '09'
|
2524
|
+
:iban_rule: '000000'
|
2489
2525
|
'30019000':
|
2490
2526
|
:check_digit_rule: '09'
|
2491
2527
|
:iban_rule: '000000'
|
@@ -2564,6 +2600,12 @@
|
|
2564
2600
|
'30070024':
|
2565
2601
|
:check_digit_rule: '63'
|
2566
2602
|
:iban_rule: '002002'
|
2603
|
+
'30070207':
|
2604
|
+
:check_digit_rule: '63'
|
2605
|
+
:iban_rule: '002002'
|
2606
|
+
'30070224':
|
2607
|
+
:check_digit_rule: '63'
|
2608
|
+
:iban_rule: '002002'
|
2567
2609
|
'30080000':
|
2568
2610
|
:check_digit_rule: '76'
|
2569
2611
|
:iban_rule: '000503'
|
@@ -2636,9 +2678,6 @@
|
|
2636
2678
|
'30110300':
|
2637
2679
|
:check_digit_rule: '09'
|
2638
2680
|
:iban_rule: '000000'
|
2639
|
-
'30120500':
|
2640
|
-
:check_digit_rule: '18'
|
2641
|
-
:iban_rule: '000000'
|
2642
2681
|
'30130100':
|
2643
2682
|
:check_digit_rule: '09'
|
2644
2683
|
:iban_rule: '000000'
|
@@ -2732,6 +2771,12 @@
|
|
2732
2771
|
'31070024':
|
2733
2772
|
:check_digit_rule: '63'
|
2734
2773
|
:iban_rule: '002002'
|
2774
|
+
'31070206':
|
2775
|
+
:check_digit_rule: '63'
|
2776
|
+
:iban_rule: '002002'
|
2777
|
+
'31070224':
|
2778
|
+
:check_digit_rule: '63'
|
2779
|
+
:iban_rule: '002002'
|
2735
2780
|
'31080015':
|
2736
2781
|
:check_digit_rule: '76'
|
2737
2782
|
:iban_rule: '000503'
|
@@ -2825,9 +2870,6 @@
|
|
2825
2870
|
'33060592':
|
2826
2871
|
:check_digit_rule: '51'
|
2827
2872
|
:iban_rule: '000000'
|
2828
|
-
'33060616':
|
2829
|
-
:check_digit_rule: A4
|
2830
|
-
:iban_rule: '001400'
|
2831
2873
|
'33070024':
|
2832
2874
|
:check_digit_rule: '63'
|
2833
2875
|
:iban_rule: '002002'
|
@@ -2918,9 +2960,6 @@
|
|
2918
2960
|
'35060386':
|
2919
2961
|
:check_digit_rule: '40'
|
2920
2962
|
:iban_rule: '000000'
|
2921
|
-
'35060632':
|
2922
|
-
:check_digit_rule: A4
|
2923
|
-
:iban_rule: '001400'
|
2924
2963
|
'35070024':
|
2925
2964
|
:check_digit_rule: '63'
|
2926
2965
|
:iban_rule: '002002'
|
@@ -2990,9 +3029,6 @@
|
|
2990
3029
|
'36010043':
|
2991
3030
|
:check_digit_rule: '24'
|
2992
3031
|
:iban_rule: '000000'
|
2993
|
-
'36010111':
|
2994
|
-
:check_digit_rule: '13'
|
2995
|
-
:iban_rule: '000000'
|
2996
3032
|
'36010200':
|
2997
3033
|
:check_digit_rule: '09'
|
2998
3034
|
:iban_rule: '000000'
|
@@ -3038,15 +3074,18 @@
|
|
3038
3074
|
'36060591':
|
3039
3075
|
:check_digit_rule: '51'
|
3040
3076
|
:iban_rule: '000000'
|
3041
|
-
'36060610':
|
3042
|
-
:check_digit_rule: A4
|
3043
|
-
:iban_rule: '001400'
|
3044
3077
|
'36070024':
|
3045
3078
|
:check_digit_rule: '63'
|
3046
3079
|
:iban_rule: '002002'
|
3047
3080
|
'36070050':
|
3048
3081
|
:check_digit_rule: '63'
|
3049
3082
|
:iban_rule: '002002'
|
3083
|
+
'36070208':
|
3084
|
+
:check_digit_rule: '63'
|
3085
|
+
:iban_rule: '002002'
|
3086
|
+
'36070224':
|
3087
|
+
:check_digit_rule: '63'
|
3088
|
+
:iban_rule: '002002'
|
3050
3089
|
'36080080':
|
3051
3090
|
:check_digit_rule: '76'
|
3052
3091
|
:iban_rule: '000503'
|
@@ -3164,9 +3203,6 @@
|
|
3164
3203
|
'37060590':
|
3165
3204
|
:check_digit_rule: '51'
|
3166
3205
|
:iban_rule: '000000'
|
3167
|
-
'37060615':
|
3168
|
-
:check_digit_rule: A4
|
3169
|
-
:iban_rule: '001400'
|
3170
3206
|
'37060993':
|
3171
3207
|
:check_digit_rule: '91'
|
3172
3208
|
:iban_rule: '000000'
|
@@ -3293,6 +3329,12 @@
|
|
3293
3329
|
'37070060':
|
3294
3330
|
:check_digit_rule: '63'
|
3295
3331
|
:iban_rule: '002002'
|
3332
|
+
'37070209':
|
3333
|
+
:check_digit_rule: '63'
|
3334
|
+
:iban_rule: '002002'
|
3335
|
+
'37070224':
|
3336
|
+
:check_digit_rule: '63'
|
3337
|
+
:iban_rule: '002002'
|
3296
3338
|
'37080040':
|
3297
3339
|
:check_digit_rule: '76'
|
3298
3340
|
:iban_rule: '000503'
|
@@ -3434,6 +3476,12 @@
|
|
3434
3476
|
'38070059':
|
3435
3477
|
:check_digit_rule: '63'
|
3436
3478
|
:iban_rule: '002002'
|
3479
|
+
'38070408':
|
3480
|
+
:check_digit_rule: '63'
|
3481
|
+
:iban_rule: '002002'
|
3482
|
+
'38070424':
|
3483
|
+
:check_digit_rule: '63'
|
3484
|
+
:iban_rule: '002002'
|
3437
3485
|
'38070724':
|
3438
3486
|
:check_digit_rule: '63'
|
3439
3487
|
:iban_rule: '002002'
|
@@ -3491,9 +3539,6 @@
|
|
3491
3539
|
'39060180':
|
3492
3540
|
:check_digit_rule: '06'
|
3493
3541
|
:iban_rule: '001800'
|
3494
|
-
'39060630':
|
3495
|
-
:check_digit_rule: A4
|
3496
|
-
:iban_rule: '001400'
|
3497
3542
|
'39061981':
|
3498
3543
|
:check_digit_rule: '06'
|
3499
3544
|
:iban_rule: '000000'
|
@@ -3503,6 +3548,12 @@
|
|
3503
3548
|
'39070024':
|
3504
3549
|
:check_digit_rule: '63'
|
3505
3550
|
:iban_rule: '002002'
|
3551
|
+
'39070210':
|
3552
|
+
:check_digit_rule: '63'
|
3553
|
+
:iban_rule: '002002'
|
3554
|
+
'39070224':
|
3555
|
+
:check_digit_rule: '63'
|
3556
|
+
:iban_rule: '002002'
|
3506
3557
|
'39080005':
|
3507
3558
|
:check_digit_rule: '76'
|
3508
3559
|
:iban_rule: '000503'
|
@@ -3572,9 +3623,6 @@
|
|
3572
3623
|
'40060560':
|
3573
3624
|
:check_digit_rule: '85'
|
3574
3625
|
:iban_rule: '000000'
|
3575
|
-
'40060614':
|
3576
|
-
:check_digit_rule: A4
|
3577
|
-
:iban_rule: '001400'
|
3578
3626
|
'40061238':
|
3579
3627
|
:check_digit_rule: '34'
|
3580
3628
|
:iban_rule: '000000'
|
@@ -3632,6 +3680,12 @@
|
|
3632
3680
|
'40070080':
|
3633
3681
|
:check_digit_rule: '63'
|
3634
3682
|
:iban_rule: '002002'
|
3683
|
+
'40070211':
|
3684
|
+
:check_digit_rule: '63'
|
3685
|
+
:iban_rule: '002002'
|
3686
|
+
'40070224':
|
3687
|
+
:check_digit_rule: '63'
|
3688
|
+
:iban_rule: '002002'
|
3635
3689
|
'40080040':
|
3636
3690
|
:check_digit_rule: '76'
|
3637
3691
|
:iban_rule: '000503'
|
@@ -3989,9 +4043,6 @@
|
|
3989
4043
|
'44060122':
|
3990
4044
|
:check_digit_rule: '34'
|
3991
4045
|
:iban_rule: '000000'
|
3992
|
-
'44060604':
|
3993
|
-
:check_digit_rule: A4
|
3994
|
-
:iban_rule: '001400'
|
3995
4046
|
'44064406':
|
3996
4047
|
:check_digit_rule: '09'
|
3997
4048
|
:iban_rule: '000000'
|
@@ -4064,9 +4115,6 @@
|
|
4064
4115
|
'44580085':
|
4065
4116
|
:check_digit_rule: '09'
|
4066
4117
|
:iban_rule: '000503'
|
4067
|
-
'44750065':
|
4068
|
-
:check_digit_rule: '00'
|
4069
|
-
:iban_rule: '000000'
|
4070
4118
|
'44761312':
|
4071
4119
|
:check_digit_rule: '34'
|
4072
4120
|
:iban_rule: '000000'
|
@@ -4256,6 +4304,12 @@
|
|
4256
4304
|
'46670024':
|
4257
4305
|
:check_digit_rule: '63'
|
4258
4306
|
:iban_rule: '002002'
|
4307
|
+
'46670204':
|
4308
|
+
:check_digit_rule: '63'
|
4309
|
+
:iban_rule: '002002'
|
4310
|
+
'46670224':
|
4311
|
+
:check_digit_rule: '63'
|
4312
|
+
:iban_rule: '002002'
|
4259
4313
|
'47000000':
|
4260
4314
|
:check_digit_rule: '09'
|
4261
4315
|
:iban_rule: '000100'
|
@@ -4328,6 +4382,12 @@
|
|
4328
4382
|
'47670024':
|
4329
4383
|
:check_digit_rule: '63'
|
4330
4384
|
:iban_rule: '002002'
|
4385
|
+
'47670205':
|
4386
|
+
:check_digit_rule: '63'
|
4387
|
+
:iban_rule: '002002'
|
4388
|
+
'47670224':
|
4389
|
+
:check_digit_rule: '63'
|
4390
|
+
:iban_rule: '002002'
|
4331
4391
|
'47691200':
|
4332
4392
|
:check_digit_rule: '34'
|
4333
4393
|
:iban_rule: '000000'
|
@@ -4541,9 +4601,6 @@
|
|
4541
4601
|
'50020200':
|
4542
4602
|
:check_digit_rule: '60'
|
4543
4603
|
:iban_rule: '000800'
|
4544
|
-
'50020300':
|
4545
|
-
:check_digit_rule: '18'
|
4546
|
-
:iban_rule: '000000'
|
4547
4604
|
'50020400':
|
4548
4605
|
:check_digit_rule: '09'
|
4549
4606
|
:iban_rule: '000000'
|
@@ -4568,6 +4625,9 @@
|
|
4568
4625
|
'50022200':
|
4569
4626
|
:check_digit_rule: '09'
|
4570
4627
|
:iban_rule: '000000'
|
4628
|
+
'50024024':
|
4629
|
+
:check_digit_rule: '09'
|
4630
|
+
:iban_rule: '000000'
|
4571
4631
|
'50025000':
|
4572
4632
|
:check_digit_rule: '10'
|
4573
4633
|
:iban_rule: '000000'
|
@@ -4772,6 +4832,27 @@
|
|
4772
4832
|
'50070024':
|
4773
4833
|
:check_digit_rule: '63'
|
4774
4834
|
:iban_rule: '002002'
|
4835
|
+
'50070324':
|
4836
|
+
:check_digit_rule: '63'
|
4837
|
+
:iban_rule: '002002'
|
4838
|
+
'50070371':
|
4839
|
+
:check_digit_rule: '63'
|
4840
|
+
:iban_rule: '002002'
|
4841
|
+
'50070435':
|
4842
|
+
:check_digit_rule: '63'
|
4843
|
+
:iban_rule: '002002'
|
4844
|
+
'50070436':
|
4845
|
+
:check_digit_rule: '63'
|
4846
|
+
:iban_rule: '002002'
|
4847
|
+
'50070437':
|
4848
|
+
:check_digit_rule: '63'
|
4849
|
+
:iban_rule: '002002'
|
4850
|
+
'50070438':
|
4851
|
+
:check_digit_rule: '63'
|
4852
|
+
:iban_rule: '002002'
|
4853
|
+
'50070439':
|
4854
|
+
:check_digit_rule: '63'
|
4855
|
+
:iban_rule: '002002'
|
4775
4856
|
'50073019':
|
4776
4857
|
:check_digit_rule: '63'
|
4777
4858
|
:iban_rule: '002002'
|
@@ -4850,15 +4931,9 @@
|
|
4850
4931
|
'50089400':
|
4851
4932
|
:check_digit_rule: '09'
|
4852
4933
|
:iban_rule: '000503'
|
4853
|
-
'50090200':
|
4854
|
-
:check_digit_rule: '00'
|
4855
|
-
:iban_rule: '000000'
|
4856
4934
|
'50090500':
|
4857
4935
|
:check_digit_rule: '73'
|
4858
4936
|
:iban_rule: '000000'
|
4859
|
-
'50090607':
|
4860
|
-
:check_digit_rule: A4
|
4861
|
-
:iban_rule: '001400'
|
4862
4937
|
'50090900':
|
4863
4938
|
:check_digit_rule: '91'
|
4864
4939
|
:iban_rule: '000000'
|
@@ -5246,6 +5321,12 @@
|
|
5246
5321
|
'50870024':
|
5247
5322
|
:check_digit_rule: '63'
|
5248
5323
|
:iban_rule: '002002'
|
5324
|
+
'50870324':
|
5325
|
+
:check_digit_rule: '63'
|
5326
|
+
:iban_rule: '002002'
|
5327
|
+
'50870393':
|
5328
|
+
:check_digit_rule: '63'
|
5329
|
+
:iban_rule: '002002'
|
5249
5330
|
'50880050':
|
5250
5331
|
:check_digit_rule: '76'
|
5251
5332
|
:iban_rule: '000503'
|
@@ -5258,9 +5339,6 @@
|
|
5258
5339
|
'50890000':
|
5259
5340
|
:check_digit_rule: '06'
|
5260
5341
|
:iban_rule: '000000'
|
5261
|
-
'50890634':
|
5262
|
-
:check_digit_rule: A4
|
5263
|
-
:iban_rule: '001400'
|
5264
5342
|
'50950068':
|
5265
5343
|
:check_digit_rule: '00'
|
5266
5344
|
:iban_rule: '000000'
|
@@ -5324,9 +5402,6 @@
|
|
5324
5402
|
'51090000':
|
5325
5403
|
:check_digit_rule: '06'
|
5326
5404
|
:iban_rule: '000000'
|
5327
|
-
'51090636':
|
5328
|
-
:check_digit_rule: A4
|
5329
|
-
:iban_rule: '001400'
|
5330
5405
|
'51091500':
|
5331
5406
|
:check_digit_rule: '06'
|
5332
5407
|
:iban_rule: '000000'
|
@@ -5363,9 +5438,6 @@
|
|
5363
5438
|
'51190000':
|
5364
5439
|
:check_digit_rule: '06'
|
5365
5440
|
:iban_rule: '000000'
|
5366
|
-
'51191200':
|
5367
|
-
:check_digit_rule: '06'
|
5368
|
-
:iban_rule: '000000'
|
5369
5441
|
'51191800':
|
5370
5442
|
:check_digit_rule: '06'
|
5371
5443
|
:iban_rule: '000000'
|
@@ -5399,9 +5471,6 @@
|
|
5399
5471
|
'51220200':
|
5400
5472
|
:check_digit_rule: '09'
|
5401
5473
|
:iban_rule: '000000'
|
5402
|
-
'51220211':
|
5403
|
-
:check_digit_rule: '09'
|
5404
|
-
:iban_rule: '000000'
|
5405
5474
|
'51220400':
|
5406
5475
|
:check_digit_rule: '09'
|
5407
5476
|
:iban_rule: '000000'
|
@@ -5510,6 +5579,9 @@
|
|
5510
5579
|
'51430400':
|
5511
5580
|
:check_digit_rule: '09'
|
5512
5581
|
:iban_rule: '000100'
|
5582
|
+
'51432100':
|
5583
|
+
:check_digit_rule: '09'
|
5584
|
+
:iban_rule: '000000'
|
5513
5585
|
'51540037':
|
5514
5586
|
:check_digit_rule: '13'
|
5515
5587
|
:iban_rule: '000503'
|
@@ -5606,6 +5678,9 @@
|
|
5606
5678
|
'52060410':
|
5607
5679
|
:check_digit_rule: '32'
|
5608
5680
|
:iban_rule: '000000'
|
5681
|
+
'52060420':
|
5682
|
+
:check_digit_rule: '32'
|
5683
|
+
:iban_rule: '000000'
|
5609
5684
|
'52061303':
|
5610
5685
|
:check_digit_rule: '32'
|
5611
5686
|
:iban_rule: '000000'
|
@@ -5666,9 +5741,6 @@
|
|
5666
5741
|
'52090000':
|
5667
5742
|
:check_digit_rule: '06'
|
5668
5743
|
:iban_rule: '000000'
|
5669
|
-
'52090611':
|
5670
|
-
:check_digit_rule: A4
|
5671
|
-
:iban_rule: '001400'
|
5672
5744
|
'52240006':
|
5673
5745
|
:check_digit_rule: '13'
|
5674
5746
|
:iban_rule: '000503'
|
@@ -5753,6 +5825,12 @@
|
|
5753
5825
|
'53070024':
|
5754
5826
|
:check_digit_rule: '63'
|
5755
5827
|
:iban_rule: '002002'
|
5828
|
+
'53070324':
|
5829
|
+
:check_digit_rule: '63'
|
5830
|
+
:iban_rule: '002002'
|
5831
|
+
'53070394':
|
5832
|
+
:check_digit_rule: '63'
|
5833
|
+
:iban_rule: '002002'
|
5756
5834
|
'53080030':
|
5757
5835
|
:check_digit_rule: '76'
|
5758
5836
|
:iban_rule: '000503'
|
@@ -5816,9 +5894,6 @@
|
|
5816
5894
|
'53381843':
|
5817
5895
|
:check_digit_rule: '76'
|
5818
5896
|
:iban_rule: '000503'
|
5819
|
-
'53390635':
|
5820
|
-
:check_digit_rule: A4
|
5821
|
-
:iban_rule: '001400'
|
5822
5897
|
'54020090':
|
5823
5898
|
:check_digit_rule: '99'
|
5824
5899
|
:iban_rule: '003200'
|
@@ -5951,9 +6026,6 @@
|
|
5951
6026
|
'54680022':
|
5952
6027
|
:check_digit_rule: '76'
|
5953
6028
|
:iban_rule: '000503'
|
5954
|
-
'54690623':
|
5955
|
-
:check_digit_rule: A4
|
5956
|
-
:iban_rule: '001400'
|
5957
6029
|
'54691200':
|
5958
6030
|
:check_digit_rule: '06'
|
5959
6031
|
:iban_rule: '000000'
|
@@ -6047,9 +6119,6 @@
|
|
6047
6119
|
'55060611':
|
6048
6120
|
:check_digit_rule: '32'
|
6049
6121
|
:iban_rule: '000000'
|
6050
|
-
'55060831':
|
6051
|
-
:check_digit_rule: A4
|
6052
|
-
:iban_rule: '001400'
|
6053
6122
|
'55061303':
|
6054
6123
|
:check_digit_rule: '32'
|
6055
6124
|
:iban_rule: '000000'
|
@@ -6065,6 +6134,12 @@
|
|
6065
6134
|
'55070040':
|
6066
6135
|
:check_digit_rule: '63'
|
6067
6136
|
:iban_rule: '002002'
|
6137
|
+
'55070324':
|
6138
|
+
:check_digit_rule: '63'
|
6139
|
+
:iban_rule: '002002'
|
6140
|
+
'55070396':
|
6141
|
+
:check_digit_rule: '63'
|
6142
|
+
:iban_rule: '002002'
|
6068
6143
|
'55080044':
|
6069
6144
|
:check_digit_rule: '76'
|
6070
6145
|
:iban_rule: '000503'
|
@@ -6206,9 +6281,6 @@
|
|
6206
6281
|
'57060000':
|
6207
6282
|
:check_digit_rule: '44'
|
6208
6283
|
:iban_rule: '004901'
|
6209
|
-
'57060612':
|
6210
|
-
:check_digit_rule: A4
|
6211
|
-
:iban_rule: '001400'
|
6212
6284
|
'57062675':
|
6213
6285
|
:check_digit_rule: '38'
|
6214
6286
|
:iban_rule: '000000'
|
@@ -6240,7 +6312,7 @@
|
|
6240
6312
|
:check_digit_rule: '38'
|
6241
6313
|
:iban_rule: '000000'
|
6242
6314
|
'57069806':
|
6243
|
-
:check_digit_rule: '
|
6315
|
+
:check_digit_rule: '09'
|
6244
6316
|
:iban_rule: '000000'
|
6245
6317
|
'57070024':
|
6246
6318
|
:check_digit_rule: '63'
|
@@ -6248,6 +6320,12 @@
|
|
6248
6320
|
'57070045':
|
6249
6321
|
:check_digit_rule: '63'
|
6250
6322
|
:iban_rule: '002002'
|
6323
|
+
'57070324':
|
6324
|
+
:check_digit_rule: '63'
|
6325
|
+
:iban_rule: '002002'
|
6326
|
+
'57070395':
|
6327
|
+
:check_digit_rule: '63'
|
6328
|
+
:iban_rule: '002002'
|
6251
6329
|
'57080070':
|
6252
6330
|
:check_digit_rule: '76'
|
6253
6331
|
:iban_rule: '000503'
|
@@ -6599,9 +6677,6 @@
|
|
6599
6677
|
'59080090':
|
6600
6678
|
:check_digit_rule: '76'
|
6601
6679
|
:iban_rule: '000503'
|
6602
|
-
'59090626':
|
6603
|
-
:check_digit_rule: A4
|
6604
|
-
:iban_rule: '001400'
|
6605
6680
|
'59090900':
|
6606
6681
|
:check_digit_rule: '91'
|
6607
6682
|
:iban_rule: '000000'
|
@@ -6665,9 +6740,6 @@
|
|
6665
6740
|
'60010070':
|
6666
6741
|
:check_digit_rule: '24'
|
6667
6742
|
:iban_rule: '000000'
|
6668
|
-
'60010111':
|
6669
|
-
:check_digit_rule: '13'
|
6670
|
-
:iban_rule: '000000'
|
6671
6743
|
'60010424':
|
6672
6744
|
:check_digit_rule: '09'
|
6673
6745
|
:iban_rule: '000000'
|
@@ -6983,6 +7055,12 @@
|
|
6983
7055
|
'60070070':
|
6984
7056
|
:check_digit_rule: '63'
|
6985
7057
|
:iban_rule: '002002'
|
7058
|
+
'60070214':
|
7059
|
+
:check_digit_rule: '63'
|
7060
|
+
:iban_rule: '002002'
|
7061
|
+
'60070224':
|
7062
|
+
:check_digit_rule: '63'
|
7063
|
+
:iban_rule: '002002'
|
6986
7064
|
'60080000':
|
6987
7065
|
:check_digit_rule: '76'
|
6988
7066
|
:iban_rule: '000503'
|
@@ -7016,9 +7094,6 @@
|
|
7016
7094
|
'60090300':
|
7017
7095
|
:check_digit_rule: '10'
|
7018
7096
|
:iban_rule: '000000'
|
7019
|
-
'60090609':
|
7020
|
-
:check_digit_rule: A4
|
7021
|
-
:iban_rule: '001400'
|
7022
7097
|
'60090700':
|
7023
7098
|
:check_digit_rule: '10'
|
7024
7099
|
:iban_rule: '000000'
|
@@ -7409,6 +7484,12 @@
|
|
7409
7484
|
'64070085':
|
7410
7485
|
:check_digit_rule: '63'
|
7411
7486
|
:iban_rule: '002002'
|
7487
|
+
'64070215':
|
7488
|
+
:check_digit_rule: '63'
|
7489
|
+
:iban_rule: '002002'
|
7490
|
+
'64070224':
|
7491
|
+
:check_digit_rule: '63'
|
7492
|
+
:iban_rule: '002002'
|
7412
7493
|
'64080014':
|
7413
7494
|
:check_digit_rule: '76'
|
7414
7495
|
:iban_rule: '000503'
|
@@ -7709,12 +7790,15 @@
|
|
7709
7790
|
'66070024':
|
7710
7791
|
:check_digit_rule: '63'
|
7711
7792
|
:iban_rule: '002002'
|
7793
|
+
'66070213':
|
7794
|
+
:check_digit_rule: '63'
|
7795
|
+
:iban_rule: '002002'
|
7796
|
+
'66070224':
|
7797
|
+
:check_digit_rule: '63'
|
7798
|
+
:iban_rule: '002002'
|
7712
7799
|
'66080052':
|
7713
7800
|
:check_digit_rule: '76'
|
7714
7801
|
:iban_rule: '000503'
|
7715
|
-
'66090621':
|
7716
|
-
:check_digit_rule: A4
|
7717
|
-
:iban_rule: '001400'
|
7718
7802
|
'66090800':
|
7719
7803
|
:check_digit_rule: B3
|
7720
7804
|
:iban_rule: '000000'
|
@@ -7907,9 +7991,6 @@
|
|
7907
7991
|
'67090000':
|
7908
7992
|
:check_digit_rule: '06'
|
7909
7993
|
:iban_rule: '000000'
|
7910
|
-
'67090617':
|
7911
|
-
:check_digit_rule: A4
|
7912
|
-
:iban_rule: '001400'
|
7913
7994
|
'67092300':
|
7914
7995
|
:check_digit_rule: '06'
|
7915
7996
|
:iban_rule: '000000'
|
@@ -7979,9 +8060,6 @@
|
|
7979
8060
|
'67462368':
|
7980
8061
|
:check_digit_rule: '06'
|
7981
8062
|
:iban_rule: '000000'
|
7982
|
-
'67462480':
|
7983
|
-
:check_digit_rule: '06'
|
7984
|
-
:iban_rule: '000000'
|
7985
8063
|
'68000000':
|
7986
8064
|
:check_digit_rule: '09'
|
7987
8065
|
:iban_rule: '004201'
|
@@ -8033,6 +8111,12 @@
|
|
8033
8111
|
'68070030':
|
8034
8112
|
:check_digit_rule: '63'
|
8035
8113
|
:iban_rule: '002002'
|
8114
|
+
'68070212':
|
8115
|
+
:check_digit_rule: '63'
|
8116
|
+
:iban_rule: '002002'
|
8117
|
+
'68070224':
|
8118
|
+
:check_digit_rule: '63'
|
8119
|
+
:iban_rule: '002002'
|
8036
8120
|
'68080030':
|
8037
8121
|
:check_digit_rule: '76'
|
8038
8122
|
:iban_rule: '000503'
|
@@ -8048,9 +8132,6 @@
|
|
8048
8132
|
'68090000':
|
8049
8133
|
:check_digit_rule: '06'
|
8050
8134
|
:iban_rule: '000000'
|
8051
|
-
'68090622':
|
8052
|
-
:check_digit_rule: A4
|
8053
|
-
:iban_rule: '001400'
|
8054
8135
|
'68090900':
|
8055
8136
|
:check_digit_rule: '91'
|
8056
8137
|
:iban_rule: '000000'
|
@@ -8189,9 +8270,6 @@
|
|
8189
8270
|
'69450065':
|
8190
8271
|
:check_digit_rule: '03'
|
8191
8272
|
:iban_rule: '000000'
|
8192
|
-
'69451070':
|
8193
|
-
:check_digit_rule: '03'
|
8194
|
-
:iban_rule: '000100'
|
8195
8273
|
'69470024':
|
8196
8274
|
:check_digit_rule: '63'
|
8197
8275
|
:iban_rule: '002002'
|
@@ -8210,9 +8288,6 @@
|
|
8210
8288
|
'70010080':
|
8211
8289
|
:check_digit_rule: '24'
|
8212
8290
|
:iban_rule: '000000'
|
8213
|
-
'70010111':
|
8214
|
-
:check_digit_rule: '13'
|
8215
|
-
:iban_rule: '000000'
|
8216
8291
|
'70010424':
|
8217
8292
|
:check_digit_rule: '09'
|
8218
8293
|
:iban_rule: '000000'
|
@@ -8405,6 +8480,12 @@
|
|
8405
8480
|
'70070024':
|
8406
8481
|
:check_digit_rule: '63'
|
8407
8482
|
:iban_rule: '002002'
|
8483
|
+
'70070324':
|
8484
|
+
:check_digit_rule: '63'
|
8485
|
+
:iban_rule: '002002'
|
8486
|
+
'70070362':
|
8487
|
+
:check_digit_rule: '63'
|
8488
|
+
:iban_rule: '002002'
|
8408
8489
|
'70080000':
|
8409
8490
|
:check_digit_rule: '76'
|
8410
8491
|
:iban_rule: '000503'
|
@@ -8441,9 +8522,6 @@
|
|
8441
8522
|
'70090500':
|
8442
8523
|
:check_digit_rule: '81'
|
8443
8524
|
:iban_rule: '000000'
|
8444
|
-
'70090606':
|
8445
|
-
:check_digit_rule: A4
|
8446
|
-
:iban_rule: '001400'
|
8447
8525
|
'70091500':
|
8448
8526
|
:check_digit_rule: '88'
|
8449
8527
|
:iban_rule: '000000'
|
@@ -8930,6 +9008,12 @@
|
|
8930
9008
|
'72070024':
|
8931
9009
|
:check_digit_rule: '63'
|
8932
9010
|
:iban_rule: '002002'
|
9011
|
+
'72070324':
|
9012
|
+
:check_digit_rule: '63'
|
9013
|
+
:iban_rule: '002002'
|
9014
|
+
'72070365':
|
9015
|
+
:check_digit_rule: '63'
|
9016
|
+
:iban_rule: '002002'
|
8933
9017
|
'72080001':
|
8934
9018
|
:check_digit_rule: '76'
|
8935
9019
|
:iban_rule: '000503'
|
@@ -9008,6 +9092,12 @@
|
|
9008
9092
|
'72170024':
|
9009
9093
|
:check_digit_rule: '63'
|
9010
9094
|
:iban_rule: '002002'
|
9095
|
+
'72170324':
|
9096
|
+
:check_digit_rule: '63'
|
9097
|
+
:iban_rule: '002002'
|
9098
|
+
'72170363':
|
9099
|
+
:check_digit_rule: '63'
|
9100
|
+
:iban_rule: '002002'
|
9011
9101
|
'72180002':
|
9012
9102
|
:check_digit_rule: '76'
|
9013
9103
|
:iban_rule: '000503'
|
@@ -9455,9 +9545,6 @@
|
|
9455
9545
|
'75090500':
|
9456
9546
|
:check_digit_rule: '84'
|
9457
9547
|
:iban_rule: '000000'
|
9458
|
-
'75090629':
|
9459
|
-
:check_digit_rule: A4
|
9460
|
-
:iban_rule: '001400'
|
9461
9548
|
'75090900':
|
9462
9549
|
:check_digit_rule: '91'
|
9463
9550
|
:iban_rule: '000000'
|
@@ -9650,6 +9737,12 @@
|
|
9650
9737
|
'76070024':
|
9651
9738
|
:check_digit_rule: '63'
|
9652
9739
|
:iban_rule: '002002'
|
9740
|
+
'76070324':
|
9741
|
+
:check_digit_rule: '63'
|
9742
|
+
:iban_rule: '002002'
|
9743
|
+
'76070361':
|
9744
|
+
:check_digit_rule: '63'
|
9745
|
+
:iban_rule: '002002'
|
9653
9746
|
'76080040':
|
9654
9747
|
:check_digit_rule: '76'
|
9655
9748
|
:iban_rule: '000503'
|
@@ -9677,9 +9770,6 @@
|
|
9677
9770
|
'76090500':
|
9678
9771
|
:check_digit_rule: '81'
|
9679
9772
|
:iban_rule: '000000'
|
9680
|
-
'76090613':
|
9681
|
-
:check_digit_rule: A4
|
9682
|
-
:iban_rule: '001400'
|
9683
9773
|
'76090900':
|
9684
9774
|
:check_digit_rule: '91'
|
9685
9775
|
:iban_rule: '000000'
|
@@ -9863,12 +9953,6 @@
|
|
9863
9953
|
'77365792':
|
9864
9954
|
:check_digit_rule: '88'
|
9865
9955
|
:iban_rule: '000000'
|
9866
|
-
'77390000':
|
9867
|
-
:check_digit_rule: '88'
|
9868
|
-
:iban_rule: '000000'
|
9869
|
-
'77390628':
|
9870
|
-
:check_digit_rule: A4
|
9871
|
-
:iban_rule: '001400'
|
9872
9956
|
'78020070':
|
9873
9957
|
:check_digit_rule: '99'
|
9874
9958
|
:iban_rule: '003200'
|
@@ -9980,9 +10064,6 @@
|
|
9980
10064
|
'79090000':
|
9981
10065
|
:check_digit_rule: '88'
|
9982
10066
|
:iban_rule: '000000'
|
9983
|
-
'79090624':
|
9984
|
-
:check_digit_rule: A4
|
9985
|
-
:iban_rule: '001400'
|
9986
10067
|
'79161058':
|
9987
10068
|
:check_digit_rule: '88'
|
9988
10069
|
:iban_rule: '000000'
|
@@ -10061,6 +10142,12 @@
|
|
10061
10142
|
'79570051':
|
10062
10143
|
:check_digit_rule: '63'
|
10063
10144
|
:iban_rule: '002002'
|
10145
|
+
'79570324':
|
10146
|
+
:check_digit_rule: '63'
|
10147
|
+
:iban_rule: '002002'
|
10148
|
+
'79570364':
|
10149
|
+
:check_digit_rule: '63'
|
10150
|
+
:iban_rule: '002002'
|
10064
10151
|
'79580099':
|
10065
10152
|
:check_digit_rule: '76'
|
10066
10153
|
:iban_rule: '000503'
|
@@ -10280,6 +10367,12 @@
|
|
10280
10367
|
'82070024':
|
10281
10368
|
:check_digit_rule: '63'
|
10282
10369
|
:iban_rule: '002002'
|
10370
|
+
'82070324':
|
10371
|
+
:check_digit_rule: '63'
|
10372
|
+
:iban_rule: '002002'
|
10373
|
+
'82070366':
|
10374
|
+
:check_digit_rule: '63'
|
10375
|
+
:iban_rule: '002002'
|
10283
10376
|
'82080000':
|
10284
10377
|
:check_digit_rule: '76'
|
10285
10378
|
:iban_rule: '000503'
|
@@ -10514,6 +10607,12 @@
|
|
10514
10607
|
'86070024':
|
10515
10608
|
:check_digit_rule: '63'
|
10516
10609
|
:iban_rule: '002002'
|
10610
|
+
'86070407':
|
10611
|
+
:check_digit_rule: '63'
|
10612
|
+
:iban_rule: '002002'
|
10613
|
+
'86070424':
|
10614
|
+
:check_digit_rule: '63'
|
10615
|
+
:iban_rule: '002002'
|
10517
10616
|
'86080000':
|
10518
10617
|
:check_digit_rule: '76'
|
10519
10618
|
:iban_rule: '000503'
|
@@ -10586,6 +10685,12 @@
|
|
10586
10685
|
'87070024':
|
10587
10686
|
:check_digit_rule: '63'
|
10588
10687
|
:iban_rule: '002002'
|
10688
|
+
'87070406':
|
10689
|
+
:check_digit_rule: '63'
|
10690
|
+
:iban_rule: '002002'
|
10691
|
+
'87070424':
|
10692
|
+
:check_digit_rule: '63'
|
10693
|
+
:iban_rule: '002002'
|
10589
10694
|
'87080000':
|
10590
10695
|
:check_digit_rule: '76'
|
10591
10696
|
:iban_rule: '000503'
|