@zkpassport/sdk 0.10.0 → 0.11.0-beta.2
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/index.cjs +386 -854
- package/dist/cjs/public-input-checker.cjs +164 -84
- package/dist/cjs/public-input-checker.d.cts +1 -0
- package/dist/cjs/solidity-verifier.cjs +218 -767
- package/dist/cjs/types.d.cts +11 -2
- package/dist/esm/{chunk-O7ZONMCQ.js → chunk-6IK5VUOR.js} +168 -87
- package/dist/esm/chunk-CFGZMKF7.js +2019 -0
- package/dist/esm/index.js +6 -5
- package/dist/esm/public-input-checker.d.ts +1 -0
- package/dist/esm/public-input-checker.js +1 -1
- package/dist/esm/solidity-verifier.js +1 -1
- package/dist/esm/types.d.ts +11 -2
- package/package.json +3 -3
- package/dist/esm/chunk-I7PGO4XY.js +0 -2567
package/dist/cjs/index.cjs
CHANGED
|
@@ -465,21 +465,6 @@ var PublicInputChecker = class {
|
|
|
465
465
|
}
|
|
466
466
|
};
|
|
467
467
|
}
|
|
468
|
-
const currentDate = (0, import_utils.getCurrentDateFromCommittedInputs)(
|
|
469
|
-
proof.committedInputs?.compare_age ?? proof.committedInputs?.compare_age_evm
|
|
470
|
-
);
|
|
471
|
-
if (!(0, import_utils.areDatesEqual)(currentDate, today) && !(0, import_utils.areDatesEqual)(currentDate, today.getTime() - 864e5)) {
|
|
472
|
-
console.warn("Current date in the proof is too old");
|
|
473
|
-
isCorrect = false;
|
|
474
|
-
queryResultErrors.age = {
|
|
475
|
-
...queryResultErrors.age,
|
|
476
|
-
disclose: {
|
|
477
|
-
expected: `${today.toISOString()}`,
|
|
478
|
-
received: `${currentDate.toISOString()}`,
|
|
479
|
-
message: "Current date in the proof is too old"
|
|
480
|
-
}
|
|
481
|
-
};
|
|
482
|
-
}
|
|
483
468
|
return { isCorrect, queryResultErrors };
|
|
484
469
|
}
|
|
485
470
|
static checkBirthdatePublicInputs(proof, queryResult) {
|
|
@@ -502,9 +487,6 @@ var PublicInputChecker = class {
|
|
|
502
487
|
proof.committedInputs?.compare_birthdate ?? proof.committedInputs?.compare_birthdate_evm,
|
|
503
488
|
-1 * import_utils.SECONDS_BETWEEN_1900_AND_1970
|
|
504
489
|
);
|
|
505
|
-
const currentDate = (0, import_utils.getCurrentDateFromCommittedInputs)(
|
|
506
|
-
proof.committedInputs?.compare_birthdate ?? proof.committedInputs?.compare_birthdate_evm
|
|
507
|
-
);
|
|
508
490
|
if (queryResult.birthdate) {
|
|
509
491
|
if (queryResult.birthdate.gte && queryResult.birthdate.gte.result && !(0, import_utils.areDatesEqual)(minDate, queryResult.birthdate.gte.expected)) {
|
|
510
492
|
console.warn("Birthdate is not greater than or equal to the expected birthdate");
|
|
@@ -578,18 +560,6 @@ var PublicInputChecker = class {
|
|
|
578
560
|
}
|
|
579
561
|
};
|
|
580
562
|
}
|
|
581
|
-
if (!(0, import_utils.areDatesEqual)(currentDate, today) && !(0, import_utils.areDatesEqual)(currentDate, today.getTime() - 864e5)) {
|
|
582
|
-
console.warn("Current date in the proof is too old");
|
|
583
|
-
isCorrect = false;
|
|
584
|
-
queryResultErrors.birthdate = {
|
|
585
|
-
...queryResultErrors.birthdate,
|
|
586
|
-
disclose: {
|
|
587
|
-
expected: `${today.toISOString()}`,
|
|
588
|
-
received: `${currentDate.toISOString()}`,
|
|
589
|
-
message: "Current date in the proof is too old"
|
|
590
|
-
}
|
|
591
|
-
};
|
|
592
|
-
}
|
|
593
563
|
return { isCorrect, queryResultErrors };
|
|
594
564
|
}
|
|
595
565
|
static checkExpiryDatePublicInputs(proof, queryResult) {
|
|
@@ -610,9 +580,6 @@ var PublicInputChecker = class {
|
|
|
610
580
|
const maxDate = (0, import_utils.getMaxDateFromCommittedInputs)(
|
|
611
581
|
proof.committedInputs?.compare_expiry ?? proof.committedInputs?.compare_expiry_evm
|
|
612
582
|
);
|
|
613
|
-
const currentDate = (0, import_utils.getCurrentDateFromCommittedInputs)(
|
|
614
|
-
proof.committedInputs?.compare_expiry ?? proof.committedInputs?.compare_expiry_evm
|
|
615
|
-
);
|
|
616
583
|
if (queryResult.expiry_date) {
|
|
617
584
|
if (queryResult.expiry_date.gte && queryResult.expiry_date.gte.result && !(0, import_utils.areDatesEqual)(minDate, queryResult.expiry_date.gte.expected)) {
|
|
618
585
|
console.warn("Expiry date is not greater than or equal to the expected expiry date");
|
|
@@ -686,18 +653,6 @@ var PublicInputChecker = class {
|
|
|
686
653
|
}
|
|
687
654
|
};
|
|
688
655
|
}
|
|
689
|
-
if (!(0, import_utils.areDatesEqual)(currentDate, today) && !(0, import_utils.areDatesEqual)(currentDate, today.getTime() - 864e5)) {
|
|
690
|
-
console.warn("Current date in the proof is too old");
|
|
691
|
-
isCorrect = false;
|
|
692
|
-
queryResultErrors.expiry_date = {
|
|
693
|
-
...queryResultErrors.expiry_date,
|
|
694
|
-
disclose: {
|
|
695
|
-
expected: `${today.toISOString()}`,
|
|
696
|
-
received: `${currentDate.toISOString()}`,
|
|
697
|
-
message: "Current date in the proof is too old"
|
|
698
|
-
}
|
|
699
|
-
};
|
|
700
|
-
}
|
|
701
656
|
return { isCorrect, queryResultErrors };
|
|
702
657
|
}
|
|
703
658
|
static checkNationalityExclusionPublicInputs(queryResult, countryList) {
|
|
@@ -842,7 +797,7 @@ var PublicInputChecker = class {
|
|
|
842
797
|
}
|
|
843
798
|
static checkScopeFromDisclosureProof(domain, proofData, queryResultErrors, key, scope) {
|
|
844
799
|
let isCorrect = true;
|
|
845
|
-
if (domain && (0, import_utils.getServiceScopeHash)(domain) !==
|
|
800
|
+
if (domain && (0, import_utils.getServiceScopeHash)(domain) !== (0, import_utils.getServiceScopeFromDisclosureProof)(proofData)) {
|
|
846
801
|
console.warn("The proof comes from a different domain than the one expected");
|
|
847
802
|
isCorrect = false;
|
|
848
803
|
if (!queryResultErrors[key]) {
|
|
@@ -854,7 +809,7 @@ var PublicInputChecker = class {
|
|
|
854
809
|
message: "The proof comes from a different domain than the one expected"
|
|
855
810
|
};
|
|
856
811
|
}
|
|
857
|
-
if (scope && (0, import_utils.getScopeHash)(scope) !==
|
|
812
|
+
if (scope && (0, import_utils.getScopeHash)(scope) !== (0, import_utils.getServiceSubScopeFromDisclosureProof)(proofData)) {
|
|
858
813
|
console.warn("The proof uses a different scope than the one expected");
|
|
859
814
|
isCorrect = false;
|
|
860
815
|
if (!queryResultErrors[key]) {
|
|
@@ -1035,6 +990,36 @@ var PublicInputChecker = class {
|
|
|
1035
990
|
}
|
|
1036
991
|
return { isCorrect, queryResultErrors };
|
|
1037
992
|
}
|
|
993
|
+
static async checkCurrentDate(circuitName, proofData, validity, queryResultErrors) {
|
|
994
|
+
const currentTime = /* @__PURE__ */ new Date();
|
|
995
|
+
const today = new Date(
|
|
996
|
+
currentTime.getFullYear(),
|
|
997
|
+
currentTime.getMonth(),
|
|
998
|
+
currentTime.getDate(),
|
|
999
|
+
0,
|
|
1000
|
+
0,
|
|
1001
|
+
0,
|
|
1002
|
+
0
|
|
1003
|
+
);
|
|
1004
|
+
const currentDate = (0, import_utils.getCurrentDateFromDisclosureProof)(proofData);
|
|
1005
|
+
const todayToCurrentDate = today.getTime() - currentDate.getTime();
|
|
1006
|
+
const expectedDifference = validity ? validity * 1e3 : DEFAULT_VALIDITY * 1e3;
|
|
1007
|
+
const actualDifference = today.getTime() - (today.getTime() - expectedDifference);
|
|
1008
|
+
let isCorrect = true;
|
|
1009
|
+
if (todayToCurrentDate >= actualDifference) {
|
|
1010
|
+
console.warn("The date used to check the validity of the ID falls out of the validity period");
|
|
1011
|
+
isCorrect = false;
|
|
1012
|
+
if (!queryResultErrors[circuitName]) {
|
|
1013
|
+
queryResultErrors[circuitName] = {};
|
|
1014
|
+
}
|
|
1015
|
+
queryResultErrors[circuitName].date = {
|
|
1016
|
+
expected: `Difference: ${validity} seconds`,
|
|
1017
|
+
received: `Difference: ${Math.round(todayToCurrentDate / 1e3)} seconds`,
|
|
1018
|
+
message: "The date used to check the validity of the ID falls out of the validity period"
|
|
1019
|
+
};
|
|
1020
|
+
}
|
|
1021
|
+
return { isCorrect, queryResultErrors };
|
|
1022
|
+
}
|
|
1038
1023
|
static async checkPublicInputs(domain, proofs, queryResult, validity, scope) {
|
|
1039
1024
|
let commitmentIn;
|
|
1040
1025
|
let commitmentOut;
|
|
@@ -1163,14 +1148,9 @@ var PublicInputChecker = class {
|
|
|
1163
1148
|
if (!!committedInputs?.compare_age || !!committedInputs?.compare_age_evm) {
|
|
1164
1149
|
const ageCommittedInputs = committedInputs?.compare_age ?? committedInputs?.compare_age_evm;
|
|
1165
1150
|
const ageParameterCommitment = isForEVM ? await (0, import_utils.getAgeEVMParameterCommitment)(
|
|
1166
|
-
ageCommittedInputs.currentDateTimestamp,
|
|
1167
|
-
ageCommittedInputs.minAge,
|
|
1168
|
-
ageCommittedInputs.maxAge
|
|
1169
|
-
) : await (0, import_utils.getAgeParameterCommitment)(
|
|
1170
|
-
ageCommittedInputs.currentDateTimestamp,
|
|
1171
1151
|
ageCommittedInputs.minAge,
|
|
1172
1152
|
ageCommittedInputs.maxAge
|
|
1173
|
-
);
|
|
1153
|
+
) : await (0, import_utils.getAgeParameterCommitment)(ageCommittedInputs.minAge, ageCommittedInputs.maxAge);
|
|
1174
1154
|
if (!paramCommitments.includes(ageParameterCommitment)) {
|
|
1175
1155
|
console.warn("This proof does not verify the age");
|
|
1176
1156
|
isCorrect = false;
|
|
@@ -1194,16 +1174,12 @@ var PublicInputChecker = class {
|
|
|
1194
1174
|
const birthdateCommittedInputs = committedInputs?.compare_birthdate ?? committedInputs?.compare_birthdate_evm;
|
|
1195
1175
|
const birthdateParameterCommitment = isForEVM ? await (0, import_utils.getDateEVMParameterCommitment)(
|
|
1196
1176
|
import_utils.ProofType.BIRTHDATE,
|
|
1197
|
-
birthdateCommittedInputs.currentDateTimestamp,
|
|
1198
1177
|
birthdateCommittedInputs.minDateTimestamp,
|
|
1199
|
-
birthdateCommittedInputs.maxDateTimestamp
|
|
1200
|
-
0
|
|
1178
|
+
birthdateCommittedInputs.maxDateTimestamp
|
|
1201
1179
|
) : await (0, import_utils.getDateParameterCommitment)(
|
|
1202
1180
|
import_utils.ProofType.BIRTHDATE,
|
|
1203
|
-
birthdateCommittedInputs.currentDateTimestamp,
|
|
1204
1181
|
birthdateCommittedInputs.minDateTimestamp,
|
|
1205
|
-
birthdateCommittedInputs.maxDateTimestamp
|
|
1206
|
-
0
|
|
1182
|
+
birthdateCommittedInputs.maxDateTimestamp
|
|
1207
1183
|
);
|
|
1208
1184
|
if (!paramCommitments.includes(birthdateParameterCommitment)) {
|
|
1209
1185
|
console.warn("This proof does not verify the birthdate");
|
|
@@ -1228,12 +1204,10 @@ var PublicInputChecker = class {
|
|
|
1228
1204
|
const expiryCommittedInputs = committedInputs?.compare_expiry ?? committedInputs?.compare_expiry_evm;
|
|
1229
1205
|
const expiryParameterCommitment = isForEVM ? await (0, import_utils.getDateEVMParameterCommitment)(
|
|
1230
1206
|
import_utils.ProofType.EXPIRY_DATE,
|
|
1231
|
-
expiryCommittedInputs.currentDateTimestamp,
|
|
1232
1207
|
expiryCommittedInputs.minDateTimestamp,
|
|
1233
1208
|
expiryCommittedInputs.maxDateTimestamp
|
|
1234
1209
|
) : await (0, import_utils.getDateParameterCommitment)(
|
|
1235
1210
|
import_utils.ProofType.EXPIRY_DATE,
|
|
1236
|
-
expiryCommittedInputs.currentDateTimestamp,
|
|
1237
1211
|
expiryCommittedInputs.minDateTimestamp,
|
|
1238
1212
|
expiryCommittedInputs.maxDateTimestamp
|
|
1239
1213
|
);
|
|
@@ -1437,7 +1411,11 @@ var PublicInputChecker = class {
|
|
|
1437
1411
|
if (!!committedInputs?.exclusion_check_sanctions || !!committedInputs?.exclusion_check_sanctions_evm) {
|
|
1438
1412
|
const sanctionsBuilder = await import_utils.SanctionsBuilder.create();
|
|
1439
1413
|
const exclusionCheckSanctionsCommittedInputs = committedInputs?.exclusion_check_sanctions ?? committedInputs?.exclusion_check_sanctions_evm;
|
|
1440
|
-
const exclusionCheckSanctionsParameterCommitment = isForEVM ? await sanctionsBuilder.getSanctionsEvmParameterCommitment(
|
|
1414
|
+
const exclusionCheckSanctionsParameterCommitment = isForEVM ? await sanctionsBuilder.getSanctionsEvmParameterCommitment(
|
|
1415
|
+
exclusionCheckSanctionsCommittedInputs.isStrict
|
|
1416
|
+
) : await sanctionsBuilder.getSanctionsParameterCommitment(
|
|
1417
|
+
exclusionCheckSanctionsCommittedInputs.isStrict
|
|
1418
|
+
);
|
|
1441
1419
|
if (!paramCommitments.includes(exclusionCheckSanctionsParameterCommitment)) {
|
|
1442
1420
|
console.warn("This proof does not verify the exclusion from the sanction lists");
|
|
1443
1421
|
isCorrect = false;
|
|
@@ -1546,24 +1524,6 @@ var PublicInputChecker = class {
|
|
|
1546
1524
|
};
|
|
1547
1525
|
}
|
|
1548
1526
|
commitmentOut = (0, import_utils.getCommitmentOutFromIntegrityProof)(proofData);
|
|
1549
|
-
const currentDate = (0, import_utils.getCurrentDateFromIntegrityProof)(proofData);
|
|
1550
|
-
const todayToCurrentDate = today.getTime() - currentDate.getTime();
|
|
1551
|
-
const expectedDifference = validity ? validity * 1e3 : DEFAULT_VALIDITY * 1e3;
|
|
1552
|
-
const actualDifference = today.getTime() - (today.getTime() - expectedDifference);
|
|
1553
|
-
if (todayToCurrentDate >= actualDifference) {
|
|
1554
|
-
console.warn(
|
|
1555
|
-
`The date used to check the validity of the ID is older than the validity period`
|
|
1556
|
-
);
|
|
1557
|
-
isCorrect = false;
|
|
1558
|
-
queryResultErrors.data_check_integrity = {
|
|
1559
|
-
...queryResultErrors.data_check_integrity,
|
|
1560
|
-
date: {
|
|
1561
|
-
expected: `Difference: ${validity} seconds`,
|
|
1562
|
-
received: `Difference: ${Math.round(todayToCurrentDate / 1e3)} seconds`,
|
|
1563
|
-
message: "The date used to check the validity of the ID is older than the validity period"
|
|
1564
|
-
}
|
|
1565
|
-
};
|
|
1566
|
-
}
|
|
1567
1527
|
} else if (proof.name === "disclose_bytes") {
|
|
1568
1528
|
commitmentIn = (0, import_utils.getCommitmentInFromDisclosureProof)(proofData);
|
|
1569
1529
|
if (commitmentIn !== commitmentOut) {
|
|
@@ -1616,6 +1576,17 @@ var PublicInputChecker = class {
|
|
|
1616
1576
|
...queryResultErrorsDisclose,
|
|
1617
1577
|
...queryResultErrorsScope
|
|
1618
1578
|
};
|
|
1579
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1580
|
+
"disclose",
|
|
1581
|
+
proofData,
|
|
1582
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1583
|
+
queryResultErrors
|
|
1584
|
+
);
|
|
1585
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1586
|
+
queryResultErrors = {
|
|
1587
|
+
...queryResultErrors,
|
|
1588
|
+
...queryResultErrorsCurrentDate
|
|
1589
|
+
};
|
|
1619
1590
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1620
1591
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1621
1592
|
} else if (proof.name === "compare_age") {
|
|
@@ -1637,7 +1608,6 @@ var PublicInputChecker = class {
|
|
|
1637
1608
|
const paramCommitment = (0, import_utils.getParameterCommitmentFromDisclosureProof)(proofData);
|
|
1638
1609
|
const committedInputs = proof.committedInputs?.compare_age;
|
|
1639
1610
|
const calculatedParamCommitment = await (0, import_utils.getAgeParameterCommitment)(
|
|
1640
|
-
committedInputs.currentDateTimestamp,
|
|
1641
1611
|
committedInputs.minAge,
|
|
1642
1612
|
committedInputs.maxAge
|
|
1643
1613
|
);
|
|
@@ -1663,6 +1633,17 @@ var PublicInputChecker = class {
|
|
|
1663
1633
|
...queryResultErrorsAge,
|
|
1664
1634
|
...queryResultErrorsScope
|
|
1665
1635
|
};
|
|
1636
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1637
|
+
"age",
|
|
1638
|
+
proofData,
|
|
1639
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1640
|
+
queryResultErrors
|
|
1641
|
+
);
|
|
1642
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1643
|
+
queryResultErrors = {
|
|
1644
|
+
...queryResultErrors,
|
|
1645
|
+
...queryResultErrorsCurrentDate
|
|
1646
|
+
};
|
|
1666
1647
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1667
1648
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1668
1649
|
} else if (proof.name === "compare_birthdate") {
|
|
@@ -1685,7 +1666,6 @@ var PublicInputChecker = class {
|
|
|
1685
1666
|
const committedInputs = proof.committedInputs?.compare_birthdate;
|
|
1686
1667
|
const calculatedParamCommitment = await (0, import_utils.getDateParameterCommitment)(
|
|
1687
1668
|
import_utils.ProofType.BIRTHDATE,
|
|
1688
|
-
committedInputs.currentDateTimestamp,
|
|
1689
1669
|
committedInputs.minDateTimestamp,
|
|
1690
1670
|
committedInputs.maxDateTimestamp,
|
|
1691
1671
|
0
|
|
@@ -1718,6 +1698,17 @@ var PublicInputChecker = class {
|
|
|
1718
1698
|
...queryResultErrorsBirthdate,
|
|
1719
1699
|
...queryResultErrorsScope
|
|
1720
1700
|
};
|
|
1701
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1702
|
+
"birthdate",
|
|
1703
|
+
proofData,
|
|
1704
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1705
|
+
queryResultErrors
|
|
1706
|
+
);
|
|
1707
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1708
|
+
queryResultErrors = {
|
|
1709
|
+
...queryResultErrors,
|
|
1710
|
+
...queryResultErrorsCurrentDate
|
|
1711
|
+
};
|
|
1721
1712
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1722
1713
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1723
1714
|
} else if (proof.name === "compare_expiry") {
|
|
@@ -1740,7 +1731,6 @@ var PublicInputChecker = class {
|
|
|
1740
1731
|
const committedInputs = proof.committedInputs?.compare_expiry;
|
|
1741
1732
|
const calculatedParamCommitment = await (0, import_utils.getDateParameterCommitment)(
|
|
1742
1733
|
import_utils.ProofType.EXPIRY_DATE,
|
|
1743
|
-
committedInputs.currentDateTimestamp,
|
|
1744
1734
|
committedInputs.minDateTimestamp,
|
|
1745
1735
|
committedInputs.maxDateTimestamp
|
|
1746
1736
|
);
|
|
@@ -1772,6 +1762,17 @@ var PublicInputChecker = class {
|
|
|
1772
1762
|
...queryResultErrorsExpiryDate,
|
|
1773
1763
|
...queryResultErrorsScope
|
|
1774
1764
|
};
|
|
1765
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1766
|
+
"expiry_date",
|
|
1767
|
+
proofData,
|
|
1768
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1769
|
+
queryResultErrors
|
|
1770
|
+
);
|
|
1771
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1772
|
+
queryResultErrors = {
|
|
1773
|
+
...queryResultErrors,
|
|
1774
|
+
...queryResultErrorsCurrentDate
|
|
1775
|
+
};
|
|
1775
1776
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1776
1777
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1777
1778
|
} else if (proof.name === "exclusion_check_nationality") {
|
|
@@ -1828,6 +1829,17 @@ var PublicInputChecker = class {
|
|
|
1828
1829
|
...queryResultErrorsNationalityExclusion,
|
|
1829
1830
|
...queryResultErrorsScope
|
|
1830
1831
|
};
|
|
1832
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1833
|
+
"nationality",
|
|
1834
|
+
proofData,
|
|
1835
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1836
|
+
queryResultErrors
|
|
1837
|
+
);
|
|
1838
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1839
|
+
queryResultErrors = {
|
|
1840
|
+
...queryResultErrors,
|
|
1841
|
+
...queryResultErrorsCurrentDate
|
|
1842
|
+
};
|
|
1831
1843
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1832
1844
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1833
1845
|
} else if (proof.name === "exclusion_check_issuing_country") {
|
|
@@ -1884,6 +1896,17 @@ var PublicInputChecker = class {
|
|
|
1884
1896
|
...queryResultErrorsIssuingCountryExclusion,
|
|
1885
1897
|
...queryResultErrorsScope
|
|
1886
1898
|
};
|
|
1899
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1900
|
+
"issuing_country",
|
|
1901
|
+
proofData,
|
|
1902
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1903
|
+
queryResultErrors
|
|
1904
|
+
);
|
|
1905
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1906
|
+
queryResultErrors = {
|
|
1907
|
+
...queryResultErrors,
|
|
1908
|
+
...queryResultErrorsCurrentDate
|
|
1909
|
+
};
|
|
1887
1910
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1888
1911
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1889
1912
|
} else if (proof.name === "inclusion_check_nationality") {
|
|
@@ -1940,6 +1963,17 @@ var PublicInputChecker = class {
|
|
|
1940
1963
|
...queryResultErrorsNationalityInclusion,
|
|
1941
1964
|
...queryResultErrorsScope
|
|
1942
1965
|
};
|
|
1966
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
1967
|
+
"nationality",
|
|
1968
|
+
proofData,
|
|
1969
|
+
validity ?? DEFAULT_VALIDITY,
|
|
1970
|
+
queryResultErrors
|
|
1971
|
+
);
|
|
1972
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
1973
|
+
queryResultErrors = {
|
|
1974
|
+
...queryResultErrors,
|
|
1975
|
+
...queryResultErrorsCurrentDate
|
|
1976
|
+
};
|
|
1943
1977
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
1944
1978
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
1945
1979
|
} else if (proof.name === "inclusion_check_issuing_country") {
|
|
@@ -1996,6 +2030,17 @@ var PublicInputChecker = class {
|
|
|
1996
2030
|
...queryResultErrorsIssuingCountryInclusion,
|
|
1997
2031
|
...queryResultErrorsScope
|
|
1998
2032
|
};
|
|
2033
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
2034
|
+
"issuing_country",
|
|
2035
|
+
proofData,
|
|
2036
|
+
validity ?? DEFAULT_VALIDITY,
|
|
2037
|
+
queryResultErrors
|
|
2038
|
+
);
|
|
2039
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
2040
|
+
queryResultErrors = {
|
|
2041
|
+
...queryResultErrors,
|
|
2042
|
+
...queryResultErrorsCurrentDate
|
|
2043
|
+
};
|
|
1999
2044
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
2000
2045
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
2001
2046
|
} else if (proof.name === "bind") {
|
|
@@ -2022,12 +2067,25 @@ var PublicInputChecker = class {
|
|
|
2022
2067
|
...queryResultErrors,
|
|
2023
2068
|
...queryResultErrorsBind
|
|
2024
2069
|
};
|
|
2070
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
2071
|
+
"bind",
|
|
2072
|
+
proofData,
|
|
2073
|
+
validity ?? DEFAULT_VALIDITY,
|
|
2074
|
+
queryResultErrors
|
|
2075
|
+
);
|
|
2076
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
2077
|
+
queryResultErrors = {
|
|
2078
|
+
...queryResultErrors,
|
|
2079
|
+
...queryResultErrorsCurrentDate
|
|
2080
|
+
};
|
|
2025
2081
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
2026
2082
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
2027
2083
|
} else if (proof.name === "exclusion_check_sanctions") {
|
|
2028
2084
|
const sanctionsBuilder = await import_utils.SanctionsBuilder.create();
|
|
2029
2085
|
const exclusionCheckSanctionsCommittedInputs = proof.committedInputs?.exclusion_check_sanctions;
|
|
2030
|
-
const calculatedParamCommitment = await sanctionsBuilder.getSanctionsParameterCommitment(
|
|
2086
|
+
const calculatedParamCommitment = await sanctionsBuilder.getSanctionsParameterCommitment(
|
|
2087
|
+
exclusionCheckSanctionsCommittedInputs.isStrict
|
|
2088
|
+
);
|
|
2031
2089
|
const paramCommittment = (0, import_utils.getParameterCommitmentFromDisclosureProof)(proofData);
|
|
2032
2090
|
if (paramCommittment !== calculatedParamCommitment) {
|
|
2033
2091
|
console.warn(
|
|
@@ -2056,6 +2114,17 @@ var PublicInputChecker = class {
|
|
|
2056
2114
|
...queryResultErrors,
|
|
2057
2115
|
...queryResultErrorsSanctionsExclusion
|
|
2058
2116
|
};
|
|
2117
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
2118
|
+
"sanctions",
|
|
2119
|
+
proofData,
|
|
2120
|
+
validity ?? DEFAULT_VALIDITY,
|
|
2121
|
+
queryResultErrors
|
|
2122
|
+
);
|
|
2123
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
2124
|
+
queryResultErrors = {
|
|
2125
|
+
...queryResultErrors,
|
|
2126
|
+
...queryResultErrorsCurrentDate
|
|
2127
|
+
};
|
|
2059
2128
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
2060
2129
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
2061
2130
|
} else if (proof.name?.startsWith("facematch") && !proof.name?.endsWith("_evm")) {
|
|
@@ -2085,6 +2154,17 @@ var PublicInputChecker = class {
|
|
|
2085
2154
|
...queryResultErrors,
|
|
2086
2155
|
...queryResultErrorsFacematch
|
|
2087
2156
|
};
|
|
2157
|
+
const { isCorrect: isCorrectCurrentDate, queryResultErrors: queryResultErrorsCurrentDate } = await this.checkCurrentDate(
|
|
2158
|
+
"facematch",
|
|
2159
|
+
proofData,
|
|
2160
|
+
validity ?? DEFAULT_VALIDITY,
|
|
2161
|
+
queryResultErrors
|
|
2162
|
+
);
|
|
2163
|
+
isCorrect = isCorrect && isCorrectCurrentDate;
|
|
2164
|
+
queryResultErrors = {
|
|
2165
|
+
...queryResultErrors,
|
|
2166
|
+
...queryResultErrorsCurrentDate
|
|
2167
|
+
};
|
|
2088
2168
|
uniqueIdentifier = (0, import_utils.getNullifierFromDisclosureProof)(proofData).toString(10);
|
|
2089
2169
|
uniqueIdentifierType = (0, import_utils.getNullifierTypeFromDisclosureProof)(proofData);
|
|
2090
2170
|
}
|
|
@@ -2148,14 +2228,12 @@ var ZKPassportVerifier_default = {
|
|
|
2148
2228
|
type: "function",
|
|
2149
2229
|
name: "enforceSanctionsRoot",
|
|
2150
2230
|
inputs: [
|
|
2231
|
+
{ name: "isStrict", type: "bool", internalType: "bool" },
|
|
2151
2232
|
{
|
|
2152
2233
|
name: "commitments",
|
|
2153
2234
|
type: "tuple",
|
|
2154
2235
|
internalType: "struct Commitments",
|
|
2155
|
-
components: [
|
|
2156
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2157
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2158
|
-
]
|
|
2236
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2159
2237
|
}
|
|
2160
2238
|
],
|
|
2161
2239
|
outputs: [],
|
|
@@ -2169,10 +2247,7 @@ var ZKPassportVerifier_default = {
|
|
|
2169
2247
|
name: "commitments",
|
|
2170
2248
|
type: "tuple",
|
|
2171
2249
|
internalType: "struct Commitments",
|
|
2172
|
-
components: [
|
|
2173
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2174
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2175
|
-
]
|
|
2250
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2176
2251
|
}
|
|
2177
2252
|
],
|
|
2178
2253
|
outputs: [
|
|
@@ -2197,10 +2272,7 @@ var ZKPassportVerifier_default = {
|
|
|
2197
2272
|
name: "commitments",
|
|
2198
2273
|
type: "tuple",
|
|
2199
2274
|
internalType: "struct Commitments",
|
|
2200
|
-
components: [
|
|
2201
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2202
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2203
|
-
]
|
|
2275
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2204
2276
|
},
|
|
2205
2277
|
{ name: "isIDCard", type: "bool", internalType: "bool" }
|
|
2206
2278
|
],
|
|
@@ -2232,21 +2304,7 @@ var ZKPassportVerifier_default = {
|
|
|
2232
2304
|
name: "commitments",
|
|
2233
2305
|
type: "tuple",
|
|
2234
2306
|
internalType: "struct Commitments",
|
|
2235
|
-
components: [
|
|
2236
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2237
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2238
|
-
]
|
|
2239
|
-
},
|
|
2240
|
-
{
|
|
2241
|
-
name: "serviceConfig",
|
|
2242
|
-
type: "tuple",
|
|
2243
|
-
internalType: "struct ServiceConfig",
|
|
2244
|
-
components: [
|
|
2245
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2246
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2247
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2248
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2249
|
-
]
|
|
2307
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2250
2308
|
}
|
|
2251
2309
|
],
|
|
2252
2310
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2261,21 +2319,7 @@ var ZKPassportVerifier_default = {
|
|
|
2261
2319
|
name: "commitments",
|
|
2262
2320
|
type: "tuple",
|
|
2263
2321
|
internalType: "struct Commitments",
|
|
2264
|
-
components: [
|
|
2265
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2266
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2267
|
-
]
|
|
2268
|
-
},
|
|
2269
|
-
{
|
|
2270
|
-
name: "serviceConfig",
|
|
2271
|
-
type: "tuple",
|
|
2272
|
-
internalType: "struct ServiceConfig",
|
|
2273
|
-
components: [
|
|
2274
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2275
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2276
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2277
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2278
|
-
]
|
|
2322
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2279
2323
|
}
|
|
2280
2324
|
],
|
|
2281
2325
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2290,21 +2334,7 @@ var ZKPassportVerifier_default = {
|
|
|
2290
2334
|
name: "commitments",
|
|
2291
2335
|
type: "tuple",
|
|
2292
2336
|
internalType: "struct Commitments",
|
|
2293
|
-
components: [
|
|
2294
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2295
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2296
|
-
]
|
|
2297
|
-
},
|
|
2298
|
-
{
|
|
2299
|
-
name: "serviceConfig",
|
|
2300
|
-
type: "tuple",
|
|
2301
|
-
internalType: "struct ServiceConfig",
|
|
2302
|
-
components: [
|
|
2303
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2304
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2305
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2306
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2307
|
-
]
|
|
2337
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2308
2338
|
}
|
|
2309
2339
|
],
|
|
2310
2340
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2319,21 +2349,7 @@ var ZKPassportVerifier_default = {
|
|
|
2319
2349
|
name: "commitments",
|
|
2320
2350
|
type: "tuple",
|
|
2321
2351
|
internalType: "struct Commitments",
|
|
2322
|
-
components: [
|
|
2323
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2324
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2325
|
-
]
|
|
2326
|
-
},
|
|
2327
|
-
{
|
|
2328
|
-
name: "serviceConfig",
|
|
2329
|
-
type: "tuple",
|
|
2330
|
-
internalType: "struct ServiceConfig",
|
|
2331
|
-
components: [
|
|
2332
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2333
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2334
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2335
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2336
|
-
]
|
|
2352
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2337
2353
|
}
|
|
2338
2354
|
],
|
|
2339
2355
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2349,21 +2365,7 @@ var ZKPassportVerifier_default = {
|
|
|
2349
2365
|
name: "commitments",
|
|
2350
2366
|
type: "tuple",
|
|
2351
2367
|
internalType: "struct Commitments",
|
|
2352
|
-
components: [
|
|
2353
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2354
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2355
|
-
]
|
|
2356
|
-
},
|
|
2357
|
-
{
|
|
2358
|
-
name: "serviceConfig",
|
|
2359
|
-
type: "tuple",
|
|
2360
|
-
internalType: "struct ServiceConfig",
|
|
2361
|
-
components: [
|
|
2362
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2363
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2364
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2365
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2366
|
-
]
|
|
2368
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2367
2369
|
}
|
|
2368
2370
|
],
|
|
2369
2371
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2378,21 +2380,7 @@ var ZKPassportVerifier_default = {
|
|
|
2378
2380
|
name: "commitments",
|
|
2379
2381
|
type: "tuple",
|
|
2380
2382
|
internalType: "struct Commitments",
|
|
2381
|
-
components: [
|
|
2382
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2383
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2384
|
-
]
|
|
2385
|
-
},
|
|
2386
|
-
{
|
|
2387
|
-
name: "serviceConfig",
|
|
2388
|
-
type: "tuple",
|
|
2389
|
-
internalType: "struct ServiceConfig",
|
|
2390
|
-
components: [
|
|
2391
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2392
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2393
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2394
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2395
|
-
]
|
|
2383
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2396
2384
|
}
|
|
2397
2385
|
],
|
|
2398
2386
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2407,21 +2395,7 @@ var ZKPassportVerifier_default = {
|
|
|
2407
2395
|
name: "commitments",
|
|
2408
2396
|
type: "tuple",
|
|
2409
2397
|
internalType: "struct Commitments",
|
|
2410
|
-
components: [
|
|
2411
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2412
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2413
|
-
]
|
|
2414
|
-
},
|
|
2415
|
-
{
|
|
2416
|
-
name: "serviceConfig",
|
|
2417
|
-
type: "tuple",
|
|
2418
|
-
internalType: "struct ServiceConfig",
|
|
2419
|
-
components: [
|
|
2420
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2421
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2422
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2423
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2424
|
-
]
|
|
2398
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2425
2399
|
}
|
|
2426
2400
|
],
|
|
2427
2401
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2436,21 +2410,7 @@ var ZKPassportVerifier_default = {
|
|
|
2436
2410
|
name: "commitments",
|
|
2437
2411
|
type: "tuple",
|
|
2438
2412
|
internalType: "struct Commitments",
|
|
2439
|
-
components: [
|
|
2440
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2441
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2442
|
-
]
|
|
2443
|
-
},
|
|
2444
|
-
{
|
|
2445
|
-
name: "serviceConfig",
|
|
2446
|
-
type: "tuple",
|
|
2447
|
-
internalType: "struct ServiceConfig",
|
|
2448
|
-
components: [
|
|
2449
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2450
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2451
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2452
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2453
|
-
]
|
|
2413
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2454
2414
|
}
|
|
2455
2415
|
],
|
|
2456
2416
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2465,21 +2425,7 @@ var ZKPassportVerifier_default = {
|
|
|
2465
2425
|
name: "commitments",
|
|
2466
2426
|
type: "tuple",
|
|
2467
2427
|
internalType: "struct Commitments",
|
|
2468
|
-
components: [
|
|
2469
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2470
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2471
|
-
]
|
|
2472
|
-
},
|
|
2473
|
-
{
|
|
2474
|
-
name: "serviceConfig",
|
|
2475
|
-
type: "tuple",
|
|
2476
|
-
internalType: "struct ServiceConfig",
|
|
2477
|
-
components: [
|
|
2478
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2479
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2480
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2481
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2482
|
-
]
|
|
2428
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2483
2429
|
}
|
|
2484
2430
|
],
|
|
2485
2431
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2494,21 +2440,7 @@ var ZKPassportVerifier_default = {
|
|
|
2494
2440
|
name: "commitments",
|
|
2495
2441
|
type: "tuple",
|
|
2496
2442
|
internalType: "struct Commitments",
|
|
2497
|
-
components: [
|
|
2498
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2499
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2500
|
-
]
|
|
2501
|
-
},
|
|
2502
|
-
{
|
|
2503
|
-
name: "serviceConfig",
|
|
2504
|
-
type: "tuple",
|
|
2505
|
-
internalType: "struct ServiceConfig",
|
|
2506
|
-
components: [
|
|
2507
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2508
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2509
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2510
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2511
|
-
]
|
|
2443
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2512
2444
|
}
|
|
2513
2445
|
],
|
|
2514
2446
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2524,21 +2456,7 @@ var ZKPassportVerifier_default = {
|
|
|
2524
2456
|
name: "commitments",
|
|
2525
2457
|
type: "tuple",
|
|
2526
2458
|
internalType: "struct Commitments",
|
|
2527
|
-
components: [
|
|
2528
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2529
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2530
|
-
]
|
|
2531
|
-
},
|
|
2532
|
-
{
|
|
2533
|
-
name: "serviceConfig",
|
|
2534
|
-
type: "tuple",
|
|
2535
|
-
internalType: "struct ServiceConfig",
|
|
2536
|
-
components: [
|
|
2537
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2538
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2539
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2540
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2541
|
-
]
|
|
2459
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2542
2460
|
}
|
|
2543
2461
|
],
|
|
2544
2462
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2553,21 +2471,7 @@ var ZKPassportVerifier_default = {
|
|
|
2553
2471
|
name: "commitments",
|
|
2554
2472
|
type: "tuple",
|
|
2555
2473
|
internalType: "struct Commitments",
|
|
2556
|
-
components: [
|
|
2557
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2558
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2559
|
-
]
|
|
2560
|
-
},
|
|
2561
|
-
{
|
|
2562
|
-
name: "serviceConfig",
|
|
2563
|
-
type: "tuple",
|
|
2564
|
-
internalType: "struct ServiceConfig",
|
|
2565
|
-
components: [
|
|
2566
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2567
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2568
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2569
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2570
|
-
]
|
|
2474
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2571
2475
|
}
|
|
2572
2476
|
],
|
|
2573
2477
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2582,21 +2486,7 @@ var ZKPassportVerifier_default = {
|
|
|
2582
2486
|
name: "commitments",
|
|
2583
2487
|
type: "tuple",
|
|
2584
2488
|
internalType: "struct Commitments",
|
|
2585
|
-
components: [
|
|
2586
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2587
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2588
|
-
]
|
|
2589
|
-
},
|
|
2590
|
-
{
|
|
2591
|
-
name: "serviceConfig",
|
|
2592
|
-
type: "tuple",
|
|
2593
|
-
internalType: "struct ServiceConfig",
|
|
2594
|
-
components: [
|
|
2595
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2596
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2597
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2598
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2599
|
-
]
|
|
2489
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2600
2490
|
}
|
|
2601
2491
|
],
|
|
2602
2492
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2611,21 +2501,7 @@ var ZKPassportVerifier_default = {
|
|
|
2611
2501
|
name: "commitments",
|
|
2612
2502
|
type: "tuple",
|
|
2613
2503
|
internalType: "struct Commitments",
|
|
2614
|
-
components: [
|
|
2615
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2616
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2617
|
-
]
|
|
2618
|
-
},
|
|
2619
|
-
{
|
|
2620
|
-
name: "serviceConfig",
|
|
2621
|
-
type: "tuple",
|
|
2622
|
-
internalType: "struct ServiceConfig",
|
|
2623
|
-
components: [
|
|
2624
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2625
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2626
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2627
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2628
|
-
]
|
|
2504
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2629
2505
|
}
|
|
2630
2506
|
],
|
|
2631
2507
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2640,21 +2516,7 @@ var ZKPassportVerifier_default = {
|
|
|
2640
2516
|
name: "commitments",
|
|
2641
2517
|
type: "tuple",
|
|
2642
2518
|
internalType: "struct Commitments",
|
|
2643
|
-
components: [
|
|
2644
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2645
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2646
|
-
]
|
|
2647
|
-
},
|
|
2648
|
-
{
|
|
2649
|
-
name: "serviceConfig",
|
|
2650
|
-
type: "tuple",
|
|
2651
|
-
internalType: "struct ServiceConfig",
|
|
2652
|
-
components: [
|
|
2653
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2654
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2655
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2656
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2657
|
-
]
|
|
2519
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2658
2520
|
}
|
|
2659
2521
|
],
|
|
2660
2522
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2669,21 +2531,7 @@ var ZKPassportVerifier_default = {
|
|
|
2669
2531
|
name: "commitments",
|
|
2670
2532
|
type: "tuple",
|
|
2671
2533
|
internalType: "struct Commitments",
|
|
2672
|
-
components: [
|
|
2673
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2674
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2675
|
-
]
|
|
2676
|
-
},
|
|
2677
|
-
{
|
|
2678
|
-
name: "serviceConfig",
|
|
2679
|
-
type: "tuple",
|
|
2680
|
-
internalType: "struct ServiceConfig",
|
|
2681
|
-
components: [
|
|
2682
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2683
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2684
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2685
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2686
|
-
]
|
|
2534
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2687
2535
|
}
|
|
2688
2536
|
],
|
|
2689
2537
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2699,21 +2547,7 @@ var ZKPassportVerifier_default = {
|
|
|
2699
2547
|
name: "commitments",
|
|
2700
2548
|
type: "tuple",
|
|
2701
2549
|
internalType: "struct Commitments",
|
|
2702
|
-
components: [
|
|
2703
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2704
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2705
|
-
]
|
|
2706
|
-
},
|
|
2707
|
-
{
|
|
2708
|
-
name: "serviceConfig",
|
|
2709
|
-
type: "tuple",
|
|
2710
|
-
internalType: "struct ServiceConfig",
|
|
2711
|
-
components: [
|
|
2712
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2713
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2714
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2715
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2716
|
-
]
|
|
2550
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2717
2551
|
}
|
|
2718
2552
|
],
|
|
2719
2553
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2728,21 +2562,7 @@ var ZKPassportVerifier_default = {
|
|
|
2728
2562
|
name: "commitments",
|
|
2729
2563
|
type: "tuple",
|
|
2730
2564
|
internalType: "struct Commitments",
|
|
2731
|
-
components: [
|
|
2732
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2733
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2734
|
-
]
|
|
2735
|
-
},
|
|
2736
|
-
{
|
|
2737
|
-
name: "serviceConfig",
|
|
2738
|
-
type: "tuple",
|
|
2739
|
-
internalType: "struct ServiceConfig",
|
|
2740
|
-
components: [
|
|
2741
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2742
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2743
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2744
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2745
|
-
]
|
|
2565
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2746
2566
|
}
|
|
2747
2567
|
],
|
|
2748
2568
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2758,21 +2578,7 @@ var ZKPassportVerifier_default = {
|
|
|
2758
2578
|
name: "commitments",
|
|
2759
2579
|
type: "tuple",
|
|
2760
2580
|
internalType: "struct Commitments",
|
|
2761
|
-
components: [
|
|
2762
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2763
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2764
|
-
]
|
|
2765
|
-
},
|
|
2766
|
-
{
|
|
2767
|
-
name: "serviceConfig",
|
|
2768
|
-
type: "tuple",
|
|
2769
|
-
internalType: "struct ServiceConfig",
|
|
2770
|
-
components: [
|
|
2771
|
-
{ name: "validityPeriodInSeconds", type: "uint256", internalType: "uint256" },
|
|
2772
|
-
{ name: "domain", type: "string", internalType: "string" },
|
|
2773
|
-
{ name: "scope", type: "string", internalType: "string" },
|
|
2774
|
-
{ name: "devMode", type: "bool", internalType: "bool" }
|
|
2775
|
-
]
|
|
2581
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2776
2582
|
}
|
|
2777
2583
|
],
|
|
2778
2584
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2787,10 +2593,7 @@ var ZKPassportVerifier_default = {
|
|
|
2787
2593
|
name: "commitments",
|
|
2788
2594
|
type: "tuple",
|
|
2789
2595
|
internalType: "struct Commitments",
|
|
2790
|
-
components: [
|
|
2791
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2792
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2793
|
-
]
|
|
2596
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2794
2597
|
}
|
|
2795
2598
|
],
|
|
2796
2599
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2805,10 +2608,7 @@ var ZKPassportVerifier_default = {
|
|
|
2805
2608
|
name: "commitments",
|
|
2806
2609
|
type: "tuple",
|
|
2807
2610
|
internalType: "struct Commitments",
|
|
2808
|
-
components: [
|
|
2809
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2810
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2811
|
-
]
|
|
2611
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2812
2612
|
}
|
|
2813
2613
|
],
|
|
2814
2614
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2823,10 +2623,7 @@ var ZKPassportVerifier_default = {
|
|
|
2823
2623
|
name: "commitments",
|
|
2824
2624
|
type: "tuple",
|
|
2825
2625
|
internalType: "struct Commitments",
|
|
2826
|
-
components: [
|
|
2827
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2828
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2829
|
-
]
|
|
2626
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2830
2627
|
}
|
|
2831
2628
|
],
|
|
2832
2629
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2841,10 +2638,7 @@ var ZKPassportVerifier_default = {
|
|
|
2841
2638
|
name: "commitments",
|
|
2842
2639
|
type: "tuple",
|
|
2843
2640
|
internalType: "struct Commitments",
|
|
2844
|
-
components: [
|
|
2845
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" },
|
|
2846
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2847
|
-
]
|
|
2641
|
+
components: [{ name: "committedInputs", type: "bytes", internalType: "bytes" }]
|
|
2848
2642
|
}
|
|
2849
2643
|
],
|
|
2850
2644
|
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
@@ -2916,8 +2710,7 @@ var ZKPassportVerifier_default = {
|
|
|
2916
2710
|
type: "tuple",
|
|
2917
2711
|
internalType: "struct Commitments",
|
|
2918
2712
|
components: [
|
|
2919
|
-
{ name: "committedInputs", type: "bytes", internalType: "bytes" }
|
|
2920
|
-
{ name: "committedInputCounts", type: "uint256[]", internalType: "uint256[]" }
|
|
2713
|
+
{ name: "committedInputs", type: "bytes", internalType: "bytes" }
|
|
2921
2714
|
]
|
|
2922
2715
|
},
|
|
2923
2716
|
{
|
|
@@ -3040,47 +2833,47 @@ var ZKPassportVerifier_default = {
|
|
|
3040
2833
|
}
|
|
3041
2834
|
],
|
|
3042
2835
|
bytecode: {
|
|
3043
|
-
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",
|
|
3044
|
-
sourceMap: "706:
|
|
2836
|
+
object: "0x608060405234801561000f575f5ffd5b50604051613c34380380613c3483398101604081905261002e916100f6565b6001600160a01b0381166100945760405162461bcd60e51b8152602060048201526024808201527f526f6f742072656769737472792063616e6e6f74206265207a65726f206164646044820152637265737360e01b606482015260840160405180910390fd5b5f8054336001600160a01b03199182168117909255600280549091166001600160a01b0384161790556040514281527ff29b53747ae7121d0958d490ad3d5cf6767119b0fdbd8389d918de3a12cf5a299060200160405180910390a250610123565b5f60208284031215610106575f5ffd5b81516001600160a01b038116811461011c575f5ffd5b9392505050565b613b04806101305f395ff3fe608060405234801561000f575f5ffd5b506004361061023f575f3560e01c806375829def11610135578063a30470b2116100b4578063c17361df11610079578063c17361df1461053e578063d2bbe05f14610551578063e3e6525e14610564578063e8ba670514610577578063f851a4401461058a575f5ffd5b8063a30470b2146104df578063a6df2c01146104f2578063a72a8a4914610505578063b1bab8f214610518578063b96b161c1461052b575f5ffd5b8063822d00f8116100fa578063822d00f814610473578063847755e3146104935780638d6937b8146104a657806390e44dd7146104b95780639facc38a146104cc575f5ffd5b806375829def146103e7578063782f2497146103fa5780637db36adf1461040d5780637f303f26146104205780638163f23114610433575f5ffd5b80634035b41d116101c15780635c975abb116101865780635c975abb1461039157806364ce783d146103a4578063652ba33d146103b75780636c40d5d6146103bf578063712f5e1c146103c7575f5ffd5b80634035b41d1461031857806341a0e2c2146103425780634736a71414610358578063518e9b921461036b5780635c0578431461037e575f5ffd5b806322eb54d51161020757806322eb54d5146102b957806329354ea6146102cc578063307ad1ee146102df5780633a1e38bd146102f25780633e11569a14610305575f5ffd5b806302298d5614610243578063074bd4e21461026b5780630ed1cb511461028057806316c38b3c1461029357806318677f2a146102a6575b5f5ffd5b610256610251366004612a16565b61059c565b60405190151581526020015b60405180910390f35b61027e610279366004612a66565b6105b2565b005b61025661028e366004612aaa565b610694565b61027e6102a1366004612ac6565b6106fb565b61027e6102b4366004612af5565b61077b565b6102566102c7366004612a16565b610828565b6102566102da366004612b1c565b610841565b6102566102ed366004612aaa565b610b58565b610256610300366004612a16565b610b6d565b610256610313366004612a16565b610b7a565b61032b610326366004612b79565b610b87565b604080519215158352602083019190915201610262565b61034a600181565b604051908152602001610262565b610256610366366004612baf565b61110a565b610256610379366004612a16565b611120565b61025661038c366004612aaa565b61112e565b5f5461025690600160a01b900460ff1681565b6102566103b2366004612aaa565b61113a565b61034a600381565b61034a600281565b6103da6103d5366004612be4565b611241565b6040516102629190612c43565b61027e6103f5366004612af5565b61136c565b610256610408366004612a16565b61143a565b61025661041b366004612d2e565b611448565b61025661042e366004612d2e565b611455565b61045b610441366004612e36565b60016020525f90815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610262565b610486610481366004612e4d565b611462565b6040516102629190612e9b565b6102566104a1366004613017565b6115a2565b61027e6104b43660046130b3565b61176a565b6102566104c73660046130f1565b61182a565b6102566104da366004612a16565b611a50565b6102566104ed366004612d2e565b611a69565b61027e61050036600461311e565b611a76565b610256610513366004612a16565b611ba0565b610256610526366004612a16565b611bb9565b60025461045b906001600160a01b031681565b61025661054c366004612a16565b611bd2565b61025661055f366004612d2e565b611bdf565b610256610572366004612aaa565b611bec565b610256610585366004612baf565b611cf3565b5f5461045b906001600160a01b031681565b5f6105a983600384611d01565b90505b92915050565b5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63a623af24846040518263ffffffff1660e01b81526004016105eb91906131ff565b6040805180830381865af4158015610605573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106299190613211565b91509150801515841515146106855760405162461bcd60e51b815260206004820152601c60248201527f496e76616c69642073616e6374696f6e7320636865636b206d6f64650000000060448201526064015b60405180910390fd5b61068e82611ec6565b50505050565b5f5f8360ff16116106e75760405162461bcd60e51b815260206004820152601e60248201527f4d617820616765206d7573742062652067726561746572207468616e20300000604482015260640161067c565b6105a96106f5600185613249565b8361113a565b5f546001600160a01b031633146107245760405162461bcd60e51b815260040161067c90613262565b5f8054821515600160a01b0260ff60a01b199091161790556040517f9a506b30e47f3823b09f67e4c0dfa5c3d8023b71825b7ceaa97677129128c9c59061077090831515815260200190565b60405180910390a150565b5f546001600160a01b031633146107a45760405162461bcd60e51b815260040161067c90613262565b6001600160a01b0381166108065760405162461bcd60e51b8152602060048201526024808201527f526f6f742072656769737472792063616e6e6f74206265207a65726f206164646044820152637265737360e01b606482015260840161067c565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b5f6105a96108398462015180613299565b600384611f87565b5f5f5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63defa8ed9886040518263ffffffff1660e01b815260040161087e91906131ff565b60a060405180830381865af4158015610899573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108bd91906132ac565b9398509196509450925090505f60018560018111156108de576108de613304565b1490505f8a60028111156108f4576108f4613304565b83600281111561090657610906613304565b1490505f7f2532418a107c5306fa8308c22255792cf77e4a290cbce8a840a642a3e591340b88148015610964575060018b600281111561094857610948613304565b148061096457505f8b600281111561096257610962613304565b145b806109c457507f16700a2d9168a194fc85f237af5829b5a2be05b8ae8ac4879ada34cf54a9c211881480156109c4575060028b60028111156109a8576109a8613304565b14806109c457505f8b60028111156109c2576109c2613304565b145b90505f7f1fa73686cf510f8f85757b0602de0dd72a13e68ae2092462be8b72662e7f179b87148015610a21575060018c6002811115610a0557610a05613304565b1480610a2157505f8c6002811115610a1f57610a1f613304565b145b80610a8157507f24d9929b248be7eeecaa98e105c034a50539610f3fdd4cb9c8983ef4100d615d87148015610a81575060028c6002811115610a6557610a65613304565b1480610a8157505f8c6002811115610a7f57610a7f613304565b145b90505f86158015610abd575060018d6002811115610aa157610aa1613304565b1480610abd57505f8d6002811115610abb57610abb613304565b145b80610b1d57507f12e3dc7cc8fec0205b51ff21825630865028f3be5bc64a6eec9ee5e71221319f87148015610b1d575060028d6002811115610b0157610b01613304565b1480610b1d57505f8d6002811115610b1b57610b1b613304565b145b9050848015610b295750835b8015610b325750825b8015610b3b5750815b8015610b445750805b9a50505050505050505050505b9392505050565b5f6105a9610b67846001613318565b83611bec565b5f6105a983600284611d01565b5f6105a983600284611f87565b5f80548190600160a01b900460ff1615610bd85760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161067c565b5f610bec610be68580613331565b3561218b565b9050610c25610bfb8580613331565b610c0990604081019061334f565b5f818110610c1957610c19613394565b905060200201356121e4565b610c5d610c328580613331565b610c4090604081019061334f565b6001818110610c5157610c51613394565b905060200201356122ac565b610cbc610c6a8580613331565b610c7890604081019061334f565b808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250610cb69250505060408701876133a8565b3561236a565b610d245760405162461bcd60e51b815260206004820152603360248201527f5468652070726f6f66207761732067656e657261746564206f757473696465206044820152721d1a19481d985b1a591a5d1e481c195c9a5bd9606a1b606482015260840161067c565b610d75610d318580613331565b610d3f90604081019061334f565b610d4c60408801886133a8565b610d5a9060208101906133bc565b610d6760408a018a6133a8565b6104a19060408101906133bc565b610dc15760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420646f6d61696e206f722073636f7065000000000000000000604482015260640161067c565b610e54610dce8580613331565b610ddc90604081019061334f565b6005906002610deb8980613331565b610df990604081019061334f565b610e049291506133fe565b92610e1193929190613411565b808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250610e4f92505050602087018761343c565b612395565b5f610e5f8580613331565b610e6d90604081019061334f565b6002610e798880613331565b610e8790604081019061334f565b610e929291506133fe565b818110610ea157610ea1613394565b905060200201355f1c6003811115610ebb57610ebb613304565b90506002816003811115610ed157610ed1613304565b14158015610ef157506003816003811115610eee57610eee613304565b14155b80610f155750610f0460408601866133a8565b610f15906080810190606001612ac6565b610f725760405162461bcd60e51b815260206004820152602860248201527f4d6f636b2070726f6f667320617265206f6e6c7920616c6c6f77656420696e20604482015267646576206d6f646560c01b606482015260840161067c565b5f816003811115610f8557610f85613304565b1480610faa5750610f9960408601866133a8565b610faa906080810190606001612ac6565b61100a5760405162461bcd60e51b815260206004820152602b60248201527f53616c746564206e756c6c69666965727320617265206e6f7420737570706f7260448201526a74656420666f72206e6f7760a81b606482015260840161067c565b6001600160a01b03821663ea50d0e46110238780613331565b6110319060208101906133bc565b61103b8980613331565b61104990604081019061334f565b6040518563ffffffff1660e01b81526004016110689493929190613450565b602060405180830381865afa158015611083573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110a7919061349a565b93505f60016110b68780613331565b6110c490604081019061334f565b6110cf9291506133fe565b90506110db8680613331565b6110e990604081019061334f565b828181106110f9576110f9613394565b905060200201359350505050915091565b5f61111884846003856125ce565b949350505050565b5f6105a983846003856125ce565b5f6105a983848461182a565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813856040518263ffffffff1660e01b815260040161117491906131ff565b6040805180830381865af415801561118e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b291906134b5565b915091508160ff165f14611230576040805162461bcd60e51b81526020600482015260248101919091527f5468652070726f6f66206c6f77657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734167654265747765656e20696e7374656164606482015260840161067c565b60ff85811691161491505092915050565b60408051606080820183525f80835260208301529181019190915260405163dfda037960e01b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063dfda0379906112959086906004016131ff565b5f60405180830381865af41580156112af573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526112d69190810190613531565b604051630578c5d360e11b815290915073__$144f4fe859debe4776cdef2b99f7b97a42$__90630af18ba690611310908490600401613562565b5f60405180830381865af415801561132a573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526113519190810190613574565b604085015260208401526001600160a01b0316825250919050565b5f546001600160a01b031633146113955760405162461bcd60e51b815260040161067c90613262565b6001600160a01b0381166113eb5760405162461bcd60e51b815260206004820152601c60248201527f41646d696e2063616e6e6f74206265207a65726f206164647265737300000000604482015260640161067c565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f101b8081ff3b56bbf45deb824d86a3b0fd38b7e3dd42421105cf8abe9106db0b9190a35050565b5f6105a983846002856125ce565b5f6105a9836006846128c0565b5f6105a9836004846128c0565b6114aa60405180610100016040528060608152602001606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b604051635450abb360e11b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063a8a15766906114e39087906004016131ff565b5f60405180830381865af41580156114fd573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261152491908101906135bf565b6040516301e9bf5760e11b815290925073__$144f4fe859debe4776cdef2b99f7b97a42$__91506303d37eae906115619084908790600401613618565b5f60405180830381865af415801561157b573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611118919081019061363b565b5f5f6115e286868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506129ce92505050565b61165c576008600287876040516020016115fd9291906137cc565b60408051601f1981840301815290829052611617916137db565b602060405180830381855afa158015611632573d5f5f3e3d5ffd5b5050506040513d601f19601f8201168201806040525081019061165591906137f1565b901c61165e565b5f5b90505f61169f85858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506129ce92505050565b611719576008600286866040516020016116ba9291906137cc565b60408051601f19818403018152908290526116d4916137db565b602060405180830381855afa1580156116ef573d5f5f3e3d5ffd5b5050506040513d601f19601f8201168201806040525081019061171291906137f1565b901c61171b565b5f5b9050818989600381811061173157611731613394565b9050602002013514801561175d5750808989600481811061175457611754613394565b90506020020135145b9998505050505050505050565b5f546001600160a01b031633146117935760405162461bcd60e51b815260040161067c90613262565b5f5b818110156118255760015f8484848181106117b2576117b2613394565b602090810292909201358352508101919091526040015f2080546001600160a01b03191690558282828181106117ea576117ea613394565b905060200201357f6fdcbcf8f91bc23f2c9dcfe8fe01d80d1b1afbbf207298e94c0171ccc587424c60405160405180910390a2600101611795565b505050565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813856040518263ffffffff1660e01b815260040161186491906131ff565b6040805180830381865af415801561187e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118a291906134b5565b915091508460ff168660ff1611156119125760405162461bcd60e51b815260206004820152602d60248201527f4d696e20616765206d757374206265206c657373207468616e206f722065717560448201526c616c20746f206d61782061676560981b606482015260840161067c565b8160ff165f0361199f5760405162461bcd60e51b815260206004820152604c60248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697341676542656c6f774f724560648201526b1c5d585b081a5b9cdd19585960a21b608482015260a40161067c565b8060ff165f03611a2c5760405162461bcd60e51b815260206004820152604c60248201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697341676541626f76654f724560648201526b1c5d585b081a5b9cdd19585960a21b608482015260a40161067c565b8160ff168660ff16148015611a4657508060ff168560ff16145b9695505050505050565b5f6105a9611a6162015180856133fe565b600284611d01565b5f6105a9836005846128c0565b5f546001600160a01b03163314611a9f5760405162461bcd60e51b815260040161067c90613262565b5f5b83811015611b9957828282818110611abb57611abb613394565b9050602002016020810190611ad09190612af5565b60015f878785818110611ae557611ae5613394565b9050602002013581526020019081526020015f205f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550828282818110611b2e57611b2e613394565b9050602002016020810190611b439190612af5565b6001600160a01b0316858583818110611b5e57611b5e613394565b905060200201357f636107338a3eb46f1f60562462f3ec11393d35fbc965991aaade3b9e7d89c3f560405160405180910390a3600101611aa1565b5050505050565b5f6105a9611bb162015180856133fe565b600384611d01565b5f6105a9611bca8462015180613299565b600284611f87565b5f6105a983600384611f87565b5f6105a9836007846128c0565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813856040518263ffffffff1660e01b8152600401611c2691906131ff565b6040805180830381865af4158015611c40573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c6491906134b5565b915091508060ff165f14611ce2576040805162461bcd60e51b81526020600482015260248101919091527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734167654265747765656e20696e7374656164606482015260840161067c565b5060ff848116911614905092915050565b5f61111884846002856125ce565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e85876040518363ffffffff1660e01b8152600401611d3d929190613808565b6040805180830381865af4158015611d57573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7b9190613845565b91509150815f14611dfe5760405162461bcd60e51b815260206004820152604160248201527f5468652070726f6f66206c6f77657220626f756e64206d75737420626520302c60448201527f20706c6561736520757365206973446174654265747765656e20696e737465616064820152601960fa1b608482015260a40161067c565b600285600a811115611e1257611e12613304565b1480611e2f5750600385600a811115611e2d57611e2d613304565b145b611e4b5760405162461bcd60e51b815260040161067c90613867565b600285600a811115611e5f57611e5f613304565b03611e9c57805f03611e835760405162461bcd60e51b815260040161067c90613893565b611e916383aa7e80826133fe565b861492505050610b51565b805f03611ebb5760405162461bcd60e51b815260040161067c9061390b565b85149150610b519050565b6002546040516383578c1160e01b815260036004820152602481018390526001600160a01b03909116906383578c1190604401602060405180830381865afa158015611f14573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f38919061349a565b611f845760405162461bcd60e51b815260206004820152601f60248201527f496e76616c69642073616e6374696f6e7320726567697374727920726f6f7400604482015260640161067c565b50565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e85876040518363ffffffff1660e01b8152600401611fc3929190613808565b6040805180830381865af4158015611fdd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120019190613845565b9092509050600285600a81111561201a5761201a613304565b14806120375750600385600a81111561203557612035613304565b145b6120535760405162461bcd60e51b815260040161067c90613867565b600285600a81111561206757612067613304565b036120fd5780156120ef5760405162461bcd60e51b815260206004820152604660248201527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734269727468646174654265747765656e20696064820152651b9cdd19585960d21b608482015260a40161067c565b611e916383aa7e80836133fe565b80156121815760405162461bcd60e51b815260206004820152604760248201527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c6561736520757365206973457870697279446174654265747765656e206064820152661a5b9cdd19585960ca1b608482015260a40161067c565b5084149050610b51565b5f818152600160205260408120546001600160a01b0316806105ac5760405162461bcd60e51b815260206004820152601260248201527115995c9a599a595c881b9bdd08199bdd5b9960721b604482015260640161067c565b6002546040516383578c1160e01b815260016004820152602481018390526001600160a01b03909116906383578c1190604401602060405180830381865afa158015612232573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612256919061349a565b611f845760405162461bcd60e51b815260206004820152602160248201527f496e76616c696420636572746966696361746520726567697374727920726f6f6044820152601d60fa1b606482015260840161067c565b600280546040516383578c1160e01b81526004810192909252602482018390526001600160a01b0316906383578c1190604401602060405180830381865afa1580156122fa573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061231e919061349a565b611f845760405162461bcd60e51b815260206004820152601d60248201527f496e76616c6964206369726375697420726567697374727920726f6f74000000604482015260640161067c565b5f5f8360028151811061237f5761237f613394565b60200260200101515f1c905061111881846129d3565b5f805b6123a283806133bc565b9050821080156123b25750835181105b15612524575f6123c284806133bc565b6123cd856001613299565b906123d9866003613299565b926123e693929190613984565b6123ef916139ab565b60f01c90505f6008600261240387806133bc565b879061241361ffff881683613299565b61241e906003613299565b9261242b93929190613984565b60405160200161243c9291906137cc565b60408051601f1981840301815290829052612456916137db565b602060405180830381855afa158015612471573d5f5f3e3d5ffd5b5050506040513d601f19601f8201168201806040525081019061249491906137f1565b901c90508583815181106124aa576124aa613394565b602002602001015181146124f55760405162461bcd60e51b8152602060048201526012602482015271125b9d985b1a590818dbdb5b5a5d1b595b9d60721b604482015260640161067c565b6125008260036139e3565b61250e9061ffff1685613299565b93508261251a816139fd565b9350505050612398565b61252e83806133bc565b9050821461257e5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420636f6d6d697474656420696e70757473206c656e67746800604482015260640161067c565b8351811461068e5760405162461bcd60e51b815260206004820152601d60248201527f496e76616c696420706172616d6574657220636f6d6d69746d656e7473000000604482015260640161067c565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e85876040518363ffffffff1660e01b815260040161260a929190613808565b6040805180830381865af4158015612624573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126489190613845565b91509150858711156126b45760405162461bcd60e51b815260206004820152602f60248201527f4d696e2064617465206d757374206265206c657373207468616e206f7220657160448201526e75616c20746f206d6178206461746560881b606482015260840161067c565b600285600a8111156126c8576126c8613304565b14806126e55750600385600a8111156126e3576126e3613304565b145b6127015760405162461bcd60e51b815260040161067c90613867565b600285600a81111561271557612715613304565b036127fa57815f036127aa5760405162461bcd60e51b815260206004820152605260248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697342697274686461746542656064820152711b1bddd3dc915c5d585b081a5b9cdd19585960721b608482015260a40161067c565b805f036127c95760405162461bcd60e51b815260040161067c90613893565b6127d76383aa7e80836133fe565b871480156127f157506127ee6383aa7e80826133fe565b86145b92505050611118565b815f0361288b5760405162461bcd60e51b815260206004820152605360248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c65617365207573652069734578706972794461746542606482015272195b1bddd3dc915c5d585b081a5b9cdd195859606a1b608482015260a40161067c565b805f036128aa5760405162461bcd60e51b815260040161067c9061390b565b81871480156127f1575090941495945050505050565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63dc8c5e9a85876040518363ffffffff1660e01b81526004016128fc929190613808565b5f60405180830381865af4158015612916573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261293d9190810190613a15565b9150915080865114612953575f92505050610b51565b5f5b818110156129c1576129aa87828151811061297257612972613394565b602002602001015184838151811061298c5761298c613394565b60200260200101518051602091820120825192909101919091201490565b6129b9575f9350505050610b51565b600101612955565b5060019695505050505050565b511590565b5f806129df8385613299565b90508342101580156129f057508381115b8015611118575042109392505050565b5f60208284031215612a10575f5ffd5b50919050565b5f5f60408385031215612a27575f5ffd5b8235915060208301356001600160401b03811115612a43575f5ffd5b612a4f85828601612a00565b9150509250929050565b8015158114611f84575f5ffd5b5f5f60408385031215612a77575f5ffd5b8235612a8281612a59565b915060208301356001600160401b03811115612a43575f5ffd5b60ff81168114611f84575f5ffd5b5f5f60408385031215612abb575f5ffd5b8235612a8281612a9c565b5f60208284031215612ad6575f5ffd5b8135610b5181612a59565b6001600160a01b0381168114611f84575f5ffd5b5f60208284031215612b05575f5ffd5b8135610b5181612ae1565b60038110611f84575f5ffd5b5f5f5f60608486031215612b2e575f5ffd5b8335612b3981612b10565b92506020840135612b4981612b10565b915060408401356001600160401b03811115612b63575f5ffd5b612b6f86828701612a00565b9150509250925092565b5f60208284031215612b89575f5ffd5b81356001600160401b03811115612b9e575f5ffd5b820160608185031215610b51575f5ffd5b5f5f5f60608486031215612bc1575f5ffd5b833592506020840135915060408401356001600160401b03811115612b63575f5ffd5b5f60208284031215612bf4575f5ffd5b81356001600160401b03811115612c09575f5ffd5b61111884828501612a00565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b6020815260018060a01b038251166020820152602082015160408201525f60408301516060808401526111186080840182612c15565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b0381118282101715612cb057612cb0612c79565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612cde57612cde612c79565b604052919050565b5f6001600160401b03821115612cfe57612cfe612c79565b5060051b60200190565b5f6001600160401b03821115612d2057612d20612c79565b50601f01601f191660200190565b5f5f60408385031215612d3f575f5ffd5b82356001600160401b03811115612d54575f5ffd5b8301601f81018513612d64575f5ffd5b8035612d77612d7282612ce6565b612cb6565b8082825260208201915060208360051b850101925087831115612d98575f5ffd5b602084015b83811015612e185780356001600160401b03811115612dba575f5ffd5b8501603f81018a13612dca575f5ffd5b6020810135612ddb612d7282612d08565b8181526040838301018c1015612def575f5ffd5b816040840160208301375f60208383010152808652505050602083019250602081019050612d9d565b50945050505060208301356001600160401b03811115612a43575f5ffd5b5f60208284031215612e46575f5ffd5b5035919050565b5f5f60408385031215612e5e575f5ffd5b82356001600160401b03811115612e73575f5ffd5b612e7f85828601612a00565b9250506020830135612e9081612a59565b809150509250929050565b602081525f82516101006020840152612eb8610120840182612c15565b90506020840151601f19848303016040850152612ed58282612c15565b9150506040840151601f19848303016060850152612ef38282612c15565b9150506060840151601f19848303016080850152612f118282612c15565b9150506080840151601f198483030160a0850152612f2f8282612c15565b91505060a0840151601f198483030160c0850152612f4d8282612c15565b91505060c0840151601f198483030160e0850152612f6b8282612c15565b91505060e0840151601f1984830301610100850152612f8a8282612c15565b95945050505050565b5f5f83601f840112612fa3575f5ffd5b5081356001600160401b03811115612fb9575f5ffd5b6020830191508360208260051b8501011115612fd3575f5ffd5b9250929050565b5f5f83601f840112612fea575f5ffd5b5081356001600160401b03811115613000575f5ffd5b602083019150836020828501011115612fd3575f5ffd5b5f5f5f5f5f5f6060878903121561302c575f5ffd5b86356001600160401b03811115613041575f5ffd5b61304d89828a01612f93565b90975095505060208701356001600160401b0381111561306b575f5ffd5b61307789828a01612fda565b90955093505060408701356001600160401b03811115613095575f5ffd5b6130a189828a01612fda565b979a9699509497509295939492505050565b5f5f602083850312156130c4575f5ffd5b82356001600160401b038111156130d9575f5ffd5b6130e585828601612f93565b90969095509350505050565b5f5f5f60608486031215613103575f5ffd5b833561310e81612a9c565b92506020840135612b4981612a9c565b5f5f5f5f60408587031215613131575f5ffd5b84356001600160401b03811115613146575f5ffd5b61315287828801612f93565b90955093505060208501356001600160401b03811115613170575f5ffd5b61317c87828801612f93565b95989497509550505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b5f8135601e198336030181126131c4575f5ffd5b82016020810190356001600160401b038111156131df575f5ffd5b8036038213156131ed575f5ffd5b60208552612f8a602086018284613188565b602081525f6105a960208301846131b0565b5f5f60408385031215613222575f5ffd5b82516020840151909250612e9081612a59565b634e487b7160e01b5f52601160045260245ffd5b60ff82811682821603908111156105ac576105ac613235565b6020808252601a908201527f4e6f7420617574686f72697a65643a2061646d696e206f6e6c79000000000000604082015260600190565b808201808211156105ac576105ac613235565b5f5f5f5f5f60a086880312156132c0575f5ffd5b85516020870151909550600281106132d6575f5ffd5b60408701516060880151608089015192965090945092506132f681612b10565b809150509295509295909350565b634e487b7160e01b5f52602160045260245ffd5b60ff81811683821601908111156105ac576105ac613235565b5f8235605e19833603018112613345575f5ffd5b9190910192915050565b5f5f8335601e19843603018112613364575f5ffd5b8301803591506001600160401b0382111561337d575f5ffd5b6020019150600581901b3603821315612fd3575f5ffd5b634e487b7160e01b5f52603260045260245ffd5b5f8235607e19833603018112613345575f5ffd5b5f5f8335601e198436030181126133d1575f5ffd5b8301803591506001600160401b038211156133ea575f5ffd5b602001915036819003821315612fd3575f5ffd5b818103818111156105ac576105ac613235565b5f5f8585111561341f575f5ffd5b8386111561342b575f5ffd5b5050600583901b0193919092039150565b5f8235601e19833603018112613345575f5ffd5b604081525f613463604083018688613188565b82810360208401528381526001600160fb1b03841115613481575f5ffd5b8360051b80866020840137016020019695505050505050565b5f602082840312156134aa575f5ffd5b8151610b5181612a59565b5f5f604083850312156134c6575f5ffd5b82516134d181612a9c565b6020840151909250612e9081612a9c565b5f82601f8301126134f1575f5ffd5b8151602083015f613504612d7284612d08565b9050828152858383011115613517575f5ffd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215613541575f5ffd5b81516001600160401b03811115613556575f5ffd5b611118848285016134e2565b602081525f6105a96020830184612c15565b5f5f5f60608486031215613586575f5ffd5b835161359181612ae1565b6020850151604086015191945092506001600160401b038111156135b3575f5ffd5b612b6f868287016134e2565b5f5f604083850312156135d0575f5ffd5b82516001600160401b038111156135e5575f5ffd5b6135f1858286016134e2565b92505060208301516001600160401b0381111561360c575f5ffd5b612a4f858286016134e2565b604081525f61362a6040830185612c15565b905082151560208301529392505050565b5f6020828403121561364b575f5ffd5b81516001600160401b03811115613660575f5ffd5b82016101008185031215613672575f5ffd5b61367a612c8d565b81516001600160401b0381111561368f575f5ffd5b61369b868285016134e2565b82525060208201516001600160401b038111156136b6575f5ffd5b6136c2868285016134e2565b60208301525060408201516001600160401b038111156136e0575f5ffd5b6136ec868285016134e2565b60408301525060608201516001600160401b0381111561370a575f5ffd5b613716868285016134e2565b60608301525060808201516001600160401b03811115613734575f5ffd5b613740868285016134e2565b60808301525060a08201516001600160401b0381111561375e575f5ffd5b61376a868285016134e2565b60a08301525060c08201516001600160401b03811115613788575f5ffd5b613794868285016134e2565b60c08301525060e08201516001600160401b038111156137b2575f5ffd5b6137be868285016134e2565b60e083015250949350505050565b818382375f9101908152919050565b5f82518060208501845e5f920191825250919050565b5f60208284031215613801575f5ffd5b5051919050565b604081525f61381a60408301856131b0565b9050600b831061383857634e487b7160e01b5f52602160045260245ffd5b8260208301529392505050565b5f5f60408385031215613856575f5ffd5b505080516020909101519092909150565b602080825260129082015271496e76616c69642070726f6f66207479706560701b604082015260600190565b60208082526052908201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60408201527f6e2d7a65726f2c20706c656173652075736520697342697274686461746541626060820152711bdd9953dc915c5d585b081a5b9cdd19585960721b608082015260a00190565b60208082526053908201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60408201527f6e2d7a65726f2c20706c65617365207573652069734578706972794461746541606082015272189bdd9953dc915c5d585b081a5b9cdd195859606a1b608082015260a00190565b5f5f85851115613992575f5ffd5b8386111561399e575f5ffd5b5050820193919092039150565b80356001600160f01b031981169060028410156139dc576001600160f01b0319600285900360031b81901b82161691505b5092915050565b61ffff81811683821601908111156105ac576105ac613235565b5f60018201613a0e57613a0e613235565b5060010190565b5f5f60408385031215613a26575f5ffd5b82516001600160401b03811115613a3b575f5ffd5b8301601f81018513613a4b575f5ffd5b8051613a59612d7282612ce6565b8082825260208201915060208360051b850101925087831115613a7a575f5ffd5b602084015b83811015613aba5780516001600160401b03811115613a9c575f5ffd5b613aab8a6020838901016134e2565b84525060209283019201613a7f565b50602096909601519597959650505050505056fea2646970667358221220f755de8bb391abb11be10350f9cc3590eeac4e8d2381edac92e3b462d6f7b18564736f6c634300081d0033",
|
|
2837
|
+
sourceMap: "706:28281:26:-:0;;;1848:256;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1897:27:26;;1889:76;;;;-1:-1:-1;;;1889:76:26;;511:2:41;1889:76:26;;;493:21:41;550:2;530:18;;;523:30;589:34;569:18;;;562:62;-1:-1:-1;;;640:18:41;;;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:41;;2049:50:26;;848:2:41;833:18;2049:50:26;;;;;;;1848:256;706:28281;;14:290:41;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:41;;214:42;;204:70;;270:1;267;260:12;204:70;293:5;14:290;-1:-1:-1;;;14:290:41:o;714:177::-;706:28281:26;;;;;;",
|
|
3045
2838
|
linkReferences: {
|
|
3046
2839
|
"src/InputsExtractor.sol": {
|
|
3047
2840
|
InputsExtractor: [
|
|
3048
|
-
{ start:
|
|
3049
|
-
{ start:
|
|
3050
|
-
{ start:
|
|
3051
|
-
{ start:
|
|
3052
|
-
{ start:
|
|
3053
|
-
{ start:
|
|
3054
|
-
{ start:
|
|
3055
|
-
{ start:
|
|
3056
|
-
{ start:
|
|
3057
|
-
{ start:
|
|
3058
|
-
{ start:
|
|
3059
|
-
{ start:
|
|
3060
|
-
{ start:
|
|
2841
|
+
{ start: 1766, length: 20 },
|
|
2842
|
+
{ start: 2425, length: 20 },
|
|
2843
|
+
{ start: 4719, length: 20 },
|
|
2844
|
+
{ start: 5021, length: 20 },
|
|
2845
|
+
{ start: 5144, length: 20 },
|
|
2846
|
+
{ start: 5611, length: 20 },
|
|
2847
|
+
{ start: 5734, length: 20 },
|
|
2848
|
+
{ start: 6495, length: 20 },
|
|
2849
|
+
{ start: 7457, length: 20 },
|
|
2850
|
+
{ start: 7734, length: 20 },
|
|
2851
|
+
{ start: 8380, length: 20 },
|
|
2852
|
+
{ start: 9987, length: 20 },
|
|
2853
|
+
{ start: 10741, length: 20 }
|
|
3061
2854
|
]
|
|
3062
2855
|
}
|
|
3063
2856
|
}
|
|
3064
2857
|
},
|
|
3065
2858
|
deployedBytecode: {
|
|
3066
|
-
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",
|
|
3067
|
-
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",
|
|
2859
|
+
object: "0x608060405234801561000f575f5ffd5b506004361061023f575f3560e01c806375829def11610135578063a30470b2116100b4578063c17361df11610079578063c17361df1461053e578063d2bbe05f14610551578063e3e6525e14610564578063e8ba670514610577578063f851a4401461058a575f5ffd5b8063a30470b2146104df578063a6df2c01146104f2578063a72a8a4914610505578063b1bab8f214610518578063b96b161c1461052b575f5ffd5b8063822d00f8116100fa578063822d00f814610473578063847755e3146104935780638d6937b8146104a657806390e44dd7146104b95780639facc38a146104cc575f5ffd5b806375829def146103e7578063782f2497146103fa5780637db36adf1461040d5780637f303f26146104205780638163f23114610433575f5ffd5b80634035b41d116101c15780635c975abb116101865780635c975abb1461039157806364ce783d146103a4578063652ba33d146103b75780636c40d5d6146103bf578063712f5e1c146103c7575f5ffd5b80634035b41d1461031857806341a0e2c2146103425780634736a71414610358578063518e9b921461036b5780635c0578431461037e575f5ffd5b806322eb54d51161020757806322eb54d5146102b957806329354ea6146102cc578063307ad1ee146102df5780633a1e38bd146102f25780633e11569a14610305575f5ffd5b806302298d5614610243578063074bd4e21461026b5780630ed1cb511461028057806316c38b3c1461029357806318677f2a146102a6575b5f5ffd5b610256610251366004612a16565b61059c565b60405190151581526020015b60405180910390f35b61027e610279366004612a66565b6105b2565b005b61025661028e366004612aaa565b610694565b61027e6102a1366004612ac6565b6106fb565b61027e6102b4366004612af5565b61077b565b6102566102c7366004612a16565b610828565b6102566102da366004612b1c565b610841565b6102566102ed366004612aaa565b610b58565b610256610300366004612a16565b610b6d565b610256610313366004612a16565b610b7a565b61032b610326366004612b79565b610b87565b604080519215158352602083019190915201610262565b61034a600181565b604051908152602001610262565b610256610366366004612baf565b61110a565b610256610379366004612a16565b611120565b61025661038c366004612aaa565b61112e565b5f5461025690600160a01b900460ff1681565b6102566103b2366004612aaa565b61113a565b61034a600381565b61034a600281565b6103da6103d5366004612be4565b611241565b6040516102629190612c43565b61027e6103f5366004612af5565b61136c565b610256610408366004612a16565b61143a565b61025661041b366004612d2e565b611448565b61025661042e366004612d2e565b611455565b61045b610441366004612e36565b60016020525f90815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610262565b610486610481366004612e4d565b611462565b6040516102629190612e9b565b6102566104a1366004613017565b6115a2565b61027e6104b43660046130b3565b61176a565b6102566104c73660046130f1565b61182a565b6102566104da366004612a16565b611a50565b6102566104ed366004612d2e565b611a69565b61027e61050036600461311e565b611a76565b610256610513366004612a16565b611ba0565b610256610526366004612a16565b611bb9565b60025461045b906001600160a01b031681565b61025661054c366004612a16565b611bd2565b61025661055f366004612d2e565b611bdf565b610256610572366004612aaa565b611bec565b610256610585366004612baf565b611cf3565b5f5461045b906001600160a01b031681565b5f6105a983600384611d01565b90505b92915050565b5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63a623af24846040518263ffffffff1660e01b81526004016105eb91906131ff565b6040805180830381865af4158015610605573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106299190613211565b91509150801515841515146106855760405162461bcd60e51b815260206004820152601c60248201527f496e76616c69642073616e6374696f6e7320636865636b206d6f64650000000060448201526064015b60405180910390fd5b61068e82611ec6565b50505050565b5f5f8360ff16116106e75760405162461bcd60e51b815260206004820152601e60248201527f4d617820616765206d7573742062652067726561746572207468616e20300000604482015260640161067c565b6105a96106f5600185613249565b8361113a565b5f546001600160a01b031633146107245760405162461bcd60e51b815260040161067c90613262565b5f8054821515600160a01b0260ff60a01b199091161790556040517f9a506b30e47f3823b09f67e4c0dfa5c3d8023b71825b7ceaa97677129128c9c59061077090831515815260200190565b60405180910390a150565b5f546001600160a01b031633146107a45760405162461bcd60e51b815260040161067c90613262565b6001600160a01b0381166108065760405162461bcd60e51b8152602060048201526024808201527f526f6f742072656769737472792063616e6e6f74206265207a65726f206164646044820152637265737360e01b606482015260840161067c565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b5f6105a96108398462015180613299565b600384611f87565b5f5f5f5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63defa8ed9886040518263ffffffff1660e01b815260040161087e91906131ff565b60a060405180830381865af4158015610899573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108bd91906132ac565b9398509196509450925090505f60018560018111156108de576108de613304565b1490505f8a60028111156108f4576108f4613304565b83600281111561090657610906613304565b1490505f7f2532418a107c5306fa8308c22255792cf77e4a290cbce8a840a642a3e591340b88148015610964575060018b600281111561094857610948613304565b148061096457505f8b600281111561096257610962613304565b145b806109c457507f16700a2d9168a194fc85f237af5829b5a2be05b8ae8ac4879ada34cf54a9c211881480156109c4575060028b60028111156109a8576109a8613304565b14806109c457505f8b60028111156109c2576109c2613304565b145b90505f7f1fa73686cf510f8f85757b0602de0dd72a13e68ae2092462be8b72662e7f179b87148015610a21575060018c6002811115610a0557610a05613304565b1480610a2157505f8c6002811115610a1f57610a1f613304565b145b80610a8157507f24d9929b248be7eeecaa98e105c034a50539610f3fdd4cb9c8983ef4100d615d87148015610a81575060028c6002811115610a6557610a65613304565b1480610a8157505f8c6002811115610a7f57610a7f613304565b145b90505f86158015610abd575060018d6002811115610aa157610aa1613304565b1480610abd57505f8d6002811115610abb57610abb613304565b145b80610b1d57507f12e3dc7cc8fec0205b51ff21825630865028f3be5bc64a6eec9ee5e71221319f87148015610b1d575060028d6002811115610b0157610b01613304565b1480610b1d57505f8d6002811115610b1b57610b1b613304565b145b9050848015610b295750835b8015610b325750825b8015610b3b5750815b8015610b445750805b9a50505050505050505050505b9392505050565b5f6105a9610b67846001613318565b83611bec565b5f6105a983600284611d01565b5f6105a983600284611f87565b5f80548190600160a01b900460ff1615610bd85760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161067c565b5f610bec610be68580613331565b3561218b565b9050610c25610bfb8580613331565b610c0990604081019061334f565b5f818110610c1957610c19613394565b905060200201356121e4565b610c5d610c328580613331565b610c4090604081019061334f565b6001818110610c5157610c51613394565b905060200201356122ac565b610cbc610c6a8580613331565b610c7890604081019061334f565b808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250610cb69250505060408701876133a8565b3561236a565b610d245760405162461bcd60e51b815260206004820152603360248201527f5468652070726f6f66207761732067656e657261746564206f757473696465206044820152721d1a19481d985b1a591a5d1e481c195c9a5bd9606a1b606482015260840161067c565b610d75610d318580613331565b610d3f90604081019061334f565b610d4c60408801886133a8565b610d5a9060208101906133bc565b610d6760408a018a6133a8565b6104a19060408101906133bc565b610dc15760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420646f6d61696e206f722073636f7065000000000000000000604482015260640161067c565b610e54610dce8580613331565b610ddc90604081019061334f565b6005906002610deb8980613331565b610df990604081019061334f565b610e049291506133fe565b92610e1193929190613411565b808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250610e4f92505050602087018761343c565b612395565b5f610e5f8580613331565b610e6d90604081019061334f565b6002610e798880613331565b610e8790604081019061334f565b610e929291506133fe565b818110610ea157610ea1613394565b905060200201355f1c6003811115610ebb57610ebb613304565b90506002816003811115610ed157610ed1613304565b14158015610ef157506003816003811115610eee57610eee613304565b14155b80610f155750610f0460408601866133a8565b610f15906080810190606001612ac6565b610f725760405162461bcd60e51b815260206004820152602860248201527f4d6f636b2070726f6f667320617265206f6e6c7920616c6c6f77656420696e20604482015267646576206d6f646560c01b606482015260840161067c565b5f816003811115610f8557610f85613304565b1480610faa5750610f9960408601866133a8565b610faa906080810190606001612ac6565b61100a5760405162461bcd60e51b815260206004820152602b60248201527f53616c746564206e756c6c69666965727320617265206e6f7420737570706f7260448201526a74656420666f72206e6f7760a81b606482015260840161067c565b6001600160a01b03821663ea50d0e46110238780613331565b6110319060208101906133bc565b61103b8980613331565b61104990604081019061334f565b6040518563ffffffff1660e01b81526004016110689493929190613450565b602060405180830381865afa158015611083573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110a7919061349a565b93505f60016110b68780613331565b6110c490604081019061334f565b6110cf9291506133fe565b90506110db8680613331565b6110e990604081019061334f565b828181106110f9576110f9613394565b905060200201359350505050915091565b5f61111884846003856125ce565b949350505050565b5f6105a983846003856125ce565b5f6105a983848461182a565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813856040518263ffffffff1660e01b815260040161117491906131ff565b6040805180830381865af415801561118e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b291906134b5565b915091508160ff165f14611230576040805162461bcd60e51b81526020600482015260248101919091527f5468652070726f6f66206c6f77657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734167654265747765656e20696e7374656164606482015260840161067c565b60ff85811691161491505092915050565b60408051606080820183525f80835260208301529181019190915260405163dfda037960e01b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063dfda0379906112959086906004016131ff565b5f60405180830381865af41580156112af573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526112d69190810190613531565b604051630578c5d360e11b815290915073__$144f4fe859debe4776cdef2b99f7b97a42$__90630af18ba690611310908490600401613562565b5f60405180830381865af415801561132a573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526113519190810190613574565b604085015260208401526001600160a01b0316825250919050565b5f546001600160a01b031633146113955760405162461bcd60e51b815260040161067c90613262565b6001600160a01b0381166113eb5760405162461bcd60e51b815260206004820152601c60248201527f41646d696e2063616e6e6f74206265207a65726f206164647265737300000000604482015260640161067c565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f101b8081ff3b56bbf45deb824d86a3b0fd38b7e3dd42421105cf8abe9106db0b9190a35050565b5f6105a983846002856125ce565b5f6105a9836006846128c0565b5f6105a9836004846128c0565b6114aa60405180610100016040528060608152602001606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b604051635450abb360e11b81525f9073__$144f4fe859debe4776cdef2b99f7b97a42$__9063a8a15766906114e39087906004016131ff565b5f60405180830381865af41580156114fd573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261152491908101906135bf565b6040516301e9bf5760e11b815290925073__$144f4fe859debe4776cdef2b99f7b97a42$__91506303d37eae906115619084908790600401613618565b5f60405180830381865af415801561157b573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611118919081019061363b565b5f5f6115e286868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506129ce92505050565b61165c576008600287876040516020016115fd9291906137cc565b60408051601f1981840301815290829052611617916137db565b602060405180830381855afa158015611632573d5f5f3e3d5ffd5b5050506040513d601f19601f8201168201806040525081019061165591906137f1565b901c61165e565b5f5b90505f61169f85858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506129ce92505050565b611719576008600286866040516020016116ba9291906137cc565b60408051601f19818403018152908290526116d4916137db565b602060405180830381855afa1580156116ef573d5f5f3e3d5ffd5b5050506040513d601f19601f8201168201806040525081019061171291906137f1565b901c61171b565b5f5b9050818989600381811061173157611731613394565b9050602002013514801561175d5750808989600481811061175457611754613394565b90506020020135145b9998505050505050505050565b5f546001600160a01b031633146117935760405162461bcd60e51b815260040161067c90613262565b5f5b818110156118255760015f8484848181106117b2576117b2613394565b602090810292909201358352508101919091526040015f2080546001600160a01b03191690558282828181106117ea576117ea613394565b905060200201357f6fdcbcf8f91bc23f2c9dcfe8fe01d80d1b1afbbf207298e94c0171ccc587424c60405160405180910390a2600101611795565b505050565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813856040518263ffffffff1660e01b815260040161186491906131ff565b6040805180830381865af415801561187e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118a291906134b5565b915091508460ff168660ff1611156119125760405162461bcd60e51b815260206004820152602d60248201527f4d696e20616765206d757374206265206c657373207468616e206f722065717560448201526c616c20746f206d61782061676560981b606482015260840161067c565b8160ff165f0361199f5760405162461bcd60e51b815260206004820152604c60248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697341676542656c6f774f724560648201526b1c5d585b081a5b9cdd19585960a21b608482015260a40161067c565b8060ff165f03611a2c5760405162461bcd60e51b815260206004820152604c60248201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697341676541626f76654f724560648201526b1c5d585b081a5b9cdd19585960a21b608482015260a40161067c565b8160ff168660ff16148015611a4657508060ff168560ff16145b9695505050505050565b5f6105a9611a6162015180856133fe565b600284611d01565b5f6105a9836005846128c0565b5f546001600160a01b03163314611a9f5760405162461bcd60e51b815260040161067c90613262565b5f5b83811015611b9957828282818110611abb57611abb613394565b9050602002016020810190611ad09190612af5565b60015f878785818110611ae557611ae5613394565b9050602002013581526020019081526020015f205f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550828282818110611b2e57611b2e613394565b9050602002016020810190611b439190612af5565b6001600160a01b0316858583818110611b5e57611b5e613394565b905060200201357f636107338a3eb46f1f60562462f3ec11393d35fbc965991aaade3b9e7d89c3f560405160405180910390a3600101611aa1565b5050505050565b5f6105a9611bb162015180856133fe565b600384611d01565b5f6105a9611bca8462015180613299565b600284611f87565b5f6105a983600384611f87565b5f6105a9836007846128c0565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6384052813856040518263ffffffff1660e01b8152600401611c2691906131ff565b6040805180830381865af4158015611c40573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c6491906134b5565b915091508060ff165f14611ce2576040805162461bcd60e51b81526020600482015260248101919091527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734167654265747765656e20696e7374656164606482015260840161067c565b5060ff848116911614905092915050565b5f61111884846002856125ce565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e85876040518363ffffffff1660e01b8152600401611d3d929190613808565b6040805180830381865af4158015611d57573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7b9190613845565b91509150815f14611dfe5760405162461bcd60e51b815260206004820152604160248201527f5468652070726f6f66206c6f77657220626f756e64206d75737420626520302c60448201527f20706c6561736520757365206973446174654265747765656e20696e737465616064820152601960fa1b608482015260a40161067c565b600285600a811115611e1257611e12613304565b1480611e2f5750600385600a811115611e2d57611e2d613304565b145b611e4b5760405162461bcd60e51b815260040161067c90613867565b600285600a811115611e5f57611e5f613304565b03611e9c57805f03611e835760405162461bcd60e51b815260040161067c90613893565b611e916383aa7e80826133fe565b861492505050610b51565b805f03611ebb5760405162461bcd60e51b815260040161067c9061390b565b85149150610b519050565b6002546040516383578c1160e01b815260036004820152602481018390526001600160a01b03909116906383578c1190604401602060405180830381865afa158015611f14573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f38919061349a565b611f845760405162461bcd60e51b815260206004820152601f60248201527f496e76616c69642073616e6374696f6e7320726567697374727920726f6f7400604482015260640161067c565b50565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e85876040518363ffffffff1660e01b8152600401611fc3929190613808565b6040805180830381865af4158015611fdd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120019190613845565b9092509050600285600a81111561201a5761201a613304565b14806120375750600385600a81111561203557612035613304565b145b6120535760405162461bcd60e51b815260040161067c90613867565b600285600a81111561206757612067613304565b036120fd5780156120ef5760405162461bcd60e51b815260206004820152604660248201527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c65617365207573652069734269727468646174654265747765656e20696064820152651b9cdd19585960d21b608482015260a40161067c565b611e916383aa7e80836133fe565b80156121815760405162461bcd60e51b815260206004820152604760248201527f5468652070726f6f6620757070657220626f756e64206d75737420626520302c60448201527f20706c6561736520757365206973457870697279446174654265747765656e206064820152661a5b9cdd19585960ca1b608482015260a40161067c565b5084149050610b51565b5f818152600160205260408120546001600160a01b0316806105ac5760405162461bcd60e51b815260206004820152601260248201527115995c9a599a595c881b9bdd08199bdd5b9960721b604482015260640161067c565b6002546040516383578c1160e01b815260016004820152602481018390526001600160a01b03909116906383578c1190604401602060405180830381865afa158015612232573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612256919061349a565b611f845760405162461bcd60e51b815260206004820152602160248201527f496e76616c696420636572746966696361746520726567697374727920726f6f6044820152601d60fa1b606482015260840161067c565b600280546040516383578c1160e01b81526004810192909252602482018390526001600160a01b0316906383578c1190604401602060405180830381865afa1580156122fa573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061231e919061349a565b611f845760405162461bcd60e51b815260206004820152601d60248201527f496e76616c6964206369726375697420726567697374727920726f6f74000000604482015260640161067c565b5f5f8360028151811061237f5761237f613394565b60200260200101515f1c905061111881846129d3565b5f805b6123a283806133bc565b9050821080156123b25750835181105b15612524575f6123c284806133bc565b6123cd856001613299565b906123d9866003613299565b926123e693929190613984565b6123ef916139ab565b60f01c90505f6008600261240387806133bc565b879061241361ffff881683613299565b61241e906003613299565b9261242b93929190613984565b60405160200161243c9291906137cc565b60408051601f1981840301815290829052612456916137db565b602060405180830381855afa158015612471573d5f5f3e3d5ffd5b5050506040513d601f19601f8201168201806040525081019061249491906137f1565b901c90508583815181106124aa576124aa613394565b602002602001015181146124f55760405162461bcd60e51b8152602060048201526012602482015271125b9d985b1a590818dbdb5b5a5d1b595b9d60721b604482015260640161067c565b6125008260036139e3565b61250e9061ffff1685613299565b93508261251a816139fd565b9350505050612398565b61252e83806133bc565b9050821461257e5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420636f6d6d697474656420696e70757473206c656e67746800604482015260640161067c565b8351811461068e5760405162461bcd60e51b815260206004820152601d60248201527f496e76616c696420706172616d6574657220636f6d6d69746d656e7473000000604482015260640161067c565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__6374d9a37e85876040518363ffffffff1660e01b815260040161260a929190613808565b6040805180830381865af4158015612624573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126489190613845565b91509150858711156126b45760405162461bcd60e51b815260206004820152602f60248201527f4d696e2064617465206d757374206265206c657373207468616e206f7220657160448201526e75616c20746f206d6178206461746560881b606482015260840161067c565b600285600a8111156126c8576126c8613304565b14806126e55750600385600a8111156126e3576126e3613304565b145b6127015760405162461bcd60e51b815260040161067c90613867565b600285600a81111561271557612715613304565b036127fa57815f036127aa5760405162461bcd60e51b815260206004820152605260248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c656173652075736520697342697274686461746542656064820152711b1bddd3dc915c5d585b081a5b9cdd19585960721b608482015260a40161067c565b805f036127c95760405162461bcd60e51b815260040161067c90613893565b6127d76383aa7e80836133fe565b871480156127f157506127ee6383aa7e80826133fe565b86145b92505050611118565b815f0361288b5760405162461bcd60e51b815260206004820152605360248201527f5468652070726f6f66206c6f77657220626f756e64206d757374206265206e6f60448201527f6e2d7a65726f2c20706c65617365207573652069734578706972794461746542606482015272195b1bddd3dc915c5d585b081a5b9cdd195859606a1b608482015260a40161067c565b805f036128aa5760405162461bcd60e51b815260040161067c9061390b565b81871480156127f1575090941495945050505050565b5f5f5f73__$144f4fe859debe4776cdef2b99f7b97a42$__63dc8c5e9a85876040518363ffffffff1660e01b81526004016128fc929190613808565b5f60405180830381865af4158015612916573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261293d9190810190613a15565b9150915080865114612953575f92505050610b51565b5f5b818110156129c1576129aa87828151811061297257612972613394565b602002602001015184838151811061298c5761298c613394565b60200260200101518051602091820120825192909101919091201490565b6129b9575f9350505050610b51565b600101612955565b5060019695505050505050565b511590565b5f806129df8385613299565b90508342101580156129f057508381115b8015611118575042109392505050565b5f60208284031215612a10575f5ffd5b50919050565b5f5f60408385031215612a27575f5ffd5b8235915060208301356001600160401b03811115612a43575f5ffd5b612a4f85828601612a00565b9150509250929050565b8015158114611f84575f5ffd5b5f5f60408385031215612a77575f5ffd5b8235612a8281612a59565b915060208301356001600160401b03811115612a43575f5ffd5b60ff81168114611f84575f5ffd5b5f5f60408385031215612abb575f5ffd5b8235612a8281612a9c565b5f60208284031215612ad6575f5ffd5b8135610b5181612a59565b6001600160a01b0381168114611f84575f5ffd5b5f60208284031215612b05575f5ffd5b8135610b5181612ae1565b60038110611f84575f5ffd5b5f5f5f60608486031215612b2e575f5ffd5b8335612b3981612b10565b92506020840135612b4981612b10565b915060408401356001600160401b03811115612b63575f5ffd5b612b6f86828701612a00565b9150509250925092565b5f60208284031215612b89575f5ffd5b81356001600160401b03811115612b9e575f5ffd5b820160608185031215610b51575f5ffd5b5f5f5f60608486031215612bc1575f5ffd5b833592506020840135915060408401356001600160401b03811115612b63575f5ffd5b5f60208284031215612bf4575f5ffd5b81356001600160401b03811115612c09575f5ffd5b61111884828501612a00565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b6020815260018060a01b038251166020820152602082015160408201525f60408301516060808401526111186080840182612c15565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b0381118282101715612cb057612cb0612c79565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612cde57612cde612c79565b604052919050565b5f6001600160401b03821115612cfe57612cfe612c79565b5060051b60200190565b5f6001600160401b03821115612d2057612d20612c79565b50601f01601f191660200190565b5f5f60408385031215612d3f575f5ffd5b82356001600160401b03811115612d54575f5ffd5b8301601f81018513612d64575f5ffd5b8035612d77612d7282612ce6565b612cb6565b8082825260208201915060208360051b850101925087831115612d98575f5ffd5b602084015b83811015612e185780356001600160401b03811115612dba575f5ffd5b8501603f81018a13612dca575f5ffd5b6020810135612ddb612d7282612d08565b8181526040838301018c1015612def575f5ffd5b816040840160208301375f60208383010152808652505050602083019250602081019050612d9d565b50945050505060208301356001600160401b03811115612a43575f5ffd5b5f60208284031215612e46575f5ffd5b5035919050565b5f5f60408385031215612e5e575f5ffd5b82356001600160401b03811115612e73575f5ffd5b612e7f85828601612a00565b9250506020830135612e9081612a59565b809150509250929050565b602081525f82516101006020840152612eb8610120840182612c15565b90506020840151601f19848303016040850152612ed58282612c15565b9150506040840151601f19848303016060850152612ef38282612c15565b9150506060840151601f19848303016080850152612f118282612c15565b9150506080840151601f198483030160a0850152612f2f8282612c15565b91505060a0840151601f198483030160c0850152612f4d8282612c15565b91505060c0840151601f198483030160e0850152612f6b8282612c15565b91505060e0840151601f1984830301610100850152612f8a8282612c15565b95945050505050565b5f5f83601f840112612fa3575f5ffd5b5081356001600160401b03811115612fb9575f5ffd5b6020830191508360208260051b8501011115612fd3575f5ffd5b9250929050565b5f5f83601f840112612fea575f5ffd5b5081356001600160401b03811115613000575f5ffd5b602083019150836020828501011115612fd3575f5ffd5b5f5f5f5f5f5f6060878903121561302c575f5ffd5b86356001600160401b03811115613041575f5ffd5b61304d89828a01612f93565b90975095505060208701356001600160401b0381111561306b575f5ffd5b61307789828a01612fda565b90955093505060408701356001600160401b03811115613095575f5ffd5b6130a189828a01612fda565b979a9699509497509295939492505050565b5f5f602083850312156130c4575f5ffd5b82356001600160401b038111156130d9575f5ffd5b6130e585828601612f93565b90969095509350505050565b5f5f5f60608486031215613103575f5ffd5b833561310e81612a9c565b92506020840135612b4981612a9c565b5f5f5f5f60408587031215613131575f5ffd5b84356001600160401b03811115613146575f5ffd5b61315287828801612f93565b90955093505060208501356001600160401b03811115613170575f5ffd5b61317c87828801612f93565b95989497509550505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b5f8135601e198336030181126131c4575f5ffd5b82016020810190356001600160401b038111156131df575f5ffd5b8036038213156131ed575f5ffd5b60208552612f8a602086018284613188565b602081525f6105a960208301846131b0565b5f5f60408385031215613222575f5ffd5b82516020840151909250612e9081612a59565b634e487b7160e01b5f52601160045260245ffd5b60ff82811682821603908111156105ac576105ac613235565b6020808252601a908201527f4e6f7420617574686f72697a65643a2061646d696e206f6e6c79000000000000604082015260600190565b808201808211156105ac576105ac613235565b5f5f5f5f5f60a086880312156132c0575f5ffd5b85516020870151909550600281106132d6575f5ffd5b60408701516060880151608089015192965090945092506132f681612b10565b809150509295509295909350565b634e487b7160e01b5f52602160045260245ffd5b60ff81811683821601908111156105ac576105ac613235565b5f8235605e19833603018112613345575f5ffd5b9190910192915050565b5f5f8335601e19843603018112613364575f5ffd5b8301803591506001600160401b0382111561337d575f5ffd5b6020019150600581901b3603821315612fd3575f5ffd5b634e487b7160e01b5f52603260045260245ffd5b5f8235607e19833603018112613345575f5ffd5b5f5f8335601e198436030181126133d1575f5ffd5b8301803591506001600160401b038211156133ea575f5ffd5b602001915036819003821315612fd3575f5ffd5b818103818111156105ac576105ac613235565b5f5f8585111561341f575f5ffd5b8386111561342b575f5ffd5b5050600583901b0193919092039150565b5f8235601e19833603018112613345575f5ffd5b604081525f613463604083018688613188565b82810360208401528381526001600160fb1b03841115613481575f5ffd5b8360051b80866020840137016020019695505050505050565b5f602082840312156134aa575f5ffd5b8151610b5181612a59565b5f5f604083850312156134c6575f5ffd5b82516134d181612a9c565b6020840151909250612e9081612a9c565b5f82601f8301126134f1575f5ffd5b8151602083015f613504612d7284612d08565b9050828152858383011115613517575f5ffd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215613541575f5ffd5b81516001600160401b03811115613556575f5ffd5b611118848285016134e2565b602081525f6105a96020830184612c15565b5f5f5f60608486031215613586575f5ffd5b835161359181612ae1565b6020850151604086015191945092506001600160401b038111156135b3575f5ffd5b612b6f868287016134e2565b5f5f604083850312156135d0575f5ffd5b82516001600160401b038111156135e5575f5ffd5b6135f1858286016134e2565b92505060208301516001600160401b0381111561360c575f5ffd5b612a4f858286016134e2565b604081525f61362a6040830185612c15565b905082151560208301529392505050565b5f6020828403121561364b575f5ffd5b81516001600160401b03811115613660575f5ffd5b82016101008185031215613672575f5ffd5b61367a612c8d565b81516001600160401b0381111561368f575f5ffd5b61369b868285016134e2565b82525060208201516001600160401b038111156136b6575f5ffd5b6136c2868285016134e2565b60208301525060408201516001600160401b038111156136e0575f5ffd5b6136ec868285016134e2565b60408301525060608201516001600160401b0381111561370a575f5ffd5b613716868285016134e2565b60608301525060808201516001600160401b03811115613734575f5ffd5b613740868285016134e2565b60808301525060a08201516001600160401b0381111561375e575f5ffd5b61376a868285016134e2565b60a08301525060c08201516001600160401b03811115613788575f5ffd5b613794868285016134e2565b60c08301525060e08201516001600160401b038111156137b2575f5ffd5b6137be868285016134e2565b60e083015250949350505050565b818382375f9101908152919050565b5f82518060208501845e5f920191825250919050565b5f60208284031215613801575f5ffd5b5051919050565b604081525f61381a60408301856131b0565b9050600b831061383857634e487b7160e01b5f52602160045260245ffd5b8260208301529392505050565b5f5f60408385031215613856575f5ffd5b505080516020909101519092909150565b602080825260129082015271496e76616c69642070726f6f66207479706560701b604082015260600190565b60208082526052908201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60408201527f6e2d7a65726f2c20706c656173652075736520697342697274686461746541626060820152711bdd9953dc915c5d585b081a5b9cdd19585960721b608082015260a00190565b60208082526053908201527f5468652070726f6f6620757070657220626f756e64206d757374206265206e6f60408201527f6e2d7a65726f2c20706c65617365207573652069734578706972794461746541606082015272189bdd9953dc915c5d585b081a5b9cdd195859606a1b608082015260a00190565b5f5f85851115613992575f5ffd5b8386111561399e575f5ffd5b5050820193919092039150565b80356001600160f01b031981169060028410156139dc576001600160f01b0319600285900360031b81901b82161691505b5092915050565b61ffff81811683821601908111156105ac576105ac613235565b5f60018201613a0e57613a0e613235565b5060010190565b5f5f60408385031215613a26575f5ffd5b82516001600160401b03811115613a3b575f5ffd5b8301601f81018513613a4b575f5ffd5b8051613a59612d7282612ce6565b8082825260208201915060208360051b850101925087831115613a7a575f5ffd5b602084015b83811015613aba5780516001600160401b03811115613a9c575f5ffd5b613aab8a6020838901016134e2565b84525060209283019201613a7f565b50602096909601519597959650505050505056fea2646970667358221220f755de8bb391abb11be10350f9cc3590eeac4e8d2381edac92e3b462d6f7b18564736f6c634300081d0033",
|
|
2860
|
+
sourceMap: "706:28281:26:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15475:207;;;;;;:::i;:::-;;:::i;:::-;;;827:14:41;;820:22;802:41;;790:2;775:18;15475:207:26;;;;;;;;20140:345;;;;;;:::i;:::-;;:::i;:::-;;6859:226;;;;;;:::i;:::-;;:::i;2527:118::-;;;;;;:::i;:::-;;:::i;3178:206::-;;;;;;:::i;:::-;;:::i;14399:207::-;;;;;;:::i;:::-;;:::i;20899:1308::-;;;;;;:::i;:::-;;:::i;5035:167::-;;;;;;:::i;:::-;;:::i;12533:204::-;;;;;;:::i;:::-;;:::i;11024:202::-;;;;;;:::i;:::-;;:::i;25637:3348::-;;;;;;:::i;:::-;;:::i;:::-;;;;4143:14:41;;4136:22;4118:41;;4190:2;4175:18;;4168:34;;;;4091:18;25637:3348:26;3950:258:41;738:69:26;;804:1;738:69;;;;;4359:25:41;;;4347:2;4332:18;738:69:26;4213:177:41;14954:225:26;;;;;;:::i;:::-;;:::i;16414:193::-;;;;;;:::i;:::-;;:::i;7320:157::-;;;;;;:::i;:::-;;:::i;976:18::-;;;;;-1:-1:-1;;;976:18:26;;;;;;6317:313;;;;;;:::i;:::-;;:::i;880:67::-;;944:1;880:67;;811:65;;873:1;811:65;;19635:300;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2294:229::-;;;;;;:::i;:::-;;:::i;13454:190::-;;;;;;:::i;:::-;;:::i;18020:227::-;;;;;;:::i;:::-;;:::i;17481:220::-;;;;;;:::i;:::-;;:::i;1084:53::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;1084:53:26;;;;;;-1:-1:-1;;;;;9334:32:41;;;9316:51;;9304:2;9289:18;1084:53:26;9170:203:41;3906:322:26;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22546:706::-;;;;;;:::i;:::-;;:::i;2943:231::-;;;;;;:::i;:::-;;:::i;5514:538::-;;;;;;:::i;:::-;;:::i;12991:206::-;;;;;;:::i;:::-;;:::i;18636:221::-;;;;;;:::i;:::-;;:::i;2649:290::-;;;;;;:::i;:::-;;:::i;15942:209::-;;;;;;:::i;:::-;;:::i;11477:204::-;;;;;;:::i;:::-;;:::i;1211:33::-;;;;;-1:-1:-1;;;;;1211:33:26;;;13937:205;;;;;;:::i;:::-;;:::i;19254:228::-;;;;;;:::i;:::-;;:::i;4493:313::-;;;;;;:::i;:::-;;:::i;12021:222::-;;;;;;:::i;:::-;;:::i;952:20::-;;;;;-1:-1:-1;;;;;952:20:26;;;15475:207;15594:4;15613:64;15633:7;15642:21;15665:11;15613:19;:64::i;:::-;15606:71;;15475:207;;;;;:::o;20140:345::-;20250:26;20278:22;20304:15;:39;20344:11;20304:52;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20249:107;;;;20382:17;20370:29;;:8;:29;;;20362:70;;;;-1:-1:-1;;;20362:70:26;;17181:2:41;20362:70:26;;;17163:21:41;17220:2;17200:18;;;17193:30;17259;17239:18;;;17232:58;17307:18;;20362:70:26;;;;;;;;;20438:42;20461:18;20438:22;:42::i;:::-;20243:242;;20140:345;;:::o;6859:226::-;6960:4;6989:1;6980:6;:10;;;6972:53;;;;-1:-1:-1;;;6972:53:26;;17538:2:41;6972:53:26;;;17520:21:41;17577:2;17557:18;;;17550:30;17616:32;17596:18;;;17589:60;17666:18;;6972:53:26;17336:354:41;6972:53:26;7038:42;7056:10;7065:1;7056:6;:10;:::i;:::-;7068:11;7038:17;:42::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;827:14:41;820:22;802:41;;790:2;775:18;;662:187;2612:28:26::1;;;;;;;;2527:118:::0;:::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;;18540:2:41;3254:76:26::1;::::0;::::1;18522:21:41::0;18579:2;18559:18;;;18552:30;18618:34;18598:18;;;18591:62;-1:-1:-1;;;18669:18:41;;;18662:34;18713:19;;3254:76:26::1;18338:400:41::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;14399:207::-;14510:4;14529:72;14548:16;:7;14558:6;14548:16;:::i;:::-;14566:21;14589:11;14529:18;:72::i;20899:1308::-;21035:4;21048:19;21069:23;21094:17;21113:30;21145:36;21185:15;:39;21225:11;21185:52;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21047:190;;-1:-1:-1;21047:190:26;;-1:-1:-1;21047:190:26;-1:-1:-1;21047:190:26;-1:-1:-1;21047:190:26;-1:-1:-1;21243:17:26;21278:22;21263:11;:37;;;;;;;;:::i;:::-;;21243:57;;21306:18;21353:13;21327:39;;;;;;;;:::i;:::-;:22;:39;;;;;;;;:::i;:::-;;;-1:-1:-1;21372:25:26;5404:66:19;21401:44:26;;:78;;;;-1:-1:-1;21456:6:26;21450:2;:12;;;;;;;;:::i;:::-;;:28;;;-1:-1:-1;21472:6:26;21466:2;:12;;;;;;;;:::i;:::-;;21450:28;21400:173;;;-1:-1:-1;5576:66:19;21485:49:26;;:87;;;;-1:-1:-1;21545:10:26;21539:2;:16;;;;;;;;:::i;:::-;;:32;;;-1:-1:-1;21565:6:26;21559:2;:12;;;;;;;;:::i;:::-;;21539:32;21372:201;-1:-1:-1;21579:23:26;5021:66:19;21606:38:26;;:72;;;;-1:-1:-1;21655:6:26;21649:2;:12;;;;;;;;:::i;:::-;;:28;;;-1:-1:-1;21671:6:26;21665:2;:12;;;;;;;;:::i;:::-;;21649:28;21605:160;;;-1:-1:-1;5242:66:19;21684:42:26;;:80;;;;-1:-1:-1;21737:10:26;21731:2;:16;;;;;;;;:::i;:::-;;:32;;;-1:-1:-1;21757:6:26;21751:2;:12;;;;;;;;:::i;:::-;;21731:32;21579:186;-1:-1:-1;21855:36:26;21895;;:70;;;;-1:-1:-1;21942:6:26;21936:2;:12;;;;;;;;:::i;:::-;;:28;;;-1:-1:-1;21958:6:26;21952:2;:12;;;;;;;;:::i;:::-;;21936:28;21894:185;;;-1:-1:-1;5749:66:19;21971:69:26;;:107;;;;-1:-1:-1;22051:10:26;22045:2;:16;;;;;;;;:::i;:::-;;:32;;;-1:-1:-1;22071:6:26;22065:2;:12;;;;;;;;:::i;:::-;;22045:32;21855:224;;22092:12;:29;;;;;22108:13;22092:29;:53;;;;;22125:20;22092:53;:75;;;;;22149:18;22092:75;:110;;;;;22171:31;22092:110;22085:117;;;;;;;;;;;;20899:1308;;;;;;:::o;5035:167::-;5136:4;5155:42;5173:10;:6;5182:1;5173:10;:::i;:::-;5185:11;5155:17;:42::i;12533:204::-;12651:4;12670:62;12690:7;12699:19;12720:11;12670:19;:62::i;11024:202::-;11141:4;11160:61;11179:7;11188:19;11209:11;11160:18;:61::i;25637:3348::-;25744:12;2249:6;;25744:12;;-1:-1:-1;;;2249:6:26;;;;2248:7;2240:38;;;;-1:-1:-1;;;2240:38:26;;20147:2:41;2240:38:26;;;20129:21:41;20186:2;20166:18;;;20159:30;-1:-1:-1;;;20205:18:41;;;20198:48;20263:18;;2240:38:26;19945:342:41;2240:38:26;25867:16:::1;25886:51;25899:28;:6:::0;;:28:::1;:::i;:::-;:37;25886:12;:51::i;:::-;25867:70:::0;-1:-1:-1;25986:112:26::1;26011:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;1045:1:19;26011:86:26;;;;;;;:::i;:::-;;;;;;;25986:24;:112::i;:::-;26143:104;26164:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;1097:1:19;26164:82:26;;;;;;;:::i;:::-;;;;;;;26143:20;:104::i;:::-;26479:98;26489:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;26479:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;26532:20:26::1;::::0;-1:-1:-1;;;26532:20:26::1;::::0;::::1;::::0;::::1;:::i;:::-;:44;26479:9;:98::i;:::-;26464:180;;;::::0;-1:-1:-1;;;26464:180:26;;21857:2:41;26464:180:26::1;::::0;::::1;21839:21:41::0;21896:2;21876:18;;;21869:30;21935:34;21915:18;;;21908:62;-1:-1:-1;;;21986:18:41;;;21979:49;22045:19;;26464:180:26::1;21655:415:41::0;26464:180:26::1;26988:112;27001:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;27044:20;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:27;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;27073:20;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:26;::::0;::::1;::::0;::::1;::::0;::::1;:::i;26988:112::-;26980:148;;;::::0;-1:-1:-1;;;26980:148:26;;22804:2:41;26980:148:26::1;::::0;::::1;22786:21:41::0;22843:2;22823:18;;;22816:30;22882:25;22862:18;;;22855:53;22925:18;;26980:148:26::1;22602:347:41::0;26980:148:26::1;27196:249;27282:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;1263:1:19;::::0;27411::26::1;27360:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:52;::::0;;-1:-1:-1;27360:52:26::1;:::i;:::-;27282:131;;;;;;;:::i;:::-;27196:249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;27421:18:26::1;::::0;-1:-1:-1;;;27421:18:26::1;::::0;::::1;::::0;::::1;:::i;:::-;27196:21;:249::i;:::-;27452:27;27504:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;27597:1;27546:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:52;::::0;;-1:-1:-1;27546:52:26::1;:::i;:::-;27504:95;;;;;;;:::i;:::-;;;;;;;27496:104;;27482:119;;;;;;;;:::i;:::-;27452:149:::0;-1:-1:-1;27865:39:26::1;27848:13;:56;;;;;;;;:::i;:::-;;;:112;;;;-1:-1:-1::0;27925:35:26::1;27908:13;:52;;;;;;;;:::i;:::-;;;27848:112;27847:152;;;-1:-1:-1::0;27971:20:26::1;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:28;::::0;;;;;::::1;;;:::i;:::-;27832:223;;;::::0;-1:-1:-1;;;27832:223:26;;23983:2:41;27832:223:26::1;::::0;::::1;23965:21:41::0;24022:2;24002:18;;;23995:30;24061:34;24041:18;;;24034:62;-1:-1:-1;;;24112:18:41;;;24105:38;24160:19;;27832:223:26::1;23781:404:41::0;27832:223:26::1;28286:34;28269:13;:51;;;;;;;;:::i;:::-;;:83;;;-1:-1:-1::0;28324:20:26::1;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:28;::::0;;;;;::::1;;;:::i;:::-;28254:157;;;::::0;-1:-1:-1;;;28254:157:26;;24392:2:41;28254:157:26::1;::::0;::::1;24374:21:41::0;24431:2;24411:18;;;24404:30;24470:34;24450:18;;;24443:62;-1:-1:-1;;;24521:18:41;;;24514:41;24572:19;;28254:157:26::1;24190:407:41::0;28254:157:26::1;-1:-1:-1::0;;;;;28530:26:26;::::1;;28557:28;:6:::0;;:28:::1;:::i;:::-;:34;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;28593:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;28530:105;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28520:115:::0;-1:-1:-1;28698:29:26::1;28781:1;28730:28;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:52;::::0;;-1:-1:-1;28730:52:26::1;:::i;:::-;28698:84:::0;-1:-1:-1;28807:28:26::1;:6:::0;;:28:::1;:::i;:::-;:41;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;28849:21;28807:64;;;;;;;:::i;:::-;;;;;;;28788:83;;28946:34;;;25637:3348:::0;;;:::o;14954:225::-;15088:4;15107:67;15121:7;15130;15139:21;15162:11;15107:13;:67::i;:::-;15100:74;14954:225;-1:-1:-1;;;;14954:225:26:o;16414:193::-;16522:4;16541:61;16555:4;16561;16567:21;16590:11;16541:13;:61::i;7320:157::-;7418:4;7437:35;7450:3;7455;7460:11;7437:12;:35::i;6317:313::-;6425:4;6438:9;6449;6462:15;:33;6496:11;6462:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6437:71;;;;6522:3;:8;;6529:1;6522:8;6514:85;;;;;-1:-1:-1;;;6514:85:26;;26591:2:41;6514:85:26;;;26573:21:41;26610:18;;;26603:30;;;;26669:34;26649:18;;;26642:62;26740:34;26720:18;;;26713:62;26792:19;;6514:85:26;26389:428:41;6514:85:26;6612:13;;;;;;;;-1:-1:-1;;6317:313:26;;;;:::o;19635:300::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;19774:47:26;;-1:-1:-1;;;19774:47:26;;19754:17;;19774:15;;:34;;:47;;19809:11;;19774:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19774:47:26;;;;;;;;;;;;:::i;:::-;19896:34;;-1:-1:-1;;;19896:34:26;;19754:67;;-1:-1:-1;19896:15:26;;:28;;:34;;19754:67;;19896:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19896:34:26;;;;;;;;;;;;:::i;:::-;19872:20;;;19827:103;19853:17;;;19827:103;-1:-1:-1;;;;;19827:103:26;;;-1:-1:-1;19828:9:26;19635:300;-1:-1:-1;19635:300:26:o;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;;28696:2:41;2360:63:26::1;::::0;::::1;28678:21:41::0;28735:2;28715:18;;;28708:30;28774;28754:18;;;28747:58;28822:18;;2360:63:26::1;28494:352:41::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;13454:190::-;13561:4;13580:59;13594:4;13600;13606:19;13627:11;13580:13;:59::i;18020:227::-;18144:4;18163:79;18180:11;18193:35;18230:11;18163:16;:79::i;17481:220::-;17602:4;17621:75;17638:11;17651:31;17684:11;17621:16;:75::i;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;22546:706::-;22685:4;22799:17;22819:27;22839:6;;22819:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22819:19:26;;-1:-1:-1;;;22819:27:26:i;:::-;:92;;22910:1;22874:32;22898:6;;22881:24;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;22881:24:26;;;;;;;;;;22874:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;;22819:92;;;22863:1;22819:92;22799:112;;23011:20;23034:26;23054:5;;23034:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23034:19:26;;-1:-1:-1;;;23034:26:26:i;:::-;:90;;23123:1;23088:31;23112:5;;23095:23;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;23095:23:26;;;;;;;;;;23088:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;23034:90;;;23077:1;23034:90;23011:113;;23178:9;23137:12;;1176:1:19;23137:37:26;;;;;;;:::i;:::-;;;;;;;:50;:110;;;;;23235:12;23191;;1215:1:19;23191:40:26;;;;;;;:::i;:::-;;;;;;;:56;23137:110;23130:117;22546:706;-1:-1:-1;;;;;;;;;22546:706:26:o;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;5514:538::-;5635:4;5648:9;5659;5672:15;:33;5706:11;5672:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5647:71;;;;5742:6;5732:16;;:6;:16;;;;5724:74;;;;-1:-1:-1;;;5724:74:26;;32719:2:41;5724:74:26;;;32701:21:41;32758:2;32738:18;;;32731:30;32797:34;32777:18;;;32770:62;-1:-1:-1;;;32848:18:41;;;32841:43;32901:19;;5724:74:26;32517:409:41;5724:74:26;5812:3;:8;;5819:1;5812:8;5804:97;;;;-1:-1:-1;;;5804:97:26;;33133:2:41;5804:97:26;;;33115:21:41;33172:2;33152:18;;;33145:30;33211:34;33191:18;;;33184:62;33282:34;33262:18;;;33255:62;-1:-1:-1;;;33333:19:41;;;33326:43;33386:19;;5804:97:26;32931:480:41;5804:97:26;5915:3;:8;;5922:1;5915:8;5907:97;;;;-1:-1:-1;;;5907:97:26;;33618:2:41;5907:97:26;;;33600:21:41;33657:2;33637:18;;;33630:30;33696:34;33676:18;;;33669:62;33767:34;33747:18;;;33740:62;-1:-1:-1;;;33818:19:41;;;33811:43;33871:19;;5907:97:26;33416:480:41;5907:97:26;6027:3;6017:13;;:6;:13;;;:30;;;;;6044:3;6034:13;;:6;:13;;;6017:30;6010:37;5514:538;-1:-1:-1;;;;;;5514:538:26:o;12991:206::-;13102:4;13121:71;13141:16;13151:6;13141:7;:16;:::i;:::-;13159:19;13180:11;13121:19;:71::i;18636:221::-;18758:4;18777:75;18794:11;18807:31;18840:11;18777:16;:75::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;15942:209::-;16054:4;16073:73;16093:16;16103:6;16093:7;:16;:::i;:::-;16111:21;16134:11;16073:19;:73::i;11477:204::-;11587:4;11606:70;11625:16;:7;11635:6;11625:16;:::i;:::-;11643:19;11664:11;11606:18;:70::i;13937:205::-;14055:4;14074:63;14093:7;14102:21;14125:11;14074:18;:63::i;19254:228::-;19379:4;19398:79;19415:11;19428:35;19465:11;19398:16;:79::i;4493:313::-;4601:4;4614:9;4625;4638:15;:33;4672:11;4638:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4613:71;;;;4698:3;:8;;4705:1;4698:8;4690:85;;;;;-1:-1:-1;;;4690:85:26;;34103:2:41;4690:85:26;;;34085:21:41;34122:18;;;34115:30;;;;34181:34;34161:18;;;34154:62;34252:34;34232:18;;;34225:62;34304:19;;4690:85:26;33901:428:41;4690:85:26;-1:-1:-1;4788:13:26;;;;;;;;-1:-1:-1;4493:313:26;;;;:::o;12021:222::-;12154:4;12173:65;12187:7;12196;12205:19;12226:11;12173:13;:65::i;9715:1022::-;9854:4;9867:11;9880;9895:15;:34;9930:11;9943:9;9895:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9866:87;;;;9967:3;9974:1;9967:8;9959:86;;;;-1:-1:-1;;;9959:86:26;;35418:2:41;9959:86:26;;;35400:21:41;35457:2;35437:18;;;35430:30;35496:34;35476:18;;;35469:62;35567:34;35547:18;;;35540:62;-1:-1:-1;;;35618:19:41;;;35611:32;35660:19;;9959:86:26;35216:469:41;9959:86:26;10072:19;10059:9;:32;;;;;;;;:::i;:::-;;:70;;;-1:-1:-1;10108:21:26;10095:9;:34;;;;;;;;:::i;:::-;;10059:70;10051:101;;;;-1:-1:-1;;;10051:101:26;;;;;;;:::i;:::-;10175:19;10162:9;:32;;;;;;;;:::i;:::-;;10158:575;;10212:3;10219:1;10212:8;10204:103;;;;-1:-1:-1;;;10204:103:26;;;;;;;:::i;:::-;10537:35;144:10:19;10537:3:26;:35;:::i;:::-;10526:7;:46;10519:53;;;;;;10158:575;10601:3;10608:1;10601:8;10593:104;;;;-1:-1:-1;;;10593:104:26;;;;;;;:::i;:::-;10712:14;;;-1:-1:-1;10705:21:26;;-1:-1:-1;10705:21:26;25140:204;25230:12;;:62;;-1:-1:-1;;;25230:62:26;;944:1;25230:62;;;37194:25:41;37235:18;;;37228:34;;;-1:-1:-1;;;;;25230:12:26;;;;:24;;37167:18:41;;25230:62:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25215:124;;;;-1:-1:-1;;;25215:124:26;;37475:2:41;25215:124:26;;;37457:21:41;37514:2;37494:18;;;37487:30;37553:33;37533:18;;;37526:61;37604:18;;25215:124:26;37273:355:41;25215:124:26;25140:204;:::o;7481:905::-;7619:4;7632:11;7645;7660:15;:34;7695:11;7708:9;7660:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7631:87;;-1:-1:-1;7631:87:26;-1:-1:-1;7745:19:26;7732:9;:32;;;;;;;;:::i;:::-;;:70;;;-1:-1:-1;7781:21:26;7768:9;:34;;;;;;;;:::i;:::-;;7732:70;7724:101;;;;-1:-1:-1;;;7724:101:26;;;;;;;:::i;:::-;7848:19;7835:9;:32;;;;;;;;:::i;:::-;;7831:551;;7885:8;;7877:91;;;;-1:-1:-1;;;7877:91:26;;37835:2:41;7877:91:26;;;37817:21:41;37874:2;37854:18;;;37847:30;37913:34;37893:18;;;37886:62;37984:34;37964:18;;;37957:62;-1:-1:-1;;;38035:19:41;;;38028:37;38082:19;;7877:91:26;37633:474:41;7877:91:26;8198:35;144:10:19;8198:3:26;:35;:::i;7831:551::-;8262:8;;8254:92;;;;-1:-1:-1;;;8254:92:26;;38314:2:41;8254:92:26;;;38296:21:41;38353:2;38333:18;;;38326:30;38392:34;38372:18;;;38365:62;38463:34;38443:18;;;38436:62;-1:-1:-1;;;38514:19:41;;;38507:38;38562:19;;8254:92:26;38112:475:41;8254:92:26;-1:-1:-1;8361:14:26;;;-1:-1:-1;8354:21:26;;24510:210;24573:7;24607:28;;;:18;:28;;;;;;-1:-1:-1;;;;;24607:28:26;;24641:53;;;;-1:-1:-1;;;24641:53:26;;38794:2:41;24641:53:26;;;38776:21:41;38833:2;38813:18;;;38806:30;-1:-1:-1;;;38852:18:41;;;38845:48;38910:18;;24641:53:26;38592:342:41;24724:214:26;24818:12;;:66;;-1:-1:-1;;;24818:66:26;;:12;:66;;;37194:25:41;37235:18;;;37228:34;;;-1:-1:-1;;;;;24818:12:26;;;;:24;;37167:18:41;;24818:66:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24803:130;;;;-1:-1:-1;;;24803:130:26;;39141:2:41;24803:130:26;;;39123:21:41;39180:2;39160:18;;;39153:30;39219:34;39199:18;;;39192:62;-1:-1:-1;;;39270:18:41;;;39263:31;39311:19;;24803:130:26;38939:397:41;24942:194:26;25028:12;;;:58;;-1:-1:-1;;;25028:58:26;;;;;37194:25:41;;;;37235:18;;;37228:34;;;-1:-1:-1;;;;;25028:12:26;;:24;;37167:18:41;;25028:58:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25013:118;;;;-1:-1:-1;;;25013:118:26;;39543:2:41;25013:118:26;;;39525:21:41;39582:2;39562:18;;;39555:30;39621:31;39601:18;;;39594:59;39670:18;;25013:118:26;39341:353:41;3388:300:26;3506:4;3518:28;3557:12;1140:1:19;3557:44:26;;;;;;;;:::i;:::-;;;;;;;3549:53;;3518:84;;3615:68;3637:20;3659:23;3615:21;:68::i;23256:1250::-;23388:14;;23435:802;23451:27;:11;;:27;:::i;:::-;:34;;23442:6;:43;:78;;;;;23497:16;:23;23489:5;:31;23442:78;23435:802;;;23722:13;23752:27;:11;;:27;:::i;:::-;23780:10;:6;23789:1;23780:10;:::i;:::-;23752:50;23791:10;:6;23800:1;23791:10;:::i;:::-;23752:50;;;;;;;:::i;:::-;23745:58;;;:::i;:::-;23738:66;;;-1:-1:-1;23968:28:26;24100:1;23999:97;24032:27;:11;;:27;:::i;:::-;24060:6;;24067:15;;;;24060:6;24067:15;:::i;:::-;:19;;24085:1;24067:19;:::i;:::-;24032:55;;;;;;;:::i;:::-;24015:73;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;24015:73:26;;;;;;;;;;23999:97;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:102;;23968:133;;24141:16;24158:5;24141:23;;;;;;;;:::i;:::-;;;;;;;24117:20;:47;24109:78;;;;-1:-1:-1;;;24109:78:26;;40847:2:41;24109:78:26;;;40829:21:41;40886:2;40866:18;;;40859:30;-1:-1:-1;;;40905:18:41;;;40898:48;40963:18;;24109:78:26;40645:342:41;24109:78:26;24205:10;:6;24214:1;24205:10;:::i;:::-;24195:20;;;;;;:::i;:::-;;-1:-1:-1;24223:7:26;;;;:::i;:::-;;;;23522:715;;23435:802;;;24351:27;:11;;:27;:::i;:::-;:34;;24341:6;:44;24333:88;;;;-1:-1:-1;;;24333:88:26;;41494:2:41;24333:88:26;;;41476:21:41;41533:2;41513:18;;;41506:30;41572:33;41552:18;;;41545:61;41623:18;;24333:88:26;41292:355:41;24333:88:26;24444:16;:23;24435:5;:32;24427:74;;;;-1:-1:-1;;;24427:74:26;;41854:2:41;24427:74:26;;;41836:21:41;41893:2;41873:18;;;41866:30;41932:31;41912:18;;;41905:59;41981:18;;24427:74:26;41652:353:41;8390:1321:26;8544:4;8557:11;8570;8585:15;:34;8620:11;8633:9;8585:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8556:87;;;;8668:7;8657;:18;;8649:78;;;;-1:-1:-1;;;8649:78:26;;42212:2:41;8649:78:26;;;42194:21:41;42251:2;42231:18;;;42224:30;42290:34;42270:18;;;42263:62;-1:-1:-1;;;42341:18:41;;;42334:45;42396:19;;8649:78:26;42010:411:41;8649:78:26;8754:19;8741:9;:32;;;;;;;;:::i;:::-;;:70;;;-1:-1:-1;8790:21:26;8777:9;:34;;;;;;;;:::i;:::-;;8741:70;8733:101;;;;-1:-1:-1;;;8733:101:26;;;;;;;:::i;:::-;8857:19;8844:9;:32;;;;;;;;:::i;:::-;;8840:867;;8894:3;8901:1;8894:8;8886:103;;;;-1:-1:-1;;;8886:103:26;;42628:2:41;8886:103:26;;;42610:21:41;42667:2;42647:18;;;42640:30;42706:34;42686:18;;;42679:62;42777:34;42757:18;;;42750:62;-1:-1:-1;;;42828:19:41;;;42821:49;42887:19;;8886:103:26;42426:486:41;8886:103:26;9005:3;9012:1;9005:8;8997:103;;;;-1:-1:-1;;;8997:103:26;;;;;;;:::i;:::-;9331:35;144:10:19;9331:3:26;:35;:::i;:::-;9320:7;:46;:96;;;;-1:-1:-1;9381:35:26;144:10:19;9381:3:26;:35;:::i;:::-;9370:7;:46;9320:96;9313:103;;;;;;8840:867;9445:3;9452:1;9445:8;9437:104;;;;-1:-1:-1;;;9437:104:26;;43119:2:41;9437:104:26;;;43101:21:41;43158:2;43138:18;;;43131:30;43197:34;43177:18;;;43170:62;43268:34;43248:18;;;43241:62;-1:-1:-1;;;43319:19:41;;;43312:50;43379:19;;9437:104:26;42917:487:41;9437:104:26;9557:3;9564:1;9557:8;9549:104;;;;-1:-1:-1;;;9549:104:26;;;;;;;:::i;:::-;9679:3;9668:7;:14;:32;;;;-1:-1:-1;9686:14:26;;;;8390:1321;-1:-1:-1;;;;;8390:1321:26:o;16611:559::-;16759:4;16772:32;16806:30;16840:15;:37;16878:11;16891:9;16840:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;16840:61:26;;;;;;;;;;;;:::i;:::-;16771:130;;;;16933:22;16911:11;:18;:44;16907:77;;16972:5;16965:12;;;;;;16907:77;16994:9;16989:160;17013:22;17009:1;:26;16989:160;;;17055:55;17074:11;17086:1;17074:14;;;;;;;;:::i;:::-;;;;;;;17090:16;17107:1;17090:19;;;;;;;;:::i;:::-;;;;;;;234::24;;;;;;;211;;;;;;;;;;:42;;119:139;17055:55:26;17050:93;;17129:5;17122:12;;;;;;;17050:93;17037:3;;16989:160;;;-1:-1:-1;17161:4:26;;16611:559;-1:-1:-1;;;;;;16611:559:26:o;262:101:24:-;338:15;:20;;262:101::o;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;14:159:41:-;78:5;123:2;114:6;109:3;105:16;101:25;98:45;;;139:1;136;129:12;98:45;-1:-1:-1;161:6:41;14:159;-1:-1:-1;14:159:41:o;178:479::-;278:6;286;339:2;327:9;318:7;314:23;310:32;307:52;;;355:1;352;345:12;307:52;400:23;;;-1:-1:-1;498:2:41;483:18;;470:32;-1:-1:-1;;;;;514:30:41;;511:50;;;557:1;554;547:12;511:50;580:71;643:7;634:6;623:9;619:22;580:71;:::i;:::-;570:81;;;178:479;;;;;:::o;854:118::-;940:5;933:13;926:21;919:5;916:32;906:60;;962:1;959;952:12;977:494;1074:6;1082;1135:2;1123:9;1114:7;1110:23;1106:32;1103:52;;;1151:1;1148;1141:12;1103:52;1190:9;1177:23;1209:28;1231:5;1209:28;:::i;:::-;1256:5;-1:-1:-1;1312:2:41;1297:18;;1284:32;-1:-1:-1;;;;;1328:30:41;;1325:50;;;1371:1;1368;1361:12;1476:114;1560:4;1553:5;1549:16;1542:5;1539:27;1529:55;;1580:1;1577;1570:12;1595:496;1693:6;1701;1754:2;1742:9;1733:7;1729:23;1725:32;1722:52;;;1770:1;1767;1760:12;1722:52;1809:9;1796:23;1828:29;1851:5;1828:29;:::i;2096:241::-;2152:6;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2260:9;2247:23;2279:28;2301:5;2279:28;:::i;2342:131::-;-1:-1:-1;;;;;2417:31:41;;2407:42;;2397:70;;2463:1;2460;2453:12;2478:247;2537:6;2590:2;2578:9;2569:7;2565:23;2561:32;2558:52;;;2606:1;2603;2596:12;2558:52;2645:9;2632:23;2664:31;2689:5;2664:31;:::i;2730:112::-;2816:1;2809:5;2806:12;2796:40;;2832:1;2829;2822:12;2847:690;2983:6;2991;2999;3052:2;3040:9;3031:7;3027:23;3023:32;3020:52;;;3068:1;3065;3058:12;3020:52;3107:9;3094:23;3126:42;3162:5;3126:42;:::i;:::-;3187:5;-1:-1:-1;3244:2:41;3229:18;;3216:32;3257:44;3216:32;3257:44;:::i;:::-;3320:7;-1:-1:-1;3378:2:41;3363:18;;3350:32;-1:-1:-1;;;;;3394:30:41;;3391:50;;;3437:1;3434;3427:12;3391:50;3460:71;3523:7;3514:6;3503:9;3499:22;3460:71;:::i;:::-;3450:81;;;2847:690;;;;;:::o;3542:403::-;3645:6;3698:2;3686:9;3677:7;3673:23;3669:32;3666:52;;;3714:1;3711;3704:12;3666:52;3754:9;3741:23;-1:-1:-1;;;;;3779:6:41;3776:30;3773:50;;;3819:1;3816;3809:12;3773:50;3842:22;;3898:2;3880:16;;;3876:25;3873:45;;;3914:1;3911;3904:12;4395:599;4504:6;4512;4520;4573:2;4561:9;4552:7;4548:23;4544:32;4541:52;;;4589:1;4586;4579:12;4541:52;4634:23;;;-1:-1:-1;4754:2:41;4739:18;;4726:32;;-1:-1:-1;4835:2:41;4820:18;;4807:32;-1:-1:-1;;;;;4851:30:41;;4848:50;;;4894:1;4891;4884:12;4999:365;5090:6;5143:2;5131:9;5122:7;5118:23;5114:32;5111:52;;;5159:1;5156;5149:12;5111:52;5199:9;5186:23;-1:-1:-1;;;;;5224:6:41;5221:30;5218:50;;;5264:1;5261;5254:12;5218:50;5287:71;5350:7;5341:6;5330:9;5326:22;5287:71;:::i;5369:289::-;5411:3;5449:5;5443:12;5476:6;5471:3;5464:19;5532:6;5525:4;5518:5;5514:16;5507:4;5502:3;5498:14;5492:47;5584:1;5577:4;5568:6;5563:3;5559:16;5555:27;5548:38;5647:4;5640:2;5636:7;5631:2;5623:6;5619:15;5615:29;5610:3;5606:39;5602:50;5595:57;;;5369:289;;;;:::o;5663:492::-;5848:2;5837:9;5830:21;5923:1;5919;5914:3;5910:11;5906:19;5897:6;5891:13;5887:39;5882:2;5871:9;5867:18;5860:67;5981:2;5973:6;5969:15;5963:22;5958:2;5947:9;5943:18;5936:50;5811:4;6033:2;6025:6;6021:15;6015:22;6075:4;6068;6057:9;6053:20;6046:34;6097:52;6144:3;6133:9;6129:19;6115:12;6097:52;:::i;6160:127::-;6221:10;6216:3;6212:20;6209:1;6202:31;6252:4;6249:1;6242:15;6276:4;6273:1;6266:15;6292:255;6364:2;6358:9;6406:6;6394:19;;-1:-1:-1;;;;;6428:34:41;;6464:22;;;6425:62;6422:88;;;6490:18;;:::i;:::-;6526:2;6519:22;6292:255;:::o;6552:275::-;6623:2;6617:9;6688:2;6669:13;;-1:-1:-1;;6665:27:41;6653:40;;-1:-1:-1;;;;;6708:34:41;;6744:22;;;6705:62;6702:88;;;6770:18;;:::i;:::-;6806:2;6799:22;6552:275;;-1:-1:-1;6552:275:41:o;6832:182::-;6891:4;-1:-1:-1;;;;;6916:6:41;6913:30;6910:56;;;6946:18;;:::i;:::-;-1:-1:-1;6991:1:41;6987:14;7003:4;6983:25;;6832:182::o;7019:187::-;7068:4;-1:-1:-1;;;;;7093:6:41;7090:30;7087:56;;;7123:18;;:::i;:::-;-1:-1:-1;7189:2:41;7168:15;-1:-1:-1;;7164:29:41;7195:4;7160:40;;7019:187::o;7211:1769::-;7346:6;7354;7407:2;7395:9;7386:7;7382:23;7378:32;7375:52;;;7423:1;7420;7413:12;7375:52;7463:9;7450:23;-1:-1:-1;;;;;7488:6:41;7485:30;7482:50;;;7528:1;7525;7518:12;7482:50;7551:22;;7604:4;7596:13;;7592:27;-1:-1:-1;7582:55:41;;7633:1;7630;7623:12;7582:55;7673:2;7660:16;7696:63;7712:46;7751:6;7712:46;:::i;:::-;7696:63;:::i;:::-;7781:3;7805:6;7800:3;7793:19;7837:4;7832:3;7828:14;7821:21;;7894:4;7884:6;7881:1;7877:14;7873:2;7869:23;7865:34;7851:48;;7922:7;7914:6;7911:19;7908:39;;;7943:1;7940;7933:12;7908:39;7975:4;7971:2;7967:13;7989:749;8005:6;8000:3;7997:15;7989:749;;;8093:3;8080:17;-1:-1:-1;;;;;8116:11:41;8113:35;8110:55;;;8161:1;8158;8151:12;8110:55;8188:20;;8243:2;8235:11;;8231:25;-1:-1:-1;8221:53:41;;8270:1;8267;8260:12;8221:53;8324:4;8320:2;8316:13;8303:27;8358:55;8374:38;8403:8;8374:38;:::i;8358:55::-;8426:25;;;8470:39;8478:17;;;8470:39;8467:52;-1:-1:-1;8464:72:41;;;8532:1;8529;8522:12;8464:72;8595:8;8590:2;8586;8582:11;8575:4;8566:7;8562:18;8549:55;8659:1;8652:4;8641:8;8632:7;8628:22;8624:33;8617:44;8686:7;8681:3;8674:20;;;;8723:4;8718:3;8714:14;8707:21;;8031:4;8026:3;8022:14;8015:21;;7989:749;;;-1:-1:-1;8757:5:41;-1:-1:-1;;;;8815:4:41;8800:20;;8787:34;-1:-1:-1;;;;;8833:32:41;;8830:52;;;8878:1;8875;8868:12;8985:180;9044:6;9097:2;9085:9;9076:7;9072:23;9068:32;9065:52;;;9113:1;9110;9103:12;9065:52;-1:-1:-1;9136:23:41;;8985:180;-1:-1:-1;8985:180:41:o;9378:494::-;9475:6;9483;9536:2;9524:9;9515:7;9511:23;9507:32;9504:52;;;9552:1;9549;9542:12;9504:52;9592:9;9579:23;-1:-1:-1;;;;;9617:6:41;9614:30;9611:50;;;9657:1;9654;9647:12;9611:50;9680:71;9743:7;9734:6;9723:9;9719:22;9680:71;:::i;:::-;9670:81;;;9801:2;9790:9;9786:18;9773:32;9814:28;9836:5;9814:28;:::i;:::-;9861:5;9851:15;;;9378:494;;;;;:::o;9877:1698::-;10070:2;10059:9;10052:21;10033:4;10108:6;10102:13;10151:6;10146:2;10135:9;10131:18;10124:34;10181:52;10228:3;10217:9;10213:19;10199:12;10181:52;:::i;:::-;10167:66;;10282:2;10274:6;10270:15;10264:22;10354:2;10350:7;10338:9;10330:6;10326:22;10322:36;10317:2;10306:9;10302:18;10295:64;10382:41;10416:6;10400:14;10382:41;:::i;:::-;10368:55;;;10472:2;10464:6;10460:15;10454:22;10544:2;10540:7;10528:9;10520:6;10516:22;10512:36;10507:2;10496:9;10492:18;10485:64;10572:41;10606:6;10590:14;10572:41;:::i;:::-;10558:55;;;10662:2;10654:6;10650:15;10644:22;10735:2;10731:7;10719:9;10711:6;10707:22;10703:36;10697:3;10686:9;10682:19;10675:65;10763:41;10797:6;10781:14;10763:41;:::i;:::-;10749:55;;;10853:3;10845:6;10841:16;10835:23;10927:2;10923:7;10911:9;10903:6;10899:22;10895:36;10889:3;10878:9;10874:19;10867:65;10955:41;10989:6;10973:14;10955:41;:::i;:::-;10941:55;;;11045:3;11037:6;11033:16;11027:23;11119:2;11115:7;11103:9;11095:6;11091:22;11087:36;11081:3;11070:9;11066:19;11059:65;11147:41;11181:6;11165:14;11147:41;:::i;:::-;11133:55;;;11237:3;11229:6;11225:16;11219:23;11311:2;11307:7;11295:9;11287:6;11283:22;11279:36;11273:3;11262:9;11258:19;11251:65;11339:41;11373:6;11357:14;11339:41;:::i;:::-;11325:55;;;11429:3;11421:6;11417:16;11411:23;11506:2;11502:7;11490:9;11482:6;11478:22;11474:36;11465:6;11454:9;11450:22;11443:68;11528:41;11562:6;11546:14;11528:41;:::i;:::-;11520:49;9877:1698;-1:-1:-1;;;;;9877:1698:41:o;11580:367::-;11643:8;11653:6;11707:3;11700:4;11692:6;11688:17;11684:27;11674:55;;11725:1;11722;11715:12;11674:55;-1:-1:-1;11748:20:41;;-1:-1:-1;;;;;11780:30:41;;11777:50;;;11823:1;11820;11813:12;11777:50;11860:4;11852:6;11848:17;11836:29;;11920:3;11913:4;11903:6;11900:1;11896:14;11888:6;11884:27;11880:38;11877:47;11874:67;;;11937:1;11934;11927:12;11874:67;11580:367;;;;;:::o;11952:348::-;12004:8;12014:6;12068:3;12061:4;12053:6;12049:17;12045:27;12035:55;;12086:1;12083;12076:12;12035:55;-1:-1:-1;12109:20:41;;-1:-1:-1;;;;;12141:30:41;;12138:50;;;12184:1;12181;12174:12;12138:50;12221:4;12213:6;12209:17;12197:29;;12273:3;12266:4;12257:6;12249;12245:19;12241:30;12238:39;12235:59;;;12290:1;12287;12280:12;12305:1047;12433:6;12441;12449;12457;12465;12473;12526:2;12514:9;12505:7;12501:23;12497:32;12494:52;;;12542:1;12539;12532:12;12494:52;12582:9;12569:23;-1:-1:-1;;;;;12607:6:41;12604:30;12601:50;;;12647:1;12644;12637:12;12601:50;12686:70;12748:7;12739:6;12728:9;12724:22;12686:70;:::i;:::-;12775:8;;-1:-1:-1;12660:96:41;-1:-1:-1;;12863:2:41;12848:18;;12835:32;-1:-1:-1;;;;;12879:32:41;;12876:52;;;12924:1;12921;12914:12;12876:52;12963:61;13016:7;13005:8;12994:9;12990:24;12963:61;:::i;:::-;13043:8;;-1:-1:-1;12937:87:41;-1:-1:-1;;13131:2:41;13116:18;;13103:32;-1:-1:-1;;;;;13147:32:41;;13144:52;;;13192:1;13189;13182:12;13144:52;13231:61;13284:7;13273:8;13262:9;13258:24;13231:61;:::i;:::-;12305:1047;;;;-1:-1:-1;12305:1047:41;;-1:-1:-1;12305:1047:41;;13311:8;;12305:1047;-1:-1:-1;;;12305:1047:41:o;13357:437::-;13443:6;13451;13504:2;13492:9;13483:7;13479:23;13475:32;13472:52;;;13520:1;13517;13510:12;13472:52;13560:9;13547:23;-1:-1:-1;;;;;13585:6:41;13582:30;13579:50;;;13625:1;13622;13615:12;13579:50;13664:70;13726:7;13717:6;13706:9;13702:22;13664:70;:::i;:::-;13753:8;;13638:96;;-1:-1:-1;13357:437:41;-1:-1:-1;;;;13357:437:41:o;13799:633::-;13904:6;13912;13920;13973:2;13961:9;13952:7;13948:23;13944:32;13941:52;;;13989:1;13986;13979:12;13941:52;14028:9;14015:23;14047:29;14070:5;14047:29;:::i;:::-;14095:5;-1:-1:-1;14152:2:41;14137:18;;14124:32;14165:31;14124:32;14165:31;:::i;14437:768::-;14559:6;14567;14575;14583;14636:2;14624:9;14615:7;14611:23;14607:32;14604:52;;;14652:1;14649;14642:12;14604:52;14692:9;14679:23;-1:-1:-1;;;;;14717:6:41;14714:30;14711:50;;;14757:1;14754;14747:12;14711:50;14796:70;14858:7;14849:6;14838:9;14834:22;14796:70;:::i;:::-;14885:8;;-1:-1:-1;14770:96:41;-1:-1:-1;;14973:2:41;14958:18;;14945:32;-1:-1:-1;;;;;14989:32:41;;14986:52;;;15034:1;15031;15024:12;14986:52;15073:72;15137:7;15126:8;15115:9;15111:24;15073:72;:::i;:::-;14437:768;;;;-1:-1:-1;15164:8:41;-1:-1:-1;;;;14437:768:41:o;15441:266::-;15529:6;15524:3;15517:19;15581:6;15574:5;15567:4;15562:3;15558:14;15545:43;-1:-1:-1;15633:1:41;15608:16;;;15626:4;15604:27;;;15597:38;;;;15689:2;15668:15;;;-1:-1:-1;;15664:29:41;15655:39;;;15651:50;;15441:266::o;15712:603::-;15775:3;15832:5;15819:19;15917:2;15913:7;15905:5;15889:14;15885:26;15881:40;15861:18;15857:65;15847:93;;15936:1;15933;15926:12;15847:93;15964:30;;16075:4;16062:18;;;16017:21;-1:-1:-1;;;;;16092:30:41;;16089:50;;;16135:1;16132;16125:12;16089:50;16184:6;16168:14;16164:27;16155:7;16151:41;16148:61;;;16205:1;16202;16195:12;16148:61;16230:4;16225:3;16218:17;16251:58;16303:4;16298:3;16294:14;16286:6;16277:7;16251:58;:::i;16320:291::-;16519:2;16508:9;16501:21;16482:4;16539:66;16601:2;16590:9;16586:18;16578:6;16539:66;:::i;16616:358::-;16692:6;16700;16753:2;16741:9;16732:7;16728:23;16724:32;16721:52;;;16769:1;16766;16759:12;16721:52;16814:16;;16899:2;16884:18;;16878:25;16814:16;;-1:-1:-1;16912:30:41;16878:25;16912:30;:::i;17695:127::-;17756:10;17751:3;17747:20;17744:1;17737:31;17787:4;17784:1;17777:15;17811:4;17808:1;17801:15;17827:151;17917:4;17910:12;;;17896;;;17892:31;;17935:14;;17932:40;;;17952:18;;:::i;17983:350::-;18185:2;18167:21;;;18224:2;18204:18;;;18197:30;18263:28;18258:2;18243:18;;18236:56;18324:2;18309:18;;17983:350::o;18743:125::-;18808:9;;;18829:10;;;18826:36;;;18842:18;;:::i;18873:782::-;19015:6;19023;19031;19039;19047;19100:3;19088:9;19079:7;19075:23;19071:33;19068:53;;;19117:1;19114;19107:12;19068:53;19162:16;;19247:2;19232:18;;19226:25;19162:16;;-1:-1:-1;19282:1:41;19270:14;;19260:42;;19298:1;19295;19288:12;19260:42;19394:2;19379:18;;19373:25;19490:2;19475:18;;19469:25;19565:3;19550:19;;19544:26;19321:7;;-1:-1:-1;19373:25:41;;-1:-1:-1;19469:25:41;-1:-1:-1;19579:44:41;19544:26;19579:44;:::i;:::-;19642:7;19632:17;;;18873:782;;;;;;;;:::o;19660:127::-;19721:10;19716:3;19712:20;19709:1;19702:31;19752:4;19749:1;19742:15;19776:4;19773:1;19766:15;19792:148;19880:4;19859:12;;;19873;;;19855:31;;19898:13;;19895:39;;;19914:18;;:::i;20292:339::-;20400:4;20458:11;20445:25;20552:2;20548:7;20537:8;20521:14;20517:29;20513:43;20493:18;20489:68;20479:96;;20571:1;20568;20561:12;20479:96;20592:33;;;;;20292:339;-1:-1:-1;;20292:339:41:o;20636:545::-;20729:4;20735:6;20795:11;20782:25;20889:2;20885:7;20874:8;20858:14;20854:29;20850:43;20830:18;20826:68;20816:96;;20908:1;20905;20898:12;20816:96;20935:33;;20987:20;;;-1:-1:-1;;;;;;21019:30:41;;21016:50;;;21062:1;21059;21052:12;21016:50;21095:4;21083:17;;-1:-1:-1;21146:1:41;21142:14;;;21126;21122:35;21112:46;;21109:66;;;21171:1;21168;21161:12;21186:127;21247:10;21242:3;21238:20;21235:1;21228:31;21278:4;21275:1;21268:15;21302:4;21299:1;21292:15;21318:332;21418:4;21476:11;21463:25;21570:3;21566:8;21555;21539:14;21535:29;21531:44;21511:18;21507:69;21497:97;;21590:1;21587;21580:12;22075:522;22153:4;22159:6;22219:11;22206:25;22313:2;22309:7;22298:8;22282:14;22278:29;22274:43;22254:18;22250:68;22240:96;;22332:1;22329;22322:12;22240:96;22359:33;;22411:20;;;-1:-1:-1;;;;;;22443:30:41;;22440:50;;;22486:1;22483;22476:12;22440:50;22519:4;22507:17;;-1:-1:-1;22550:14:41;22546:27;;;22536:38;;22533:58;;;22587:1;22584;22577:12;22954:128;23021:9;;;23042:11;;;23039:37;;;23056:18;;:::i;23087:355::-;23208:9;23219;23261:8;23249:10;23246:24;23243:44;;;23283:1;23280;23273:12;23243:44;23312:6;23302:8;23299:20;23296:40;;;23332:1;23329;23322:12;23296:40;-1:-1:-1;;23374:1:41;23370:18;;;23358:31;;23411:25;;;;;-1:-1:-1;23087:355:41:o;23447:329::-;23545:4;23603:11;23590:25;23697:2;23693:7;23682:8;23666:14;23662:29;23658:43;23638:18;23634:68;23624:96;;23716:1;23713;23706:12;25128:624;25373:2;25362:9;25355:21;25336:4;25399:61;25456:2;25445:9;25441:18;25433:6;25425;25399:61;:::i;:::-;25496:22;;;25491:2;25476:18;;25469:50;25528:22;;;-1:-1:-1;;;;;25562:31:41;;25559:51;;;25606:1;25603;25596:12;25559:51;25640:6;25637:1;25633:14;25694:6;25686;25681:2;25673:6;25669:15;25656:45;25722:19;25743:2;25718:28;;25128:624;-1:-1:-1;;;;;;25128:624:41:o;25757:245::-;25824:6;25877:2;25865:9;25856:7;25852:23;25848:32;25845:52;;;25893:1;25890;25883:12;25845:52;25925:9;25919:16;25944:28;25966:5;25944:28;:::i;26007:377::-;26082:6;26090;26143:2;26131:9;26122:7;26118:23;26114:32;26111:52;;;26159:1;26156;26149:12;26111:52;26191:9;26185:16;26210:29;26233:5;26210:29;:::i;:::-;26308:2;26293:18;;26287:25;26258:5;;-1:-1:-1;26321:31:41;26287:25;26321:31;:::i;26822:514::-;26875:5;26928:3;26921:4;26913:6;26909:17;26905:27;26895:55;;26946:1;26943;26936:12;26895:55;26979:6;26973:13;27018:4;27010:6;27006:17;27047:1;27068:53;27084:36;27113:6;27084:36;:::i;27068:53::-;27057:64;;27146:6;27137:7;27130:23;27186:3;27177:6;27172:3;27168:16;27165:25;27162:45;;;27203:1;27200;27193:12;27162:45;27247:6;27242:3;27235:4;27226:7;27222:18;27216:38;27303:1;27274:20;;;27296:4;27270:31;27263:42;;;;-1:-1:-1;27278:7:41;26822:514;-1:-1:-1;;;26822:514:41:o;27341:335::-;27420:6;27473:2;27461:9;27452:7;27448:23;27444:32;27441:52;;;27489:1;27486;27479:12;27441:52;27522:9;27516:16;-1:-1:-1;;;;;27547:6:41;27544:30;27541:50;;;27587:1;27584;27577:12;27541:50;27610:60;27662:7;27653:6;27642:9;27638:22;27610:60;:::i;27681:226::-;27836:2;27825:9;27818:21;27799:4;27856:45;27897:2;27886:9;27882:18;27874:6;27856:45;:::i;27912:577::-;28010:6;28018;28026;28079:2;28067:9;28058:7;28054:23;28050:32;28047:52;;;28095:1;28092;28085:12;28047:52;28127:9;28121:16;28146:31;28171:5;28146:31;:::i;:::-;28267:2;28252:18;;28246:25;28341:2;28326:18;;28320:25;28196:5;;-1:-1:-1;28246:25:41;-1:-1:-1;;;;;;28357:30:41;;28354:50;;;28400:1;28397;28390:12;28354:50;28423:60;28475:7;28466:6;28455:9;28451:22;28423:60;:::i;28851:553::-;28948:6;28956;29009:2;28997:9;28988:7;28984:23;28980:32;28977:52;;;29025:1;29022;29015:12;28977:52;29058:9;29052:16;-1:-1:-1;;;;;29083:6:41;29080:30;29077:50;;;29123:1;29120;29113:12;29077:50;29146:60;29198:7;29189:6;29178:9;29174:22;29146:60;:::i;:::-;29136:70;;;29252:2;29241:9;29237:18;29231:25;-1:-1:-1;;;;;29271:8:41;29268:32;29265:52;;;29313:1;29310;29303:12;29265:52;29336:62;29390:7;29379:8;29368:9;29364:24;29336:62;:::i;29409:307::-;29586:2;29575:9;29568:21;29549:4;29606:45;29647:2;29636:9;29632:18;29624:6;29606:45;:::i;:::-;29598:53;;29701:6;29694:14;29687:22;29682:2;29671:9;29667:18;29660:50;29409:307;;;;;:::o;29721:1972::-;29823:6;29876:2;29864:9;29855:7;29851:23;29847:32;29844:52;;;29892:1;29889;29882:12;29844:52;29925:9;29919:16;-1:-1:-1;;;;;29950:6:41;29947:30;29944:50;;;29990:1;29987;29980:12;29944:50;30013:22;;30069:6;30051:16;;;30047:29;30044:49;;;30089:1;30086;30079:12;30044:49;30115:22;;:::i;:::-;30168:2;30162:9;-1:-1:-1;;;;;30186:8:41;30183:32;30180:52;;;30228:1;30225;30218:12;30180:52;30255:55;30302:7;30291:8;30287:2;30283:17;30255:55;:::i;:::-;30248:5;30241:70;;30350:2;30346;30342:11;30336:18;-1:-1:-1;;;;;30369:8:41;30366:32;30363:52;;;30411:1;30408;30401:12;30363:52;30447:55;30494:7;30483:8;30479:2;30475:17;30447:55;:::i;:::-;30442:2;30435:5;30431:14;30424:79;;30542:2;30538;30534:11;30528:18;-1:-1:-1;;;;;30561:8:41;30558:32;30555:52;;;30603:1;30600;30593:12;30555:52;30639:55;30686:7;30675:8;30671:2;30667:17;30639:55;:::i;:::-;30634:2;30627:5;30623:14;30616:79;;30734:2;30730;30726:11;30720:18;-1:-1:-1;;;;;30753:8:41;30750:32;30747:52;;;30795:1;30792;30785:12;30747:52;30831:55;30878:7;30867:8;30863:2;30859:17;30831:55;:::i;:::-;30826:2;30819:5;30815:14;30808:79;;30926:3;30922:2;30918:12;30912:19;-1:-1:-1;;;;;30946:8:41;30943:32;30940:52;;;30988:1;30985;30978:12;30940:52;31025:55;31072:7;31061:8;31057:2;31053:17;31025:55;:::i;:::-;31019:3;31012:5;31008:15;31001:80;;31120:3;31116:2;31112:12;31106:19;-1:-1:-1;;;;;31140:8:41;31137:32;31134:52;;;31182:1;31179;31172:12;31134:52;31219:55;31266:7;31255:8;31251:2;31247:17;31219:55;:::i;:::-;31213:3;31206:5;31202:15;31195:80;;31314:3;31310:2;31306:12;31300:19;-1:-1:-1;;;;;31334:8:41;31331:32;31328:52;;;31376:1;31373;31366:12;31328:52;31413:55;31460:7;31449:8;31445:2;31441:17;31413:55;:::i;:::-;31407:3;31400:5;31396:15;31389:80;;31508:3;31504:2;31500:12;31494:19;-1:-1:-1;;;;;31528:8:41;31525:32;31522:52;;;31570:1;31567;31560:12;31522:52;31607:55;31654:7;31643:8;31639:2;31635:17;31607:55;:::i;:::-;31601:3;31590:15;;31583:80;-1:-1:-1;31594:5:41;29721:1972;-1:-1:-1;;;;29721:1972:41:o;31698:273::-;31883:6;31875;31870:3;31857:33;31839:3;31909:16;;31934:13;;;31909:16;31698:273;-1:-1:-1;31698:273:41:o;31976:301::-;32105:3;32143:6;32137:13;32189:6;32182:4;32174:6;32170:17;32165:3;32159:37;32251:1;32215:16;;32240:13;;;-1:-1:-1;32215:16:41;31976:301;-1:-1:-1;31976:301:41:o;32282:230::-;32352:6;32405:2;32393:9;32384:7;32380:23;32376:32;32373:52;;;32421:1;32418;32411:12;32373:52;-1:-1:-1;32466:16:41;;32282:230;-1:-1:-1;32282:230:41:o;34334:529::-;34574:2;34563:9;34556:21;34537:4;34594:66;34656:2;34645:9;34641:18;34633:6;34594:66;:::i;:::-;34586:74;;34690:2;34682:6;34679:14;34669:145;;34736:10;34731:3;34727:20;34724:1;34717:31;34771:4;34768:1;34761:15;34799:4;34796:1;34789:15;34669:145;34850:6;34845:2;34834:9;34830:18;34823:34;34334:529;;;;;:::o;34868:343::-;34947:6;34955;35008:2;34996:9;34987:7;34983:23;34979:32;34976:52;;;35024:1;35021;35014:12;34976:52;-1:-1:-1;;35069:16:41;;35175:2;35160:18;;;35154:25;35069:16;;35154:25;;-1:-1:-1;34868:343:41:o;35690:342::-;35892:2;35874:21;;;35931:2;35911:18;;;35904:30;-1:-1:-1;;;35965:2:41;35950:18;;35943:48;36023:2;36008:18;;35690:342::o;36037:486::-;36239:2;36221:21;;;36278:2;36258:18;;;36251:30;36317:34;36312:2;36297:18;;36290:62;36388:34;36383:2;36368:18;;36361:62;-1:-1:-1;;;36454:3:41;36439:19;;36432:49;36513:3;36498:19;;36037:486::o;36528:487::-;36730:2;36712:21;;;36769:2;36749:18;;;36742:30;36808:34;36803:2;36788:18;;36781:62;36879:34;36874:2;36859:18;;36852:62;-1:-1:-1;;;36945:3:41;36930:19;;36923:50;37005:3;36990:19;;36528:487::o;39699:331::-;39804:9;39815;39857:8;39845:10;39842:24;39839:44;;;39879:1;39876;39869:12;39839:44;39908:6;39898:8;39895:20;39892:40;;;39928:1;39925;39918:12;39892:40;-1:-1:-1;;39954:23:41;;;39999:25;;;;;-1:-1:-1;39699:331:41:o;40035:323::-;40155:19;;-1:-1:-1;;;;;;40192:24:41;;;40236:1;40228:10;;40225:127;;;-1:-1:-1;;;;;;40297:1:41;40293:11;;;40290:1;40286:19;40282:41;;;40274:50;;40270:72;;-1:-1:-1;40225:127:41;;40035:323;;;;:::o;40992:155::-;41083:6;41060:14;;;41076;;;41056:35;;41103:15;;41100:41;;;41121:18;;:::i;41152:135::-;41191:3;41212:17;;;41209:43;;41232:18;;:::i;:::-;-1:-1:-1;41279:1:41;41268:13;;41152:135::o;43409:1173::-;43523:6;43531;43584:2;43572:9;43563:7;43559:23;43555:32;43552:52;;;43600:1;43597;43590:12;43552:52;43633:9;43627:16;-1:-1:-1;;;;;43658:6:41;43655:30;43652:50;;;43698:1;43695;43688:12;43652:50;43721:22;;43774:4;43766:13;;43762:27;-1:-1:-1;43752:55:41;;43803:1;43800;43793:12;43752:55;43836:2;43830:9;43859:63;43875:46;43914:6;43875:46;:::i;43859:63::-;43944:3;43968:6;43963:3;43956:19;44000:4;43995:3;43991:14;43984:21;;44057:4;44047:6;44044:1;44040:14;44036:2;44032:23;44028:34;44014:48;;44085:7;44077:6;44074:19;44071:39;;;44106:1;44103;44096:12;44071:39;44138:4;44134:2;44130:13;44152:308;44168:6;44163:3;44160:15;44152:308;;;44249:3;44243:10;-1:-1:-1;;;;;44272:11:41;44269:35;44266:55;;;44317:1;44314;44307:12;44266:55;44346:69;44407:7;44400:4;44386:11;44382:2;44378:20;44374:31;44346:69;:::i;:::-;44334:82;;-1:-1:-1;44445:4:41;44436:14;;;;44185;44152:308;;;-1:-1:-1;44546:4:41;44531:20;;;;44525:27;44479:5;;44525:27;;-1:-1:-1;;;;;;43409:1173:41:o",
|
|
3068
2861
|
linkReferences: {
|
|
3069
2862
|
"src/InputsExtractor.sol": {
|
|
3070
2863
|
InputsExtractor: [
|
|
3071
|
-
{ start:
|
|
3072
|
-
{ start:
|
|
3073
|
-
{ start:
|
|
3074
|
-
{ start:
|
|
3075
|
-
{ start:
|
|
3076
|
-
{ start:
|
|
3077
|
-
{ start:
|
|
3078
|
-
{ start:
|
|
3079
|
-
{ start:
|
|
3080
|
-
{ start:
|
|
3081
|
-
{ start:
|
|
3082
|
-
{ start:
|
|
3083
|
-
{ start:
|
|
2864
|
+
{ start: 1462, length: 20 },
|
|
2865
|
+
{ start: 2121, length: 20 },
|
|
2866
|
+
{ start: 4415, length: 20 },
|
|
2867
|
+
{ start: 4717, length: 20 },
|
|
2868
|
+
{ start: 4840, length: 20 },
|
|
2869
|
+
{ start: 5307, length: 20 },
|
|
2870
|
+
{ start: 5430, length: 20 },
|
|
2871
|
+
{ start: 6191, length: 20 },
|
|
2872
|
+
{ start: 7153, length: 20 },
|
|
2873
|
+
{ start: 7430, length: 20 },
|
|
2874
|
+
{ start: 8076, length: 20 },
|
|
2875
|
+
{ start: 9683, length: 20 },
|
|
2876
|
+
{ start: 10437, length: 20 }
|
|
3084
2877
|
]
|
|
3085
2878
|
}
|
|
3086
2879
|
}
|
|
@@ -3091,43 +2884,43 @@ var ZKPassportVerifier_default = {
|
|
|
3091
2884
|
"SANCTIONS_REGISTRY_ID()": "652ba33d",
|
|
3092
2885
|
"addVerifiers(bytes32[],address[])": "a6df2c01",
|
|
3093
2886
|
"admin()": "f851a440",
|
|
3094
|
-
"enforceSanctionsRoot((bytes
|
|
3095
|
-
"getBoundData((bytes
|
|
3096
|
-
"getDisclosedData((bytes
|
|
3097
|
-
"isAgeAbove(uint8,(bytes
|
|
3098
|
-
"isAgeAboveOrEqual(uint8,(bytes
|
|
3099
|
-
"isAgeBelow(uint8,(bytes
|
|
3100
|
-
"isAgeBelowOrEqual(uint8,(bytes
|
|
3101
|
-
"isAgeBetween(uint8,uint8,(bytes
|
|
3102
|
-
"isAgeEqual(uint8,(bytes
|
|
3103
|
-
"isBirthdateAfter(uint256,(bytes
|
|
3104
|
-
"isBirthdateAfterOrEqual(uint256,(bytes
|
|
3105
|
-
"isBirthdateBefore(uint256,(bytes
|
|
3106
|
-
"isBirthdateBeforeOrEqual(uint256,(bytes
|
|
3107
|
-
"isBirthdateBetween(uint256,uint256,(bytes
|
|
3108
|
-
"isBirthdateEqual(uint256,(bytes
|
|
3109
|
-
"isExpiryDateAfter(uint256,(bytes
|
|
3110
|
-
"isExpiryDateAfterOrEqual(uint256,(bytes
|
|
3111
|
-
"isExpiryDateBefore(uint256,(bytes
|
|
3112
|
-
"isExpiryDateBeforeOrEqual(uint256,(bytes
|
|
3113
|
-
"isExpiryDateBetween(uint256,uint256,(bytes
|
|
3114
|
-
"isExpiryDateEqual(uint256,(bytes
|
|
3115
|
-
"isFaceMatchVerified(uint8,uint8,(bytes
|
|
3116
|
-
"isIssuingCountryIn(string[],(bytes
|
|
3117
|
-
"isIssuingCountryOut(string[],(bytes
|
|
3118
|
-
"isNationalityIn(string[],(bytes
|
|
3119
|
-
"isNationalityOut(string[],(bytes
|
|
2887
|
+
"enforceSanctionsRoot(bool,(bytes))": "074bd4e2",
|
|
2888
|
+
"getBoundData((bytes))": "712f5e1c",
|
|
2889
|
+
"getDisclosedData((bytes),bool)": "822d00f8",
|
|
2890
|
+
"isAgeAbove(uint8,(bytes))": "307ad1ee",
|
|
2891
|
+
"isAgeAboveOrEqual(uint8,(bytes))": "e3e6525e",
|
|
2892
|
+
"isAgeBelow(uint8,(bytes))": "0ed1cb51",
|
|
2893
|
+
"isAgeBelowOrEqual(uint8,(bytes))": "64ce783d",
|
|
2894
|
+
"isAgeBetween(uint8,uint8,(bytes))": "90e44dd7",
|
|
2895
|
+
"isAgeEqual(uint8,(bytes))": "5c057843",
|
|
2896
|
+
"isBirthdateAfter(uint256,(bytes))": "b1bab8f2",
|
|
2897
|
+
"isBirthdateAfterOrEqual(uint256,(bytes))": "3e11569a",
|
|
2898
|
+
"isBirthdateBefore(uint256,(bytes))": "9facc38a",
|
|
2899
|
+
"isBirthdateBeforeOrEqual(uint256,(bytes))": "3a1e38bd",
|
|
2900
|
+
"isBirthdateBetween(uint256,uint256,(bytes))": "e8ba6705",
|
|
2901
|
+
"isBirthdateEqual(uint256,(bytes))": "782f2497",
|
|
2902
|
+
"isExpiryDateAfter(uint256,(bytes))": "22eb54d5",
|
|
2903
|
+
"isExpiryDateAfterOrEqual(uint256,(bytes))": "c17361df",
|
|
2904
|
+
"isExpiryDateBefore(uint256,(bytes))": "a72a8a49",
|
|
2905
|
+
"isExpiryDateBeforeOrEqual(uint256,(bytes))": "02298d56",
|
|
2906
|
+
"isExpiryDateBetween(uint256,uint256,(bytes))": "4736a714",
|
|
2907
|
+
"isExpiryDateEqual(uint256,(bytes))": "518e9b92",
|
|
2908
|
+
"isFaceMatchVerified(uint8,uint8,(bytes))": "29354ea6",
|
|
2909
|
+
"isIssuingCountryIn(string[],(bytes))": "7db36adf",
|
|
2910
|
+
"isIssuingCountryOut(string[],(bytes))": "d2bbe05f",
|
|
2911
|
+
"isNationalityIn(string[],(bytes))": "7f303f26",
|
|
2912
|
+
"isNationalityOut(string[],(bytes))": "a30470b2",
|
|
3120
2913
|
"paused()": "5c975abb",
|
|
3121
2914
|
"removeVerifiers(bytes32[])": "8d6937b8",
|
|
3122
2915
|
"rootRegistry()": "b96b161c",
|
|
3123
2916
|
"setPaused(bool)": "16c38b3c",
|
|
3124
2917
|
"transferAdmin(address)": "75829def",
|
|
3125
2918
|
"updateRootRegistry(address)": "18677f2a",
|
|
3126
|
-
"verifyProof(((bytes32,bytes,bytes32[]),(bytes
|
|
2919
|
+
"verifyProof(((bytes32,bytes,bytes32[]),(bytes),(uint256,string,string,bool)))": "4035b41d",
|
|
3127
2920
|
"verifyScopes(bytes32[],string,string)": "847755e3",
|
|
3128
2921
|
"vkeyHashToVerifier(bytes32)": "8163f231"
|
|
3129
2922
|
},
|
|
3130
|
-
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}',
|
|
2923
|
+
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":[{"internalType":"bool","name":"isStrict","type":"bool"},{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"}],"internalType":"struct Commitments","name":"commitments","type":"tuple"}],"name":"enforceSanctionsRoot","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"committedInputs","type":"bytes"}],"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":"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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"struct Commitments","name":"commitments","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":"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":"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":"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":"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":"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":"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(bool,(bytes))":{"params":{"commitments":"The commitments","isStrict":"Whether the sanctions check was strict or not"}},"getBoundData((bytes))":{"params":{"commitments":"The commitments"},"returns":{"boundData":"The data bound to the proof"}},"getDisclosedData((bytes),bool)":{"params":{"commitments":"The commitments","isIDCard":"Whether the proof is an ID card"},"returns":{"disclosedData":"The data disclosed by the proof"}},"isAgeAbove(uint8,(bytes))":{"params":{"commitments":"The commitments","minAge":"The age must be above this age"},"returns":{"_0":"True if the age is above the given age, false otherwise"}},"isAgeAboveOrEqual(uint8,(bytes))":{"params":{"commitments":"The commitments","minAge":"The age must be above or equal to this age"},"returns":{"_0":"True if the age is above or equal to the given age, false otherwise"}},"isAgeBelow(uint8,(bytes))":{"params":{"commitments":"The commitments","maxAge":"The age must be below this age"},"returns":{"_0":"True if the age is below the given age, false otherwise"}},"isAgeBelowOrEqual(uint8,(bytes))":{"params":{"commitments":"The commitments","maxAge":"The age must be below or equal to this age"},"returns":{"_0":"True if the age is below or equal to the given age, false otherwise"}},"isAgeBetween(uint8,uint8,(bytes))":{"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"},"returns":{"_0":"True if the age is in the given range, false otherwise"}},"isAgeEqual(uint8,(bytes))":{"params":{"age":"The age must be equal to this age","commitments":"The commitments"},"returns":{"_0":"True if the age is equal to the given age, false otherwise"}},"isBirthdateAfter(uint256,(bytes))":{"params":{"commitments":"The commitments","minDate":"The birthdate must be after this date"},"returns":{"_0":"True if the birthdate is after the given date, false otherwise"}},"isBirthdateAfterOrEqual(uint256,(bytes))":{"params":{"commitments":"The commitments","minDate":"The birthdate must be after or equal to this date"},"returns":{"_0":"True if the birthdate is after or equal to the given date, false otherwise"}},"isBirthdateBefore(uint256,(bytes))":{"params":{"commitments":"The commitments","maxDate":"The birthdate must be before this date"},"returns":{"_0":"True if the birthdate is before the given date, false otherwise"}},"isBirthdateBeforeOrEqual(uint256,(bytes))":{"params":{"commitments":"The commitments","maxDate":"The birthdate must be before or equal to this date"},"returns":{"_0":"True if the birthdate is before or equal to the given date, false otherwise"}},"isBirthdateBetween(uint256,uint256,(bytes))":{"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"},"returns":{"_0":"True if the birthdate is between the given dates, false otherwise"}},"isBirthdateEqual(uint256,(bytes))":{"params":{"commitments":"The commitments","date":"The birthdate must be equal to this date"},"returns":{"_0":"True if the birthdate is equal to the given date, false otherwise"}},"isExpiryDateAfter(uint256,(bytes))":{"params":{"commitments":"The commitments","minDate":"The expiry date must be after this date"},"returns":{"_0":"True if the expiry date is after the given date, false otherwise"}},"isExpiryDateAfterOrEqual(uint256,(bytes))":{"params":{"commitments":"The commitments","minDate":"The expiry date must be after or equal to this date"},"returns":{"_0":"True if the expiry date is after or equal to the given date, false otherwise"}},"isExpiryDateBefore(uint256,(bytes))":{"params":{"commitments":"The commitments","maxDate":"The expiry date must be before this date"},"returns":{"_0":"True if the expiry date is before the given date, false otherwise"}},"isExpiryDateBeforeOrEqual(uint256,(bytes))":{"params":{"commitments":"The commitments","maxDate":"The expiry date must be before or equal to this date"},"returns":{"_0":"True if the expiry date is before or equal to the given date, false otherwise"}},"isExpiryDateBetween(uint256,uint256,(bytes))":{"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"},"returns":{"_0":"True if the expiry date is between the given dates, false otherwise"}},"isExpiryDateEqual(uint256,(bytes))":{"params":{"commitments":"The commitments","date":"The expiry date must be equal to this date"},"returns":{"_0":"True if the expiry date is equal to the given date, false otherwise"}},"isFaceMatchVerified(uint8,uint8,(bytes))":{"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))":{"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))":{"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))":{"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))":{"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,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(bool,(bytes))":{"notice":"Enforces that the proof checks against the expected sanction list(s)"},"getBoundData((bytes))":{"notice":"Gets the data bound to the proof"},"getDisclosedData((bytes),bool)":{"notice":"Gets the data disclosed by the proof"},"isAgeAbove(uint8,(bytes))":{"notice":"Checks if the age is above the given age"},"isAgeAboveOrEqual(uint8,(bytes))":{"notice":"Checks if the age is above or equal to the given age"},"isAgeBelow(uint8,(bytes))":{"notice":"Checks if the age is below the given age"},"isAgeBelowOrEqual(uint8,(bytes))":{"notice":"Checks if the age is below or equal to the given age"},"isAgeBetween(uint8,uint8,(bytes))":{"notice":"Checks if the age is in the given range"},"isAgeEqual(uint8,(bytes))":{"notice":"Checks if the age is equal to the given age"},"isBirthdateAfter(uint256,(bytes))":{"notice":"Checks if the birthdate is after the given date"},"isBirthdateAfterOrEqual(uint256,(bytes))":{"notice":"Checks if the birthdate is after or equal to the given date"},"isBirthdateBefore(uint256,(bytes))":{"notice":"Checks if the birthdate is before the given date"},"isBirthdateBeforeOrEqual(uint256,(bytes))":{"notice":"Checks if the birthdate is before or equal to the given date"},"isBirthdateBetween(uint256,uint256,(bytes))":{"notice":"Checks if the birthdate is between the given dates"},"isBirthdateEqual(uint256,(bytes))":{"notice":"Checks if the birthdate is equal to the given date"},"isExpiryDateAfter(uint256,(bytes))":{"notice":"Checks if the expiry date is after the given date"},"isExpiryDateAfterOrEqual(uint256,(bytes))":{"notice":"Checks if the expiry date is after or equal to the given date"},"isExpiryDateBefore(uint256,(bytes))":{"notice":"Checks if the expiry date is before the given date"},"isExpiryDateBeforeOrEqual(uint256,(bytes))":{"notice":"Checks if the expiry date is before or equal to the given date"},"isExpiryDateBetween(uint256,uint256,(bytes))":{"notice":"Checks if the expiry date is between the given dates"},"isExpiryDateEqual(uint256,(bytes))":{"notice":"Checks if the expiry date is equal to the given date"},"isFaceMatchVerified(uint8,uint8,(bytes))":{"notice":"Checks if the proof is tied to a FaceMatch verification"},"isIssuingCountryIn(string[],(bytes))":{"notice":"Checks if the issuing country is in the list of countries"},"isIssuingCountryOut(string[],(bytes))":{"notice":"Checks if the issuing country is not in the list of countries"},"isNationalityIn(string[],(bytes))":{"notice":"Checks if the nationality is in the list of countries"},"isNationalityOut(string[],(bytes))":{"notice":"Checks if the nationality is not in the list of countries"},"verifyProof(((bytes32,bytes,bytes32[]),(bytes),(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":"0xfa558b70129f1b70e1ba49402ba966d3d4f5cea2b31c09f442a0e0a5dc7fe897","license":"Apache-2.0","urls":["bzz-raw://56b21abbd540f3e9a9a21183f10f565f271fae65bc81843afae85c8801f2694c","dweb:/ipfs/QmcbYeyTLvwFKYRBsCSVSxyuoNkZE38BDKMA6nGKb5CXN2"]},"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":"0x8c55d03f86334deb61086145bc04b56ee96d1b4a6bead8dae7651f9439754b23","license":"Apache-2.0","urls":["bzz-raw://fd4a6cf59604a726c314d144f4f6eff1cffa8764c9468a19f41e97fd89bb8c08","dweb:/ipfs/QmWim6m6zdHj2JzyMnjYNfwaX33DgPwhSLUp197FqqDeMh"]},"src/StringUtils.sol":{"keccak256":"0x0174454c28003f489bcdf636c93ccb512d80f3dbdca7485e11b51cf2c8ebfff1","license":"Apache-2.0","urls":["bzz-raw://92ea71064b8199c9a05cbe279cf42adaaa7b29604d960a84754d3d997b1c2342","dweb:/ipfs/QmcsrqRJ2YZABCZHzS782RqKmWEegSK1LCmTTjJ94gdh5q"]},"src/Types.sol":{"keccak256":"0xc1654e29b719d2a04cd2c605092e3a91933498af0453260c47fb6900d7a09c5d","license":"Apache-2.0","urls":["bzz-raw://600e7ad78cca07976f2a97ad573992b47163e93350b3856927a5d7af85f96f65","dweb:/ipfs/Qmc9NGHiBHHx9qJy9aWMmuvM5Y5buPV4yM2HkMfBqrqeKi"]},"src/ZKPassportVerifier.sol":{"keccak256":"0xa384e5f6f29c1919528a5db15e7f258e7dbe56cab981440883a4b933b7e6ebd7","license":"Apache-2.0","urls":["bzz-raw://2fc689c80dcff94cce5590b282aa34cbf5f5cd4e02ecf16890a664dc76e017bf","dweb:/ipfs/Qme8nkFNsbJrEDF9xSiaaVv1Tb365PDPoGZ2iqAFamzVrh"]},"src/ultra-honk-verifiers/OuterCount4.sol":{"keccak256":"0x7f4fe82593dcb379ffb63af53cbf9aa7f8ade43b04492dded7fb8b2b45a3164f","license":"Apache-2.0","urls":["bzz-raw://1f094b7652c2118e3884c9696562f1d113f1d60374666d7fa0d59b3af245de56","dweb:/ipfs/QmP1GbNKdTXgoPCWQYQgHcjPDfEvfjune7jUa6uvpccmkb"]}},"version":1}',
|
|
3131
2924
|
metadata: {
|
|
3132
2925
|
compiler: { version: "0.8.29+commit.ab55807c" },
|
|
3133
2926
|
language: "Solidity",
|
|
@@ -3259,13 +3052,13 @@ var ZKPassportVerifier_default = {
|
|
|
3259
3052
|
},
|
|
3260
3053
|
{
|
|
3261
3054
|
inputs: [
|
|
3055
|
+
{ internalType: "bool", name: "isStrict", type: "bool" },
|
|
3262
3056
|
{
|
|
3263
3057
|
internalType: "struct Commitments",
|
|
3264
3058
|
name: "commitments",
|
|
3265
3059
|
type: "tuple",
|
|
3266
3060
|
components: [
|
|
3267
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3268
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3061
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3269
3062
|
]
|
|
3270
3063
|
}
|
|
3271
3064
|
],
|
|
@@ -3280,8 +3073,7 @@ var ZKPassportVerifier_default = {
|
|
|
3280
3073
|
name: "commitments",
|
|
3281
3074
|
type: "tuple",
|
|
3282
3075
|
components: [
|
|
3283
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3284
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3076
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3285
3077
|
]
|
|
3286
3078
|
}
|
|
3287
3079
|
],
|
|
@@ -3308,8 +3100,7 @@ var ZKPassportVerifier_default = {
|
|
|
3308
3100
|
name: "commitments",
|
|
3309
3101
|
type: "tuple",
|
|
3310
3102
|
components: [
|
|
3311
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3312
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3103
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3313
3104
|
]
|
|
3314
3105
|
},
|
|
3315
3106
|
{ internalType: "bool", name: "isIDCard", type: "bool" }
|
|
@@ -3343,19 +3134,7 @@ var ZKPassportVerifier_default = {
|
|
|
3343
3134
|
name: "commitments",
|
|
3344
3135
|
type: "tuple",
|
|
3345
3136
|
components: [
|
|
3346
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3347
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3348
|
-
]
|
|
3349
|
-
},
|
|
3350
|
-
{
|
|
3351
|
-
internalType: "struct ServiceConfig",
|
|
3352
|
-
name: "serviceConfig",
|
|
3353
|
-
type: "tuple",
|
|
3354
|
-
components: [
|
|
3355
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3356
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3357
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3358
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3137
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3359
3138
|
]
|
|
3360
3139
|
}
|
|
3361
3140
|
],
|
|
@@ -3372,19 +3151,7 @@ var ZKPassportVerifier_default = {
|
|
|
3372
3151
|
name: "commitments",
|
|
3373
3152
|
type: "tuple",
|
|
3374
3153
|
components: [
|
|
3375
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3376
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3377
|
-
]
|
|
3378
|
-
},
|
|
3379
|
-
{
|
|
3380
|
-
internalType: "struct ServiceConfig",
|
|
3381
|
-
name: "serviceConfig",
|
|
3382
|
-
type: "tuple",
|
|
3383
|
-
components: [
|
|
3384
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3385
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3386
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3387
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3154
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3388
3155
|
]
|
|
3389
3156
|
}
|
|
3390
3157
|
],
|
|
@@ -3401,19 +3168,7 @@ var ZKPassportVerifier_default = {
|
|
|
3401
3168
|
name: "commitments",
|
|
3402
3169
|
type: "tuple",
|
|
3403
3170
|
components: [
|
|
3404
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3405
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3406
|
-
]
|
|
3407
|
-
},
|
|
3408
|
-
{
|
|
3409
|
-
internalType: "struct ServiceConfig",
|
|
3410
|
-
name: "serviceConfig",
|
|
3411
|
-
type: "tuple",
|
|
3412
|
-
components: [
|
|
3413
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3414
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3415
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3416
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3171
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3417
3172
|
]
|
|
3418
3173
|
}
|
|
3419
3174
|
],
|
|
@@ -3430,19 +3185,7 @@ var ZKPassportVerifier_default = {
|
|
|
3430
3185
|
name: "commitments",
|
|
3431
3186
|
type: "tuple",
|
|
3432
3187
|
components: [
|
|
3433
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3434
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3435
|
-
]
|
|
3436
|
-
},
|
|
3437
|
-
{
|
|
3438
|
-
internalType: "struct ServiceConfig",
|
|
3439
|
-
name: "serviceConfig",
|
|
3440
|
-
type: "tuple",
|
|
3441
|
-
components: [
|
|
3442
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3443
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3444
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3445
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3188
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3446
3189
|
]
|
|
3447
3190
|
}
|
|
3448
3191
|
],
|
|
@@ -3460,19 +3203,7 @@ var ZKPassportVerifier_default = {
|
|
|
3460
3203
|
name: "commitments",
|
|
3461
3204
|
type: "tuple",
|
|
3462
3205
|
components: [
|
|
3463
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3464
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3465
|
-
]
|
|
3466
|
-
},
|
|
3467
|
-
{
|
|
3468
|
-
internalType: "struct ServiceConfig",
|
|
3469
|
-
name: "serviceConfig",
|
|
3470
|
-
type: "tuple",
|
|
3471
|
-
components: [
|
|
3472
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3473
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3474
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3475
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3206
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3476
3207
|
]
|
|
3477
3208
|
}
|
|
3478
3209
|
],
|
|
@@ -3489,19 +3220,7 @@ var ZKPassportVerifier_default = {
|
|
|
3489
3220
|
name: "commitments",
|
|
3490
3221
|
type: "tuple",
|
|
3491
3222
|
components: [
|
|
3492
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3493
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3494
|
-
]
|
|
3495
|
-
},
|
|
3496
|
-
{
|
|
3497
|
-
internalType: "struct ServiceConfig",
|
|
3498
|
-
name: "serviceConfig",
|
|
3499
|
-
type: "tuple",
|
|
3500
|
-
components: [
|
|
3501
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3502
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3503
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3504
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3223
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3505
3224
|
]
|
|
3506
3225
|
}
|
|
3507
3226
|
],
|
|
@@ -3518,19 +3237,7 @@ var ZKPassportVerifier_default = {
|
|
|
3518
3237
|
name: "commitments",
|
|
3519
3238
|
type: "tuple",
|
|
3520
3239
|
components: [
|
|
3521
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3522
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3523
|
-
]
|
|
3524
|
-
},
|
|
3525
|
-
{
|
|
3526
|
-
internalType: "struct ServiceConfig",
|
|
3527
|
-
name: "serviceConfig",
|
|
3528
|
-
type: "tuple",
|
|
3529
|
-
components: [
|
|
3530
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3531
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3532
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3533
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3240
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3534
3241
|
]
|
|
3535
3242
|
}
|
|
3536
3243
|
],
|
|
@@ -3547,19 +3254,7 @@ var ZKPassportVerifier_default = {
|
|
|
3547
3254
|
name: "commitments",
|
|
3548
3255
|
type: "tuple",
|
|
3549
3256
|
components: [
|
|
3550
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3551
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3552
|
-
]
|
|
3553
|
-
},
|
|
3554
|
-
{
|
|
3555
|
-
internalType: "struct ServiceConfig",
|
|
3556
|
-
name: "serviceConfig",
|
|
3557
|
-
type: "tuple",
|
|
3558
|
-
components: [
|
|
3559
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3560
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3561
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3562
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3257
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3563
3258
|
]
|
|
3564
3259
|
}
|
|
3565
3260
|
],
|
|
@@ -3576,19 +3271,7 @@ var ZKPassportVerifier_default = {
|
|
|
3576
3271
|
name: "commitments",
|
|
3577
3272
|
type: "tuple",
|
|
3578
3273
|
components: [
|
|
3579
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3580
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3581
|
-
]
|
|
3582
|
-
},
|
|
3583
|
-
{
|
|
3584
|
-
internalType: "struct ServiceConfig",
|
|
3585
|
-
name: "serviceConfig",
|
|
3586
|
-
type: "tuple",
|
|
3587
|
-
components: [
|
|
3588
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3589
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3590
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3591
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3274
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3592
3275
|
]
|
|
3593
3276
|
}
|
|
3594
3277
|
],
|
|
@@ -3605,19 +3288,7 @@ var ZKPassportVerifier_default = {
|
|
|
3605
3288
|
name: "commitments",
|
|
3606
3289
|
type: "tuple",
|
|
3607
3290
|
components: [
|
|
3608
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3609
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3610
|
-
]
|
|
3611
|
-
},
|
|
3612
|
-
{
|
|
3613
|
-
internalType: "struct ServiceConfig",
|
|
3614
|
-
name: "serviceConfig",
|
|
3615
|
-
type: "tuple",
|
|
3616
|
-
components: [
|
|
3617
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3618
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3619
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3620
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3291
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3621
3292
|
]
|
|
3622
3293
|
}
|
|
3623
3294
|
],
|
|
@@ -3635,19 +3306,7 @@ var ZKPassportVerifier_default = {
|
|
|
3635
3306
|
name: "commitments",
|
|
3636
3307
|
type: "tuple",
|
|
3637
3308
|
components: [
|
|
3638
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3639
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3640
|
-
]
|
|
3641
|
-
},
|
|
3642
|
-
{
|
|
3643
|
-
internalType: "struct ServiceConfig",
|
|
3644
|
-
name: "serviceConfig",
|
|
3645
|
-
type: "tuple",
|
|
3646
|
-
components: [
|
|
3647
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3648
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3649
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3650
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3309
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3651
3310
|
]
|
|
3652
3311
|
}
|
|
3653
3312
|
],
|
|
@@ -3664,19 +3323,7 @@ var ZKPassportVerifier_default = {
|
|
|
3664
3323
|
name: "commitments",
|
|
3665
3324
|
type: "tuple",
|
|
3666
3325
|
components: [
|
|
3667
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3668
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3669
|
-
]
|
|
3670
|
-
},
|
|
3671
|
-
{
|
|
3672
|
-
internalType: "struct ServiceConfig",
|
|
3673
|
-
name: "serviceConfig",
|
|
3674
|
-
type: "tuple",
|
|
3675
|
-
components: [
|
|
3676
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3677
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3678
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3679
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3326
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3680
3327
|
]
|
|
3681
3328
|
}
|
|
3682
3329
|
],
|
|
@@ -3693,19 +3340,7 @@ var ZKPassportVerifier_default = {
|
|
|
3693
3340
|
name: "commitments",
|
|
3694
3341
|
type: "tuple",
|
|
3695
3342
|
components: [
|
|
3696
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3697
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3698
|
-
]
|
|
3699
|
-
},
|
|
3700
|
-
{
|
|
3701
|
-
internalType: "struct ServiceConfig",
|
|
3702
|
-
name: "serviceConfig",
|
|
3703
|
-
type: "tuple",
|
|
3704
|
-
components: [
|
|
3705
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3706
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3707
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3708
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3343
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3709
3344
|
]
|
|
3710
3345
|
}
|
|
3711
3346
|
],
|
|
@@ -3722,19 +3357,7 @@ var ZKPassportVerifier_default = {
|
|
|
3722
3357
|
name: "commitments",
|
|
3723
3358
|
type: "tuple",
|
|
3724
3359
|
components: [
|
|
3725
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3726
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3727
|
-
]
|
|
3728
|
-
},
|
|
3729
|
-
{
|
|
3730
|
-
internalType: "struct ServiceConfig",
|
|
3731
|
-
name: "serviceConfig",
|
|
3732
|
-
type: "tuple",
|
|
3733
|
-
components: [
|
|
3734
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3735
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3736
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3737
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3360
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3738
3361
|
]
|
|
3739
3362
|
}
|
|
3740
3363
|
],
|
|
@@ -3751,19 +3374,7 @@ var ZKPassportVerifier_default = {
|
|
|
3751
3374
|
name: "commitments",
|
|
3752
3375
|
type: "tuple",
|
|
3753
3376
|
components: [
|
|
3754
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3755
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3756
|
-
]
|
|
3757
|
-
},
|
|
3758
|
-
{
|
|
3759
|
-
internalType: "struct ServiceConfig",
|
|
3760
|
-
name: "serviceConfig",
|
|
3761
|
-
type: "tuple",
|
|
3762
|
-
components: [
|
|
3763
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3764
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3765
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3766
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3377
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3767
3378
|
]
|
|
3768
3379
|
}
|
|
3769
3380
|
],
|
|
@@ -3780,19 +3391,7 @@ var ZKPassportVerifier_default = {
|
|
|
3780
3391
|
name: "commitments",
|
|
3781
3392
|
type: "tuple",
|
|
3782
3393
|
components: [
|
|
3783
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3784
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3785
|
-
]
|
|
3786
|
-
},
|
|
3787
|
-
{
|
|
3788
|
-
internalType: "struct ServiceConfig",
|
|
3789
|
-
name: "serviceConfig",
|
|
3790
|
-
type: "tuple",
|
|
3791
|
-
components: [
|
|
3792
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3793
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3794
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3795
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3394
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3796
3395
|
]
|
|
3797
3396
|
}
|
|
3798
3397
|
],
|
|
@@ -3810,19 +3409,7 @@ var ZKPassportVerifier_default = {
|
|
|
3810
3409
|
name: "commitments",
|
|
3811
3410
|
type: "tuple",
|
|
3812
3411
|
components: [
|
|
3813
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3814
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3815
|
-
]
|
|
3816
|
-
},
|
|
3817
|
-
{
|
|
3818
|
-
internalType: "struct ServiceConfig",
|
|
3819
|
-
name: "serviceConfig",
|
|
3820
|
-
type: "tuple",
|
|
3821
|
-
components: [
|
|
3822
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3823
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3824
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3825
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3412
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3826
3413
|
]
|
|
3827
3414
|
}
|
|
3828
3415
|
],
|
|
@@ -3839,19 +3426,7 @@ var ZKPassportVerifier_default = {
|
|
|
3839
3426
|
name: "commitments",
|
|
3840
3427
|
type: "tuple",
|
|
3841
3428
|
components: [
|
|
3842
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3843
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3844
|
-
]
|
|
3845
|
-
},
|
|
3846
|
-
{
|
|
3847
|
-
internalType: "struct ServiceConfig",
|
|
3848
|
-
name: "serviceConfig",
|
|
3849
|
-
type: "tuple",
|
|
3850
|
-
components: [
|
|
3851
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3852
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3853
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3854
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3429
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3855
3430
|
]
|
|
3856
3431
|
}
|
|
3857
3432
|
],
|
|
@@ -3869,19 +3444,7 @@ var ZKPassportVerifier_default = {
|
|
|
3869
3444
|
name: "commitments",
|
|
3870
3445
|
type: "tuple",
|
|
3871
3446
|
components: [
|
|
3872
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3873
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3874
|
-
]
|
|
3875
|
-
},
|
|
3876
|
-
{
|
|
3877
|
-
internalType: "struct ServiceConfig",
|
|
3878
|
-
name: "serviceConfig",
|
|
3879
|
-
type: "tuple",
|
|
3880
|
-
components: [
|
|
3881
|
-
{ internalType: "uint256", name: "validityPeriodInSeconds", type: "uint256" },
|
|
3882
|
-
{ internalType: "string", name: "domain", type: "string" },
|
|
3883
|
-
{ internalType: "string", name: "scope", type: "string" },
|
|
3884
|
-
{ internalType: "bool", name: "devMode", type: "bool" }
|
|
3447
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3885
3448
|
]
|
|
3886
3449
|
}
|
|
3887
3450
|
],
|
|
@@ -3898,8 +3461,7 @@ var ZKPassportVerifier_default = {
|
|
|
3898
3461
|
name: "commitments",
|
|
3899
3462
|
type: "tuple",
|
|
3900
3463
|
components: [
|
|
3901
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3902
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3464
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3903
3465
|
]
|
|
3904
3466
|
}
|
|
3905
3467
|
],
|
|
@@ -3916,8 +3478,7 @@ var ZKPassportVerifier_default = {
|
|
|
3916
3478
|
name: "commitments",
|
|
3917
3479
|
type: "tuple",
|
|
3918
3480
|
components: [
|
|
3919
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3920
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3481
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3921
3482
|
]
|
|
3922
3483
|
}
|
|
3923
3484
|
],
|
|
@@ -3934,8 +3495,7 @@ var ZKPassportVerifier_default = {
|
|
|
3934
3495
|
name: "commitments",
|
|
3935
3496
|
type: "tuple",
|
|
3936
3497
|
components: [
|
|
3937
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3938
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3498
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3939
3499
|
]
|
|
3940
3500
|
}
|
|
3941
3501
|
],
|
|
@@ -3952,8 +3512,7 @@ var ZKPassportVerifier_default = {
|
|
|
3952
3512
|
name: "commitments",
|
|
3953
3513
|
type: "tuple",
|
|
3954
3514
|
components: [
|
|
3955
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3956
|
-
{ internalType: "uint256[]", name: "committedInputCounts", type: "uint256[]" }
|
|
3515
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
3957
3516
|
]
|
|
3958
3517
|
}
|
|
3959
3518
|
],
|
|
@@ -4022,12 +3581,7 @@ var ZKPassportVerifier_default = {
|
|
|
4022
3581
|
name: "commitments",
|
|
4023
3582
|
type: "tuple",
|
|
4024
3583
|
components: [
|
|
4025
|
-
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
4026
|
-
{
|
|
4027
|
-
internalType: "uint256[]",
|
|
4028
|
-
name: "committedInputCounts",
|
|
4029
|
-
type: "uint256[]"
|
|
4030
|
-
}
|
|
3584
|
+
{ internalType: "bytes", name: "committedInputs", type: "bytes" }
|
|
4031
3585
|
]
|
|
4032
3586
|
},
|
|
4033
3587
|
{
|
|
@@ -4079,195 +3633,179 @@ var ZKPassportVerifier_default = {
|
|
|
4079
3633
|
kind: "dev",
|
|
4080
3634
|
methods: {
|
|
4081
3635
|
constructor: { details: "Constructor" },
|
|
4082
|
-
"enforceSanctionsRoot((bytes
|
|
4083
|
-
params: {
|
|
3636
|
+
"enforceSanctionsRoot(bool,(bytes))": {
|
|
3637
|
+
params: {
|
|
3638
|
+
commitments: "The commitments",
|
|
3639
|
+
isStrict: "Whether the sanctions check was strict or not"
|
|
3640
|
+
}
|
|
4084
3641
|
},
|
|
4085
|
-
"getBoundData((bytes
|
|
3642
|
+
"getBoundData((bytes))": {
|
|
4086
3643
|
params: { commitments: "The commitments" },
|
|
4087
3644
|
returns: { boundData: "The data bound to the proof" }
|
|
4088
3645
|
},
|
|
4089
|
-
"getDisclosedData((bytes
|
|
3646
|
+
"getDisclosedData((bytes),bool)": {
|
|
4090
3647
|
params: {
|
|
4091
3648
|
commitments: "The commitments",
|
|
4092
3649
|
isIDCard: "Whether the proof is an ID card"
|
|
4093
3650
|
},
|
|
4094
3651
|
returns: { disclosedData: "The data disclosed by the proof" }
|
|
4095
3652
|
},
|
|
4096
|
-
"isAgeAbove(uint8,(bytes
|
|
3653
|
+
"isAgeAbove(uint8,(bytes))": {
|
|
4097
3654
|
params: {
|
|
4098
3655
|
commitments: "The commitments",
|
|
4099
|
-
minAge: "The age must be above this age"
|
|
4100
|
-
serviceConfig: "The service config"
|
|
3656
|
+
minAge: "The age must be above this age"
|
|
4101
3657
|
},
|
|
4102
3658
|
returns: { _0: "True if the age is above the given age, false otherwise" }
|
|
4103
3659
|
},
|
|
4104
|
-
"isAgeAboveOrEqual(uint8,(bytes
|
|
3660
|
+
"isAgeAboveOrEqual(uint8,(bytes))": {
|
|
4105
3661
|
params: {
|
|
4106
3662
|
commitments: "The commitments",
|
|
4107
|
-
minAge: "The age must be above or equal to this age"
|
|
4108
|
-
serviceConfig: "The service config"
|
|
3663
|
+
minAge: "The age must be above or equal to this age"
|
|
4109
3664
|
},
|
|
4110
3665
|
returns: {
|
|
4111
3666
|
_0: "True if the age is above or equal to the given age, false otherwise"
|
|
4112
3667
|
}
|
|
4113
3668
|
},
|
|
4114
|
-
"isAgeBelow(uint8,(bytes
|
|
3669
|
+
"isAgeBelow(uint8,(bytes))": {
|
|
4115
3670
|
params: {
|
|
4116
3671
|
commitments: "The commitments",
|
|
4117
|
-
maxAge: "The age must be below this age"
|
|
4118
|
-
serviceConfig: "The service config"
|
|
3672
|
+
maxAge: "The age must be below this age"
|
|
4119
3673
|
},
|
|
4120
3674
|
returns: { _0: "True if the age is below the given age, false otherwise" }
|
|
4121
3675
|
},
|
|
4122
|
-
"isAgeBelowOrEqual(uint8,(bytes
|
|
3676
|
+
"isAgeBelowOrEqual(uint8,(bytes))": {
|
|
4123
3677
|
params: {
|
|
4124
3678
|
commitments: "The commitments",
|
|
4125
|
-
maxAge: "The age must be below or equal to this age"
|
|
4126
|
-
serviceConfig: "The service config"
|
|
3679
|
+
maxAge: "The age must be below or equal to this age"
|
|
4127
3680
|
},
|
|
4128
3681
|
returns: {
|
|
4129
3682
|
_0: "True if the age is below or equal to the given age, false otherwise"
|
|
4130
3683
|
}
|
|
4131
3684
|
},
|
|
4132
|
-
"isAgeBetween(uint8,uint8,(bytes
|
|
3685
|
+
"isAgeBetween(uint8,uint8,(bytes))": {
|
|
4133
3686
|
params: {
|
|
4134
3687
|
commitments: "The commitments",
|
|
4135
3688
|
maxAge: "The age must be less than or equal to this age",
|
|
4136
|
-
minAge: "The age must be greater than or equal to this age"
|
|
4137
|
-
serviceConfig: "The service config"
|
|
3689
|
+
minAge: "The age must be greater than or equal to this age"
|
|
4138
3690
|
},
|
|
4139
3691
|
returns: { _0: "True if the age is in the given range, false otherwise" }
|
|
4140
3692
|
},
|
|
4141
|
-
"isAgeEqual(uint8,(bytes
|
|
3693
|
+
"isAgeEqual(uint8,(bytes))": {
|
|
4142
3694
|
params: {
|
|
4143
3695
|
age: "The age must be equal to this age",
|
|
4144
|
-
commitments: "The commitments"
|
|
4145
|
-
serviceConfig: "The service config"
|
|
3696
|
+
commitments: "The commitments"
|
|
4146
3697
|
},
|
|
4147
3698
|
returns: { _0: "True if the age is equal to the given age, false otherwise" }
|
|
4148
3699
|
},
|
|
4149
|
-
"isBirthdateAfter(uint256,(bytes
|
|
3700
|
+
"isBirthdateAfter(uint256,(bytes))": {
|
|
4150
3701
|
params: {
|
|
4151
3702
|
commitments: "The commitments",
|
|
4152
|
-
minDate: "The birthdate must be after this date"
|
|
4153
|
-
serviceConfig: "The service config"
|
|
3703
|
+
minDate: "The birthdate must be after this date"
|
|
4154
3704
|
},
|
|
4155
3705
|
returns: { _0: "True if the birthdate is after the given date, false otherwise" }
|
|
4156
3706
|
},
|
|
4157
|
-
"isBirthdateAfterOrEqual(uint256,(bytes
|
|
3707
|
+
"isBirthdateAfterOrEqual(uint256,(bytes))": {
|
|
4158
3708
|
params: {
|
|
4159
3709
|
commitments: "The commitments",
|
|
4160
|
-
minDate: "The birthdate must be after or equal to this date"
|
|
4161
|
-
serviceConfig: "The service config"
|
|
3710
|
+
minDate: "The birthdate must be after or equal to this date"
|
|
4162
3711
|
},
|
|
4163
3712
|
returns: {
|
|
4164
3713
|
_0: "True if the birthdate is after or equal to the given date, false otherwise"
|
|
4165
3714
|
}
|
|
4166
3715
|
},
|
|
4167
|
-
"isBirthdateBefore(uint256,(bytes
|
|
3716
|
+
"isBirthdateBefore(uint256,(bytes))": {
|
|
4168
3717
|
params: {
|
|
4169
3718
|
commitments: "The commitments",
|
|
4170
|
-
maxDate: "The birthdate must be before this date"
|
|
4171
|
-
serviceConfig: "The service config"
|
|
3719
|
+
maxDate: "The birthdate must be before this date"
|
|
4172
3720
|
},
|
|
4173
3721
|
returns: { _0: "True if the birthdate is before the given date, false otherwise" }
|
|
4174
3722
|
},
|
|
4175
|
-
"isBirthdateBeforeOrEqual(uint256,(bytes
|
|
3723
|
+
"isBirthdateBeforeOrEqual(uint256,(bytes))": {
|
|
4176
3724
|
params: {
|
|
4177
3725
|
commitments: "The commitments",
|
|
4178
|
-
maxDate: "The birthdate must be before or equal to this date"
|
|
4179
|
-
serviceConfig: "The service config"
|
|
3726
|
+
maxDate: "The birthdate must be before or equal to this date"
|
|
4180
3727
|
},
|
|
4181
3728
|
returns: {
|
|
4182
3729
|
_0: "True if the birthdate is before or equal to the given date, false otherwise"
|
|
4183
3730
|
}
|
|
4184
3731
|
},
|
|
4185
|
-
"isBirthdateBetween(uint256,uint256,(bytes
|
|
3732
|
+
"isBirthdateBetween(uint256,uint256,(bytes))": {
|
|
4186
3733
|
params: {
|
|
4187
3734
|
commitments: "The commitments",
|
|
4188
3735
|
maxDate: "The birthdate must be before or equal to this date",
|
|
4189
|
-
minDate: "The birthdate must be after or equal to this date"
|
|
4190
|
-
serviceConfig: "The service config"
|
|
3736
|
+
minDate: "The birthdate must be after or equal to this date"
|
|
4191
3737
|
},
|
|
4192
3738
|
returns: { _0: "True if the birthdate is between the given dates, false otherwise" }
|
|
4193
3739
|
},
|
|
4194
|
-
"isBirthdateEqual(uint256,(bytes
|
|
3740
|
+
"isBirthdateEqual(uint256,(bytes))": {
|
|
4195
3741
|
params: {
|
|
4196
3742
|
commitments: "The commitments",
|
|
4197
|
-
date: "The birthdate must be equal to this date"
|
|
4198
|
-
serviceConfig: "The service config"
|
|
3743
|
+
date: "The birthdate must be equal to this date"
|
|
4199
3744
|
},
|
|
4200
3745
|
returns: { _0: "True if the birthdate is equal to the given date, false otherwise" }
|
|
4201
3746
|
},
|
|
4202
|
-
"isExpiryDateAfter(uint256,(bytes
|
|
3747
|
+
"isExpiryDateAfter(uint256,(bytes))": {
|
|
4203
3748
|
params: {
|
|
4204
3749
|
commitments: "The commitments",
|
|
4205
|
-
minDate: "The expiry date must be after this date"
|
|
4206
|
-
serviceConfig: "The service config"
|
|
3750
|
+
minDate: "The expiry date must be after this date"
|
|
4207
3751
|
},
|
|
4208
3752
|
returns: { _0: "True if the expiry date is after the given date, false otherwise" }
|
|
4209
3753
|
},
|
|
4210
|
-
"isExpiryDateAfterOrEqual(uint256,(bytes
|
|
3754
|
+
"isExpiryDateAfterOrEqual(uint256,(bytes))": {
|
|
4211
3755
|
params: {
|
|
4212
3756
|
commitments: "The commitments",
|
|
4213
|
-
minDate: "The expiry date must be after or equal to this date"
|
|
4214
|
-
serviceConfig: "The service config"
|
|
3757
|
+
minDate: "The expiry date must be after or equal to this date"
|
|
4215
3758
|
},
|
|
4216
3759
|
returns: {
|
|
4217
3760
|
_0: "True if the expiry date is after or equal to the given date, false otherwise"
|
|
4218
3761
|
}
|
|
4219
3762
|
},
|
|
4220
|
-
"isExpiryDateBefore(uint256,(bytes
|
|
3763
|
+
"isExpiryDateBefore(uint256,(bytes))": {
|
|
4221
3764
|
params: {
|
|
4222
3765
|
commitments: "The commitments",
|
|
4223
|
-
maxDate: "The expiry date must be before this date"
|
|
4224
|
-
serviceConfig: "The service config"
|
|
3766
|
+
maxDate: "The expiry date must be before this date"
|
|
4225
3767
|
},
|
|
4226
3768
|
returns: { _0: "True if the expiry date is before the given date, false otherwise" }
|
|
4227
3769
|
},
|
|
4228
|
-
"isExpiryDateBeforeOrEqual(uint256,(bytes
|
|
3770
|
+
"isExpiryDateBeforeOrEqual(uint256,(bytes))": {
|
|
4229
3771
|
params: {
|
|
4230
3772
|
commitments: "The commitments",
|
|
4231
|
-
maxDate: "The expiry date must be before or equal to this date"
|
|
4232
|
-
serviceConfig: "The service config"
|
|
3773
|
+
maxDate: "The expiry date must be before or equal to this date"
|
|
4233
3774
|
},
|
|
4234
3775
|
returns: {
|
|
4235
3776
|
_0: "True if the expiry date is before or equal to the given date, false otherwise"
|
|
4236
3777
|
}
|
|
4237
3778
|
},
|
|
4238
|
-
"isExpiryDateBetween(uint256,uint256,(bytes
|
|
3779
|
+
"isExpiryDateBetween(uint256,uint256,(bytes))": {
|
|
4239
3780
|
params: {
|
|
4240
3781
|
commitments: "The commitments",
|
|
4241
3782
|
maxDate: "The expiry date must be before or equal to this date",
|
|
4242
|
-
minDate: "The expiry date must be after or equal to this date"
|
|
4243
|
-
serviceConfig: "The service config"
|
|
3783
|
+
minDate: "The expiry date must be after or equal to this date"
|
|
4244
3784
|
},
|
|
4245
3785
|
returns: {
|
|
4246
3786
|
_0: "True if the expiry date is between the given dates, false otherwise"
|
|
4247
3787
|
}
|
|
4248
3788
|
},
|
|
4249
|
-
"isExpiryDateEqual(uint256,(bytes
|
|
3789
|
+
"isExpiryDateEqual(uint256,(bytes))": {
|
|
4250
3790
|
params: {
|
|
4251
3791
|
commitments: "The commitments",
|
|
4252
|
-
date: "The expiry date must be equal to this date"
|
|
4253
|
-
serviceConfig: "The service config"
|
|
3792
|
+
date: "The expiry date must be equal to this date"
|
|
4254
3793
|
},
|
|
4255
3794
|
returns: {
|
|
4256
3795
|
_0: "True if the expiry date is equal to the given date, false otherwise"
|
|
4257
3796
|
}
|
|
4258
3797
|
},
|
|
4259
|
-
"isFaceMatchVerified(uint8,uint8,(bytes
|
|
3798
|
+
"isFaceMatchVerified(uint8,uint8,(bytes))": {
|
|
4260
3799
|
params: {
|
|
4261
3800
|
commitments: "The commitments",
|
|
4262
3801
|
faceMatchMode: "The FaceMatch mode expected to be used in the verification",
|
|
4263
|
-
os: "The operating system on which the proof should have been generated (Any (0), iOS (1), Android (2))"
|
|
4264
|
-
serviceConfig: "The service config"
|
|
3802
|
+
os: "The operating system on which the proof should have been generated (Any (0), iOS (1), Android (2))"
|
|
4265
3803
|
},
|
|
4266
3804
|
returns: {
|
|
4267
3805
|
_0: "True if the proof is tied to a valid FaceMatch verification, false otherwise"
|
|
4268
3806
|
}
|
|
4269
3807
|
},
|
|
4270
|
-
"isIssuingCountryIn(string[],(bytes
|
|
3808
|
+
"isIssuingCountryIn(string[],(bytes))": {
|
|
4271
3809
|
params: {
|
|
4272
3810
|
commitments: "The commitments",
|
|
4273
3811
|
countryList: "The list of countries (needs to match exactly the list of countries in the proof)"
|
|
@@ -4276,7 +3814,7 @@ var ZKPassportVerifier_default = {
|
|
|
4276
3814
|
_0: "True if the issuing country is in the list of countries, false otherwise"
|
|
4277
3815
|
}
|
|
4278
3816
|
},
|
|
4279
|
-
"isIssuingCountryOut(string[],(bytes
|
|
3817
|
+
"isIssuingCountryOut(string[],(bytes))": {
|
|
4280
3818
|
params: {
|
|
4281
3819
|
commitments: "The commitments",
|
|
4282
3820
|
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"
|
|
@@ -4285,7 +3823,7 @@ var ZKPassportVerifier_default = {
|
|
|
4285
3823
|
_0: "True if the issuing country is not in the list of countries, false otherwise"
|
|
4286
3824
|
}
|
|
4287
3825
|
},
|
|
4288
|
-
"isNationalityIn(string[],(bytes
|
|
3826
|
+
"isNationalityIn(string[],(bytes))": {
|
|
4289
3827
|
params: {
|
|
4290
3828
|
commitments: "The commitments",
|
|
4291
3829
|
countryList: "The list of countries (needs to match exactly the list of countries in the proof)"
|
|
@@ -4294,7 +3832,7 @@ var ZKPassportVerifier_default = {
|
|
|
4294
3832
|
_0: "True if the nationality is in the list of countries, false otherwise"
|
|
4295
3833
|
}
|
|
4296
3834
|
},
|
|
4297
|
-
"isNationalityOut(string[],(bytes
|
|
3835
|
+
"isNationalityOut(string[],(bytes))": {
|
|
4298
3836
|
params: {
|
|
4299
3837
|
commitments: "The commitments",
|
|
4300
3838
|
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"
|
|
@@ -4303,7 +3841,7 @@ var ZKPassportVerifier_default = {
|
|
|
4303
3841
|
_0: "True if the nationality is not in the list of countries, false otherwise"
|
|
4304
3842
|
}
|
|
4305
3843
|
},
|
|
4306
|
-
"verifyProof(((bytes32,bytes,bytes32[]),(bytes
|
|
3844
|
+
"verifyProof(((bytes32,bytes,bytes32[]),(bytes),(uint256,string,string,bool)))": {
|
|
4307
3845
|
params: { params: "The proof verification parameters" },
|
|
4308
3846
|
returns: {
|
|
4309
3847
|
isValid: "True if the proof is valid, false otherwise",
|
|
@@ -4326,83 +3864,75 @@ var ZKPassportVerifier_default = {
|
|
|
4326
3864
|
userdoc: {
|
|
4327
3865
|
kind: "user",
|
|
4328
3866
|
methods: {
|
|
4329
|
-
"enforceSanctionsRoot((bytes
|
|
3867
|
+
"enforceSanctionsRoot(bool,(bytes))": {
|
|
4330
3868
|
notice: "Enforces that the proof checks against the expected sanction list(s)"
|
|
4331
3869
|
},
|
|
4332
|
-
"getBoundData((bytes
|
|
4333
|
-
"getDisclosedData((bytes
|
|
4334
|
-
|
|
4335
|
-
|
|
4336
|
-
"isAgeAbove(uint8,(bytes,uint256[]),(uint256,string,string,bool))": {
|
|
4337
|
-
notice: "Checks if the age is above the given age"
|
|
4338
|
-
},
|
|
4339
|
-
"isAgeAboveOrEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))": {
|
|
3870
|
+
"getBoundData((bytes))": { notice: "Gets the data bound to the proof" },
|
|
3871
|
+
"getDisclosedData((bytes),bool)": { notice: "Gets the data disclosed by the proof" },
|
|
3872
|
+
"isAgeAbove(uint8,(bytes))": { notice: "Checks if the age is above the given age" },
|
|
3873
|
+
"isAgeAboveOrEqual(uint8,(bytes))": {
|
|
4340
3874
|
notice: "Checks if the age is above or equal to the given age"
|
|
4341
3875
|
},
|
|
4342
|
-
"isAgeBelow(uint8,(bytes
|
|
4343
|
-
|
|
4344
|
-
},
|
|
4345
|
-
"isAgeBelowOrEqual(uint8,(bytes,uint256[]),(uint256,string,string,bool))": {
|
|
3876
|
+
"isAgeBelow(uint8,(bytes))": { notice: "Checks if the age is below the given age" },
|
|
3877
|
+
"isAgeBelowOrEqual(uint8,(bytes))": {
|
|
4346
3878
|
notice: "Checks if the age is below or equal to the given age"
|
|
4347
3879
|
},
|
|
4348
|
-
"isAgeBetween(uint8,uint8,(bytes
|
|
3880
|
+
"isAgeBetween(uint8,uint8,(bytes))": {
|
|
4349
3881
|
notice: "Checks if the age is in the given range"
|
|
4350
3882
|
},
|
|
4351
|
-
"isAgeEqual(uint8,(bytes
|
|
4352
|
-
|
|
4353
|
-
},
|
|
4354
|
-
"isBirthdateAfter(uint256,(bytes,uint256[]),(uint256,string,string,bool))": {
|
|
3883
|
+
"isAgeEqual(uint8,(bytes))": { notice: "Checks if the age is equal to the given age" },
|
|
3884
|
+
"isBirthdateAfter(uint256,(bytes))": {
|
|
4355
3885
|
notice: "Checks if the birthdate is after the given date"
|
|
4356
3886
|
},
|
|
4357
|
-
"isBirthdateAfterOrEqual(uint256,(bytes
|
|
3887
|
+
"isBirthdateAfterOrEqual(uint256,(bytes))": {
|
|
4358
3888
|
notice: "Checks if the birthdate is after or equal to the given date"
|
|
4359
3889
|
},
|
|
4360
|
-
"isBirthdateBefore(uint256,(bytes
|
|
3890
|
+
"isBirthdateBefore(uint256,(bytes))": {
|
|
4361
3891
|
notice: "Checks if the birthdate is before the given date"
|
|
4362
3892
|
},
|
|
4363
|
-
"isBirthdateBeforeOrEqual(uint256,(bytes
|
|
3893
|
+
"isBirthdateBeforeOrEqual(uint256,(bytes))": {
|
|
4364
3894
|
notice: "Checks if the birthdate is before or equal to the given date"
|
|
4365
3895
|
},
|
|
4366
|
-
"isBirthdateBetween(uint256,uint256,(bytes
|
|
3896
|
+
"isBirthdateBetween(uint256,uint256,(bytes))": {
|
|
4367
3897
|
notice: "Checks if the birthdate is between the given dates"
|
|
4368
3898
|
},
|
|
4369
|
-
"isBirthdateEqual(uint256,(bytes
|
|
3899
|
+
"isBirthdateEqual(uint256,(bytes))": {
|
|
4370
3900
|
notice: "Checks if the birthdate is equal to the given date"
|
|
4371
3901
|
},
|
|
4372
|
-
"isExpiryDateAfter(uint256,(bytes
|
|
3902
|
+
"isExpiryDateAfter(uint256,(bytes))": {
|
|
4373
3903
|
notice: "Checks if the expiry date is after the given date"
|
|
4374
3904
|
},
|
|
4375
|
-
"isExpiryDateAfterOrEqual(uint256,(bytes
|
|
3905
|
+
"isExpiryDateAfterOrEqual(uint256,(bytes))": {
|
|
4376
3906
|
notice: "Checks if the expiry date is after or equal to the given date"
|
|
4377
3907
|
},
|
|
4378
|
-
"isExpiryDateBefore(uint256,(bytes
|
|
3908
|
+
"isExpiryDateBefore(uint256,(bytes))": {
|
|
4379
3909
|
notice: "Checks if the expiry date is before the given date"
|
|
4380
3910
|
},
|
|
4381
|
-
"isExpiryDateBeforeOrEqual(uint256,(bytes
|
|
3911
|
+
"isExpiryDateBeforeOrEqual(uint256,(bytes))": {
|
|
4382
3912
|
notice: "Checks if the expiry date is before or equal to the given date"
|
|
4383
3913
|
},
|
|
4384
|
-
"isExpiryDateBetween(uint256,uint256,(bytes
|
|
3914
|
+
"isExpiryDateBetween(uint256,uint256,(bytes))": {
|
|
4385
3915
|
notice: "Checks if the expiry date is between the given dates"
|
|
4386
3916
|
},
|
|
4387
|
-
"isExpiryDateEqual(uint256,(bytes
|
|
3917
|
+
"isExpiryDateEqual(uint256,(bytes))": {
|
|
4388
3918
|
notice: "Checks if the expiry date is equal to the given date"
|
|
4389
3919
|
},
|
|
4390
|
-
"isFaceMatchVerified(uint8,uint8,(bytes
|
|
3920
|
+
"isFaceMatchVerified(uint8,uint8,(bytes))": {
|
|
4391
3921
|
notice: "Checks if the proof is tied to a FaceMatch verification"
|
|
4392
3922
|
},
|
|
4393
|
-
"isIssuingCountryIn(string[],(bytes
|
|
3923
|
+
"isIssuingCountryIn(string[],(bytes))": {
|
|
4394
3924
|
notice: "Checks if the issuing country is in the list of countries"
|
|
4395
3925
|
},
|
|
4396
|
-
"isIssuingCountryOut(string[],(bytes
|
|
3926
|
+
"isIssuingCountryOut(string[],(bytes))": {
|
|
4397
3927
|
notice: "Checks if the issuing country is not in the list of countries"
|
|
4398
3928
|
},
|
|
4399
|
-
"isNationalityIn(string[],(bytes
|
|
3929
|
+
"isNationalityIn(string[],(bytes))": {
|
|
4400
3930
|
notice: "Checks if the nationality is in the list of countries"
|
|
4401
3931
|
},
|
|
4402
|
-
"isNationalityOut(string[],(bytes
|
|
3932
|
+
"isNationalityOut(string[],(bytes))": {
|
|
4403
3933
|
notice: "Checks if the nationality is not in the list of countries"
|
|
4404
3934
|
},
|
|
4405
|
-
"verifyProof(((bytes32,bytes,bytes32[]),(bytes
|
|
3935
|
+
"verifyProof(((bytes32,bytes,bytes32[]),(bytes),(uint256,string,string,bool)))": {
|
|
4406
3936
|
notice: "Verifies a proof from ZKPassport"
|
|
4407
3937
|
},
|
|
4408
3938
|
"verifyScopes(bytes32[],string,string)": {
|
|
@@ -4422,10 +3952,10 @@ var ZKPassportVerifier_default = {
|
|
|
4422
3952
|
},
|
|
4423
3953
|
sources: {
|
|
4424
3954
|
"src/Constants.sol": {
|
|
4425
|
-
keccak256: "
|
|
3955
|
+
keccak256: "0xfa558b70129f1b70e1ba49402ba966d3d4f5cea2b31c09f442a0e0a5dc7fe897",
|
|
4426
3956
|
urls: [
|
|
4427
|
-
"bzz-raw://
|
|
4428
|
-
"dweb:/ipfs/
|
|
3957
|
+
"bzz-raw://56b21abbd540f3e9a9a21183f10f565f271fae65bc81843afae85c8801f2694c",
|
|
3958
|
+
"dweb:/ipfs/QmcbYeyTLvwFKYRBsCSVSxyuoNkZE38BDKMA6nGKb5CXN2"
|
|
4429
3959
|
],
|
|
4430
3960
|
license: "Apache-2.0"
|
|
4431
3961
|
},
|
|
@@ -4446,10 +3976,10 @@ var ZKPassportVerifier_default = {
|
|
|
4446
3976
|
license: "MIT"
|
|
4447
3977
|
},
|
|
4448
3978
|
"src/InputsExtractor.sol": {
|
|
4449
|
-
keccak256: "
|
|
3979
|
+
keccak256: "0x8c55d03f86334deb61086145bc04b56ee96d1b4a6bead8dae7651f9439754b23",
|
|
4450
3980
|
urls: [
|
|
4451
|
-
"bzz-raw://
|
|
4452
|
-
"dweb:/ipfs/
|
|
3981
|
+
"bzz-raw://fd4a6cf59604a726c314d144f4f6eff1cffa8764c9468a19f41e97fd89bb8c08",
|
|
3982
|
+
"dweb:/ipfs/QmWim6m6zdHj2JzyMnjYNfwaX33DgPwhSLUp197FqqDeMh"
|
|
4453
3983
|
],
|
|
4454
3984
|
license: "Apache-2.0"
|
|
4455
3985
|
},
|
|
@@ -4462,26 +3992,26 @@ var ZKPassportVerifier_default = {
|
|
|
4462
3992
|
license: "Apache-2.0"
|
|
4463
3993
|
},
|
|
4464
3994
|
"src/Types.sol": {
|
|
4465
|
-
keccak256: "
|
|
3995
|
+
keccak256: "0xc1654e29b719d2a04cd2c605092e3a91933498af0453260c47fb6900d7a09c5d",
|
|
4466
3996
|
urls: [
|
|
4467
|
-
"bzz-raw://
|
|
4468
|
-
"dweb:/ipfs/
|
|
3997
|
+
"bzz-raw://600e7ad78cca07976f2a97ad573992b47163e93350b3856927a5d7af85f96f65",
|
|
3998
|
+
"dweb:/ipfs/Qmc9NGHiBHHx9qJy9aWMmuvM5Y5buPV4yM2HkMfBqrqeKi"
|
|
4469
3999
|
],
|
|
4470
4000
|
license: "Apache-2.0"
|
|
4471
4001
|
},
|
|
4472
4002
|
"src/ZKPassportVerifier.sol": {
|
|
4473
|
-
keccak256: "
|
|
4003
|
+
keccak256: "0xa384e5f6f29c1919528a5db15e7f258e7dbe56cab981440883a4b933b7e6ebd7",
|
|
4474
4004
|
urls: [
|
|
4475
|
-
"bzz-raw://
|
|
4476
|
-
"dweb:/ipfs/
|
|
4005
|
+
"bzz-raw://2fc689c80dcff94cce5590b282aa34cbf5f5cd4e02ecf16890a664dc76e017bf",
|
|
4006
|
+
"dweb:/ipfs/Qme8nkFNsbJrEDF9xSiaaVv1Tb365PDPoGZ2iqAFamzVrh"
|
|
4477
4007
|
],
|
|
4478
4008
|
license: "Apache-2.0"
|
|
4479
4009
|
},
|
|
4480
4010
|
"src/ultra-honk-verifiers/OuterCount4.sol": {
|
|
4481
|
-
keccak256: "
|
|
4011
|
+
keccak256: "0x7f4fe82593dcb379ffb63af53cbf9aa7f8ade43b04492dded7fb8b2b45a3164f",
|
|
4482
4012
|
urls: [
|
|
4483
|
-
"bzz-raw://
|
|
4484
|
-
"dweb:/ipfs/
|
|
4013
|
+
"bzz-raw://1f094b7652c2118e3884c9696562f1d113f1d60374666d7fa0d59b3af245de56",
|
|
4014
|
+
"dweb:/ipfs/QmP1GbNKdTXgoPCWQYQgHcjPDfEvfjune7jUa6uvpccmkb"
|
|
4485
4015
|
],
|
|
4486
4016
|
license: "Apache-2.0"
|
|
4487
4017
|
}
|
|
@@ -4501,7 +4031,7 @@ var SolidityVerifier = class {
|
|
|
4501
4031
|
if (network === "ethereum_sepolia") {
|
|
4502
4032
|
return {
|
|
4503
4033
|
...baseConfig,
|
|
4504
|
-
address: "
|
|
4034
|
+
address: "0x0b05F45ff2F431a136eE8e708458286eC02b0d00"
|
|
4505
4035
|
};
|
|
4506
4036
|
} else if (network === "local_anvil") {
|
|
4507
4037
|
return {
|
|
@@ -4549,38 +4079,39 @@ var SolidityVerifier = class {
|
|
|
4549
4079
|
return import_utils2.ProofType.NATIONALITY_INCLUSION;
|
|
4550
4080
|
}
|
|
4551
4081
|
})();
|
|
4552
|
-
compressedCommittedInputs2 = proofType.toString(16).padStart(2, "0") + (0, import_utils2.rightPadArrayWithZeros)(
|
|
4082
|
+
compressedCommittedInputs2 = proofType.toString(16).padStart(2, "0") + import_utils2.ProofTypeLength[proofType].evm.toString(16).padStart(4, "0") + (0, import_utils2.rightPadArrayWithZeros)(
|
|
4553
4083
|
formattedCountries.map((c) => Array.from(new TextEncoder().encode(c))).flat(),
|
|
4554
4084
|
600
|
|
4555
4085
|
).map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4556
4086
|
} else if (circuitName === "compare_age_evm") {
|
|
4557
4087
|
const value = proof.committedInputs[circuitName];
|
|
4558
|
-
|
|
4559
|
-
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");
|
|
4088
|
+
compressedCommittedInputs2 = import_utils2.ProofType.AGE.toString(16).padStart(2, "0") + import_utils2.ProofTypeLength[import_utils2.ProofType.AGE].evm.toString(16).padStart(4, "0") + value.minAge.toString(16).padStart(2, "0") + value.maxAge.toString(16).padStart(2, "0");
|
|
4560
4089
|
} else if (circuitName === "compare_birthdate_evm") {
|
|
4561
4090
|
const value = proof.committedInputs[circuitName];
|
|
4562
|
-
const currentDateBytes = Array.from((0, import_utils2.numberToBytesBE)(value.currentDateTimestamp, 8));
|
|
4563
4091
|
const minDateBytes = Array.from((0, import_utils2.numberToBytesBE)(value.minDateTimestamp, 8));
|
|
4564
4092
|
const maxDateBytes = Array.from((0, import_utils2.numberToBytesBE)(value.maxDateTimestamp, 8));
|
|
4565
|
-
compressedCommittedInputs2 = import_utils2.ProofType.BIRTHDATE.toString(16).padStart(2, "0") +
|
|
4093
|
+
compressedCommittedInputs2 = import_utils2.ProofType.BIRTHDATE.toString(16).padStart(2, "0") + import_utils2.ProofTypeLength[import_utils2.ProofType.BIRTHDATE].evm.toString(16).padStart(4, "0") + minDateBytes.map((x) => x.toString(16).padStart(2, "0")).join("") + maxDateBytes.map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4566
4094
|
} else if (circuitName === "compare_expiry_evm") {
|
|
4567
4095
|
const value = proof.committedInputs[circuitName];
|
|
4568
|
-
const currentDateBytes = Array.from((0, import_utils2.numberToBytesBE)(value.currentDateTimestamp, 8));
|
|
4569
4096
|
const minDateBytes = Array.from((0, import_utils2.numberToBytesBE)(value.minDateTimestamp, 8));
|
|
4570
4097
|
const maxDateBytes = Array.from((0, import_utils2.numberToBytesBE)(value.maxDateTimestamp, 8));
|
|
4571
|
-
compressedCommittedInputs2 = import_utils2.ProofType.EXPIRY_DATE.toString(16).padStart(2, "0") +
|
|
4098
|
+
compressedCommittedInputs2 = import_utils2.ProofType.EXPIRY_DATE.toString(16).padStart(2, "0") + import_utils2.ProofTypeLength[import_utils2.ProofType.EXPIRY_DATE].evm.toString(16).padStart(4, "0") + minDateBytes.map((x) => x.toString(16).padStart(2, "0")).join("") + maxDateBytes.map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4572
4099
|
} else if (circuitName === "disclose_bytes_evm") {
|
|
4573
4100
|
const value = proof.committedInputs[circuitName];
|
|
4574
|
-
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("");
|
|
4101
|
+
compressedCommittedInputs2 = import_utils2.ProofType.DISCLOSE.toString(16).padStart(2, "0") + import_utils2.ProofTypeLength[import_utils2.ProofType.DISCLOSE].evm.toString(16).padStart(4, "0") + value.discloseMask.map((x) => x.toString(16).padStart(2, "0")).join("") + value.disclosedBytes.map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4575
4102
|
} else if (circuitName === "bind_evm") {
|
|
4576
4103
|
const value = proof.committedInputs[circuitName];
|
|
4577
|
-
compressedCommittedInputs2 = import_utils2.ProofType.BIND.toString(16).padStart(2, "0") + (0, import_utils2.rightPadArrayWithZeros)((0, import_utils2.formatBoundData)(value.data),
|
|
4104
|
+
compressedCommittedInputs2 = import_utils2.ProofType.BIND.toString(16).padStart(2, "0") + import_utils2.ProofTypeLength[import_utils2.ProofType.BIND].evm.toString(16).padStart(4, "0") + (0, import_utils2.rightPadArrayWithZeros)((0, import_utils2.formatBoundData)(value.data), 509).map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4578
4105
|
} else if (circuitName === "exclusion_check_sanctions_evm") {
|
|
4579
4106
|
const value = proof.committedInputs[circuitName];
|
|
4580
|
-
compressedCommittedInputs2
|
|
4107
|
+
compressedCommittedInputs2 += import_utils2.ProofType.SANCTIONS_EXCLUSION.toString(16).padStart(2, "0");
|
|
4108
|
+
compressedCommittedInputs2 += import_utils2.ProofTypeLength[import_utils2.ProofType.SANCTIONS_EXCLUSION].evm.toString(16).padStart(4, "0");
|
|
4109
|
+
compressedCommittedInputs2 += Array.from((0, import_utils2.numberToBytesBE)(BigInt(value.rootHash), 32)).map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4110
|
+
compressedCommittedInputs2 += value.isStrict ? "01" : "00";
|
|
4581
4111
|
} else if (circuitName.startsWith("facematch") && circuitName.endsWith("_evm")) {
|
|
4582
4112
|
const value = proof.committedInputs[circuitName];
|
|
4583
4113
|
compressedCommittedInputs2 += import_utils2.ProofType.FACEMATCH.toString(16).padStart(2, "0");
|
|
4114
|
+
compressedCommittedInputs2 += import_utils2.ProofTypeLength[import_utils2.ProofType.FACEMATCH].evm.toString(16).padStart(4, "0");
|
|
4584
4115
|
compressedCommittedInputs2 += Array.from((0, import_utils2.numberToBytesBE)(BigInt(value.rootKeyLeaf), 32)).map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
4585
4116
|
compressedCommittedInputs2 += value.environment === "development" ? "00" : "01";
|
|
4586
4117
|
compressedCommittedInputs2 += Array.from((0, import_utils2.numberToBytesBE)(BigInt(value.appIdHash), 32)).map((x) => x.toString(16).padStart(2, "0")).join("");
|
|
@@ -4922,7 +4453,7 @@ var ZKPassport = class {
|
|
|
4922
4453
|
};
|
|
4923
4454
|
return this.getZkPassportRequest(topic);
|
|
4924
4455
|
},
|
|
4925
|
-
sanctions: (countries = "all", lists = "all") => {
|
|
4456
|
+
sanctions: (countries = "all", lists = "all", options = { strict: false }) => {
|
|
4926
4457
|
this.topicToConfig[topic].sanctions = {
|
|
4927
4458
|
...this.topicToConfig[topic].sanctions,
|
|
4928
4459
|
countries: countries === "all" ? "all" : Array.isArray(countries) ? [
|
|
@@ -4932,7 +4463,8 @@ var ZKPassport = class {
|
|
|
4932
4463
|
...this.topicToConfig[topic].sanctions?.countries ?? [],
|
|
4933
4464
|
countries
|
|
4934
4465
|
],
|
|
4935
|
-
lists: lists === "all" ? "all" : Array.isArray(lists) ? [...this.topicToConfig[topic].sanctions?.lists ?? [], ...lists] : [...this.topicToConfig[topic].sanctions?.lists ?? [], lists]
|
|
4466
|
+
lists: lists === "all" ? "all" : Array.isArray(lists) ? [...this.topicToConfig[topic].sanctions?.lists ?? [], ...lists] : [...this.topicToConfig[topic].sanctions?.lists ?? [], lists],
|
|
4467
|
+
strict: options.strict ?? false
|
|
4936
4468
|
};
|
|
4937
4469
|
return this.getZkPassportRequest(topic);
|
|
4938
4470
|
},
|
|
@@ -5188,7 +4720,7 @@ var ZKPassport = class {
|
|
|
5188
4720
|
);
|
|
5189
4721
|
const pubkey = this.topicToPublicKey[requestId];
|
|
5190
4722
|
const timestamp = Math.floor(Date.now() / 1e3) - this.topicToLocalConfig[requestId].validity;
|
|
5191
|
-
return `https://zkpassport.id/r?d=${this.domain}&t=${requestId}&c=${base64Config}&s=${base64Service}&p=${pubkey}&m=${this.topicToLocalConfig[requestId].mode}&v=${VERSION}&dt=${timestamp}`;
|
|
4723
|
+
return `https://zkpassport.id/r?d=${this.domain}&t=${requestId}&c=${base64Config}&s=${base64Service}&p=${pubkey}&m=${this.topicToLocalConfig[requestId].mode}&v=${VERSION}&dt=${timestamp}&dev=${this.topicToLocalConfig[requestId].devMode ? "1" : "0"}`;
|
|
5192
4724
|
}
|
|
5193
4725
|
/**
|
|
5194
4726
|
* @notice Returns the URL of the request.
|