@zkpassport/sdk 0.9.1 → 0.11.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/constants.cjs +1 -1
- package/dist/cjs/constants.d.cts +1 -1
- package/dist/cjs/index.cjs +260 -115
- package/dist/cjs/public-input-checker.cjs +167 -47
- package/dist/cjs/public-input-checker.d.cts +1 -0
- package/dist/cjs/solidity-verifier.cjs +79 -56
- package/dist/esm/{chunk-OOHOBXGU.js → chunk-6FIXE2II.js} +169 -49
- package/dist/esm/chunk-7UUZHRZ3.js +2564 -0
- package/dist/esm/{chunk-VJZDMGW3.js → chunk-JG37KYXW.js} +1 -1
- package/dist/esm/constants.d.ts +1 -1
- package/dist/esm/constants.js +1 -1
- package/dist/esm/index.js +16 -14
- package/dist/esm/public-input-checker.d.ts +1 -0
- package/dist/esm/public-input-checker.js +2 -2
- package/dist/esm/solidity-verifier.js +2 -2
- package/package.json +5 -5
- package/dist/esm/chunk-OTQ7QDA2.js +0 -2541
package/dist/cjs/index.cjs
CHANGED
|
@@ -65,7 +65,7 @@ var import_utils = require("@zkpassport/utils");
|
|
|
65
65
|
var import_registry = require("@zkpassport/registry");
|
|
66
66
|
|
|
67
67
|
// src/constants.ts
|
|
68
|
-
var VERSION = "0.
|
|
68
|
+
var VERSION = "0.10.0";
|
|
69
69
|
var DEFAULT_VALIDITY = 7 * 24 * 60 * 60;
|
|
70
70
|
var DEFAULT_DATE_VALUE = /* @__PURE__ */ new Date(0);
|
|
71
71
|
var ZKPASSPORT_IOS_APP_ID_HASH = "0x1fa73686cf510f8f85757b0602de0dd72a13e68ae2092462be8b72662e7f179b";
|
|
@@ -1006,12 +1006,6 @@ var PublicInputChecker = class {
|
|
|
1006
1006
|
};
|
|
1007
1007
|
}
|
|
1008
1008
|
const EXPECTED_ENVIRONMENT = "production";
|
|
1009
|
-
console.log("facematchCommittedInputs.environment", facematchCommittedInputs.environment);
|
|
1010
|
-
console.log("EXPECTED_ENVIRONMENT", EXPECTED_ENVIRONMENT);
|
|
1011
|
-
console.log(
|
|
1012
|
-
"facematchCommittedInputs.environment !== EXPECTED_ENVIRONMENT",
|
|
1013
|
-
facematchCommittedInputs.environment !== EXPECTED_ENVIRONMENT
|
|
1014
|
-
);
|
|
1015
1009
|
if (facematchCommittedInputs.environment !== EXPECTED_ENVIRONMENT) {
|
|
1016
1010
|
console.warn("Invalid facematch environment, it should be production");
|
|
1017
1011
|
isCorrect = false;
|
|
@@ -1024,7 +1018,7 @@ var PublicInputChecker = class {
|
|
|
1024
1018
|
}
|
|
1025
1019
|
};
|
|
1026
1020
|
}
|
|
1027
|
-
if (facematchCommittedInputs.
|
|
1021
|
+
if (facematchCommittedInputs.appIdHash !== ZKPASSPORT_IOS_APP_ID_HASH && facematchCommittedInputs.appIdHash !== ZKPASSPORT_ANDROID_APP_ID_HASH) {
|
|
1028
1022
|
console.warn(
|
|
1029
1023
|
"Invalid facematch app id hash, the attestation should be coming from the ZKPassport app"
|
|
1030
1024
|
);
|
|
@@ -1033,7 +1027,7 @@ var PublicInputChecker = class {
|
|
|
1033
1027
|
...queryResultErrors.facematch,
|
|
1034
1028
|
eq: {
|
|
1035
1029
|
expected: `${ZKPASSPORT_IOS_APP_ID_HASH} (iOS) or ${ZKPASSPORT_ANDROID_APP_ID_HASH} (Android)`,
|
|
1036
|
-
received: facematchCommittedInputs.
|
|
1030
|
+
received: facematchCommittedInputs.appIdHash,
|
|
1037
1031
|
message: "Invalid facematch app id hash, the attestation should be coming from the ZKPassport app"
|
|
1038
1032
|
}
|
|
1039
1033
|
};
|
|
@@ -1041,6 +1035,36 @@ var PublicInputChecker = class {
|
|
|
1041
1035
|
}
|
|
1042
1036
|
return { isCorrect, queryResultErrors };
|
|
1043
1037
|
}
|
|
1038
|
+
static async checkCurrentDate(circuitName, proofData, validity, queryResultErrors) {
|
|
1039
|
+
const currentTime = /* @__PURE__ */ new Date();
|
|
1040
|
+
const today = new Date(
|
|
1041
|
+
currentTime.getFullYear(),
|
|
1042
|
+
currentTime.getMonth(),
|
|
1043
|
+
currentTime.getDate(),
|
|
1044
|
+
0,
|
|
1045
|
+
0,
|
|
1046
|
+
0,
|
|
1047
|
+
0
|
|
1048
|
+
);
|
|
1049
|
+
const currentDate = (0, import_utils.getCurrentDateFromDisclosureProof)(proofData);
|
|
1050
|
+
const todayToCurrentDate = today.getTime() - currentDate.getTime();
|
|
1051
|
+
const expectedDifference = validity ? validity * 1e3 : DEFAULT_VALIDITY * 1e3;
|
|
1052
|
+
const actualDifference = today.getTime() - (today.getTime() - expectedDifference);
|
|
1053
|
+
let isCorrect = true;
|
|
1054
|
+
if (todayToCurrentDate >= actualDifference) {
|
|
1055
|
+
console.warn("The date used to check the validity of the ID falls out of the validity period");
|
|
1056
|
+
isCorrect = false;
|
|
1057
|
+
if (!queryResultErrors[circuitName]) {
|
|
1058
|
+
queryResultErrors[circuitName] = {};
|
|
1059
|
+
}
|
|
1060
|
+
queryResultErrors[circuitName].date = {
|
|
1061
|
+
expected: `Difference: ${validity} seconds`,
|
|
1062
|
+
received: `Difference: ${Math.round(todayToCurrentDate / 1e3)} seconds`,
|
|
1063
|
+
message: "The date used to check the validity of the ID falls out of the validity period"
|
|
1064
|
+
};
|
|
1065
|
+
}
|
|
1066
|
+
return { isCorrect, queryResultErrors };
|
|
1067
|
+
}
|
|
1044
1068
|
static async checkPublicInputs(domain, proofs, queryResult, validity, scope) {
|
|
1045
1069
|
let commitmentIn;
|
|
1046
1070
|
let commitmentOut;
|
|
@@ -1169,14 +1193,9 @@ var PublicInputChecker = class {
|
|
|
1169
1193
|
if (!!committedInputs?.compare_age || !!committedInputs?.compare_age_evm) {
|
|
1170
1194
|
const ageCommittedInputs = committedInputs?.compare_age ?? committedInputs?.compare_age_evm;
|
|
1171
1195
|
const ageParameterCommitment = isForEVM ? await (0, import_utils.getAgeEVMParameterCommitment)(
|
|
1172
|
-
ageCommittedInputs.currentDateTimestamp,
|
|
1173
1196
|
ageCommittedInputs.minAge,
|
|
1174
1197
|
ageCommittedInputs.maxAge
|
|
1175
|
-
) : await (0, import_utils.getAgeParameterCommitment)(
|
|
1176
|
-
ageCommittedInputs.currentDateTimestamp,
|
|
1177
|
-
ageCommittedInputs.minAge,
|
|
1178
|
-
ageCommittedInputs.maxAge
|
|
1179
|
-
);
|
|
1198
|
+
) : await (0, import_utils.getAgeParameterCommitment)(ageCommittedInputs.minAge, ageCommittedInputs.maxAge);
|
|
1180
1199
|
if (!paramCommitments.includes(ageParameterCommitment)) {
|
|
1181
1200
|
console.warn("This proof does not verify the age");
|
|
1182
1201
|
isCorrect = false;
|
|
@@ -1200,16 +1219,12 @@ var PublicInputChecker = class {
|
|
|
1200
1219
|
const birthdateCommittedInputs = committedInputs?.compare_birthdate ?? committedInputs?.compare_birthdate_evm;
|
|
1201
1220
|
const birthdateParameterCommitment = isForEVM ? await (0, import_utils.getDateEVMParameterCommitment)(
|
|
1202
1221
|
import_utils.ProofType.BIRTHDATE,
|
|
1203
|
-
birthdateCommittedInputs.currentDateTimestamp,
|
|
1204
1222
|
birthdateCommittedInputs.minDateTimestamp,
|
|
1205
|
-
birthdateCommittedInputs.maxDateTimestamp
|
|
1206
|
-
0
|
|
1223
|
+
birthdateCommittedInputs.maxDateTimestamp
|
|
1207
1224
|
) : await (0, import_utils.getDateParameterCommitment)(
|
|
1208
1225
|
import_utils.ProofType.BIRTHDATE,
|
|
1209
|
-
birthdateCommittedInputs.currentDateTimestamp,
|
|
1210
1226
|
birthdateCommittedInputs.minDateTimestamp,
|
|
1211
|
-
birthdateCommittedInputs.maxDateTimestamp
|
|
1212
|
-
0
|
|
1227
|
+
birthdateCommittedInputs.maxDateTimestamp
|
|
1213
1228
|
);
|
|
1214
1229
|
if (!paramCommitments.includes(birthdateParameterCommitment)) {
|
|
1215
1230
|
console.warn("This proof does not verify the birthdate");
|
|
@@ -1239,7 +1254,6 @@ var PublicInputChecker = class {
|
|
|
1239
1254
|
expiryCommittedInputs.maxDateTimestamp
|
|
1240
1255
|
) : await (0, import_utils.getDateParameterCommitment)(
|
|
1241
1256
|
import_utils.ProofType.EXPIRY_DATE,
|
|
1242
|
-
expiryCommittedInputs.currentDateTimestamp,
|
|
1243
1257
|
expiryCommittedInputs.minDateTimestamp,
|
|
1244
1258
|
expiryCommittedInputs.maxDateTimestamp
|
|
1245
1259
|
);
|
|
@@ -1443,7 +1457,11 @@ var PublicInputChecker = class {
|
|
|
1443
1457
|
if (!!committedInputs?.exclusion_check_sanctions || !!committedInputs?.exclusion_check_sanctions_evm) {
|
|
1444
1458
|
const sanctionsBuilder = await import_utils.SanctionsBuilder.create();
|
|
1445
1459
|
const exclusionCheckSanctionsCommittedInputs = committedInputs?.exclusion_check_sanctions ?? committedInputs?.exclusion_check_sanctions_evm;
|
|
1446
|
-
const exclusionCheckSanctionsParameterCommitment = isForEVM ? await sanctionsBuilder.getSanctionsEvmParameterCommitment(
|
|
1460
|
+
const exclusionCheckSanctionsParameterCommitment = isForEVM ? await sanctionsBuilder.getSanctionsEvmParameterCommitment(
|
|
1461
|
+
exclusionCheckSanctionsCommittedInputs.isStrict
|
|
1462
|
+
) : await sanctionsBuilder.getSanctionsParameterCommitment(
|
|
1463
|
+
exclusionCheckSanctionsCommittedInputs.isStrict
|
|
1464
|
+
);
|
|
1447
1465
|
if (!paramCommitments.includes(exclusionCheckSanctionsParameterCommitment)) {
|
|
1448
1466
|
console.warn("This proof does not verify the exclusion from the sanction lists");
|
|
1449
1467
|
isCorrect = false;
|
|
@@ -1475,12 +1493,12 @@ var PublicInputChecker = class {
|
|
|
1475
1493
|
const facematchParameterCommitment = isForEVM ? await (0, import_utils.getFacematchEvmParameterCommitment)(
|
|
1476
1494
|
BigInt(facematchCommittedInputs.rootKeyLeaf),
|
|
1477
1495
|
facematchCommittedInputs.environment === "development" ? 0n : 1n,
|
|
1478
|
-
BigInt(facematchCommittedInputs.
|
|
1496
|
+
BigInt(facematchCommittedInputs.appIdHash),
|
|
1479
1497
|
facematchCommittedInputs.mode === "regular" ? 1n : 2n
|
|
1480
1498
|
) : await (0, import_utils.getFacematchParameterCommitment)(
|
|
1481
1499
|
BigInt(facematchCommittedInputs.rootKeyLeaf),
|
|
1482
1500
|
facematchCommittedInputs.environment === "development" ? 0n : 1n,
|
|
1483
|
-
BigInt(facematchCommittedInputs.
|
|
1501
|
+
BigInt(facematchCommittedInputs.appIdHash),
|
|
1484
1502
|
facematchCommittedInputs.mode === "regular" ? 1n : 2n
|
|
1485
1503
|
);
|
|
1486
1504
|
if (!paramCommitments.includes(facematchParameterCommitment)) {
|
|
@@ -1552,24 +1570,6 @@ var PublicInputChecker = class {
|
|
|
1552
1570
|
};
|
|
1553
1571
|
}
|
|
1554
1572
|
commitmentOut = (0, import_utils.getCommitmentOutFromIntegrityProof)(proofData);
|
|
1555
|
-
const currentDate = (0, import_utils.getCurrentDateFromIntegrityProof)(proofData);
|
|
1556
|
-
const todayToCurrentDate = today.getTime() - currentDate.getTime();
|
|
1557
|
-
const expectedDifference = validity ? validity * 1e3 : DEFAULT_VALIDITY * 1e3;
|
|
1558
|
-
const actualDifference = today.getTime() - (today.getTime() - expectedDifference);
|
|
1559
|
-
if (todayToCurrentDate >= actualDifference) {
|
|
1560
|
-
console.warn(
|
|
1561
|
-
`The date used to check the validity of the ID is older than the validity period`
|
|
1562
|
-
);
|
|
1563
|
-
isCorrect = false;
|
|
1564
|
-
queryResultErrors.data_check_integrity = {
|
|
1565
|
-
...queryResultErrors.data_check_integrity,
|
|
1566
|
-
date: {
|
|
1567
|
-
expected: `Difference: ${validity} seconds`,
|
|
1568
|
-
received: `Difference: ${Math.round(todayToCurrentDate / 1e3)} seconds`,
|
|
1569
|
-
message: "The date used to check the validity of the ID is older than the validity period"
|
|
1570
|
-
}
|
|
1571
|
-
};
|
|
1572
|
-
}
|
|
1573
1573
|
} else if (proof.name === "disclose_bytes") {
|
|
1574
1574
|
commitmentIn = (0, import_utils.getCommitmentInFromDisclosureProof)(proofData);
|
|
1575
1575
|
if (commitmentIn !== commitmentOut) {
|
|
@@ -1622,6 +1622,17 @@ var PublicInputChecker = class {
|
|
|
1622
1622
|
...queryResultErrorsDisclose,
|
|
1623
1623
|
...queryResultErrorsScope
|
|
1624
1624
|
};
|
|
1625
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1626
|
+
"disclose",
|
|
1627
|
+
proofData,
|
|
1628
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1629
|
+
queryResultErrors
|
|
1630
|
+
);
|
|
1631
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1632
|
+
queryResultErrors = {
|
|
1633
|
+
...queryResultErrors,
|
|
1634
|
+
...queryResultErrorsCurrentDate
|
|
1635
|
+
};
|
|
1625
1636
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1626
1637
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1627
1638
|
} else if (proof.name === "compare_age") {
|
|
@@ -1643,7 +1654,6 @@ var PublicInputChecker = class {
|
|
|
1643
1654
|
const paramCommitment = (0, import_utils.getParameterCommitmentFromDisclosureProof)(proofData);
|
|
1644
1655
|
const committedInputs = proof.committedInputs?.compare_age;
|
|
1645
1656
|
const calculatedParamCommitment = await (0, import_utils.getAgeParameterCommitment)(
|
|
1646
|
-
committedInputs.currentDateTimestamp,
|
|
1647
1657
|
committedInputs.minAge,
|
|
1648
1658
|
committedInputs.maxAge
|
|
1649
1659
|
);
|
|
@@ -1669,6 +1679,17 @@ var PublicInputChecker = class {
|
|
|
1669
1679
|
...queryResultErrorsAge,
|
|
1670
1680
|
...queryResultErrorsScope
|
|
1671
1681
|
};
|
|
1682
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1683
|
+
"age",
|
|
1684
|
+
proofData,
|
|
1685
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1686
|
+
queryResultErrors
|
|
1687
|
+
);
|
|
1688
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1689
|
+
queryResultErrors = {
|
|
1690
|
+
...queryResultErrors,
|
|
1691
|
+
...queryResultErrorsCurrentDate
|
|
1692
|
+
};
|
|
1672
1693
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1673
1694
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1674
1695
|
} else if (proof.name === "compare_birthdate") {
|
|
@@ -1691,7 +1712,6 @@ var PublicInputChecker = class {
|
|
|
1691
1712
|
const committedInputs = proof.committedInputs?.compare_birthdate;
|
|
1692
1713
|
const calculatedParamCommitment = await (0, import_utils.getDateParameterCommitment)(
|
|
1693
1714
|
import_utils.ProofType.BIRTHDATE,
|
|
1694
|
-
committedInputs.currentDateTimestamp,
|
|
1695
1715
|
committedInputs.minDateTimestamp,
|
|
1696
1716
|
committedInputs.maxDateTimestamp,
|
|
1697
1717
|
0
|
|
@@ -1724,6 +1744,17 @@ var PublicInputChecker = class {
|
|
|
1724
1744
|
...queryResultErrorsBirthdate,
|
|
1725
1745
|
...queryResultErrorsScope
|
|
1726
1746
|
};
|
|
1747
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1748
|
+
"birthdate",
|
|
1749
|
+
proofData,
|
|
1750
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1751
|
+
queryResultErrors
|
|
1752
|
+
);
|
|
1753
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1754
|
+
queryResultErrors = {
|
|
1755
|
+
...queryResultErrors,
|
|
1756
|
+
...queryResultErrorsCurrentDate
|
|
1757
|
+
};
|
|
1727
1758
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1728
1759
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1729
1760
|
} else if (proof.name === "compare_expiry") {
|
|
@@ -1746,7 +1777,6 @@ var PublicInputChecker = class {
|
|
|
1746
1777
|
const committedInputs = proof.committedInputs?.compare_expiry;
|
|
1747
1778
|
const calculatedParamCommitment = await (0, import_utils.getDateParameterCommitment)(
|
|
1748
1779
|
import_utils.ProofType.EXPIRY_DATE,
|
|
1749
|
-
committedInputs.currentDateTimestamp,
|
|
1750
1780
|
committedInputs.minDateTimestamp,
|
|
1751
1781
|
committedInputs.maxDateTimestamp
|
|
1752
1782
|
);
|
|
@@ -1778,6 +1808,17 @@ var PublicInputChecker = class {
|
|
|
1778
1808
|
...queryResultErrorsExpiryDate,
|
|
1779
1809
|
...queryResultErrorsScope
|
|
1780
1810
|
};
|
|
1811
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1812
|
+
"expiry_date",
|
|
1813
|
+
proofData,
|
|
1814
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1815
|
+
queryResultErrors
|
|
1816
|
+
);
|
|
1817
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1818
|
+
queryResultErrors = {
|
|
1819
|
+
...queryResultErrors,
|
|
1820
|
+
...queryResultErrorsCurrentDate
|
|
1821
|
+
};
|
|
1781
1822
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1782
1823
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1783
1824
|
} else if (proof.name === "exclusion_check_nationality") {
|
|
@@ -1834,6 +1875,17 @@ var PublicInputChecker = class {
|
|
|
1834
1875
|
...queryResultErrorsNationalityExclusion,
|
|
1835
1876
|
...queryResultErrorsScope
|
|
1836
1877
|
};
|
|
1878
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1879
|
+
"nationality",
|
|
1880
|
+
proofData,
|
|
1881
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1882
|
+
queryResultErrors
|
|
1883
|
+
);
|
|
1884
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1885
|
+
queryResultErrors = {
|
|
1886
|
+
...queryResultErrors,
|
|
1887
|
+
...queryResultErrorsCurrentDate
|
|
1888
|
+
};
|
|
1837
1889
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1838
1890
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1839
1891
|
} else if (proof.name === "exclusion_check_issuing_country") {
|
|
@@ -1890,6 +1942,17 @@ var PublicInputChecker = class {
|
|
|
1890
1942
|
...queryResultErrorsIssuingCountryExclusion,
|
|
1891
1943
|
...queryResultErrorsScope
|
|
1892
1944
|
};
|
|
1945
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1946
|
+
"issuing_country",
|
|
1947
|
+
proofData,
|
|
1948
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1949
|
+
queryResultErrors
|
|
1950
|
+
);
|
|
1951
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1952
|
+
queryResultErrors = {
|
|
1953
|
+
...queryResultErrors,
|
|
1954
|
+
...queryResultErrorsCurrentDate
|
|
1955
|
+
};
|
|
1893
1956
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1894
1957
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1895
1958
|
} else if (proof.name === "inclusion_check_nationality") {
|
|
@@ -1946,6 +2009,17 @@ var PublicInputChecker = class {
|
|
|
1946
2009
|
...queryResultErrorsNationalityInclusion,
|
|
1947
2010
|
...queryResultErrorsScope
|
|
1948
2011
|
};
|
|
2012
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
2013
|
+
"nationality",
|
|
2014
|
+
proofData,
|
|
2015
|
+
validity ?? DEFAULT_VALIDITY,
|
|
2016
|
+
queryResultErrors
|
|
2017
|
+
);
|
|
2018
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
2019
|
+
queryResultErrors = {
|
|
2020
|
+
...queryResultErrors,
|
|
2021
|
+
...queryResultErrorsCurrentDate
|
|
2022
|
+
};
|
|
1949
2023
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1950
2024
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1951
2025
|
} else if (proof.name === "inclusion_check_issuing_country") {
|
|
@@ -2002,6 +2076,17 @@ var PublicInputChecker = class {
|
|
|
2002
2076
|
...queryResultErrorsIssuingCountryInclusion,
|
|
2003
2077
|
...queryResultErrorsScope
|
|
2004
2078
|
};
|
|
2079
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
2080
|
+
"issuing_country",
|
|
2081
|
+
proofData,
|
|
2082
|
+
validity ?? DEFAULT_VALIDITY,
|
|
2083
|
+
queryResultErrors
|
|
2084
|
+
);
|
|
2085
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
2086
|
+
queryResultErrors = {
|
|
2087
|
+
...queryResultErrors,
|
|
2088
|
+
...queryResultErrorsCurrentDate
|
|
2089
|
+
};
|
|
2005
2090
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
2006
2091
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
2007
2092
|
} else if (proof.name === "bind") {
|
|
@@ -2028,12 +2113,25 @@ var PublicInputChecker = class {
|
|
|
2028
2113
|
...queryResultErrors,
|
|
2029
2114
|
...queryResultErrorsBind
|
|
2030
2115
|
};
|
|
2116
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
2117
|
+
"bind",
|
|
2118
|
+
proofData,
|
|
2119
|
+
validity ?? DEFAULT_VALIDITY,
|
|
2120
|
+
queryResultErrors
|
|
2121
|
+
);
|
|
2122
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
2123
|
+
queryResultErrors = {
|
|
2124
|
+
...queryResultErrors,
|
|
2125
|
+
...queryResultErrorsCurrentDate
|
|
2126
|
+
};
|
|
2031
2127
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
2032
2128
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
2033
2129
|
} else if (proof.name === "exclusion_check_sanctions") {
|
|
2034
2130
|
const sanctionsBuilder = await import_utils.SanctionsBuilder.create();
|
|
2035
2131
|
const exclusionCheckSanctionsCommittedInputs = proof.committedInputs?.exclusion_check_sanctions;
|
|
2036
|
-
const calculatedParamCommitment = await sanctionsBuilder.getSanctionsParameterCommitment(
|
|
2132
|
+
const calculatedParamCommitment = await sanctionsBuilder.getSanctionsParameterCommitment(
|
|
2133
|
+
exclusionCheckSanctionsCommittedInputs.isStrict
|
|
2134
|
+
);
|
|
2037
2135
|
const paramCommittment = (0, import_utils.getParameterCommitmentFromDisclosureProof)(proofData);
|
|
2038
2136
|
if (paramCommittment !== calculatedParamCommitment) {
|
|
2039
2137
|
console.warn(
|
|
@@ -2062,6 +2160,17 @@ var PublicInputChecker = class {
|
|
|
2062
2160
|
...queryResultErrors,
|
|
2063
2161
|
...queryResultErrorsSanctionsExclusion
|
|
2064
2162
|
};
|
|
2163
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
2164
|
+
"sanctions",
|
|
2165
|
+
proofData,
|
|
2166
|
+
validity ?? DEFAULT_VALIDITY,
|
|
2167
|
+
queryResultErrors
|
|
2168
|
+
);
|
|
2169
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
2170
|
+
queryResultErrors = {
|
|
2171
|
+
...queryResultErrors,
|
|
2172
|
+
...queryResultErrorsCurrentDate
|
|
2173
|
+
};
|
|
2065
2174
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
2066
2175
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
2067
2176
|
} else if (proof.name?.startsWith("facematch") && !proof.name?.endsWith("_evm")) {
|
|
@@ -2070,7 +2179,7 @@ var PublicInputChecker = class {
|
|
|
2070
2179
|
const calculatedParamCommitment = await (0, import_utils.getFacematchParameterCommitment)(
|
|
2071
2180
|
BigInt(facematchCommittedInputs.rootKeyLeaf),
|
|
2072
2181
|
facematchCommittedInputs.environment === "development" ? 0n : 1n,
|
|
2073
|
-
BigInt(facematchCommittedInputs.
|
|
2182
|
+
BigInt(facematchCommittedInputs.appIdHash),
|
|
2074
2183
|
facematchCommittedInputs.mode === "regular" ? 1n : 2n
|
|
2075
2184
|
);
|
|
2076
2185
|
if (paramCommittment !== calculatedParamCommitment) {
|
|
@@ -2091,6 +2200,17 @@ var PublicInputChecker = class {
|
|
|
2091
2200
|
...queryResultErrors,
|
|
2092
2201
|
...queryResultErrorsFacematch
|
|
2093
2202
|
};
|
|
2203
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
2204
|
+
"facematch",
|
|
2205
|
+
proofData,
|
|
2206
|
+
validity ?? DEFAULT_VALIDITY,
|
|
2207
|
+
queryResultErrors
|
|
2208
|
+
);
|
|
2209
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
2210
|
+
queryResultErrors = {
|
|
2211
|
+
...queryResultErrors,
|
|
2212
|
+
...queryResultErrorsCurrentDate
|
|
2213
|
+
};
|
|
2094
2214
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
2095
2215
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
2096
2216
|
}
|
|
@@ -2768,6 +2888,17 @@ var ZKPassportVerifier_default = {
|
|
|
2768
2888
|
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2769
2889
|
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2770
2890
|
]
|
|
2891
|
+
},
|
|
2892
|
+
{
|
|
2893
|
+
name: "serviceConfig",
|
|
2894
|
+
type: "tuple",
|
|
2895
|
+
internalType: "struct ServiceConfig",
|
|
2896
|
+
components: [
|
|
2897
|
+
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2898
|
+
{ name: "domain", type: "string", internalType: "string" },
|
|
2899
|
+
{ name: "scope", type: "string", internalType: "string" },
|
|
2900
|
+
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2901
|
+
]
|
|
2771
2902
|
}
|
|
2772
2903
|
],
|
|
2773
2904
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -3035,47 +3166,47 @@ var ZKPassportVerifier_default = {
|
|
|
3035
3166
|
}
|
|
3036
3167
|
],
|
|
3037
3168
|
bytecode: {
|
|
3038
|
-
object: "0x608060405234801561000f575f5ffd5b50604051613d70380380613d7083398101604081905261002e916100f6565b6001600160a01b0381166100945760405162461bcd60e51b8152602060048201526024808201527f526f6f742072656769737472792063616e6e6f74206265207a65726f206164646044820152637265737360e01b606482015260840160405180910390fd5b5f8054336001600160a01b03199182168117909255600280549091166001600160a01b0384161790556040514281527ff29b53747ae7121d0958d490ad3d5cf6767119b0fdbd8389d918de3a12cf5a299060200160405180910390a250610123565b5f60208284031215610106575f5ffd5b81516001600160a01b038116811461011c575f5ffd5b9392505050565b613c40806101305f395ff3fe608060405234801561000f575f5ffd5b506004361061023f575f3560e01c80638b2ec61111610135578063c3fa6f22116100b4578063ddd8f8e311610079578063ddd8f8e31461051a578063ec8e07291461052d578063f3757ad414610557578063f851a44014610577578063ff20370714610589575f5ffd5b8063c3fa6f22146104bb578063ca4051f2146104ce578063cf515d37146104e1578063d39a5cf9146104f4578063d4932b4e14610507575f5ffd5b8063a6df2c01116100fa578063a6df2c011461045c578063ac20d6781461046f578063b8bd487914610482578063b96b161c14610495578063c1b77162146104a8575f5ffd5b80638b2ec611146103f05780638d6937b8146104035780638e2e2e621461041657806398e73ac3146104295780639c1a81a314610449575f5ffd5b806346b758a0116101c157806375829def1161018657806375829def146103645780637e5a88f3146103775780638163f2311461038a578063818694f1146103ca578063847755e3146103dd575f5ffd5b806346b758a01461031b5780635b7ab9291461032e5780635c975abb14610341578063652ba33d146103545780636c40d5d61461035c575f5ffd5b80632e5ce77f116102075780632e5ce77f146102b9578063311a335c146102cc578063320d3b55146102df5780633d6ed975146102f257806341a0e2c214610305575f5ffd5b8063106a2f6d1461024357806316c38b3c1461026b57806316e3d7291461028057806318677f2a146102935780631fac4345146102a6575b5f5ffd5b610256610251366004612a78565b61059c565b60405190151581526020015b60405180910390f35b61027e610279366004612ae2565b610809565b005b61027e61028e366004612afd565b610892565b61027e6102a1366004612b42565b610919565b6102566102b4366004612b6d565b6109c6565b6102566102c7366004612bdc565b6109dc565b6102566102da366004612c13565b610b10565b6102566102ed366004612b6d565b610b28565b610256610300366004612c13565b610b37565b61030d600181565b604051908152602001610262565b610256610329366004612d3d565b610b46565b61025661033c366004612d3d565b610b5c565b5f5461025690600160a01b900460ff1681565b61030d600381565b61030d600281565b61027e610372366004612b42565b610b69565b610256610385366004612d3d565b610c37565b6103b2610398366004612e5b565b60016020525f90815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610262565b6102566103d8366004612bdc565b610c44565b6102566103eb366004612ef6565b610cac565b6102566103fe366004612b6d565b610e74565b61027e610411366004612f92565b610e83565b610256610424366004612b6d565b610f43565b61043c610437366004612afd565b610f51565b6040516102629190612ffe565b610256610457366004612b6d565b61107c565b61027e61046a366004613034565b611096565b61025661047d366004612b6d565b6111c0565b610256610490366004612b6d565b6111da565b6002546103b2906001600160a01b031681565b6102566104b6366004612b6d565b6111f4565b6102566104c9366004612bdc565b611202565b6102566104dc366004612b6d565b611218565b6102566104ef36600461309e565b611226565b610256610502366004612d3d565b61147a565b610256610515366004612bdc565b611487565b610256610528366004612b6d565b6115bb565b61054061053b3660046130e6565b6115d5565b604080519215158352602083019190915201610262565b61056a61056536600461311c565b611bf5565b604051610262919061316a565b5f546103b2906001600160a01b031681565b610256610597366004612bdc565b611d35565b5f5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63defa8ed9876040518263ffffffff1660e01b81526004016105d89190613360565b608060405180830381865af41580156105f3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106179190613372565b929650909450925090505f6001846001811115610636576106366133be565b1490505f89600281111561064c5761064c6133be565b83600281111561065e5761065e6133be565b1490505f7f2532418a107c5306fa8308c22255792cf77e4a290cbce8a840a642a3e591340b871480156106bc575060018a60028111156106a0576106a06133be565b14806106bc57505f8a60028111156106ba576106ba6133be565b145b8061071c57507f16700a2d9168a194fc85f237af5829b5a2be05b8ae8ac4879ada34cf54a9c2118714801561071c575060028a6002811115610700576107006133be565b148061071c57505f8a600281111561071a5761071a6133be565b145b90505f7f1fa73686cf510f8f85757b0602de0dd72a13e68ae2092462be8b72662e7f179b86148015610779575060018b600281111561075d5761075d6133be565b148061077957505f8b6002811115610777576107776133be565b145b806107d957507f24d9929b248be7eeecaa98e105c034a50539610f3fdd4cb9c8983ef4100d615d861480156107d9575060028b60028111156107bd576107bd6133be565b14806107d957505f8b60028111156107d7576107d76133be565b145b90508380156107e55750825b80156107ee5750815b80156107f75750805b985050505050505050505b9392505050565b5f546001600160a01b0316331461083b5760405162461bcd60e51b8152600401610832906133d2565b60405180910390fd5b5f8054821515600160a01b0260ff60a01b199091161790556040517f9a506b30e47f3823b09f67e4c0dfa5c3d8023b71825b7ceaa97677129128c9c59061088790831515815260200190565b60405180910390a150565b604051632988ebc960e21b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063a623af24906108cb908590600401613360565b602060405180830381865af41580156108e6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061090a9190613409565b905061091581611d42565b5050565b5f546001600160a01b031633146109425760405162461bcd60e51b8152600401610832906133d2565b6001600160a01b0381166109a45760405162461bcd60e51b8152602060048201526024808201527f526f6f742072656769737472792063616e6e6f74206265207a65726f206164646044820152637265737360e01b6064820152608401610832565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b5f6109d48460028585611e03565b949350505050565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813876040518263ffffffff1660e01b8152600401610a179190613360565b606060405180830381865af4158015610a32573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a569190613420565b91945092509050610a68838635611ff5565b610a845760405162461bcd60e51b815260040161083290613461565b60ff811615610afd576040805162461bcd60e51b81526020600482015260248101919091527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734167654265747765656e20696e73746561646064820152608401610832565b5060ff8681169116149150509392505050565b5f610b1f858560028686612022565b95945050505050565b5f6109d4848560028686612022565b5f610b1f858560038686612022565b5f610b5383600484612343565b90505b92915050565b5f610b5383600784612343565b5f546001600160a01b03163314610b925760405162461bcd60e51b8152600401610832906133d2565b6001600160a01b038116610be85760405162461bcd60e51b815260206004820152601c60248201527f41646d696e2063616e6e6f74206265207a65726f2061646472657373000000006044820152606401610832565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f101b8081ff3b56bbf45deb824d86a3b0fd38b7e3dd42421105cf8abe9106db0b9190a35050565b5f610b5383600684612343565b5f5f8460ff1611610c975760405162461bcd60e51b815260206004820152601e60248201527f4d617820616765206d7573742062652067726561746572207468616e203000006044820152606401610832565b6109d4610ca56001866134e6565b8484611487565b5f5f610cec86868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061245192505050565b610d6657600860028787604051602001610d079291906134ff565b60408051601f1981840301815290829052610d219161350e565b602060405180830381855afa158015610d3c573d5f5f3e3d5ffd5b5050506040513d601f19601f82011682018060405250810190610d5f9190613409565b901c610d68565b5f5b90505f610da985858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061245192505050565b610e2357600860028686604051602001610dc49291906134ff565b60408051601f1981840301815290829052610dde9161350e565b602060405180830381855afa158015610df9573d5f5f3e3d5ffd5b5050506040513d601f19601f82011682018060405250810190610e1c9190613409565b901c610e25565b5f5b90508189896003818110610e3b57610e3b613524565b90506020020135148015610e6757508089896004818110610e5e57610e5e613524565b90506020020135145b9998505050505050505050565b5f6109d4848560038686612022565b5f546001600160a01b03163314610eac5760405162461bcd60e51b8152600401610832906133d2565b5f5b81811015610f3e5760015f848484818110610ecb57610ecb613524565b602090810292909201358352508101919091526040015f2080546001600160a01b0319169055828282818110610f0357610f03613524565b905060200201357f6fdcbcf8f91bc23f2c9dcfe8fe01d80d1b1afbbf207298e94c0171ccc587424c60405160405180910390a2600101610eae565b505050565b5f6109d48460038585611e03565b60408051606080820183525f80835260208301529181019190915260405163dfda037960e01b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063dfda037990610fa5908690600401613360565b5f60405180830381865af4158015610fbf573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610fe69190810190613587565b604051630578c5d360e11b815290915073__$144f4fe859debe4776cdef2b99f7b97a42$__90630af18ba6906110209084906004016135b8565b5f60405180830381865af415801561103a573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261106191908101906135ca565b604085015260208401526001600160a01b0316825250919050565b5f6109d461108d6201518086613615565b60028585611e03565b5f546001600160a01b031633146110bf5760405162461bcd60e51b8152600401610832906133d2565b5f5b838110156111b9578282828181106110db576110db613524565b90506020020160208101906110f09190612b42565b60015f87878581811061110557611105613524565b9050602002013581526020019081526020015f205f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555082828281811061114e5761114e613524565b90506020020160208101906111639190612b42565b6001600160a01b031685858381811061117e5761117e613524565b905060200201357f636107338a3eb46f1f60562462f3ec11393d35fbc965991aaade3b9e7d89c3f560405160405180910390a36001016110c1565b5050505050565b5f6109d46111d18562015180613628565b60038585612456565b5f6109d46111eb8562015180613628565b60028585612456565b5f6109d48460028585612456565b5f6109d461121185600161363b565b84846109dc565b5f6109d48460038585612456565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813876040518263ffffffff1660e01b81526004016112619190613360565b606060405180830381865af415801561127c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a09190613420565b919450925090506112b2838635611ff5565b6112ce5760405162461bcd60e51b815260040161083290613461565b8660ff168860ff16111561133a5760405162461bcd60e51b815260206004820152602d60248201527f4d696e20616765206d757374206265206c657373207468616e206f722065717560448201526c616c20746f206d61782061676560981b6064820152608401610832565b8160ff165f036113c75760405162461bcd60e51b815260206004820152604c60248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697341676542656c6f774f724560648201526b1c5d585b081a5b9cdd19585960a21b608482015260a401610832565b8060ff165f036114545760405162461bcd60e51b815260206004820152604c60248201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697341676541626f76654f724560648201526b1c5d585b081a5b9cdd19585960a21b608482015260a401610832565b8160ff168860ff1614801561146e57508060ff168760ff16145b98975050505050505050565b5f610b5383600584612343565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813876040518263ffffffff1660e01b81526004016114c29190613360565b606060405180830381865af41580156114dd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115019190613420565b91945092509050611513838635611ff5565b61152f5760405162461bcd60e51b815260040161083290613461565b60ff8216156115a8576040805162461bcd60e51b81526020600482015260248101919091527f5468652070726f6f66206c6f77657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734167654265747765656e20696e73746561646064820152608401610832565b60ff878116911614925050509392505050565b5f6109d46115cc6201518086613615565b60038585611e03565b5f80548190600160a01b900460ff16156116265760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610832565b5f61163a6116348580613654565b35612687565b90506116736116498580613654565b611657906040810190613672565b5f81811061166757611667613524565b905060200201356126e0565b6116ab6116808580613654565b61168e906040810190613672565b600181811061169f5761169f613524565b905060200201356127a8565b61170a6116b88580613654565b6116c6906040810190613672565b808060200260200160405190810160405280939291908181526020018383602002808284375f920191909152506117049250505060408701876136b7565b35612866565b6117725760405162461bcd60e51b815260206004820152603360248201527f5468652070726f6f66207761732067656e657261746564206f757473696465206044820152721d1a19481d985b1a591a5d1e481c195c9a5bd9606a1b6064820152608401610832565b6117c361177f8580613654565b61178d906040810190613672565b61179a60408801886136b7565b6117a89060208101906136cb565b6117b560408a018a6136b7565b6103eb9060408101906136cb565b61180f5760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420646f6d61696e206f722073636f70650000000000000000006044820152606401610832565b6118a261181c8580613654565b61182a906040810190613672565b60059060016118398980613654565b611847906040810190613672565b611852929150613615565b9261185f9392919061370d565b808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525061189d925050506020870187613738565b612891565b5f6118ad8580613654565b6118bb906040810190613672565b60026118c78880613654565b6118d5906040810190613672565b6118e0929150613615565b8181106118ef576118ef613524565b905060200201355f1c6003811115611909576119096133be565b9050600281600381111561191f5761191f6133be565b1415801561193f5750600381600381111561193c5761193c6133be565b14155b80611963575061195260408601866136b7565b611963906080810190606001612ae2565b6119c05760405162461bcd60e51b815260206004820152602860248201527f4d6f636b2070726f6f667320617265206f6e6c7920616c6c6f77656420696e20604482015267646576206d6f646560c01b6064820152608401610832565b5f8160038111156119d3576119d36133be565b14806119f857506119e760408601866136b7565b6119f8906080810190606001612ae2565b611a585760405162461bcd60e51b815260206004820152602b60248201527f53616c746564206e756c6c69666965727320617265206e6f7420737570706f7260448201526a74656420666f72206e6f7760a81b6064820152608401610832565b6007611a648680613654565b611a72906040810190613672565b611a7d929150613615565b611a8a6020870187613738565b611a98906020810190613672565b905014611af55760405162461bcd60e51b815260206004820152602560248201527f496e76616c696420636f6d6d697474656420696e70757420636f756e7473206c6044820152640cadccee8d60db1b6064820152608401610832565b6001600160a01b03821663ea50d0e4611b0e8780613654565b611b1c9060208101906136cb565b611b268980613654565b611b34906040810190613672565b6040518563ffffffff1660e01b8152600401611b53949392919061374c565b602060405180830381865afa158015611b6e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b92919061377d565b93505f6001611ba18780613654565b611baf906040810190613672565b611bba929150613615565b9050611bc68680613654565b611bd4906040810190613672565b82818110611be457611be4613524565b905060200201359350505050915091565b611c3d60405180610100016040528060608152602001606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b604051635450abb360e11b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063a8a1576690611c76908790600401613360565b5f60405180830381865af4158015611c90573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611cb79190810190613798565b6040516301e9bf5760e11b815290925073__$144f4fe859debe4776cdef2b99f7b97a42$__91506303d37eae90611cf490849087906004016137f1565b5f60405180830381865af4158015611d0e573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526109d49190810190613814565b5f6109d484858585611226565b6002546040516383578c1160e01b815260036004820152602481018390526001600160a01b03909116906383578c1190604401602060405180830381865afa158015611d90573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611db4919061377d565b611e005760405162461bcd60e51b815260206004820152601f60248201527f496e76616c69642073616e6374696f6e7320726567697374727920726f6f74006044820152606401610832565b50565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e87896040518363ffffffff1660e01b8152600401611e409291906139a5565b606060405180830381865af4158015611e5b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e7f91906139e2565b91945092509050611e91838635611ff5565b611ead5760405162461bcd60e51b815260040161083290613461565b8115611f2b5760405162461bcd60e51b815260206004820152604160248201527f5468652070726f6f66206c6f77657220626f756e64206d75737420626520302c60448201527f20706c6561736520757365206973446174654265747765656e20696e737465616064820152601960fa1b608482015260a401610832565b600287600a811115611f3f57611f3f6133be565b1480611f5c5750600387600a811115611f5a57611f5a6133be565b145b611f785760405162461bcd60e51b815260040161083290613a0d565b600287600a811115611f8c57611f8c6133be565b03611fca57805f03611fb05760405162461bcd60e51b815260040161083290613a39565b611fbe6383aa7e8082613615565b881493505050506109d4565b805f03611fe95760405162461bcd60e51b815260040161083290613ab1565b871492506109d4915050565b5f806120018385613628565b905083421015801561201257508381115b80156109d4575042109392505050565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e87896040518363ffffffff1660e01b815260040161205f9291906139a5565b606060405180830381865af415801561207a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061209e91906139e2565b919450925090506120b0838635611ff5565b6120cc5760405162461bcd60e51b815260040161083290613461565b878911156121345760405162461bcd60e51b815260206004820152602f60248201527f4d696e2064617465206d757374206265206c657373207468616e206f7220657160448201526e75616c20746f206d6178206461746560881b6064820152608401610832565b600287600a811115612148576121486133be565b14806121655750600387600a811115612163576121636133be565b145b6121815760405162461bcd60e51b815260040161083290613a0d565b600287600a811115612195576121956133be565b0361227b57815f0361222a5760405162461bcd60e51b815260206004820152605260248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697342697274686461746542656064820152711b1bddd3dc915c5d585b081a5b9cdd19585960721b608482015260a401610832565b805f036122495760405162461bcd60e51b815260040161083290613a39565b6122576383aa7e8083613615565b89148015612271575061226e6383aa7e8082613615565b88145b9350505050610b1f565b815f0361230c5760405162461bcd60e51b815260206004820152605360248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c65617365207573652069734578706972794461746542606482015272195b1bddd3dc915c5d585b081a5b9cdd195859606a1b608482015260a401610832565b805f0361232b5760405162461bcd60e51b815260040161083290613ab1565b81891480156122715750909614979650505050505050565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63dc8c5e9a85876040518363ffffffff1660e01b815260040161237f9291906139a5565b5f60405180830381865af4158015612399573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526123c09190810190613b2a565b91509150808651146123d6575f92505050610802565b5f5b818110156124445761242d8782815181106123f5576123f5613524565b602002602001015184838151811061240f5761240f613524565b60200260200101518051602091820120825192909101919091201490565b61243c575f9350505050610802565b6001016123d8565b5060019695505050505050565b511590565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e87896040518363ffffffff1660e01b81526004016124939291906139a5565b606060405180830381865af41580156124ae573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124d291906139e2565b919450925090506124e4838635611ff5565b6125005760405162461bcd60e51b815260040161083290613461565b600287600a811115612514576125146133be565b14806125315750600387600a81111561252f5761252f6133be565b145b61254d5760405162461bcd60e51b815260040161083290613a0d565b600287600a811115612561576125616133be565b036125f75780156125e95760405162461bcd60e51b815260206004820152604660248201527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734269727468646174654265747765656e20696064820152651b9cdd19585960d21b608482015260a401610832565b611fbe6383aa7e8083613615565b801561267b5760405162461bcd60e51b815260206004820152604760248201527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c6561736520757365206973457870697279446174654265747765656e206064820152661a5b9cdd19585960ca1b608482015260a401610832565b50861491506109d49050565b5f818152600160205260408120546001600160a01b031680610b565760405162461bcd60e51b815260206004820152601260248201527115995c9a599a595c881b9bdd08199bdd5b9960721b6044820152606401610832565b6002546040516383578c1160e01b815260016004820152602481018390526001600160a01b03909116906383578c1190604401602060405180830381865afa15801561272e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612752919061377d565b611e005760405162461bcd60e51b815260206004820152602160248201527f496e76616c696420636572746966696361746520726567697374727920726f6f6044820152601d60fa1b6064820152608401610832565b600280546040516383578c1160e01b81526004810192909252602482018390526001600160a01b0316906383578c1190604401602060405180830381865afa1580156127f6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061281a919061377d565b611e005760405162461bcd60e51b815260206004820152601d60248201527f496e76616c6964206369726375697420726567697374727920726f6f740000006044820152606401610832565b5f5f8360028151811061287b5761287b613524565b60200260200101515f1c90506109d48184611ff5565b5f805b6128a16020840184613672565b90508110156129fb575f600860026128b986806136cb565b86906128c860208a018a613672565b888181106128d8576128d8613524565b90506020020135886128ea9190613628565b926128f793929190613be3565b6040516020016129089291906134ff565b60408051601f19818403018152908290526129229161350e565b602060405180830381855afa15801561293d573d5f5f3e3d5ffd5b5050506040513d601f19601f820116820180604052508101906129609190613409565b901c905084828151811061297657612976613524565b602002602001015181146129c15760405162461bcd60e51b8152602060048201526012602482015271125b9d985b1a590818dbdb5b5a5d1b595b9d60721b6044820152606401610832565b6129ce6020850185613672565b838181106129de576129de613524565b90506020020135836129f09190613628565b925050600101612894565b50612a0682806136cb565b90508114610f3e5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420636f6d6d697474656420696e70757473206c656e677468006044820152606401610832565b60038110611e00575f5ffd5b5f60408284031215612a72575f5ffd5b50919050565b5f5f5f60608486031215612a8a575f5ffd5b8335612a9581612a56565b92506020840135612aa581612a56565b915060408401356001600160401b03811115612abf575f5ffd5b612acb86828701612a62565b9150509250925092565b8015158114611e00575f5ffd5b5f60208284031215612af2575f5ffd5b813561080281612ad5565b5f60208284031215612b0d575f5ffd5b81356001600160401b03811115612b22575f5ffd5b6109d484828501612a62565b6001600160a01b0381168114611e00575f5ffd5b5f60208284031215612b52575f5ffd5b813561080281612b2e565b5f60808284031215612a72575f5ffd5b5f5f5f60608486031215612b7f575f5ffd5b8335925060208401356001600160401b03811115612b9b575f5ffd5b612ba786828701612a62565b92505060408401356001600160401b03811115612bc2575f5ffd5b612acb86828701612b5d565b60ff81168114611e00575f5ffd5b5f5f5f60608486031215612bee575f5ffd5b8335612bf981612bce565b925060208401356001600160401b03811115612b9b575f5ffd5b5f5f5f5f60808587031215612c26575f5ffd5b843593506020850135925060408501356001600160401b03811115612c49575f5ffd5b612c5587828801612a62565b92505060608501356001600160401b03811115612c70575f5ffd5b612c7c87828801612b5d565b91505092959194509250565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b0381118282101715612cbf57612cbf612c88565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612ced57612ced612c88565b604052919050565b5f6001600160401b03821115612d0d57612d0d612c88565b5060051b60200190565b5f6001600160401b03821115612d2f57612d2f612c88565b50601f01601f191660200190565b5f5f60408385031215612d4e575f5ffd5b82356001600160401b03811115612d63575f5ffd5b8301601f81018513612d73575f5ffd5b8035612d86612d8182612cf5565b612cc5565b8082825260208201915060208360051b850101925087831115612da7575f5ffd5b602084015b83811015612e275780356001600160401b03811115612dc9575f5ffd5b8501603f81018a13612dd9575f5ffd5b6020810135612dea612d8182612d17565b8181526040838301018c1015612dfe575f5ffd5b816040840160208301375f60208383010152808652505050602083019250602081019050612dac565b50945050505060208301356001600160401b03811115612e45575f5ffd5b612e5185828601612a62565b9150509250929050565b5f60208284031215612e6b575f5ffd5b5035919050565b5f5f83601f840112612e82575f5ffd5b5081356001600160401b03811115612e98575f5ffd5b6020830191508360208260051b8501011115612eb2575f5ffd5b9250929050565b5f5f83601f840112612ec9575f5ffd5b5081356001600160401b03811115612edf575f5ffd5b602083019150836020828501011115612eb2575f5ffd5b5f5f5f5f5f5f60608789031215612f0b575f5ffd5b86356001600160401b03811115612f20575f5ffd5b612f2c89828a01612e72565b90975095505060208701356001600160401b03811115612f4a575f5ffd5b612f5689828a01612eb9565b90955093505060408701356001600160401b03811115612f74575f5ffd5b612f8089828a01612eb9565b979a9699509497509295939492505050565b5f5f60208385031215612fa3575f5ffd5b82356001600160401b03811115612fb8575f5ffd5b612fc485828601612e72565b90969095509350505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b6020815260018060a01b038251166020820152602082015160408201525f60408301516060808401526109d46080840182612fd0565b5f5f5f5f60408587031215613047575f5ffd5b84356001600160401b0381111561305c575f5ffd5b61306887828801612e72565b90955093505060208501356001600160401b03811115613086575f5ffd5b61309287828801612e72565b95989497509550505050565b5f5f5f5f608085870312156130b1575f5ffd5b84356130bc81612bce565b935060208501356130cc81612bce565b925060408501356001600160401b03811115612c49575f5ffd5b5f602082840312156130f6575f5ffd5b81356001600160401b0381111561310b575f5ffd5b820160608185031215610802575f5ffd5b5f5f6040838503121561312d575f5ffd5b82356001600160401b03811115613142575f5ffd5b61314e85828601612a62565b925050602083013561315f81612ad5565b809150509250929050565b602081525f82516101006020840152613187610120840182612fd0565b90506020840151601f198483030160408501526131a48282612fd0565b9150506040840151601f198483030160608501526131c28282612fd0565b9150506060840151601f198483030160808501526131e08282612fd0565b9150506080840151601f198483030160a08501526131fe8282612fd0565b91505060a0840151601f198483030160c085015261321c8282612fd0565b91505060c0840151601f198483030160e085015261323a8282612fd0565b91505060e0840151601f1984830301610100850152610b1f8282612fd0565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b8183525f6001600160fb1b03831115613298575f5ffd5b8260051b80836020870137939093016020019392505050565b5f8135601e19833603018082126132c6575f5ffd5b602091840191820191356001600160401b038111156132e3575f5ffd5b8036038313156132f1575f5ffd5b60408652613303604087018285613259565b9250506020840135818112613316575f5ffd5b8401602081019150356001600160401b03811115613332575f5ffd5b8060051b3603821315613343575f5ffd5b8583036020870152613356838284613281565b9695505050505050565b602081525f610b5360208301846132b1565b5f5f5f5f60808587031215613385575f5ffd5b845160208601519094506002811061339b575f5ffd5b6040860151606087015191945092506133b381612a56565b939692955090935050565b634e487b7160e01b5f52602160045260245ffd5b6020808252601a908201527f4e6f7420617574686f72697a65643a2061646d696e206f6e6c79000000000000604082015260600190565b5f60208284031215613419575f5ffd5b5051919050565b5f5f5f60608486031215613432575f5ffd5b8351602085015190935061344581612bce565b604085015190925061345681612bce565b809150509250925092565b6020808252604b908201527f5468652063757272656e742064617465207573656420696e207468652070726f60408201527f6f6620646f6573206e6f742066616c6c2077697468696e207468652076616c6960608201526a191a5d1e481c195c9a5bd960aa1b608082015260a00190565b634e487b7160e01b5f52601160045260245ffd5b60ff8281168282160390811115610b5657610b566134d2565b818382375f9101908152919050565b5f82518060208501845e5f920191825250919050565b634e487b7160e01b5f52603260045260245ffd5b5f82601f830112613547575f5ffd5b8151602083015f61355a612d8184612d17565b905082815285838301111561356d575f5ffd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215613597575f5ffd5b81516001600160401b038111156135ac575f5ffd5b6109d484828501613538565b602081525f610b536020830184612fd0565b5f5f5f606084860312156135dc575f5ffd5b83516135e781612b2e565b6020850151604086015191945092506001600160401b03811115613609575f5ffd5b612acb86828701613538565b81810381811115610b5657610b566134d2565b80820180821115610b5657610b566134d2565b60ff8181168382160190811115610b5657610b566134d2565b5f8235605e19833603018112613668575f5ffd5b9190910192915050565b5f5f8335601e19843603018112613687575f5ffd5b8301803591506001600160401b038211156136a0575f5ffd5b6020019150600581901b3603821315612eb2575f5ffd5b5f8235607e19833603018112613668575f5ffd5b5f5f8335601e198436030181126136e0575f5ffd5b8301803591506001600160401b038211156136f9575f5ffd5b602001915036819003821315612eb2575f5ffd5b5f5f8585111561371b575f5ffd5b83861115613727575f5ffd5b5050600583901b0193919092039150565b5f8235603e19833603018112613668575f5ffd5b604081525f61375f604083018688613259565b8281036020840152613772818587613281565b979650505050505050565b5f6020828403121561378d575f5ffd5b815161080281612ad5565b5f5f604083850312156137a9575f5ffd5b82516001600160401b038111156137be575f5ffd5b6137ca85828601613538565b92505060208301516001600160401b038111156137e5575f5ffd5b612e5185828601613538565b604081525f6138036040830185612fd0565b905082151560208301529392505050565b5f60208284031215613824575f5ffd5b81516001600160401b03811115613839575f5ffd5b8201610100818503121561384b575f5ffd5b613853612c9c565b81516001600160401b03811115613868575f5ffd5b61387486828501613538565b82525060208201516001600160401b0381111561388f575f5ffd5b61389b86828501613538565b60208301525060408201516001600160401b038111156138b9575f5ffd5b6138c586828501613538565b60408301525060608201516001600160401b038111156138e3575f5ffd5b6138ef86828501613538565b60608301525060808201516001600160401b0381111561390d575f5ffd5b61391986828501613538565b60808301525060a08201516001600160401b03811115613937575f5ffd5b61394386828501613538565b60a08301525060c08201516001600160401b03811115613961575f5ffd5b61396d86828501613538565b60c08301525060e08201516001600160401b0381111561398b575f5ffd5b61399786828501613538565b60e083015250949350505050565b604081525f6139b760408301856132b1565b9050600b83106139d557634e487b7160e01b5f52602160045260245ffd5b8260208301529392505050565b5f5f5f606084860312156139f4575f5ffd5b5050815160208301516040909301519094929350919050565b602080825260129082015271496e76616c69642070726f6f66207479706560701b604082015260600190565b60208082526052908201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60408201527f6e2d7a65726f2c20706c656173652075736520697342697274686461746541626060820152711bdd9953dc915c5d585b081a5b9cdd19585960721b608082015260a00190565b60208082526053908201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60408201527f6e2d7a65726f2c20706c65617365207573652069734578706972794461746541606082015272189bdd9953dc915c5d585b081a5b9cdd195859606a1b608082015260a00190565b5f5f60408385031215613b3b575f5ffd5b82516001600160401b03811115613b50575f5ffd5b8301601f81018513613b60575f5ffd5b8051613b6e612d8182612cf5565b8082825260208201915060208360051b850101925087831115613b8f575f5ffd5b602084015b83811015613bcf5780516001600160401b03811115613bb1575f5ffd5b613bc08a602083890101613538565b84525060209283019201613b94565b506020969096015195979596505050505050565b5f5f85851115613bf1575f5ffd5b83861115613bfd575f5ffd5b505082019391909203915056fea2646970667358221220f991155c5f0495dd21a11592eb81a72baddd6126ad66ff51d0de5dd26a8c865164736f6c634300081d0033",
|
|
3039
|
-
sourceMap: "706:
|
|
3169
|
+
object: "0x608060405234801561000f575f5ffd5b50604051613e06380380613e0683398101604081905261002e916100f6565b6001600160a01b0381166100945760405162461bcd60e51b8152602060048201526024808201527f526f6f742072656769737472792063616e6e6f74206265207a65726f206164646044820152637265737360e01b606482015260840160405180910390fd5b5f8054336001600160a01b03199182168117909255600280549091166001600160a01b0384161790556040514281527ff29b53747ae7121d0958d490ad3d5cf6767119b0fdbd8389d918de3a12cf5a299060200160405180910390a250610123565b5f60208284031215610106575f5ffd5b81516001600160a01b038116811461011c575f5ffd5b9392505050565b613cd6806101305f395ff3fe608060405234801561000f575f5ffd5b506004361061023f575f3560e01c80638d6937b811610135578063c3fa6f22116100b4578063ddd8f8e311610079578063ddd8f8e31461051a578063ec8e07291461052d578063f3757ad414610557578063f851a44014610577578063ff20370714610589575f5ffd5b8063c3fa6f22146104bb578063ca4051f2146104ce578063cf515d37146104e1578063d39a5cf9146104f4578063d4932b4e14610507575f5ffd5b8063ac20d678116100fa578063ac20d6781461045c578063b8bd48791461046f578063b96b161c14610482578063c04fa6fe14610495578063c1b77162146104a8575f5ffd5b80638d6937b8146103f05780638e2e2e621461040357806398e73ac3146104165780639c1a81a314610436578063a6df2c0114610449575f5ffd5b80635b7ab929116101c15780637e5a88f3116101865780637e5a88f3146103645780638163f23114610377578063818694f1146103b7578063847755e3146103ca5780638b2ec611146103dd575f5ffd5b80635b7ab9291461031b5780635c975abb1461032e578063652ba33d146103415780636c40d5d61461034957806375829def14610351575f5ffd5b8063311a335c11610207578063311a335c146102b9578063320d3b55146102cc5780633d6ed975146102df57806341a0e2c2146102f257806346b758a014610308575f5ffd5b806316c38b3c1461024357806316e3d7291461025857806318677f2a1461026b5780631fac43451461027e5780632e5ce77f146102a6575b5f5ffd5b610256610251366004612b12565b61059c565b005b610256610266366004612b43565b610625565b610256610279366004612b88565b6106ac565b61029161028c366004612bb3565b610759565b60405190151581526020015b60405180910390f35b6102916102b4366004612c2c565b610771565b6102916102c7366004612c63565b6108a5565b6102916102da366004612bb3565b6108bf565b6102916102ed366004612c63565b6108ce565b6102fa600181565b60405190815260200161029d565b610291610316366004612d8d565b6108dd565b610291610329366004612d8d565b6108f3565b5f5461029190600160a01b900460ff1681565b6102fa600381565b6102fa600281565b61025661035f366004612b88565b610900565b610291610372366004612d8d565b6109ce565b61039f610385366004612eab565b60016020525f90815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161029d565b6102916103c5366004612c2c565b6109db565b6102916103d8366004612f46565b610a43565b6102916103eb366004612bb3565b610c0b565b6102566103fe366004612fe2565b610c1a565b610291610411366004612bb3565b610cda565b610429610424366004612b43565b610ce8565b60405161029d919061304e565b610291610444366004612bb3565b610e13565b610256610457366004613084565b610e2d565b61029161046a366004612bb3565b610f57565b61029161047d366004612bb3565b610f71565b60025461039f906001600160a01b031681565b6102916104a33660046130fa565b610f8b565b6102916104b6366004612bb3565b6112a1565b6102916104c9366004612c2c565b6112af565b6102916104dc366004612bb3565b6112c5565b6102916104ef366004613142565b6112d3565b610291610502366004612d8d565b611527565b610291610515366004612c2c565b611534565b610291610528366004612bb3565b611668565b61054061053b366004613170565b611682565b60408051921515835260208301919091520161029d565b61056a6105653660046131a6565b611ca2565b60405161029d91906131f4565b5f5461039f906001600160a01b031681565b610291610597366004612c2c565b611de2565b5f546001600160a01b031633146105ce5760405162461bcd60e51b81526004016105c5906132e3565b60405180910390fd5b5f8054821515600160a01b0260ff60a01b199091161790556040517f9a506b30e47f3823b09f67e4c0dfa5c3d8023b71825b7ceaa97677129128c9c59061061a90831515815260200190565b60405180910390a150565b604051632988ebc960e21b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063a623af249061065e908590600401613421565b602060405180830381865af4158015610679573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069d9190613433565b90506106a881611def565b5050565b5f546001600160a01b031633146106d55760405162461bcd60e51b81526004016105c5906132e3565b6001600160a01b0381166107375760405162461bcd60e51b8152602060048201526024808201527f526f6f742072656769737472792063616e6e6f74206265207a65726f206164646044820152637265737360e01b60648201526084016105c5565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b5f6107678460028585611eb0565b90505b9392505050565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813876040518263ffffffff1660e01b81526004016107ac9190613421565b606060405180830381865af41580156107c7573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107eb919061344a565b919450925090506107fd8386356120a2565b6108195760405162461bcd60e51b81526004016105c59061348b565b60ff811615610892576040805162461bcd60e51b81526020600482015260248101919091527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734167654265747765656e20696e737465616460648201526084016105c5565b5060ff8681169116149150509392505050565b5f6108b48585600286866120cf565b90505b949350505050565b5f6107678485600286866120cf565b5f6108b48585600386866120cf565b5f6108ea836004846123f2565b90505b92915050565b5f6108ea836007846123f2565b5f546001600160a01b031633146109295760405162461bcd60e51b81526004016105c5906132e3565b6001600160a01b03811661097f5760405162461bcd60e51b815260206004820152601c60248201527f41646d696e2063616e6e6f74206265207a65726f20616464726573730000000060448201526064016105c5565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f101b8081ff3b56bbf45deb824d86a3b0fd38b7e3dd42421105cf8abe9106db0b9190a35050565b5f6108ea836006846123f2565b5f5f8460ff1611610a2e5760405162461bcd60e51b815260206004820152601e60248201527f4d617820616765206d7573742062652067726561746572207468616e2030000060448201526064016105c5565b610767610a3c600186613510565b8484611534565b5f5f610a8386868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061250092505050565b610afd57600860028787604051602001610a9e929190613529565b60408051601f1981840301815290829052610ab891613538565b602060405180830381855afa158015610ad3573d5f5f3e3d5ffd5b5050506040513d601f19601f82011682018060405250810190610af69190613433565b901c610aff565b5f5b90505f610b4085858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061250092505050565b610bba57600860028686604051602001610b5b929190613529565b60408051601f1981840301815290829052610b7591613538565b602060405180830381855afa158015610b90573d5f5f3e3d5ffd5b5050506040513d601f19601f82011682018060405250810190610bb39190613433565b901c610bbc565b5f5b90508189896003818110610bd257610bd261354e565b90506020020135148015610bfe57508089896004818110610bf557610bf561354e565b90506020020135145b9998505050505050505050565b5f6107678485600386866120cf565b5f546001600160a01b03163314610c435760405162461bcd60e51b81526004016105c5906132e3565b5f5b81811015610cd55760015f848484818110610c6257610c6261354e565b602090810292909201358352508101919091526040015f2080546001600160a01b0319169055828282818110610c9a57610c9a61354e565b905060200201357f6fdcbcf8f91bc23f2c9dcfe8fe01d80d1b1afbbf207298e94c0171ccc587424c60405160405180910390a2600101610c45565b505050565b5f6107678460038585611eb0565b60408051606080820183525f80835260208301529181019190915260405163dfda037960e01b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063dfda037990610d3c908690600401613421565b5f60405180830381865af4158015610d56573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d7d91908101906135b1565b604051630578c5d360e11b815290915073__$144f4fe859debe4776cdef2b99f7b97a42$__90630af18ba690610db79084906004016135e2565b5f60405180830381865af4158015610dd1573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610df891908101906135f4565b604085015260208401526001600160a01b0316825250919050565b5f610767610e24620151808661363f565b60028585611eb0565b5f546001600160a01b03163314610e565760405162461bcd60e51b81526004016105c5906132e3565b5f5b83811015610f5057828282818110610e7257610e7261354e565b9050602002016020810190610e879190612b88565b60015f878785818110610e9c57610e9c61354e565b9050602002013581526020019081526020015f205f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550828282818110610ee557610ee561354e565b9050602002016020810190610efa9190612b88565b6001600160a01b0316858583818110610f1557610f1561354e565b905060200201357f636107338a3eb46f1f60562462f3ec11393d35fbc965991aaade3b9e7d89c3f560405160405180910390a3600101610e58565b5050505050565b5f610767610f688562015180613652565b60038585612505565b5f610767610f828562015180613652565b60028585612505565b5f5f5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63defa8ed9896040518263ffffffff1660e01b8152600401610fc89190613421565b60a060405180830381865af4158015610fe3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110079190613665565b9398509196509450925090505f6001856001811115611028576110286136bd565b1490505f8b600281111561103e5761103e6136bd565b836002811115611050576110506136bd565b1490505f7f2532418a107c5306fa8308c22255792cf77e4a290cbce8a840a642a3e591340b881480156110ae575060018c6002811115611092576110926136bd565b14806110ae57505f8c60028111156110ac576110ac6136bd565b145b8061110e57507f16700a2d9168a194fc85f237af5829b5a2be05b8ae8ac4879ada34cf54a9c2118814801561110e575060028c60028111156110f2576110f26136bd565b148061110e57505f8c600281111561110c5761110c6136bd565b145b90505f7f1fa73686cf510f8f85757b0602de0dd72a13e68ae2092462be8b72662e7f179b8714801561116b575060018d600281111561114f5761114f6136bd565b148061116b57505f8d6002811115611169576111696136bd565b145b806111cb57507f24d9929b248be7eeecaa98e105c034a50539610f3fdd4cb9c8983ef4100d615d871480156111cb575060028d60028111156111af576111af6136bd565b14806111cb57505f8d60028111156111c9576111c96136bd565b145b90505f86158015611207575060018e60028111156111eb576111eb6136bd565b148061120757505f8e6002811115611205576112056136bd565b145b8061126757507f12e3dc7cc8fec0205b51ff21825630865028f3be5bc64a6eec9ee5e71221319f87148015611267575060028e600281111561124b5761124b6136bd565b148061126757505f8e6002811115611265576112656136bd565b145b90508480156112735750835b801561127c5750825b80156112855750815b801561128e5750805b9f9e505050505050505050505050505050565b5f6107678460028585612505565b5f6107676112be8560016136d1565b8484610771565b5f6107678460038585612505565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813876040518263ffffffff1660e01b815260040161130e9190613421565b606060405180830381865af4158015611329573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061134d919061344a565b9194509250905061135f8386356120a2565b61137b5760405162461bcd60e51b81526004016105c59061348b565b8660ff168860ff1611156113e75760405162461bcd60e51b815260206004820152602d60248201527f4d696e20616765206d757374206265206c657373207468616e206f722065717560448201526c616c20746f206d61782061676560981b60648201526084016105c5565b8160ff165f036114745760405162461bcd60e51b815260206004820152604c60248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697341676542656c6f774f724560648201526b1c5d585b081a5b9cdd19585960a21b608482015260a4016105c5565b8060ff165f036115015760405162461bcd60e51b815260206004820152604c60248201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697341676541626f76654f724560648201526b1c5d585b081a5b9cdd19585960a21b608482015260a4016105c5565b8160ff168860ff1614801561151b57508060ff168760ff16145b98975050505050505050565b5f6108ea836005846123f2565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813876040518263ffffffff1660e01b815260040161156f9190613421565b606060405180830381865af415801561158a573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115ae919061344a565b919450925090506115c08386356120a2565b6115dc5760405162461bcd60e51b81526004016105c59061348b565b60ff821615611655576040805162461bcd60e51b81526020600482015260248101919091527f5468652070726f6f66206c6f77657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734167654265747765656e20696e737465616460648201526084016105c5565b60ff878116911614925050509392505050565b5f610767611679620151808661363f565b60038585611eb0565b5f80548190600160a01b900460ff16156116d35760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016105c5565b5f6116e76116e185806136ea565b35612736565b90506117206116f685806136ea565b611704906040810190613708565b5f8181106117145761171461354e565b9050602002013561278f565b61175861172d85806136ea565b61173b906040810190613708565b600181811061174c5761174c61354e565b90506020020135612857565b6117b761176585806136ea565b611773906040810190613708565b808060200260200160405190810160405280939291908181526020018383602002808284375f920191909152506117b192505050604087018761374d565b35612915565b61181f5760405162461bcd60e51b815260206004820152603360248201527f5468652070726f6f66207761732067656e657261746564206f757473696465206044820152721d1a19481d985b1a591a5d1e481c195c9a5bd9606a1b60648201526084016105c5565b61187061182c85806136ea565b61183a906040810190613708565b611847604088018861374d565b611855906020810190613761565b61186260408a018a61374d565b6103d8906040810190613761565b6118bc5760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420646f6d61696e206f722073636f706500000000000000000060448201526064016105c5565b61194f6118c985806136ea565b6118d7906040810190613708565b60059060016118e689806136ea565b6118f4906040810190613708565b6118ff92915061363f565b9261190c939291906137a3565b808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525061194a9250505060208701876137ce565b612940565b5f61195a85806136ea565b611968906040810190613708565b600261197488806136ea565b611982906040810190613708565b61198d92915061363f565b81811061199c5761199c61354e565b905060200201355f1c60038111156119b6576119b66136bd565b905060028160038111156119cc576119cc6136bd565b141580156119ec575060038160038111156119e9576119e96136bd565b14155b80611a1057506119ff604086018661374d565b611a10906080810190606001612b12565b611a6d5760405162461bcd60e51b815260206004820152602860248201527f4d6f636b2070726f6f667320617265206f6e6c7920616c6c6f77656420696e20604482015267646576206d6f646560c01b60648201526084016105c5565b5f816003811115611a8057611a806136bd565b1480611aa55750611a94604086018661374d565b611aa5906080810190606001612b12565b611b055760405162461bcd60e51b815260206004820152602b60248201527f53616c746564206e756c6c69666965727320617265206e6f7420737570706f7260448201526a74656420666f72206e6f7760a81b60648201526084016105c5565b6007611b1186806136ea565b611b1f906040810190613708565b611b2a92915061363f565b611b3760208701876137ce565b611b45906020810190613708565b905014611ba25760405162461bcd60e51b815260206004820152602560248201527f496e76616c696420636f6d6d697474656420696e70757420636f756e7473206c6044820152640cadccee8d60db1b60648201526084016105c5565b6001600160a01b03821663ea50d0e4611bbb87806136ea565b611bc9906020810190613761565b611bd389806136ea565b611be1906040810190613708565b6040518563ffffffff1660e01b8152600401611c0094939291906137e2565b602060405180830381865afa158015611c1b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c3f9190613813565b93505f6001611c4e87806136ea565b611c5c906040810190613708565b611c6792915061363f565b9050611c7386806136ea565b611c81906040810190613708565b82818110611c9157611c9161354e565b905060200201359350505050915091565b611cea60405180610100016040528060608152602001606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b604051635450abb360e11b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063a8a1576690611d23908790600401613421565b5f60405180830381865af4158015611d3d573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611d64919081019061382e565b6040516301e9bf5760e11b815290925073__$144f4fe859debe4776cdef2b99f7b97a42$__91506303d37eae90611da19084908790600401613887565b5f60405180830381865af4158015611dbb573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108b791908101906138aa565b5f610767848585856112d3565b6002546040516383578c1160e01b815260036004820152602481018390526001600160a01b03909116906383578c1190604401602060405180830381865afa158015611e3d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e619190613813565b611ead5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c69642073616e6374696f6e7320726567697374727920726f6f740060448201526064016105c5565b50565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e87896040518363ffffffff1660e01b8152600401611eed929190613a3b565b606060405180830381865af4158015611f08573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f2c9190613a78565b91945092509050611f3e8386356120a2565b611f5a5760405162461bcd60e51b81526004016105c59061348b565b8115611fd85760405162461bcd60e51b815260206004820152604160248201527f5468652070726f6f66206c6f77657220626f756e64206d75737420626520302c60448201527f20706c6561736520757365206973446174654265747765656e20696e737465616064820152601960fa1b608482015260a4016105c5565b600287600a811115611fec57611fec6136bd565b14806120095750600387600a811115612007576120076136bd565b145b6120255760405162461bcd60e51b81526004016105c590613aa3565b600287600a811115612039576120396136bd565b0361207757805f0361205d5760405162461bcd60e51b81526004016105c590613acf565b61206b6383aa7e808261363f565b881493505050506108b7565b805f036120965760405162461bcd60e51b81526004016105c590613b47565b871492506108b7915050565b5f806120ae8385613652565b90508342101580156120bf57508381115b80156108b7575042109392505050565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e87896040518363ffffffff1660e01b815260040161210c929190613a3b565b606060405180830381865af4158015612127573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061214b9190613a78565b9194509250905061215d8386356120a2565b6121795760405162461bcd60e51b81526004016105c59061348b565b878911156121e15760405162461bcd60e51b815260206004820152602f60248201527f4d696e2064617465206d757374206265206c657373207468616e206f7220657160448201526e75616c20746f206d6178206461746560881b60648201526084016105c5565b600287600a8111156121f5576121f56136bd565b14806122125750600387600a811115612210576122106136bd565b145b61222e5760405162461bcd60e51b81526004016105c590613aa3565b600287600a811115612242576122426136bd565b0361232857815f036122d75760405162461bcd60e51b815260206004820152605260248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697342697274686461746542656064820152711b1bddd3dc915c5d585b081a5b9cdd19585960721b608482015260a4016105c5565b805f036122f65760405162461bcd60e51b81526004016105c590613acf565b6123046383aa7e808361363f565b8914801561231e575061231b6383aa7e808261363f565b88145b93505050506123e9565b815f036123b95760405162461bcd60e51b815260206004820152605360248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c65617365207573652069734578706972794461746542606482015272195b1bddd3dc915c5d585b081a5b9cdd195859606a1b608482015260a4016105c5565b805f036123d85760405162461bcd60e51b81526004016105c590613b47565b818914801561231e57508714925050505b95945050505050565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63dc8c5e9a85876040518363ffffffff1660e01b815260040161242e929190613a3b565b5f60405180830381865af4158015612448573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261246f9190810190613bc0565b9150915080865114612485575f9250505061076a565b5f5b818110156124f3576124dc8782815181106124a4576124a461354e565b60200260200101518483815181106124be576124be61354e565b60200260200101518051602091820120825192909101919091201490565b6124eb575f935050505061076a565b600101612487565b5060019695505050505050565b511590565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e87896040518363ffffffff1660e01b8152600401612542929190613a3b565b606060405180830381865af415801561255d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125819190613a78565b919450925090506125938386356120a2565b6125af5760405162461bcd60e51b81526004016105c59061348b565b600287600a8111156125c3576125c36136bd565b14806125e05750600387600a8111156125de576125de6136bd565b145b6125fc5760405162461bcd60e51b81526004016105c590613aa3565b600287600a811115612610576126106136bd565b036126a65780156126985760405162461bcd60e51b815260206004820152604660248201527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734269727468646174654265747765656e20696064820152651b9cdd19585960d21b608482015260a4016105c5565b61206b6383aa7e808361363f565b801561272a5760405162461bcd60e51b815260206004820152604760248201527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c6561736520757365206973457870697279446174654265747765656e206064820152661a5b9cdd19585960ca1b608482015260a4016105c5565b50861491506108b79050565b5f818152600160205260408120546001600160a01b0316806108ed5760405162461bcd60e51b815260206004820152601260248201527115995c9a599a595c881b9bdd08199bdd5b9960721b60448201526064016105c5565b6002546040516383578c1160e01b815260016004820152602481018390526001600160a01b03909116906383578c1190604401602060405180830381865afa1580156127dd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128019190613813565b611ead5760405162461bcd60e51b815260206004820152602160248201527f496e76616c696420636572746966696361746520726567697374727920726f6f6044820152601d60fa1b60648201526084016105c5565b600280546040516383578c1160e01b81526004810192909252602482018390526001600160a01b0316906383578c1190604401602060405180830381865afa1580156128a5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128c99190613813565b611ead5760405162461bcd60e51b815260206004820152601d60248201527f496e76616c6964206369726375697420726567697374727920726f6f7400000060448201526064016105c5565b5f5f8360028151811061292a5761292a61354e565b60200260200101515f1c90506108b781846120a2565b5f805b6129506020840184613708565b9050811015612aaa575f600860026129688680613761565b869061297760208a018a613708565b888181106129875761298761354e565b90506020020135886129999190613652565b926129a693929190613c79565b6040516020016129b7929190613529565b60408051601f19818403018152908290526129d191613538565b602060405180830381855afa1580156129ec573d5f5f3e3d5ffd5b5050506040513d601f19601f82011682018060405250810190612a0f9190613433565b901c9050848281518110612a2557612a2561354e565b60200260200101518114612a705760405162461bcd60e51b8152602060048201526012602482015271125b9d985b1a590818dbdb5b5a5d1b595b9d60721b60448201526064016105c5565b612a7d6020850185613708565b83818110612a8d57612a8d61354e565b9050602002013583612a9f9190613652565b925050600101612943565b50612ab58280613761565b90508114610cd55760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420636f6d6d697474656420696e70757473206c656e6774680060448201526064016105c5565b8015158114611ead575f5ffd5b5f60208284031215612b22575f5ffd5b813561076a81612b05565b5f60408284031215612b3d575f5ffd5b50919050565b5f60208284031215612b53575f5ffd5b81356001600160401b03811115612b68575f5ffd5b6108b784828501612b2d565b6001600160a01b0381168114611ead575f5ffd5b5f60208284031215612b98575f5ffd5b813561076a81612b74565b5f60808284031215612b3d575f5ffd5b5f5f5f60608486031215612bc5575f5ffd5b8335925060208401356001600160401b03811115612be1575f5ffd5b612bed86828701612b2d565b92505060408401356001600160401b03811115612c08575f5ffd5b612c1486828701612ba3565b9150509250925092565b60ff81168114611ead575f5ffd5b5f5f5f60608486031215612c3e575f5ffd5b8335612c4981612c1e565b925060208401356001600160401b03811115612be1575f5ffd5b5f5f5f5f60808587031215612c76575f5ffd5b843593506020850135925060408501356001600160401b03811115612c99575f5ffd5b612ca587828801612b2d565b92505060608501356001600160401b03811115612cc0575f5ffd5b612ccc87828801612ba3565b91505092959194509250565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b0381118282101715612d0f57612d0f612cd8565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612d3d57612d3d612cd8565b604052919050565b5f6001600160401b03821115612d5d57612d5d612cd8565b5060051b60200190565b5f6001600160401b03821115612d7f57612d7f612cd8565b50601f01601f191660200190565b5f5f60408385031215612d9e575f5ffd5b82356001600160401b03811115612db3575f5ffd5b8301601f81018513612dc3575f5ffd5b8035612dd6612dd182612d45565b612d15565b8082825260208201915060208360051b850101925087831115612df7575f5ffd5b602084015b83811015612e775780356001600160401b03811115612e19575f5ffd5b8501603f81018a13612e29575f5ffd5b6020810135612e3a612dd182612d67565b8181526040838301018c1015612e4e575f5ffd5b816040840160208301375f60208383010152808652505050602083019250602081019050612dfc565b50945050505060208301356001600160401b03811115612e95575f5ffd5b612ea185828601612b2d565b9150509250929050565b5f60208284031215612ebb575f5ffd5b5035919050565b5f5f83601f840112612ed2575f5ffd5b5081356001600160401b03811115612ee8575f5ffd5b6020830191508360208260051b8501011115612f02575f5ffd5b9250929050565b5f5f83601f840112612f19575f5ffd5b5081356001600160401b03811115612f2f575f5ffd5b602083019150836020828501011115612f02575f5ffd5b5f5f5f5f5f5f60608789031215612f5b575f5ffd5b86356001600160401b03811115612f70575f5ffd5b612f7c89828a01612ec2565b90975095505060208701356001600160401b03811115612f9a575f5ffd5b612fa689828a01612f09565b90955093505060408701356001600160401b03811115612fc4575f5ffd5b612fd089828a01612f09565b979a9699509497509295939492505050565b5f5f60208385031215612ff3575f5ffd5b82356001600160401b03811115613008575f5ffd5b61301485828601612ec2565b90969095509350505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b6020815260018060a01b038251166020820152602082015160408201525f60408301516060808401526108b76080840182613020565b5f5f5f5f60408587031215613097575f5ffd5b84356001600160401b038111156130ac575f5ffd5b6130b887828801612ec2565b90955093505060208501356001600160401b038111156130d6575f5ffd5b6130e287828801612ec2565b95989497509550505050565b60038110611ead575f5ffd5b5f5f5f5f6080858703121561310d575f5ffd5b8435613118816130ee565b93506020850135613128816130ee565b925060408501356001600160401b03811115612c99575f5ffd5b5f5f5f5f60808587031215613155575f5ffd5b843561316081612c1e565b9350602085013561312881612c1e565b5f60208284031215613180575f5ffd5b81356001600160401b03811115613195575f5ffd5b82016060818503121561076a575f5ffd5b5f5f604083850312156131b7575f5ffd5b82356001600160401b038111156131cc575f5ffd5b6131d885828601612b2d565b92505060208301356131e981612b05565b809150509250929050565b602081525f82516101006020840152613211610120840182613020565b90506020840151601f1984830301604085015261322e8282613020565b9150506040840151601f1984830301606085015261324c8282613020565b9150506060840151601f1984830301608085015261326a8282613020565b9150506080840151601f198483030160a08501526132888282613020565b91505060a0840151601f198483030160c08501526132a68282613020565b91505060c0840151601f198483030160e08501526132c48282613020565b91505060e0840151601f19848303016101008501526123e98282613020565b6020808252601a908201527f4e6f7420617574686f72697a65643a2061646d696e206f6e6c79000000000000604082015260600190565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b8183525f6001600160fb1b03831115613359575f5ffd5b8260051b80836020870137939093016020019392505050565b5f8135601e1983360301808212613387575f5ffd5b602091840191820191356001600160401b038111156133a4575f5ffd5b8036038313156133b2575f5ffd5b604086526133c460408701828561331a565b92505060208401358181126133d7575f5ffd5b8401602081019150356001600160401b038111156133f3575f5ffd5b8060051b3603821315613404575f5ffd5b8583036020870152613417838284613342565b9695505050505050565b602081525f6108ea6020830184613372565b5f60208284031215613443575f5ffd5b5051919050565b5f5f5f6060848603121561345c575f5ffd5b8351602085015190935061346f81612c1e565b604085015190925061348081612c1e565b809150509250925092565b6020808252604b908201527f5468652063757272656e742064617465207573656420696e207468652070726f60408201527f6f6620646f6573206e6f742066616c6c2077697468696e207468652076616c6960608201526a191a5d1e481c195c9a5bd960aa1b608082015260a00190565b634e487b7160e01b5f52601160045260245ffd5b60ff82811682821603908111156108ed576108ed6134fc565b818382375f9101908152919050565b5f82518060208501845e5f920191825250919050565b634e487b7160e01b5f52603260045260245ffd5b5f82601f830112613571575f5ffd5b8151602083015f613584612dd184612d67565b9050828152858383011115613597575f5ffd5b8282602083015e5f92810160200192909252509392505050565b5f602082840312156135c1575f5ffd5b81516001600160401b038111156135d6575f5ffd5b6108b784828501613562565b602081525f6108ea6020830184613020565b5f5f5f60608486031215613606575f5ffd5b835161361181612b74565b6020850151604086015191945092506001600160401b03811115613633575f5ffd5b612c1486828701613562565b818103818111156108ed576108ed6134fc565b808201808211156108ed576108ed6134fc565b5f5f5f5f5f60a08688031215613679575f5ffd5b855160208701519095506002811061368f575f5ffd5b60408701516060880151608089015192965090945092506136af816130ee565b809150509295509295909350565b634e487b7160e01b5f52602160045260245ffd5b60ff81811683821601908111156108ed576108ed6134fc565b5f8235605e198336030181126136fe575f5ffd5b9190910192915050565b5f5f8335601e1984360301811261371d575f5ffd5b8301803591506001600160401b03821115613736575f5ffd5b6020019150600581901b3603821315612f02575f5ffd5b5f8235607e198336030181126136fe575f5ffd5b5f5f8335601e19843603018112613776575f5ffd5b8301803591506001600160401b0382111561378f575f5ffd5b602001915036819003821315612f02575f5ffd5b5f5f858511156137b1575f5ffd5b838611156137bd575f5ffd5b5050600583901b0193919092039150565b5f8235603e198336030181126136fe575f5ffd5b604081525f6137f560408301868861331a565b8281036020840152613808818587613342565b979650505050505050565b5f60208284031215613823575f5ffd5b815161076a81612b05565b5f5f6040838503121561383f575f5ffd5b82516001600160401b03811115613854575f5ffd5b61386085828601613562565b92505060208301516001600160401b0381111561387b575f5ffd5b612ea185828601613562565b604081525f6138996040830185613020565b905082151560208301529392505050565b5f602082840312156138ba575f5ffd5b81516001600160401b038111156138cf575f5ffd5b820161010081850312156138e1575f5ffd5b6138e9612cec565b81516001600160401b038111156138fe575f5ffd5b61390a86828501613562565b82525060208201516001600160401b03811115613925575f5ffd5b61393186828501613562565b60208301525060408201516001600160401b0381111561394f575f5ffd5b61395b86828501613562565b60408301525060608201516001600160401b03811115613979575f5ffd5b61398586828501613562565b60608301525060808201516001600160401b038111156139a3575f5ffd5b6139af86828501613562565b60808301525060a08201516001600160401b038111156139cd575f5ffd5b6139d986828501613562565b60a08301525060c08201516001600160401b038111156139f7575f5ffd5b613a0386828501613562565b60c08301525060e08201516001600160401b03811115613a21575f5ffd5b613a2d86828501613562565b60e083015250949350505050565b604081525f613a4d6040830185613372565b9050600b8310613a6b57634e487b7160e01b5f52602160045260245ffd5b8260208301529392505050565b5f5f5f60608486031215613a8a575f5ffd5b5050815160208301516040909301519094929350919050565b602080825260129082015271496e76616c69642070726f6f66207479706560701b604082015260600190565b60208082526052908201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60408201527f6e2d7a65726f2c20706c656173652075736520697342697274686461746541626060820152711bdd9953dc915c5d585b081a5b9cdd19585960721b608082015260a00190565b60208082526053908201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60408201527f6e2d7a65726f2c20706c65617365207573652069734578706972794461746541606082015272189bdd9953dc915c5d585b081a5b9cdd195859606a1b608082015260a00190565b5f5f60408385031215613bd1575f5ffd5b82516001600160401b03811115613be6575f5ffd5b8301601f81018513613bf6575f5ffd5b8051613c04612dd182612d45565b8082825260208201915060208360051b850101925087831115613c25575f5ffd5b602084015b83811015613c655780516001600160401b03811115613c47575f5ffd5b613c568a602083890101613562565b84525060209283019201613c2a565b506020969096015195979596505050505050565b5f5f85851115613c87575f5ffd5b83861115613c93575f5ffd5b505082019391909203915056fea264697066735822122003976ad8bc435d1afd265436a8ca6c800493492d2b2a0afcb7cacd312db60e3f64736f6c634300081d0033",
|
|
3170
|
+
sourceMap: "706:31108:26:-:0;;;1848:256;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1897:27:26;;1889:76;;;;-1:-1:-1;;;1889:76:26;;511:2:33;1889:76:26;;;493:21:33;550:2;530:18;;;523:30;589:34;569:18;;;562:62;-1:-1:-1;;;640:18:33;;;633:34;684:19;;1889:76:26;;;;;;;;1971:5;:18;;1979:10;-1:-1:-1;;;;;;1971:18:26;;;;;;;;1995:12;:43;;;;;-1:-1:-1;;;;;1995:43:26;;;;;2049:50;;2083:15;860:25:33;;2049:50:26;;848:2:33;833:18;2049:50:26;;;;;;;1848:256;706:31108;;14:290:33;84:6;137:2;125:9;116:7;112:23;108:32;105:52;;;153:1;150;143:12;105:52;179:16;;-1:-1:-1;;;;;224:31:33;;214:42;;204:70;;270:1;267;260:12;204:70;293:5;14:290;-1:-1:-1;;;14:290:33:o;714:177::-;706:31108:26;;;;;;",
|
|
3040
3171
|
linkReferences: {
|
|
3041
3172
|
"src/InputsExtractor.sol": {
|
|
3042
3173
|
InputsExtractor: [
|
|
3043
|
-
{ start:
|
|
3044
|
-
{ start:
|
|
3045
|
-
{ start:
|
|
3046
|
-
{ start:
|
|
3047
|
-
{ start:
|
|
3048
|
-
{ start:
|
|
3049
|
-
{ start:
|
|
3050
|
-
{ start:
|
|
3051
|
-
{ start:
|
|
3052
|
-
{ start:
|
|
3053
|
-
{ start:
|
|
3054
|
-
{ start:
|
|
3055
|
-
{ start:
|
|
3174
|
+
{ start: 1894, length: 20 },
|
|
3175
|
+
{ start: 2215, length: 20 },
|
|
3176
|
+
{ start: 3652, length: 20 },
|
|
3177
|
+
{ start: 3775, length: 20 },
|
|
3178
|
+
{ start: 4291, length: 20 },
|
|
3179
|
+
{ start: 5129, length: 20 },
|
|
3180
|
+
{ start: 5738, length: 20 },
|
|
3181
|
+
{ start: 7723, length: 20 },
|
|
3182
|
+
{ start: 7846, length: 20 },
|
|
3183
|
+
{ start: 8166, length: 20 },
|
|
3184
|
+
{ start: 8709, length: 20 },
|
|
3185
|
+
{ start: 9511, length: 20 },
|
|
3186
|
+
{ start: 9787, length: 20 }
|
|
3056
3187
|
]
|
|
3057
3188
|
}
|
|
3058
3189
|
}
|
|
3059
3190
|
},
|
|
3060
3191
|
deployedBytecode: {
|
|
3061
|
-
object: "0x608060405234801561000f575f5ffd5b506004361061023f575f3560e01c80638b2ec61111610135578063c3fa6f22116100b4578063ddd8f8e311610079578063ddd8f8e31461051a578063ec8e07291461052d578063f3757ad414610557578063f851a44014610577578063ff20370714610589575f5ffd5b8063c3fa6f22146104bb578063ca4051f2146104ce578063cf515d37146104e1578063d39a5cf9146104f4578063d4932b4e14610507575f5ffd5b8063a6df2c01116100fa578063a6df2c011461045c578063ac20d6781461046f578063b8bd487914610482578063b96b161c14610495578063c1b77162146104a8575f5ffd5b80638b2ec611146103f05780638d6937b8146104035780638e2e2e621461041657806398e73ac3146104295780639c1a81a314610449575f5ffd5b806346b758a0116101c157806375829def1161018657806375829def146103645780637e5a88f3146103775780638163f2311461038a578063818694f1146103ca578063847755e3146103dd575f5ffd5b806346b758a01461031b5780635b7ab9291461032e5780635c975abb14610341578063652ba33d146103545780636c40d5d61461035c575f5ffd5b80632e5ce77f116102075780632e5ce77f146102b9578063311a335c146102cc578063320d3b55146102df5780633d6ed975146102f257806341a0e2c214610305575f5ffd5b8063106a2f6d1461024357806316c38b3c1461026b57806316e3d7291461028057806318677f2a146102935780631fac4345146102a6575b5f5ffd5b610256610251366004612a78565b61059c565b60405190151581526020015b60405180910390f35b61027e610279366004612ae2565b610809565b005b61027e61028e366004612afd565b610892565b61027e6102a1366004612b42565b610919565b6102566102b4366004612b6d565b6109c6565b6102566102c7366004612bdc565b6109dc565b6102566102da366004612c13565b610b10565b6102566102ed366004612b6d565b610b28565b610256610300366004612c13565b610b37565b61030d600181565b604051908152602001610262565b610256610329366004612d3d565b610b46565b61025661033c366004612d3d565b610b5c565b5f5461025690600160a01b900460ff1681565b61030d600381565b61030d600281565b61027e610372366004612b42565b610b69565b610256610385366004612d3d565b610c37565b6103b2610398366004612e5b565b60016020525f90815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610262565b6102566103d8366004612bdc565b610c44565b6102566103eb366004612ef6565b610cac565b6102566103fe366004612b6d565b610e74565b61027e610411366004612f92565b610e83565b610256610424366004612b6d565b610f43565b61043c610437366004612afd565b610f51565b6040516102629190612ffe565b610256610457366004612b6d565b61107c565b61027e61046a366004613034565b611096565b61025661047d366004612b6d565b6111c0565b610256610490366004612b6d565b6111da565b6002546103b2906001600160a01b031681565b6102566104b6366004612b6d565b6111f4565b6102566104c9366004612bdc565b611202565b6102566104dc366004612b6d565b611218565b6102566104ef36600461309e565b611226565b610256610502366004612d3d565b61147a565b610256610515366004612bdc565b611487565b610256610528366004612b6d565b6115bb565b61054061053b3660046130e6565b6115d5565b604080519215158352602083019190915201610262565b61056a61056536600461311c565b611bf5565b604051610262919061316a565b5f546103b2906001600160a01b031681565b610256610597366004612bdc565b611d35565b5f5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63defa8ed9876040518263ffffffff1660e01b81526004016105d89190613360565b608060405180830381865af41580156105f3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106179190613372565b929650909450925090505f6001846001811115610636576106366133be565b1490505f89600281111561064c5761064c6133be565b83600281111561065e5761065e6133be565b1490505f7f2532418a107c5306fa8308c22255792cf77e4a290cbce8a840a642a3e591340b871480156106bc575060018a60028111156106a0576106a06133be565b14806106bc57505f8a60028111156106ba576106ba6133be565b145b8061071c57507f16700a2d9168a194fc85f237af5829b5a2be05b8ae8ac4879ada34cf54a9c2118714801561071c575060028a6002811115610700576107006133be565b148061071c57505f8a600281111561071a5761071a6133be565b145b90505f7f1fa73686cf510f8f85757b0602de0dd72a13e68ae2092462be8b72662e7f179b86148015610779575060018b600281111561075d5761075d6133be565b148061077957505f8b6002811115610777576107776133be565b145b806107d957507f24d9929b248be7eeecaa98e105c034a50539610f3fdd4cb9c8983ef4100d615d861480156107d9575060028b60028111156107bd576107bd6133be565b14806107d957505f8b60028111156107d7576107d76133be565b145b90508380156107e55750825b80156107ee5750815b80156107f75750805b985050505050505050505b9392505050565b5f546001600160a01b0316331461083b5760405162461bcd60e51b8152600401610832906133d2565b60405180910390fd5b5f8054821515600160a01b0260ff60a01b199091161790556040517f9a506b30e47f3823b09f67e4c0dfa5c3d8023b71825b7ceaa97677129128c9c59061088790831515815260200190565b60405180910390a150565b604051632988ebc960e21b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063a623af24906108cb908590600401613360565b602060405180830381865af41580156108e6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061090a9190613409565b905061091581611d42565b5050565b5f546001600160a01b031633146109425760405162461bcd60e51b8152600401610832906133d2565b6001600160a01b0381166109a45760405162461bcd60e51b8152602060048201526024808201527f526f6f742072656769737472792063616e6e6f74206265207a65726f206164646044820152637265737360e01b6064820152608401610832565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b5f6109d48460028585611e03565b949350505050565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813876040518263ffffffff1660e01b8152600401610a179190613360565b606060405180830381865af4158015610a32573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a569190613420565b91945092509050610a68838635611ff5565b610a845760405162461bcd60e51b815260040161083290613461565b60ff811615610afd576040805162461bcd60e51b81526020600482015260248101919091527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734167654265747765656e20696e73746561646064820152608401610832565b5060ff8681169116149150509392505050565b5f610b1f858560028686612022565b95945050505050565b5f6109d4848560028686612022565b5f610b1f858560038686612022565b5f610b5383600484612343565b90505b92915050565b5f610b5383600784612343565b5f546001600160a01b03163314610b925760405162461bcd60e51b8152600401610832906133d2565b6001600160a01b038116610be85760405162461bcd60e51b815260206004820152601c60248201527f41646d696e2063616e6e6f74206265207a65726f2061646472657373000000006044820152606401610832565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f101b8081ff3b56bbf45deb824d86a3b0fd38b7e3dd42421105cf8abe9106db0b9190a35050565b5f610b5383600684612343565b5f5f8460ff1611610c975760405162461bcd60e51b815260206004820152601e60248201527f4d617820616765206d7573742062652067726561746572207468616e203000006044820152606401610832565b6109d4610ca56001866134e6565b8484611487565b5f5f610cec86868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061245192505050565b610d6657600860028787604051602001610d079291906134ff565b60408051601f1981840301815290829052610d219161350e565b602060405180830381855afa158015610d3c573d5f5f3e3d5ffd5b5050506040513d601f19601f82011682018060405250810190610d5f9190613409565b901c610d68565b5f5b90505f610da985858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061245192505050565b610e2357600860028686604051602001610dc49291906134ff565b60408051601f1981840301815290829052610dde9161350e565b602060405180830381855afa158015610df9573d5f5f3e3d5ffd5b5050506040513d601f19601f82011682018060405250810190610e1c9190613409565b901c610e25565b5f5b90508189896003818110610e3b57610e3b613524565b90506020020135148015610e6757508089896004818110610e5e57610e5e613524565b90506020020135145b9998505050505050505050565b5f6109d4848560038686612022565b5f546001600160a01b03163314610eac5760405162461bcd60e51b8152600401610832906133d2565b5f5b81811015610f3e5760015f848484818110610ecb57610ecb613524565b602090810292909201358352508101919091526040015f2080546001600160a01b0319169055828282818110610f0357610f03613524565b905060200201357f6fdcbcf8f91bc23f2c9dcfe8fe01d80d1b1afbbf207298e94c0171ccc587424c60405160405180910390a2600101610eae565b505050565b5f6109d48460038585611e03565b60408051606080820183525f80835260208301529181019190915260405163dfda037960e01b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063dfda037990610fa5908690600401613360565b5f60405180830381865af4158015610fbf573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610fe69190810190613587565b604051630578c5d360e11b815290915073__$144f4fe859debe4776cdef2b99f7b97a42$__90630af18ba6906110209084906004016135b8565b5f60405180830381865af415801561103a573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261106191908101906135ca565b604085015260208401526001600160a01b0316825250919050565b5f6109d461108d6201518086613615565b60028585611e03565b5f546001600160a01b031633146110bf5760405162461bcd60e51b8152600401610832906133d2565b5f5b838110156111b9578282828181106110db576110db613524565b90506020020160208101906110f09190612b42565b60015f87878581811061110557611105613524565b9050602002013581526020019081526020015f205f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555082828281811061114e5761114e613524565b90506020020160208101906111639190612b42565b6001600160a01b031685858381811061117e5761117e613524565b905060200201357f636107338a3eb46f1f60562462f3ec11393d35fbc965991aaade3b9e7d89c3f560405160405180910390a36001016110c1565b5050505050565b5f6109d46111d18562015180613628565b60038585612456565b5f6109d46111eb8562015180613628565b60028585612456565b5f6109d48460028585612456565b5f6109d461121185600161363b565b84846109dc565b5f6109d48460038585612456565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813876040518263ffffffff1660e01b81526004016112619190613360565b606060405180830381865af415801561127c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a09190613420565b919450925090506112b2838635611ff5565b6112ce5760405162461bcd60e51b815260040161083290613461565b8660ff168860ff16111561133a5760405162461bcd60e51b815260206004820152602d60248201527f4d696e20616765206d757374206265206c657373207468616e206f722065717560448201526c616c20746f206d61782061676560981b6064820152608401610832565b8160ff165f036113c75760405162461bcd60e51b815260206004820152604c60248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697341676542656c6f774f724560648201526b1c5d585b081a5b9cdd19585960a21b608482015260a401610832565b8060ff165f036114545760405162461bcd60e51b815260206004820152604c60248201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697341676541626f76654f724560648201526b1c5d585b081a5b9cdd19585960a21b608482015260a401610832565b8160ff168860ff1614801561146e57508060ff168760ff16145b98975050505050505050565b5f610b5383600584612343565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813876040518263ffffffff1660e01b81526004016114c29190613360565b606060405180830381865af41580156114dd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115019190613420565b91945092509050611513838635611ff5565b61152f5760405162461bcd60e51b815260040161083290613461565b60ff8216156115a8576040805162461bcd60e51b81526020600482015260248101919091527f5468652070726f6f66206c6f77657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734167654265747765656e20696e73746561646064820152608401610832565b60ff878116911614925050509392505050565b5f6109d46115cc6201518086613615565b60038585611e03565b5f80548190600160a01b900460ff16156116265760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610832565b5f61163a6116348580613654565b35612687565b90506116736116498580613654565b611657906040810190613672565b5f81811061166757611667613524565b905060200201356126e0565b6116ab6116808580613654565b61168e906040810190613672565b600181811061169f5761169f613524565b905060200201356127a8565b61170a6116b88580613654565b6116c6906040810190613672565b808060200260200160405190810160405280939291908181526020018383602002808284375f920191909152506117049250505060408701876136b7565b35612866565b6117725760405162461bcd60e51b815260206004820152603360248201527f5468652070726f6f66207761732067656e657261746564206f757473696465206044820152721d1a19481d985b1a591a5d1e481c195c9a5bd9606a1b6064820152608401610832565b6117c361177f8580613654565b61178d906040810190613672565b61179a60408801886136b7565b6117a89060208101906136cb565b6117b560408a018a6136b7565b6103eb9060408101906136cb565b61180f5760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420646f6d61696e206f722073636f70650000000000000000006044820152606401610832565b6118a261181c8580613654565b61182a906040810190613672565b60059060016118398980613654565b611847906040810190613672565b611852929150613615565b9261185f9392919061370d565b808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525061189d925050506020870187613738565b612891565b5f6118ad8580613654565b6118bb906040810190613672565b60026118c78880613654565b6118d5906040810190613672565b6118e0929150613615565b8181106118ef576118ef613524565b905060200201355f1c6003811115611909576119096133be565b9050600281600381111561191f5761191f6133be565b1415801561193f5750600381600381111561193c5761193c6133be565b14155b80611963575061195260408601866136b7565b611963906080810190606001612ae2565b6119c05760405162461bcd60e51b815260206004820152602860248201527f4d6f636b2070726f6f667320617265206f6e6c7920616c6c6f77656420696e20604482015267646576206d6f646560c01b6064820152608401610832565b5f8160038111156119d3576119d36133be565b14806119f857506119e760408601866136b7565b6119f8906080810190606001612ae2565b611a585760405162461bcd60e51b815260206004820152602b60248201527f53616c746564206e756c6c69666965727320617265206e6f7420737570706f7260448201526a74656420666f72206e6f7760a81b6064820152608401610832565b6007611a648680613654565b611a72906040810190613672565b611a7d929150613615565b611a8a6020870187613738565b611a98906020810190613672565b905014611af55760405162461bcd60e51b815260206004820152602560248201527f496e76616c696420636f6d6d697474656420696e70757420636f756e7473206c6044820152640cadccee8d60db1b6064820152608401610832565b6001600160a01b03821663ea50d0e4611b0e8780613654565b611b1c9060208101906136cb565b611b268980613654565b611b34906040810190613672565b6040518563ffffffff1660e01b8152600401611b53949392919061374c565b602060405180830381865afa158015611b6e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b92919061377d565b93505f6001611ba18780613654565b611baf906040810190613672565b611bba929150613615565b9050611bc68680613654565b611bd4906040810190613672565b82818110611be457611be4613524565b905060200201359350505050915091565b611c3d60405180610100016040528060608152602001606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b604051635450abb360e11b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063a8a1576690611c76908790600401613360565b5f60405180830381865af4158015611c90573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611cb79190810190613798565b6040516301e9bf5760e11b815290925073__$144f4fe859debe4776cdef2b99f7b97a42$__91506303d37eae90611cf490849087906004016137f1565b5f60405180830381865af4158015611d0e573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526109d49190810190613814565b5f6109d484858585611226565b6002546040516383578c1160e01b815260036004820152602481018390526001600160a01b03909116906383578c1190604401602060405180830381865afa158015611d90573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611db4919061377d565b611e005760405162461bcd60e51b815260206004820152601f60248201527f496e76616c69642073616e6374696f6e7320726567697374727920726f6f74006044820152606401610832565b50565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e87896040518363ffffffff1660e01b8152600401611e409291906139a5565b606060405180830381865af4158015611e5b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e7f91906139e2565b91945092509050611e91838635611ff5565b611ead5760405162461bcd60e51b815260040161083290613461565b8115611f2b5760405162461bcd60e51b815260206004820152604160248201527f5468652070726f6f66206c6f77657220626f756e64206d75737420626520302c60448201527f20706c6561736520757365206973446174654265747765656e20696e737465616064820152601960fa1b608482015260a401610832565b600287600a811115611f3f57611f3f6133be565b1480611f5c5750600387600a811115611f5a57611f5a6133be565b145b611f785760405162461bcd60e51b815260040161083290613a0d565b600287600a811115611f8c57611f8c6133be565b03611fca57805f03611fb05760405162461bcd60e51b815260040161083290613a39565b611fbe6383aa7e8082613615565b881493505050506109d4565b805f03611fe95760405162461bcd60e51b815260040161083290613ab1565b871492506109d4915050565b5f806120018385613628565b905083421015801561201257508381115b80156109d4575042109392505050565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e87896040518363ffffffff1660e01b815260040161205f9291906139a5565b606060405180830381865af415801561207a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061209e91906139e2565b919450925090506120b0838635611ff5565b6120cc5760405162461bcd60e51b815260040161083290613461565b878911156121345760405162461bcd60e51b815260206004820152602f60248201527f4d696e2064617465206d757374206265206c657373207468616e206f7220657160448201526e75616c20746f206d6178206461746560881b6064820152608401610832565b600287600a811115612148576121486133be565b14806121655750600387600a811115612163576121636133be565b145b6121815760405162461bcd60e51b815260040161083290613a0d565b600287600a811115612195576121956133be565b0361227b57815f0361222a5760405162461bcd60e51b815260206004820152605260248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697342697274686461746542656064820152711b1bddd3dc915c5d585b081a5b9cdd19585960721b608482015260a401610832565b805f036122495760405162461bcd60e51b815260040161083290613a39565b6122576383aa7e8083613615565b89148015612271575061226e6383aa7e8082613615565b88145b9350505050610b1f565b815f0361230c5760405162461bcd60e51b815260206004820152605360248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c65617365207573652069734578706972794461746542606482015272195b1bddd3dc915c5d585b081a5b9cdd195859606a1b608482015260a401610832565b805f0361232b5760405162461bcd60e51b815260040161083290613ab1565b81891480156122715750909614979650505050505050565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63dc8c5e9a85876040518363ffffffff1660e01b815260040161237f9291906139a5565b5f60405180830381865af4158015612399573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526123c09190810190613b2a565b91509150808651146123d6575f92505050610802565b5f5b818110156124445761242d8782815181106123f5576123f5613524565b602002602001015184838151811061240f5761240f613524565b60200260200101518051602091820120825192909101919091201490565b61243c575f9350505050610802565b6001016123d8565b5060019695505050505050565b511590565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e87896040518363ffffffff1660e01b81526004016124939291906139a5565b606060405180830381865af41580156124ae573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124d291906139e2565b919450925090506124e4838635611ff5565b6125005760405162461bcd60e51b815260040161083290613461565b600287600a811115612514576125146133be565b14806125315750600387600a81111561252f5761252f6133be565b145b61254d5760405162461bcd60e51b815260040161083290613a0d565b600287600a811115612561576125616133be565b036125f75780156125e95760405162461bcd60e51b815260206004820152604660248201527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734269727468646174654265747765656e20696064820152651b9cdd19585960d21b608482015260a401610832565b611fbe6383aa7e8083613615565b801561267b5760405162461bcd60e51b815260206004820152604760248201527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c6561736520757365206973457870697279446174654265747765656e206064820152661a5b9cdd19585960ca1b608482015260a401610832565b50861491506109d49050565b5f818152600160205260408120546001600160a01b031680610b565760405162461bcd60e51b815260206004820152601260248201527115995c9a599a595c881b9bdd08199bdd5b9960721b6044820152606401610832565b6002546040516383578c1160e01b815260016004820152602481018390526001600160a01b03909116906383578c1190604401602060405180830381865afa15801561272e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612752919061377d565b611e005760405162461bcd60e51b815260206004820152602160248201527f496e76616c696420636572746966696361746520726567697374727920726f6f6044820152601d60fa1b6064820152608401610832565b600280546040516383578c1160e01b81526004810192909252602482018390526001600160a01b0316906383578c1190604401602060405180830381865afa1580156127f6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061281a919061377d565b611e005760405162461bcd60e51b815260206004820152601d60248201527f496e76616c6964206369726375697420726567697374727920726f6f740000006044820152606401610832565b5f5f8360028151811061287b5761287b613524565b60200260200101515f1c90506109d48184611ff5565b5f805b6128a16020840184613672565b90508110156129fb575f600860026128b986806136cb565b86906128c860208a018a613672565b888181106128d8576128d8613524565b90506020020135886128ea9190613628565b926128f793929190613be3565b6040516020016129089291906134ff565b60408051601f19818403018152908290526129229161350e565b602060405180830381855afa15801561293d573d5f5f3e3d5ffd5b5050506040513d601f19601f820116820180604052508101906129609190613409565b901c905084828151811061297657612976613524565b602002602001015181146129c15760405162461bcd60e51b8152602060048201526012602482015271125b9d985b1a590818dbdb5b5a5d1b595b9d60721b6044820152606401610832565b6129ce6020850185613672565b838181106129de576129de613524565b90506020020135836129f09190613628565b925050600101612894565b50612a0682806136cb565b90508114610f3e5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420636f6d6d697474656420696e70757473206c656e677468006044820152606401610832565b60038110611e00575f5ffd5b5f60408284031215612a72575f5ffd5b50919050565b5f5f5f60608486031215612a8a575f5ffd5b8335612a9581612a56565b92506020840135612aa581612a56565b915060408401356001600160401b03811115612abf575f5ffd5b612acb86828701612a62565b9150509250925092565b8015158114611e00575f5ffd5b5f60208284031215612af2575f5ffd5b813561080281612ad5565b5f60208284031215612b0d575f5ffd5b81356001600160401b03811115612b22575f5ffd5b6109d484828501612a62565b6001600160a01b0381168114611e00575f5ffd5b5f60208284031215612b52575f5ffd5b813561080281612b2e565b5f60808284031215612a72575f5ffd5b5f5f5f60608486031215612b7f575f5ffd5b8335925060208401356001600160401b03811115612b9b575f5ffd5b612ba786828701612a62565b92505060408401356001600160401b03811115612bc2575f5ffd5b612acb86828701612b5d565b60ff81168114611e00575f5ffd5b5f5f5f60608486031215612bee575f5ffd5b8335612bf981612bce565b925060208401356001600160401b03811115612b9b575f5ffd5b5f5f5f5f60808587031215612c26575f5ffd5b843593506020850135925060408501356001600160401b03811115612c49575f5ffd5b612c5587828801612a62565b92505060608501356001600160401b03811115612c70575f5ffd5b612c7c87828801612b5d565b91505092959194509250565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b0381118282101715612cbf57612cbf612c88565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612ced57612ced612c88565b604052919050565b5f6001600160401b03821115612d0d57612d0d612c88565b5060051b60200190565b5f6001600160401b03821115612d2f57612d2f612c88565b50601f01601f191660200190565b5f5f60408385031215612d4e575f5ffd5b82356001600160401b03811115612d63575f5ffd5b8301601f81018513612d73575f5ffd5b8035612d86612d8182612cf5565b612cc5565b8082825260208201915060208360051b850101925087831115612da7575f5ffd5b602084015b83811015612e275780356001600160401b03811115612dc9575f5ffd5b8501603f81018a13612dd9575f5ffd5b6020810135612dea612d8182612d17565b8181526040838301018c1015612dfe575f5ffd5b816040840160208301375f60208383010152808652505050602083019250602081019050612dac565b50945050505060208301356001600160401b03811115612e45575f5ffd5b612e5185828601612a62565b9150509250929050565b5f60208284031215612e6b575f5ffd5b5035919050565b5f5f83601f840112612e82575f5ffd5b5081356001600160401b03811115612e98575f5ffd5b6020830191508360208260051b8501011115612eb2575f5ffd5b9250929050565b5f5f83601f840112612ec9575f5ffd5b5081356001600160401b03811115612edf575f5ffd5b602083019150836020828501011115612eb2575f5ffd5b5f5f5f5f5f5f60608789031215612f0b575f5ffd5b86356001600160401b03811115612f20575f5ffd5b612f2c89828a01612e72565b90975095505060208701356001600160401b03811115612f4a575f5ffd5b612f5689828a01612eb9565b90955093505060408701356001600160401b03811115612f74575f5ffd5b612f8089828a01612eb9565b979a9699509497509295939492505050565b5f5f60208385031215612fa3575f5ffd5b82356001600160401b03811115612fb8575f5ffd5b612fc485828601612e72565b90969095509350505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b6020815260018060a01b038251166020820152602082015160408201525f60408301516060808401526109d46080840182612fd0565b5f5f5f5f60408587031215613047575f5ffd5b84356001600160401b0381111561305c575f5ffd5b61306887828801612e72565b90955093505060208501356001600160401b03811115613086575f5ffd5b61309287828801612e72565b95989497509550505050565b5f5f5f5f608085870312156130b1575f5ffd5b84356130bc81612bce565b935060208501356130cc81612bce565b925060408501356001600160401b03811115612c49575f5ffd5b5f602082840312156130f6575f5ffd5b81356001600160401b0381111561310b575f5ffd5b820160608185031215610802575f5ffd5b5f5f6040838503121561312d575f5ffd5b82356001600160401b03811115613142575f5ffd5b61314e85828601612a62565b925050602083013561315f81612ad5565b809150509250929050565b602081525f82516101006020840152613187610120840182612fd0565b90506020840151601f198483030160408501526131a48282612fd0565b9150506040840151601f198483030160608501526131c28282612fd0565b9150506060840151601f198483030160808501526131e08282612fd0565b9150506080840151601f198483030160a08501526131fe8282612fd0565b91505060a0840151601f198483030160c085015261321c8282612fd0565b91505060c0840151601f198483030160e085015261323a8282612fd0565b91505060e0840151601f1984830301610100850152610b1f8282612fd0565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b8183525f6001600160fb1b03831115613298575f5ffd5b8260051b80836020870137939093016020019392505050565b5f8135601e19833603018082126132c6575f5ffd5b602091840191820191356001600160401b038111156132e3575f5ffd5b8036038313156132f1575f5ffd5b60408652613303604087018285613259565b9250506020840135818112613316575f5ffd5b8401602081019150356001600160401b03811115613332575f5ffd5b8060051b3603821315613343575f5ffd5b8583036020870152613356838284613281565b9695505050505050565b602081525f610b5360208301846132b1565b5f5f5f5f60808587031215613385575f5ffd5b845160208601519094506002811061339b575f5ffd5b6040860151606087015191945092506133b381612a56565b939692955090935050565b634e487b7160e01b5f52602160045260245ffd5b6020808252601a908201527f4e6f7420617574686f72697a65643a2061646d696e206f6e6c79000000000000604082015260600190565b5f60208284031215613419575f5ffd5b5051919050565b5f5f5f60608486031215613432575f5ffd5b8351602085015190935061344581612bce565b604085015190925061345681612bce565b809150509250925092565b6020808252604b908201527f5468652063757272656e742064617465207573656420696e207468652070726f60408201527f6f6620646f6573206e6f742066616c6c2077697468696e207468652076616c6960608201526a191a5d1e481c195c9a5bd960aa1b608082015260a00190565b634e487b7160e01b5f52601160045260245ffd5b60ff8281168282160390811115610b5657610b566134d2565b818382375f9101908152919050565b5f82518060208501845e5f920191825250919050565b634e487b7160e01b5f52603260045260245ffd5b5f82601f830112613547575f5ffd5b8151602083015f61355a612d8184612d17565b905082815285838301111561356d575f5ffd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215613597575f5ffd5b81516001600160401b038111156135ac575f5ffd5b6109d484828501613538565b602081525f610b536020830184612fd0565b5f5f5f606084860312156135dc575f5ffd5b83516135e781612b2e565b6020850151604086015191945092506001600160401b03811115613609575f5ffd5b612acb86828701613538565b81810381811115610b5657610b566134d2565b80820180821115610b5657610b566134d2565b60ff8181168382160190811115610b5657610b566134d2565b5f8235605e19833603018112613668575f5ffd5b9190910192915050565b5f5f8335601e19843603018112613687575f5ffd5b8301803591506001600160401b038211156136a0575f5ffd5b6020019150600581901b3603821315612eb2575f5ffd5b5f8235607e19833603018112613668575f5ffd5b5f5f8335601e198436030181126136e0575f5ffd5b8301803591506001600160401b038211156136f9575f5ffd5b602001915036819003821315612eb2575f5ffd5b5f5f8585111561371b575f5ffd5b83861115613727575f5ffd5b5050600583901b0193919092039150565b5f8235603e19833603018112613668575f5ffd5b604081525f61375f604083018688613259565b8281036020840152613772818587613281565b979650505050505050565b5f6020828403121561378d575f5ffd5b815161080281612ad5565b5f5f604083850312156137a9575f5ffd5b82516001600160401b038111156137be575f5ffd5b6137ca85828601613538565b92505060208301516001600160401b038111156137e5575f5ffd5b612e5185828601613538565b604081525f6138036040830185612fd0565b905082151560208301529392505050565b5f60208284031215613824575f5ffd5b81516001600160401b03811115613839575f5ffd5b8201610100818503121561384b575f5ffd5b613853612c9c565b81516001600160401b03811115613868575f5ffd5b61387486828501613538565b82525060208201516001600160401b0381111561388f575f5ffd5b61389b86828501613538565b60208301525060408201516001600160401b038111156138b9575f5ffd5b6138c586828501613538565b60408301525060608201516001600160401b038111156138e3575f5ffd5b6138ef86828501613538565b60608301525060808201516001600160401b0381111561390d575f5ffd5b61391986828501613538565b60808301525060a08201516001600160401b03811115613937575f5ffd5b61394386828501613538565b60a08301525060c08201516001600160401b03811115613961575f5ffd5b61396d86828501613538565b60c08301525060e08201516001600160401b0381111561398b575f5ffd5b61399786828501613538565b60e083015250949350505050565b604081525f6139b760408301856132b1565b9050600b83106139d557634e487b7160e01b5f52602160045260245ffd5b8260208301529392505050565b5f5f5f606084860312156139f4575f5ffd5b5050815160208301516040909301519094929350919050565b602080825260129082015271496e76616c69642070726f6f66207479706560701b604082015260600190565b60208082526052908201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60408201527f6e2d7a65726f2c20706c656173652075736520697342697274686461746541626060820152711bdd9953dc915c5d585b081a5b9cdd19585960721b608082015260a00190565b60208082526053908201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60408201527f6e2d7a65726f2c20706c65617365207573652069734578706972794461746541606082015272189bdd9953dc915c5d585b081a5b9cdd195859606a1b608082015260a00190565b5f5f60408385031215613b3b575f5ffd5b82516001600160401b03811115613b50575f5ffd5b8301601f81018513613b60575f5ffd5b8051613b6e612d8182612cf5565b8082825260208201915060208360051b850101925087831115613b8f575f5ffd5b602084015b83811015613bcf5780516001600160401b03811115613bb1575f5ffd5b613bc08a602083890101613538565b84525060209283019201613b94565b506020969096015195979596505050505050565b5f5f85851115613bf1575f5ffd5b83861115613bfd575f5ffd5b505082019391909203915056fea2646970667358221220f991155c5f0495dd21a11592eb81a72baddd6126ad66ff51d0de5dd26a8c865164736f6c634300081d0033",
|
|
3062
|
-
sourceMap: "706:30507:26:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23756:915;;;;;;:::i;:::-;;:::i;:::-;;;1155:14:34;;1148:22;1130:41;;1118:2;1103:18;23756:915:26;;;;;;;;2527:118;;;;;;:::i;:::-;;:::i;:::-;;23118:224;;;;;;:::i;:::-;;:::i;3178:206::-;;;;;;:::i;:::-;;:::i;14705:261::-;;;;;;:::i;:::-;;:::i;4538:543::-;;;;;;:::i;:::-;;:::i;14091:279::-;;;;;;:::i;:::-;;:::i;15830:247::-;;;;;;:::i;:::-;;:::i;17636:282::-;;;;;;:::i;:::-;;:::i;738:69::-;;804:1;738:69;;;;;5120:25:34;;;5108:2;5093:18;738:69:26;4974:177:34;20526:220:26;;;;;;:::i;:::-;;:::i;22299:228::-;;;;;;:::i;:::-;;:::i;976:18::-;;;;;-1:-1:-1;;;976:18:26;;;;;;880:67;;944:1;880:67;;811:65;;873:1;811:65;;2294:229;;;;;;:::i;:::-;;:::i;21065:227::-;;;;;;:::i;:::-;;:::i;1084:53::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;1084:53:26;;;;;;-1:-1:-1;;;;;8330:32:34;;;8312:51;;8300:2;8285:18;1084:53:26;8166:203:34;7831:283:26;;;;;;:::i;:::-;;:::i;25010:706::-;;;;;;:::i;:::-;;:::i;19402:250::-;;;;;;:::i;:::-;;:::i;2943:231::-;;;;;;:::i;:::-;;:::i;18259:264::-;;;;;;:::i;:::-;;:::i;22680:300::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;15265:263::-;;;;;;:::i;:::-;;:::i;2649:290::-;;;;;;:::i;:::-;;:::i;16979:264::-;;;;;;:::i;:::-;;:::i;13445:261::-;;;;;;:::i;:::-;;:::i;1211:33::-;;;;;-1:-1:-1;;;;;1211:33:26;;;12890:259;;;;;;:::i;:::-;;:::i;5355:224::-;;;;;;:::i;:::-;;:::i;16415:262::-;;;;;;:::i;:::-;;:::i;5936:768::-;;;;;;:::i;:::-;;:::i;21681:221::-;;;;;;:::i;:::-;;:::i;7014:543::-;;;;;;:::i;:::-;;:::i;18828:266::-;;;;;;:::i;:::-;;:::i;27654:3557::-;;;;;;:::i;:::-;;:::i;:::-;;;;13891:14:34;;13884:22;13866:41;;13938:2;13923:18;;13916:34;;;;13839:18;27654:3557:26;13698:258:34;3906:322:26;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;952:20::-;;;;;-1:-1:-1;;;;;952:20:26;;;8394:214;;;;;;:::i;:::-;;:::i;23756:915::-;23892:4;23905:19;23926:23;23951:13;23966:36;24006:15;:39;24046:11;24006:52;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23904:154;;-1:-1:-1;23904:154:26;;-1:-1:-1;23904:154:26;-1:-1:-1;23904:154:26;-1:-1:-1;24064:17:26;24099:22;24084:11;:37;;;;;;;;:::i;:::-;;24064:57;;24127:18;24174:13;24148:39;;;;;;;;:::i;:::-;:22;:39;;;;;;;;:::i;:::-;;;-1:-1:-1;24193:25:26;5336:66:19;24222:44:26;;:78;;;;-1:-1:-1;24277:6:26;24271:2;:12;;;;;;;;:::i;:::-;;:28;;;-1:-1:-1;24293:6:26;24287:2;:12;;;;;;;;:::i;:::-;;24271:28;24221:173;;;-1:-1:-1;5508:66:19;24306:49:26;;:87;;;;-1:-1:-1;24366:10:26;24360:2;:16;;;;;;;;:::i;:::-;;:32;;;-1:-1:-1;24386:6:26;24380:2;:12;;;;;;;;:::i;:::-;;24360:32;24193:201;-1:-1:-1;24400:23:26;4953:66:19;24427:34:26;;:68;;;;-1:-1:-1;24472:6:26;24466:2;:12;;;;;;;;:::i;:::-;;:28;;;-1:-1:-1;24488:6:26;24482:2;:12;;;;;;;;:::i;:::-;;24466:28;24426:152;;;-1:-1:-1;5174:66:19;24501:38:26;;:76;;;;-1:-1:-1;24550:10:26;24544:2;:16;;;;;;;;:::i;:::-;;:32;;;-1:-1:-1;24570:6:26;24564:2;:12;;;;;;;;:::i;:::-;;24544:32;24400:178;;24591:12;:29;;;;;24607:13;24591:29;:53;;;;;24624:20;24591:53;:75;;;;;24648:18;24591:75;24584:82;;;;;;;;;;23756:915;;;;;;:::o;2527:118::-;2157:5;;-1:-1:-1;;;;;2157:5:26;2143:10;:19;2135:58;;;;-1:-1:-1;;;2135:58:26;;;;;;;:::i;:::-;;;;;;;;;2585:6:::1;:16:::0;;;::::1;;-1:-1:-1::0;;;2585:16:26::1;-1:-1:-1::0;;;;2585:16:26;;::::1;;::::0;;2612:28:::1;::::0;::::1;::::0;::::1;::::0;2594:7;1155:14:34;1148:22;1130:41;;1118:2;1103:18;;990:187;2612:28:26::1;;;;;;;;2527:118:::0;:::o;23118:224::-;23237:52;;-1:-1:-1;;;23237:52:26;;23208:26;;23237:15;;:39;;:52;;23277:11;;23237:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23208:81;;23295:42;23318:18;23295:22;:42::i;:::-;23202:140;23118:224;:::o;3178:206::-;2157:5;;-1:-1:-1;;;;;2157:5:26;2143:10;:19;2135:58;;;;-1:-1:-1;;;2135:58:26;;;;;;;:::i;:::-;-1:-1:-1;;;;;3262:27:26;::::1;3254:76;;;::::0;-1:-1:-1;;;3254:76:26;;19820:2:34;3254:76:26::1;::::0;::::1;19802:21:34::0;19859:2;19839:18;;;19832:30;19898:34;19878:18;;;19871:62;-1:-1:-1;;;19949:18:34;;;19942:34;19993:19;;3254:76:26::1;19618:400:34::0;3254:76:26::1;3336:12;:43:::0;;-1:-1:-1;;;;;;3336:43:26::1;-1:-1:-1::0;;;;;3336:43:26;;;::::1;::::0;;;::::1;::::0;;3178:206::o;14705:261::-;14865:4;14884:77;14904:7;14913:19;14934:11;14947:13;14884:19;:77::i;:::-;14877:84;14705:261;-1:-1:-1;;;;14705:261:26:o;4538:543::-;4688:4;4701:19;4722:9;4733;4746:15;:33;4780:11;4746:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4700:92;;-1:-1:-1;4700:92:26;-1:-1:-1;4700:92:26;-1:-1:-1;4806:73:26;4700:92;4841:37;;4806:21;:73::i;:::-;4798:161;;;;-1:-1:-1;;;4798:161:26;;;;;;;:::i;:::-;4973:8;;;;4965:85;;;;;-1:-1:-1;;;4965:85:26;;21204:2:34;4965:85:26;;;21186:21:34;21223:18;;;21216:30;;;;21282:34;21262:18;;;21255:62;21353:34;21333:18;;;21326:62;21405:19;;4965:85:26;21002:428:34;4965:85:26;-1:-1:-1;5063:13:26;;;;;;;;-1:-1:-1;;4538:543:26;;;;;:::o;14091:279::-;14266:4;14285:80;14299:7;14308;14317:19;14338:11;14351:13;14285;:80::i;:::-;14278:87;14091:279;-1:-1:-1;;;;;14091:279:26:o;15830:247::-;15979:4;15998:74;16012:4;16018;16024:19;16045:11;16058:13;15998;:74::i;17636:282::-;17812:4;17831:82;17845:7;17854;17863:21;17886:11;17899:13;17831;:82::i;20526:220::-;20647:4;20666:75;20683:11;20696:31;20729:11;20666:16;:75::i;:::-;20659:82;;20526:220;;;;;:::o;22299:228::-;22424:4;22443:79;22460:11;22473:35;22510:11;22443:16;:79::i;2294:229::-;2157:5;;-1:-1:-1;;;;;2157:5:26;2143:10;:19;2135:58;;;;-1:-1:-1;;;2135:58:26;;;;;;;:::i;:::-;-1:-1:-1;;;;;2368:22:26;::::1;2360:63;;;::::0;-1:-1:-1;;;2360:63:26;;21637:2:34;2360:63:26::1;::::0;::::1;21619:21:34::0;21676:2;21656:18;;;21649:30;21715;21695:18;;;21688:58;21763:18;;2360:63:26::1;21435:352:34::0;2360:63:26::1;2429:16;2448:5:::0;;-1:-1:-1;;;;;2459:16:26;;::::1;-1:-1:-1::0;;;;;;2459:16:26;::::1;::::0;::::1;::::0;;2486:32:::1;::::0;2448:5;;;::::1;::::0;;;2486:32:::1;::::0;2429:16;2486:32:::1;2354:169;2294:229:::0;:::o;21065:227::-;21189:4;21208:79;21225:11;21238:35;21275:11;21208:16;:79::i;7831:283::-;7974:4;8003:1;7994:6;:10;;;7986:53;;;;-1:-1:-1;;;7986:53:26;;21994:2:34;7986:53:26;;;21976:21:34;22033:2;22013:18;;;22006:30;22072:32;22052:18;;;22045:60;22122:18;;7986:53:26;21792:354:34;7986:53:26;8052:57;8070:10;8079:1;8070:6;:10;:::i;:::-;8082:11;8095:13;8052:17;:57::i;25010:706::-;25149:4;25263:17;25283:27;25303:6;;25283:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25283:19:26;;-1:-1:-1;;;25283:27:26:i;:::-;:92;;25374:1;25338:32;25362:6;;25345:24;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;25345:24:26;;;;;;;;;;25338:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;;25283:92;;;25327:1;25283:92;25263:112;;25475:20;25498:26;25518:5;;25498:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25498:19:26;;-1:-1:-1;;;25498:26:26:i;:::-;:90;;25587:1;25552:31;25576:5;;25559:23;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;25559:23:26;;;;;;;;;;25552:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;25498:90;;;25541:1;25498:90;25475:113;;25642:9;25601:12;;1108:1:19;25601:37:26;;;;;;;:::i;:::-;;;;;;;:50;:110;;;;;25699:12;25655;;1147:1:19;25655:40:26;;;;;;;:::i;:::-;;;;;;;:56;25601:110;25594:117;25010:706;-1:-1:-1;;;;;;;;;25010:706:26:o;19402:250::-;19552:4;19571:76;19585:4;19591;19597:21;19620:11;19633:13;19571;:76::i;2943:231::-;2157:5;;-1:-1:-1;;;;;2157:5:26;2143:10;:19;2135:58;;;;-1:-1:-1;;;2135:58:26;;;;;;;:::i;:::-;3029:9:::1;3024:146;3044:21:::0;;::::1;3024:146;;;3087:18;:33;3106:10;;3117:1;3106:13;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;::::1;;3087:33:::0;;-1:-1:-1;3087:33:26;::::1;::::0;;;;;;-1:-1:-1;3087:33:26;3080:40;;-1:-1:-1;;;;;;3080:40:26::1;::::0;;3149:10;;3160:1;3149:13;;::::1;;;;;:::i;:::-;;;;;;;3133:30;;;;;;;;;;3067:3;;3024:146;;;;2943:231:::0;;:::o;18259:264::-;18420:4;18439:79;18459:7;18468:21;18491:11;18504:13;18439:19;:79::i;22680:300::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;22819:47:26;;-1:-1:-1;;;22819:47:26;;22799:17;;22819:15;;:34;;:47;;22854:11;;22819:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22819:47:26;;;;;;;;;;;;:::i;:::-;22941:34;;-1:-1:-1;;;22941:34:26;;22799:67;;-1:-1:-1;22941:15:26;;:28;;:34;;22799:67;;22941:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22941:34:26;;;;;;;;;;;;:::i;:::-;22917:20;;;22872:103;22898:17;;;22872:103;-1:-1:-1;;;;;22872:103:26;;;-1:-1:-1;22873:9:26;22680:300;-1:-1:-1;22680:300:26:o;15265:263::-;15418:4;15437:86;15457:16;15467:6;15457:7;:16;:::i;:::-;15475:19;15496:11;15509:13;15437:19;:86::i;2649:290::-;2157:5;;-1:-1:-1;;;;;2157:5:26;2143:10;:19;2135:58;;;;-1:-1:-1;;;2135:58:26;;;;;;;:::i;:::-;2774:9:::1;2769:166;2789:21:::0;;::::1;2769:166;;;2861:9;;2871:1;2861:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2825:18;:33;2844:10;;2855:1;2844:13;;;;;;;:::i;:::-;;;;;;;2825:33;;;;;;;;;;;;:48;;;;;-1:-1:-1::0;;;;;2825:48:26::1;;;;;-1:-1:-1::0;;;;;2825:48:26::1;;;;;;2915:9;;2925:1;2915:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2886:42:26::1;2900:10;;2911:1;2900:13;;;;;;;:::i;:::-;;;;;;;2886:42;;;;;;;;;;2812:3;;2769:166;;;;2649:290:::0;;;;:::o;16979:264::-;17132:4;17151:87;17170:16;:7;17180:6;17170:16;:::i;:::-;17188:21;17211:11;17224:13;17151:18;:87::i;13445:261::-;13597:4;13616:85;13635:16;:7;13645:6;13635:16;:::i;:::-;13653:19;13674:11;13687:13;13616:18;:85::i;12890:259::-;13049:4;13068:76;13087:7;13096:19;13117:11;13130:13;13068:18;:76::i;5355:224::-;5498:4;5517:57;5535:10;:6;5544:1;5535:10;:::i;:::-;5547:11;5560:13;5517:17;:57::i;16415:262::-;16575:4;16594:78;16613:7;16622:21;16645:11;16658:13;16594:18;:78::i;5936:768::-;6099:4;6112:19;6133:9;6144;6157:15;:33;6191:11;6157:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6111:92;;-1:-1:-1;6111:92:26;-1:-1:-1;6111:92:26;-1:-1:-1;6217:73:26;6111:92;6252:37;;6217:21;:73::i;:::-;6209:161;;;;-1:-1:-1;;;6209:161:26;;;;;;;:::i;:::-;6394:6;6384:16;;:6;:16;;;;6376:74;;;;-1:-1:-1;;;6376:74:26;;25445:2:34;6376:74:26;;;25427:21:34;25484:2;25464:18;;;25457:30;25523:34;25503:18;;;25496:62;-1:-1:-1;;;25574:18:34;;;25567:43;25627:19;;6376:74:26;25243:409:34;6376:74:26;6464:3;:8;;6471:1;6464:8;6456:97;;;;-1:-1:-1;;;6456:97:26;;25859:2:34;6456:97:26;;;25841:21:34;25898:2;25878:18;;;25871:30;25937:34;25917:18;;;25910:62;26008:34;25988:18;;;25981:62;-1:-1:-1;;;26059:19:34;;;26052:43;26112:19;;6456:97:26;25657:480:34;6456:97:26;6567:3;:8;;6574:1;6567:8;6559:97;;;;-1:-1:-1;;;6559:97:26;;26344:2:34;6559:97:26;;;26326:21:34;26383:2;26363:18;;;26356:30;26422:34;26402:18;;;26395:62;26493:34;26473:18;;;26466:62;-1:-1:-1;;;26544:19:34;;;26537:43;26597:19;;6559:97:26;26142:480:34;6559:97:26;6679:3;6669:13;;:6;:13;;;:30;;;;;6696:3;6686:13;;:6;:13;;;6669:30;6662:37;5936:768;-1:-1:-1;;;;;;;;5936:768:26:o;21681:221::-;21803:4;21822:75;21839:11;21852:31;21885:11;21822:16;:75::i;7014:543::-;7164:4;7177:19;7198:9;7209;7222:15;:33;7256:11;7222:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7176:92;;-1:-1:-1;7176:92:26;-1:-1:-1;7176:92:26;-1:-1:-1;7282:73:26;7176:92;7317:37;;7282:21;:73::i;:::-;7274:161;;;;-1:-1:-1;;;7274:161:26;;;;;;;:::i;:::-;7449:8;;;;7441:85;;;;;-1:-1:-1;;;7441:85:26;;26829:2:34;7441:85:26;;;26811:21:34;26848:18;;;26841:30;;;;26907:34;26887:18;;;26880:62;26978:34;26958:18;;;26951:62;27030:19;;7441:85:26;26627:428:34;7441:85:26;7539:13;;;;;;;;-1:-1:-1;;;7014:543:26;;;;;:::o;18828:266::-;18982:4;19001:88;19021:16;19031:6;19021:7;:16;:::i;:::-;19039:21;19062:11;19075:13;19001:19;:88::i;27654:3557::-;27761:12;2249:6;;27761:12;;-1:-1:-1;;;2249:6:26;;;;2248:7;2240:38;;;;-1:-1:-1;;;2240:38:26;;27262:2:34;2240:38:26;;;27244:21:34;27301:2;27281:18;;;27274:30;-1:-1:-1;;;27320:18:34;;;27313:48;27378:18;;2240:38:26;27060:342:34;2240:38:26;27884:16:::1;27903:51;27916:28;:6:::0;;:28:::1;:::i;:::-;:37;27903:12;:51::i;:::-;27884:70:::0;-1:-1:-1;28003:112:26::1;28028:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;977:1:19;28028:86:26;;;;;;;:::i;:::-;;;;;;;28003:24;:112::i;:::-;28160:104;28181:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;1029:1:19;28181:82:26;;;;;;;:::i;:::-;;;;;;;28160:20;:104::i;:::-;28322:98;28332:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;28322:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;28375:20:26::1;::::0;-1:-1:-1;;;28375:20:26::1;::::0;::::1;::::0;::::1;:::i;:::-;:44;28322:9;:98::i;:::-;28307:180;;;::::0;-1:-1:-1;;;28307:180:26;;28840:2:34;28307:180:26::1;::::0;::::1;28822:21:34::0;28879:2;28859:18;;;28852:30;28918:34;28898:18;;;28891:62;-1:-1:-1;;;28969:18:34;;;28962:49;29028:19;;28307:180:26::1;28638:415:34::0;28307:180:26::1;28831:112;28844:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;28887:20;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:27;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;28916:20;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:26;::::0;::::1;::::0;::::1;::::0;::::1;:::i;28831:112::-;28823:148;;;::::0;-1:-1:-1;;;28823:148:26;;29787:2:34;28823:148:26::1;::::0;::::1;29769:21:34::0;29826:2;29806:18;;;29799:30;29865:25;29845:18;;;29838:53;29908:18;;28823:148:26::1;29585:347:34::0;28823:148:26::1;29039:249;29125:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;1195:1:19;::::0;29254::26::1;29203:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:52;::::0;;-1:-1:-1;29203:52:26::1;:::i;:::-;29125:131;;;;;;;:::i;:::-;29039:249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;29264:18:26::1;::::0;-1:-1:-1;;;29264:18:26::1;::::0;::::1;::::0;::::1;:::i;:::-;29039:21;:249::i;:::-;29295:27;29347:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;29440:1;29389:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:52;::::0;;-1:-1:-1;29389:52:26::1;:::i;:::-;29347:95;;;;;;;:::i;:::-;;;;;;;29339:104;;29325:119;;;;;;;;:::i;:::-;29295:149:::0;-1:-1:-1;29708:39:26::1;29691:13;:56;;;;;;;;:::i;:::-;;;:112;;;;-1:-1:-1::0;29768:35:26::1;29751:13;:52;;;;;;;;:::i;:::-;;;29691:112;29690:152;;;-1:-1:-1::0;29814:20:26::1;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:28;::::0;;;;;::::1;;;:::i;:::-;29675:223;;;::::0;-1:-1:-1;;;29675:223:26;;30833:2:34;29675:223:26::1;::::0;::::1;30815:21:34::0;30872:2;30852:18;;;30845:30;30911:34;30891:18;;;30884:62;-1:-1:-1;;;30962:18:34;;;30955:38;31010:19;;29675:223:26::1;30631:404:34::0;29675:223:26::1;30129:34;30112:13;:51;;;;;;;;:::i;:::-;;:83;;;-1:-1:-1::0;30167:20:26::1;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:28;::::0;;;;;::::1;;;:::i;:::-;30097:157;;;::::0;-1:-1:-1;;;30097:157:26;;31242:2:34;30097:157:26::1;::::0;::::1;31224:21:34::0;31281:2;31261:18;;;31254:30;31320:34;31300:18;;;31293:62;-1:-1:-1;;;31371:18:34;;;31364:41;31422:19;;30097:157:26::1;31040:407:34::0;30097:157:26::1;1337:1:19;30484:28:26;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:111;::::0;;-1:-1:-1;30484:111:26::1;:::i;:::-;30434:18;;::::0;::::1;:6:::0;:18:::1;:::i;:::-;:39;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:46;;:161;30426:211;;;::::0;-1:-1:-1;;;30426:211:26;;32204:2:34;30426:211:26::1;::::0;::::1;32186:21:34::0;32243:2;32223:18;;;32216:30;32282:34;32262:18;;;32255:62;-1:-1:-1;;;32333:18:34;;;32326:35;32378:19;;30426:211:26::1;32002:401:34::0;30426:211:26::1;-1:-1:-1::0;;;;;30756:26:26;::::1;;30783:28;:6:::0;;:28:::1;:::i;:::-;:34;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;30819:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;30756:105;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30746:115:::0;-1:-1:-1;30924:29:26::1;31007:1;30956:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:52;::::0;;-1:-1:-1;30956:52:26::1;:::i;:::-;30924:84:::0;-1:-1:-1;31033:28:26::1;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;31075:21;31033:64;;;;;;;:::i;:::-;;;;;;;31014:83;;31172:34;;;27654:3557:::0;;;:::o;3906:322::-;4018:34;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4018:34:26;4093:51;;-1:-1:-1;;;4093:51:26;;4063:26;;4093:15;;:38;;:51;;4132:11;;4093:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4093:51:26;;;;;;;;;;;;:::i;:::-;4166:57;;-1:-1:-1;;;4166:57:26;;4060:84;;-1:-1:-1;4166:15:26;;-1:-1:-1;4166:32:26;;:57;;4060:84;;4214:8;;4166:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4166:57:26;;;;;;;;;;;;:::i;8394:214::-;8534:4;8553:50;8566:3;8571;8576:11;8589:13;8553:12;:50::i;27157:204::-;27247:12;;:62;;-1:-1:-1;;;27247:62:26;;944:1;27247:62;;;36685:25:34;36726:18;;;36719:34;;;-1:-1:-1;;;;;27247:12:26;;;;:24;;36658:18:34;;27247:62:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27232:124;;;;-1:-1:-1;;;27232:124:26;;36966:2:34;27232:124:26;;;36948:21:34;37005:2;36985:18;;;36978:30;37044:33;37024:18;;;37017:61;37095:18;;27232:124:26;36764:355:34;27232:124:26;27157:204;:::o;11306:1252::-;11487:4;11500:19;11521:11;11534;11549:15;:34;11584:11;11597:9;11549:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11499:108;;-1:-1:-1;11499:108:26;-1:-1:-1;11499:108:26;-1:-1:-1;11621:73:26;11499:108;11656:37;;11621:21;:73::i;:::-;11613:161;;;;-1:-1:-1;;;11613:161:26;;;;;;;:::i;:::-;11788:8;;11780:86;;;;-1:-1:-1;;;11780:86:26;;38321:2:34;11780:86:26;;;38303:21:34;38360:2;38340:18;;;38333:30;38399:34;38379:18;;;38372:62;38470:34;38450:18;;;38443:62;-1:-1:-1;;;38521:19:34;;;38514:32;38563:19;;11780:86:26;38119:469:34;11780:86:26;11893:19;11880:9;:32;;;;;;;;:::i;:::-;;:70;;;-1:-1:-1;11929:21:26;11916:9;:34;;;;;;;;:::i;:::-;;11880:70;11872:101;;;;-1:-1:-1;;;11872:101:26;;;;;;;:::i;:::-;11996:19;11983:9;:32;;;;;;;;:::i;:::-;;11979:575;;12033:3;12040:1;12033:8;12025:103;;;;-1:-1:-1;;;12025:103:26;;;;;;;:::i;:::-;12358:35;144:10:19;12358:3:26;:35;:::i;:::-;12347:7;:46;12340:53;;;;;;;11979:575;12422:3;12429:1;12422:8;12414:104;;;;-1:-1:-1;;;12414:104:26;;;;;;;:::i;:::-;12533:14;;;-1:-1:-1;12526:21:26;;-1:-1:-1;;12526:21:26;392:337:20;500:4;;546:35;558:23;546:9;:35;:::i;:::-;512:69;;619:9;600:15;:28;;:73;;;;;664:9;638:23;:35;600:73;:124;;;;-1:-1:-1;709:15:20;-1:-1:-1;683:41:20;392:337;-1:-1:-1;;;392:337:20:o;9751:1551:26:-;9947:4;9960:19;9981:11;9994;10009:15;:34;10044:11;10057:9;10009:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9959:108;;-1:-1:-1;9959:108:26;-1:-1:-1;9959:108:26;-1:-1:-1;10081:73:26;9959:108;10116:37;;10081:21;:73::i;:::-;10073:161;;;;-1:-1:-1;;;10073:161:26;;;;;;;:::i;:::-;10259:7;10248;:18;;10240:78;;;;-1:-1:-1;;;10240:78:26;;40125:2:34;10240:78:26;;;40107:21:34;40164:2;40144:18;;;40137:30;40203:34;40183:18;;;40176:62;-1:-1:-1;;;40254:18:34;;;40247:45;40309:19;;10240:78:26;39923:411:34;10240:78:26;10345:19;10332:9;:32;;;;;;;;:::i;:::-;;:70;;;-1:-1:-1;10381:21:26;10368:9;:34;;;;;;;;:::i;:::-;;10332:70;10324:101;;;;-1:-1:-1;;;10324:101:26;;;;;;;:::i;:::-;10448:19;10435:9;:32;;;;;;;;:::i;:::-;;10431:867;;10485:3;10492:1;10485:8;10477:103;;;;-1:-1:-1;;;10477:103:26;;40541:2:34;10477:103:26;;;40523:21:34;40580:2;40560:18;;;40553:30;40619:34;40599:18;;;40592:62;40690:34;40670:18;;;40663:62;-1:-1:-1;;;40741:19:34;;;40734:49;40800:19;;10477:103:26;40339:486:34;10477:103:26;10596:3;10603:1;10596:8;10588:103;;;;-1:-1:-1;;;10588:103:26;;;;;;;:::i;:::-;10922:35;144:10:19;10922:3:26;:35;:::i;:::-;10911:7;:46;:96;;;;-1:-1:-1;10972:35:26;144:10:19;10972:3:26;:35;:::i;:::-;10961:7;:46;10911:96;10904:103;;;;;;;10431:867;11036:3;11043:1;11036:8;11028:104;;;;-1:-1:-1;;;11028:104:26;;41032:2:34;11028:104:26;;;41014:21:34;41071:2;41051:18;;;41044:30;41110:34;41090:18;;;41083:62;41181:34;41161:18;;;41154:62;-1:-1:-1;;;41232:19:34;;;41225:50;41292:19;;11028:104:26;40830:487:34;11028:104:26;11148:3;11155:1;11148:8;11140:104;;;;-1:-1:-1;;;11140:104:26;;;;;;;:::i;:::-;11270:3;11259:7;:14;:32;;;;-1:-1:-1;11277:14:26;;;;9751:1551;-1:-1:-1;;;;;;;9751:1551:26:o;19656:559::-;19804:4;19817:32;19851:30;19885:15;:37;19923:11;19936:9;19885:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19885:61:26;;;;;;;;;;;;:::i;:::-;19816:130;;;;19978:22;19956:11;:18;:44;19952:77;;20017:5;20010:12;;;;;;19952:77;20039:9;20034:160;20058:22;20054:1;:26;20034:160;;;20100:55;20119:11;20131:1;20119:14;;;;;;;;:::i;:::-;;;;;;;20135:16;20152:1;20135:19;;;;;;;;:::i;:::-;;;;;;;234::24;;;;;;;211;;;;;;;;;;:42;;119:139;20100:55:26;20095:93;;20174:5;20167:12;;;;;;;20095:93;20082:3;;20034:160;;;-1:-1:-1;20206:4:26;;19656:559;-1:-1:-1;;;;;;19656:559:26:o;262:101:24:-;338:15;:20;;262:101::o;8612:1135:26:-;8792:4;8805:19;8826:11;8839;8854:15;:34;8889:11;8902:9;8854:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8804:108;;-1:-1:-1;8804:108:26;-1:-1:-1;8804:108:26;-1:-1:-1;8926:73:26;8804:108;8961:37;;8926:21;:73::i;:::-;8918:161;;;;-1:-1:-1;;;8918:161:26;;;;;;;:::i;:::-;9106:19;9093:9;:32;;;;;;;;:::i;:::-;;:70;;;-1:-1:-1;9142:21:26;9129:9;:34;;;;;;;;:::i;:::-;;9093:70;9085:101;;;;-1:-1:-1;;;9085:101:26;;;;;;;:::i;:::-;9209:19;9196:9;:32;;;;;;;;:::i;:::-;;9192:551;;9246:8;;9238:91;;;;-1:-1:-1;;;9238:91:26;;42702:2:34;9238:91:26;;;42684:21:34;42741:2;42721:18;;;42714:30;42780:34;42760:18;;;42753:62;42851:34;42831:18;;;42824:62;-1:-1:-1;;;42902:19:34;;;42895:37;42949:19;;9238:91:26;42500:474:34;9238:91:26;9559:35;144:10:19;9559:3:26;:35;:::i;9192:551::-;9623:8;;9615:92;;;;-1:-1:-1;;;9615:92:26;;43181:2:34;9615:92:26;;;43163:21:34;43220:2;43200:18;;;43193:30;43259:34;43239:18;;;43232:62;43330:34;43310:18;;;43303:62;-1:-1:-1;;;43381:19:34;;;43374:38;43429:19;;9615:92:26;42979:475:34;9615:92:26;-1:-1:-1;9722:14:26;;;-1:-1:-1;9715:21:26;;-1:-1:-1;9715:21:26;26527:210;26590:7;26624:28;;;:18;:28;;;;;;-1:-1:-1;;;;;26624:28:26;;26658:53;;;;-1:-1:-1;;;26658:53:26;;43661:2:34;26658:53:26;;;43643:21:34;43700:2;43680:18;;;43673:30;-1:-1:-1;;;43719:18:34;;;43712:48;43777:18;;26658:53:26;43459:342:34;26741:214:26;26835:12;;:66;;-1:-1:-1;;;26835:66:26;;:12;:66;;;36685:25:34;36726:18;;;36719:34;;;-1:-1:-1;;;;;26835:12:26;;;;:24;;36658:18:34;;26835:66:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26820:130;;;;-1:-1:-1;;;26820:130:26;;44008:2:34;26820:130:26;;;43990:21:34;44047:2;44027:18;;;44020:30;44086:34;44066:18;;;44059:62;-1:-1:-1;;;44137:18:34;;;44130:31;44178:19;;26820:130:26;43806:397:34;26959:194:26;27045:12;;;:58;;-1:-1:-1;;;27045:58:26;;;;;36685:25:34;;;;36726:18;;;36719:34;;;-1:-1:-1;;;;;27045:12:26;;:24;;36658:18:34;;27045:58:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27030:118;;;;-1:-1:-1;;;27030:118:26;;44410:2:34;27030:118:26;;;44392:21:34;44449:2;44429:18;;;44422:30;44488:31;44468:18;;;44461:59;44537:18;;27030:118:26;44208:353:34;3388:300:26;3506:4;3518:28;3557:12;1072:1:19;3557:44:26;;;;;;;;:::i;:::-;;;;;;;3549:53;;3518:84;;3615:68;3637:20;3659:23;3615:21;:68::i;25720:803::-;25852:14;;25876:458;25900:32;;;;:11;:32;:::i;:::-;:39;;25896:1;:43;25876:458;;;26034:28;26191:1;26065:122;26098:27;:11;;:27;:::i;:::-;26126:6;;26142:32;;;;:11;:32;:::i;:::-;26175:1;26142:35;;;;;;;:::i;:::-;;;;;;;26133:6;:44;;;;:::i;:::-;26098:80;;;;;;;:::i;:::-;26081:98;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;26081:98:26;;;;;;;;;;26065:122;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:127;;26034:158;;26232:16;26249:1;26232:19;;;;;;;;:::i;:::-;;;;;;;26208:20;:43;26200:74;;;;-1:-1:-1;;;26200:74:26;;45386:2:34;26200:74:26;;;45368:21:34;45425:2;45405:18;;;45398:30;-1:-1:-1;;;45444:18:34;;;45437:48;45502:18;;26200:74:26;45184:342:34;26200:74:26;26292:32;;;;:11;:32;:::i;:::-;26325:1;26292:35;;;;;;;:::i;:::-;;;;;;;26282:45;;;;;:::i;:::-;;-1:-1:-1;;25941:3:26;;25876:458;;;-1:-1:-1;26448:27:26;:11;;:27;:::i;:::-;:34;;26438:6;:44;26430:88;;;;-1:-1:-1;;;26430:88:26;;45733:2:34;26430:88:26;;;45715:21:34;45772:2;45752:18;;;45745:30;45811:33;45791:18;;;45784:61;45862:18;;26430:88:26;45531:355:34;14:112;100:1;93:5;90:12;80:40;;116:1;113;106:12;131:159;195:5;240:2;231:6;226:3;222:16;218:25;215:45;;;256:1;253;246:12;215:45;-1:-1:-1;278:6:34;131:159;-1:-1:-1;131:159:34:o;295:690::-;431:6;439;447;500:2;488:9;479:7;475:23;471:32;468:52;;;516:1;513;506:12;468:52;555:9;542:23;574:42;610:5;574:42;:::i;:::-;635:5;-1:-1:-1;692:2:34;677:18;;664:32;705:44;664:32;705:44;:::i;:::-;768:7;-1:-1:-1;826:2:34;811:18;;798:32;-1:-1:-1;;;;;842:30:34;;839:50;;;885:1;882;875:12;839:50;908:71;971:7;962:6;951:9;947:22;908:71;:::i;:::-;898:81;;;295:690;;;;;:::o;1182:118::-;1268:5;1261:13;1254:21;1247:5;1244:32;1234:60;;1290:1;1287;1280:12;1305:241;1361:6;1414:2;1402:9;1393:7;1389:23;1385:32;1382:52;;;1430:1;1427;1420:12;1382:52;1469:9;1456:23;1488:28;1510:5;1488:28;:::i;1551:365::-;1642:6;1695:2;1683:9;1674:7;1670:23;1666:32;1663:52;;;1711:1;1708;1701:12;1663:52;1751:9;1738:23;-1:-1:-1;;;;;1776:6:34;1773:30;1770:50;;;1816:1;1813;1806:12;1770:50;1839:71;1902:7;1893:6;1882:9;1878:22;1839:71;:::i;1921:131::-;-1:-1:-1;;;;;1996:31:34;;1986:42;;1976:70;;2042:1;2039;2032:12;2057:247;2116:6;2169:2;2157:9;2148:7;2144:23;2140:32;2137:52;;;2185:1;2182;2175:12;2137:52;2224:9;2211:23;2243:31;2268:5;2243:31;:::i;2309:162::-;2375:5;2420:3;2411:6;2406:3;2402:16;2398:26;2395:46;;;2437:1;2434;2427:12;2476:742;2619:6;2627;2635;2688:2;2676:9;2667:7;2663:23;2659:32;2656:52;;;2704:1;2701;2694:12;2656:52;2749:23;;;-1:-1:-1;2847:2:34;2832:18;;2819:32;-1:-1:-1;;;;;2863:30:34;;2860:50;;;2906:1;2903;2896:12;2860:50;2929:71;2992:7;2983:6;2972:9;2968:22;2929:71;:::i;:::-;2919:81;;;3053:2;3042:9;3038:18;3025:32;-1:-1:-1;;;;;3072:8:34;3069:32;3066:52;;;3114:1;3111;3104:12;3066:52;3137:75;3204:7;3193:8;3182:9;3178:24;3137:75;:::i;3223:114::-;3307:4;3300:5;3296:16;3289:5;3286:27;3276:55;;3327:1;3324;3317:12;3342:759;3483:6;3491;3499;3552:2;3540:9;3531:7;3527:23;3523:32;3520:52;;;3568:1;3565;3558:12;3520:52;3607:9;3594:23;3626:29;3649:5;3626:29;:::i;:::-;3674:5;-1:-1:-1;3730:2:34;3715:18;;3702:32;-1:-1:-1;;;;;3746:30:34;;3743:50;;;3789:1;3786;3779:12;4106:863;4258:6;4266;4274;4282;4335:3;4323:9;4314:7;4310:23;4306:33;4303:53;;;4352:1;4349;4342:12;4303:53;4397:23;;;-1:-1:-1;4517:2:34;4502:18;;4489:32;;-1:-1:-1;4598:2:34;4583:18;;4570:32;-1:-1:-1;;;;;4614:30:34;;4611:50;;;4657:1;4654;4647:12;4611:50;4680:71;4743:7;4734:6;4723:9;4719:22;4680:71;:::i;:::-;4670:81;;;4804:2;4793:9;4789:18;4776:32;-1:-1:-1;;;;;4823:8:34;4820:32;4817:52;;;4865:1;4862;4855:12;4817:52;4888:75;4955:7;4944:8;4933:9;4929:24;4888:75;:::i;:::-;4878:85;;;4106:863;;;;;;;:::o;5156:127::-;5217:10;5212:3;5208:20;5205:1;5198:31;5248:4;5245:1;5238:15;5272:4;5269:1;5262:15;5288:255;5360:2;5354:9;5402:6;5390:19;;-1:-1:-1;;;;;5424:34:34;;5460:22;;;5421:62;5418:88;;;5486:18;;:::i;:::-;5522:2;5515:22;5288:255;:::o;5548:275::-;5619:2;5613:9;5684:2;5665:13;;-1:-1:-1;;5661:27:34;5649:40;;-1:-1:-1;;;;;5704:34:34;;5740:22;;;5701:62;5698:88;;;5766:18;;:::i;:::-;5802:2;5795:22;5548:275;;-1:-1:-1;5548:275:34:o;5828:182::-;5887:4;-1:-1:-1;;;;;5912:6:34;5909:30;5906:56;;;5942:18;;:::i;:::-;-1:-1:-1;5987:1:34;5983:14;5999:4;5979:25;;5828:182::o;6015:187::-;6064:4;-1:-1:-1;;;;;6089:6:34;6086:30;6083:56;;;6119:18;;:::i;:::-;-1:-1:-1;6185:2:34;6164:15;-1:-1:-1;;6160:29:34;6191:4;6156:40;;6015:187::o;6207:1769::-;6342:6;6350;6403:2;6391:9;6382:7;6378:23;6374:32;6371:52;;;6419:1;6416;6409:12;6371:52;6459:9;6446:23;-1:-1:-1;;;;;6484:6:34;6481:30;6478:50;;;6524:1;6521;6514:12;6478:50;6547:22;;6600:4;6592:13;;6588:27;-1:-1:-1;6578:55:34;;6629:1;6626;6619:12;6578:55;6669:2;6656:16;6692:63;6708:46;6747:6;6708:46;:::i;:::-;6692:63;:::i;:::-;6777:3;6801:6;6796:3;6789:19;6833:4;6828:3;6824:14;6817:21;;6890:4;6880:6;6877:1;6873:14;6869:2;6865:23;6861:34;6847:48;;6918:7;6910:6;6907:19;6904:39;;;6939:1;6936;6929:12;6904:39;6971:4;6967:2;6963:13;6985:749;7001:6;6996:3;6993:15;6985:749;;;7089:3;7076:17;-1:-1:-1;;;;;7112:11:34;7109:35;7106:55;;;7157:1;7154;7147:12;7106:55;7184:20;;7239:2;7231:11;;7227:25;-1:-1:-1;7217:53:34;;7266:1;7263;7256:12;7217:53;7320:4;7316:2;7312:13;7299:27;7354:55;7370:38;7399:8;7370:38;:::i;7354:55::-;7422:25;;;7466:39;7474:17;;;7466:39;7463:52;-1:-1:-1;7460:72:34;;;7528:1;7525;7518:12;7460:72;7591:8;7586:2;7582;7578:11;7571:4;7562:7;7558:18;7545:55;7655:1;7648:4;7637:8;7628:7;7624:22;7620:33;7613:44;7682:7;7677:3;7670:20;;;;7719:4;7714:3;7710:14;7703:21;;7027:4;7022:3;7018:14;7011:21;;6985:749;;;-1:-1:-1;7753:5:34;-1:-1:-1;;;;7811:4:34;7796:20;;7783:34;-1:-1:-1;;;;;7829:32:34;;7826:52;;;7874:1;7871;7864:12;7826:52;7897:73;7962:7;7951:8;7940:9;7936:24;7897:73;:::i;:::-;7887:83;;;6207:1769;;;;;:::o;7981:180::-;8040:6;8093:2;8081:9;8072:7;8068:23;8064:32;8061:52;;;8109:1;8106;8099:12;8061:52;-1:-1:-1;8132:23:34;;7981:180;-1:-1:-1;7981:180:34:o;8374:367::-;8437:8;8447:6;8501:3;8494:4;8486:6;8482:17;8478:27;8468:55;;8519:1;8516;8509:12;8468:55;-1:-1:-1;8542:20:34;;-1:-1:-1;;;;;8574:30:34;;8571:50;;;8617:1;8614;8607:12;8571:50;8654:4;8646:6;8642:17;8630:29;;8714:3;8707:4;8697:6;8694:1;8690:14;8682:6;8678:27;8674:38;8671:47;8668:67;;;8731:1;8728;8721:12;8668:67;8374:367;;;;;:::o;8746:348::-;8798:8;8808:6;8862:3;8855:4;8847:6;8843:17;8839:27;8829:55;;8880:1;8877;8870:12;8829:55;-1:-1:-1;8903:20:34;;-1:-1:-1;;;;;8935:30:34;;8932:50;;;8978:1;8975;8968:12;8932:50;9015:4;9007:6;9003:17;8991:29;;9067:3;9060:4;9051:6;9043;9039:19;9035:30;9032:39;9029:59;;;9084:1;9081;9074:12;9099:1047;9227:6;9235;9243;9251;9259;9267;9320:2;9308:9;9299:7;9295:23;9291:32;9288:52;;;9336:1;9333;9326:12;9288:52;9376:9;9363:23;-1:-1:-1;;;;;9401:6:34;9398:30;9395:50;;;9441:1;9438;9431:12;9395:50;9480:70;9542:7;9533:6;9522:9;9518:22;9480:70;:::i;:::-;9569:8;;-1:-1:-1;9454:96:34;-1:-1:-1;;9657:2:34;9642:18;;9629:32;-1:-1:-1;;;;;9673:32:34;;9670:52;;;9718:1;9715;9708:12;9670:52;9757:61;9810:7;9799:8;9788:9;9784:24;9757:61;:::i;:::-;9837:8;;-1:-1:-1;9731:87:34;-1:-1:-1;;9925:2:34;9910:18;;9897:32;-1:-1:-1;;;;;9941:32:34;;9938:52;;;9986:1;9983;9976:12;9938:52;10025:61;10078:7;10067:8;10056:9;10052:24;10025:61;:::i;:::-;9099:1047;;;;-1:-1:-1;9099:1047:34;;-1:-1:-1;9099:1047:34;;10105:8;;9099:1047;-1:-1:-1;;;9099:1047:34:o;10151:437::-;10237:6;10245;10298:2;10286:9;10277:7;10273:23;10269:32;10266:52;;;10314:1;10311;10304:12;10266:52;10354:9;10341:23;-1:-1:-1;;;;;10379:6:34;10376:30;10373:50;;;10419:1;10416;10409:12;10373:50;10458:70;10520:7;10511:6;10500:9;10496:22;10458:70;:::i;:::-;10547:8;;10432:96;;-1:-1:-1;10151:437:34;-1:-1:-1;;;;10151:437:34:o;10593:289::-;10635:3;10673:5;10667:12;10700:6;10695:3;10688:19;10756:6;10749:4;10742:5;10738:16;10731:4;10726:3;10722:14;10716:47;10808:1;10801:4;10792:6;10787:3;10783:16;10779:27;10772:38;10871:4;10864:2;10860:7;10855:2;10847:6;10843:15;10839:29;10834:3;10830:39;10826:50;10819:57;;;10593:289;;;;:::o;10887:492::-;11072:2;11061:9;11054:21;11147:1;11143;11138:3;11134:11;11130:19;11121:6;11115:13;11111:39;11106:2;11095:9;11091:18;11084:67;11205:2;11197:6;11193:15;11187:22;11182:2;11171:9;11167:18;11160:50;11035:4;11257:2;11249:6;11245:15;11239:22;11299:4;11292;11281:9;11277:20;11270:34;11321:52;11368:3;11357:9;11353:19;11339:12;11321:52;:::i;11384:768::-;11506:6;11514;11522;11530;11583:2;11571:9;11562:7;11558:23;11554:32;11551:52;;;11599:1;11596;11589:12;11551:52;11639:9;11626:23;-1:-1:-1;;;;;11664:6:34;11661:30;11658:50;;;11704:1;11701;11694:12;11658:50;11743:70;11805:7;11796:6;11785:9;11781:22;11743:70;:::i;:::-;11832:8;;-1:-1:-1;11717:96:34;-1:-1:-1;;11920:2:34;11905:18;;11892:32;-1:-1:-1;;;;;11936:32:34;;11933:52;;;11981:1;11978;11971:12;11933:52;12020:72;12084:7;12073:8;12062:9;12058:24;12020:72;:::i;:::-;11384:768;;;;-1:-1:-1;12111:8:34;-1:-1:-1;;;;11384:768:34:o;12388:897::-;12536:6;12544;12552;12560;12613:3;12601:9;12592:7;12588:23;12584:33;12581:53;;;12630:1;12627;12620:12;12581:53;12669:9;12656:23;12688:29;12711:5;12688:29;:::i;:::-;12736:5;-1:-1:-1;12793:2:34;12778:18;;12765:32;12806:31;12765:32;12806:31;:::i;:::-;12856:7;-1:-1:-1;12914:2:34;12899:18;;12886:32;-1:-1:-1;;;;;12930:30:34;;12927:50;;;12973:1;12970;12963:12;13290:403;13393:6;13446:2;13434:9;13425:7;13421:23;13417:32;13414:52;;;13462:1;13459;13452:12;13414:52;13502:9;13489:23;-1:-1:-1;;;;;13527:6:34;13524:30;13521:50;;;13567:1;13564;13557:12;13521:50;13590:22;;13646:2;13628:16;;;13624:25;13621:45;;;13662:1;13659;13652:12;13961:494;14058:6;14066;14119:2;14107:9;14098:7;14094:23;14090:32;14087:52;;;14135:1;14132;14125:12;14087:52;14175:9;14162:23;-1:-1:-1;;;;;14200:6:34;14197:30;14194:50;;;14240:1;14237;14230:12;14194:50;14263:71;14326:7;14317:6;14306:9;14302:22;14263:71;:::i;:::-;14253:81;;;14384:2;14373:9;14369:18;14356:32;14397:28;14419:5;14397:28;:::i;:::-;14444:5;14434:15;;;13961:494;;;;;:::o;14460:1698::-;14653:2;14642:9;14635:21;14616:4;14691:6;14685:13;14734:6;14729:2;14718:9;14714:18;14707:34;14764:52;14811:3;14800:9;14796:19;14782:12;14764:52;:::i;:::-;14750:66;;14865:2;14857:6;14853:15;14847:22;14937:2;14933:7;14921:9;14913:6;14909:22;14905:36;14900:2;14889:9;14885:18;14878:64;14965:41;14999:6;14983:14;14965:41;:::i;:::-;14951:55;;;15055:2;15047:6;15043:15;15037:22;15127:2;15123:7;15111:9;15103:6;15099:22;15095:36;15090:2;15079:9;15075:18;15068:64;15155:41;15189:6;15173:14;15155:41;:::i;:::-;15141:55;;;15245:2;15237:6;15233:15;15227:22;15318:2;15314:7;15302:9;15294:6;15290:22;15286:36;15280:3;15269:9;15265:19;15258:65;15346:41;15380:6;15364:14;15346:41;:::i;:::-;15332:55;;;15436:3;15428:6;15424:16;15418:23;15510:2;15506:7;15494:9;15486:6;15482:22;15478:36;15472:3;15461:9;15457:19;15450:65;15538:41;15572:6;15556:14;15538:41;:::i;:::-;15524:55;;;15628:3;15620:6;15616:16;15610:23;15702:2;15698:7;15686:9;15678:6;15674:22;15670:36;15664:3;15653:9;15649:19;15642:65;15730:41;15764:6;15748:14;15730:41;:::i;:::-;15716:55;;;15820:3;15812:6;15808:16;15802:23;15894:2;15890:7;15878:9;15870:6;15866:22;15862:36;15856:3;15845:9;15841:19;15834:65;15922:41;15956:6;15940:14;15922:41;:::i;:::-;15908:55;;;16012:3;16004:6;16000:16;15994:23;16089:2;16085:7;16073:9;16065:6;16061:22;16057:36;16048:6;16037:9;16033:22;16026:68;16111:41;16145:6;16129:14;16111:41;:::i;16163:266::-;16251:6;16246:3;16239:19;16303:6;16296:5;16289:4;16284:3;16280:14;16267:43;-1:-1:-1;16355:1:34;16330:16;;;16348:4;16326:27;;;16319:38;;;;16411:2;16390:15;;;-1:-1:-1;;16386:29:34;16377:39;;;16373:50;;16163:266::o;16434:311::-;16522:19;;;16504:3;-1:-1:-1;;;;;16553:31:34;;16550:51;;;16597:1;16594;16587:12;16550:51;16633:6;16630:1;16626:14;16685:8;16678:5;16671:4;16666:3;16662:14;16649:45;16714:18;;;;16734:4;16710:29;;16434:311;-1:-1:-1;;;16434:311:34:o;16750:1172::-;16813:3;16870:5;16857:19;16931:2;16927:7;16919:5;16903:14;16899:26;16895:40;16978:2;16958:18;16954:27;16944:55;;16995:1;16992;16985:12;16944:55;17134:4;17023:30;;;17121:18;;;;17076:21;-1:-1:-1;;;;;17151:30:34;;17148:50;;;17194:1;17191;17184:12;17148:50;17243:6;17227:14;17223:27;17214:7;17210:41;17207:61;;;17264:1;17261;17254:12;17207:61;17289:4;17284:3;17277:17;17315:58;17367:4;17362:3;17358:14;17350:6;17341:7;17315:58;:::i;:::-;17303:70;;;17434:4;17427:5;17423:16;17410:30;17485:2;17463:20;17459:29;17449:57;;17502:1;17499;17492:12;17449:57;17530:32;;17645:4;17632:18;;;-1:-1:-1;17587:21:34;-1:-1:-1;;;;;17662:32:34;;17659:52;;;17707:1;17704;17697:12;17659:52;17763:8;17760:1;17756:16;17740:14;17736:37;17727:7;17723:51;17720:71;;;17787:1;17784;17777:12;17720:71;17833:3;17827:4;17823:14;17816:4;17811:3;17807:14;17800:38;17854:62;17911:4;17901:8;17892:7;17854:62;:::i;:::-;17847:69;16750:1172;-1:-1:-1;;;;;;16750:1172:34:o;17927:291::-;18126:2;18115:9;18108:21;18089:4;18146:66;18208:2;18197:9;18193:18;18185:6;18146:66;:::i;18223:668::-;18356:6;18364;18372;18380;18433:3;18421:9;18412:7;18408:23;18404:33;18401:53;;;18450:1;18447;18440:12;18401:53;18495:16;;18580:2;18565:18;;18559:25;18495:16;;-1:-1:-1;18615:1:34;18603:14;;18593:42;;18631:1;18628;18621:12;18593:42;18727:2;18712:18;;18706:25;18802:2;18787:18;;18781:25;18654:7;;-1:-1:-1;18706:25:34;-1:-1:-1;18815:44:34;18781:25;18815:44;:::i;:::-;18223:668;;;;-1:-1:-1;18223:668:34;;-1:-1:-1;;18223:668:34:o;18896:127::-;18957:10;18952:3;18948:20;18945:1;18938:31;18988:4;18985:1;18978:15;19012:4;19009:1;19002:15;19028:350;19230:2;19212:21;;;19269:2;19249:18;;;19242:30;19308:28;19303:2;19288:18;;19281:56;19369:2;19354:18;;19028:350::o;19383:230::-;19453:6;19506:2;19494:9;19485:7;19481:23;19477:32;19474:52;;;19522:1;19519;19512:12;19474:52;-1:-1:-1;19567:16:34;;19383:230;-1:-1:-1;19383:230:34:o;20023:490::-;20107:6;20115;20123;20176:2;20164:9;20155:7;20151:23;20147:32;20144:52;;;20192:1;20189;20182:12;20144:52;20237:16;;20322:2;20307:18;;20301:25;20237:16;;-1:-1:-1;20335:31:34;20301:25;20335:31;:::i;:::-;20437:2;20422:18;;20416:25;20385:7;;-1:-1:-1;20450:31:34;20416:25;20450:31;:::i;:::-;20500:7;20490:17;;;20023:490;;;;;:::o;20518:479::-;20720:2;20702:21;;;20759:2;20739:18;;;20732:30;20798:34;20793:2;20778:18;;20771:62;20869:34;20864:2;20849:18;;20842:62;-1:-1:-1;;;20935:3:34;20920:19;;20913:42;20987:3;20972:19;;20518:479::o;22151:127::-;22212:10;22207:3;22203:20;22200:1;22193:31;22243:4;22240:1;22233:15;22267:4;22264:1;22257:15;22283:151;22373:4;22366:12;;;22352;;;22348:31;;22391:14;;22388:40;;;22408:18;;:::i;22439:273::-;22624:6;22616;22611:3;22598:33;22580:3;22650:16;;22675:13;;;22650:16;22439:273;-1:-1:-1;22439:273:34:o;22717:301::-;22846:3;22884:6;22878:13;22930:6;22923:4;22915:6;22911:17;22906:3;22900:37;22992:1;22956:16;;22981:13;;;-1:-1:-1;22956:16:34;22717:301;-1:-1:-1;22717:301:34:o;23023:127::-;23084:10;23079:3;23075:20;23072:1;23065:31;23115:4;23112:1;23105:15;23139:4;23136:1;23129:15;23155:514;23208:5;23261:3;23254:4;23246:6;23242:17;23238:27;23228:55;;23279:1;23276;23269:12;23228:55;23312:6;23306:13;23351:4;23343:6;23339:17;23380:1;23401:53;23417:36;23446:6;23417:36;:::i;23401:53::-;23390:64;;23479:6;23470:7;23463:23;23519:3;23510:6;23505:3;23501:16;23498:25;23495:45;;;23536:1;23533;23526:12;23495:45;23580:6;23575:3;23568:4;23559:7;23555:18;23549:38;23636:1;23607:20;;;23629:4;23603:31;23596:42;;;;-1:-1:-1;23611:7:34;23155:514;-1:-1:-1;;;23155:514:34:o;23674:335::-;23753:6;23806:2;23794:9;23785:7;23781:23;23777:32;23774:52;;;23822:1;23819;23812:12;23774:52;23855:9;23849:16;-1:-1:-1;;;;;23880:6:34;23877:30;23874:50;;;23920:1;23917;23910:12;23874:50;23943:60;23995:7;23986:6;23975:9;23971:22;23943:60;:::i;24014:226::-;24169:2;24158:9;24151:21;24132:4;24189:45;24230:2;24219:9;24215:18;24207:6;24189:45;:::i;24245:577::-;24343:6;24351;24359;24412:2;24400:9;24391:7;24387:23;24383:32;24380:52;;;24428:1;24425;24418:12;24380:52;24460:9;24454:16;24479:31;24504:5;24479:31;:::i;:::-;24600:2;24585:18;;24579:25;24674:2;24659:18;;24653:25;24529:5;;-1:-1:-1;24579:25:34;-1:-1:-1;;;;;;24690:30:34;;24687:50;;;24733:1;24730;24723:12;24687:50;24756:60;24808:7;24799:6;24788:9;24784:22;24756:60;:::i;24827:128::-;24894:9;;;24915:11;;;24912:37;;;24929:18;;:::i;24960:125::-;25025:9;;;25046:10;;;25043:36;;;25059:18;;:::i;25090:148::-;25178:4;25157:12;;;25171;;;25153:31;;25196:13;;25193:39;;;25212:18;;:::i;27407:339::-;27515:4;27573:11;27560:25;27667:2;27663:7;27652:8;27636:14;27632:29;27628:43;27608:18;27604:68;27594:96;;27686:1;27683;27676:12;27594:96;27707:33;;;;;27407:339;-1:-1:-1;;27407:339:34:o;27751:545::-;27844:4;27850:6;27910:11;27897:25;28004:2;28000:7;27989:8;27973:14;27969:29;27965:43;27945:18;27941:68;27931:96;;28023:1;28020;28013:12;27931:96;28050:33;;28102:20;;;-1:-1:-1;;;;;;28134:30:34;;28131:50;;;28177:1;28174;28167:12;28131:50;28210:4;28198:17;;-1:-1:-1;28261:1:34;28257:14;;;28241;28237:35;28227:46;;28224:66;;;28286:1;28283;28276:12;28301:332;28401:4;28459:11;28446:25;28553:3;28549:8;28538;28522:14;28518:29;28514:44;28494:18;28490:69;28480:97;;28573:1;28570;28563:12;29058:522;29136:4;29142:6;29202:11;29189:25;29296:2;29292:7;29281:8;29265:14;29261:29;29257:43;29237:18;29233:68;29223:96;;29315:1;29312;29305:12;29223:96;29342:33;;29394:20;;;-1:-1:-1;;;;;;29426:30:34;;29423:50;;;29469:1;29466;29459:12;29423:50;29502:4;29490:17;;-1:-1:-1;29533:14:34;29529:27;;;29519:38;;29516:58;;;29570:1;29567;29560:12;29937:355;30058:9;30069;30111:8;30099:10;30096:24;30093:44;;;30133:1;30130;30123:12;30093:44;30162:6;30152:8;30149:20;30146:40;;;30182:1;30179;30172:12;30146:40;-1:-1:-1;;30224:1:34;30220:18;;;30208:31;;30261:25;;;;;-1:-1:-1;29937:355:34:o;30297:329::-;30395:4;30453:11;30440:25;30547:2;30543:7;30532:8;30516:14;30512:29;30508:43;30488:18;30484:68;30474:96;;30566:1;30563;30556:12;32934:475;33179:2;33168:9;33161:21;33142:4;33205:61;33262:2;33251:9;33247:18;33239:6;33231;33205:61;:::i;:::-;33314:9;33306:6;33302:22;33297:2;33286:9;33282:18;33275:50;33342:61;33396:6;33388;33380;33342:61;:::i;:::-;33334:69;32934:475;-1:-1:-1;;;;;;;32934:475:34:o;33414:245::-;33481:6;33534:2;33522:9;33513:7;33509:23;33505:32;33502:52;;;33550:1;33547;33540:12;33502:52;33582:9;33576:16;33601:28;33623:5;33601:28;:::i;33664:553::-;33761:6;33769;33822:2;33810:9;33801:7;33797:23;33793:32;33790:52;;;33838:1;33835;33828:12;33790:52;33871:9;33865:16;-1:-1:-1;;;;;33896:6:34;33893:30;33890:50;;;33936:1;33933;33926:12;33890:50;33959:60;34011:7;34002:6;33991:9;33987:22;33959:60;:::i;:::-;33949:70;;;34065:2;34054:9;34050:18;34044:25;-1:-1:-1;;;;;34084:8:34;34081:32;34078:52;;;34126:1;34123;34116:12;34078:52;34149:62;34203:7;34192:8;34181:9;34177:24;34149:62;:::i;34222:307::-;34399:2;34388:9;34381:21;34362:4;34419:45;34460:2;34449:9;34445:18;34437:6;34419:45;:::i;:::-;34411:53;;34514:6;34507:14;34500:22;34495:2;34484:9;34480:18;34473:50;34222:307;;;;;:::o;34534:1972::-;34636:6;34689:2;34677:9;34668:7;34664:23;34660:32;34657:52;;;34705:1;34702;34695:12;34657:52;34738:9;34732:16;-1:-1:-1;;;;;34763:6:34;34760:30;34757:50;;;34803:1;34800;34793:12;34757:50;34826:22;;34882:6;34864:16;;;34860:29;34857:49;;;34902:1;34899;34892:12;34857:49;34928:22;;:::i;:::-;34981:2;34975:9;-1:-1:-1;;;;;34999:8:34;34996:32;34993:52;;;35041:1;35038;35031:12;34993:52;35068:55;35115:7;35104:8;35100:2;35096:17;35068:55;:::i;:::-;35061:5;35054:70;;35163:2;35159;35155:11;35149:18;-1:-1:-1;;;;;35182:8:34;35179:32;35176:52;;;35224:1;35221;35214:12;35176:52;35260:55;35307:7;35296:8;35292:2;35288:17;35260:55;:::i;:::-;35255:2;35248:5;35244:14;35237:79;;35355:2;35351;35347:11;35341:18;-1:-1:-1;;;;;35374:8:34;35371:32;35368:52;;;35416:1;35413;35406:12;35368:52;35452:55;35499:7;35488:8;35484:2;35480:17;35452:55;:::i;:::-;35447:2;35440:5;35436:14;35429:79;;35547:2;35543;35539:11;35533:18;-1:-1:-1;;;;;35566:8:34;35563:32;35560:52;;;35608:1;35605;35598:12;35560:52;35644:55;35691:7;35680:8;35676:2;35672:17;35644:55;:::i;:::-;35639:2;35632:5;35628:14;35621:79;;35739:3;35735:2;35731:12;35725:19;-1:-1:-1;;;;;35759:8:34;35756:32;35753:52;;;35801:1;35798;35791:12;35753:52;35838:55;35885:7;35874:8;35870:2;35866:17;35838:55;:::i;:::-;35832:3;35825:5;35821:15;35814:80;;35933:3;35929:2;35925:12;35919:19;-1:-1:-1;;;;;35953:8:34;35950:32;35947:52;;;35995:1;35992;35985:12;35947:52;36032:55;36079:7;36068:8;36064:2;36060:17;36032:55;:::i;:::-;36026:3;36019:5;36015:15;36008:80;;36127:3;36123:2;36119:12;36113:19;-1:-1:-1;;;;;36147:8:34;36144:32;36141:52;;;36189:1;36186;36179:12;36141:52;36226:55;36273:7;36262:8;36258:2;36254:17;36226:55;:::i;:::-;36220:3;36213:5;36209:15;36202:80;;36321:3;36317:2;36313:12;36307:19;-1:-1:-1;;;;;36341:8:34;36338:32;36335:52;;;36383:1;36380;36373:12;36335:52;36420:55;36467:7;36456:8;36452:2;36448:17;36420:55;:::i;:::-;36414:3;36403:15;;36396:80;-1:-1:-1;36407:5:34;34534:1972;-1:-1:-1;;;;34534:1972:34:o;37124:529::-;37364:2;37353:9;37346:21;37327:4;37384:66;37446:2;37435:9;37431:18;37423:6;37384:66;:::i;:::-;37376:74;;37480:2;37472:6;37469:14;37459:145;;37526:10;37521:3;37517:20;37514:1;37507:31;37561:4;37558:1;37551:15;37589:4;37586:1;37579:15;37459:145;37640:6;37635:2;37624:9;37620:18;37613:34;37124:529;;;;;:::o;37658:456::-;37746:6;37754;37762;37815:2;37803:9;37794:7;37790:23;37786:32;37783:52;;;37831:1;37828;37821:12;37783:52;-1:-1:-1;;37876:16:34;;37982:2;37967:18;;37961:25;38078:2;38063:18;;;38057:25;37876:16;;37961:25;;-1:-1:-1;38057:25:34;37658:456;-1:-1:-1;37658:456:34:o;38593:342::-;38795:2;38777:21;;;38834:2;38814:18;;;38807:30;-1:-1:-1;;;38868:2:34;38853:18;;38846:48;38926:2;38911:18;;38593:342::o;38940:486::-;39142:2;39124:21;;;39181:2;39161:18;;;39154:30;39220:34;39215:2;39200:18;;39193:62;39291:34;39286:2;39271:18;;39264:62;-1:-1:-1;;;39357:3:34;39342:19;;39335:49;39416:3;39401:19;;38940:486::o;39431:487::-;39633:2;39615:21;;;39672:2;39652:18;;;39645:30;39711:34;39706:2;39691:18;;39684:62;39782:34;39777:2;39762:18;;39755:62;-1:-1:-1;;;39848:3:34;39833:19;;39826:50;39908:3;39893:19;;39431:487::o;41322:1173::-;41436:6;41444;41497:2;41485:9;41476:7;41472:23;41468:32;41465:52;;;41513:1;41510;41503:12;41465:52;41546:9;41540:16;-1:-1:-1;;;;;41571:6:34;41568:30;41565:50;;;41611:1;41608;41601:12;41565:50;41634:22;;41687:4;41679:13;;41675:27;-1:-1:-1;41665:55:34;;41716:1;41713;41706:12;41665:55;41749:2;41743:9;41772:63;41788:46;41827:6;41788:46;:::i;41772:63::-;41857:3;41881:6;41876:3;41869:19;41913:4;41908:3;41904:14;41897:21;;41970:4;41960:6;41957:1;41953:14;41949:2;41945:23;41941:34;41927:48;;41998:7;41990:6;41987:19;41984:39;;;42019:1;42016;42009:12;41984:39;42051:4;42047:2;42043:13;42065:308;42081:6;42076:3;42073:15;42065:308;;;42162:3;42156:10;-1:-1:-1;;;;;42185:11:34;42182:35;42179:55;;;42230:1;42227;42220:12;42179:55;42259:69;42320:7;42313:4;42299:11;42295:2;42291:20;42287:31;42259:69;:::i;:::-;42247:82;;-1:-1:-1;42358:4:34;42349:14;;;;42098;42065:308;;;-1:-1:-1;42459:4:34;42444:20;;;;42438:27;42392:5;;42438:27;;-1:-1:-1;;;;;;41322:1173:34:o;44566:331::-;44671:9;44682;44724:8;44712:10;44709:24;44706:44;;;44746:1;44743;44736:12;44706:44;44775:6;44765:8;44762:20;44759:40;;;44795:1;44792;44785:12;44759:40;-1:-1:-1;;44821:23:34;;;44866:25;;;;;-1:-1:-1;44566:331:34:o",
|
|
3192
|
+
object: "0x608060405234801561000f575f5ffd5b506004361061023f575f3560e01c80638d6937b811610135578063c3fa6f22116100b4578063ddd8f8e311610079578063ddd8f8e31461051a578063ec8e07291461052d578063f3757ad414610557578063f851a44014610577578063ff20370714610589575f5ffd5b8063c3fa6f22146104bb578063ca4051f2146104ce578063cf515d37146104e1578063d39a5cf9146104f4578063d4932b4e14610507575f5ffd5b8063ac20d678116100fa578063ac20d6781461045c578063b8bd48791461046f578063b96b161c14610482578063c04fa6fe14610495578063c1b77162146104a8575f5ffd5b80638d6937b8146103f05780638e2e2e621461040357806398e73ac3146104165780639c1a81a314610436578063a6df2c0114610449575f5ffd5b80635b7ab929116101c15780637e5a88f3116101865780637e5a88f3146103645780638163f23114610377578063818694f1146103b7578063847755e3146103ca5780638b2ec611146103dd575f5ffd5b80635b7ab9291461031b5780635c975abb1461032e578063652ba33d146103415780636c40d5d61461034957806375829def14610351575f5ffd5b8063311a335c11610207578063311a335c146102b9578063320d3b55146102cc5780633d6ed975146102df57806341a0e2c2146102f257806346b758a014610308575f5ffd5b806316c38b3c1461024357806316e3d7291461025857806318677f2a1461026b5780631fac43451461027e5780632e5ce77f146102a6575b5f5ffd5b610256610251366004612b12565b61059c565b005b610256610266366004612b43565b610625565b610256610279366004612b88565b6106ac565b61029161028c366004612bb3565b610759565b60405190151581526020015b60405180910390f35b6102916102b4366004612c2c565b610771565b6102916102c7366004612c63565b6108a5565b6102916102da366004612bb3565b6108bf565b6102916102ed366004612c63565b6108ce565b6102fa600181565b60405190815260200161029d565b610291610316366004612d8d565b6108dd565b610291610329366004612d8d565b6108f3565b5f5461029190600160a01b900460ff1681565b6102fa600381565b6102fa600281565b61025661035f366004612b88565b610900565b610291610372366004612d8d565b6109ce565b61039f610385366004612eab565b60016020525f90815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161029d565b6102916103c5366004612c2c565b6109db565b6102916103d8366004612f46565b610a43565b6102916103eb366004612bb3565b610c0b565b6102566103fe366004612fe2565b610c1a565b610291610411366004612bb3565b610cda565b610429610424366004612b43565b610ce8565b60405161029d919061304e565b610291610444366004612bb3565b610e13565b610256610457366004613084565b610e2d565b61029161046a366004612bb3565b610f57565b61029161047d366004612bb3565b610f71565b60025461039f906001600160a01b031681565b6102916104a33660046130fa565b610f8b565b6102916104b6366004612bb3565b6112a1565b6102916104c9366004612c2c565b6112af565b6102916104dc366004612bb3565b6112c5565b6102916104ef366004613142565b6112d3565b610291610502366004612d8d565b611527565b610291610515366004612c2c565b611534565b610291610528366004612bb3565b611668565b61054061053b366004613170565b611682565b60408051921515835260208301919091520161029d565b61056a6105653660046131a6565b611ca2565b60405161029d91906131f4565b5f5461039f906001600160a01b031681565b610291610597366004612c2c565b611de2565b5f546001600160a01b031633146105ce5760405162461bcd60e51b81526004016105c5906132e3565b60405180910390fd5b5f8054821515600160a01b0260ff60a01b199091161790556040517f9a506b30e47f3823b09f67e4c0dfa5c3d8023b71825b7ceaa97677129128c9c59061061a90831515815260200190565b60405180910390a150565b604051632988ebc960e21b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063a623af249061065e908590600401613421565b602060405180830381865af4158015610679573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069d9190613433565b90506106a881611def565b5050565b5f546001600160a01b031633146106d55760405162461bcd60e51b81526004016105c5906132e3565b6001600160a01b0381166107375760405162461bcd60e51b8152602060048201526024808201527f526f6f742072656769737472792063616e6e6f74206265207a65726f206164646044820152637265737360e01b60648201526084016105c5565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b5f6107678460028585611eb0565b90505b9392505050565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813876040518263ffffffff1660e01b81526004016107ac9190613421565b606060405180830381865af41580156107c7573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107eb919061344a565b919450925090506107fd8386356120a2565b6108195760405162461bcd60e51b81526004016105c59061348b565b60ff811615610892576040805162461bcd60e51b81526020600482015260248101919091527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734167654265747765656e20696e737465616460648201526084016105c5565b5060ff8681169116149150509392505050565b5f6108b48585600286866120cf565b90505b949350505050565b5f6107678485600286866120cf565b5f6108b48585600386866120cf565b5f6108ea836004846123f2565b90505b92915050565b5f6108ea836007846123f2565b5f546001600160a01b031633146109295760405162461bcd60e51b81526004016105c5906132e3565b6001600160a01b03811661097f5760405162461bcd60e51b815260206004820152601c60248201527f41646d696e2063616e6e6f74206265207a65726f20616464726573730000000060448201526064016105c5565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f101b8081ff3b56bbf45deb824d86a3b0fd38b7e3dd42421105cf8abe9106db0b9190a35050565b5f6108ea836006846123f2565b5f5f8460ff1611610a2e5760405162461bcd60e51b815260206004820152601e60248201527f4d617820616765206d7573742062652067726561746572207468616e2030000060448201526064016105c5565b610767610a3c600186613510565b8484611534565b5f5f610a8386868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061250092505050565b610afd57600860028787604051602001610a9e929190613529565b60408051601f1981840301815290829052610ab891613538565b602060405180830381855afa158015610ad3573d5f5f3e3d5ffd5b5050506040513d601f19601f82011682018060405250810190610af69190613433565b901c610aff565b5f5b90505f610b4085858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061250092505050565b610bba57600860028686604051602001610b5b929190613529565b60408051601f1981840301815290829052610b7591613538565b602060405180830381855afa158015610b90573d5f5f3e3d5ffd5b5050506040513d601f19601f82011682018060405250810190610bb39190613433565b901c610bbc565b5f5b90508189896003818110610bd257610bd261354e565b90506020020135148015610bfe57508089896004818110610bf557610bf561354e565b90506020020135145b9998505050505050505050565b5f6107678485600386866120cf565b5f546001600160a01b03163314610c435760405162461bcd60e51b81526004016105c5906132e3565b5f5b81811015610cd55760015f848484818110610c6257610c6261354e565b602090810292909201358352508101919091526040015f2080546001600160a01b0319169055828282818110610c9a57610c9a61354e565b905060200201357f6fdcbcf8f91bc23f2c9dcfe8fe01d80d1b1afbbf207298e94c0171ccc587424c60405160405180910390a2600101610c45565b505050565b5f6107678460038585611eb0565b60408051606080820183525f80835260208301529181019190915260405163dfda037960e01b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063dfda037990610d3c908690600401613421565b5f60405180830381865af4158015610d56573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d7d91908101906135b1565b604051630578c5d360e11b815290915073__$144f4fe859debe4776cdef2b99f7b97a42$__90630af18ba690610db79084906004016135e2565b5f60405180830381865af4158015610dd1573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610df891908101906135f4565b604085015260208401526001600160a01b0316825250919050565b5f610767610e24620151808661363f565b60028585611eb0565b5f546001600160a01b03163314610e565760405162461bcd60e51b81526004016105c5906132e3565b5f5b83811015610f5057828282818110610e7257610e7261354e565b9050602002016020810190610e879190612b88565b60015f878785818110610e9c57610e9c61354e565b9050602002013581526020019081526020015f205f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550828282818110610ee557610ee561354e565b9050602002016020810190610efa9190612b88565b6001600160a01b0316858583818110610f1557610f1561354e565b905060200201357f636107338a3eb46f1f60562462f3ec11393d35fbc965991aaade3b9e7d89c3f560405160405180910390a3600101610e58565b5050505050565b5f610767610f688562015180613652565b60038585612505565b5f610767610f828562015180613652565b60028585612505565b5f5f5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63defa8ed9896040518263ffffffff1660e01b8152600401610fc89190613421565b60a060405180830381865af4158015610fe3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110079190613665565b9398509196509450925090505f6001856001811115611028576110286136bd565b1490505f8b600281111561103e5761103e6136bd565b836002811115611050576110506136bd565b1490505f7f2532418a107c5306fa8308c22255792cf77e4a290cbce8a840a642a3e591340b881480156110ae575060018c6002811115611092576110926136bd565b14806110ae57505f8c60028111156110ac576110ac6136bd565b145b8061110e57507f16700a2d9168a194fc85f237af5829b5a2be05b8ae8ac4879ada34cf54a9c2118814801561110e575060028c60028111156110f2576110f26136bd565b148061110e57505f8c600281111561110c5761110c6136bd565b145b90505f7f1fa73686cf510f8f85757b0602de0dd72a13e68ae2092462be8b72662e7f179b8714801561116b575060018d600281111561114f5761114f6136bd565b148061116b57505f8d6002811115611169576111696136bd565b145b806111cb57507f24d9929b248be7eeecaa98e105c034a50539610f3fdd4cb9c8983ef4100d615d871480156111cb575060028d60028111156111af576111af6136bd565b14806111cb57505f8d60028111156111c9576111c96136bd565b145b90505f86158015611207575060018e60028111156111eb576111eb6136bd565b148061120757505f8e6002811115611205576112056136bd565b145b8061126757507f12e3dc7cc8fec0205b51ff21825630865028f3be5bc64a6eec9ee5e71221319f87148015611267575060028e600281111561124b5761124b6136bd565b148061126757505f8e6002811115611265576112656136bd565b145b90508480156112735750835b801561127c5750825b80156112855750815b801561128e5750805b9f9e505050505050505050505050505050565b5f6107678460028585612505565b5f6107676112be8560016136d1565b8484610771565b5f6107678460038585612505565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813876040518263ffffffff1660e01b815260040161130e9190613421565b606060405180830381865af4158015611329573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061134d919061344a565b9194509250905061135f8386356120a2565b61137b5760405162461bcd60e51b81526004016105c59061348b565b8660ff168860ff1611156113e75760405162461bcd60e51b815260206004820152602d60248201527f4d696e20616765206d757374206265206c657373207468616e206f722065717560448201526c616c20746f206d61782061676560981b60648201526084016105c5565b8160ff165f036114745760405162461bcd60e51b815260206004820152604c60248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697341676542656c6f774f724560648201526b1c5d585b081a5b9cdd19585960a21b608482015260a4016105c5565b8060ff165f036115015760405162461bcd60e51b815260206004820152604c60248201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697341676541626f76654f724560648201526b1c5d585b081a5b9cdd19585960a21b608482015260a4016105c5565b8160ff168860ff1614801561151b57508060ff168760ff16145b98975050505050505050565b5f6108ea836005846123f2565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813876040518263ffffffff1660e01b815260040161156f9190613421565b606060405180830381865af415801561158a573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115ae919061344a565b919450925090506115c08386356120a2565b6115dc5760405162461bcd60e51b81526004016105c59061348b565b60ff821615611655576040805162461bcd60e51b81526020600482015260248101919091527f5468652070726f6f66206c6f77657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734167654265747765656e20696e737465616460648201526084016105c5565b60ff878116911614925050509392505050565b5f610767611679620151808661363f565b60038585611eb0565b5f80548190600160a01b900460ff16156116d35760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016105c5565b5f6116e76116e185806136ea565b35612736565b90506117206116f685806136ea565b611704906040810190613708565b5f8181106117145761171461354e565b9050602002013561278f565b61175861172d85806136ea565b61173b906040810190613708565b600181811061174c5761174c61354e565b90506020020135612857565b6117b761176585806136ea565b611773906040810190613708565b808060200260200160405190810160405280939291908181526020018383602002808284375f920191909152506117b192505050604087018761374d565b35612915565b61181f5760405162461bcd60e51b815260206004820152603360248201527f5468652070726f6f66207761732067656e657261746564206f757473696465206044820152721d1a19481d985b1a591a5d1e481c195c9a5bd9606a1b60648201526084016105c5565b61187061182c85806136ea565b61183a906040810190613708565b611847604088018861374d565b611855906020810190613761565b61186260408a018a61374d565b6103d8906040810190613761565b6118bc5760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420646f6d61696e206f722073636f706500000000000000000060448201526064016105c5565b61194f6118c985806136ea565b6118d7906040810190613708565b60059060016118e689806136ea565b6118f4906040810190613708565b6118ff92915061363f565b9261190c939291906137a3565b808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525061194a9250505060208701876137ce565b612940565b5f61195a85806136ea565b611968906040810190613708565b600261197488806136ea565b611982906040810190613708565b61198d92915061363f565b81811061199c5761199c61354e565b905060200201355f1c60038111156119b6576119b66136bd565b905060028160038111156119cc576119cc6136bd565b141580156119ec575060038160038111156119e9576119e96136bd565b14155b80611a1057506119ff604086018661374d565b611a10906080810190606001612b12565b611a6d5760405162461bcd60e51b815260206004820152602860248201527f4d6f636b2070726f6f667320617265206f6e6c7920616c6c6f77656420696e20604482015267646576206d6f646560c01b60648201526084016105c5565b5f816003811115611a8057611a806136bd565b1480611aa55750611a94604086018661374d565b611aa5906080810190606001612b12565b611b055760405162461bcd60e51b815260206004820152602b60248201527f53616c746564206e756c6c69666965727320617265206e6f7420737570706f7260448201526a74656420666f72206e6f7760a81b60648201526084016105c5565b6007611b1186806136ea565b611b1f906040810190613708565b611b2a92915061363f565b611b3760208701876137ce565b611b45906020810190613708565b905014611ba25760405162461bcd60e51b815260206004820152602560248201527f496e76616c696420636f6d6d697474656420696e70757420636f756e7473206c6044820152640cadccee8d60db1b60648201526084016105c5565b6001600160a01b03821663ea50d0e4611bbb87806136ea565b611bc9906020810190613761565b611bd389806136ea565b611be1906040810190613708565b6040518563ffffffff1660e01b8152600401611c0094939291906137e2565b602060405180830381865afa158015611c1b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c3f9190613813565b93505f6001611c4e87806136ea565b611c5c906040810190613708565b611c6792915061363f565b9050611c7386806136ea565b611c81906040810190613708565b82818110611c9157611c9161354e565b905060200201359350505050915091565b611cea60405180610100016040528060608152602001606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b604051635450abb360e11b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063a8a1576690611d23908790600401613421565b5f60405180830381865af4158015611d3d573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611d64919081019061382e565b6040516301e9bf5760e11b815290925073__$144f4fe859debe4776cdef2b99f7b97a42$__91506303d37eae90611da19084908790600401613887565b5f60405180830381865af4158015611dbb573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108b791908101906138aa565b5f610767848585856112d3565b6002546040516383578c1160e01b815260036004820152602481018390526001600160a01b03909116906383578c1190604401602060405180830381865afa158015611e3d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e619190613813565b611ead5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c69642073616e6374696f6e7320726567697374727920726f6f740060448201526064016105c5565b50565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e87896040518363ffffffff1660e01b8152600401611eed929190613a3b565b606060405180830381865af4158015611f08573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f2c9190613a78565b91945092509050611f3e8386356120a2565b611f5a5760405162461bcd60e51b81526004016105c59061348b565b8115611fd85760405162461bcd60e51b815260206004820152604160248201527f5468652070726f6f66206c6f77657220626f756e64206d75737420626520302c60448201527f20706c6561736520757365206973446174654265747765656e20696e737465616064820152601960fa1b608482015260a4016105c5565b600287600a811115611fec57611fec6136bd565b14806120095750600387600a811115612007576120076136bd565b145b6120255760405162461bcd60e51b81526004016105c590613aa3565b600287600a811115612039576120396136bd565b0361207757805f0361205d5760405162461bcd60e51b81526004016105c590613acf565b61206b6383aa7e808261363f565b881493505050506108b7565b805f036120965760405162461bcd60e51b81526004016105c590613b47565b871492506108b7915050565b5f806120ae8385613652565b90508342101580156120bf57508381115b80156108b7575042109392505050565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e87896040518363ffffffff1660e01b815260040161210c929190613a3b565b606060405180830381865af4158015612127573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061214b9190613a78565b9194509250905061215d8386356120a2565b6121795760405162461bcd60e51b81526004016105c59061348b565b878911156121e15760405162461bcd60e51b815260206004820152602f60248201527f4d696e2064617465206d757374206265206c657373207468616e206f7220657160448201526e75616c20746f206d6178206461746560881b60648201526084016105c5565b600287600a8111156121f5576121f56136bd565b14806122125750600387600a811115612210576122106136bd565b145b61222e5760405162461bcd60e51b81526004016105c590613aa3565b600287600a811115612242576122426136bd565b0361232857815f036122d75760405162461bcd60e51b815260206004820152605260248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697342697274686461746542656064820152711b1bddd3dc915c5d585b081a5b9cdd19585960721b608482015260a4016105c5565b805f036122f65760405162461bcd60e51b81526004016105c590613acf565b6123046383aa7e808361363f565b8914801561231e575061231b6383aa7e808261363f565b88145b93505050506123e9565b815f036123b95760405162461bcd60e51b815260206004820152605360248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c65617365207573652069734578706972794461746542606482015272195b1bddd3dc915c5d585b081a5b9cdd195859606a1b608482015260a4016105c5565b805f036123d85760405162461bcd60e51b81526004016105c590613b47565b818914801561231e57508714925050505b95945050505050565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63dc8c5e9a85876040518363ffffffff1660e01b815260040161242e929190613a3b565b5f60405180830381865af4158015612448573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261246f9190810190613bc0565b9150915080865114612485575f9250505061076a565b5f5b818110156124f3576124dc8782815181106124a4576124a461354e565b60200260200101518483815181106124be576124be61354e565b60200260200101518051602091820120825192909101919091201490565b6124eb575f935050505061076a565b600101612487565b5060019695505050505050565b511590565b5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e87896040518363ffffffff1660e01b8152600401612542929190613a3b565b606060405180830381865af415801561255d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125819190613a78565b919450925090506125938386356120a2565b6125af5760405162461bcd60e51b81526004016105c59061348b565b600287600a8111156125c3576125c36136bd565b14806125e05750600387600a8111156125de576125de6136bd565b145b6125fc5760405162461bcd60e51b81526004016105c590613aa3565b600287600a811115612610576126106136bd565b036126a65780156126985760405162461bcd60e51b815260206004820152604660248201527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734269727468646174654265747765656e20696064820152651b9cdd19585960d21b608482015260a4016105c5565b61206b6383aa7e808361363f565b801561272a5760405162461bcd60e51b815260206004820152604760248201527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c6561736520757365206973457870697279446174654265747765656e206064820152661a5b9cdd19585960ca1b608482015260a4016105c5565b50861491506108b79050565b5f818152600160205260408120546001600160a01b0316806108ed5760405162461bcd60e51b815260206004820152601260248201527115995c9a599a595c881b9bdd08199bdd5b9960721b60448201526064016105c5565b6002546040516383578c1160e01b815260016004820152602481018390526001600160a01b03909116906383578c1190604401602060405180830381865afa1580156127dd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128019190613813565b611ead5760405162461bcd60e51b815260206004820152602160248201527f496e76616c696420636572746966696361746520726567697374727920726f6f6044820152601d60fa1b60648201526084016105c5565b600280546040516383578c1160e01b81526004810192909252602482018390526001600160a01b0316906383578c1190604401602060405180830381865afa1580156128a5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128c99190613813565b611ead5760405162461bcd60e51b815260206004820152601d60248201527f496e76616c6964206369726375697420726567697374727920726f6f7400000060448201526064016105c5565b5f5f8360028151811061292a5761292a61354e565b60200260200101515f1c90506108b781846120a2565b5f805b6129506020840184613708565b9050811015612aaa575f600860026129688680613761565b869061297760208a018a613708565b888181106129875761298761354e565b90506020020135886129999190613652565b926129a693929190613c79565b6040516020016129b7929190613529565b60408051601f19818403018152908290526129d191613538565b602060405180830381855afa1580156129ec573d5f5f3e3d5ffd5b5050506040513d601f19601f82011682018060405250810190612a0f9190613433565b901c9050848281518110612a2557612a2561354e565b60200260200101518114612a705760405162461bcd60e51b8152602060048201526012602482015271125b9d985b1a590818dbdb5b5a5d1b595b9d60721b60448201526064016105c5565b612a7d6020850185613708565b83818110612a8d57612a8d61354e565b9050602002013583612a9f9190613652565b925050600101612943565b50612ab58280613761565b90508114610cd55760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420636f6d6d697474656420696e70757473206c656e6774680060448201526064016105c5565b8015158114611ead575f5ffd5b5f60208284031215612b22575f5ffd5b813561076a81612b05565b5f60408284031215612b3d575f5ffd5b50919050565b5f60208284031215612b53575f5ffd5b81356001600160401b03811115612b68575f5ffd5b6108b784828501612b2d565b6001600160a01b0381168114611ead575f5ffd5b5f60208284031215612b98575f5ffd5b813561076a81612b74565b5f60808284031215612b3d575f5ffd5b5f5f5f60608486031215612bc5575f5ffd5b8335925060208401356001600160401b03811115612be1575f5ffd5b612bed86828701612b2d565b92505060408401356001600160401b03811115612c08575f5ffd5b612c1486828701612ba3565b9150509250925092565b60ff81168114611ead575f5ffd5b5f5f5f60608486031215612c3e575f5ffd5b8335612c4981612c1e565b925060208401356001600160401b03811115612be1575f5ffd5b5f5f5f5f60808587031215612c76575f5ffd5b843593506020850135925060408501356001600160401b03811115612c99575f5ffd5b612ca587828801612b2d565b92505060608501356001600160401b03811115612cc0575f5ffd5b612ccc87828801612ba3565b91505092959194509250565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b0381118282101715612d0f57612d0f612cd8565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612d3d57612d3d612cd8565b604052919050565b5f6001600160401b03821115612d5d57612d5d612cd8565b5060051b60200190565b5f6001600160401b03821115612d7f57612d7f612cd8565b50601f01601f191660200190565b5f5f60408385031215612d9e575f5ffd5b82356001600160401b03811115612db3575f5ffd5b8301601f81018513612dc3575f5ffd5b8035612dd6612dd182612d45565b612d15565b8082825260208201915060208360051b850101925087831115612df7575f5ffd5b602084015b83811015612e775780356001600160401b03811115612e19575f5ffd5b8501603f81018a13612e29575f5ffd5b6020810135612e3a612dd182612d67565b8181526040838301018c1015612e4e575f5ffd5b816040840160208301375f60208383010152808652505050602083019250602081019050612dfc565b50945050505060208301356001600160401b03811115612e95575f5ffd5b612ea185828601612b2d565b9150509250929050565b5f60208284031215612ebb575f5ffd5b5035919050565b5f5f83601f840112612ed2575f5ffd5b5081356001600160401b03811115612ee8575f5ffd5b6020830191508360208260051b8501011115612f02575f5ffd5b9250929050565b5f5f83601f840112612f19575f5ffd5b5081356001600160401b03811115612f2f575f5ffd5b602083019150836020828501011115612f02575f5ffd5b5f5f5f5f5f5f60608789031215612f5b575f5ffd5b86356001600160401b03811115612f70575f5ffd5b612f7c89828a01612ec2565b90975095505060208701356001600160401b03811115612f9a575f5ffd5b612fa689828a01612f09565b90955093505060408701356001600160401b03811115612fc4575f5ffd5b612fd089828a01612f09565b979a9699509497509295939492505050565b5f5f60208385031215612ff3575f5ffd5b82356001600160401b03811115613008575f5ffd5b61301485828601612ec2565b90969095509350505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b6020815260018060a01b038251166020820152602082015160408201525f60408301516060808401526108b76080840182613020565b5f5f5f5f60408587031215613097575f5ffd5b84356001600160401b038111156130ac575f5ffd5b6130b887828801612ec2565b90955093505060208501356001600160401b038111156130d6575f5ffd5b6130e287828801612ec2565b95989497509550505050565b60038110611ead575f5ffd5b5f5f5f5f6080858703121561310d575f5ffd5b8435613118816130ee565b93506020850135613128816130ee565b925060408501356001600160401b03811115612c99575f5ffd5b5f5f5f5f60808587031215613155575f5ffd5b843561316081612c1e565b9350602085013561312881612c1e565b5f60208284031215613180575f5ffd5b81356001600160401b03811115613195575f5ffd5b82016060818503121561076a575f5ffd5b5f5f604083850312156131b7575f5ffd5b82356001600160401b038111156131cc575f5ffd5b6131d885828601612b2d565b92505060208301356131e981612b05565b809150509250929050565b602081525f82516101006020840152613211610120840182613020565b90506020840151601f1984830301604085015261322e8282613020565b9150506040840151601f1984830301606085015261324c8282613020565b9150506060840151601f1984830301608085015261326a8282613020565b9150506080840151601f198483030160a08501526132888282613020565b91505060a0840151601f198483030160c08501526132a68282613020565b91505060c0840151601f198483030160e08501526132c48282613020565b91505060e0840151601f19848303016101008501526123e98282613020565b6020808252601a908201527f4e6f7420617574686f72697a65643a2061646d696e206f6e6c79000000000000604082015260600190565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b8183525f6001600160fb1b03831115613359575f5ffd5b8260051b80836020870137939093016020019392505050565b5f8135601e1983360301808212613387575f5ffd5b602091840191820191356001600160401b038111156133a4575f5ffd5b8036038313156133b2575f5ffd5b604086526133c460408701828561331a565b92505060208401358181126133d7575f5ffd5b8401602081019150356001600160401b038111156133f3575f5ffd5b8060051b3603821315613404575f5ffd5b8583036020870152613417838284613342565b9695505050505050565b602081525f6108ea6020830184613372565b5f60208284031215613443575f5ffd5b5051919050565b5f5f5f6060848603121561345c575f5ffd5b8351602085015190935061346f81612c1e565b604085015190925061348081612c1e565b809150509250925092565b6020808252604b908201527f5468652063757272656e742064617465207573656420696e207468652070726f60408201527f6f6620646f6573206e6f742066616c6c2077697468696e207468652076616c6960608201526a191a5d1e481c195c9a5bd960aa1b608082015260a00190565b634e487b7160e01b5f52601160045260245ffd5b60ff82811682821603908111156108ed576108ed6134fc565b818382375f9101908152919050565b5f82518060208501845e5f920191825250919050565b634e487b7160e01b5f52603260045260245ffd5b5f82601f830112613571575f5ffd5b8151602083015f613584612dd184612d67565b9050828152858383011115613597575f5ffd5b8282602083015e5f92810160200192909252509392505050565b5f602082840312156135c1575f5ffd5b81516001600160401b038111156135d6575f5ffd5b6108b784828501613562565b602081525f6108ea6020830184613020565b5f5f5f60608486031215613606575f5ffd5b835161361181612b74565b6020850151604086015191945092506001600160401b03811115613633575f5ffd5b612c1486828701613562565b818103818111156108ed576108ed6134fc565b808201808211156108ed576108ed6134fc565b5f5f5f5f5f60a08688031215613679575f5ffd5b855160208701519095506002811061368f575f5ffd5b60408701516060880151608089015192965090945092506136af816130ee565b809150509295509295909350565b634e487b7160e01b5f52602160045260245ffd5b60ff81811683821601908111156108ed576108ed6134fc565b5f8235605e198336030181126136fe575f5ffd5b9190910192915050565b5f5f8335601e1984360301811261371d575f5ffd5b8301803591506001600160401b03821115613736575f5ffd5b6020019150600581901b3603821315612f02575f5ffd5b5f8235607e198336030181126136fe575f5ffd5b5f5f8335601e19843603018112613776575f5ffd5b8301803591506001600160401b0382111561378f575f5ffd5b602001915036819003821315612f02575f5ffd5b5f5f858511156137b1575f5ffd5b838611156137bd575f5ffd5b5050600583901b0193919092039150565b5f8235603e198336030181126136fe575f5ffd5b604081525f6137f560408301868861331a565b8281036020840152613808818587613342565b979650505050505050565b5f60208284031215613823575f5ffd5b815161076a81612b05565b5f5f6040838503121561383f575f5ffd5b82516001600160401b03811115613854575f5ffd5b61386085828601613562565b92505060208301516001600160401b0381111561387b575f5ffd5b612ea185828601613562565b604081525f6138996040830185613020565b905082151560208301529392505050565b5f602082840312156138ba575f5ffd5b81516001600160401b038111156138cf575f5ffd5b820161010081850312156138e1575f5ffd5b6138e9612cec565b81516001600160401b038111156138fe575f5ffd5b61390a86828501613562565b82525060208201516001600160401b03811115613925575f5ffd5b61393186828501613562565b60208301525060408201516001600160401b0381111561394f575f5ffd5b61395b86828501613562565b60408301525060608201516001600160401b03811115613979575f5ffd5b61398586828501613562565b60608301525060808201516001600160401b038111156139a3575f5ffd5b6139af86828501613562565b60808301525060a08201516001600160401b038111156139cd575f5ffd5b6139d986828501613562565b60a08301525060c08201516001600160401b038111156139f7575f5ffd5b613a0386828501613562565b60c08301525060e08201516001600160401b03811115613a21575f5ffd5b613a2d86828501613562565b60e083015250949350505050565b604081525f613a4d6040830185613372565b9050600b8310613a6b57634e487b7160e01b5f52602160045260245ffd5b8260208301529392505050565b5f5f5f60608486031215613a8a575f5ffd5b5050815160208301516040909301519094929350919050565b602080825260129082015271496e76616c69642070726f6f66207479706560701b604082015260600190565b60208082526052908201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60408201527f6e2d7a65726f2c20706c656173652075736520697342697274686461746541626060820152711bdd9953dc915c5d585b081a5b9cdd19585960721b608082015260a00190565b60208082526053908201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60408201527f6e2d7a65726f2c20706c65617365207573652069734578706972794461746541606082015272189bdd9953dc915c5d585b081a5b9cdd195859606a1b608082015260a00190565b5f5f60408385031215613bd1575f5ffd5b82516001600160401b03811115613be6575f5ffd5b8301601f81018513613bf6575f5ffd5b8051613c04612dd182612d45565b8082825260208201915060208360051b850101925087831115613c25575f5ffd5b602084015b83811015613c655780516001600160401b03811115613c47575f5ffd5b613c568a602083890101613562565b84525060209283019201613c2a565b506020969096015195979596505050505050565b5f5f85851115613c87575f5ffd5b83861115613c93575f5ffd5b505082019391909203915056fea264697066735822122003976ad8bc435d1afd265436a8ca6c800493492d2b2a0afcb7cacd312db60e3f64736f6c634300081d0033",
|
|
3193
|
+
sourceMap: "706:31108:26:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2527:118;;;;;;:::i;:::-;;:::i;:::-;;23118:224;;;;;;:::i;:::-;;:::i;3178:206::-;;;;;;:::i;:::-;;:::i;14705:261::-;;;;;;:::i;:::-;;:::i;:::-;;;2384:14:33;;2377:22;2359:41;;2347:2;2332:18;14705:261:26;;;;;;;;4538:543;;;;;;:::i;:::-;;:::i;14091:279::-;;;;;;:::i;:::-;;:::i;15830:247::-;;;;;;:::i;:::-;;:::i;17636:282::-;;;;;;:::i;:::-;;:::i;738:69::-;;804:1;738:69;;;;;4308:25:33;;;4296:2;4281:18;738:69:26;4162:177:33;20526:220:26;;;;;;:::i;:::-;;:::i;22299:228::-;;;;;;:::i;:::-;;:::i;976:18::-;;;;;-1:-1:-1;;;976:18:26;;;;;;880:67;;944:1;880:67;;811:65;;873:1;811:65;;2294:229;;;;;;:::i;:::-;;:::i;21065:227::-;;;;;;:::i;:::-;;:::i;1084:53::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;1084:53:26;;;;;;-1:-1:-1;;;;;7518:32:33;;;7500:51;;7488:2;7473:18;1084:53:26;7354:203:33;7831:283:26;;;;;;:::i;:::-;;:::i;25611:706::-;;;;;;:::i;:::-;;:::i;19402:250::-;;;;;;:::i;:::-;;:::i;2943:231::-;;;;;;:::i;:::-;;:::i;18259:264::-;;;;;;:::i;:::-;;:::i;22680:300::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;15265:263::-;;;;;;:::i;:::-;;:::i;2649:290::-;;;;;;:::i;:::-;;:::i;16979:264::-;;;;;;:::i;:::-;;:::i;13445:261::-;;;;;;:::i;:::-;;:::i;1211:33::-;;;;;-1:-1:-1;;;;;1211:33:26;;;23801:1471;;;;;;:::i;:::-;;:::i;12890:259::-;;;;;;:::i;:::-;;:::i;5355:224::-;;;;;;:::i;:::-;;:::i;16415:262::-;;;;;;:::i;:::-;;:::i;5936:768::-;;;;;;:::i;:::-;;:::i;21681:221::-;;;;;;:::i;:::-;;:::i;7014:543::-;;;;;;:::i;:::-;;:::i;18828:266::-;;;;;;:::i;:::-;;:::i;28255:3557::-;;;;;;:::i;:::-;;:::i;:::-;;;;14155:14:33;;14148:22;14130:41;;14202:2;14187:18;;14180:34;;;;14103:18;28255:3557:26;13962:258:33;3906:322:26;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;952:20::-;;;;;-1:-1:-1;;;;;952:20:26;;;8394:214;;;;;;:::i;:::-;;:::i;2527:118::-;2157:5;;-1:-1:-1;;;;;2157:5:26;2143:10;:19;2135:58;;;;-1:-1:-1;;;2135:58:26;;;;;;;:::i;:::-;;;;;;;;;2585:6:::1;:16:::0;;;::::1;;-1:-1:-1::0;;;2585:16:26::1;-1:-1:-1::0;;;;2585:16:26;;::::1;;::::0;;2612:28:::1;::::0;::::1;::::0;::::1;::::0;2594:7;2384:14:33;2377:22;2359:41;;2347:2;2332:18;;2219:187;2612:28:26::1;;;;;;;;2527:118:::0;:::o;23118:224::-;23237:52;;-1:-1:-1;;;23237:52:26;;23208:26;;23237:15;;:39;;:52;;23277:11;;23237:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23208:81;;23295:42;23318:18;23295:22;:42::i;:::-;23202:140;23118:224;:::o;3178:206::-;2157:5;;-1:-1:-1;;;;;2157:5:26;2143:10;:19;2135:58;;;;-1:-1:-1;;;2135:58:26;;;;;;;:::i;:::-;-1:-1:-1;;;;;3262:27:26;::::1;3254:76;;;::::0;-1:-1:-1;;;3254:76:26;;19279:2:33;3254:76:26::1;::::0;::::1;19261:21:33::0;19318:2;19298:18;;;19291:30;19357:34;19337:18;;;19330:62;-1:-1:-1;;;19408:18:33;;;19401:34;19452:19;;3254:76:26::1;19077:400:33::0;3254:76:26::1;3336:12;:43:::0;;-1:-1:-1;;;;;;3336:43:26::1;-1:-1:-1::0;;;;;3336:43:26;;;::::1;::::0;;;::::1;::::0;;3178:206::o;14705:261::-;14865:4;14884:77;14904:7;14913:19;14934:11;14947:13;14884:19;:77::i;:::-;14877:84;;14705:261;;;;;;:::o;4538:543::-;4688:4;4701:19;4722:9;4733;4746:15;:33;4780:11;4746:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4700:92;;-1:-1:-1;4700:92:26;-1:-1:-1;4700:92:26;-1:-1:-1;4806:73:26;4700:92;4841:37;;4806:21;:73::i;:::-;4798:161;;;;-1:-1:-1;;;4798:161:26;;;;;;;:::i;:::-;4973:8;;;;4965:85;;;;;-1:-1:-1;;;4965:85:26;;20663:2:33;4965:85:26;;;20645:21:33;20682:18;;;20675:30;;;;20741:34;20721:18;;;20714:62;20812:34;20792:18;;;20785:62;20864:19;;4965:85:26;20461:428:33;4965:85:26;-1:-1:-1;5063:13:26;;;;;;;;-1:-1:-1;;4538:543:26;;;;;:::o;14091:279::-;14266:4;14285:80;14299:7;14308;14317:19;14338:11;14351:13;14285;:80::i;:::-;14278:87;;14091:279;;;;;;;:::o;15830:247::-;15979:4;15998:74;16012:4;16018;16024:19;16045:11;16058:13;15998;:74::i;17636:282::-;17812:4;17831:82;17845:7;17854;17863:21;17886:11;17899:13;17831;:82::i;20526:220::-;20647:4;20666:75;20683:11;20696:31;20729:11;20666:16;:75::i;:::-;20659:82;;20526:220;;;;;:::o;22299:228::-;22424:4;22443:79;22460:11;22473:35;22510:11;22443:16;:79::i;2294:229::-;2157:5;;-1:-1:-1;;;;;2157:5:26;2143:10;:19;2135:58;;;;-1:-1:-1;;;2135:58:26;;;;;;;:::i;:::-;-1:-1:-1;;;;;2368:22:26;::::1;2360:63;;;::::0;-1:-1:-1;;;2360:63:26;;21096:2:33;2360:63:26::1;::::0;::::1;21078:21:33::0;21135:2;21115:18;;;21108:30;21174;21154:18;;;21147:58;21222:18;;2360:63:26::1;20894:352:33::0;2360:63:26::1;2429:16;2448:5:::0;;-1:-1:-1;;;;;2459:16:26;;::::1;-1:-1:-1::0;;;;;;2459:16:26;::::1;::::0;::::1;::::0;;2486:32:::1;::::0;2448:5;;;::::1;::::0;;;2486:32:::1;::::0;2429:16;2486:32:::1;2354:169;2294:229:::0;:::o;21065:227::-;21189:4;21208:79;21225:11;21238:35;21275:11;21208:16;:79::i;7831:283::-;7974:4;8003:1;7994:6;:10;;;7986:53;;;;-1:-1:-1;;;7986:53:26;;21453:2:33;7986:53:26;;;21435:21:33;21492:2;21472:18;;;21465:30;21531:32;21511:18;;;21504:60;21581:18;;7986:53:26;21251:354:33;7986:53:26;8052:57;8070:10;8079:1;8070:6;:10;:::i;:::-;8082:11;8095:13;8052:17;:57::i;25611:706::-;25750:4;25864:17;25884:27;25904:6;;25884:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25884:19:26;;-1:-1:-1;;;25884:27:26:i;:::-;:92;;25975:1;25939:32;25963:6;;25946:24;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;25946:24:26;;;;;;;;;;25939:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;;25884:92;;;25928:1;25884:92;25864:112;;26076:20;26099:26;26119:5;;26099:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26099:19:26;;-1:-1:-1;;;26099:26:26:i;:::-;:90;;26188:1;26153:31;26177:5;;26160:23;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;26160:23:26;;;;;;;;;;26153:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;26099:90;;;26142:1;26099:90;26076:113;;26243:9;26202:12;;1108:1:19;26202:37:26;;;;;;;:::i;:::-;;;;;;;:50;:110;;;;;26300:12;26256;;1147:1:19;26256:40:26;;;;;;;:::i;:::-;;;;;;;:56;26202:110;26195:117;25611:706;-1:-1:-1;;;;;;;;;25611:706:26:o;19402:250::-;19552:4;19571:76;19585:4;19591;19597:21;19620:11;19633:13;19571;:76::i;2943:231::-;2157:5;;-1:-1:-1;;;;;2157:5:26;2143:10;:19;2135:58;;;;-1:-1:-1;;;2135:58:26;;;;;;;:::i;:::-;3029:9:::1;3024:146;3044:21:::0;;::::1;3024:146;;;3087:18;:33;3106:10;;3117:1;3106:13;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;::::1;;3087:33:::0;;-1:-1:-1;3087:33:26;::::1;::::0;;;;;;-1:-1:-1;3087:33:26;3080:40;;-1:-1:-1;;;;;;3080:40:26::1;::::0;;3149:10;;3160:1;3149:13;;::::1;;;;;:::i;:::-;;;;;;;3133:30;;;;;;;;;;3067:3;;3024:146;;;;2943:231:::0;;:::o;18259:264::-;18420:4;18439:79;18459:7;18468:21;18491:11;18504:13;18439:19;:79::i;22680:300::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;22819:47:26;;-1:-1:-1;;;22819:47:26;;22799:17;;22819:15;;:34;;:47;;22854:11;;22819:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22819:47:26;;;;;;;;;;;;:::i;:::-;22941:34;;-1:-1:-1;;;22941:34:26;;22799:67;;-1:-1:-1;22941:15:26;;:28;;:34;;22799:67;;22941:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22941:34:26;;;;;;;;;;;;:::i;:::-;22917:20;;;22872:103;22898:17;;;22872:103;-1:-1:-1;;;;;22872:103:26;;;-1:-1:-1;22873:9:26;22680:300;-1:-1:-1;22680:300:26:o;15265:263::-;15418:4;15437:86;15457:16;15467:6;15457:7;:16;:::i;:::-;15475:19;15496:11;15509:13;15437:19;:86::i;2649:290::-;2157:5;;-1:-1:-1;;;;;2157:5:26;2143:10;:19;2135:58;;;;-1:-1:-1;;;2135:58:26;;;;;;;:::i;:::-;2774:9:::1;2769:166;2789:21:::0;;::::1;2769:166;;;2861:9;;2871:1;2861:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2825:18;:33;2844:10;;2855:1;2844:13;;;;;;;:::i;:::-;;;;;;;2825:33;;;;;;;;;;;;:48;;;;;-1:-1:-1::0;;;;;2825:48:26::1;;;;;-1:-1:-1::0;;;;;2825:48:26::1;;;;;;2915:9;;2925:1;2915:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2886:42:26::1;2900:10;;2911:1;2900:13;;;;;;;:::i;:::-;;;;;;;2886:42;;;;;;;;;;2812:3;;2769:166;;;;2649:290:::0;;;;:::o;16979:264::-;17132:4;17151:87;17170:16;:7;17180:6;17170:16;:::i;:::-;17188:21;17211:11;17224:13;17151:18;:87::i;13445:261::-;13597:4;13616:85;13635:16;:7;13645:6;13635:16;:::i;:::-;13653:19;13674:11;13687:13;13616:18;:85::i;23801:1471::-;24100:4;24113:19;24134:23;24159:17;24178:30;24210:36;24250:15;:39;24290:11;24250:52;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24112:190;;-1:-1:-1;24112:190:26;;-1:-1:-1;24112:190:26;-1:-1:-1;24112:190:26;-1:-1:-1;24112:190:26;-1:-1:-1;24308:17:26;24343:22;24328:11;:37;;;;;;;;:::i;:::-;;24308:57;;24371:18;24418:13;24392:39;;;;;;;;:::i;:::-;:22;:39;;;;;;;;:::i;:::-;;;-1:-1:-1;24437:25:26;5336:66:19;24466:44:26;;:78;;;;-1:-1:-1;24521:6:26;24515:2;:12;;;;;;;;:::i;:::-;;:28;;;-1:-1:-1;24537:6:26;24531:2;:12;;;;;;;;:::i;:::-;;24515:28;24465:173;;;-1:-1:-1;5508:66:19;24550:49:26;;:87;;;;-1:-1:-1;24610:10:26;24604:2;:16;;;;;;;;:::i;:::-;;:32;;;-1:-1:-1;24630:6:26;24624:2;:12;;;;;;;;:::i;:::-;;24604:32;24437:201;-1:-1:-1;24644:23:26;4953:66:19;24671:38:26;;:72;;;;-1:-1:-1;24720:6:26;24714:2;:12;;;;;;;;:::i;:::-;;:28;;;-1:-1:-1;24736:6:26;24730:2;:12;;;;;;;;:::i;:::-;;24714:28;24670:160;;;-1:-1:-1;5174:66:19;24749:42:26;;:80;;;;-1:-1:-1;24802:10:26;24796:2;:16;;;;;;;;:::i;:::-;;:32;;;-1:-1:-1;24822:6:26;24816:2;:12;;;;;;;;:::i;:::-;;24796:32;24644:186;-1:-1:-1;24920:36:26;24960;;:70;;;;-1:-1:-1;25007:6:26;25001:2;:12;;;;;;;;:::i;:::-;;:28;;;-1:-1:-1;25023:6:26;25017:2;:12;;;;;;;;:::i;:::-;;25001:28;24959:185;;;-1:-1:-1;5681:66:19;25036:69:26;;:107;;;;-1:-1:-1;25116:10:26;25110:2;:16;;;;;;;;:::i;:::-;;:32;;;-1:-1:-1;25136:6:26;25130:2;:12;;;;;;;;:::i;:::-;;25110:32;24920:224;;25157:12;:29;;;;;25173:13;25157:29;:53;;;;;25190:20;25157:53;:75;;;;;25214:18;25157:75;:110;;;;;25236:31;25157:110;25150:117;23801:1471;-1:-1:-1;;;;;;;;;;;;;;;23801:1471:26:o;12890:259::-;13049:4;13068:76;13087:7;13096:19;13117:11;13130:13;13068:18;:76::i;5355:224::-;5498:4;5517:57;5535:10;:6;5544:1;5535:10;:::i;:::-;5547:11;5560:13;5517:17;:57::i;16415:262::-;16575:4;16594:78;16613:7;16622:21;16645:11;16658:13;16594:18;:78::i;5936:768::-;6099:4;6112:19;6133:9;6144;6157:15;:33;6191:11;6157:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6111:92;;-1:-1:-1;6111:92:26;-1:-1:-1;6111:92:26;-1:-1:-1;6217:73:26;6111:92;6252:37;;6217:21;:73::i;:::-;6209:161;;;;-1:-1:-1;;;6209:161:26;;;;;;;:::i;:::-;6394:6;6384:16;;:6;:16;;;;6376:74;;;;-1:-1:-1;;;6376:74:26;;25823:2:33;6376:74:26;;;25805:21:33;25862:2;25842:18;;;25835:30;25901:34;25881:18;;;25874:62;-1:-1:-1;;;25952:18:33;;;25945:43;26005:19;;6376:74:26;25621:409:33;6376:74:26;6464:3;:8;;6471:1;6464:8;6456:97;;;;-1:-1:-1;;;6456:97:26;;26237:2:33;6456:97:26;;;26219:21:33;26276:2;26256:18;;;26249:30;26315:34;26295:18;;;26288:62;26386:34;26366:18;;;26359:62;-1:-1:-1;;;26437:19:33;;;26430:43;26490:19;;6456:97:26;26035:480:33;6456:97:26;6567:3;:8;;6574:1;6567:8;6559:97;;;;-1:-1:-1;;;6559:97:26;;26722:2:33;6559:97:26;;;26704:21:33;26761:2;26741:18;;;26734:30;26800:34;26780:18;;;26773:62;26871:34;26851:18;;;26844:62;-1:-1:-1;;;26922:19:33;;;26915:43;26975:19;;6559:97:26;26520:480:33;6559:97:26;6679:3;6669:13;;:6;:13;;;:30;;;;;6696:3;6686:13;;:6;:13;;;6669:30;6662:37;5936:768;-1:-1:-1;;;;;;;;5936:768:26:o;21681:221::-;21803:4;21822:75;21839:11;21852:31;21885:11;21822:16;:75::i;7014:543::-;7164:4;7177:19;7198:9;7209;7222:15;:33;7256:11;7222:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7176:92;;-1:-1:-1;7176:92:26;-1:-1:-1;7176:92:26;-1:-1:-1;7282:73:26;7176:92;7317:37;;7282:21;:73::i;:::-;7274:161;;;;-1:-1:-1;;;7274:161:26;;;;;;;:::i;:::-;7449:8;;;;7441:85;;;;;-1:-1:-1;;;7441:85:26;;27207:2:33;7441:85:26;;;27189:21:33;27226:18;;;27219:30;;;;27285:34;27265:18;;;27258:62;27356:34;27336:18;;;27329:62;27408:19;;7441:85:26;27005:428:33;7441:85:26;7539:13;;;;;;;;-1:-1:-1;;;7014:543:26;;;;;:::o;18828:266::-;18982:4;19001:88;19021:16;19031:6;19021:7;:16;:::i;:::-;19039:21;19062:11;19075:13;19001:19;:88::i;28255:3557::-;28362:12;2249:6;;28362:12;;-1:-1:-1;;;2249:6:26;;;;2248:7;2240:38;;;;-1:-1:-1;;;2240:38:26;;27640:2:33;2240:38:26;;;27622:21:33;27679:2;27659:18;;;27652:30;-1:-1:-1;;;27698:18:33;;;27691:48;27756:18;;2240:38:26;27438:342:33;2240:38:26;28485:16:::1;28504:51;28517:28;:6:::0;;:28:::1;:::i;:::-;:37;28504:12;:51::i;:::-;28485:70:::0;-1:-1:-1;28604:112:26::1;28629:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;977:1:19;28629:86:26;;;;;;;:::i;:::-;;;;;;;28604:24;:112::i;:::-;28761:104;28782:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;1029:1:19;28782:82:26;;;;;;;:::i;:::-;;;;;;;28761:20;:104::i;:::-;28923:98;28933:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;28923:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;28976:20:26::1;::::0;-1:-1:-1;;;28976:20:26::1;::::0;::::1;::::0;::::1;:::i;:::-;:44;28923:9;:98::i;:::-;28908:180;;;::::0;-1:-1:-1;;;28908:180:26;;29218:2:33;28908:180:26::1;::::0;::::1;29200:21:33::0;29257:2;29237:18;;;29230:30;29296:34;29276:18;;;29269:62;-1:-1:-1;;;29347:18:33;;;29340:49;29406:19;;28908:180:26::1;29016:415:33::0;28908:180:26::1;29432:112;29445:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;29488:20;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:27;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;29517:20;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:26;::::0;::::1;::::0;::::1;::::0;::::1;:::i;29432:112::-;29424:148;;;::::0;-1:-1:-1;;;29424:148:26;;30165:2:33;29424:148:26::1;::::0;::::1;30147:21:33::0;30204:2;30184:18;;;30177:30;30243:25;30223:18;;;30216:53;30286:18;;29424:148:26::1;29963:347:33::0;29424:148:26::1;29640:249;29726:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;1195:1:19;::::0;29855::26::1;29804:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:52;::::0;;-1:-1:-1;29804:52:26::1;:::i;:::-;29726:131;;;;;;;:::i;:::-;29640:249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;29865:18:26::1;::::0;-1:-1:-1;;;29865:18:26::1;::::0;::::1;::::0;::::1;:::i;:::-;29640:21;:249::i;:::-;29896:27;29948:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;30041:1;29990:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:52;::::0;;-1:-1:-1;29990:52:26::1;:::i;:::-;29948:95;;;;;;;:::i;:::-;;;;;;;29940:104;;29926:119;;;;;;;;:::i;:::-;29896:149:::0;-1:-1:-1;30309:39:26::1;30292:13;:56;;;;;;;;:::i;:::-;;;:112;;;;-1:-1:-1::0;30369:35:26::1;30352:13;:52;;;;;;;;:::i;:::-;;;30292:112;30291:152;;;-1:-1:-1::0;30415:20:26::1;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:28;::::0;;;;;::::1;;;:::i;:::-;30276:223;;;::::0;-1:-1:-1;;;30276:223:26;;31211:2:33;30276:223:26::1;::::0;::::1;31193:21:33::0;31250:2;31230:18;;;31223:30;31289:34;31269:18;;;31262:62;-1:-1:-1;;;31340:18:33;;;31333:38;31388:19;;30276:223:26::1;31009:404:33::0;30276:223:26::1;30730:34;30713:13;:51;;;;;;;;:::i;:::-;;:83;;;-1:-1:-1::0;30768:20:26::1;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:28;::::0;;;;;::::1;;;:::i;:::-;30698:157;;;::::0;-1:-1:-1;;;30698:157:26;;31620:2:33;30698:157:26::1;::::0;::::1;31602:21:33::0;31659:2;31639:18;;;31632:30;31698:34;31678:18;;;31671:62;-1:-1:-1;;;31749:18:33;;;31742:41;31800:19;;30698:157:26::1;31418:407:33::0;30698:157:26::1;1337:1:19;31085:28:26;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:111;::::0;;-1:-1:-1;31085:111:26::1;:::i;:::-;31035:18;;::::0;::::1;:6:::0;:18:::1;:::i;:::-;:39;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:46;;:161;31027:211;;;::::0;-1:-1:-1;;;31027:211:26;;32582:2:33;31027:211:26::1;::::0;::::1;32564:21:33::0;32621:2;32601:18;;;32594:30;32660:34;32640:18;;;32633:62;-1:-1:-1;;;32711:18:33;;;32704:35;32756:19;;31027:211:26::1;32380:401:33::0;31027:211:26::1;-1:-1:-1::0;;;;;31357:26:26;::::1;;31384:28;:6:::0;;:28:::1;:::i;:::-;:34;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;31420:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;31357:105;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31347:115:::0;-1:-1:-1;31525:29:26::1;31608:1;31557:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:52;::::0;;-1:-1:-1;31557:52:26::1;:::i;:::-;31525:84:::0;-1:-1:-1;31634:28:26::1;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;31676:21;31634:64;;;;;;;:::i;:::-;;;;;;;31615:83;;31773:34;;;28255:3557:::0;;;:::o;3906:322::-;4018:34;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4018:34:26;4093:51;;-1:-1:-1;;;4093:51:26;;4063:26;;4093:15;;:38;;:51;;4132:11;;4093:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4093:51:26;;;;;;;;;;;;:::i;:::-;4166:57;;-1:-1:-1;;;4166:57:26;;4060:84;;-1:-1:-1;4166:15:26;;-1:-1:-1;4166:32:26;;:57;;4060:84;;4214:8;;4166:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4166:57:26;;;;;;;;;;;;:::i;8394:214::-;8534:4;8553:50;8566:3;8571;8576:11;8589:13;8553:12;:50::i;27758:204::-;27848:12;;:62;;-1:-1:-1;;;27848:62:26;;944:1;27848:62;;;37063:25:33;37104:18;;;37097:34;;;-1:-1:-1;;;;;27848:12:26;;;;:24;;37036:18:33;;27848:62:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27833:124;;;;-1:-1:-1;;;27833:124:26;;37344:2:33;27833:124:26;;;37326:21:33;37383:2;37363:18;;;37356:30;37422:33;37402:18;;;37395:61;37473:18;;27833:124:26;37142:355:33;27833:124:26;27758:204;:::o;11306:1252::-;11487:4;11500:19;11521:11;11534;11549:15;:34;11584:11;11597:9;11549:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11499:108;;-1:-1:-1;11499:108:26;-1:-1:-1;11499:108:26;-1:-1:-1;11621:73:26;11499:108;11656:37;;11621:21;:73::i;:::-;11613:161;;;;-1:-1:-1;;;11613:161:26;;;;;;;:::i;:::-;11788:8;;11780:86;;;;-1:-1:-1;;;11780:86:26;;38699:2:33;11780:86:26;;;38681:21:33;38738:2;38718:18;;;38711:30;38777:34;38757:18;;;38750:62;38848:34;38828:18;;;38821:62;-1:-1:-1;;;38899:19:33;;;38892:32;38941:19;;11780:86:26;38497:469:33;11780:86:26;11893:19;11880:9;:32;;;;;;;;:::i;:::-;;:70;;;-1:-1:-1;11929:21:26;11916:9;:34;;;;;;;;:::i;:::-;;11880:70;11872:101;;;;-1:-1:-1;;;11872:101:26;;;;;;;:::i;:::-;11996:19;11983:9;:32;;;;;;;;:::i;:::-;;11979:575;;12033:3;12040:1;12033:8;12025:103;;;;-1:-1:-1;;;12025:103:26;;;;;;;:::i;:::-;12358:35;144:10:19;12358:3:26;:35;:::i;:::-;12347:7;:46;12340:53;;;;;;;11979:575;12422:3;12429:1;12422:8;12414:104;;;;-1:-1:-1;;;12414:104:26;;;;;;;:::i;:::-;12533:14;;;-1:-1:-1;12526:21:26;;-1:-1:-1;;12526:21:26;392:337:20;500:4;;546:35;558:23;546:9;:35;:::i;:::-;512:69;;619:9;600:15;:28;;:73;;;;;664:9;638:23;:35;600:73;:124;;;;-1:-1:-1;709:15:20;-1:-1:-1;683:41:20;392:337;-1:-1:-1;;;392:337:20:o;9751:1551:26:-;9947:4;9960:19;9981:11;9994;10009:15;:34;10044:11;10057:9;10009:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9959:108;;-1:-1:-1;9959:108:26;-1:-1:-1;9959:108:26;-1:-1:-1;10081:73:26;9959:108;10116:37;;10081:21;:73::i;:::-;10073:161;;;;-1:-1:-1;;;10073:161:26;;;;;;;:::i;:::-;10259:7;10248;:18;;10240:78;;;;-1:-1:-1;;;10240:78:26;;40503:2:33;10240:78:26;;;40485:21:33;40542:2;40522:18;;;40515:30;40581:34;40561:18;;;40554:62;-1:-1:-1;;;40632:18:33;;;40625:45;40687:19;;10240:78:26;40301:411:33;10240:78:26;10345:19;10332:9;:32;;;;;;;;:::i;:::-;;:70;;;-1:-1:-1;10381:21:26;10368:9;:34;;;;;;;;:::i;:::-;;10332:70;10324:101;;;;-1:-1:-1;;;10324:101:26;;;;;;;:::i;:::-;10448:19;10435:9;:32;;;;;;;;:::i;:::-;;10431:867;;10485:3;10492:1;10485:8;10477:103;;;;-1:-1:-1;;;10477:103:26;;40919:2:33;10477:103:26;;;40901:21:33;40958:2;40938:18;;;40931:30;40997:34;40977:18;;;40970:62;41068:34;41048:18;;;41041:62;-1:-1:-1;;;41119:19:33;;;41112:49;41178:19;;10477:103:26;40717:486:33;10477:103:26;10596:3;10603:1;10596:8;10588:103;;;;-1:-1:-1;;;10588:103:26;;;;;;;:::i;:::-;10922:35;144:10:19;10922:3:26;:35;:::i;:::-;10911:7;:46;:96;;;;-1:-1:-1;10972:35:26;144:10:19;10972:3:26;:35;:::i;:::-;10961:7;:46;10911:96;10904:103;;;;;;;10431:867;11036:3;11043:1;11036:8;11028:104;;;;-1:-1:-1;;;11028:104:26;;41410:2:33;11028:104:26;;;41392:21:33;41449:2;41429:18;;;41422:30;41488:34;41468:18;;;41461:62;41559:34;41539:18;;;41532:62;-1:-1:-1;;;41610:19:33;;;41603:50;41670:19;;11028:104:26;41208:487:33;11028:104:26;11148:3;11155:1;11148:8;11140:104;;;;-1:-1:-1;;;11140:104:26;;;;;;;:::i;:::-;11270:3;11259:7;:14;:32;;;;-1:-1:-1;11277:14:26;;;-1:-1:-1;;;9751:1551:26;;;;;;;;:::o;19656:559::-;19804:4;19817:32;19851:30;19885:15;:37;19923:11;19936:9;19885:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19885:61:26;;;;;;;;;;;;:::i;:::-;19816:130;;;;19978:22;19956:11;:18;:44;19952:77;;20017:5;20010:12;;;;;;19952:77;20039:9;20034:160;20058:22;20054:1;:26;20034:160;;;20100:55;20119:11;20131:1;20119:14;;;;;;;;:::i;:::-;;;;;;;20135:16;20152:1;20135:19;;;;;;;;:::i;:::-;;;;;;;234::24;;;;;;;211;;;;;;;;;;:42;;119:139;20100:55:26;20095:93;;20174:5;20167:12;;;;;;;20095:93;20082:3;;20034:160;;;-1:-1:-1;20206:4:26;;19656:559;-1:-1:-1;;;;;;19656:559:26:o;262:101:24:-;338:15;:20;;262:101::o;8612:1135:26:-;8792:4;8805:19;8826:11;8839;8854:15;:34;8889:11;8902:9;8854:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8804:108;;-1:-1:-1;8804:108:26;-1:-1:-1;8804:108:26;-1:-1:-1;8926:73:26;8804:108;8961:37;;8926:21;:73::i;:::-;8918:161;;;;-1:-1:-1;;;8918:161:26;;;;;;;:::i;:::-;9106:19;9093:9;:32;;;;;;;;:::i;:::-;;:70;;;-1:-1:-1;9142:21:26;9129:9;:34;;;;;;;;:::i;:::-;;9093:70;9085:101;;;;-1:-1:-1;;;9085:101:26;;;;;;;:::i;:::-;9209:19;9196:9;:32;;;;;;;;:::i;:::-;;9192:551;;9246:8;;9238:91;;;;-1:-1:-1;;;9238:91:26;;43080:2:33;9238:91:26;;;43062:21:33;43119:2;43099:18;;;43092:30;43158:34;43138:18;;;43131:62;43229:34;43209:18;;;43202:62;-1:-1:-1;;;43280:19:33;;;43273:37;43327:19;;9238:91:26;42878:474:33;9238:91:26;9559:35;144:10:19;9559:3:26;:35;:::i;9192:551::-;9623:8;;9615:92;;;;-1:-1:-1;;;9615:92:26;;43559:2:33;9615:92:26;;;43541:21:33;43598:2;43578:18;;;43571:30;43637:34;43617:18;;;43610:62;43708:34;43688:18;;;43681:62;-1:-1:-1;;;43759:19:33;;;43752:38;43807:19;;9615:92:26;43357:475:33;9615:92:26;-1:-1:-1;9722:14:26;;;-1:-1:-1;9715:21:26;;-1:-1:-1;9715:21:26;27128:210;27191:7;27225:28;;;:18;:28;;;;;;-1:-1:-1;;;;;27225:28:26;;27259:53;;;;-1:-1:-1;;;27259:53:26;;44039:2:33;27259:53:26;;;44021:21:33;44078:2;44058:18;;;44051:30;-1:-1:-1;;;44097:18:33;;;44090:48;44155:18;;27259:53:26;43837:342:33;27342:214:26;27436:12;;:66;;-1:-1:-1;;;27436:66:26;;:12;:66;;;37063:25:33;37104:18;;;37097:34;;;-1:-1:-1;;;;;27436:12:26;;;;:24;;37036:18:33;;27436:66:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27421:130;;;;-1:-1:-1;;;27421:130:26;;44386:2:33;27421:130:26;;;44368:21:33;44425:2;44405:18;;;44398:30;44464:34;44444:18;;;44437:62;-1:-1:-1;;;44515:18:33;;;44508:31;44556:19;;27421:130:26;44184:397:33;27560:194:26;27646:12;;;:58;;-1:-1:-1;;;27646:58:26;;;;;37063:25:33;;;;37104:18;;;37097:34;;;-1:-1:-1;;;;;27646:12:26;;:24;;37036:18:33;;27646:58:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27631:118;;;;-1:-1:-1;;;27631:118:26;;44788:2:33;27631:118:26;;;44770:21:33;44827:2;44807:18;;;44800:30;44866:31;44846:18;;;44839:59;44915:18;;27631:118:26;44586:353:33;3388:300:26;3506:4;3518:28;3557:12;1072:1:19;3557:44:26;;;;;;;;:::i;:::-;;;;;;;3549:53;;3518:84;;3615:68;3637:20;3659:23;3615:21;:68::i;26321:803::-;26453:14;;26477:458;26501:32;;;;:11;:32;:::i;:::-;:39;;26497:1;:43;26477:458;;;26635:28;26792:1;26666:122;26699:27;:11;;:27;:::i;:::-;26727:6;;26743:32;;;;:11;:32;:::i;:::-;26776:1;26743:35;;;;;;;:::i;:::-;;;;;;;26734:6;:44;;;;:::i;:::-;26699:80;;;;;;;:::i;:::-;26682:98;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;26682:98:26;;;;;;;;;;26666:122;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:127;;26635:158;;26833:16;26850:1;26833:19;;;;;;;;:::i;:::-;;;;;;;26809:20;:43;26801:74;;;;-1:-1:-1;;;26801:74:26;;45764:2:33;26801:74:26;;;45746:21:33;45803:2;45783:18;;;45776:30;-1:-1:-1;;;45822:18:33;;;45815:48;45880:18;;26801:74:26;45562:342:33;26801:74:26;26893:32;;;;:11;:32;:::i;:::-;26926:1;26893:35;;;;;;;:::i;:::-;;;;;;;26883:45;;;;;:::i;:::-;;-1:-1:-1;;26542:3:26;;26477:458;;;-1:-1:-1;27049:27:26;:11;;:27;:::i;:::-;:34;;27039:6;:44;27031:88;;;;-1:-1:-1;;;27031:88:26;;46111:2:33;27031:88:26;;;46093:21:33;46150:2;46130:18;;;46123:30;46189:33;46169:18;;;46162:61;46240:18;;27031:88:26;45909:355:33;14:118;100:5;93:13;86:21;79:5;76:32;66:60;;122:1;119;112:12;137:241;193:6;246:2;234:9;225:7;221:23;217:32;214:52;;;262:1;259;252:12;214:52;301:9;288:23;320:28;342:5;320:28;:::i;383:159::-;447:5;492:2;483:6;478:3;474:16;470:25;467:45;;;508:1;505;498:12;467:45;-1:-1:-1;530:6:33;383:159;-1:-1:-1;383:159:33:o;547:365::-;638:6;691:2;679:9;670:7;666:23;662:32;659:52;;;707:1;704;697:12;659:52;747:9;734:23;-1:-1:-1;;;;;772:6:33;769:30;766:50;;;812:1;809;802:12;766:50;835:71;898:7;889:6;878:9;874:22;835:71;:::i;917:131::-;-1:-1:-1;;;;;992:31:33;;982:42;;972:70;;1038:1;1035;1028:12;1053:247;1112:6;1165:2;1153:9;1144:7;1140:23;1136:32;1133:52;;;1181:1;1178;1171:12;1133:52;1220:9;1207:23;1239:31;1264:5;1239:31;:::i;1305:162::-;1371:5;1416:3;1407:6;1402:3;1398:16;1394:26;1391:46;;;1433:1;1430;1423:12;1472:742;1615:6;1623;1631;1684:2;1672:9;1663:7;1659:23;1655:32;1652:52;;;1700:1;1697;1690:12;1652:52;1745:23;;;-1:-1:-1;1843:2:33;1828:18;;1815:32;-1:-1:-1;;;;;1859:30:33;;1856:50;;;1902:1;1899;1892:12;1856:50;1925:71;1988:7;1979:6;1968:9;1964:22;1925:71;:::i;:::-;1915:81;;;2049:2;2038:9;2034:18;2021:32;-1:-1:-1;;;;;2068:8:33;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;2133:75;2200:7;2189:8;2178:9;2174:24;2133:75;:::i;:::-;2123:85;;;1472:742;;;;;:::o;2411:114::-;2495:4;2488:5;2484:16;2477:5;2474:27;2464:55;;2515:1;2512;2505:12;2530:759;2671:6;2679;2687;2740:2;2728:9;2719:7;2715:23;2711:32;2708:52;;;2756:1;2753;2746:12;2708:52;2795:9;2782:23;2814:29;2837:5;2814:29;:::i;:::-;2862:5;-1:-1:-1;2918:2:33;2903:18;;2890:32;-1:-1:-1;;;;;2934:30:33;;2931:50;;;2977:1;2974;2967:12;3294:863;3446:6;3454;3462;3470;3523:3;3511:9;3502:7;3498:23;3494:33;3491:53;;;3540:1;3537;3530:12;3491:53;3585:23;;;-1:-1:-1;3705:2:33;3690:18;;3677:32;;-1:-1:-1;3786:2:33;3771:18;;3758:32;-1:-1:-1;;;;;3802:30:33;;3799:50;;;3845:1;3842;3835:12;3799:50;3868:71;3931:7;3922:6;3911:9;3907:22;3868:71;:::i;:::-;3858:81;;;3992:2;3981:9;3977:18;3964:32;-1:-1:-1;;;;;4011:8:33;4008:32;4005:52;;;4053:1;4050;4043:12;4005:52;4076:75;4143:7;4132:8;4121:9;4117:24;4076:75;:::i;:::-;4066:85;;;3294:863;;;;;;;:::o;4344:127::-;4405:10;4400:3;4396:20;4393:1;4386:31;4436:4;4433:1;4426:15;4460:4;4457:1;4450:15;4476:255;4548:2;4542:9;4590:6;4578:19;;-1:-1:-1;;;;;4612:34:33;;4648:22;;;4609:62;4606:88;;;4674:18;;:::i;:::-;4710:2;4703:22;4476:255;:::o;4736:275::-;4807:2;4801:9;4872:2;4853:13;;-1:-1:-1;;4849:27:33;4837:40;;-1:-1:-1;;;;;4892:34:33;;4928:22;;;4889:62;4886:88;;;4954:18;;:::i;:::-;4990:2;4983:22;4736:275;;-1:-1:-1;4736:275:33:o;5016:182::-;5075:4;-1:-1:-1;;;;;5100:6:33;5097:30;5094:56;;;5130:18;;:::i;:::-;-1:-1:-1;5175:1:33;5171:14;5187:4;5167:25;;5016:182::o;5203:187::-;5252:4;-1:-1:-1;;;;;5277:6:33;5274:30;5271:56;;;5307:18;;:::i;:::-;-1:-1:-1;5373:2:33;5352:15;-1:-1:-1;;5348:29:33;5379:4;5344:40;;5203:187::o;5395:1769::-;5530:6;5538;5591:2;5579:9;5570:7;5566:23;5562:32;5559:52;;;5607:1;5604;5597:12;5559:52;5647:9;5634:23;-1:-1:-1;;;;;5672:6:33;5669:30;5666:50;;;5712:1;5709;5702:12;5666:50;5735:22;;5788:4;5780:13;;5776:27;-1:-1:-1;5766:55:33;;5817:1;5814;5807:12;5766:55;5857:2;5844:16;5880:63;5896:46;5935:6;5896:46;:::i;:::-;5880:63;:::i;:::-;5965:3;5989:6;5984:3;5977:19;6021:4;6016:3;6012:14;6005:21;;6078:4;6068:6;6065:1;6061:14;6057:2;6053:23;6049:34;6035:48;;6106:7;6098:6;6095:19;6092:39;;;6127:1;6124;6117:12;6092:39;6159:4;6155:2;6151:13;6173:749;6189:6;6184:3;6181:15;6173:749;;;6277:3;6264:17;-1:-1:-1;;;;;6300:11:33;6297:35;6294:55;;;6345:1;6342;6335:12;6294:55;6372:20;;6427:2;6419:11;;6415:25;-1:-1:-1;6405:53:33;;6454:1;6451;6444:12;6405:53;6508:4;6504:2;6500:13;6487:27;6542:55;6558:38;6587:8;6558:38;:::i;6542:55::-;6610:25;;;6654:39;6662:17;;;6654:39;6651:52;-1:-1:-1;6648:72:33;;;6716:1;6713;6706:12;6648:72;6779:8;6774:2;6770;6766:11;6759:4;6750:7;6746:18;6733:55;6843:1;6836:4;6825:8;6816:7;6812:22;6808:33;6801:44;6870:7;6865:3;6858:20;;;;6907:4;6902:3;6898:14;6891:21;;6215:4;6210:3;6206:14;6199:21;;6173:749;;;-1:-1:-1;6941:5:33;-1:-1:-1;;;;6999:4:33;6984:20;;6971:34;-1:-1:-1;;;;;7017:32:33;;7014:52;;;7062:1;7059;7052:12;7014:52;7085:73;7150:7;7139:8;7128:9;7124:24;7085:73;:::i;:::-;7075:83;;;5395:1769;;;;;:::o;7169:180::-;7228:6;7281:2;7269:9;7260:7;7256:23;7252:32;7249:52;;;7297:1;7294;7287:12;7249:52;-1:-1:-1;7320:23:33;;7169:180;-1:-1:-1;7169:180:33:o;7562:367::-;7625:8;7635:6;7689:3;7682:4;7674:6;7670:17;7666:27;7656:55;;7707:1;7704;7697:12;7656:55;-1:-1:-1;7730:20:33;;-1:-1:-1;;;;;7762:30:33;;7759:50;;;7805:1;7802;7795:12;7759:50;7842:4;7834:6;7830:17;7818:29;;7902:3;7895:4;7885:6;7882:1;7878:14;7870:6;7866:27;7862:38;7859:47;7856:67;;;7919:1;7916;7909:12;7856:67;7562:367;;;;;:::o;7934:348::-;7986:8;7996:6;8050:3;8043:4;8035:6;8031:17;8027:27;8017:55;;8068:1;8065;8058:12;8017:55;-1:-1:-1;8091:20:33;;-1:-1:-1;;;;;8123:30:33;;8120:50;;;8166:1;8163;8156:12;8120:50;8203:4;8195:6;8191:17;8179:29;;8255:3;8248:4;8239:6;8231;8227:19;8223:30;8220:39;8217:59;;;8272:1;8269;8262:12;8287:1047;8415:6;8423;8431;8439;8447;8455;8508:2;8496:9;8487:7;8483:23;8479:32;8476:52;;;8524:1;8521;8514:12;8476:52;8564:9;8551:23;-1:-1:-1;;;;;8589:6:33;8586:30;8583:50;;;8629:1;8626;8619:12;8583:50;8668:70;8730:7;8721:6;8710:9;8706:22;8668:70;:::i;:::-;8757:8;;-1:-1:-1;8642:96:33;-1:-1:-1;;8845:2:33;8830:18;;8817:32;-1:-1:-1;;;;;8861:32:33;;8858:52;;;8906:1;8903;8896:12;8858:52;8945:61;8998:7;8987:8;8976:9;8972:24;8945:61;:::i;:::-;9025:8;;-1:-1:-1;8919:87:33;-1:-1:-1;;9113:2:33;9098:18;;9085:32;-1:-1:-1;;;;;9129:32:33;;9126:52;;;9174:1;9171;9164:12;9126:52;9213:61;9266:7;9255:8;9244:9;9240:24;9213:61;:::i;:::-;8287:1047;;;;-1:-1:-1;8287:1047:33;;-1:-1:-1;8287:1047:33;;9293:8;;8287:1047;-1:-1:-1;;;8287:1047:33:o;9339:437::-;9425:6;9433;9486:2;9474:9;9465:7;9461:23;9457:32;9454:52;;;9502:1;9499;9492:12;9454:52;9542:9;9529:23;-1:-1:-1;;;;;9567:6:33;9564:30;9561:50;;;9607:1;9604;9597:12;9561:50;9646:70;9708:7;9699:6;9688:9;9684:22;9646:70;:::i;:::-;9735:8;;9620:96;;-1:-1:-1;9339:437:33;-1:-1:-1;;;;9339:437:33:o;9781:289::-;9823:3;9861:5;9855:12;9888:6;9883:3;9876:19;9944:6;9937:4;9930:5;9926:16;9919:4;9914:3;9910:14;9904:47;9996:1;9989:4;9980:6;9975:3;9971:16;9967:27;9960:38;10059:4;10052:2;10048:7;10043:2;10035:6;10031:15;10027:29;10022:3;10018:39;10014:50;10007:57;;;9781:289;;;;:::o;10075:492::-;10260:2;10249:9;10242:21;10335:1;10331;10326:3;10322:11;10318:19;10309:6;10303:13;10299:39;10294:2;10283:9;10279:18;10272:67;10393:2;10385:6;10381:15;10375:22;10370:2;10359:9;10355:18;10348:50;10223:4;10445:2;10437:6;10433:15;10427:22;10487:4;10480;10469:9;10465:20;10458:34;10509:52;10556:3;10545:9;10541:19;10527:12;10509:52;:::i;10572:768::-;10694:6;10702;10710;10718;10771:2;10759:9;10750:7;10746:23;10742:32;10739:52;;;10787:1;10784;10777:12;10739:52;10827:9;10814:23;-1:-1:-1;;;;;10852:6:33;10849:30;10846:50;;;10892:1;10889;10882:12;10846:50;10931:70;10993:7;10984:6;10973:9;10969:22;10931:70;:::i;:::-;11020:8;;-1:-1:-1;10905:96:33;-1:-1:-1;;11108:2:33;11093:18;;11080:32;-1:-1:-1;;;;;11124:32:33;;11121:52;;;11169:1;11166;11159:12;11121:52;11208:72;11272:7;11261:8;11250:9;11246:24;11208:72;:::i;:::-;10572:768;;;;-1:-1:-1;11299:8:33;-1:-1:-1;;;;10572:768:33:o;11576:112::-;11662:1;11655:5;11652:12;11642:40;;11678:1;11675;11668:12;11693:954;11872:6;11880;11888;11896;11949:3;11937:9;11928:7;11924:23;11920:33;11917:53;;;11966:1;11963;11956:12;11917:53;12005:9;11992:23;12024:42;12060:5;12024:42;:::i;:::-;12085:5;-1:-1:-1;12142:2:33;12127:18;;12114:32;12155:44;12114:32;12155:44;:::i;:::-;12218:7;-1:-1:-1;12276:2:33;12261:18;;12248:32;-1:-1:-1;;;;;12292:30:33;;12289:50;;;12335:1;12332;12325:12;12652:897;12800:6;12808;12816;12824;12877:3;12865:9;12856:7;12852:23;12848:33;12845:53;;;12894:1;12891;12884:12;12845:53;12933:9;12920:23;12952:29;12975:5;12952:29;:::i;:::-;13000:5;-1:-1:-1;13057:2:33;13042:18;;13029:32;13070:31;13029:32;13070:31;:::i;13554:403::-;13657:6;13710:2;13698:9;13689:7;13685:23;13681:32;13678:52;;;13726:1;13723;13716:12;13678:52;13766:9;13753:23;-1:-1:-1;;;;;13791:6:33;13788:30;13785:50;;;13831:1;13828;13821:12;13785:50;13854:22;;13910:2;13892:16;;;13888:25;13885:45;;;13926:1;13923;13916:12;14225:494;14322:6;14330;14383:2;14371:9;14362:7;14358:23;14354:32;14351:52;;;14399:1;14396;14389:12;14351:52;14439:9;14426:23;-1:-1:-1;;;;;14464:6:33;14461:30;14458:50;;;14504:1;14501;14494:12;14458:50;14527:71;14590:7;14581:6;14570:9;14566:22;14527:71;:::i;:::-;14517:81;;;14648:2;14637:9;14633:18;14620:32;14661:28;14683:5;14661:28;:::i;:::-;14708:5;14698:15;;;14225:494;;;;;:::o;14724:1698::-;14917:2;14906:9;14899:21;14880:4;14955:6;14949:13;14998:6;14993:2;14982:9;14978:18;14971:34;15028:52;15075:3;15064:9;15060:19;15046:12;15028:52;:::i;:::-;15014:66;;15129:2;15121:6;15117:15;15111:22;15201:2;15197:7;15185:9;15177:6;15173:22;15169:36;15164:2;15153:9;15149:18;15142:64;15229:41;15263:6;15247:14;15229:41;:::i;:::-;15215:55;;;15319:2;15311:6;15307:15;15301:22;15391:2;15387:7;15375:9;15367:6;15363:22;15359:36;15354:2;15343:9;15339:18;15332:64;15419:41;15453:6;15437:14;15419:41;:::i;:::-;15405:55;;;15509:2;15501:6;15497:15;15491:22;15582:2;15578:7;15566:9;15558:6;15554:22;15550:36;15544:3;15533:9;15529:19;15522:65;15610:41;15644:6;15628:14;15610:41;:::i;:::-;15596:55;;;15700:3;15692:6;15688:16;15682:23;15774:2;15770:7;15758:9;15750:6;15746:22;15742:36;15736:3;15725:9;15721:19;15714:65;15802:41;15836:6;15820:14;15802:41;:::i;:::-;15788:55;;;15892:3;15884:6;15880:16;15874:23;15966:2;15962:7;15950:9;15942:6;15938:22;15934:36;15928:3;15917:9;15913:19;15906:65;15994:41;16028:6;16012:14;15994:41;:::i;:::-;15980:55;;;16084:3;16076:6;16072:16;16066:23;16158:2;16154:7;16142:9;16134:6;16130:22;16126:36;16120:3;16109:9;16105:19;16098:65;16186:41;16220:6;16204:14;16186:41;:::i;:::-;16172:55;;;16276:3;16268:6;16264:16;16258:23;16353:2;16349:7;16337:9;16329:6;16325:22;16321:36;16312:6;16301:9;16297:22;16290:68;16375:41;16409:6;16393:14;16375:41;:::i;16427:350::-;16629:2;16611:21;;;16668:2;16648:18;;;16641:30;16707:28;16702:2;16687:18;;16680:56;16768:2;16753:18;;16427:350::o;16782:266::-;16870:6;16865:3;16858:19;16922:6;16915:5;16908:4;16903:3;16899:14;16886:43;-1:-1:-1;16974:1:33;16949:16;;;16967:4;16945:27;;;16938:38;;;;17030:2;17009:15;;;-1:-1:-1;;17005:29:33;16996:39;;;16992:50;;16782:266::o;17053:311::-;17141:19;;;17123:3;-1:-1:-1;;;;;17172:31:33;;17169:51;;;17216:1;17213;17206:12;17169:51;17252:6;17249:1;17245:14;17304:8;17297:5;17290:4;17285:3;17281:14;17268:45;17333:18;;;;17353:4;17329:29;;17053:311;-1:-1:-1;;;17053:311:33:o;17369:1172::-;17432:3;17489:5;17476:19;17550:2;17546:7;17538:5;17522:14;17518:26;17514:40;17597:2;17577:18;17573:27;17563:55;;17614:1;17611;17604:12;17563:55;17753:4;17642:30;;;17740:18;;;;17695:21;-1:-1:-1;;;;;17770:30:33;;17767:50;;;17813:1;17810;17803:12;17767:50;17862:6;17846:14;17842:27;17833:7;17829:41;17826:61;;;17883:1;17880;17873:12;17826:61;17908:4;17903:3;17896:17;17934:58;17986:4;17981:3;17977:14;17969:6;17960:7;17934:58;:::i;:::-;17922:70;;;18053:4;18046:5;18042:16;18029:30;18104:2;18082:20;18078:29;18068:57;;18121:1;18118;18111:12;18068:57;18149:32;;18264:4;18251:18;;;-1:-1:-1;18206:21:33;-1:-1:-1;;;;;18281:32:33;;18278:52;;;18326:1;18323;18316:12;18278:52;18382:8;18379:1;18375:16;18359:14;18355:37;18346:7;18342:51;18339:71;;;18406:1;18403;18396:12;18339:71;18452:3;18446:4;18442:14;18435:4;18430:3;18426:14;18419:38;18473:62;18530:4;18520:8;18511:7;18473:62;:::i;:::-;18466:69;17369:1172;-1:-1:-1;;;;;;17369:1172:33:o;18546:291::-;18745:2;18734:9;18727:21;18708:4;18765:66;18827:2;18816:9;18812:18;18804:6;18765:66;:::i;18842:230::-;18912:6;18965:2;18953:9;18944:7;18940:23;18936:32;18933:52;;;18981:1;18978;18971:12;18933:52;-1:-1:-1;19026:16:33;;18842:230;-1:-1:-1;18842:230:33:o;19482:490::-;19566:6;19574;19582;19635:2;19623:9;19614:7;19610:23;19606:32;19603:52;;;19651:1;19648;19641:12;19603:52;19696:16;;19781:2;19766:18;;19760:25;19696:16;;-1:-1:-1;19794:31:33;19760:25;19794:31;:::i;:::-;19896:2;19881:18;;19875:25;19844:7;;-1:-1:-1;19909:31:33;19875:25;19909:31;:::i;:::-;19959:7;19949:17;;;19482:490;;;;;:::o;19977:479::-;20179:2;20161:21;;;20218:2;20198:18;;;20191:30;20257:34;20252:2;20237:18;;20230:62;20328:34;20323:2;20308:18;;20301:62;-1:-1:-1;;;20394:3:33;20379:19;;20372:42;20446:3;20431:19;;19977:479::o;21610:127::-;21671:10;21666:3;21662:20;21659:1;21652:31;21702:4;21699:1;21692:15;21726:4;21723:1;21716:15;21742:151;21832:4;21825:12;;;21811;;;21807:31;;21850:14;;21847:40;;;21867:18;;:::i;21898:273::-;22083:6;22075;22070:3;22057:33;22039:3;22109:16;;22134:13;;;22109:16;21898:273;-1:-1:-1;21898:273:33:o;22176:301::-;22305:3;22343:6;22337:13;22389:6;22382:4;22374:6;22370:17;22365:3;22359:37;22451:1;22415:16;;22440:13;;;-1:-1:-1;22415:16:33;22176:301;-1:-1:-1;22176:301:33:o;22482:127::-;22543:10;22538:3;22534:20;22531:1;22524:31;22574:4;22571:1;22564:15;22598:4;22595:1;22588:15;22614:514;22667:5;22720:3;22713:4;22705:6;22701:17;22697:27;22687:55;;22738:1;22735;22728:12;22687:55;22771:6;22765:13;22810:4;22802:6;22798:17;22839:1;22860:53;22876:36;22905:6;22876:36;:::i;22860:53::-;22849:64;;22938:6;22929:7;22922:23;22978:3;22969:6;22964:3;22960:16;22957:25;22954:45;;;22995:1;22992;22985:12;22954:45;23039:6;23034:3;23027:4;23018:7;23014:18;23008:38;23095:1;23066:20;;;23088:4;23062:31;23055:42;;;;-1:-1:-1;23070:7:33;22614:514;-1:-1:-1;;;22614:514:33:o;23133:335::-;23212:6;23265:2;23253:9;23244:7;23240:23;23236:32;23233:52;;;23281:1;23278;23271:12;23233:52;23314:9;23308:16;-1:-1:-1;;;;;23339:6:33;23336:30;23333:50;;;23379:1;23376;23369:12;23333:50;23402:60;23454:7;23445:6;23434:9;23430:22;23402:60;:::i;23473:226::-;23628:2;23617:9;23610:21;23591:4;23648:45;23689:2;23678:9;23674:18;23666:6;23648:45;:::i;23704:577::-;23802:6;23810;23818;23871:2;23859:9;23850:7;23846:23;23842:32;23839:52;;;23887:1;23884;23877:12;23839:52;23919:9;23913:16;23938:31;23963:5;23938:31;:::i;:::-;24059:2;24044:18;;24038:25;24133:2;24118:18;;24112:25;23988:5;;-1:-1:-1;24038:25:33;-1:-1:-1;;;;;;24149:30:33;;24146:50;;;24192:1;24189;24182:12;24146:50;24215:60;24267:7;24258:6;24247:9;24243:22;24215:60;:::i;24286:128::-;24353:9;;;24374:11;;;24371:37;;;24388:18;;:::i;24419:125::-;24484:9;;;24505:10;;;24502:36;;;24518:18;;:::i;24549:782::-;24691:6;24699;24707;24715;24723;24776:3;24764:9;24755:7;24751:23;24747:33;24744:53;;;24793:1;24790;24783:12;24744:53;24838:16;;24923:2;24908:18;;24902:25;24838:16;;-1:-1:-1;24958:1:33;24946:14;;24936:42;;24974:1;24971;24964:12;24936:42;25070:2;25055:18;;25049:25;25166:2;25151:18;;25145:25;25241:3;25226:19;;25220:26;24997:7;;-1:-1:-1;25049:25:33;;-1:-1:-1;25145:25:33;-1:-1:-1;25255:44:33;25220:26;25255:44;:::i;:::-;25318:7;25308:17;;;24549:782;;;;;;;;:::o;25336:127::-;25397:10;25392:3;25388:20;25385:1;25378:31;25428:4;25425:1;25418:15;25452:4;25449:1;25442:15;25468:148;25556:4;25535:12;;;25549;;;25531:31;;25574:13;;25571:39;;;25590:18;;:::i;27785:339::-;27893:4;27951:11;27938:25;28045:2;28041:7;28030:8;28014:14;28010:29;28006:43;27986:18;27982:68;27972:96;;28064:1;28061;28054:12;27972:96;28085:33;;;;;27785:339;-1:-1:-1;;27785:339:33:o;28129:545::-;28222:4;28228:6;28288:11;28275:25;28382:2;28378:7;28367:8;28351:14;28347:29;28343:43;28323:18;28319:68;28309:96;;28401:1;28398;28391:12;28309:96;28428:33;;28480:20;;;-1:-1:-1;;;;;;28512:30:33;;28509:50;;;28555:1;28552;28545:12;28509:50;28588:4;28576:17;;-1:-1:-1;28639:1:33;28635:14;;;28619;28615:35;28605:46;;28602:66;;;28664:1;28661;28654:12;28679:332;28779:4;28837:11;28824:25;28931:3;28927:8;28916;28900:14;28896:29;28892:44;28872:18;28868:69;28858:97;;28951:1;28948;28941:12;29436:522;29514:4;29520:6;29580:11;29567:25;29674:2;29670:7;29659:8;29643:14;29639:29;29635:43;29615:18;29611:68;29601:96;;29693:1;29690;29683:12;29601:96;29720:33;;29772:20;;;-1:-1:-1;;;;;;29804:30:33;;29801:50;;;29847:1;29844;29837:12;29801:50;29880:4;29868:17;;-1:-1:-1;29911:14:33;29907:27;;;29897:38;;29894:58;;;29948:1;29945;29938:12;30315:355;30436:9;30447;30489:8;30477:10;30474:24;30471:44;;;30511:1;30508;30501:12;30471:44;30540:6;30530:8;30527:20;30524:40;;;30560:1;30557;30550:12;30524:40;-1:-1:-1;;30602:1:33;30598:18;;;30586:31;;30639:25;;;;;-1:-1:-1;30315:355:33:o;30675:329::-;30773:4;30831:11;30818:25;30925:2;30921:7;30910:8;30894:14;30890:29;30886:43;30866:18;30862:68;30852:96;;30944:1;30941;30934:12;33312:475;33557:2;33546:9;33539:21;33520:4;33583:61;33640:2;33629:9;33625:18;33617:6;33609;33583:61;:::i;:::-;33692:9;33684:6;33680:22;33675:2;33664:9;33660:18;33653:50;33720:61;33774:6;33766;33758;33720:61;:::i;:::-;33712:69;33312:475;-1:-1:-1;;;;;;;33312:475:33:o;33792:245::-;33859:6;33912:2;33900:9;33891:7;33887:23;33883:32;33880:52;;;33928:1;33925;33918:12;33880:52;33960:9;33954:16;33979:28;34001:5;33979:28;:::i;34042:553::-;34139:6;34147;34200:2;34188:9;34179:7;34175:23;34171:32;34168:52;;;34216:1;34213;34206:12;34168:52;34249:9;34243:16;-1:-1:-1;;;;;34274:6:33;34271:30;34268:50;;;34314:1;34311;34304:12;34268:50;34337:60;34389:7;34380:6;34369:9;34365:22;34337:60;:::i;:::-;34327:70;;;34443:2;34432:9;34428:18;34422:25;-1:-1:-1;;;;;34462:8:33;34459:32;34456:52;;;34504:1;34501;34494:12;34456:52;34527:62;34581:7;34570:8;34559:9;34555:24;34527:62;:::i;34600:307::-;34777:2;34766:9;34759:21;34740:4;34797:45;34838:2;34827:9;34823:18;34815:6;34797:45;:::i;:::-;34789:53;;34892:6;34885:14;34878:22;34873:2;34862:9;34858:18;34851:50;34600:307;;;;;:::o;34912:1972::-;35014:6;35067:2;35055:9;35046:7;35042:23;35038:32;35035:52;;;35083:1;35080;35073:12;35035:52;35116:9;35110:16;-1:-1:-1;;;;;35141:6:33;35138:30;35135:50;;;35181:1;35178;35171:12;35135:50;35204:22;;35260:6;35242:16;;;35238:29;35235:49;;;35280:1;35277;35270:12;35235:49;35306:22;;:::i;:::-;35359:2;35353:9;-1:-1:-1;;;;;35377:8:33;35374:32;35371:52;;;35419:1;35416;35409:12;35371:52;35446:55;35493:7;35482:8;35478:2;35474:17;35446:55;:::i;:::-;35439:5;35432:70;;35541:2;35537;35533:11;35527:18;-1:-1:-1;;;;;35560:8:33;35557:32;35554:52;;;35602:1;35599;35592:12;35554:52;35638:55;35685:7;35674:8;35670:2;35666:17;35638:55;:::i;:::-;35633:2;35626:5;35622:14;35615:79;;35733:2;35729;35725:11;35719:18;-1:-1:-1;;;;;35752:8:33;35749:32;35746:52;;;35794:1;35791;35784:12;35746:52;35830:55;35877:7;35866:8;35862:2;35858:17;35830:55;:::i;:::-;35825:2;35818:5;35814:14;35807:79;;35925:2;35921;35917:11;35911:18;-1:-1:-1;;;;;35944:8:33;35941:32;35938:52;;;35986:1;35983;35976:12;35938:52;36022:55;36069:7;36058:8;36054:2;36050:17;36022:55;:::i;:::-;36017:2;36010:5;36006:14;35999:79;;36117:3;36113:2;36109:12;36103:19;-1:-1:-1;;;;;36137:8:33;36134:32;36131:52;;;36179:1;36176;36169:12;36131:52;36216:55;36263:7;36252:8;36248:2;36244:17;36216:55;:::i;:::-;36210:3;36203:5;36199:15;36192:80;;36311:3;36307:2;36303:12;36297:19;-1:-1:-1;;;;;36331:8:33;36328:32;36325:52;;;36373:1;36370;36363:12;36325:52;36410:55;36457:7;36446:8;36442:2;36438:17;36410:55;:::i;:::-;36404:3;36397:5;36393:15;36386:80;;36505:3;36501:2;36497:12;36491:19;-1:-1:-1;;;;;36525:8:33;36522:32;36519:52;;;36567:1;36564;36557:12;36519:52;36604:55;36651:7;36640:8;36636:2;36632:17;36604:55;:::i;:::-;36598:3;36591:5;36587:15;36580:80;;36699:3;36695:2;36691:12;36685:19;-1:-1:-1;;;;;36719:8:33;36716:32;36713:52;;;36761:1;36758;36751:12;36713:52;36798:55;36845:7;36834:8;36830:2;36826:17;36798:55;:::i;:::-;36792:3;36781:15;;36774:80;-1:-1:-1;36785:5:33;34912:1972;-1:-1:-1;;;;34912:1972:33:o;37502:529::-;37742:2;37731:9;37724:21;37705:4;37762:66;37824:2;37813:9;37809:18;37801:6;37762:66;:::i;:::-;37754:74;;37858:2;37850:6;37847:14;37837:145;;37904:10;37899:3;37895:20;37892:1;37885:31;37939:4;37936:1;37929:15;37967:4;37964:1;37957:15;37837:145;38018:6;38013:2;38002:9;37998:18;37991:34;37502:529;;;;;:::o;38036:456::-;38124:6;38132;38140;38193:2;38181:9;38172:7;38168:23;38164:32;38161:52;;;38209:1;38206;38199:12;38161:52;-1:-1:-1;;38254:16:33;;38360:2;38345:18;;38339:25;38456:2;38441:18;;;38435:25;38254:16;;38339:25;;-1:-1:-1;38435:25:33;38036:456;-1:-1:-1;38036:456:33:o;38971:342::-;39173:2;39155:21;;;39212:2;39192:18;;;39185:30;-1:-1:-1;;;39246:2:33;39231:18;;39224:48;39304:2;39289:18;;38971:342::o;39318:486::-;39520:2;39502:21;;;39559:2;39539:18;;;39532:30;39598:34;39593:2;39578:18;;39571:62;39669:34;39664:2;39649:18;;39642:62;-1:-1:-1;;;39735:3:33;39720:19;;39713:49;39794:3;39779:19;;39318:486::o;39809:487::-;40011:2;39993:21;;;40050:2;40030:18;;;40023:30;40089:34;40084:2;40069:18;;40062:62;40160:34;40155:2;40140:18;;40133:62;-1:-1:-1;;;40226:3:33;40211:19;;40204:50;40286:3;40271:19;;39809:487::o;41700:1173::-;41814:6;41822;41875:2;41863:9;41854:7;41850:23;41846:32;41843:52;;;41891:1;41888;41881:12;41843:52;41924:9;41918:16;-1:-1:-1;;;;;41949:6:33;41946:30;41943:50;;;41989:1;41986;41979:12;41943:50;42012:22;;42065:4;42057:13;;42053:27;-1:-1:-1;42043:55:33;;42094:1;42091;42084:12;42043:55;42127:2;42121:9;42150:63;42166:46;42205:6;42166:46;:::i;42150:63::-;42235:3;42259:6;42254:3;42247:19;42291:4;42286:3;42282:14;42275:21;;42348:4;42338:6;42335:1;42331:14;42327:2;42323:23;42319:34;42305:48;;42376:7;42368:6;42365:19;42362:39;;;42397:1;42394;42387:12;42362:39;42429:4;42425:2;42421:13;42443:308;42459:6;42454:3;42451:15;42443:308;;;42540:3;42534:10;-1:-1:-1;;;;;42563:11:33;42560:35;42557:55;;;42608:1;42605;42598:12;42557:55;42637:69;42698:7;42691:4;42677:11;42673:2;42669:20;42665:31;42637:69;:::i;:::-;42625:82;;-1:-1:-1;42736:4:33;42727:14;;;;42476;42443:308;;;-1:-1:-1;42837:4:33;42822:20;;;;42816:27;42770:5;;42816:27;;-1:-1:-1;;;;;;41700:1173:33:o;44944:331::-;45049:9;45060;45102:8;45090:10;45087:24;45084:44;;;45124:1;45121;45114:12;45084:44;45153:6;45143:8;45140:20;45137:40;;;45173:1;45170;45163:12;45137:40;-1:-1:-1;;45199:23:33;;;45244:25;;;;;-1:-1:-1;44944:331:33:o",
|
|
3063
3194
|
linkReferences: {
|
|
3064
3195
|
"src/InputsExtractor.sol": {
|
|
3065
3196
|
InputsExtractor: [
|
|
3066
|
-
{ start:
|
|
3067
|
-
{ start:
|
|
3068
|
-
{ start:
|
|
3069
|
-
{ start:
|
|
3070
|
-
{ start:
|
|
3071
|
-
{ start:
|
|
3072
|
-
{ start:
|
|
3073
|
-
{ start:
|
|
3074
|
-
{ start:
|
|
3075
|
-
{ start:
|
|
3076
|
-
{ start:
|
|
3077
|
-
{ start:
|
|
3078
|
-
{ start:
|
|
3197
|
+
{ start: 1590, length: 20 },
|
|
3198
|
+
{ start: 1911, length: 20 },
|
|
3199
|
+
{ start: 3348, length: 20 },
|
|
3200
|
+
{ start: 3471, length: 20 },
|
|
3201
|
+
{ start: 3987, length: 20 },
|
|
3202
|
+
{ start: 4825, length: 20 },
|
|
3203
|
+
{ start: 5434, length: 20 },
|
|
3204
|
+
{ start: 7419, length: 20 },
|
|
3205
|
+
{ start: 7542, length: 20 },
|
|
3206
|
+
{ start: 7862, length: 20 },
|
|
3207
|
+
{ start: 8405, length: 20 },
|
|
3208
|
+
{ start: 9207, length: 20 },
|
|
3209
|
+
{ start: 9483, length: 20 }
|
|
3079
3210
|
]
|
|
3080
3211
|
}
|
|
3081
3212
|
}
|
|
@@ -3107,7 +3238,7 @@ var ZKPassportVerifier_default = {
|
|
|
3107
3238
|
"isExpiryDateBeforeOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))": "8e2e2e62",
|
|
3108
3239
|
"isExpiryDateBetween(uint256,uint256,(bytes,uint256[]),(uint256,string,string,bool))": "3d6ed975",
|
|
3109
3240
|
"isExpiryDateEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))": "8b2ec611",
|
|
3110
|
-
"isFaceMatchVerified(uint8,uint8,(bytes,uint256[]))": "
|
|
3241
|
+
"isFaceMatchVerified(uint8,uint8,(bytes,uint256[]),(uint256,string,string,bool))": "c04fa6fe",
|
|
3111
3242
|
"isIssuingCountryIn(string[],(bytes,uint256[]))": "7e5a88f3",
|
|
3112
3243
|
"isIssuingCountryOut(string[],(bytes,uint256[]))": "5b7ab929",
|
|
3113
3244
|
"isNationalityIn(string[],(bytes,uint256[]))": "46b758a0",
|
|
@@ -3122,7 +3253,7 @@ var ZKPassportVerifier_default = {
|
|
|
3122
3253
|
"verifyScopes(bytes32[],string,string)": "847755e3",
|
|
3123
3254
|
"vkeyHashToVerifier(bytes32)": "8163f231"
|
|
3124
3255
|
},
|
|
3125
|
-
rawMetadata: '{"compiler":{"version":"0.8.29+commit.ab55807c"},"language":"Solidity","output":{"abi":[{"inputs":[{"internalType":"address","name":"_rootRegistry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"certificateRegistryRoot","type":"bytes32"}],"name":"CertificateRegistryRootAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"certificateRegistryRoot","type":"bytes32"}],"name":"CertificateRegistryRootRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"paused","type":"bool"}],"name":"PausedStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_sanctionsTreesRoot","type":"bytes32"}],"name":"SanctionsTreesRootUpdates","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"vkeyHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"verifier","type":"address"}],"name":"VerifierAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"vkeyHash","type":"bytes32"}],"name":"VerifierRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"ZKPassportVerifierDeployed","type":"event"},{"inputs":[],"name":"CERTIFICATE_REGISTRY_ID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CIRCUIT_REGISTRY_ID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SANCTIONS_REGISTRY_ID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"vkeyHashes","type":"bytes32[]"},{"internalType":"address[]","name":"verifiers","type":"address[]"}],"name":"addVerifiers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"enforceSanctionsRoot","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"getBoundData","outputs":[{"components":[{"internalType":"address","name":"senderAddress","type":"address"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"string","name":"customData","type":"string"}],"internalType":"struct BoundData","name":"boundData","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"internalType":"bool","name":"isIDCard","type":"bool"}],"name":"getDisclosedData","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"issuingCountry","type":"string"},{"internalType":"string","name":"nationality","type":"string"},{"internalType":"string","name":"gender","type":"string"},{"internalType":"string","name":"birthDate","type":"string"},{"internalType":"string","name":"expiryDate","type":"string"},{"internalType":"string","name":"documentNumber","type":"string"},{"internalType":"string","name":"documentType","type":"string"}],"internalType":"struct DisclosedData","name":"disclosedData","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint8","name":"minAge","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isAgeAbove","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"minAge","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isAgeAboveOrEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"maxAge","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isAgeBelow","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"maxAge","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isAgeBelowOrEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"minAge","type":"uint8"},{"internalType":"uint8","name":"maxAge","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isAgeBetween","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"age","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isAgeEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isBirthdateAfter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isBirthdateAfterOrEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isBirthdateBefore","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isBirthdateBeforeOrEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDate","type":"uint256"},{"internalType":"uint256","name":"maxDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isBirthdateBetween","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"date","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isBirthdateEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isExpiryDateAfter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isExpiryDateAfterOrEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isExpiryDateBefore","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isExpiryDateBeforeOrEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDate","type":"uint256"},{"internalType":"uint256","name":"maxDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isExpiryDateBetween","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"date","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isExpiryDateEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum FaceMatchMode","name":"faceMatchMode","type":"uint8"},{"internalType":"enum OS","name":"os","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"isFaceMatchVerified","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string[]","name":"countryList","type":"string[]"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"isIssuingCountryIn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string[]","name":"countryList","type":"string[]"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"isIssuingCountryOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string[]","name":"countryList","type":"string[]"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"isNationalityIn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string[]","name":"countryList","type":"string[]"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"isNationalityOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"vkeyHashes","type":"bytes32[]"}],"name":"removeVerifiers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rootRegistry","outputs":[{"internalType":"contract IRootRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"transferAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rootRegistry","type":"address"}],"name":"updateRootRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"bytes32","name":"vkeyHash","type":"bytes32"},{"internalType":"bytes","name":"proof","type":"bytes"},{"internalType":"bytes32[]","name":"publicInputs","type":"bytes32[]"}],"internalType":"struct ProofVerificationData","name":"proofVerificationData","type":"tuple"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"internalType":"struct ProofVerificationParams","name":"params","type":"tuple"}],"name":"verifyProof","outputs":[{"internalType":"bool","name":"isValid","type":"bool"},{"internalType":"bytes32","name":"uniqueIdentifier","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"publicInputs","type":"bytes32[]"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"}],"name":"verifyScopes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"vkeyHashToVerifier","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"devdoc":{"kind":"dev","methods":{"constructor":{"details":"Constructor"},"enforceSanctionsRoot((bytes,uint256[]))":{"params":{"commitments":"The commitments"}},"getBoundData((bytes,uint256[]))":{"params":{"commitments":"The commitments"},"returns":{"boundData":"The data bound to the proof"}},"getDisclosedData((bytes,uint256[]),bool)":{"params":{"commitments":"The commitments","isIDCard":"Whether the proof is an ID card"},"returns":{"disclosedData":"The data disclosed by the proof"}},"isAgeAbove(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","minAge":"The age must be above this age","serviceConfig":"The service config"},"returns":{"_0":"True if the age is above the given age, false otherwise"}},"isAgeAboveOrEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","minAge":"The age must be above or equal to this age","serviceConfig":"The service config"},"returns":{"_0":"True if the age is above or equal to the given age, false otherwise"}},"isAgeBelow(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxAge":"The age must be below this age","serviceConfig":"The service config"},"returns":{"_0":"True if the age is below the given age, false otherwise"}},"isAgeBelowOrEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxAge":"The age must be below or equal to this age","serviceConfig":"The service config"},"returns":{"_0":"True if the age is below or equal to the given age, false otherwise"}},"isAgeBetween(uint8,uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxAge":"The age must be less than or equal to this age","minAge":"The age must be greater than or equal to this age","serviceConfig":"The service config"},"returns":{"_0":"True if the age is in the given range, false otherwise"}},"isAgeEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"age":"The age must be equal to this age","commitments":"The commitments","serviceConfig":"The service config"},"returns":{"_0":"True if the age is equal to the given age, false otherwise"}},"isBirthdateAfter(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","minDate":"The birthdate must be after this date","serviceConfig":"The service config"},"returns":{"_0":"True if the birthdate is after the given date, false otherwise"}},"isBirthdateAfterOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","minDate":"The birthdate must be after or equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the birthdate is after or equal to the given date, false otherwise"}},"isBirthdateBefore(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxDate":"The birthdate must be before this date","serviceConfig":"The service config"},"returns":{"_0":"True if the birthdate is before the given date, false otherwise"}},"isBirthdateBeforeOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxDate":"The birthdate must be before or equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the birthdate is before or equal to the given date, false otherwise"}},"isBirthdateBetween(uint256,uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxDate":"The birthdate must be before or equal to this date","minDate":"The birthdate must be after or equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the birthdate is between the given dates, false otherwise"}},"isBirthdateEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","date":"The birthdate must be equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the birthdate is equal to the given date, false otherwise"}},"isExpiryDateAfter(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","minDate":"The expiry date must be after this date","serviceConfig":"The service config"},"returns":{"_0":"True if the expiry date is after the given date, false otherwise"}},"isExpiryDateAfterOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","minDate":"The expiry date must be after or equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the expiry date is after or equal to the given date, false otherwise"}},"isExpiryDateBefore(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxDate":"The expiry date must be before this date","serviceConfig":"The service config"},"returns":{"_0":"True if the expiry date is before the given date, false otherwise"}},"isExpiryDateBeforeOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxDate":"The expiry date must be before or equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the expiry date is before or equal to the given date, false otherwise"}},"isExpiryDateBetween(uint256,uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxDate":"The expiry date must be before or equal to this date","minDate":"The expiry date must be after or equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the expiry date is between the given dates, false otherwise"}},"isExpiryDateEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","date":"The expiry date must be equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the expiry date is equal to the given date, false otherwise"}},"isFaceMatchVerified(uint8,uint8,(bytes,uint256[]))":{"params":{"commitments":"The commitments","faceMatchMode":"The FaceMatch mode expected to be used in the verification","os":"The operating system on which the proof should have been generated (Any (0), iOS (1), Android (2))"},"returns":{"_0":"True if the proof is tied to a valid FaceMatch verification, false otherwise"}},"isIssuingCountryIn(string[],(bytes,uint256[]))":{"params":{"commitments":"The commitments","countryList":"The list of countries (needs to match exactly the list of countries in the proof)"},"returns":{"_0":"True if the issuing country is in the list of countries, false otherwise"}},"isIssuingCountryOut(string[],(bytes,uint256[]))":{"params":{"commitments":"The commitments","countryList":"The list of countries (needs to match exactly the list of countries in the proof) Note: The list of countries must be sorted in alphabetical order"},"returns":{"_0":"True if the issuing country is not in the list of countries, false otherwise"}},"isNationalityIn(string[],(bytes,uint256[]))":{"params":{"commitments":"The commitments","countryList":"The list of countries (needs to match exactly the list of countries in the proof)"},"returns":{"_0":"True if the nationality is in the list of countries, false otherwise"}},"isNationalityOut(string[],(bytes,uint256[]))":{"params":{"commitments":"The commitments","countryList":"The list of countries (needs to match exactly the list of countries in the proof) Note: The list of countries must be sorted in alphabetical order"},"returns":{"_0":"True if the nationality is not in the list of countries, false otherwise"}},"verifyProof(((bytes32,bytes,bytes32[]),(bytes,uint256[]),(uint256,string,string,bool)))":{"params":{"params":"The proof verification parameters"},"returns":{"isValid":"True if the proof is valid, false otherwise","uniqueIdentifier":"The unique identifier associated to the identity document that generated the proof"}},"verifyScopes(bytes32[],string,string)":{"params":{"domain":"The domain to check against","publicInputs":"The public inputs of the proof","scope":"The scope to check against"},"returns":{"_0":"True if the proof was generated for the given domain and scope, false otherwise"}}},"version":1},"userdoc":{"kind":"user","methods":{"enforceSanctionsRoot((bytes,uint256[]))":{"notice":"Enforces that the proof checks against the expected sanction list(s)"},"getBoundData((bytes,uint256[]))":{"notice":"Gets the data bound to the proof"},"getDisclosedData((bytes,uint256[]),bool)":{"notice":"Gets the data disclosed by the proof"},"isAgeAbove(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the age is above the given age"},"isAgeAboveOrEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the age is above or equal to the given age"},"isAgeBelow(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the age is below the given age"},"isAgeBelowOrEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the age is below or equal to the given age"},"isAgeBetween(uint8,uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the age is in the given range"},"isAgeEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the age is equal to the given age"},"isBirthdateAfter(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the birthdate is after the given date"},"isBirthdateAfterOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the birthdate is after or equal to the given date"},"isBirthdateBefore(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the birthdate is before the given date"},"isBirthdateBeforeOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the birthdate is before or equal to the given date"},"isBirthdateBetween(uint256,uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the birthdate is between the given dates"},"isBirthdateEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the birthdate is equal to the given date"},"isExpiryDateAfter(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the expiry date is after the given date"},"isExpiryDateAfterOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the expiry date is after or equal to the given date"},"isExpiryDateBefore(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the expiry date is before the given date"},"isExpiryDateBeforeOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the expiry date is before or equal to the given date"},"isExpiryDateBetween(uint256,uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the expiry date is between the given dates"},"isExpiryDateEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the expiry date is equal to the given date"},"isFaceMatchVerified(uint8,uint8,(bytes,uint256[]))":{"notice":"Checks if the proof is tied to a FaceMatch verification"},"isIssuingCountryIn(string[],(bytes,uint256[]))":{"notice":"Checks if the issuing country is in the list of countries"},"isIssuingCountryOut(string[],(bytes,uint256[]))":{"notice":"Checks if the issuing country is not in the list of countries"},"isNationalityIn(string[],(bytes,uint256[]))":{"notice":"Checks if the nationality is in the list of countries"},"isNationalityOut(string[],(bytes,uint256[]))":{"notice":"Checks if the nationality is not in the list of countries"},"verifyProof(((bytes32,bytes,bytes32[]),(bytes,uint256[]),(uint256,string,string,bool)))":{"notice":"Verifies a proof from ZKPassport"},"verifyScopes(bytes32[],string,string)":{"notice":"Verifies that the proof was generated for the given domain and scope"}},"version":1}},"settings":{"compilationTarget":{"src/ZKPassportVerifier.sol":"ZKPassportVerifier"},"evmVersion":"cancun","libraries":{},"metadata":{"bytecodeHash":"ipfs"},"optimizer":{"enabled":true,"runs":200},"remappings":[":forge-std/=lib/forge-std/src/"]},"sources":{"src/Constants.sol":{"keccak256":"0x6f011f7c9038b4552283dd9801d5686ad4047ad6c281cf0a8620bfec503a9060","license":"Apache-2.0","urls":["bzz-raw://d4052ca894163688d25d78d297f86dd1c562cfd4e9de7253f2c1da30796a538c","dweb:/ipfs/QmbMJ9gCMsqo22f6ih8Sk3MTxCwBJfPEFAMbYoBVXMydAW"]},"src/DateUtils.sol":{"keccak256":"0xc04aef2f5732f8c3b28077a0af19e2fbbdec2f9178f3800563bf64ccdecefc77","license":"Apache-2.0","urls":["bzz-raw://bcc2610f3bdd3411fc040d39efe9e68f826b48986b2df7987f3adb6a1467c833","dweb:/ipfs/Qmc7uyW8Y7ekaKEdjd3kU9e1eDcCiAqsujGc5ZavuzGx4w"]},"src/IRootRegistry.sol":{"keccak256":"0xa9955e80821ca9ccbdf7d05a8ce9a3e237b4771e1f6e09190ed1c803a5e1e516","license":"MIT","urls":["bzz-raw://fd9fc9fbd7057a6bcc16a682e52be9ebd012954898626a11f0a0e8788644789d","dweb:/ipfs/QmZYpMRHdv4gMCNXCQtGQu8XqRVtNR9Kgkzh7u1YMpvrEB"]},"src/InputsExtractor.sol":{"keccak256":"0xca3a90807b75bff710d97a53c65838a19a87d0bc96c3e1f7a7caa2eb831ef373","license":"Apache-2.0","urls":["bzz-raw://7e1360632f22afd864807ae616cd29c80f90142f2065a131dc996758b9388650","dweb:/ipfs/QmSaRNmHoZs8pLKgfrgBhe9oMrNX82huzDXq1K5TvTwWad"]},"src/StringUtils.sol":{"keccak256":"0x0174454c28003f489bcdf636c93ccb512d80f3dbdca7485e11b51cf2c8ebfff1","license":"Apache-2.0","urls":["bzz-raw://92ea71064b8199c9a05cbe279cf42adaaa7b29604d960a84754d3d997b1c2342","dweb:/ipfs/QmcsrqRJ2YZABCZHzS782RqKmWEegSK1LCmTTjJ94gdh5q"]},"src/Types.sol":{"keccak256":"0x1cb492c099b71287da0349afef0c72c430e2476ad7373a0ea1456e7145207a06","license":"Apache-2.0","urls":["bzz-raw://a158753948b82917aa802c4b475a1ffb4b5f09b2a86ebcb64db11437ab297047","dweb:/ipfs/QmPgGhT59MzcG4TA5PmKjzaoNMZ4VRmcLJH6w5LkWQYjxV"]},"src/ZKPassportVerifier.sol":{"keccak256":"0x12322e58cc69dcc634b07dca3715b81b08aeb1618bcbfcf3de9edbe120f08de9","license":"Apache-2.0","urls":["bzz-raw://769194840e10dd878e1fcac248d386ba6cdb8e0fd96915111133c7f122265bf2","dweb:/ipfs/QmR5ML1N26F8bPMZd2GgSKrGxtUfbLtpKp4dN1FbBMXDNG"]},"src/ultra-honk-verifiers/OuterCount4.sol":{"keccak256":"0xc0b2358f1cb49d10ab783b6ccf321e8bde6eb8ce70efe325fdf49987f1688b94","license":"Apache-2.0","urls":["bzz-raw://c5ddd3b3c3e2522e766c5ab95d2559ce4e79fe54e9aeb50b1c995ad1d8ed18ee","dweb:/ipfs/Qmcu7WhWMk3TPxb3HuwEPiXF95F6eD8KmJ12RXxFBdCYgM"]}},"version":1}',
|
|
3256
|
+
rawMetadata: '{"compiler":{"version":"0.8.29+commit.ab55807c"},"language":"Solidity","output":{"abi":[{"inputs":[{"internalType":"address","name":"_rootRegistry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"certificateRegistryRoot","type":"bytes32"}],"name":"CertificateRegistryRootAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"certificateRegistryRoot","type":"bytes32"}],"name":"CertificateRegistryRootRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"paused","type":"bool"}],"name":"PausedStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_sanctionsTreesRoot","type":"bytes32"}],"name":"SanctionsTreesRootUpdates","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"vkeyHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"verifier","type":"address"}],"name":"VerifierAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"vkeyHash","type":"bytes32"}],"name":"VerifierRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"ZKPassportVerifierDeployed","type":"event"},{"inputs":[],"name":"CERTIFICATE_REGISTRY_ID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CIRCUIT_REGISTRY_ID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SANCTIONS_REGISTRY_ID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"vkeyHashes","type":"bytes32[]"},{"internalType":"address[]","name":"verifiers","type":"address[]"}],"name":"addVerifiers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"enforceSanctionsRoot","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"getBoundData","outputs":[{"components":[{"internalType":"address","name":"senderAddress","type":"address"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"string","name":"customData","type":"string"}],"internalType":"struct BoundData","name":"boundData","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"internalType":"bool","name":"isIDCard","type":"bool"}],"name":"getDisclosedData","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"issuingCountry","type":"string"},{"internalType":"string","name":"nationality","type":"string"},{"internalType":"string","name":"gender","type":"string"},{"internalType":"string","name":"birthDate","type":"string"},{"internalType":"string","name":"expiryDate","type":"string"},{"internalType":"string","name":"documentNumber","type":"string"},{"internalType":"string","name":"documentType","type":"string"}],"internalType":"struct DisclosedData","name":"disclosedData","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint8","name":"minAge","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isAgeAbove","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"minAge","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isAgeAboveOrEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"maxAge","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isAgeBelow","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"maxAge","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isAgeBelowOrEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"minAge","type":"uint8"},{"internalType":"uint8","name":"maxAge","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isAgeBetween","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"age","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isAgeEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isBirthdateAfter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isBirthdateAfterOrEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isBirthdateBefore","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isBirthdateBeforeOrEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDate","type":"uint256"},{"internalType":"uint256","name":"maxDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isBirthdateBetween","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"date","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isBirthdateEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isExpiryDateAfter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isExpiryDateAfterOrEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isExpiryDateBefore","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isExpiryDateBeforeOrEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDate","type":"uint256"},{"internalType":"uint256","name":"maxDate","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isExpiryDateBetween","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"date","type":"uint256"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isExpiryDateEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum FaceMatchMode","name":"faceMatchMode","type":"uint8"},{"internalType":"enum OS","name":"os","type":"uint8"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"name":"isFaceMatchVerified","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string[]","name":"countryList","type":"string[]"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"isIssuingCountryIn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string[]","name":"countryList","type":"string[]"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"isIssuingCountryOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string[]","name":"countryList","type":"string[]"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"isNationalityIn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string[]","name":"countryList","type":"string[]"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"isNationalityOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"vkeyHashes","type":"bytes32[]"}],"name":"removeVerifiers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rootRegistry","outputs":[{"internalType":"contract IRootRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"transferAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rootRegistry","type":"address"}],"name":"updateRootRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"bytes32","name":"vkeyHash","type":"bytes32"},{"internalType":"bytes","name":"proof","type":"bytes"},{"internalType":"bytes32[]","name":"publicInputs","type":"bytes32[]"}],"internalType":"struct ProofVerificationData","name":"proofVerificationData","type":"tuple"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"},{"internalType":"uint256[]","name":"committedInputCounts","type":"uint256[]"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"},{"components":[{"internalType":"uint256","name":"validityPeriodInSeconds","type":"uint256"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"},{"internalType":"bool","name":"devMode","type":"bool"}],"internalType":"struct ServiceConfig","name":"serviceConfig","type":"tuple"}],"internalType":"struct ProofVerificationParams","name":"params","type":"tuple"}],"name":"verifyProof","outputs":[{"internalType":"bool","name":"isValid","type":"bool"},{"internalType":"bytes32","name":"uniqueIdentifier","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"publicInputs","type":"bytes32[]"},{"internalType":"string","name":"domain","type":"string"},{"internalType":"string","name":"scope","type":"string"}],"name":"verifyScopes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"vkeyHashToVerifier","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"devdoc":{"kind":"dev","methods":{"constructor":{"details":"Constructor"},"enforceSanctionsRoot((bytes,uint256[]))":{"params":{"commitments":"The commitments"}},"getBoundData((bytes,uint256[]))":{"params":{"commitments":"The commitments"},"returns":{"boundData":"The data bound to the proof"}},"getDisclosedData((bytes,uint256[]),bool)":{"params":{"commitments":"The commitments","isIDCard":"Whether the proof is an ID card"},"returns":{"disclosedData":"The data disclosed by the proof"}},"isAgeAbove(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","minAge":"The age must be above this age","serviceConfig":"The service config"},"returns":{"_0":"True if the age is above the given age, false otherwise"}},"isAgeAboveOrEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","minAge":"The age must be above or equal to this age","serviceConfig":"The service config"},"returns":{"_0":"True if the age is above or equal to the given age, false otherwise"}},"isAgeBelow(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxAge":"The age must be below this age","serviceConfig":"The service config"},"returns":{"_0":"True if the age is below the given age, false otherwise"}},"isAgeBelowOrEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxAge":"The age must be below or equal to this age","serviceConfig":"The service config"},"returns":{"_0":"True if the age is below or equal to the given age, false otherwise"}},"isAgeBetween(uint8,uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxAge":"The age must be less than or equal to this age","minAge":"The age must be greater than or equal to this age","serviceConfig":"The service config"},"returns":{"_0":"True if the age is in the given range, false otherwise"}},"isAgeEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"age":"The age must be equal to this age","commitments":"The commitments","serviceConfig":"The service config"},"returns":{"_0":"True if the age is equal to the given age, false otherwise"}},"isBirthdateAfter(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","minDate":"The birthdate must be after this date","serviceConfig":"The service config"},"returns":{"_0":"True if the birthdate is after the given date, false otherwise"}},"isBirthdateAfterOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","minDate":"The birthdate must be after or equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the birthdate is after or equal to the given date, false otherwise"}},"isBirthdateBefore(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxDate":"The birthdate must be before this date","serviceConfig":"The service config"},"returns":{"_0":"True if the birthdate is before the given date, false otherwise"}},"isBirthdateBeforeOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxDate":"The birthdate must be before or equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the birthdate is before or equal to the given date, false otherwise"}},"isBirthdateBetween(uint256,uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxDate":"The birthdate must be before or equal to this date","minDate":"The birthdate must be after or equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the birthdate is between the given dates, false otherwise"}},"isBirthdateEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","date":"The birthdate must be equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the birthdate is equal to the given date, false otherwise"}},"isExpiryDateAfter(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","minDate":"The expiry date must be after this date","serviceConfig":"The service config"},"returns":{"_0":"True if the expiry date is after the given date, false otherwise"}},"isExpiryDateAfterOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","minDate":"The expiry date must be after or equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the expiry date is after or equal to the given date, false otherwise"}},"isExpiryDateBefore(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxDate":"The expiry date must be before this date","serviceConfig":"The service config"},"returns":{"_0":"True if the expiry date is before the given date, false otherwise"}},"isExpiryDateBeforeOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxDate":"The expiry date must be before or equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the expiry date is before or equal to the given date, false otherwise"}},"isExpiryDateBetween(uint256,uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","maxDate":"The expiry date must be before or equal to this date","minDate":"The expiry date must be after or equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the expiry date is between the given dates, false otherwise"}},"isExpiryDateEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","date":"The expiry date must be equal to this date","serviceConfig":"The service config"},"returns":{"_0":"True if the expiry date is equal to the given date, false otherwise"}},"isFaceMatchVerified(uint8,uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"params":{"commitments":"The commitments","faceMatchMode":"The FaceMatch mode expected to be used in the verification","os":"The operating system on which the proof should have been generated (Any (0), iOS (1), Android (2))","serviceConfig":"The service config"},"returns":{"_0":"True if the proof is tied to a valid FaceMatch verification, false otherwise"}},"isIssuingCountryIn(string[],(bytes,uint256[]))":{"params":{"commitments":"The commitments","countryList":"The list of countries (needs to match exactly the list of countries in the proof)"},"returns":{"_0":"True if the issuing country is in the list of countries, false otherwise"}},"isIssuingCountryOut(string[],(bytes,uint256[]))":{"params":{"commitments":"The commitments","countryList":"The list of countries (needs to match exactly the list of countries in the proof) Note: The list of countries must be sorted in alphabetical order"},"returns":{"_0":"True if the issuing country is not in the list of countries, false otherwise"}},"isNationalityIn(string[],(bytes,uint256[]))":{"params":{"commitments":"The commitments","countryList":"The list of countries (needs to match exactly the list of countries in the proof)"},"returns":{"_0":"True if the nationality is in the list of countries, false otherwise"}},"isNationalityOut(string[],(bytes,uint256[]))":{"params":{"commitments":"The commitments","countryList":"The list of countries (needs to match exactly the list of countries in the proof) Note: The list of countries must be sorted in alphabetical order"},"returns":{"_0":"True if the nationality is not in the list of countries, false otherwise"}},"verifyProof(((bytes32,bytes,bytes32[]),(bytes,uint256[]),(uint256,string,string,bool)))":{"params":{"params":"The proof verification parameters"},"returns":{"isValid":"True if the proof is valid, false otherwise","uniqueIdentifier":"The unique identifier associated to the identity document that generated the proof"}},"verifyScopes(bytes32[],string,string)":{"params":{"domain":"The domain to check against","publicInputs":"The public inputs of the proof","scope":"The scope to check against"},"returns":{"_0":"True if the proof was generated for the given domain and scope, false otherwise"}}},"version":1},"userdoc":{"kind":"user","methods":{"enforceSanctionsRoot((bytes,uint256[]))":{"notice":"Enforces that the proof checks against the expected sanction list(s)"},"getBoundData((bytes,uint256[]))":{"notice":"Gets the data bound to the proof"},"getDisclosedData((bytes,uint256[]),bool)":{"notice":"Gets the data disclosed by the proof"},"isAgeAbove(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the age is above the given age"},"isAgeAboveOrEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the age is above or equal to the given age"},"isAgeBelow(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the age is below the given age"},"isAgeBelowOrEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the age is below or equal to the given age"},"isAgeBetween(uint8,uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the age is in the given range"},"isAgeEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the age is equal to the given age"},"isBirthdateAfter(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the birthdate is after the given date"},"isBirthdateAfterOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the birthdate is after or equal to the given date"},"isBirthdateBefore(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the birthdate is before the given date"},"isBirthdateBeforeOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the birthdate is before or equal to the given date"},"isBirthdateBetween(uint256,uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the birthdate is between the given dates"},"isBirthdateEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the birthdate is equal to the given date"},"isExpiryDateAfter(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the expiry date is after the given date"},"isExpiryDateAfterOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the expiry date is after or equal to the given date"},"isExpiryDateBefore(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the expiry date is before the given date"},"isExpiryDateBeforeOrEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the expiry date is before or equal to the given date"},"isExpiryDateBetween(uint256,uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the expiry date is between the given dates"},"isExpiryDateEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the expiry date is equal to the given date"},"isFaceMatchVerified(uint8,uint8,(bytes,uint256[]),(uint256,string,string,bool))":{"notice":"Checks if the proof is tied to a FaceMatch verification"},"isIssuingCountryIn(string[],(bytes,uint256[]))":{"notice":"Checks if the issuing country is in the list of countries"},"isIssuingCountryOut(string[],(bytes,uint256[]))":{"notice":"Checks if the issuing country is not in the list of countries"},"isNationalityIn(string[],(bytes,uint256[]))":{"notice":"Checks if the nationality is in the list of countries"},"isNationalityOut(string[],(bytes,uint256[]))":{"notice":"Checks if the nationality is not in the list of countries"},"verifyProof(((bytes32,bytes,bytes32[]),(bytes,uint256[]),(uint256,string,string,bool)))":{"notice":"Verifies a proof from ZKPassport"},"verifyScopes(bytes32[],string,string)":{"notice":"Verifies that the proof was generated for the given domain and scope"}},"version":1}},"settings":{"compilationTarget":{"src/ZKPassportVerifier.sol":"ZKPassportVerifier"},"evmVersion":"prague","libraries":{},"metadata":{"bytecodeHash":"ipfs"},"optimizer":{"enabled":true,"runs":200},"remappings":[":forge-std/=lib/forge-std/src/"]},"sources":{"src/Constants.sol":{"keccak256":"0x9028200b38f4ec17533664ed4d04e16c500b68ef398d0935811a16409bd9d84f","license":"Apache-2.0","urls":["bzz-raw://065da1a99b9be089622088760a46cf5ec6a0bbece388cb722d12fd4f67237ce4","dweb:/ipfs/Qmdqt9UV9ecPBTdVsudSDVszwgu3U2DG3e9DZ4AJt7Zghm"]},"src/DateUtils.sol":{"keccak256":"0xc04aef2f5732f8c3b28077a0af19e2fbbdec2f9178f3800563bf64ccdecefc77","license":"Apache-2.0","urls":["bzz-raw://bcc2610f3bdd3411fc040d39efe9e68f826b48986b2df7987f3adb6a1467c833","dweb:/ipfs/Qmc7uyW8Y7ekaKEdjd3kU9e1eDcCiAqsujGc5ZavuzGx4w"]},"src/IRootRegistry.sol":{"keccak256":"0xa9955e80821ca9ccbdf7d05a8ce9a3e237b4771e1f6e09190ed1c803a5e1e516","license":"MIT","urls":["bzz-raw://fd9fc9fbd7057a6bcc16a682e52be9ebd012954898626a11f0a0e8788644789d","dweb:/ipfs/QmZYpMRHdv4gMCNXCQtGQu8XqRVtNR9Kgkzh7u1YMpvrEB"]},"src/InputsExtractor.sol":{"keccak256":"0x85df2d9d89bb8538bd3d7168c30d8ace823a3710ee83ef3a8fbc1f59a7720473","license":"Apache-2.0","urls":["bzz-raw://7681a82ac614eafba56b8a9c1b7943f0d66cce6a5319124fb214a13f00535f07","dweb:/ipfs/QmPoj2DXmCeuYGZpAf4MWUwc5buMRqwykUc1B8mryQrPqT"]},"src/StringUtils.sol":{"keccak256":"0x0174454c28003f489bcdf636c93ccb512d80f3dbdca7485e11b51cf2c8ebfff1","license":"Apache-2.0","urls":["bzz-raw://92ea71064b8199c9a05cbe279cf42adaaa7b29604d960a84754d3d997b1c2342","dweb:/ipfs/QmcsrqRJ2YZABCZHzS782RqKmWEegSK1LCmTTjJ94gdh5q"]},"src/Types.sol":{"keccak256":"0x1cb492c099b71287da0349afef0c72c430e2476ad7373a0ea1456e7145207a06","license":"Apache-2.0","urls":["bzz-raw://a158753948b82917aa802c4b475a1ffb4b5f09b2a86ebcb64db11437ab297047","dweb:/ipfs/QmPgGhT59MzcG4TA5PmKjzaoNMZ4VRmcLJH6w5LkWQYjxV"]},"src/ZKPassportVerifier.sol":{"keccak256":"0xc1a8e1598a279af7a72f60c684531a3cb43e81f65a394dd2ea12da78dae27cc5","license":"Apache-2.0","urls":["bzz-raw://9b6a3ebc79fa7ed343f5a46730a4c24431768d2276fe0295fed3814d795eab1b","dweb:/ipfs/QmboGSLvn9BFNEikCzoBTVrqoXLQKUKN8eMn5VZqyFP2Q9"]},"src/ultra-honk-verifiers/OuterCount4.sol":{"keccak256":"0x0f0d75a82f697db2db5f689acd8fbd603940a2e2d862601a16316a3a21a6f916","license":"Apache-2.0","urls":["bzz-raw://b2306e16c0265d824e0a5aa4cd1fea70a1322af74a4e8b34df1444c0e47ed345","dweb:/ipfs/QmRaEPoyvBX2n1VV9SoXPmoEEXzRyFGB9obQUuYuuXAMAR"]}},"version":1}',
|
|
3126
3257
|
metadata: {
|
|
3127
3258
|
compiler: { version: "0.8.29+commit.ab55807c" },
|
|
3128
3259
|
language: "Solidity",
|
|
@@ -3867,6 +3998,17 @@ var ZKPassportVerifier_default = {
|
|
|
3867
3998
|
{ internalType: "bytes", name: "committedInputs", type: "bytes" },
|
|
3868
3999
|
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3869
4000
|
]
|
|
4001
|
+
},
|
|
4002
|
+
{
|
|
4003
|
+
internalType: "struct ServiceConfig",
|
|
4004
|
+
name: "serviceConfig",
|
|
4005
|
+
type: "tuple",
|
|
4006
|
+
components: [
|
|
4007
|
+
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
4008
|
+
{ internalType: "string", name: "domain", type: "string" },
|
|
4009
|
+
{ internalType: "string", name: "scope", type: "string" },
|
|
4010
|
+
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
4011
|
+
]
|
|
3870
4012
|
}
|
|
3871
4013
|
],
|
|
3872
4014
|
stateMutability: "pure",
|
|
@@ -4240,11 +4382,12 @@ var ZKPassportVerifier_default = {
|
|
|
4240
4382
|
_0: "True if the expiry date is equal to the given date, false otherwise"
|
|
4241
4383
|
}
|
|
4242
4384
|
},
|
|
4243
|
-
"isFaceMatchVerified(uint8,uint8,(bytes,uint256[]))": {
|
|
4385
|
+
"isFaceMatchVerified(uint8,uint8,(bytes,uint256[]),(uint256,string,string,bool))": {
|
|
4244
4386
|
params: {
|
|
4245
4387
|
commitments: "The commitments",
|
|
4246
4388
|
faceMatchMode: "The FaceMatch mode expected to be used in the verification",
|
|
4247
|
-
os: "The operating system on which the proof should have been generated (Any (0), iOS (1), Android (2))"
|
|
4389
|
+
os: "The operating system on which the proof should have been generated (Any (0), iOS (1), Android (2))",
|
|
4390
|
+
serviceConfig: "The service config"
|
|
4248
4391
|
},
|
|
4249
4392
|
returns: {
|
|
4250
4393
|
_0: "True if the proof is tied to a valid FaceMatch verification, false otherwise"
|
|
@@ -4370,7 +4513,7 @@ var ZKPassportVerifier_default = {
|
|
|
4370
4513
|
"isExpiryDateEqual(uint256,(bytes,uint256[]),(uint256,string,string,bool))": {
|
|
4371
4514
|
notice: "Checks if the expiry date is equal to the given date"
|
|
4372
4515
|
},
|
|
4373
|
-
"isFaceMatchVerified(uint8,uint8,(bytes,uint256[]))": {
|
|
4516
|
+
"isFaceMatchVerified(uint8,uint8,(bytes,uint256[]),(uint256,string,string,bool))": {
|
|
4374
4517
|
notice: "Checks if the proof is tied to a FaceMatch verification"
|
|
4375
4518
|
},
|
|
4376
4519
|
"isIssuingCountryIn(string[],(bytes,uint256[]))": {
|
|
@@ -4400,15 +4543,15 @@ var ZKPassportVerifier_default = {
|
|
|
4400
4543
|
optimizer: { enabled: true, runs: 200 },
|
|
4401
4544
|
metadata: { bytecodeHash: "ipfs" },
|
|
4402
4545
|
compilationTarget: { "src/ZKPassportVerifier.sol": "ZKPassportVerifier" },
|
|
4403
|
-
evmVersion: "
|
|
4546
|
+
evmVersion: "prague",
|
|
4404
4547
|
libraries: {}
|
|
4405
4548
|
},
|
|
4406
4549
|
sources: {
|
|
4407
4550
|
"src/Constants.sol": {
|
|
4408
|
-
keccak256: "
|
|
4551
|
+
keccak256: "0x9028200b38f4ec17533664ed4d04e16c500b68ef398d0935811a16409bd9d84f",
|
|
4409
4552
|
urls: [
|
|
4410
|
-
"bzz-raw://
|
|
4411
|
-
"dweb:/ipfs/
|
|
4553
|
+
"bzz-raw://065da1a99b9be089622088760a46cf5ec6a0bbece388cb722d12fd4f67237ce4",
|
|
4554
|
+
"dweb:/ipfs/Qmdqt9UV9ecPBTdVsudSDVszwgu3U2DG3e9DZ4AJt7Zghm"
|
|
4412
4555
|
],
|
|
4413
4556
|
license: "Apache-2.0"
|
|
4414
4557
|
},
|
|
@@ -4429,10 +4572,10 @@ var ZKPassportVerifier_default = {
|
|
|
4429
4572
|
license: "MIT"
|
|
4430
4573
|
},
|
|
4431
4574
|
"src/InputsExtractor.sol": {
|
|
4432
|
-
keccak256: "
|
|
4575
|
+
keccak256: "0x85df2d9d89bb8538bd3d7168c30d8ace823a3710ee83ef3a8fbc1f59a7720473",
|
|
4433
4576
|
urls: [
|
|
4434
|
-
"bzz-raw://
|
|
4435
|
-
"dweb:/ipfs/
|
|
4577
|
+
"bzz-raw://7681a82ac614eafba56b8a9c1b7943f0d66cce6a5319124fb214a13f00535f07",
|
|
4578
|
+
"dweb:/ipfs/QmPoj2DXmCeuYGZpAf4MWUwc5buMRqwykUc1B8mryQrPqT"
|
|
4436
4579
|
],
|
|
4437
4580
|
license: "Apache-2.0"
|
|
4438
4581
|
},
|
|
@@ -4453,18 +4596,18 @@ var ZKPassportVerifier_default = {
|
|
|
4453
4596
|
license: "Apache-2.0"
|
|
4454
4597
|
},
|
|
4455
4598
|
"src/ZKPassportVerifier.sol": {
|
|
4456
|
-
keccak256: "
|
|
4599
|
+
keccak256: "0xc1a8e1598a279af7a72f60c684531a3cb43e81f65a394dd2ea12da78dae27cc5",
|
|
4457
4600
|
urls: [
|
|
4458
|
-
"bzz-raw://
|
|
4459
|
-
"dweb:/ipfs/
|
|
4601
|
+
"bzz-raw://9b6a3ebc79fa7ed343f5a46730a4c24431768d2276fe0295fed3814d795eab1b",
|
|
4602
|
+
"dweb:/ipfs/QmboGSLvn9BFNEikCzoBTVrqoXLQKUKN8eMn5VZqyFP2Q9"
|
|
4460
4603
|
],
|
|
4461
4604
|
license: "Apache-2.0"
|
|
4462
4605
|
},
|
|
4463
4606
|
"src/ultra-honk-verifiers/OuterCount4.sol": {
|
|
4464
|
-
keccak256: "
|
|
4607
|
+
keccak256: "0x0f0d75a82f697db2db5f689acd8fbd603940a2e2d862601a16316a3a21a6f916",
|
|
4465
4608
|
urls: [
|
|
4466
|
-
"bzz-raw://
|
|
4467
|
-
"dweb:/ipfs/
|
|
4609
|
+
"bzz-raw://b2306e16c0265d824e0a5aa4cd1fea70a1322af74a4e8b34df1444c0e47ed345",
|
|
4610
|
+
"dweb:/ipfs/QmRaEPoyvBX2n1VV9SoXPmoEEXzRyFGB9obQUuYuuXAMAR"
|
|
4468
4611
|
],
|
|
4469
4612
|
license: "Apache-2.0"
|
|
4470
4613
|
}
|
|
@@ -4484,7 +4627,7 @@ var SolidityVerifier = class {
|
|
|
4484
4627
|
if (network === "ethereum_sepolia") {
|
|
4485
4628
|
return {
|
|
4486
4629
|
...baseConfig,
|
|
4487
|
-
address: "
|
|
4630
|
+
address: "0x3101Bad9eA5fACadA5554844a1a88F7Fe48D4DE0"
|
|
4488
4631
|
};
|
|
4489
4632
|
} else if (network === "local_anvil") {
|
|
4490
4633
|
return {
|
|
@@ -4538,20 +4681,17 @@ var SolidityVerifier = class {
|
|
|
4538
4681
|
).map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4539
4682
|
} else if (circuitName === "compare_age_evm") {
|
|
4540
4683
|
const value = proof.committedInputs[circuitName];
|
|
4541
|
-
|
|
4542
|
-
compressedCommittedInputs2 = import_utils2.ProofType.AGE.toString(16).padStart(2, "0") + currentDateBytes.map((x) => x.toString(16).padStart(2, "0")).join("") + value.minAge.toString(16).padStart(2, "0") + value.maxAge.toString(16).padStart(2, "0");
|
|
4684
|
+
compressedCommittedInputs2 = import_utils2.ProofType.AGE.toString(16).padStart(2, "0") + value.minAge.toString(16).padStart(2, "0") + value.maxAge.toString(16).padStart(2, "0");
|
|
4543
4685
|
} else if (circuitName === "compare_birthdate_evm") {
|
|
4544
4686
|
const value = proof.committedInputs[circuitName];
|
|
4545
|
-
const currentDateBytes = Array.from((0, import_utils2.numberToBytesBE)(value.currentDateTimestamp, 8));
|
|
4546
4687
|
const minDateBytes = Array.from((0, import_utils2.numberToBytesBE)(value.minDateTimestamp, 8));
|
|
4547
4688
|
const maxDateBytes = Array.from((0, import_utils2.numberToBytesBE)(value.maxDateTimestamp, 8));
|
|
4548
|
-
compressedCommittedInputs2 = import_utils2.ProofType.BIRTHDATE.toString(16).padStart(2, "0") +
|
|
4689
|
+
compressedCommittedInputs2 = import_utils2.ProofType.BIRTHDATE.toString(16).padStart(2, "0") + minDateBytes.map((x) => x.toString(16).padStart(2, "0")).join("") + maxDateBytes.map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4549
4690
|
} else if (circuitName === "compare_expiry_evm") {
|
|
4550
4691
|
const value = proof.committedInputs[circuitName];
|
|
4551
|
-
const currentDateBytes = Array.from((0, import_utils2.numberToBytesBE)(value.currentDateTimestamp, 8));
|
|
4552
4692
|
const minDateBytes = Array.from((0, import_utils2.numberToBytesBE)(value.minDateTimestamp, 8));
|
|
4553
4693
|
const maxDateBytes = Array.from((0, import_utils2.numberToBytesBE)(value.maxDateTimestamp, 8));
|
|
4554
|
-
compressedCommittedInputs2 = import_utils2.ProofType.EXPIRY_DATE.toString(16).padStart(2, "0") +
|
|
4694
|
+
compressedCommittedInputs2 = import_utils2.ProofType.EXPIRY_DATE.toString(16).padStart(2, "0") + minDateBytes.map((x) => x.toString(16).padStart(2, "0")).join("") + maxDateBytes.map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4555
4695
|
} else if (circuitName === "disclose_bytes_evm") {
|
|
4556
4696
|
const value = proof.committedInputs[circuitName];
|
|
4557
4697
|
compressedCommittedInputs2 = import_utils2.ProofType.DISCLOSE.toString(16).padStart(2, "0") + value.discloseMask.map((x) => x.toString(16).padStart(2, "0")).join("") + value.disclosedBytes.map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
@@ -4566,7 +4706,10 @@ var SolidityVerifier = class {
|
|
|
4566
4706
|
compressedCommittedInputs2 += import_utils2.ProofType.FACEMATCH.toString(16).padStart(2, "0");
|
|
4567
4707
|
compressedCommittedInputs2 += Array.from((0, import_utils2.numberToBytesBE)(BigInt(value.rootKeyLeaf), 32)).map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4568
4708
|
compressedCommittedInputs2 += value.environment === "development" ? "00" : "01";
|
|
4569
|
-
compressedCommittedInputs2 += Array.from((0, import_utils2.numberToBytesBE)(BigInt(value.
|
|
4709
|
+
compressedCommittedInputs2 += Array.from((0, import_utils2.numberToBytesBE)(BigInt(value.appIdHash), 32)).map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4710
|
+
compressedCommittedInputs2 += Array.from(
|
|
4711
|
+
(0, import_utils2.numberToBytesBE)(BigInt(value.integrityPubkeyHash), 32)
|
|
4712
|
+
).map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4570
4713
|
compressedCommittedInputs2 += value.mode === "regular" ? "01" : "02";
|
|
4571
4714
|
} else {
|
|
4572
4715
|
throw new Error(`Unsupported circuit for EVM verification: ${circuitName}`);
|
|
@@ -5041,11 +5184,11 @@ var ZKPassport = class {
|
|
|
5041
5184
|
};
|
|
5042
5185
|
}
|
|
5043
5186
|
const formattedResult = (0, import_utils4.formatQueryResultDates)(queryResult);
|
|
5044
|
-
const {
|
|
5187
|
+
const { UltraHonkVerifierBackend } = await import("@aztec/bb.js");
|
|
5045
5188
|
if (typeof window === "undefined" && !writingDirectory) {
|
|
5046
5189
|
writingDirectory = "/tmp";
|
|
5047
5190
|
}
|
|
5048
|
-
const verifier = new
|
|
5191
|
+
const verifier = new UltraHonkVerifierBackend({
|
|
5049
5192
|
crsPath: writingDirectory ? writingDirectory + "/.bb-crs" : void 0
|
|
5050
5193
|
});
|
|
5051
5194
|
let verified = true;
|
|
@@ -5082,11 +5225,15 @@ var ZKPassport = class {
|
|
|
5082
5225
|
});
|
|
5083
5226
|
for (const proof of proofs) {
|
|
5084
5227
|
const isOuterEVM = proof.name?.startsWith("outer_evm_");
|
|
5085
|
-
const proofName =
|
|
5228
|
+
const proofName = proof.name;
|
|
5086
5229
|
const proofData = (0, import_utils4.getProofData)(proof.proof, (0, import_utils4.getNumberOfPublicInputs)(proofName));
|
|
5087
5230
|
const hostedPackagedCircuit = await registryClient.getPackagedCircuit(
|
|
5088
5231
|
proofName,
|
|
5089
|
-
circuitManifest
|
|
5232
|
+
circuitManifest,
|
|
5233
|
+
// TODO: set to always validate when the issue is vkey hash calculation is fixed
|
|
5234
|
+
// Not as important anyway, as the solidity verifier is the ultimate anchor for
|
|
5235
|
+
// EVM outer proofs verification
|
|
5236
|
+
{ validate: !isOuterEVM }
|
|
5090
5237
|
);
|
|
5091
5238
|
if (isOuterEVM) {
|
|
5092
5239
|
try {
|
|
@@ -5118,13 +5265,11 @@ var ZKPassport = class {
|
|
|
5118
5265
|
} else {
|
|
5119
5266
|
const vkeyBytes = import_buffer.Buffer.from(hostedPackagedCircuit.vkey, "base64");
|
|
5120
5267
|
try {
|
|
5121
|
-
verified = await verifier.
|
|
5122
|
-
|
|
5123
|
-
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
new Uint8Array(vkeyBytes)
|
|
5127
|
-
);
|
|
5268
|
+
verified = await verifier.verifyProof({
|
|
5269
|
+
proof: import_buffer.Buffer.from(proofData.proof.join(""), "hex"),
|
|
5270
|
+
publicInputs: proofData.publicInputs,
|
|
5271
|
+
verificationKey: new Uint8Array(vkeyBytes)
|
|
5272
|
+
});
|
|
5128
5273
|
} catch (e) {
|
|
5129
5274
|
console.warn("Error verifying proof", e);
|
|
5130
5275
|
verified = false;
|