@stbmoz-onboarding/core 1.1.3 → 1.1.5
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.
- package/Dates/dates.js +48 -1
- package/Dates/index.js +2 -2
- package/Utilities/maritalStatus.js +2 -2
- package/Utilities/provinces.js +1 -1
- package/Validations/index.js +12 -11
- package/Validations/rules.js +11 -0
- package/index.js +5 -5
- package/package.json +9 -9
- package/exemple +0 -606
package/Dates/dates.js
CHANGED
|
@@ -31,4 +31,51 @@ module.exports.ValidateDate = (values, key, errors, invalidDateMsg) => {
|
|
|
31
31
|
} catch (error) {
|
|
32
32
|
errors[key] = invalidDateMsg
|
|
33
33
|
}
|
|
34
|
-
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
module.exports.isValidRange = (date, rangeLimit) => {
|
|
38
|
+
let today = new Date()
|
|
39
|
+
let dateObj = new Date(date)
|
|
40
|
+
let range = today.getFullYear() - dateObj.getFullYear()
|
|
41
|
+
let m = today.getMonth() - dateObj.getMonth()
|
|
42
|
+
if (m < 0 || (m === 0 && today.getDate() < dateObj.getDate())) {
|
|
43
|
+
range--
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
console.log(range, rangeLimit)
|
|
47
|
+
if (range <= rangeLimit) return true
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
module.exports.isValidRangeFuture = (date, rangeLimit) => {
|
|
52
|
+
let today = new Date()
|
|
53
|
+
let dateObj = new Date(date)
|
|
54
|
+
let range = dateObj.getFullYear() - today.getFullYear()
|
|
55
|
+
let m = dateObj.getMonth() - today.getMonth()
|
|
56
|
+
if (m < 0 || (m === 0 && today.getDate() < dateObj.getDate())) {
|
|
57
|
+
range--
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
console.log(range, rangeLimit)
|
|
61
|
+
if (range <= rangeLimit) return true
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
module.exports.isInFuture = (date) => {
|
|
65
|
+
|
|
66
|
+
let today = new Date()
|
|
67
|
+
let dateObj = new Date(date)
|
|
68
|
+
if (dateObj <= today) {
|
|
69
|
+
return true
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
module.exports.isInPast = (date) => {
|
|
73
|
+
|
|
74
|
+
let today = new Date()
|
|
75
|
+
let dateObj = new Date(date)
|
|
76
|
+
// console.log(dateObj, today)
|
|
77
|
+
if (dateObj >= today) {
|
|
78
|
+
return true
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
package/Dates/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const { DateFormater, ValidateDate } = require("./dates")
|
|
1
|
+
const { DateFormater, ValidateDate, isValidRange, isInFuture, isInPast, isValidRangeFuture } = require("./dates")
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
module.exports = { DateFormater, ValidateDate }
|
|
4
|
+
module.exports = { DateFormater, ValidateDate, isValidRange, isInFuture, isInPast, isValidRangeFuture }
|
|
@@ -33,7 +33,7 @@ module.exports.maritalStatuses = [
|
|
|
33
33
|
FEMALE: 'Divorced'
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
|
|
36
|
+
/* {
|
|
37
37
|
value: 4,
|
|
38
38
|
pt: {
|
|
39
39
|
MALE: 'União de Factos',
|
|
@@ -43,7 +43,7 @@ module.exports.maritalStatuses = [
|
|
|
43
43
|
MALE: 'Consensual Union',
|
|
44
44
|
FEMALE: 'Consensual Union'
|
|
45
45
|
}
|
|
46
|
-
}
|
|
46
|
+
},*/
|
|
47
47
|
{
|
|
48
48
|
value: 5,
|
|
49
49
|
pt: {
|
package/Utilities/provinces.js
CHANGED
package/Validations/index.js
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
const {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
const {
|
|
2
|
+
isBIValid, isMinor, isOlder, isPDF, isValidCertificateNumber, isValidNuit,
|
|
3
|
+
WordsCount, allowedCharsOnly, containesWhiteSpace, isAboveMaxLength,
|
|
4
|
+
isContactValid, isEmailValid, isIn, isInteger, isLength, isMinLength,
|
|
5
|
+
isMinValue, isPasswordStrong, isSameAs, startsWith
|
|
6
|
+
} = require("./rules")
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
module.exports = {
|
|
9
|
+
isBIValid, isMinor, isOlder, isPDF, isValidCertificateNumber, isValidNuit,
|
|
10
|
+
WordsCount, allowedCharsOnly, containesWhiteSpace, isAboveMaxLength,
|
|
11
|
+
isContactValid, isEmailValid, isIn, isInteger, isLength, isMinLength,
|
|
12
|
+
isMinValue, isPasswordStrong, isSameAs, startsWith
|
|
13
|
+
}
|
package/Validations/rules.js
CHANGED
|
@@ -142,6 +142,17 @@ module.exports.isMinor = (dateOfBirth, ageLimit) => {
|
|
|
142
142
|
if (age >= ageLimit) return true
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
+
module.exports.isOlder = (dateOfBirth, ageLimit) =>{
|
|
146
|
+
let today = new Date()
|
|
147
|
+
let birthDate = new Date(dateOfBirth)
|
|
148
|
+
let age = today.getFullYear() - birthDate.getFullYear()
|
|
149
|
+
let m = today.getMonth() - birthDate.getMonth()
|
|
150
|
+
if (m < 0 || (m === 0 && today.getDate() < birthDate.getDate())) {
|
|
151
|
+
age--
|
|
152
|
+
}
|
|
153
|
+
if (age <= ageLimit) return true
|
|
154
|
+
}
|
|
155
|
+
|
|
145
156
|
module.exports.isBIValid = (BINumber) => {
|
|
146
157
|
if (/^([0-9]{12})+([A-Z]\b)$/.test(BINumber)) {
|
|
147
158
|
return true
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const { DateFormater, ValidateDate } = require("./Dates/dates")
|
|
1
|
+
const { DateFormater, ValidateDate, isValidRange, isInFuture, isInPast, isValidRangeFuture} = require("./Dates/dates")
|
|
2
2
|
const {
|
|
3
3
|
AllowedPrefixes, GenerateNumericPin, ReferenceGenerator, Sanitize, Serializer,
|
|
4
4
|
removeFile, SubArrayGenerator
|
|
@@ -20,18 +20,18 @@ const { districts } = require("./Utilities/districts")
|
|
|
20
20
|
const { segment, segments } = require("./Utilities/segments")
|
|
21
21
|
const { AllowedChars } = require("./Utilities/allowedChars")
|
|
22
22
|
const {
|
|
23
|
-
isBIValid, isMinor, isPDF, isValidCertificateNumber, isValidNuit,
|
|
23
|
+
isBIValid, isMinor, isOlder, isPDF, isValidCertificateNumber, isValidNuit,
|
|
24
24
|
WordsCount, allowedCharsOnly, containesWhiteSpace, isAboveMaxLength,
|
|
25
25
|
isContactValid, isEmailValid, isIn, isInteger, isLength, isMinLength,
|
|
26
26
|
isMinValue, isPasswordStrong, isSameAs, startsWith
|
|
27
27
|
} = require("./Validations/rules")
|
|
28
28
|
|
|
29
29
|
const { branch } = require("./Utilities/branch")
|
|
30
|
-
const { incomeFrequecies} = require("./Utilities/incomeFrequencies")
|
|
30
|
+
const { incomeFrequecies } = require("./Utilities/incomeFrequencies")
|
|
31
31
|
const { neighborhood } = require("./Utilities/neighborhood")
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
module.exports.Dates = { DateFormater, ValidateDate }
|
|
34
|
+
module.exports.Dates = { DateFormater, ValidateDate, isValidRange, isInFuture, isInPast,isValidRangeFuture }
|
|
35
35
|
|
|
36
36
|
module.exports.Functions = {
|
|
37
37
|
AllowedPrefixes, GenerateNumericPin, ReferenceGenerator, Sanitize, Serializer, removeFile,
|
|
@@ -46,7 +46,7 @@ module.exports.Utilities = {
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
module.exports.Validations = {
|
|
49
|
-
isBIValid, isMinor, isPDF, isValidCertificateNumber, isValidNuit,
|
|
49
|
+
isBIValid, isMinor, isOlder, isPDF, isValidCertificateNumber, isValidNuit,
|
|
50
50
|
WordsCount, allowedCharsOnly, containesWhiteSpace, isAboveMaxLength,
|
|
51
51
|
isContactValid, isEmailValid, isIn, isInteger, isLength, isMinLength,
|
|
52
52
|
isMinValue, isPasswordStrong, isSameAs, startsWith
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_args": [
|
|
3
3
|
[
|
|
4
|
-
"@stbmoz-onboarding/core@1.1.
|
|
4
|
+
"@stbmoz-onboarding/core@1.1.5",
|
|
5
5
|
"/Users/pedrodava/Desktop/Bank/RAO/frontend"
|
|
6
6
|
]
|
|
7
7
|
],
|
|
8
|
-
"_from": "@stbmoz-onboarding/core@^1.1.
|
|
9
|
-
"_id": "@stbmoz-onboarding/core@1.1.
|
|
8
|
+
"_from": "@stbmoz-onboarding/core@^1.1.5",
|
|
9
|
+
"_id": "@stbmoz-onboarding/core@1.1.5",
|
|
10
10
|
"_inBundle": false,
|
|
11
11
|
"_integrity": "sha512-49Uu6x1QbTWFMWRZQz1A28IjRmo8hA22izluXc5Y2yiDii51nvRvLj/Hu3AjGOYvHlWa+j8J1nVh0fmt93WCnA==",
|
|
12
12
|
"_location": "/@stbmoz-onboarding/core",
|
|
@@ -14,21 +14,21 @@
|
|
|
14
14
|
"_requested": {
|
|
15
15
|
"type": "range",
|
|
16
16
|
"registry": true,
|
|
17
|
-
"raw": "@stbmoz-onboarding/core@^1.1.
|
|
17
|
+
"raw": "@stbmoz-onboarding/core@^1.1.5",
|
|
18
18
|
"name": "@stbmoz-onboarding/core",
|
|
19
19
|
"escapedName": "@stbmoz-onboarding%2fcore",
|
|
20
20
|
"scope": "@stbmoz-onboarding",
|
|
21
|
-
"rawSpec": "^1.1.
|
|
21
|
+
"rawSpec": "^1.1.5",
|
|
22
22
|
"saveSpec": null,
|
|
23
|
-
"fetchSpec": "^1.1.
|
|
23
|
+
"fetchSpec": "^1.1.5"
|
|
24
24
|
},
|
|
25
25
|
"_requiredBy": [
|
|
26
26
|
"#USER",
|
|
27
27
|
"/"
|
|
28
28
|
],
|
|
29
|
-
"_resolved": "https://registry.npmjs.org/@stbmoz-onboarding/core/-/core-1.1.
|
|
29
|
+
"_resolved": "https://registry.npmjs.org/@stbmoz-onboarding/core/-/core-1.1.5.tgz",
|
|
30
30
|
"_shasum": "87974a4970b4ae2a12a290bb2ab0d415aab344d1",
|
|
31
|
-
"_spec": "@stbmoz-onboarding/core@^1.1.
|
|
31
|
+
"_spec": "@stbmoz-onboarding/core@^1.1.5",
|
|
32
32
|
"_where": "/Users/pedrodava/Desktop/Bank/RAO/frontend",
|
|
33
33
|
"author": "",
|
|
34
34
|
"bundleDependencies": false,
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
43
43
|
},
|
|
44
44
|
"type": "commonjs",
|
|
45
|
-
"version": "1.1.
|
|
45
|
+
"version": "1.1.5"
|
|
46
46
|
}
|
package/exemple
DELETED
|
@@ -1,606 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"110000": [
|
|
3
|
-
{
|
|
4
|
-
"id": "100000",
|
|
5
|
-
"description": "MAPUTO"
|
|
6
|
-
},
|
|
7
|
-
{
|
|
8
|
-
"id": "100100",
|
|
9
|
-
"description": "MATOLA"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"id": "100200",
|
|
13
|
-
"description": "BOANE"
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"id": "100300",
|
|
17
|
-
"description": "MAGUDE"
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"id": "100400",
|
|
21
|
-
"description": "MANHICA"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"id": "100500",
|
|
25
|
-
"description": "MARRACUENE"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"id": "100600",
|
|
29
|
-
"description": "MATUTUINE"
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
"id": "100700",
|
|
33
|
-
"description": "MOAMBA"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"id": "100800",
|
|
37
|
-
"description": "NAMAACHA"
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"10000": [
|
|
41
|
-
{
|
|
42
|
-
"id": "010100",
|
|
43
|
-
"description": "LICHINGA"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"id": "010200",
|
|
47
|
-
"description": "CUAMBA"
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"id": "010300",
|
|
51
|
-
"description": "LAGO"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"id": "010400",
|
|
55
|
-
"description": "LICHINGA"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"id": "010500",
|
|
59
|
-
"description": "MAJUNE"
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"id": "010600",
|
|
63
|
-
"description": "MANDIMBA"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"id": "010700",
|
|
67
|
-
"description": "MARRUPA"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"id": "010800",
|
|
71
|
-
"description": "MAUA"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"id": "010900",
|
|
75
|
-
"description": "MAVAGO"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"id": "011000",
|
|
79
|
-
"description": "MECANHELAS"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"id": "011100",
|
|
83
|
-
"description": "MECULA"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"id": "011200",
|
|
87
|
-
"description": "METARICA"
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"id": "011300",
|
|
91
|
-
"description": "MUEMBE"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"id": "011400",
|
|
95
|
-
"description": "NGAUMA"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"id": "011500",
|
|
99
|
-
"description": "NIPEPE"
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"id": "011600",
|
|
103
|
-
"description": "SANGA"
|
|
104
|
-
}
|
|
105
|
-
],
|
|
106
|
-
"20000": [
|
|
107
|
-
{
|
|
108
|
-
"id": "020100",
|
|
109
|
-
"description": "PEMBA"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"id": "020200",
|
|
113
|
-
"description": "ANCUABE"
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"id": "020300",
|
|
117
|
-
"description": "BALAMA"
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"id": "020400",
|
|
121
|
-
"description": "CHIURE"
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
"id": "020500",
|
|
125
|
-
"description": "IBO"
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"id": "020600",
|
|
129
|
-
"description": "MACOMIA"
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
"id": "020700",
|
|
133
|
-
"description": "MECUFI"
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"id": "020800",
|
|
137
|
-
"description": "MELUCO"
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
"id": "020900",
|
|
141
|
-
"description": "MOCIMBOA DA PRAIA"
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"id": "021000",
|
|
145
|
-
"description": "MONTEPUEZ"
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
"id": "021100",
|
|
149
|
-
"description": "MUEDA"
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
"id": "021200",
|
|
153
|
-
"description": "MUIDUMBE"
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"id": "021300",
|
|
157
|
-
"description": "NAMUNO"
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"id": "021400",
|
|
161
|
-
"description": "NANGADE"
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"id": "021500",
|
|
165
|
-
"description": "PALMA"
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"id": "021600",
|
|
169
|
-
"description": "PEMBA METUGE"
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
"id": "021700",
|
|
173
|
-
"description": "QUISSANGA"
|
|
174
|
-
}
|
|
175
|
-
],
|
|
176
|
-
"30000": [
|
|
177
|
-
{
|
|
178
|
-
"id": "030100",
|
|
179
|
-
"description": "NAMPULA"
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"id": "030200",
|
|
183
|
-
"description": "ANGOCHE"
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
"id": "030300",
|
|
187
|
-
"description": "NAMAPA ERATI"
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
"id": "030400",
|
|
191
|
-
"description": "ILHA DE MOCAMBIQUE"
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
"id": "030500",
|
|
195
|
-
"description": "LALAUA"
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
"id": "030600",
|
|
199
|
-
"description": "MALEMA"
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
"id": "030700",
|
|
203
|
-
"description": "MECONTA"
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
"id": "030800",
|
|
207
|
-
"description": "MECUBURI"
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"id": "030900",
|
|
211
|
-
"description": "MEMBA"
|
|
212
|
-
},
|
|
213
|
-
{
|
|
214
|
-
"id": "031000",
|
|
215
|
-
"description": "MOGINCUAL"
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"id": "031100",
|
|
219
|
-
"description": "MOGOVOLAS"
|
|
220
|
-
},
|
|
221
|
-
{
|
|
222
|
-
"id": "031200",
|
|
223
|
-
"description": "MOMA"
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
"id": "031300",
|
|
227
|
-
"description": "MONAPO"
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
"id": "031400",
|
|
231
|
-
"description": "MOSSURIL"
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
"id": "031500",
|
|
235
|
-
"description": "MUECATE"
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"id": "031600",
|
|
239
|
-
"description": "MURRUPULA"
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
"id": "031700",
|
|
243
|
-
"description": "NACALA PORTO"
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"id": "031800",
|
|
247
|
-
"description": "NACALA VELHA"
|
|
248
|
-
},
|
|
249
|
-
{
|
|
250
|
-
"id": "031900",
|
|
251
|
-
"description": "NACAROA"
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
"id": "032000",
|
|
255
|
-
"description": "NAMPULA"
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"id": "032100",
|
|
259
|
-
"description": "RIBAUE"
|
|
260
|
-
}
|
|
261
|
-
],
|
|
262
|
-
"40000": [
|
|
263
|
-
{
|
|
264
|
-
"id": "040100",
|
|
265
|
-
"description": "QUELIMANE"
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"id": "040200",
|
|
269
|
-
"description": "ALTO MOLOCUE"
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"id": "040300",
|
|
273
|
-
"description": "CHINDE"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"id": "040400",
|
|
277
|
-
"description": "GILE"
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
"id": "040500",
|
|
281
|
-
"description": "GURUE"
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
"id": "040600",
|
|
285
|
-
"description": "ILE"
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"id": "040700",
|
|
289
|
-
"description": "INHASSUNGE"
|
|
290
|
-
},
|
|
291
|
-
{
|
|
292
|
-
"id": "040800",
|
|
293
|
-
"description": "LUGELA"
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
"id": "040900",
|
|
297
|
-
"description": "MAGANJA DA COSTA"
|
|
298
|
-
},
|
|
299
|
-
{
|
|
300
|
-
"id": "041000",
|
|
301
|
-
"description": "MILANGE"
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
"id": "041100",
|
|
305
|
-
"description": "MOCUBA"
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"id": "041200",
|
|
309
|
-
"description": "MOPEIA"
|
|
310
|
-
},
|
|
311
|
-
{
|
|
312
|
-
"id": "041300",
|
|
313
|
-
"description": "MORRUMBALA"
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"id": "041400",
|
|
317
|
-
"description": "NAMACURRA"
|
|
318
|
-
},
|
|
319
|
-
{
|
|
320
|
-
"id": "041500",
|
|
321
|
-
"description": "NAMARROI"
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"id": "041600",
|
|
325
|
-
"description": "NICODALA"
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
"id": "041700",
|
|
329
|
-
"description": "PEBANE"
|
|
330
|
-
}
|
|
331
|
-
],
|
|
332
|
-
"50000": [
|
|
333
|
-
{
|
|
334
|
-
"id": "050100",
|
|
335
|
-
"description": "TETE"
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
"id": "050200",
|
|
339
|
-
"description": "ANGONIA"
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
"id": "050201",
|
|
343
|
-
"description": "Ulongue"
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"id": "050300",
|
|
347
|
-
"description": "CAHORA-BASSA"
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
"id": "050301",
|
|
351
|
-
"description": "Songo"
|
|
352
|
-
},
|
|
353
|
-
{
|
|
354
|
-
"id": "050400",
|
|
355
|
-
"description": "CHANGARA"
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"id": "050500",
|
|
359
|
-
"description": "CHIFUNDE"
|
|
360
|
-
},
|
|
361
|
-
{
|
|
362
|
-
"id": "050600",
|
|
363
|
-
"description": "CHIUTA"
|
|
364
|
-
},
|
|
365
|
-
{
|
|
366
|
-
"id": "050700",
|
|
367
|
-
"description": "MACANGA"
|
|
368
|
-
},
|
|
369
|
-
{
|
|
370
|
-
"id": "050800",
|
|
371
|
-
"description": "MAGOE"
|
|
372
|
-
},
|
|
373
|
-
{
|
|
374
|
-
"id": "050900",
|
|
375
|
-
"description": "MARAVIA"
|
|
376
|
-
},
|
|
377
|
-
{
|
|
378
|
-
"id": "051000",
|
|
379
|
-
"description": "MOATIZE"
|
|
380
|
-
},
|
|
381
|
-
{
|
|
382
|
-
"id": "051100",
|
|
383
|
-
"description": "MUTARARA"
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
"id": "051200",
|
|
387
|
-
"description": "TSANGANO"
|
|
388
|
-
},
|
|
389
|
-
{
|
|
390
|
-
"id": "051300",
|
|
391
|
-
"description": "ZUMBO"
|
|
392
|
-
}
|
|
393
|
-
],
|
|
394
|
-
"60000": [
|
|
395
|
-
{
|
|
396
|
-
"id": "060100",
|
|
397
|
-
"description": "CHIMOIO"
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
"id": "060200",
|
|
401
|
-
"description": "BARUE"
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
"id": "060300",
|
|
405
|
-
"description": "GONDOLA"
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
"id": "060400",
|
|
409
|
-
"description": "GURO"
|
|
410
|
-
},
|
|
411
|
-
{
|
|
412
|
-
"id": "060500",
|
|
413
|
-
"description": "MACHAZE"
|
|
414
|
-
},
|
|
415
|
-
{
|
|
416
|
-
"id": "060600",
|
|
417
|
-
"description": "MACOSSA"
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
"id": "060700",
|
|
421
|
-
"description": "MANICA"
|
|
422
|
-
},
|
|
423
|
-
{
|
|
424
|
-
"id": "060800",
|
|
425
|
-
"description": "MOSSURIZE"
|
|
426
|
-
},
|
|
427
|
-
{
|
|
428
|
-
"id": "060900",
|
|
429
|
-
"description": "SUSSUNDENGA"
|
|
430
|
-
},
|
|
431
|
-
{
|
|
432
|
-
"id": "061000",
|
|
433
|
-
"description": "TAMBARA"
|
|
434
|
-
}
|
|
435
|
-
],
|
|
436
|
-
"70000": [
|
|
437
|
-
{
|
|
438
|
-
"id": "070100",
|
|
439
|
-
"description": "BEIRA"
|
|
440
|
-
},
|
|
441
|
-
{
|
|
442
|
-
"id": "070200",
|
|
443
|
-
"description": "BUZI"
|
|
444
|
-
},
|
|
445
|
-
{
|
|
446
|
-
"id": "070300",
|
|
447
|
-
"description": "CAIA"
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
"id": "070400",
|
|
451
|
-
"description": "CHEMBA"
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
"id": "070500",
|
|
455
|
-
"description": "CHERINGOMA"
|
|
456
|
-
},
|
|
457
|
-
{
|
|
458
|
-
"id": "070600",
|
|
459
|
-
"description": "CHIBABAVA"
|
|
460
|
-
},
|
|
461
|
-
{
|
|
462
|
-
"id": "070700",
|
|
463
|
-
"description": "DONDO"
|
|
464
|
-
},
|
|
465
|
-
{
|
|
466
|
-
"id": "070800",
|
|
467
|
-
"description": "GORONGOSA"
|
|
468
|
-
},
|
|
469
|
-
{
|
|
470
|
-
"id": "070900",
|
|
471
|
-
"description": "MACHANGA"
|
|
472
|
-
},
|
|
473
|
-
{
|
|
474
|
-
"id": "071000",
|
|
475
|
-
"description": "MARINGUE"
|
|
476
|
-
},
|
|
477
|
-
{
|
|
478
|
-
"id": "071100",
|
|
479
|
-
"description": "MARROMEU"
|
|
480
|
-
},
|
|
481
|
-
{
|
|
482
|
-
"id": "071200",
|
|
483
|
-
"description": "MUANZA"
|
|
484
|
-
},
|
|
485
|
-
{
|
|
486
|
-
"id": "071300",
|
|
487
|
-
"description": "NHAMATANDA"
|
|
488
|
-
}
|
|
489
|
-
],
|
|
490
|
-
"80000": [
|
|
491
|
-
{
|
|
492
|
-
"id": "080100",
|
|
493
|
-
"description": "INHAMBANE"
|
|
494
|
-
},
|
|
495
|
-
{
|
|
496
|
-
"id": "080200",
|
|
497
|
-
"description": "FUNHALOURO"
|
|
498
|
-
},
|
|
499
|
-
{
|
|
500
|
-
"id": "080300",
|
|
501
|
-
"description": "GOVURO"
|
|
502
|
-
},
|
|
503
|
-
{
|
|
504
|
-
"id": "080400",
|
|
505
|
-
"description": "HOMOINE"
|
|
506
|
-
},
|
|
507
|
-
{
|
|
508
|
-
"id": "080500",
|
|
509
|
-
"description": "INHARRIME"
|
|
510
|
-
},
|
|
511
|
-
{
|
|
512
|
-
"id": "080600",
|
|
513
|
-
"description": "INHASSORO"
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"id": "080700",
|
|
517
|
-
"description": "JANGAMO"
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
"id": "080800",
|
|
521
|
-
"description": "MABOTE"
|
|
522
|
-
},
|
|
523
|
-
{
|
|
524
|
-
"id": "080900",
|
|
525
|
-
"description": "MASSINGA"
|
|
526
|
-
},
|
|
527
|
-
{
|
|
528
|
-
"id": "081000",
|
|
529
|
-
"description": "MAXIXE"
|
|
530
|
-
},
|
|
531
|
-
{
|
|
532
|
-
"id": "081100",
|
|
533
|
-
"description": "MORRUMBENE"
|
|
534
|
-
},
|
|
535
|
-
{
|
|
536
|
-
"id": "081200",
|
|
537
|
-
"description": "PANDA"
|
|
538
|
-
},
|
|
539
|
-
{
|
|
540
|
-
"id": "081300",
|
|
541
|
-
"description": "VILANKULO"
|
|
542
|
-
},
|
|
543
|
-
{
|
|
544
|
-
"id": "081400",
|
|
545
|
-
"description": "ZAVALA"
|
|
546
|
-
},
|
|
547
|
-
{
|
|
548
|
-
"id": "888888",
|
|
549
|
-
"description": "NAO ESPECIFICADO"
|
|
550
|
-
}
|
|
551
|
-
],
|
|
552
|
-
"90000": [
|
|
553
|
-
{
|
|
554
|
-
"id": "090100",
|
|
555
|
-
"description": "XAI-XAI"
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
"id": "090200",
|
|
559
|
-
"description": "BILENE MACIA"
|
|
560
|
-
},
|
|
561
|
-
{
|
|
562
|
-
"id": "090300",
|
|
563
|
-
"description": "CHIBUTO"
|
|
564
|
-
},
|
|
565
|
-
{
|
|
566
|
-
"id": "090400",
|
|
567
|
-
"description": "CHICUALACUALA"
|
|
568
|
-
},
|
|
569
|
-
{
|
|
570
|
-
"id": "090500",
|
|
571
|
-
"description": "CHIGUBO"
|
|
572
|
-
},
|
|
573
|
-
{
|
|
574
|
-
"id": "090600",
|
|
575
|
-
"description": "CHOKWE"
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
"id": "090700",
|
|
579
|
-
"description": "GUIJA"
|
|
580
|
-
},
|
|
581
|
-
{
|
|
582
|
-
"id": "090800",
|
|
583
|
-
"description": "MABALANE"
|
|
584
|
-
},
|
|
585
|
-
{
|
|
586
|
-
"id": "090900",
|
|
587
|
-
"description": "MANDLACAZE"
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
"id": "091000",
|
|
591
|
-
"description": "MASSANGENA"
|
|
592
|
-
},
|
|
593
|
-
{
|
|
594
|
-
"id": "091100",
|
|
595
|
-
"description": "MASSINGIR"
|
|
596
|
-
},
|
|
597
|
-
{
|
|
598
|
-
"id": "999990",
|
|
599
|
-
"description": "DESCONHECIDO"
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
"id": "999999",
|
|
603
|
-
"description": "DESCONHECIDO"
|
|
604
|
-
}
|
|
605
|
-
]
|
|
606
|
-
}
|