@web3dotorg/evm-slc-core-sdk 0.3.8 → 0.3.9
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/lib.commonjs/common.d.ts +50 -0
- package/lib.commonjs/common.js +2 -0
- package/lib.commonjs/constants.d.ts +23 -0
- package/lib.commonjs/constants.js +32 -0
- package/lib.commonjs/contracts/governance/ExecutorsRegistry.d.ts +597 -0
- package/lib.commonjs/contracts/governance/ExecutorsRegistry.js +2 -0
- package/lib.commonjs/contracts/governance/Governance.d.ts +984 -0
- package/lib.commonjs/contracts/governance/Governance.js +2 -0
- package/lib.commonjs/contracts/governance/NeutralsRegistry.d.ts +718 -0
- package/lib.commonjs/contracts/governance/NeutralsRegistry.js +2 -0
- package/lib.commonjs/contracts/governance/ParameterRegistry.d.ts +427 -0
- package/lib.commonjs/contracts/governance/ParameterRegistry.js +2 -0
- package/{contracts/governance/index.ts → lib.commonjs/contracts/governance/index.d.ts} +0 -3
- package/lib.commonjs/contracts/governance/index.js +2 -0
- package/{contracts/index.ts → lib.commonjs/contracts/index.d.ts} +0 -3
- package/lib.commonjs/contracts/index.js +2 -0
- package/lib.commonjs/contracts/interfaces/IExecutorsRegistry.d.ts +277 -0
- package/lib.commonjs/contracts/interfaces/IExecutorsRegistry.js +2 -0
- package/lib.commonjs/contracts/interfaces/IGovernance.d.ts +99 -0
- package/lib.commonjs/contracts/interfaces/IGovernance.js +2 -0
- package/lib.commonjs/contracts/interfaces/INeutralsRegistry.d.ts +301 -0
- package/lib.commonjs/contracts/interfaces/INeutralsRegistry.js +2 -0
- package/lib.commonjs/contracts/interfaces/IQParameters.d.ts +38 -0
- package/lib.commonjs/contracts/interfaces/IQParameters.js +2 -0
- package/lib.commonjs/contracts/interfaces/ISLCCore.d.ts +137 -0
- package/lib.commonjs/contracts/interfaces/ISLCCore.js +2 -0
- package/lib.commonjs/contracts/interfaces/ISLCCoreFactory.d.ts +102 -0
- package/lib.commonjs/contracts/interfaces/ISLCCoreFactory.js +2 -0
- package/lib.commonjs/contracts/interfaces/IWrappedToken.d.ts +134 -0
- package/lib.commonjs/contracts/interfaces/IWrappedToken.js +2 -0
- package/{contracts/interfaces/index.ts → lib.commonjs/contracts/interfaces/index.d.ts} +0 -3
- package/lib.commonjs/contracts/interfaces/index.js +2 -0
- package/lib.commonjs/contracts/libs/Errors.d.ts +21 -0
- package/lib.commonjs/contracts/libs/Errors.js +2 -0
- package/lib.commonjs/contracts/libs/NeutralsSelection.d.ts +21 -0
- package/lib.commonjs/contracts/libs/NeutralsSelection.js +2 -0
- package/{contracts/libs/index.ts → lib.commonjs/contracts/libs/index.d.ts} +0 -3
- package/lib.commonjs/contracts/libs/index.js +2 -0
- package/lib.commonjs/contracts/mocks/MockGovernance.d.ts +201 -0
- package/lib.commonjs/contracts/mocks/MockGovernance.js +2 -0
- package/lib.commonjs/contracts/mocks/MockNeutralsRegistry.d.ts +394 -0
- package/lib.commonjs/contracts/mocks/MockNeutralsRegistry.js +2 -0
- package/lib.commonjs/contracts/mocks/SimpleContract.d.ts +38 -0
- package/lib.commonjs/contracts/mocks/SimpleContract.js +2 -0
- package/lib.commonjs/contracts/mocks/WrappedToken.d.ts +174 -0
- package/lib.commonjs/contracts/mocks/WrappedToken.js +2 -0
- package/{contracts/mocks/index.ts → lib.commonjs/contracts/mocks/index.d.ts} +0 -3
- package/lib.commonjs/contracts/mocks/index.js +2 -0
- package/lib.commonjs/contracts/slc-core/SLCCore.d.ts +198 -0
- package/lib.commonjs/contracts/slc-core/SLCCore.js +2 -0
- package/lib.commonjs/contracts/slc-core/SLCCoreFactory.d.ts +264 -0
- package/lib.commonjs/contracts/slc-core/SLCCoreFactory.js +2 -0
- package/{contracts/slc-core/index.ts → lib.commonjs/contracts/slc-core/index.d.ts} +0 -3
- package/lib.commonjs/contracts/slc-core/index.js +2 -0
- package/lib.commonjs/contracts/token/Token.d.ts +201 -0
- package/lib.commonjs/contracts/token/Token.js +2 -0
- package/lib.commonjs/contracts/token/index.d.ts +1 -0
- package/lib.commonjs/contracts/token/index.js +2 -0
- package/lib.commonjs/factories/contracts/governance/ExecutorsRegistry__factory.d.ts +919 -0
- package/lib.commonjs/factories/contracts/governance/ExecutorsRegistry__factory.js +1211 -0
- package/lib.commonjs/factories/contracts/governance/Governance__factory.d.ts +1736 -0
- package/lib.commonjs/factories/contracts/governance/Governance__factory.js +2281 -0
- package/lib.commonjs/factories/contracts/governance/NeutralsRegistry__factory.d.ts +1128 -0
- package/lib.commonjs/factories/contracts/governance/NeutralsRegistry__factory.js +1486 -0
- package/lib.commonjs/factories/contracts/governance/ParameterRegistry__factory.d.ts +606 -0
- package/lib.commonjs/factories/contracts/governance/ParameterRegistry__factory.js +805 -0
- package/lib.commonjs/factories/contracts/governance/index.d.ts +4 -0
- package/lib.commonjs/factories/contracts/governance/index.js +14 -0
- package/lib.commonjs/factories/contracts/index.d.ts +6 -0
- package/lib.commonjs/factories/contracts/index.js +35 -0
- package/lib.commonjs/factories/contracts/interfaces/IExecutorsRegistry__factory.d.ts +316 -0
- package/lib.commonjs/factories/contracts/interfaces/IExecutorsRegistry__factory.js +422 -0
- package/lib.commonjs/factories/contracts/interfaces/IGovernance__factory.d.ts +107 -0
- package/lib.commonjs/factories/contracts/interfaces/IGovernance__factory.js +150 -0
- package/lib.commonjs/factories/contracts/interfaces/INeutralsRegistry__factory.d.ts +393 -0
- package/lib.commonjs/factories/contracts/interfaces/INeutralsRegistry__factory.js +521 -0
- package/lib.commonjs/factories/contracts/interfaces/IQParameters__factory.d.ts +63 -0
- package/lib.commonjs/factories/contracts/interfaces/IQParameters__factory.js +95 -0
- package/lib.commonjs/factories/contracts/interfaces/ISLCCoreFactory__factory.d.ts +135 -0
- package/lib.commonjs/factories/contracts/interfaces/ISLCCoreFactory__factory.js +191 -0
- package/lib.commonjs/factories/contracts/interfaces/ISLCCore__factory.d.ts +166 -0
- package/lib.commonjs/factories/contracts/interfaces/ISLCCore__factory.js +224 -0
- package/lib.commonjs/factories/contracts/interfaces/IWrappedToken__factory.d.ts +157 -0
- package/lib.commonjs/factories/contracts/interfaces/IWrappedToken__factory.js +215 -0
- package/lib.commonjs/factories/contracts/interfaces/index.d.ts +7 -0
- package/lib.commonjs/factories/contracts/interfaces/index.js +20 -0
- package/lib.commonjs/factories/contracts/libs/Errors__factory.d.ts +128 -0
- package/lib.commonjs/factories/contracts/libs/Errors__factory.js +182 -0
- package/lib.commonjs/factories/contracts/libs/NeutralsSelection__factory.d.ts +48 -0
- package/lib.commonjs/factories/contracts/libs/NeutralsSelection__factory.js +74 -0
- package/lib.commonjs/factories/contracts/libs/index.d.ts +2 -0
- package/lib.commonjs/factories/contracts/libs/index.js +10 -0
- package/lib.commonjs/factories/contracts/mocks/MockGovernance__factory.d.ts +241 -0
- package/lib.commonjs/factories/contracts/mocks/MockGovernance__factory.js +324 -0
- package/lib.commonjs/factories/contracts/mocks/MockNeutralsRegistry__factory.d.ts +527 -0
- package/lib.commonjs/factories/contracts/mocks/MockNeutralsRegistry__factory.js +695 -0
- package/lib.commonjs/factories/contracts/mocks/SimpleContract__factory.d.ts +54 -0
- package/lib.commonjs/factories/contracts/mocks/SimpleContract__factory.js +81 -0
- package/lib.commonjs/factories/contracts/mocks/WrappedToken__factory.d.ts +300 -0
- package/lib.commonjs/factories/contracts/mocks/WrappedToken__factory.js +404 -0
- package/lib.commonjs/factories/contracts/mocks/index.d.ts +4 -0
- package/lib.commonjs/factories/contracts/mocks/index.js +14 -0
- package/lib.commonjs/factories/contracts/slc-core/SLCCoreFactory__factory.d.ts +402 -0
- package/lib.commonjs/factories/contracts/slc-core/SLCCoreFactory__factory.js +539 -0
- package/lib.commonjs/factories/contracts/slc-core/SLCCore__factory.d.ts +261 -0
- package/lib.commonjs/factories/contracts/slc-core/SLCCore__factory.js +347 -0
- package/lib.commonjs/factories/contracts/slc-core/index.d.ts +2 -0
- package/lib.commonjs/factories/contracts/slc-core/index.js +10 -0
- package/lib.commonjs/factories/contracts/token/Token__factory.d.ts +355 -0
- package/lib.commonjs/factories/contracts/token/Token__factory.js +476 -0
- package/lib.commonjs/factories/contracts/token/index.d.ts +1 -0
- package/lib.commonjs/factories/contracts/token/index.js +8 -0
- package/lib.commonjs/index.d.ts +5 -0
- package/lib.commonjs/index.js +23 -0
- package/lib.esm/common.d.ts +50 -0
- package/lib.esm/common.js +1 -0
- package/lib.esm/constants.d.ts +23 -0
- package/lib.esm/constants.js +29 -0
- package/lib.esm/contracts/governance/ExecutorsRegistry.d.ts +597 -0
- package/lib.esm/contracts/governance/ExecutorsRegistry.js +1 -0
- package/lib.esm/contracts/governance/Governance.d.ts +984 -0
- package/lib.esm/contracts/governance/Governance.js +1 -0
- package/lib.esm/contracts/governance/NeutralsRegistry.d.ts +718 -0
- package/lib.esm/contracts/governance/NeutralsRegistry.js +1 -0
- package/lib.esm/contracts/governance/ParameterRegistry.d.ts +427 -0
- package/lib.esm/contracts/governance/ParameterRegistry.js +1 -0
- package/lib.esm/contracts/governance/index.d.ts +4 -0
- package/lib.esm/contracts/governance/index.js +1 -0
- package/lib.esm/contracts/index.d.ts +12 -0
- package/lib.esm/contracts/index.js +1 -0
- package/lib.esm/contracts/interfaces/IExecutorsRegistry.d.ts +277 -0
- package/lib.esm/contracts/interfaces/IExecutorsRegistry.js +1 -0
- package/lib.esm/contracts/interfaces/IGovernance.d.ts +99 -0
- package/lib.esm/contracts/interfaces/IGovernance.js +1 -0
- package/lib.esm/contracts/interfaces/INeutralsRegistry.d.ts +301 -0
- package/lib.esm/contracts/interfaces/INeutralsRegistry.js +1 -0
- package/lib.esm/contracts/interfaces/IQParameters.d.ts +38 -0
- package/lib.esm/contracts/interfaces/IQParameters.js +1 -0
- package/lib.esm/contracts/interfaces/ISLCCore.d.ts +137 -0
- package/lib.esm/contracts/interfaces/ISLCCore.js +1 -0
- package/lib.esm/contracts/interfaces/ISLCCoreFactory.d.ts +102 -0
- package/lib.esm/contracts/interfaces/ISLCCoreFactory.js +1 -0
- package/lib.esm/contracts/interfaces/IWrappedToken.d.ts +134 -0
- package/lib.esm/contracts/interfaces/IWrappedToken.js +1 -0
- package/lib.esm/contracts/interfaces/index.d.ts +7 -0
- package/lib.esm/contracts/interfaces/index.js +1 -0
- package/lib.esm/contracts/libs/Errors.d.ts +21 -0
- package/lib.esm/contracts/libs/Errors.js +1 -0
- package/lib.esm/contracts/libs/NeutralsSelection.d.ts +21 -0
- package/lib.esm/contracts/libs/NeutralsSelection.js +1 -0
- package/lib.esm/contracts/libs/index.d.ts +2 -0
- package/lib.esm/contracts/libs/index.js +1 -0
- package/lib.esm/contracts/mocks/MockGovernance.d.ts +201 -0
- package/lib.esm/contracts/mocks/MockGovernance.js +1 -0
- package/lib.esm/contracts/mocks/MockNeutralsRegistry.d.ts +394 -0
- package/lib.esm/contracts/mocks/MockNeutralsRegistry.js +1 -0
- package/lib.esm/contracts/mocks/SimpleContract.d.ts +38 -0
- package/lib.esm/contracts/mocks/SimpleContract.js +1 -0
- package/lib.esm/contracts/mocks/WrappedToken.d.ts +174 -0
- package/lib.esm/contracts/mocks/WrappedToken.js +1 -0
- package/lib.esm/contracts/mocks/index.d.ts +4 -0
- package/lib.esm/contracts/mocks/index.js +1 -0
- package/lib.esm/contracts/slc-core/SLCCore.d.ts +198 -0
- package/lib.esm/contracts/slc-core/SLCCore.js +1 -0
- package/lib.esm/contracts/slc-core/SLCCoreFactory.d.ts +264 -0
- package/lib.esm/contracts/slc-core/SLCCoreFactory.js +1 -0
- package/lib.esm/contracts/slc-core/index.d.ts +2 -0
- package/lib.esm/contracts/slc-core/index.js +1 -0
- package/lib.esm/contracts/token/Token.d.ts +201 -0
- package/lib.esm/contracts/token/Token.js +1 -0
- package/lib.esm/contracts/token/index.d.ts +1 -0
- package/lib.esm/contracts/token/index.js +1 -0
- package/lib.esm/factories/contracts/governance/ExecutorsRegistry__factory.d.ts +919 -0
- package/lib.esm/factories/contracts/governance/ExecutorsRegistry__factory.js +1207 -0
- package/lib.esm/factories/contracts/governance/Governance__factory.d.ts +1736 -0
- package/lib.esm/factories/contracts/governance/Governance__factory.js +2277 -0
- package/lib.esm/factories/contracts/governance/NeutralsRegistry__factory.d.ts +1128 -0
- package/lib.esm/factories/contracts/governance/NeutralsRegistry__factory.js +1482 -0
- package/lib.esm/factories/contracts/governance/ParameterRegistry__factory.d.ts +606 -0
- package/lib.esm/factories/contracts/governance/ParameterRegistry__factory.js +801 -0
- package/lib.esm/factories/contracts/governance/index.d.ts +4 -0
- package/lib.esm/factories/contracts/index.d.ts +6 -0
- package/lib.esm/factories/contracts/interfaces/IExecutorsRegistry__factory.d.ts +316 -0
- package/lib.esm/factories/contracts/interfaces/IExecutorsRegistry__factory.js +418 -0
- package/lib.esm/factories/contracts/interfaces/IGovernance__factory.d.ts +107 -0
- package/lib.esm/factories/contracts/interfaces/IGovernance__factory.js +146 -0
- package/lib.esm/factories/contracts/interfaces/INeutralsRegistry__factory.d.ts +393 -0
- package/lib.esm/factories/contracts/interfaces/INeutralsRegistry__factory.js +517 -0
- package/lib.esm/factories/contracts/interfaces/IQParameters__factory.d.ts +63 -0
- package/lib.esm/factories/contracts/interfaces/IQParameters__factory.js +91 -0
- package/lib.esm/factories/contracts/interfaces/ISLCCoreFactory__factory.d.ts +135 -0
- package/lib.esm/factories/contracts/interfaces/ISLCCoreFactory__factory.js +187 -0
- package/lib.esm/factories/contracts/interfaces/ISLCCore__factory.d.ts +166 -0
- package/lib.esm/factories/contracts/interfaces/ISLCCore__factory.js +220 -0
- package/lib.esm/factories/contracts/interfaces/IWrappedToken__factory.d.ts +157 -0
- package/lib.esm/factories/contracts/interfaces/IWrappedToken__factory.js +211 -0
- package/lib.esm/factories/contracts/interfaces/index.d.ts +7 -0
- package/lib.esm/factories/contracts/libs/Errors__factory.d.ts +128 -0
- package/lib.esm/factories/contracts/libs/Errors__factory.js +178 -0
- package/lib.esm/factories/contracts/libs/NeutralsSelection__factory.d.ts +48 -0
- package/lib.esm/factories/contracts/libs/NeutralsSelection__factory.js +70 -0
- package/lib.esm/factories/contracts/libs/index.d.ts +2 -0
- package/lib.esm/factories/contracts/mocks/MockGovernance__factory.d.ts +241 -0
- package/lib.esm/factories/contracts/mocks/MockGovernance__factory.js +320 -0
- package/lib.esm/factories/contracts/mocks/MockNeutralsRegistry__factory.d.ts +527 -0
- package/lib.esm/factories/contracts/mocks/MockNeutralsRegistry__factory.js +691 -0
- package/lib.esm/factories/contracts/mocks/SimpleContract__factory.d.ts +54 -0
- package/lib.esm/factories/contracts/mocks/SimpleContract__factory.js +77 -0
- package/lib.esm/factories/contracts/mocks/WrappedToken__factory.d.ts +300 -0
- package/lib.esm/factories/contracts/mocks/WrappedToken__factory.js +400 -0
- package/lib.esm/factories/contracts/mocks/index.d.ts +4 -0
- package/lib.esm/factories/contracts/slc-core/SLCCoreFactory__factory.d.ts +402 -0
- package/lib.esm/factories/contracts/slc-core/SLCCoreFactory__factory.js +535 -0
- package/lib.esm/factories/contracts/slc-core/SLCCore__factory.d.ts +261 -0
- package/lib.esm/factories/contracts/slc-core/SLCCore__factory.js +343 -0
- package/lib.esm/factories/contracts/slc-core/index.d.ts +2 -0
- package/lib.esm/factories/contracts/token/Token__factory.d.ts +355 -0
- package/lib.esm/factories/contracts/token/Token__factory.js +472 -0
- package/lib.esm/factories/contracts/token/index.d.ts +1 -0
- package/lib.esm/index.d.ts +5 -0
- package/lib.esm/index.js +7 -0
- package/package.json +10 -3
- package/common.ts +0 -131
- package/constants.ts +0 -34
- package/contracts/governance/ExecutorsRegistry.ts +0 -1249
- package/contracts/governance/Governance.ts +0 -1740
- package/contracts/governance/NeutralsRegistry.ts +0 -1415
- package/contracts/governance/ParameterRegistry.ts +0 -832
- package/contracts/interfaces/IExecutorsRegistry.ts +0 -601
- package/contracts/interfaces/IGovernance.ts +0 -215
- package/contracts/interfaces/INeutralsRegistry.ts +0 -624
- package/contracts/interfaces/IQParameters.ts +0 -109
- package/contracts/interfaces/ISLCCore.ts +0 -289
- package/contracts/interfaces/ISLCCoreFactory.ts +0 -217
- package/contracts/interfaces/IWrappedToken.ts +0 -272
- package/contracts/libs/Errors.ts +0 -71
- package/contracts/libs/NeutralsSelection.ts +0 -71
- package/contracts/mocks/MockGovernance.ts +0 -389
- package/contracts/mocks/MockNeutralsRegistry.ts +0 -791
- package/contracts/mocks/SimpleContract.ts +0 -110
- package/contracts/mocks/WrappedToken.ts +0 -334
- package/contracts/slc-core/SLCCore.ts +0 -397
- package/contracts/slc-core/SLCCoreFactory.ts +0 -559
- package/contracts/token/Token.ts +0 -399
- package/contracts/token/index.ts +0 -4
- package/factories/contracts/governance/ExecutorsRegistry__factory.ts +0 -1240
- package/factories/contracts/governance/Governance__factory.ts +0 -2307
- package/factories/contracts/governance/NeutralsRegistry__factory.ts +0 -1515
- package/factories/contracts/governance/ParameterRegistry__factory.ts +0 -834
- package/factories/contracts/interfaces/IExecutorsRegistry__factory.ts +0 -428
- package/factories/contracts/interfaces/IGovernance__factory.ts +0 -153
- package/factories/contracts/interfaces/INeutralsRegistry__factory.ts +0 -527
- package/factories/contracts/interfaces/IQParameters__factory.ts +0 -101
- package/factories/contracts/interfaces/ISLCCoreFactory__factory.ts +0 -197
- package/factories/contracts/interfaces/ISLCCore__factory.ts +0 -227
- package/factories/contracts/interfaces/IWrappedToken__factory.ts +0 -221
- package/factories/contracts/libs/Errors__factory.ts +0 -205
- package/factories/contracts/libs/NeutralsSelection__factory.ts +0 -103
- package/factories/contracts/mocks/MockGovernance__factory.ts +0 -353
- package/factories/contracts/mocks/MockNeutralsRegistry__factory.ts +0 -730
- package/factories/contracts/mocks/SimpleContract__factory.ts +0 -110
- package/factories/contracts/mocks/WrappedToken__factory.ts +0 -433
- package/factories/contracts/slc-core/SLCCoreFactory__factory.ts +0 -568
- package/factories/contracts/slc-core/SLCCore__factory.ts +0 -373
- package/factories/contracts/token/Token__factory.ts +0 -505
- package/index.ts +0 -44
- /package/{factories/contracts/governance/index.ts → lib.esm/factories/contracts/governance/index.js} +0 -0
- /package/{factories/contracts/index.ts → lib.esm/factories/contracts/index.js} +0 -0
- /package/{factories/contracts/interfaces/index.ts → lib.esm/factories/contracts/interfaces/index.js} +0 -0
- /package/{factories/contracts/libs/index.ts → lib.esm/factories/contracts/libs/index.js} +0 -0
- /package/{factories/contracts/mocks/index.ts → lib.esm/factories/contracts/mocks/index.js} +0 -0
- /package/{factories/contracts/slc-core/index.ts → lib.esm/factories/contracts/slc-core/index.js} +0 -0
- /package/{factories/contracts/token/index.ts → lib.esm/factories/contracts/token/index.js} +0 -0
|
@@ -1,2307 +0,0 @@
|
|
|
1
|
-
/* Autogenerated file. Do not edit manually. */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
import {
|
|
5
|
-
Contract,
|
|
6
|
-
ContractFactory,
|
|
7
|
-
ContractTransactionResponse,
|
|
8
|
-
Interface,
|
|
9
|
-
} from "ethers";
|
|
10
|
-
import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
11
|
-
import type { NonPayableOverrides } from "../../../common";
|
|
12
|
-
import type {
|
|
13
|
-
Governance,
|
|
14
|
-
GovernanceInterface,
|
|
15
|
-
} from "../../../contracts/governance/Governance";
|
|
16
|
-
|
|
17
|
-
const _abi = [
|
|
18
|
-
{
|
|
19
|
-
inputs: [
|
|
20
|
-
{
|
|
21
|
-
internalType: "address",
|
|
22
|
-
name: "account",
|
|
23
|
-
type: "address",
|
|
24
|
-
},
|
|
25
|
-
],
|
|
26
|
-
name: "AccountAlreadyVoted",
|
|
27
|
-
type: "error",
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
inputs: [
|
|
31
|
-
{
|
|
32
|
-
internalType: "address",
|
|
33
|
-
name: "account",
|
|
34
|
-
type: "address",
|
|
35
|
-
},
|
|
36
|
-
],
|
|
37
|
-
name: "AccountNotExecutor",
|
|
38
|
-
type: "error",
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
inputs: [
|
|
42
|
-
{
|
|
43
|
-
internalType: "address",
|
|
44
|
-
name: "account",
|
|
45
|
-
type: "address",
|
|
46
|
-
},
|
|
47
|
-
],
|
|
48
|
-
name: "AccountNotSelected",
|
|
49
|
-
type: "error",
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
inputs: [
|
|
53
|
-
{
|
|
54
|
-
internalType: "address",
|
|
55
|
-
name: "target",
|
|
56
|
-
type: "address",
|
|
57
|
-
},
|
|
58
|
-
],
|
|
59
|
-
name: "AddressEmptyCode",
|
|
60
|
-
type: "error",
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
inputs: [
|
|
64
|
-
{
|
|
65
|
-
internalType: "address",
|
|
66
|
-
name: "implementation",
|
|
67
|
-
type: "address",
|
|
68
|
-
},
|
|
69
|
-
],
|
|
70
|
-
name: "ERC1967InvalidImplementation",
|
|
71
|
-
type: "error",
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
inputs: [],
|
|
75
|
-
name: "ERC1967NonPayable",
|
|
76
|
-
type: "error",
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
inputs: [
|
|
80
|
-
{
|
|
81
|
-
internalType: "uint256",
|
|
82
|
-
name: "threshold",
|
|
83
|
-
type: "uint256",
|
|
84
|
-
},
|
|
85
|
-
],
|
|
86
|
-
name: "ExecutorsThresholdTooHigh",
|
|
87
|
-
type: "error",
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
inputs: [],
|
|
91
|
-
name: "FailedCall",
|
|
92
|
-
type: "error",
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
inputs: [
|
|
96
|
-
{
|
|
97
|
-
internalType: "address",
|
|
98
|
-
name: "voter",
|
|
99
|
-
type: "address",
|
|
100
|
-
},
|
|
101
|
-
],
|
|
102
|
-
name: "GovernorAlreadyCastVote",
|
|
103
|
-
type: "error",
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
inputs: [
|
|
107
|
-
{
|
|
108
|
-
internalType: "uint256",
|
|
109
|
-
name: "proposalId",
|
|
110
|
-
type: "uint256",
|
|
111
|
-
},
|
|
112
|
-
],
|
|
113
|
-
name: "GovernorAlreadyQueuedProposal",
|
|
114
|
-
type: "error",
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
inputs: [],
|
|
118
|
-
name: "GovernorDisabledDeposit",
|
|
119
|
-
type: "error",
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
inputs: [
|
|
123
|
-
{
|
|
124
|
-
internalType: "address",
|
|
125
|
-
name: "proposer",
|
|
126
|
-
type: "address",
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
internalType: "uint256",
|
|
130
|
-
name: "votes",
|
|
131
|
-
type: "uint256",
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
internalType: "uint256",
|
|
135
|
-
name: "threshold",
|
|
136
|
-
type: "uint256",
|
|
137
|
-
},
|
|
138
|
-
],
|
|
139
|
-
name: "GovernorInsufficientProposerVotes",
|
|
140
|
-
type: "error",
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
inputs: [
|
|
144
|
-
{
|
|
145
|
-
internalType: "uint256",
|
|
146
|
-
name: "targets",
|
|
147
|
-
type: "uint256",
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
internalType: "uint256",
|
|
151
|
-
name: "calldatas",
|
|
152
|
-
type: "uint256",
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
internalType: "uint256",
|
|
156
|
-
name: "values",
|
|
157
|
-
type: "uint256",
|
|
158
|
-
},
|
|
159
|
-
],
|
|
160
|
-
name: "GovernorInvalidProposalLength",
|
|
161
|
-
type: "error",
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
inputs: [
|
|
165
|
-
{
|
|
166
|
-
internalType: "address",
|
|
167
|
-
name: "voter",
|
|
168
|
-
type: "address",
|
|
169
|
-
},
|
|
170
|
-
],
|
|
171
|
-
name: "GovernorInvalidSignature",
|
|
172
|
-
type: "error",
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
inputs: [],
|
|
176
|
-
name: "GovernorInvalidVoteParams",
|
|
177
|
-
type: "error",
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
inputs: [],
|
|
181
|
-
name: "GovernorInvalidVoteType",
|
|
182
|
-
type: "error",
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
inputs: [
|
|
186
|
-
{
|
|
187
|
-
internalType: "uint256",
|
|
188
|
-
name: "votingPeriod",
|
|
189
|
-
type: "uint256",
|
|
190
|
-
},
|
|
191
|
-
],
|
|
192
|
-
name: "GovernorInvalidVotingPeriod",
|
|
193
|
-
type: "error",
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
inputs: [
|
|
197
|
-
{
|
|
198
|
-
internalType: "uint256",
|
|
199
|
-
name: "proposalId",
|
|
200
|
-
type: "uint256",
|
|
201
|
-
},
|
|
202
|
-
],
|
|
203
|
-
name: "GovernorNonexistentProposal",
|
|
204
|
-
type: "error",
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
inputs: [
|
|
208
|
-
{
|
|
209
|
-
internalType: "uint256",
|
|
210
|
-
name: "proposalId",
|
|
211
|
-
type: "uint256",
|
|
212
|
-
},
|
|
213
|
-
],
|
|
214
|
-
name: "GovernorNotQueuedProposal",
|
|
215
|
-
type: "error",
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
inputs: [
|
|
219
|
-
{
|
|
220
|
-
internalType: "address",
|
|
221
|
-
name: "account",
|
|
222
|
-
type: "address",
|
|
223
|
-
},
|
|
224
|
-
],
|
|
225
|
-
name: "GovernorOnlyExecutor",
|
|
226
|
-
type: "error",
|
|
227
|
-
},
|
|
228
|
-
{
|
|
229
|
-
inputs: [],
|
|
230
|
-
name: "GovernorQueueNotImplemented",
|
|
231
|
-
type: "error",
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
inputs: [
|
|
235
|
-
{
|
|
236
|
-
internalType: "address",
|
|
237
|
-
name: "proposer",
|
|
238
|
-
type: "address",
|
|
239
|
-
},
|
|
240
|
-
],
|
|
241
|
-
name: "GovernorRestrictedProposer",
|
|
242
|
-
type: "error",
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
inputs: [
|
|
246
|
-
{
|
|
247
|
-
internalType: "uint256",
|
|
248
|
-
name: "proposalId",
|
|
249
|
-
type: "uint256",
|
|
250
|
-
},
|
|
251
|
-
{
|
|
252
|
-
internalType: "address",
|
|
253
|
-
name: "account",
|
|
254
|
-
type: "address",
|
|
255
|
-
},
|
|
256
|
-
],
|
|
257
|
-
name: "GovernorUnableToCancel",
|
|
258
|
-
type: "error",
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
inputs: [
|
|
262
|
-
{
|
|
263
|
-
internalType: "uint256",
|
|
264
|
-
name: "proposalId",
|
|
265
|
-
type: "uint256",
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
internalType: "enum IGovernor.ProposalState",
|
|
269
|
-
name: "current",
|
|
270
|
-
type: "uint8",
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
internalType: "bytes32",
|
|
274
|
-
name: "expectedStates",
|
|
275
|
-
type: "bytes32",
|
|
276
|
-
},
|
|
277
|
-
],
|
|
278
|
-
name: "GovernorUnexpectedProposalState",
|
|
279
|
-
type: "error",
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
inputs: [
|
|
283
|
-
{
|
|
284
|
-
internalType: "address",
|
|
285
|
-
name: "account",
|
|
286
|
-
type: "address",
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
internalType: "uint256",
|
|
290
|
-
name: "currentNonce",
|
|
291
|
-
type: "uint256",
|
|
292
|
-
},
|
|
293
|
-
],
|
|
294
|
-
name: "InvalidAccountNonce",
|
|
295
|
-
type: "error",
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
inputs: [],
|
|
299
|
-
name: "InvalidInitialization",
|
|
300
|
-
type: "error",
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
inputs: [
|
|
304
|
-
{
|
|
305
|
-
internalType: "uint256",
|
|
306
|
-
name: "serviceFee",
|
|
307
|
-
type: "uint256",
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
internalType: "uint256",
|
|
311
|
-
name: "msgValue",
|
|
312
|
-
type: "uint256",
|
|
313
|
-
},
|
|
314
|
-
],
|
|
315
|
-
name: "InvalidServiceFee",
|
|
316
|
-
type: "error",
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
inputs: [
|
|
320
|
-
{
|
|
321
|
-
internalType: "uint256",
|
|
322
|
-
name: "totalShares",
|
|
323
|
-
type: "uint256",
|
|
324
|
-
},
|
|
325
|
-
],
|
|
326
|
-
name: "InvalidSharesTotal",
|
|
327
|
-
type: "error",
|
|
328
|
-
},
|
|
329
|
-
{
|
|
330
|
-
inputs: [
|
|
331
|
-
{
|
|
332
|
-
internalType: "uint256",
|
|
333
|
-
name: "timepoint",
|
|
334
|
-
type: "uint256",
|
|
335
|
-
},
|
|
336
|
-
],
|
|
337
|
-
name: "InvalidTimepoint",
|
|
338
|
-
type: "error",
|
|
339
|
-
},
|
|
340
|
-
{
|
|
341
|
-
inputs: [
|
|
342
|
-
{
|
|
343
|
-
internalType: "enum Governance.VotingPhase",
|
|
344
|
-
name: "votingPhase",
|
|
345
|
-
type: "uint8",
|
|
346
|
-
},
|
|
347
|
-
],
|
|
348
|
-
name: "InvalidVotingPhaseForExecutorVote",
|
|
349
|
-
type: "error",
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
inputs: [
|
|
353
|
-
{
|
|
354
|
-
internalType: "enum Governance.VotingPhase",
|
|
355
|
-
name: "votingPhase",
|
|
356
|
-
type: "uint8",
|
|
357
|
-
},
|
|
358
|
-
],
|
|
359
|
-
name: "InvalidVotingPhaseForProposeOperations",
|
|
360
|
-
type: "error",
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
inputs: [
|
|
364
|
-
{
|
|
365
|
-
internalType: "address",
|
|
366
|
-
name: "parametersRegistry",
|
|
367
|
-
type: "address",
|
|
368
|
-
},
|
|
369
|
-
],
|
|
370
|
-
name: "MinServiceFeeNotSet",
|
|
371
|
-
type: "error",
|
|
372
|
-
},
|
|
373
|
-
{
|
|
374
|
-
inputs: [
|
|
375
|
-
{
|
|
376
|
-
internalType: "uint256",
|
|
377
|
-
name: "threshold",
|
|
378
|
-
type: "uint256",
|
|
379
|
-
},
|
|
380
|
-
],
|
|
381
|
-
name: "NeutralsThresholdTooHigh",
|
|
382
|
-
type: "error",
|
|
383
|
-
},
|
|
384
|
-
{
|
|
385
|
-
inputs: [],
|
|
386
|
-
name: "NotInitializing",
|
|
387
|
-
type: "error",
|
|
388
|
-
},
|
|
389
|
-
{
|
|
390
|
-
inputs: [
|
|
391
|
-
{
|
|
392
|
-
internalType: "uint8",
|
|
393
|
-
name: "bits",
|
|
394
|
-
type: "uint8",
|
|
395
|
-
},
|
|
396
|
-
{
|
|
397
|
-
internalType: "uint256",
|
|
398
|
-
name: "value",
|
|
399
|
-
type: "uint256",
|
|
400
|
-
},
|
|
401
|
-
],
|
|
402
|
-
name: "SafeCastOverflowedUintDowncast",
|
|
403
|
-
type: "error",
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
inputs: [
|
|
407
|
-
{
|
|
408
|
-
internalType: "address",
|
|
409
|
-
name: "token",
|
|
410
|
-
type: "address",
|
|
411
|
-
},
|
|
412
|
-
],
|
|
413
|
-
name: "SafeERC20FailedOperation",
|
|
414
|
-
type: "error",
|
|
415
|
-
},
|
|
416
|
-
{
|
|
417
|
-
inputs: [
|
|
418
|
-
{
|
|
419
|
-
internalType: "address",
|
|
420
|
-
name: "sender",
|
|
421
|
-
type: "address",
|
|
422
|
-
},
|
|
423
|
-
],
|
|
424
|
-
name: "SenderExpectedToBeDAOSLC",
|
|
425
|
-
type: "error",
|
|
426
|
-
},
|
|
427
|
-
{
|
|
428
|
-
inputs: [
|
|
429
|
-
{
|
|
430
|
-
internalType: "uint256",
|
|
431
|
-
name: "serviceFee",
|
|
432
|
-
type: "uint256",
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
internalType: "uint256",
|
|
436
|
-
name: "minServiceFee",
|
|
437
|
-
type: "uint256",
|
|
438
|
-
},
|
|
439
|
-
],
|
|
440
|
-
name: "ServiceFeeTooLow",
|
|
441
|
-
type: "error",
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
inputs: [],
|
|
445
|
-
name: "UUPSUnauthorizedCallContext",
|
|
446
|
-
type: "error",
|
|
447
|
-
},
|
|
448
|
-
{
|
|
449
|
-
inputs: [
|
|
450
|
-
{
|
|
451
|
-
internalType: "bytes32",
|
|
452
|
-
name: "slot",
|
|
453
|
-
type: "bytes32",
|
|
454
|
-
},
|
|
455
|
-
],
|
|
456
|
-
name: "UUPSUnsupportedProxiableUUID",
|
|
457
|
-
type: "error",
|
|
458
|
-
},
|
|
459
|
-
{
|
|
460
|
-
inputs: [],
|
|
461
|
-
name: "Unreachable",
|
|
462
|
-
type: "error",
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
anonymous: false,
|
|
466
|
-
inputs: [],
|
|
467
|
-
name: "EIP712DomainChanged",
|
|
468
|
-
type: "event",
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
anonymous: false,
|
|
472
|
-
inputs: [
|
|
473
|
-
{
|
|
474
|
-
indexed: false,
|
|
475
|
-
internalType: "uint64",
|
|
476
|
-
name: "version",
|
|
477
|
-
type: "uint64",
|
|
478
|
-
},
|
|
479
|
-
],
|
|
480
|
-
name: "Initialized",
|
|
481
|
-
type: "event",
|
|
482
|
-
},
|
|
483
|
-
{
|
|
484
|
-
anonymous: false,
|
|
485
|
-
inputs: [
|
|
486
|
-
{
|
|
487
|
-
indexed: false,
|
|
488
|
-
internalType: "uint256",
|
|
489
|
-
name: "proposalId",
|
|
490
|
-
type: "uint256",
|
|
491
|
-
},
|
|
492
|
-
],
|
|
493
|
-
name: "ProposalCanceled",
|
|
494
|
-
type: "event",
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
anonymous: false,
|
|
498
|
-
inputs: [
|
|
499
|
-
{
|
|
500
|
-
indexed: false,
|
|
501
|
-
internalType: "uint256",
|
|
502
|
-
name: "proposalId",
|
|
503
|
-
type: "uint256",
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
indexed: false,
|
|
507
|
-
internalType: "address",
|
|
508
|
-
name: "proposer",
|
|
509
|
-
type: "address",
|
|
510
|
-
},
|
|
511
|
-
{
|
|
512
|
-
indexed: false,
|
|
513
|
-
internalType: "address[]",
|
|
514
|
-
name: "targets",
|
|
515
|
-
type: "address[]",
|
|
516
|
-
},
|
|
517
|
-
{
|
|
518
|
-
indexed: false,
|
|
519
|
-
internalType: "uint256[]",
|
|
520
|
-
name: "values",
|
|
521
|
-
type: "uint256[]",
|
|
522
|
-
},
|
|
523
|
-
{
|
|
524
|
-
indexed: false,
|
|
525
|
-
internalType: "string[]",
|
|
526
|
-
name: "signatures",
|
|
527
|
-
type: "string[]",
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
indexed: false,
|
|
531
|
-
internalType: "bytes[]",
|
|
532
|
-
name: "calldatas",
|
|
533
|
-
type: "bytes[]",
|
|
534
|
-
},
|
|
535
|
-
{
|
|
536
|
-
indexed: false,
|
|
537
|
-
internalType: "uint256",
|
|
538
|
-
name: "voteStart",
|
|
539
|
-
type: "uint256",
|
|
540
|
-
},
|
|
541
|
-
{
|
|
542
|
-
indexed: false,
|
|
543
|
-
internalType: "uint256",
|
|
544
|
-
name: "voteEnd",
|
|
545
|
-
type: "uint256",
|
|
546
|
-
},
|
|
547
|
-
{
|
|
548
|
-
indexed: false,
|
|
549
|
-
internalType: "string",
|
|
550
|
-
name: "description",
|
|
551
|
-
type: "string",
|
|
552
|
-
},
|
|
553
|
-
],
|
|
554
|
-
name: "ProposalCreated",
|
|
555
|
-
type: "event",
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
anonymous: false,
|
|
559
|
-
inputs: [
|
|
560
|
-
{
|
|
561
|
-
indexed: false,
|
|
562
|
-
internalType: "uint256",
|
|
563
|
-
name: "proposalId",
|
|
564
|
-
type: "uint256",
|
|
565
|
-
},
|
|
566
|
-
],
|
|
567
|
-
name: "ProposalExecuted",
|
|
568
|
-
type: "event",
|
|
569
|
-
},
|
|
570
|
-
{
|
|
571
|
-
anonymous: false,
|
|
572
|
-
inputs: [
|
|
573
|
-
{
|
|
574
|
-
indexed: false,
|
|
575
|
-
internalType: "uint256",
|
|
576
|
-
name: "proposalId",
|
|
577
|
-
type: "uint256",
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
indexed: false,
|
|
581
|
-
internalType: "uint256",
|
|
582
|
-
name: "etaSeconds",
|
|
583
|
-
type: "uint256",
|
|
584
|
-
},
|
|
585
|
-
],
|
|
586
|
-
name: "ProposalQueued",
|
|
587
|
-
type: "event",
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
anonymous: false,
|
|
591
|
-
inputs: [
|
|
592
|
-
{
|
|
593
|
-
indexed: false,
|
|
594
|
-
internalType: "uint256",
|
|
595
|
-
name: "proposalId",
|
|
596
|
-
type: "uint256",
|
|
597
|
-
},
|
|
598
|
-
{
|
|
599
|
-
indexed: false,
|
|
600
|
-
internalType: "uint256",
|
|
601
|
-
name: "newProposalId",
|
|
602
|
-
type: "uint256",
|
|
603
|
-
},
|
|
604
|
-
],
|
|
605
|
-
name: "RejectedByExecutors",
|
|
606
|
-
type: "event",
|
|
607
|
-
},
|
|
608
|
-
{
|
|
609
|
-
anonymous: false,
|
|
610
|
-
inputs: [
|
|
611
|
-
{
|
|
612
|
-
indexed: true,
|
|
613
|
-
internalType: "address",
|
|
614
|
-
name: "implementation",
|
|
615
|
-
type: "address",
|
|
616
|
-
},
|
|
617
|
-
],
|
|
618
|
-
name: "Upgraded",
|
|
619
|
-
type: "event",
|
|
620
|
-
},
|
|
621
|
-
{
|
|
622
|
-
anonymous: false,
|
|
623
|
-
inputs: [
|
|
624
|
-
{
|
|
625
|
-
indexed: true,
|
|
626
|
-
internalType: "address",
|
|
627
|
-
name: "voter",
|
|
628
|
-
type: "address",
|
|
629
|
-
},
|
|
630
|
-
{
|
|
631
|
-
indexed: false,
|
|
632
|
-
internalType: "uint256",
|
|
633
|
-
name: "proposalId",
|
|
634
|
-
type: "uint256",
|
|
635
|
-
},
|
|
636
|
-
{
|
|
637
|
-
indexed: false,
|
|
638
|
-
internalType: "uint8",
|
|
639
|
-
name: "support",
|
|
640
|
-
type: "uint8",
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
indexed: false,
|
|
644
|
-
internalType: "uint256",
|
|
645
|
-
name: "weight",
|
|
646
|
-
type: "uint256",
|
|
647
|
-
},
|
|
648
|
-
{
|
|
649
|
-
indexed: false,
|
|
650
|
-
internalType: "string",
|
|
651
|
-
name: "reason",
|
|
652
|
-
type: "string",
|
|
653
|
-
},
|
|
654
|
-
],
|
|
655
|
-
name: "VoteCast",
|
|
656
|
-
type: "event",
|
|
657
|
-
},
|
|
658
|
-
{
|
|
659
|
-
anonymous: false,
|
|
660
|
-
inputs: [
|
|
661
|
-
{
|
|
662
|
-
indexed: true,
|
|
663
|
-
internalType: "address",
|
|
664
|
-
name: "voter",
|
|
665
|
-
type: "address",
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
indexed: false,
|
|
669
|
-
internalType: "uint256",
|
|
670
|
-
name: "proposalId",
|
|
671
|
-
type: "uint256",
|
|
672
|
-
},
|
|
673
|
-
{
|
|
674
|
-
indexed: false,
|
|
675
|
-
internalType: "uint8",
|
|
676
|
-
name: "support",
|
|
677
|
-
type: "uint8",
|
|
678
|
-
},
|
|
679
|
-
{
|
|
680
|
-
indexed: false,
|
|
681
|
-
internalType: "uint256",
|
|
682
|
-
name: "weight",
|
|
683
|
-
type: "uint256",
|
|
684
|
-
},
|
|
685
|
-
{
|
|
686
|
-
indexed: false,
|
|
687
|
-
internalType: "string",
|
|
688
|
-
name: "reason",
|
|
689
|
-
type: "string",
|
|
690
|
-
},
|
|
691
|
-
{
|
|
692
|
-
indexed: false,
|
|
693
|
-
internalType: "bytes",
|
|
694
|
-
name: "params",
|
|
695
|
-
type: "bytes",
|
|
696
|
-
},
|
|
697
|
-
],
|
|
698
|
-
name: "VoteCastWithParams",
|
|
699
|
-
type: "event",
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
inputs: [],
|
|
703
|
-
name: "BALLOT_TYPEHASH",
|
|
704
|
-
outputs: [
|
|
705
|
-
{
|
|
706
|
-
internalType: "bytes32",
|
|
707
|
-
name: "",
|
|
708
|
-
type: "bytes32",
|
|
709
|
-
},
|
|
710
|
-
],
|
|
711
|
-
stateMutability: "view",
|
|
712
|
-
type: "function",
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
inputs: [],
|
|
716
|
-
name: "CLOCK_MODE",
|
|
717
|
-
outputs: [
|
|
718
|
-
{
|
|
719
|
-
internalType: "string",
|
|
720
|
-
name: "",
|
|
721
|
-
type: "string",
|
|
722
|
-
},
|
|
723
|
-
],
|
|
724
|
-
stateMutability: "pure",
|
|
725
|
-
type: "function",
|
|
726
|
-
},
|
|
727
|
-
{
|
|
728
|
-
inputs: [],
|
|
729
|
-
name: "COUNTING_MODE",
|
|
730
|
-
outputs: [
|
|
731
|
-
{
|
|
732
|
-
internalType: "string",
|
|
733
|
-
name: "",
|
|
734
|
-
type: "string",
|
|
735
|
-
},
|
|
736
|
-
],
|
|
737
|
-
stateMutability: "pure",
|
|
738
|
-
type: "function",
|
|
739
|
-
},
|
|
740
|
-
{
|
|
741
|
-
inputs: [],
|
|
742
|
-
name: "EXTENDED_BALLOT_TYPEHASH",
|
|
743
|
-
outputs: [
|
|
744
|
-
{
|
|
745
|
-
internalType: "bytes32",
|
|
746
|
-
name: "",
|
|
747
|
-
type: "bytes32",
|
|
748
|
-
},
|
|
749
|
-
],
|
|
750
|
-
stateMutability: "view",
|
|
751
|
-
type: "function",
|
|
752
|
-
},
|
|
753
|
-
{
|
|
754
|
-
inputs: [],
|
|
755
|
-
name: "UPGRADE_INTERFACE_VERSION",
|
|
756
|
-
outputs: [
|
|
757
|
-
{
|
|
758
|
-
internalType: "string",
|
|
759
|
-
name: "",
|
|
760
|
-
type: "string",
|
|
761
|
-
},
|
|
762
|
-
],
|
|
763
|
-
stateMutability: "view",
|
|
764
|
-
type: "function",
|
|
765
|
-
},
|
|
766
|
-
{
|
|
767
|
-
inputs: [
|
|
768
|
-
{
|
|
769
|
-
internalType: "address",
|
|
770
|
-
name: "token_",
|
|
771
|
-
type: "address",
|
|
772
|
-
},
|
|
773
|
-
{
|
|
774
|
-
internalType: "address",
|
|
775
|
-
name: "executorsRegistry_",
|
|
776
|
-
type: "address",
|
|
777
|
-
},
|
|
778
|
-
{
|
|
779
|
-
internalType: "address",
|
|
780
|
-
name: "neutralsRegistry_",
|
|
781
|
-
type: "address",
|
|
782
|
-
},
|
|
783
|
-
{
|
|
784
|
-
internalType: "address",
|
|
785
|
-
name: "parametersRegistry_",
|
|
786
|
-
type: "address",
|
|
787
|
-
},
|
|
788
|
-
],
|
|
789
|
-
name: "__Governance_init",
|
|
790
|
-
outputs: [],
|
|
791
|
-
stateMutability: "nonpayable",
|
|
792
|
-
type: "function",
|
|
793
|
-
},
|
|
794
|
-
{
|
|
795
|
-
inputs: [
|
|
796
|
-
{
|
|
797
|
-
internalType: "address[]",
|
|
798
|
-
name: "targets",
|
|
799
|
-
type: "address[]",
|
|
800
|
-
},
|
|
801
|
-
{
|
|
802
|
-
internalType: "uint256[]",
|
|
803
|
-
name: "values",
|
|
804
|
-
type: "uint256[]",
|
|
805
|
-
},
|
|
806
|
-
{
|
|
807
|
-
internalType: "bytes[]",
|
|
808
|
-
name: "calldatas",
|
|
809
|
-
type: "bytes[]",
|
|
810
|
-
},
|
|
811
|
-
{
|
|
812
|
-
internalType: "bytes32",
|
|
813
|
-
name: "descriptionHash",
|
|
814
|
-
type: "bytes32",
|
|
815
|
-
},
|
|
816
|
-
],
|
|
817
|
-
name: "cancel",
|
|
818
|
-
outputs: [
|
|
819
|
-
{
|
|
820
|
-
internalType: "uint256",
|
|
821
|
-
name: "",
|
|
822
|
-
type: "uint256",
|
|
823
|
-
},
|
|
824
|
-
],
|
|
825
|
-
stateMutability: "nonpayable",
|
|
826
|
-
type: "function",
|
|
827
|
-
},
|
|
828
|
-
{
|
|
829
|
-
inputs: [
|
|
830
|
-
{
|
|
831
|
-
internalType: "uint256",
|
|
832
|
-
name: "proposalId",
|
|
833
|
-
type: "uint256",
|
|
834
|
-
},
|
|
835
|
-
{
|
|
836
|
-
internalType: "uint8",
|
|
837
|
-
name: "support",
|
|
838
|
-
type: "uint8",
|
|
839
|
-
},
|
|
840
|
-
],
|
|
841
|
-
name: "castVote",
|
|
842
|
-
outputs: [
|
|
843
|
-
{
|
|
844
|
-
internalType: "uint256",
|
|
845
|
-
name: "",
|
|
846
|
-
type: "uint256",
|
|
847
|
-
},
|
|
848
|
-
],
|
|
849
|
-
stateMutability: "nonpayable",
|
|
850
|
-
type: "function",
|
|
851
|
-
},
|
|
852
|
-
{
|
|
853
|
-
inputs: [
|
|
854
|
-
{
|
|
855
|
-
internalType: "uint256",
|
|
856
|
-
name: "proposalId",
|
|
857
|
-
type: "uint256",
|
|
858
|
-
},
|
|
859
|
-
{
|
|
860
|
-
internalType: "uint8",
|
|
861
|
-
name: "support",
|
|
862
|
-
type: "uint8",
|
|
863
|
-
},
|
|
864
|
-
{
|
|
865
|
-
internalType: "address",
|
|
866
|
-
name: "voter",
|
|
867
|
-
type: "address",
|
|
868
|
-
},
|
|
869
|
-
{
|
|
870
|
-
internalType: "bytes",
|
|
871
|
-
name: "signature",
|
|
872
|
-
type: "bytes",
|
|
873
|
-
},
|
|
874
|
-
],
|
|
875
|
-
name: "castVoteBySig",
|
|
876
|
-
outputs: [
|
|
877
|
-
{
|
|
878
|
-
internalType: "uint256",
|
|
879
|
-
name: "",
|
|
880
|
-
type: "uint256",
|
|
881
|
-
},
|
|
882
|
-
],
|
|
883
|
-
stateMutability: "nonpayable",
|
|
884
|
-
type: "function",
|
|
885
|
-
},
|
|
886
|
-
{
|
|
887
|
-
inputs: [
|
|
888
|
-
{
|
|
889
|
-
internalType: "uint256",
|
|
890
|
-
name: "proposalId",
|
|
891
|
-
type: "uint256",
|
|
892
|
-
},
|
|
893
|
-
{
|
|
894
|
-
internalType: "uint8",
|
|
895
|
-
name: "support",
|
|
896
|
-
type: "uint8",
|
|
897
|
-
},
|
|
898
|
-
{
|
|
899
|
-
internalType: "string",
|
|
900
|
-
name: "reason",
|
|
901
|
-
type: "string",
|
|
902
|
-
},
|
|
903
|
-
],
|
|
904
|
-
name: "castVoteWithReason",
|
|
905
|
-
outputs: [
|
|
906
|
-
{
|
|
907
|
-
internalType: "uint256",
|
|
908
|
-
name: "",
|
|
909
|
-
type: "uint256",
|
|
910
|
-
},
|
|
911
|
-
],
|
|
912
|
-
stateMutability: "nonpayable",
|
|
913
|
-
type: "function",
|
|
914
|
-
},
|
|
915
|
-
{
|
|
916
|
-
inputs: [
|
|
917
|
-
{
|
|
918
|
-
internalType: "uint256",
|
|
919
|
-
name: "proposalId",
|
|
920
|
-
type: "uint256",
|
|
921
|
-
},
|
|
922
|
-
{
|
|
923
|
-
internalType: "uint8",
|
|
924
|
-
name: "support",
|
|
925
|
-
type: "uint8",
|
|
926
|
-
},
|
|
927
|
-
{
|
|
928
|
-
internalType: "string",
|
|
929
|
-
name: "reason",
|
|
930
|
-
type: "string",
|
|
931
|
-
},
|
|
932
|
-
{
|
|
933
|
-
internalType: "bytes",
|
|
934
|
-
name: "params",
|
|
935
|
-
type: "bytes",
|
|
936
|
-
},
|
|
937
|
-
],
|
|
938
|
-
name: "castVoteWithReasonAndParams",
|
|
939
|
-
outputs: [
|
|
940
|
-
{
|
|
941
|
-
internalType: "uint256",
|
|
942
|
-
name: "",
|
|
943
|
-
type: "uint256",
|
|
944
|
-
},
|
|
945
|
-
],
|
|
946
|
-
stateMutability: "nonpayable",
|
|
947
|
-
type: "function",
|
|
948
|
-
},
|
|
949
|
-
{
|
|
950
|
-
inputs: [
|
|
951
|
-
{
|
|
952
|
-
internalType: "uint256",
|
|
953
|
-
name: "proposalId",
|
|
954
|
-
type: "uint256",
|
|
955
|
-
},
|
|
956
|
-
{
|
|
957
|
-
internalType: "uint8",
|
|
958
|
-
name: "support",
|
|
959
|
-
type: "uint8",
|
|
960
|
-
},
|
|
961
|
-
{
|
|
962
|
-
internalType: "address",
|
|
963
|
-
name: "voter",
|
|
964
|
-
type: "address",
|
|
965
|
-
},
|
|
966
|
-
{
|
|
967
|
-
internalType: "string",
|
|
968
|
-
name: "reason",
|
|
969
|
-
type: "string",
|
|
970
|
-
},
|
|
971
|
-
{
|
|
972
|
-
internalType: "bytes",
|
|
973
|
-
name: "params",
|
|
974
|
-
type: "bytes",
|
|
975
|
-
},
|
|
976
|
-
{
|
|
977
|
-
internalType: "bytes",
|
|
978
|
-
name: "signature",
|
|
979
|
-
type: "bytes",
|
|
980
|
-
},
|
|
981
|
-
],
|
|
982
|
-
name: "castVoteWithReasonAndParamsBySig",
|
|
983
|
-
outputs: [
|
|
984
|
-
{
|
|
985
|
-
internalType: "uint256",
|
|
986
|
-
name: "",
|
|
987
|
-
type: "uint256",
|
|
988
|
-
},
|
|
989
|
-
],
|
|
990
|
-
stateMutability: "nonpayable",
|
|
991
|
-
type: "function",
|
|
992
|
-
},
|
|
993
|
-
{
|
|
994
|
-
inputs: [],
|
|
995
|
-
name: "clock",
|
|
996
|
-
outputs: [
|
|
997
|
-
{
|
|
998
|
-
internalType: "uint48",
|
|
999
|
-
name: "",
|
|
1000
|
-
type: "uint48",
|
|
1001
|
-
},
|
|
1002
|
-
],
|
|
1003
|
-
stateMutability: "view",
|
|
1004
|
-
type: "function",
|
|
1005
|
-
},
|
|
1006
|
-
{
|
|
1007
|
-
inputs: [],
|
|
1008
|
-
name: "eip712Domain",
|
|
1009
|
-
outputs: [
|
|
1010
|
-
{
|
|
1011
|
-
internalType: "bytes1",
|
|
1012
|
-
name: "fields",
|
|
1013
|
-
type: "bytes1",
|
|
1014
|
-
},
|
|
1015
|
-
{
|
|
1016
|
-
internalType: "string",
|
|
1017
|
-
name: "name",
|
|
1018
|
-
type: "string",
|
|
1019
|
-
},
|
|
1020
|
-
{
|
|
1021
|
-
internalType: "string",
|
|
1022
|
-
name: "version",
|
|
1023
|
-
type: "string",
|
|
1024
|
-
},
|
|
1025
|
-
{
|
|
1026
|
-
internalType: "uint256",
|
|
1027
|
-
name: "chainId",
|
|
1028
|
-
type: "uint256",
|
|
1029
|
-
},
|
|
1030
|
-
{
|
|
1031
|
-
internalType: "address",
|
|
1032
|
-
name: "verifyingContract",
|
|
1033
|
-
type: "address",
|
|
1034
|
-
},
|
|
1035
|
-
{
|
|
1036
|
-
internalType: "bytes32",
|
|
1037
|
-
name: "salt",
|
|
1038
|
-
type: "bytes32",
|
|
1039
|
-
},
|
|
1040
|
-
{
|
|
1041
|
-
internalType: "uint256[]",
|
|
1042
|
-
name: "extensions",
|
|
1043
|
-
type: "uint256[]",
|
|
1044
|
-
},
|
|
1045
|
-
],
|
|
1046
|
-
stateMutability: "view",
|
|
1047
|
-
type: "function",
|
|
1048
|
-
},
|
|
1049
|
-
{
|
|
1050
|
-
inputs: [
|
|
1051
|
-
{
|
|
1052
|
-
internalType: "address[]",
|
|
1053
|
-
name: "targets",
|
|
1054
|
-
type: "address[]",
|
|
1055
|
-
},
|
|
1056
|
-
{
|
|
1057
|
-
internalType: "uint256[]",
|
|
1058
|
-
name: "values",
|
|
1059
|
-
type: "uint256[]",
|
|
1060
|
-
},
|
|
1061
|
-
{
|
|
1062
|
-
internalType: "bytes[]",
|
|
1063
|
-
name: "calldatas",
|
|
1064
|
-
type: "bytes[]",
|
|
1065
|
-
},
|
|
1066
|
-
{
|
|
1067
|
-
internalType: "bytes32",
|
|
1068
|
-
name: "descriptionHash",
|
|
1069
|
-
type: "bytes32",
|
|
1070
|
-
},
|
|
1071
|
-
],
|
|
1072
|
-
name: "execute",
|
|
1073
|
-
outputs: [
|
|
1074
|
-
{
|
|
1075
|
-
internalType: "uint256",
|
|
1076
|
-
name: "",
|
|
1077
|
-
type: "uint256",
|
|
1078
|
-
},
|
|
1079
|
-
],
|
|
1080
|
-
stateMutability: "payable",
|
|
1081
|
-
type: "function",
|
|
1082
|
-
},
|
|
1083
|
-
{
|
|
1084
|
-
inputs: [],
|
|
1085
|
-
name: "getExecutorsThreshold",
|
|
1086
|
-
outputs: [
|
|
1087
|
-
{
|
|
1088
|
-
internalType: "uint256",
|
|
1089
|
-
name: "",
|
|
1090
|
-
type: "uint256",
|
|
1091
|
-
},
|
|
1092
|
-
],
|
|
1093
|
-
stateMutability: "view",
|
|
1094
|
-
type: "function",
|
|
1095
|
-
},
|
|
1096
|
-
{
|
|
1097
|
-
inputs: [],
|
|
1098
|
-
name: "getExecutorsVotingPeriod",
|
|
1099
|
-
outputs: [
|
|
1100
|
-
{
|
|
1101
|
-
internalType: "uint256",
|
|
1102
|
-
name: "",
|
|
1103
|
-
type: "uint256",
|
|
1104
|
-
},
|
|
1105
|
-
],
|
|
1106
|
-
stateMutability: "view",
|
|
1107
|
-
type: "function",
|
|
1108
|
-
},
|
|
1109
|
-
{
|
|
1110
|
-
inputs: [],
|
|
1111
|
-
name: "getNeutralsThreshold",
|
|
1112
|
-
outputs: [
|
|
1113
|
-
{
|
|
1114
|
-
internalType: "uint256",
|
|
1115
|
-
name: "",
|
|
1116
|
-
type: "uint256",
|
|
1117
|
-
},
|
|
1118
|
-
],
|
|
1119
|
-
stateMutability: "view",
|
|
1120
|
-
type: "function",
|
|
1121
|
-
},
|
|
1122
|
-
{
|
|
1123
|
-
inputs: [],
|
|
1124
|
-
name: "getNeutralsVotingPeriod",
|
|
1125
|
-
outputs: [
|
|
1126
|
-
{
|
|
1127
|
-
internalType: "uint256",
|
|
1128
|
-
name: "",
|
|
1129
|
-
type: "uint256",
|
|
1130
|
-
},
|
|
1131
|
-
],
|
|
1132
|
-
stateMutability: "view",
|
|
1133
|
-
type: "function",
|
|
1134
|
-
},
|
|
1135
|
-
{
|
|
1136
|
-
inputs: [],
|
|
1137
|
-
name: "getParametersRegistry",
|
|
1138
|
-
outputs: [
|
|
1139
|
-
{
|
|
1140
|
-
internalType: "address",
|
|
1141
|
-
name: "",
|
|
1142
|
-
type: "address",
|
|
1143
|
-
},
|
|
1144
|
-
],
|
|
1145
|
-
stateMutability: "view",
|
|
1146
|
-
type: "function",
|
|
1147
|
-
},
|
|
1148
|
-
{
|
|
1149
|
-
inputs: [
|
|
1150
|
-
{
|
|
1151
|
-
internalType: "uint256",
|
|
1152
|
-
name: "proposalId",
|
|
1153
|
-
type: "uint256",
|
|
1154
|
-
},
|
|
1155
|
-
],
|
|
1156
|
-
name: "getProposalData",
|
|
1157
|
-
outputs: [
|
|
1158
|
-
{
|
|
1159
|
-
components: [
|
|
1160
|
-
{
|
|
1161
|
-
internalType: "uint256",
|
|
1162
|
-
name: "neutralsThreshold",
|
|
1163
|
-
type: "uint256",
|
|
1164
|
-
},
|
|
1165
|
-
{
|
|
1166
|
-
internalType: "uint256",
|
|
1167
|
-
name: "executorsThreshold",
|
|
1168
|
-
type: "uint256",
|
|
1169
|
-
},
|
|
1170
|
-
{
|
|
1171
|
-
internalType: "bytes32[]",
|
|
1172
|
-
name: "neutralToOperationHashes",
|
|
1173
|
-
type: "bytes32[]",
|
|
1174
|
-
},
|
|
1175
|
-
{
|
|
1176
|
-
components: [
|
|
1177
|
-
{
|
|
1178
|
-
components: [
|
|
1179
|
-
{
|
|
1180
|
-
internalType: "enum IGovernance.OperationType",
|
|
1181
|
-
name: "operation_",
|
|
1182
|
-
type: "uint8",
|
|
1183
|
-
},
|
|
1184
|
-
{
|
|
1185
|
-
internalType: "address",
|
|
1186
|
-
name: "to_",
|
|
1187
|
-
type: "address",
|
|
1188
|
-
},
|
|
1189
|
-
{
|
|
1190
|
-
internalType: "bytes",
|
|
1191
|
-
name: "data_",
|
|
1192
|
-
type: "bytes",
|
|
1193
|
-
},
|
|
1194
|
-
{
|
|
1195
|
-
internalType: "uint256",
|
|
1196
|
-
name: "value_",
|
|
1197
|
-
type: "uint256",
|
|
1198
|
-
},
|
|
1199
|
-
],
|
|
1200
|
-
internalType: "struct IGovernance.OperationData[]",
|
|
1201
|
-
name: "operations",
|
|
1202
|
-
type: "tuple[]",
|
|
1203
|
-
},
|
|
1204
|
-
],
|
|
1205
|
-
internalType: "struct IGovernance.OperationBundle[]",
|
|
1206
|
-
name: "operationBundles",
|
|
1207
|
-
type: "tuple[]",
|
|
1208
|
-
},
|
|
1209
|
-
{
|
|
1210
|
-
internalType: "address[]",
|
|
1211
|
-
name: "positiveExecutorVotes",
|
|
1212
|
-
type: "address[]",
|
|
1213
|
-
},
|
|
1214
|
-
{
|
|
1215
|
-
internalType: "address[]",
|
|
1216
|
-
name: "negativeExecutorVotes",
|
|
1217
|
-
type: "address[]",
|
|
1218
|
-
},
|
|
1219
|
-
],
|
|
1220
|
-
internalType: "struct Governance.SLCProposalStateView",
|
|
1221
|
-
name: "",
|
|
1222
|
-
type: "tuple",
|
|
1223
|
-
},
|
|
1224
|
-
{
|
|
1225
|
-
components: [
|
|
1226
|
-
{
|
|
1227
|
-
internalType: "address",
|
|
1228
|
-
name: "proposer",
|
|
1229
|
-
type: "address",
|
|
1230
|
-
},
|
|
1231
|
-
{
|
|
1232
|
-
internalType: "uint48",
|
|
1233
|
-
name: "voteStart",
|
|
1234
|
-
type: "uint48",
|
|
1235
|
-
},
|
|
1236
|
-
{
|
|
1237
|
-
internalType: "uint32",
|
|
1238
|
-
name: "voteDuration",
|
|
1239
|
-
type: "uint32",
|
|
1240
|
-
},
|
|
1241
|
-
{
|
|
1242
|
-
internalType: "bool",
|
|
1243
|
-
name: "executed",
|
|
1244
|
-
type: "bool",
|
|
1245
|
-
},
|
|
1246
|
-
{
|
|
1247
|
-
internalType: "bool",
|
|
1248
|
-
name: "canceled",
|
|
1249
|
-
type: "bool",
|
|
1250
|
-
},
|
|
1251
|
-
{
|
|
1252
|
-
internalType: "uint48",
|
|
1253
|
-
name: "etaSeconds",
|
|
1254
|
-
type: "uint48",
|
|
1255
|
-
},
|
|
1256
|
-
],
|
|
1257
|
-
internalType: "struct GovernorUpgradeable.ProposalCore",
|
|
1258
|
-
name: "",
|
|
1259
|
-
type: "tuple",
|
|
1260
|
-
},
|
|
1261
|
-
],
|
|
1262
|
-
stateMutability: "view",
|
|
1263
|
-
type: "function",
|
|
1264
|
-
},
|
|
1265
|
-
{
|
|
1266
|
-
inputs: [
|
|
1267
|
-
{
|
|
1268
|
-
internalType: "address[]",
|
|
1269
|
-
name: "targets",
|
|
1270
|
-
type: "address[]",
|
|
1271
|
-
},
|
|
1272
|
-
{
|
|
1273
|
-
internalType: "uint256[]",
|
|
1274
|
-
name: "values",
|
|
1275
|
-
type: "uint256[]",
|
|
1276
|
-
},
|
|
1277
|
-
{
|
|
1278
|
-
internalType: "bytes[]",
|
|
1279
|
-
name: "calldatas",
|
|
1280
|
-
type: "bytes[]",
|
|
1281
|
-
},
|
|
1282
|
-
{
|
|
1283
|
-
internalType: "bytes32",
|
|
1284
|
-
name: "descriptionHash",
|
|
1285
|
-
type: "bytes32",
|
|
1286
|
-
},
|
|
1287
|
-
],
|
|
1288
|
-
name: "getProposalId",
|
|
1289
|
-
outputs: [
|
|
1290
|
-
{
|
|
1291
|
-
internalType: "uint256",
|
|
1292
|
-
name: "",
|
|
1293
|
-
type: "uint256",
|
|
1294
|
-
},
|
|
1295
|
-
],
|
|
1296
|
-
stateMutability: "view",
|
|
1297
|
-
type: "function",
|
|
1298
|
-
},
|
|
1299
|
-
{
|
|
1300
|
-
inputs: [
|
|
1301
|
-
{
|
|
1302
|
-
internalType: "address",
|
|
1303
|
-
name: "slcCore_",
|
|
1304
|
-
type: "address",
|
|
1305
|
-
},
|
|
1306
|
-
{
|
|
1307
|
-
internalType: "uint256",
|
|
1308
|
-
name: "requestNumber_",
|
|
1309
|
-
type: "uint256",
|
|
1310
|
-
},
|
|
1311
|
-
{
|
|
1312
|
-
internalType: "uint256",
|
|
1313
|
-
name: "offset_",
|
|
1314
|
-
type: "uint256",
|
|
1315
|
-
},
|
|
1316
|
-
{
|
|
1317
|
-
internalType: "uint256",
|
|
1318
|
-
name: "limit_",
|
|
1319
|
-
type: "uint256",
|
|
1320
|
-
},
|
|
1321
|
-
],
|
|
1322
|
-
name: "getProposalsByServiceRequest",
|
|
1323
|
-
outputs: [
|
|
1324
|
-
{
|
|
1325
|
-
components: [
|
|
1326
|
-
{
|
|
1327
|
-
internalType: "uint256",
|
|
1328
|
-
name: "neutralsThreshold",
|
|
1329
|
-
type: "uint256",
|
|
1330
|
-
},
|
|
1331
|
-
{
|
|
1332
|
-
internalType: "uint256",
|
|
1333
|
-
name: "executorsThreshold",
|
|
1334
|
-
type: "uint256",
|
|
1335
|
-
},
|
|
1336
|
-
{
|
|
1337
|
-
internalType: "bytes32[]",
|
|
1338
|
-
name: "neutralToOperationHashes",
|
|
1339
|
-
type: "bytes32[]",
|
|
1340
|
-
},
|
|
1341
|
-
{
|
|
1342
|
-
components: [
|
|
1343
|
-
{
|
|
1344
|
-
components: [
|
|
1345
|
-
{
|
|
1346
|
-
internalType: "enum IGovernance.OperationType",
|
|
1347
|
-
name: "operation_",
|
|
1348
|
-
type: "uint8",
|
|
1349
|
-
},
|
|
1350
|
-
{
|
|
1351
|
-
internalType: "address",
|
|
1352
|
-
name: "to_",
|
|
1353
|
-
type: "address",
|
|
1354
|
-
},
|
|
1355
|
-
{
|
|
1356
|
-
internalType: "bytes",
|
|
1357
|
-
name: "data_",
|
|
1358
|
-
type: "bytes",
|
|
1359
|
-
},
|
|
1360
|
-
{
|
|
1361
|
-
internalType: "uint256",
|
|
1362
|
-
name: "value_",
|
|
1363
|
-
type: "uint256",
|
|
1364
|
-
},
|
|
1365
|
-
],
|
|
1366
|
-
internalType: "struct IGovernance.OperationData[]",
|
|
1367
|
-
name: "operations",
|
|
1368
|
-
type: "tuple[]",
|
|
1369
|
-
},
|
|
1370
|
-
],
|
|
1371
|
-
internalType: "struct IGovernance.OperationBundle[]",
|
|
1372
|
-
name: "operationBundles",
|
|
1373
|
-
type: "tuple[]",
|
|
1374
|
-
},
|
|
1375
|
-
{
|
|
1376
|
-
internalType: "address[]",
|
|
1377
|
-
name: "positiveExecutorVotes",
|
|
1378
|
-
type: "address[]",
|
|
1379
|
-
},
|
|
1380
|
-
{
|
|
1381
|
-
internalType: "address[]",
|
|
1382
|
-
name: "negativeExecutorVotes",
|
|
1383
|
-
type: "address[]",
|
|
1384
|
-
},
|
|
1385
|
-
],
|
|
1386
|
-
internalType: "struct Governance.SLCProposalStateView[]",
|
|
1387
|
-
name: "",
|
|
1388
|
-
type: "tuple[]",
|
|
1389
|
-
},
|
|
1390
|
-
{
|
|
1391
|
-
components: [
|
|
1392
|
-
{
|
|
1393
|
-
internalType: "address",
|
|
1394
|
-
name: "proposer",
|
|
1395
|
-
type: "address",
|
|
1396
|
-
},
|
|
1397
|
-
{
|
|
1398
|
-
internalType: "uint48",
|
|
1399
|
-
name: "voteStart",
|
|
1400
|
-
type: "uint48",
|
|
1401
|
-
},
|
|
1402
|
-
{
|
|
1403
|
-
internalType: "uint32",
|
|
1404
|
-
name: "voteDuration",
|
|
1405
|
-
type: "uint32",
|
|
1406
|
-
},
|
|
1407
|
-
{
|
|
1408
|
-
internalType: "bool",
|
|
1409
|
-
name: "executed",
|
|
1410
|
-
type: "bool",
|
|
1411
|
-
},
|
|
1412
|
-
{
|
|
1413
|
-
internalType: "bool",
|
|
1414
|
-
name: "canceled",
|
|
1415
|
-
type: "bool",
|
|
1416
|
-
},
|
|
1417
|
-
{
|
|
1418
|
-
internalType: "uint48",
|
|
1419
|
-
name: "etaSeconds",
|
|
1420
|
-
type: "uint48",
|
|
1421
|
-
},
|
|
1422
|
-
],
|
|
1423
|
-
internalType: "struct GovernorUpgradeable.ProposalCore[]",
|
|
1424
|
-
name: "",
|
|
1425
|
-
type: "tuple[]",
|
|
1426
|
-
},
|
|
1427
|
-
],
|
|
1428
|
-
stateMutability: "view",
|
|
1429
|
-
type: "function",
|
|
1430
|
-
},
|
|
1431
|
-
{
|
|
1432
|
-
inputs: [
|
|
1433
|
-
{
|
|
1434
|
-
internalType: "address",
|
|
1435
|
-
name: "slcCore_",
|
|
1436
|
-
type: "address",
|
|
1437
|
-
},
|
|
1438
|
-
{
|
|
1439
|
-
internalType: "uint256",
|
|
1440
|
-
name: "offset_",
|
|
1441
|
-
type: "uint256",
|
|
1442
|
-
},
|
|
1443
|
-
{
|
|
1444
|
-
internalType: "uint256",
|
|
1445
|
-
name: "limit_",
|
|
1446
|
-
type: "uint256",
|
|
1447
|
-
},
|
|
1448
|
-
],
|
|
1449
|
-
name: "getServiceRequestsBySLCCore",
|
|
1450
|
-
outputs: [
|
|
1451
|
-
{
|
|
1452
|
-
components: [
|
|
1453
|
-
{
|
|
1454
|
-
internalType: "address",
|
|
1455
|
-
name: "requester",
|
|
1456
|
-
type: "address",
|
|
1457
|
-
},
|
|
1458
|
-
{
|
|
1459
|
-
internalType: "uint256",
|
|
1460
|
-
name: "serviceFee",
|
|
1461
|
-
type: "uint256",
|
|
1462
|
-
},
|
|
1463
|
-
{
|
|
1464
|
-
internalType: "uint256",
|
|
1465
|
-
name: "neutralsNumber",
|
|
1466
|
-
type: "uint256",
|
|
1467
|
-
},
|
|
1468
|
-
{
|
|
1469
|
-
internalType: "string",
|
|
1470
|
-
name: "additionalLink",
|
|
1471
|
-
type: "string",
|
|
1472
|
-
},
|
|
1473
|
-
{
|
|
1474
|
-
internalType: "address[]",
|
|
1475
|
-
name: "selectedNeutrals",
|
|
1476
|
-
type: "address[]",
|
|
1477
|
-
},
|
|
1478
|
-
{
|
|
1479
|
-
internalType: "bytes",
|
|
1480
|
-
name: "data",
|
|
1481
|
-
type: "bytes",
|
|
1482
|
-
},
|
|
1483
|
-
{
|
|
1484
|
-
internalType: "enum Governance.VotingPhase",
|
|
1485
|
-
name: "votingPhase",
|
|
1486
|
-
type: "uint8",
|
|
1487
|
-
},
|
|
1488
|
-
{
|
|
1489
|
-
internalType: "bytes32",
|
|
1490
|
-
name: "leadingOperationHash",
|
|
1491
|
-
type: "bytes32",
|
|
1492
|
-
},
|
|
1493
|
-
{
|
|
1494
|
-
internalType: "uint256",
|
|
1495
|
-
name: "requestNonce",
|
|
1496
|
-
type: "uint256",
|
|
1497
|
-
},
|
|
1498
|
-
{
|
|
1499
|
-
internalType: "uint256[]",
|
|
1500
|
-
name: "proposalIds",
|
|
1501
|
-
type: "uint256[]",
|
|
1502
|
-
},
|
|
1503
|
-
],
|
|
1504
|
-
internalType: "struct Governance.ServiceRequestStateView[]",
|
|
1505
|
-
name: "",
|
|
1506
|
-
type: "tuple[]",
|
|
1507
|
-
},
|
|
1508
|
-
],
|
|
1509
|
-
stateMutability: "view",
|
|
1510
|
-
type: "function",
|
|
1511
|
-
},
|
|
1512
|
-
{
|
|
1513
|
-
inputs: [],
|
|
1514
|
-
name: "getSystemToken",
|
|
1515
|
-
outputs: [
|
|
1516
|
-
{
|
|
1517
|
-
internalType: "address",
|
|
1518
|
-
name: "",
|
|
1519
|
-
type: "address",
|
|
1520
|
-
},
|
|
1521
|
-
],
|
|
1522
|
-
stateMutability: "view",
|
|
1523
|
-
type: "function",
|
|
1524
|
-
},
|
|
1525
|
-
{
|
|
1526
|
-
inputs: [
|
|
1527
|
-
{
|
|
1528
|
-
internalType: "address",
|
|
1529
|
-
name: "account",
|
|
1530
|
-
type: "address",
|
|
1531
|
-
},
|
|
1532
|
-
{
|
|
1533
|
-
internalType: "uint256",
|
|
1534
|
-
name: "timepoint",
|
|
1535
|
-
type: "uint256",
|
|
1536
|
-
},
|
|
1537
|
-
],
|
|
1538
|
-
name: "getVotes",
|
|
1539
|
-
outputs: [
|
|
1540
|
-
{
|
|
1541
|
-
internalType: "uint256",
|
|
1542
|
-
name: "",
|
|
1543
|
-
type: "uint256",
|
|
1544
|
-
},
|
|
1545
|
-
],
|
|
1546
|
-
stateMutability: "view",
|
|
1547
|
-
type: "function",
|
|
1548
|
-
},
|
|
1549
|
-
{
|
|
1550
|
-
inputs: [
|
|
1551
|
-
{
|
|
1552
|
-
internalType: "address",
|
|
1553
|
-
name: "account",
|
|
1554
|
-
type: "address",
|
|
1555
|
-
},
|
|
1556
|
-
{
|
|
1557
|
-
internalType: "uint256",
|
|
1558
|
-
name: "timepoint",
|
|
1559
|
-
type: "uint256",
|
|
1560
|
-
},
|
|
1561
|
-
{
|
|
1562
|
-
internalType: "bytes",
|
|
1563
|
-
name: "params",
|
|
1564
|
-
type: "bytes",
|
|
1565
|
-
},
|
|
1566
|
-
],
|
|
1567
|
-
name: "getVotesWithParams",
|
|
1568
|
-
outputs: [
|
|
1569
|
-
{
|
|
1570
|
-
internalType: "uint256",
|
|
1571
|
-
name: "",
|
|
1572
|
-
type: "uint256",
|
|
1573
|
-
},
|
|
1574
|
-
],
|
|
1575
|
-
stateMutability: "view",
|
|
1576
|
-
type: "function",
|
|
1577
|
-
},
|
|
1578
|
-
{
|
|
1579
|
-
inputs: [
|
|
1580
|
-
{
|
|
1581
|
-
internalType: "uint256",
|
|
1582
|
-
name: "proposalId",
|
|
1583
|
-
type: "uint256",
|
|
1584
|
-
},
|
|
1585
|
-
{
|
|
1586
|
-
internalType: "address",
|
|
1587
|
-
name: "account",
|
|
1588
|
-
type: "address",
|
|
1589
|
-
},
|
|
1590
|
-
],
|
|
1591
|
-
name: "hasVoted",
|
|
1592
|
-
outputs: [
|
|
1593
|
-
{
|
|
1594
|
-
internalType: "bool",
|
|
1595
|
-
name: "",
|
|
1596
|
-
type: "bool",
|
|
1597
|
-
},
|
|
1598
|
-
],
|
|
1599
|
-
stateMutability: "view",
|
|
1600
|
-
type: "function",
|
|
1601
|
-
},
|
|
1602
|
-
{
|
|
1603
|
-
inputs: [
|
|
1604
|
-
{
|
|
1605
|
-
components: [
|
|
1606
|
-
{
|
|
1607
|
-
components: [
|
|
1608
|
-
{
|
|
1609
|
-
internalType: "enum IGovernance.OperationType",
|
|
1610
|
-
name: "operation_",
|
|
1611
|
-
type: "uint8",
|
|
1612
|
-
},
|
|
1613
|
-
{
|
|
1614
|
-
internalType: "address",
|
|
1615
|
-
name: "to_",
|
|
1616
|
-
type: "address",
|
|
1617
|
-
},
|
|
1618
|
-
{
|
|
1619
|
-
internalType: "bytes",
|
|
1620
|
-
name: "data_",
|
|
1621
|
-
type: "bytes",
|
|
1622
|
-
},
|
|
1623
|
-
{
|
|
1624
|
-
internalType: "uint256",
|
|
1625
|
-
name: "value_",
|
|
1626
|
-
type: "uint256",
|
|
1627
|
-
},
|
|
1628
|
-
],
|
|
1629
|
-
internalType: "struct IGovernance.OperationData[]",
|
|
1630
|
-
name: "operations",
|
|
1631
|
-
type: "tuple[]",
|
|
1632
|
-
},
|
|
1633
|
-
],
|
|
1634
|
-
internalType: "struct IGovernance.OperationBundle",
|
|
1635
|
-
name: "operation_",
|
|
1636
|
-
type: "tuple",
|
|
1637
|
-
},
|
|
1638
|
-
],
|
|
1639
|
-
name: "hashOperation",
|
|
1640
|
-
outputs: [
|
|
1641
|
-
{
|
|
1642
|
-
internalType: "bytes32",
|
|
1643
|
-
name: "",
|
|
1644
|
-
type: "bytes32",
|
|
1645
|
-
},
|
|
1646
|
-
],
|
|
1647
|
-
stateMutability: "pure",
|
|
1648
|
-
type: "function",
|
|
1649
|
-
},
|
|
1650
|
-
{
|
|
1651
|
-
inputs: [
|
|
1652
|
-
{
|
|
1653
|
-
internalType: "address[]",
|
|
1654
|
-
name: "targets",
|
|
1655
|
-
type: "address[]",
|
|
1656
|
-
},
|
|
1657
|
-
{
|
|
1658
|
-
internalType: "uint256[]",
|
|
1659
|
-
name: "values",
|
|
1660
|
-
type: "uint256[]",
|
|
1661
|
-
},
|
|
1662
|
-
{
|
|
1663
|
-
internalType: "bytes[]",
|
|
1664
|
-
name: "calldatas",
|
|
1665
|
-
type: "bytes[]",
|
|
1666
|
-
},
|
|
1667
|
-
{
|
|
1668
|
-
internalType: "bytes32",
|
|
1669
|
-
name: "descriptionHash",
|
|
1670
|
-
type: "bytes32",
|
|
1671
|
-
},
|
|
1672
|
-
],
|
|
1673
|
-
name: "hashProposal",
|
|
1674
|
-
outputs: [
|
|
1675
|
-
{
|
|
1676
|
-
internalType: "uint256",
|
|
1677
|
-
name: "",
|
|
1678
|
-
type: "uint256",
|
|
1679
|
-
},
|
|
1680
|
-
],
|
|
1681
|
-
stateMutability: "pure",
|
|
1682
|
-
type: "function",
|
|
1683
|
-
},
|
|
1684
|
-
{
|
|
1685
|
-
inputs: [],
|
|
1686
|
-
name: "implementation",
|
|
1687
|
-
outputs: [
|
|
1688
|
-
{
|
|
1689
|
-
internalType: "address",
|
|
1690
|
-
name: "",
|
|
1691
|
-
type: "address",
|
|
1692
|
-
},
|
|
1693
|
-
],
|
|
1694
|
-
stateMutability: "view",
|
|
1695
|
-
type: "function",
|
|
1696
|
-
},
|
|
1697
|
-
{
|
|
1698
|
-
inputs: [],
|
|
1699
|
-
name: "name",
|
|
1700
|
-
outputs: [
|
|
1701
|
-
{
|
|
1702
|
-
internalType: "string",
|
|
1703
|
-
name: "",
|
|
1704
|
-
type: "string",
|
|
1705
|
-
},
|
|
1706
|
-
],
|
|
1707
|
-
stateMutability: "view",
|
|
1708
|
-
type: "function",
|
|
1709
|
-
},
|
|
1710
|
-
{
|
|
1711
|
-
inputs: [
|
|
1712
|
-
{
|
|
1713
|
-
internalType: "address",
|
|
1714
|
-
name: "owner",
|
|
1715
|
-
type: "address",
|
|
1716
|
-
},
|
|
1717
|
-
],
|
|
1718
|
-
name: "nonces",
|
|
1719
|
-
outputs: [
|
|
1720
|
-
{
|
|
1721
|
-
internalType: "uint256",
|
|
1722
|
-
name: "",
|
|
1723
|
-
type: "uint256",
|
|
1724
|
-
},
|
|
1725
|
-
],
|
|
1726
|
-
stateMutability: "view",
|
|
1727
|
-
type: "function",
|
|
1728
|
-
},
|
|
1729
|
-
{
|
|
1730
|
-
inputs: [
|
|
1731
|
-
{
|
|
1732
|
-
internalType: "address",
|
|
1733
|
-
name: "",
|
|
1734
|
-
type: "address",
|
|
1735
|
-
},
|
|
1736
|
-
{
|
|
1737
|
-
internalType: "address",
|
|
1738
|
-
name: "",
|
|
1739
|
-
type: "address",
|
|
1740
|
-
},
|
|
1741
|
-
{
|
|
1742
|
-
internalType: "uint256[]",
|
|
1743
|
-
name: "",
|
|
1744
|
-
type: "uint256[]",
|
|
1745
|
-
},
|
|
1746
|
-
{
|
|
1747
|
-
internalType: "uint256[]",
|
|
1748
|
-
name: "",
|
|
1749
|
-
type: "uint256[]",
|
|
1750
|
-
},
|
|
1751
|
-
{
|
|
1752
|
-
internalType: "bytes",
|
|
1753
|
-
name: "",
|
|
1754
|
-
type: "bytes",
|
|
1755
|
-
},
|
|
1756
|
-
],
|
|
1757
|
-
name: "onERC1155BatchReceived",
|
|
1758
|
-
outputs: [
|
|
1759
|
-
{
|
|
1760
|
-
internalType: "bytes4",
|
|
1761
|
-
name: "",
|
|
1762
|
-
type: "bytes4",
|
|
1763
|
-
},
|
|
1764
|
-
],
|
|
1765
|
-
stateMutability: "nonpayable",
|
|
1766
|
-
type: "function",
|
|
1767
|
-
},
|
|
1768
|
-
{
|
|
1769
|
-
inputs: [
|
|
1770
|
-
{
|
|
1771
|
-
internalType: "address",
|
|
1772
|
-
name: "",
|
|
1773
|
-
type: "address",
|
|
1774
|
-
},
|
|
1775
|
-
{
|
|
1776
|
-
internalType: "address",
|
|
1777
|
-
name: "",
|
|
1778
|
-
type: "address",
|
|
1779
|
-
},
|
|
1780
|
-
{
|
|
1781
|
-
internalType: "uint256",
|
|
1782
|
-
name: "",
|
|
1783
|
-
type: "uint256",
|
|
1784
|
-
},
|
|
1785
|
-
{
|
|
1786
|
-
internalType: "uint256",
|
|
1787
|
-
name: "",
|
|
1788
|
-
type: "uint256",
|
|
1789
|
-
},
|
|
1790
|
-
{
|
|
1791
|
-
internalType: "bytes",
|
|
1792
|
-
name: "",
|
|
1793
|
-
type: "bytes",
|
|
1794
|
-
},
|
|
1795
|
-
],
|
|
1796
|
-
name: "onERC1155Received",
|
|
1797
|
-
outputs: [
|
|
1798
|
-
{
|
|
1799
|
-
internalType: "bytes4",
|
|
1800
|
-
name: "",
|
|
1801
|
-
type: "bytes4",
|
|
1802
|
-
},
|
|
1803
|
-
],
|
|
1804
|
-
stateMutability: "nonpayable",
|
|
1805
|
-
type: "function",
|
|
1806
|
-
},
|
|
1807
|
-
{
|
|
1808
|
-
inputs: [
|
|
1809
|
-
{
|
|
1810
|
-
internalType: "address",
|
|
1811
|
-
name: "",
|
|
1812
|
-
type: "address",
|
|
1813
|
-
},
|
|
1814
|
-
{
|
|
1815
|
-
internalType: "address",
|
|
1816
|
-
name: "",
|
|
1817
|
-
type: "address",
|
|
1818
|
-
},
|
|
1819
|
-
{
|
|
1820
|
-
internalType: "uint256",
|
|
1821
|
-
name: "",
|
|
1822
|
-
type: "uint256",
|
|
1823
|
-
},
|
|
1824
|
-
{
|
|
1825
|
-
internalType: "bytes",
|
|
1826
|
-
name: "",
|
|
1827
|
-
type: "bytes",
|
|
1828
|
-
},
|
|
1829
|
-
],
|
|
1830
|
-
name: "onERC721Received",
|
|
1831
|
-
outputs: [
|
|
1832
|
-
{
|
|
1833
|
-
internalType: "bytes4",
|
|
1834
|
-
name: "",
|
|
1835
|
-
type: "bytes4",
|
|
1836
|
-
},
|
|
1837
|
-
],
|
|
1838
|
-
stateMutability: "nonpayable",
|
|
1839
|
-
type: "function",
|
|
1840
|
-
},
|
|
1841
|
-
{
|
|
1842
|
-
inputs: [
|
|
1843
|
-
{
|
|
1844
|
-
internalType: "address",
|
|
1845
|
-
name: "requester_",
|
|
1846
|
-
type: "address",
|
|
1847
|
-
},
|
|
1848
|
-
{
|
|
1849
|
-
internalType: "uint256",
|
|
1850
|
-
name: "serviceFee_",
|
|
1851
|
-
type: "uint256",
|
|
1852
|
-
},
|
|
1853
|
-
{
|
|
1854
|
-
internalType: "uint256",
|
|
1855
|
-
name: "neutralsNumber_",
|
|
1856
|
-
type: "uint256",
|
|
1857
|
-
},
|
|
1858
|
-
{
|
|
1859
|
-
internalType: "string",
|
|
1860
|
-
name: "additionalLink_",
|
|
1861
|
-
type: "string",
|
|
1862
|
-
},
|
|
1863
|
-
{
|
|
1864
|
-
internalType: "bytes",
|
|
1865
|
-
name: "data_",
|
|
1866
|
-
type: "bytes",
|
|
1867
|
-
},
|
|
1868
|
-
],
|
|
1869
|
-
name: "processServiceRequest",
|
|
1870
|
-
outputs: [
|
|
1871
|
-
{
|
|
1872
|
-
internalType: "bool",
|
|
1873
|
-
name: "",
|
|
1874
|
-
type: "bool",
|
|
1875
|
-
},
|
|
1876
|
-
],
|
|
1877
|
-
stateMutability: "payable",
|
|
1878
|
-
type: "function",
|
|
1879
|
-
},
|
|
1880
|
-
{
|
|
1881
|
-
inputs: [
|
|
1882
|
-
{
|
|
1883
|
-
internalType: "uint256",
|
|
1884
|
-
name: "proposalId",
|
|
1885
|
-
type: "uint256",
|
|
1886
|
-
},
|
|
1887
|
-
],
|
|
1888
|
-
name: "proposalDeadline",
|
|
1889
|
-
outputs: [
|
|
1890
|
-
{
|
|
1891
|
-
internalType: "uint256",
|
|
1892
|
-
name: "",
|
|
1893
|
-
type: "uint256",
|
|
1894
|
-
},
|
|
1895
|
-
],
|
|
1896
|
-
stateMutability: "view",
|
|
1897
|
-
type: "function",
|
|
1898
|
-
},
|
|
1899
|
-
{
|
|
1900
|
-
inputs: [
|
|
1901
|
-
{
|
|
1902
|
-
internalType: "uint256",
|
|
1903
|
-
name: "proposalId",
|
|
1904
|
-
type: "uint256",
|
|
1905
|
-
},
|
|
1906
|
-
],
|
|
1907
|
-
name: "proposalEta",
|
|
1908
|
-
outputs: [
|
|
1909
|
-
{
|
|
1910
|
-
internalType: "uint256",
|
|
1911
|
-
name: "",
|
|
1912
|
-
type: "uint256",
|
|
1913
|
-
},
|
|
1914
|
-
],
|
|
1915
|
-
stateMutability: "view",
|
|
1916
|
-
type: "function",
|
|
1917
|
-
},
|
|
1918
|
-
{
|
|
1919
|
-
inputs: [
|
|
1920
|
-
{
|
|
1921
|
-
internalType: "uint256",
|
|
1922
|
-
name: "",
|
|
1923
|
-
type: "uint256",
|
|
1924
|
-
},
|
|
1925
|
-
],
|
|
1926
|
-
name: "proposalNeedsQueuing",
|
|
1927
|
-
outputs: [
|
|
1928
|
-
{
|
|
1929
|
-
internalType: "bool",
|
|
1930
|
-
name: "",
|
|
1931
|
-
type: "bool",
|
|
1932
|
-
},
|
|
1933
|
-
],
|
|
1934
|
-
stateMutability: "view",
|
|
1935
|
-
type: "function",
|
|
1936
|
-
},
|
|
1937
|
-
{
|
|
1938
|
-
inputs: [
|
|
1939
|
-
{
|
|
1940
|
-
internalType: "uint256",
|
|
1941
|
-
name: "proposalId",
|
|
1942
|
-
type: "uint256",
|
|
1943
|
-
},
|
|
1944
|
-
],
|
|
1945
|
-
name: "proposalProposer",
|
|
1946
|
-
outputs: [
|
|
1947
|
-
{
|
|
1948
|
-
internalType: "address",
|
|
1949
|
-
name: "",
|
|
1950
|
-
type: "address",
|
|
1951
|
-
},
|
|
1952
|
-
],
|
|
1953
|
-
stateMutability: "view",
|
|
1954
|
-
type: "function",
|
|
1955
|
-
},
|
|
1956
|
-
{
|
|
1957
|
-
inputs: [
|
|
1958
|
-
{
|
|
1959
|
-
internalType: "uint256",
|
|
1960
|
-
name: "proposalId",
|
|
1961
|
-
type: "uint256",
|
|
1962
|
-
},
|
|
1963
|
-
],
|
|
1964
|
-
name: "proposalSnapshot",
|
|
1965
|
-
outputs: [
|
|
1966
|
-
{
|
|
1967
|
-
internalType: "uint256",
|
|
1968
|
-
name: "",
|
|
1969
|
-
type: "uint256",
|
|
1970
|
-
},
|
|
1971
|
-
],
|
|
1972
|
-
stateMutability: "view",
|
|
1973
|
-
type: "function",
|
|
1974
|
-
},
|
|
1975
|
-
{
|
|
1976
|
-
inputs: [],
|
|
1977
|
-
name: "proposalThreshold",
|
|
1978
|
-
outputs: [
|
|
1979
|
-
{
|
|
1980
|
-
internalType: "uint256",
|
|
1981
|
-
name: "",
|
|
1982
|
-
type: "uint256",
|
|
1983
|
-
},
|
|
1984
|
-
],
|
|
1985
|
-
stateMutability: "view",
|
|
1986
|
-
type: "function",
|
|
1987
|
-
},
|
|
1988
|
-
{
|
|
1989
|
-
inputs: [
|
|
1990
|
-
{
|
|
1991
|
-
internalType: "address[]",
|
|
1992
|
-
name: "targets",
|
|
1993
|
-
type: "address[]",
|
|
1994
|
-
},
|
|
1995
|
-
{
|
|
1996
|
-
internalType: "uint256[]",
|
|
1997
|
-
name: "values",
|
|
1998
|
-
type: "uint256[]",
|
|
1999
|
-
},
|
|
2000
|
-
{
|
|
2001
|
-
internalType: "bytes[]",
|
|
2002
|
-
name: "calldatas",
|
|
2003
|
-
type: "bytes[]",
|
|
2004
|
-
},
|
|
2005
|
-
{
|
|
2006
|
-
internalType: "string",
|
|
2007
|
-
name: "description",
|
|
2008
|
-
type: "string",
|
|
2009
|
-
},
|
|
2010
|
-
],
|
|
2011
|
-
name: "propose",
|
|
2012
|
-
outputs: [
|
|
2013
|
-
{
|
|
2014
|
-
internalType: "uint256",
|
|
2015
|
-
name: "",
|
|
2016
|
-
type: "uint256",
|
|
2017
|
-
},
|
|
2018
|
-
],
|
|
2019
|
-
stateMutability: "nonpayable",
|
|
2020
|
-
type: "function",
|
|
2021
|
-
},
|
|
2022
|
-
{
|
|
2023
|
-
inputs: [
|
|
2024
|
-
{
|
|
2025
|
-
internalType: "uint256",
|
|
2026
|
-
name: "proposalId_",
|
|
2027
|
-
type: "uint256",
|
|
2028
|
-
},
|
|
2029
|
-
{
|
|
2030
|
-
components: [
|
|
2031
|
-
{
|
|
2032
|
-
components: [
|
|
2033
|
-
{
|
|
2034
|
-
internalType: "enum IGovernance.OperationType",
|
|
2035
|
-
name: "operation_",
|
|
2036
|
-
type: "uint8",
|
|
2037
|
-
},
|
|
2038
|
-
{
|
|
2039
|
-
internalType: "address",
|
|
2040
|
-
name: "to_",
|
|
2041
|
-
type: "address",
|
|
2042
|
-
},
|
|
2043
|
-
{
|
|
2044
|
-
internalType: "bytes",
|
|
2045
|
-
name: "data_",
|
|
2046
|
-
type: "bytes",
|
|
2047
|
-
},
|
|
2048
|
-
{
|
|
2049
|
-
internalType: "uint256",
|
|
2050
|
-
name: "value_",
|
|
2051
|
-
type: "uint256",
|
|
2052
|
-
},
|
|
2053
|
-
],
|
|
2054
|
-
internalType: "struct IGovernance.OperationData[]",
|
|
2055
|
-
name: "operations",
|
|
2056
|
-
type: "tuple[]",
|
|
2057
|
-
},
|
|
2058
|
-
],
|
|
2059
|
-
internalType: "struct IGovernance.OperationBundle",
|
|
2060
|
-
name: "operationBundle_",
|
|
2061
|
-
type: "tuple",
|
|
2062
|
-
},
|
|
2063
|
-
],
|
|
2064
|
-
name: "proposeOperations",
|
|
2065
|
-
outputs: [],
|
|
2066
|
-
stateMutability: "nonpayable",
|
|
2067
|
-
type: "function",
|
|
2068
|
-
},
|
|
2069
|
-
{
|
|
2070
|
-
inputs: [],
|
|
2071
|
-
name: "proxiableUUID",
|
|
2072
|
-
outputs: [
|
|
2073
|
-
{
|
|
2074
|
-
internalType: "bytes32",
|
|
2075
|
-
name: "",
|
|
2076
|
-
type: "bytes32",
|
|
2077
|
-
},
|
|
2078
|
-
],
|
|
2079
|
-
stateMutability: "view",
|
|
2080
|
-
type: "function",
|
|
2081
|
-
},
|
|
2082
|
-
{
|
|
2083
|
-
inputs: [
|
|
2084
|
-
{
|
|
2085
|
-
internalType: "address[]",
|
|
2086
|
-
name: "targets",
|
|
2087
|
-
type: "address[]",
|
|
2088
|
-
},
|
|
2089
|
-
{
|
|
2090
|
-
internalType: "uint256[]",
|
|
2091
|
-
name: "values",
|
|
2092
|
-
type: "uint256[]",
|
|
2093
|
-
},
|
|
2094
|
-
{
|
|
2095
|
-
internalType: "bytes[]",
|
|
2096
|
-
name: "calldatas",
|
|
2097
|
-
type: "bytes[]",
|
|
2098
|
-
},
|
|
2099
|
-
{
|
|
2100
|
-
internalType: "bytes32",
|
|
2101
|
-
name: "descriptionHash",
|
|
2102
|
-
type: "bytes32",
|
|
2103
|
-
},
|
|
2104
|
-
],
|
|
2105
|
-
name: "queue",
|
|
2106
|
-
outputs: [
|
|
2107
|
-
{
|
|
2108
|
-
internalType: "uint256",
|
|
2109
|
-
name: "",
|
|
2110
|
-
type: "uint256",
|
|
2111
|
-
},
|
|
2112
|
-
],
|
|
2113
|
-
stateMutability: "nonpayable",
|
|
2114
|
-
type: "function",
|
|
2115
|
-
},
|
|
2116
|
-
{
|
|
2117
|
-
inputs: [
|
|
2118
|
-
{
|
|
2119
|
-
internalType: "uint256",
|
|
2120
|
-
name: "timepoint",
|
|
2121
|
-
type: "uint256",
|
|
2122
|
-
},
|
|
2123
|
-
],
|
|
2124
|
-
name: "quorum",
|
|
2125
|
-
outputs: [
|
|
2126
|
-
{
|
|
2127
|
-
internalType: "uint256",
|
|
2128
|
-
name: "",
|
|
2129
|
-
type: "uint256",
|
|
2130
|
-
},
|
|
2131
|
-
],
|
|
2132
|
-
stateMutability: "view",
|
|
2133
|
-
type: "function",
|
|
2134
|
-
},
|
|
2135
|
-
{
|
|
2136
|
-
inputs: [
|
|
2137
|
-
{
|
|
2138
|
-
internalType: "address",
|
|
2139
|
-
name: "target",
|
|
2140
|
-
type: "address",
|
|
2141
|
-
},
|
|
2142
|
-
{
|
|
2143
|
-
internalType: "uint256",
|
|
2144
|
-
name: "value",
|
|
2145
|
-
type: "uint256",
|
|
2146
|
-
},
|
|
2147
|
-
{
|
|
2148
|
-
internalType: "bytes",
|
|
2149
|
-
name: "data",
|
|
2150
|
-
type: "bytes",
|
|
2151
|
-
},
|
|
2152
|
-
],
|
|
2153
|
-
name: "relay",
|
|
2154
|
-
outputs: [],
|
|
2155
|
-
stateMutability: "payable",
|
|
2156
|
-
type: "function",
|
|
2157
|
-
},
|
|
2158
|
-
{
|
|
2159
|
-
inputs: [
|
|
2160
|
-
{
|
|
2161
|
-
internalType: "uint256",
|
|
2162
|
-
name: "proposalId",
|
|
2163
|
-
type: "uint256",
|
|
2164
|
-
},
|
|
2165
|
-
],
|
|
2166
|
-
name: "state",
|
|
2167
|
-
outputs: [
|
|
2168
|
-
{
|
|
2169
|
-
internalType: "enum IGovernor.ProposalState",
|
|
2170
|
-
name: "",
|
|
2171
|
-
type: "uint8",
|
|
2172
|
-
},
|
|
2173
|
-
],
|
|
2174
|
-
stateMutability: "view",
|
|
2175
|
-
type: "function",
|
|
2176
|
-
},
|
|
2177
|
-
{
|
|
2178
|
-
inputs: [
|
|
2179
|
-
{
|
|
2180
|
-
internalType: "bytes4",
|
|
2181
|
-
name: "interfaceId_",
|
|
2182
|
-
type: "bytes4",
|
|
2183
|
-
},
|
|
2184
|
-
],
|
|
2185
|
-
name: "supportsInterface",
|
|
2186
|
-
outputs: [
|
|
2187
|
-
{
|
|
2188
|
-
internalType: "bool",
|
|
2189
|
-
name: "",
|
|
2190
|
-
type: "bool",
|
|
2191
|
-
},
|
|
2192
|
-
],
|
|
2193
|
-
stateMutability: "view",
|
|
2194
|
-
type: "function",
|
|
2195
|
-
},
|
|
2196
|
-
{
|
|
2197
|
-
inputs: [
|
|
2198
|
-
{
|
|
2199
|
-
internalType: "address",
|
|
2200
|
-
name: "newImplementation",
|
|
2201
|
-
type: "address",
|
|
2202
|
-
},
|
|
2203
|
-
{
|
|
2204
|
-
internalType: "bytes",
|
|
2205
|
-
name: "data",
|
|
2206
|
-
type: "bytes",
|
|
2207
|
-
},
|
|
2208
|
-
],
|
|
2209
|
-
name: "upgradeToAndCall",
|
|
2210
|
-
outputs: [],
|
|
2211
|
-
stateMutability: "payable",
|
|
2212
|
-
type: "function",
|
|
2213
|
-
},
|
|
2214
|
-
{
|
|
2215
|
-
inputs: [],
|
|
2216
|
-
name: "version",
|
|
2217
|
-
outputs: [
|
|
2218
|
-
{
|
|
2219
|
-
internalType: "string",
|
|
2220
|
-
name: "",
|
|
2221
|
-
type: "string",
|
|
2222
|
-
},
|
|
2223
|
-
],
|
|
2224
|
-
stateMutability: "view",
|
|
2225
|
-
type: "function",
|
|
2226
|
-
},
|
|
2227
|
-
{
|
|
2228
|
-
inputs: [],
|
|
2229
|
-
name: "votingDelay",
|
|
2230
|
-
outputs: [
|
|
2231
|
-
{
|
|
2232
|
-
internalType: "uint256",
|
|
2233
|
-
name: "",
|
|
2234
|
-
type: "uint256",
|
|
2235
|
-
},
|
|
2236
|
-
],
|
|
2237
|
-
stateMutability: "view",
|
|
2238
|
-
type: "function",
|
|
2239
|
-
},
|
|
2240
|
-
{
|
|
2241
|
-
inputs: [],
|
|
2242
|
-
name: "votingPeriod",
|
|
2243
|
-
outputs: [
|
|
2244
|
-
{
|
|
2245
|
-
internalType: "uint256",
|
|
2246
|
-
name: "",
|
|
2247
|
-
type: "uint256",
|
|
2248
|
-
},
|
|
2249
|
-
],
|
|
2250
|
-
stateMutability: "view",
|
|
2251
|
-
type: "function",
|
|
2252
|
-
},
|
|
2253
|
-
{
|
|
2254
|
-
stateMutability: "payable",
|
|
2255
|
-
type: "receive",
|
|
2256
|
-
},
|
|
2257
|
-
] as const;
|
|
2258
|
-
|
|
2259
|
-
const _bytecode =
|
|
2260
|
-
"0x60a0806040523460295730608052615f0c908161002f8239608051818181611a690152611afd0152f35b600080fdfe608080604052600436101561001d575b50361561001b57600080fd5b005b60003560e01c90816301ffc9a7146126435750806302a251a314612617578063035eb022146125fc57806306fdde03146124dd578063143489d0146124ad578063150b7a021461245857806315d2490414612422578063160cbed7146123ec5780632656227d146123d55780632d63f693146123b75780632db8b607146123815780632fe3e26114612346578063314b89bd14611fc25780633932abb114611fa75780633e4f49e614611f785780634385963214611eca578063452115d614611dce5780634bf5d7e914611d7e5780634f1ef28614611ac057806352d1902d14611a5657806354fd4d5014611a1357806356781388146119d55780635b8d0e0d146118835780635c60da1b1461184d5780635ecaa339146118185780635f398a14146117a55780636106f19f146114e55780636e768530146114a45780637b3c71d3146114415780637d5e81e2146113705780637ecebe001461131757806384b0196e146111f35780638ff262e3146110e857806391ddadf4146110c55780639a220315146110aa5780639a802a6d146110655780639d6d9be914610e35578063a722570d14610e1a578063a8f8a668146108b5578063a9a9529414610dfe578063ab58fb8e14610de0578063ad3cb1cc14610d99578063adf499f514610a06578063b58131b0146109ea578063bc197c8114610955578063c01f9e3714610937578063c28bc2fa146108ba578063c59057e4146108b5578063ce5f0f511461089a578063dd4e2ba514610810578063deaaa7cc146107d5578063e312d7f21461033d578063eb9019d414610307578063f23a6e61146102b25763f8ce560a14610287573861000f565b346102ad5760203660031901126102ad5760206102a5600435613ccb565b604051908152f35b600080fd5b346102ad5760a03660031901126102ad576102cb612721565b506102d4612737565b506084356001600160401b0381116102ad576102f4903690600401612857565b5060405163f23a6e6160e01b8152602090f35b346102ad5760403660031901126102ad57610320612721565b5060006040516103316020826127e4565b52602060405160018152f35b60a03660031901126102ad57610351612721565b602435604435916064356001600160401b0381116102ad57610377903690600401612ad4565b60843594916001600160401b0386116102ad5761039b610412963690600401612ad4565b91909260018060a01b03600080516020615e0083398151915254169460206040968751906103c989836127e4565b601c82527f736c632e676f7665726e616e63652e6d696e536572766963654665650000000083830152885180809d819462498bff60e81b835286600484015260248301906126e0565b03915afa9889156107ca57600099610796575b5088881061077d5786979850610447602497610442368587612820565b614ef2565b600080516020615ee0833981519152548851633eb22a3160e21b815260048101859052929b92996000918b919082906001600160a01b03165afa988915610772576000996106cd575b50600161049c3361322f565b60009283520160205287902080546001600160a01b0319166001600160a01b03909a169990991789556001890155600288015560038701916001600160401b038211610648576104f6826104f08554612ee8565b85613a39565b600090601f83116001146106695761052792916000918361065e575b50508160011b916000199060031b1c19161790565b90555b60068501916001600160401b0382116106485761054b826104f08554612ee8565b600090601f83116001146105e15761057b9291600091836105d65750508160011b916000199060031b1c19161790565b90559291925b600460009401935b82518110156105b9576001906105b26001600160a01b036105aa8387612ff0565b511687615926565b5001610589565b506105cf602092846105ca8161500f565b61518e565b5160018152f35b013590508880610512565b8382526020822091601f198416815b8181106106305750908460019594939210610616575b505050811b019055929192610581565b0135600019600384901b60f8161c19169055878080610606565b919360206001819287870135815501950192016105f0565b634e487b7160e01b600052604160045260246000fd5b013590508a80610512565b8382526020822091601f198416815b8181106106b5575090846001959493921061069b575b505050811b01905561052a565b0135600019600384901b60f8161c1916905589808061068e565b91936020600181928787013581550195019201610678565b9890983d8083833e6106df81836127e4565b81019060208183031261076a578051906001600160401b03821161076e570181601f8201121561076a5780519061071582612875565b936107228c5195866127e4565b82855260208086019360051b8301019384116107675750602001905b82821061074f57505050978b610490565b6020809161075c84613cb7565b81520191019061073e565b80fd5b8280fd5b8380fd5b88513d6000823e3d90fd5b8888632461012360e01b60005260045260245260446000fd5b90986020823d6020116107c2575b816107b1602093836127e4565b810103126107675750519789610425565b3d91506107a4565b86513d6000823e3d90fd5b346102ad5760003660031901126102ad5760206040517ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d78152f35b346102ad5760003660031901126102ad576108966040516108326060826127e4565b603d81527f737570706f72743d627261766f2c6672616374696f6e616c2671756f72756d3d60208201527f666f722c6162737461696e26706172616d733d6672616374696f6e616c00000060408201526040519182916020835260208301906126e0565b0390f35b346102ad5760003660031901126102ad5760206102a5613bcf565b612de7565b60603660031901126102ad576108ce612721565b6044356001600160401b0381116102ad576108ed903690600401612ad4565b903330036109225760008383829361001b95604051928392833781018481520391602435905af161091c613ae5565b90614ed6565b6347096e4760e01b6000523360045260246000fd5b346102ad5760203660031901126102ad5760206102a5600435613a80565b346102ad5760a03660031901126102ad5761096e612721565b50610977612737565b506044356001600160401b0381116102ad576109979036906004016128f1565b506064356001600160401b0381116102ad576109b79036906004016128f1565b506084356001600160401b0381116102ad576109d7903690600401612857565b5060405163bc197c8160e01b8152602090f35b346102ad5760003660031901126102ad57602060405160008152f35b346102ad5760403660031901126102ad576024356004356001600160401b0382116102ad5781600401918036039160206003198401126102ad576000818152600080516020615e808339815191526020526040902054600190610a71906001600160a01b031661322f565b0181600052600080516020615e80833981519152602052600160406000200154600052602052604060002060ff600782015416610aad81612a78565b60018103610d7c57503360009081526005909101602052604090205415610d6757600052600080516020615e8083398151915260205260066040600020610afc610af73687612b01565b613384565b33600090815260088301602081905260409091205480610d2a575b508160005260078301602052610b31336040600020615926565b5060018060a01b03331660005260205280604060002055610b5c81610b563689612b01565b84614d30565b50600052016020526040600020923591602219018212156102ad57016004810135906001600160401b0382116102ad57602481018260051b360381136102ad57610ba88385939561393a565b600091825260208220939060a2193683900301905b848410610bc657005b8035828112156102ad57600490840101602081013560028110156102ad57610bee90886139fc565b60408101356001600160a01b03811681036102ad57610c0d9088613a14565b600187016060820135603e1936849003018112156102ad5782016020018035906001600160401b0382116102ad5781360360208201136102ad57600090610c5e83610c588654612ee8565b86613a39565b81601f8411600114610cba5793610c9784600198956080956003999560209992610cad5750508160011b916000199060031b1c19161790565b90555b013560028a015501960193019294610bbd565b8992500101358f80610512565b91601f19841685845260208420935b818110610d10575084608094600398946020989460019b988c9510610cf6575b505050811b019055610c9a565b01880135600019838b1b60f8161c191690558e8080610ce9565b919360206001819282888801013581550195019201610cc9565b600784018160005280602052610d44336040600020615872565b5081600052602052604060002054610b1757610d609084614b8b565b5087610b17565b63562b6a4f60e01b6000523360045260246000fd5b6317d118a360e01b600052610d9081612a78565b60045260246000fd5b346102ad5760003660031901126102ad576108966040805190610dbc81836127e4565b60058252640352e302e360dc1b6020830152519182916020835260208301906126e0565b346102ad5760203660031901126102ad5760206102a56004356138e7565b346102ad5760203660031901126102ad57602060405160008152f35b346102ad5760003660031901126102ad5760206102a5613862565b346102ad5760803660031901126102ad57610e4e612721565b6001610e5c6044359261322f565b01602435600052602052600a60406000200190815490610e7e60643582612dfa565b9180831161105d575b50818111611055575b91610e9b8383613268565b91610ea583612875565b92610eb360405194856127e4565b808452610ec2601f1991612875565b0160005b818110611038575050610ed98482613268565b93610ee385612875565b94610ef160405196876127e4565b808652610f00601f1991612875565b0160005b81811061101b575050805b828110610fc8578585604051918291604083016040845281518091526060840190602060608260051b8701019301916000905b828210610f97575050505082810360208401526020808351928381520192019060005b818110610f73575050500390f35b91935091602060c082610f896001948851612d95565b019401910191849392610f65565b9193600191939596506020610fb78192605f198b82030186528851612cb1565b960192019201869594939192610f42565b80611011610fe9610fdd600194889a9861384a565b90549060031b1c6134e3565b610ff68685949394613268565b9061100a6110048887613268565b8a612ff0565b5288612ff0565b5201949294610f0f565b6020906110299795976133ff565b82828801015201959395610f04565b6020906110469694966133cd565b82828801015201949294610ec6565b905080610e90565b915083610e87565b346102ad5760603660031901126102ad5761107e612721565b506044356001600160401b0381116102ad5761109e903690600401612857565b50602060405160018152f35b346102ad5760003660031901126102ad5760206102a5613762565b346102ad5760003660031901126102ad57602060405165ffffffffffff42168152f35b346102ad5760803660031901126102ad57600435611104612ac4565b61110c61274d565b916064356001600160401b0381116102ad5761112c903690600401612857565b926111a961113982613e7e565b946111a360405160208101907ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7825286604082015260ff8816606082015260018060a01b0386169889608083015260a082015260a0815261119b60c0826127e4565b519020613ec0565b83613f42565b156111de576040516020936102a593926111c386846127e4565b60008352604051936111d587866127e4565b60008552613fff565b836394ab6c0760e01b60005260045260246000fd5b346102ad5760003660031901126102ad577fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1005415806112ee575b156112b15760e061123c61484f565b610896611247614942565b916112906020936112826040519361125f87866127e4565b600085526000368137604051978897600f60f81b895288015260e08701906126e0565b9085820360408701526126e0565b90466060850152306080850152600060a085015283820360c0850152612a82565b60405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b6044820152606490fd5b507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d101541561122d565b346102ad5760203660031901126102ad576001600160a01b03611338612721565b166000527f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb006020526020604060002054604051908152f35b346102ad5760803660031901126102ad576004356001600160401b0381116102ad576113a090369060040161288c565b6024356001600160401b0381116102ad576113bf9036906004016128f1565b6044356001600160401b0381116102ad576113de90369060040161294e565b916064356001600160401b0381116102ad57366023820112156102ad5761140f903690602481600401359101612820565b6114198133614513565b1561142c576020936102a5933393614585565b63d9b3955760e01b6000523360045260246000fd5b346102ad5760603660031901126102ad5761145a612ac4565b6044356001600160401b0381116102ad576020916114896114826102a5933690600401612ad4565b3691612820565b6040519161149785846127e4565b6000835233600435613fff565b346102ad5760203660031901126102ad576114da6114c36004356134e3565b61089660405193849360e0855260e0850190612cb1565b916020840190612d95565b346102ad5760803660031901126102ad576114fe612721565b611506612737565b9061150f61274d565b6064356001600160a01b03811691908290036102ad57600080516020615ec0833981519152549060ff8260401c1615946001600160401b0383168015908161179d575b6001149081611793575b15908161178a575b506117795767ffffffffffffffff198316600117600080516020615ec0833981519152556000946020938761174c575b50600080516020615ea083398151915280546001600160a01b03199081166001600160a01b03938416908117909255600080516020615e40833981519152805482169484169485179055600080516020615ee08339815191528054821695909316948517909255600080516020615e008339815191528054909216909517905560405163095ea7b360e01b815260048101919091528419602482015293909284916044918391905af190811561172557600092602092611731575b50600080516020615ea08339815191525460405163095ea7b360e01b81526004810192909252831960248301529092839160449183916001600160a01b03165af18015611725576116f6575b506116a257005b60ff60401b19600080516020615ec08339815191525416600080516020615ec0833981519152557fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2602060405160018152a1005b6117179060203d60201161171e575b61170f81836127e4565b8101906133b5565b508161169b565b503d611705565b6040513d6000823e3d90fd5b61174790833d851161171e5761170f81836127e4565b61164f565b68ffffffffffffffffff19166801000000000000000117600080516020615ec08339815191525587611594565b63f92ee8a960e01b60005260046000fd5b90501587611564565b303b15915061155c565b879150611552565b346102ad5760803660031901126102ad576117be612ac4565b6044356001600160401b0381116102ad576117dd903690600401612ad4565b606435926001600160401b0384116102ad5761180e6102a5936118066020963690600401612857565b933691612820565b9033600435613fff565b346102ad5760203660031901126102ad576004356001600160401b0381116102ad576102a5610af76020923690600401612b01565b346102ad5760003660031901126102ad57600080516020615e60833981519152546040516001600160a01b039091168152602090f35b346102ad5760c03660031901126102ad5760043561189f612ac4565b906118a861274d565b916064356001600160401b0381116102ad576118c8903690600401612ad4565b93906084356001600160401b0381116102ad576118e9903690600401612857565b9460a4356001600160401b0381116102ad57611909903690600401612857565b6119a261191585613e7e565b9161199c611924368688612820565b602081519101208a5160208c01206040519060208201927f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a81184528c604084015260ff8c16606084015260018060a01b038b169788608085015260a084015260c083015260e082015260e0815261119b610100826127e4565b86613f42565b156119c15760206102a5888888886119bb36898b612820565b92613fff565b6394ab6c0760e01b60005260045260246000fd5b346102ad5760403660031901126102ad576119ee612ac4565b6102a5602091604051611a0184826127e4565b600081526040519161149785846127e4565b346102ad5760003660031901126102ad576108966040805190611a3681836127e4565b60018252603160f81b6020830152519182916020835260208301906126e0565b346102ad5760003660031901126102ad577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163003611aaf576020604051600080516020615e608339815191528152f35b63703e46dd60e11b60005260046000fd5b60403660031901126102ad57611ad4612721565b6024356001600160401b0381116102ad57611af3903690600401612857565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016308114908115611d5b575b50611aaf57600080516020615e008339815191525460408051909391611b9d916020916001600160a01b0316611b5e87836127e4565b6012825271736c632e67656e6572616c2e64616f534c4360701b838301528651808095819463d502db9760e01b835286600484015260248301906126e0565b03915afa908115611d5057600091611d16575b506001600160a01b03163303611d025791516352d1902d60e01b81526001600160a01b0383169290602081600481875afa60009181611cce575b50611c045783634c9c8ce360e01b60005260045260246000fd5b80600080516020615e60833981519152859203611cba5750813b15611ca657600080516020615e6083398151915280546001600160a01b031916821790557fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a2815115611c8c5760008083602061001b95519101845af4611c86613ae5565b91615c98565b505034611c9557005b63b398979f60e01b60005260046000fd5b634c9c8ce360e01b60005260045260246000fd5b632a87526960e21b60005260045260246000fd5b90916020823d602011611cfa575b81611ce9602093836127e4565b810103126107675750519085611bea565b3d9150611cdc565b628ff8e960e21b6000523360045260246000fd5b90506020813d602011611d48575b81611d31602093836127e4565b810103126102ad57611d4290613cb7565b84611bb0565b3d9150611d24565b84513d6000823e3d90fd5b600080516020615e60833981519152546001600160a01b03161415905083611b28565b346102ad5760003660031901126102ad576108966040805190611da181836127e4565b600e82526d06d6f64653d74696d657374616d760941b6020830152519182916020835260208301906126e0565b346102ad57611ddc366129cc565b92611dec84838584969596613b6e565b611df581613336565b6008811015611eb4571580611e9a575b15611e82576020611e1886868686613b6e565b6040611e25603b83613d22565b506000828152600080516020615e20833981519152845281902080546001600160f81b0316600160f81b17905580518281527f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c908490a151908152f35b638fe5d8a960e01b6000526004523360245260446000fd5b506001600160a01b03611eac82612fa5565b163314611e05565b634e487b7160e01b600052602160045260246000fd5b346102ad5760403660031901126102ad5760206004356009611f27611eed612737565b6000848152600080516020615e80833981519152865260408082206001600160a01b03909316808352949092016001016020522054151590565b918215611f3b575b50506040519015158152f35b611f719250600052600080516020615e808339815191528352600b60406000200160019160005201602052604060002054151590565b8280611f2f565b346102ad5760203660031901126102ad57611f94600435613336565b6040516008821015611eb4576020918152f35b346102ad5760003660031901126102ad5760206102a5613275565b346102ad5760603660031901126102ad57611fdb612721565b602435611fe78261322f565b54611ff460443583612dfa565b9080821161233e575b50808211612337575b6120108282613268565b9261201a84612875565b9361202860405195866127e4565b808552612037601f1991612875565b0160005b8181106122d9575050825b82811061215157846040518091602082016020835281518091526040830190602060408260051b8601019301916000905b82821061208657505050500390f35b919360019193955060206121418192603f198a8203018652885190858060a01b0382511681528382015184820152604082015160408201526101206121066120f46120e2606086015161014060608701526101408601906126e0565b60808601518582036080870152612a3b565b60a085015184820360a08601526126e0565b9260c081015161211581612a78565b60c084015260e081015160e0840152610100810151610100840152015190610120818403910152612a82565b9601920192018594939192612077565b600161215c8361322f565b0181600052602052604060002060018060a01b03815416906001810154906002810154906004810190604051808360208295549384815201906000526020600020926000905b8082106122bd5750506121b7925003836127e4565b600661222460ff60078401541692600881015494600982015496600a8301986040519a6121e38c612777565b8b5260208b015260408a015260405161220a816122038160038701612f22565b03826127e4565b60608a015260808901526122036040518094819301612f22565b60a086015261223281612a78565b60c085015260e08401526101008301526040519081602082549182815201916000526020600020906000905b8082106122a557505050918161227c61229e936001969503826127e4565b61012082015261228c8784613268565b90612297828a612ff0565b5287612ff0565b5001612046565b9091926001602081928654815201940192019061225e565b91600191935060208291865481520194019201859293916121a2565b6020906040516122e881612777565b600081526000838201526000604082015260608082015260606080820152606060a0820152600060c0820152600060e0820152600061010082015260606101208201528282890101520161203b565b5080612006565b905083611ffd565b346102ad5760003660031901126102ad5760206040517f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a8118152f35b346102ad5760003660031901126102ad57600080516020615ea0833981519152546040516001600160a01b039091168152602090f35b346102ad5760203660031901126102ad5760206102a5600435613206565b60206102a56123e3366129cc565b92919091613004565b346102ad57612410601061240b612402366129cc565b92919091613b6e565b613d22565b50634844252360e11b60005260046000fd5b346102ad5760003660031901126102ad57600080516020615e00833981519152546040516001600160a01b039091168152602090f35b346102ad5760803660031901126102ad57612471612721565b5061247a612737565b506064356001600160401b0381116102ad5761249a903690600401612857565b50604051630a85bd0160e11b8152602090f35b346102ad5760203660031901126102ad5760206124cb600435612fa5565b6040516001600160a01b039091168152f35b346102ad5760003660031901126102ad5760405160007f7c712897014dbe49c045ef1299aa2d5f9e67e48eea4403efa21f1e0f3ac0cb005461251e81612ee8565b80845290600181169081156125d8575060011461255a575b61089683612546818503826127e4565b6040519182916020835260208301906126e0565b7f7c712897014dbe49c045ef1299aa2d5f9e67e48eea4403efa21f1e0f3ac0cb0060009081527fda13dda7583a39a3cd73e8830529c760837228fa4683752c823b17e10548aad5939250905b8082106125be57509091508101602001612546612536565b9192600181602092548385880101520191019092916125a6565b60ff191660208086019190915291151560051b840190910191506125469050612536565b346102ad5760003660031901126102ad5760206102a5612e1d565b346102ad5760003660031901126102ad5760206102a5612635613862565b61263d612e1d565b90612dfa565b346102ad5760203660031901126102ad576004359063ffffffff60e01b82168092036102ad57602091631da32c4160e21b8114908115612685575b5015158152f35b6366defe7760e11b8114915081156126cf575b81156126be575b81156126ad575b508361267e565b6301ffc9a760e01b149050836126a6565b630271189760e51b8114915061269f565b6332a2ad4360e11b81149150612698565b919082519283825260005b84811061270c575050826000602080949584010152601f8019910116010190565b806020809284010151828286010152016126eb565b600435906001600160a01b03821682036102ad57565b602435906001600160a01b03821682036102ad57565b604435906001600160a01b03821682036102ad57565b35906001600160a01b03821682036102ad57565b61014081019081106001600160401b0382111761064857604052565b602081019081106001600160401b0382111761064857604052565b608081019081106001600160401b0382111761064857604052565b60c081019081106001600160401b0382111761064857604052565b90601f801991011681019081106001600160401b0382111761064857604052565b6001600160401b03811161064857601f01601f191660200190565b92919261282c82612805565b9161283a60405193846127e4565b8294818452818301116102ad578281602093846000960137010152565b9080601f830112156102ad5781602061287293359101612820565b90565b6001600160401b0381116106485760051b60200190565b9080601f830112156102ad5781356128a381612875565b926128b160405194856127e4565b81845260208085019260051b8201019283116102ad57602001905b8282106128d95750505090565b602080916128e684612763565b8152019101906128cc565b9080601f830112156102ad57813561290881612875565b9261291660405194856127e4565b81845260208085019260051b8201019283116102ad57602001905b82821061293e5750505090565b8135815260209182019101612931565b9080601f830112156102ad57813561296581612875565b9261297360405194856127e4565b81845260208085019260051b820101918383116102ad5760208201905b83821061299f57505050505090565b81356001600160401b0381116102ad576020916129c187848094880101612857565b815201910190612990565b60806003198201126102ad576004356001600160401b0381116102ad57816129f69160040161288c565b916024356001600160401b0381116102ad5782612a15916004016128f1565b91604435906001600160401b0382116102ad57612a349160040161294e565b9060643590565b906020808351928381520192019060005b818110612a595750505090565b82516001600160a01b0316845260209384019390920191600101612a4c565b60041115611eb457565b906020808351928381520192019060005b818110612aa05750505090565b8251845260209384019390920191600101612a93565b6008811015611eb457602452565b6024359060ff821682036102ad57565b9181601f840112156102ad578235916001600160401b0383116102ad57602083818601950101116102ad57565b91906020838203126102ad57604051612b1981612793565b80938035906001600160401b0382116102ad570182601f820112156102ad57803590612b4482612875565b93612b5260405195866127e4565b82855260208086019360051b830101918183116102ad5760208101935b838510612b7e57505050505052565b84356001600160401b0381116102ad5782016080818503601f1901126102ad5760405191612bab836127ae565b602082013560028110156102ad578352612bc760408301612763565b60208401526060820135926001600160401b0384116102ad57608083612bf4886020809881980101612857565b604084015201356060820152815201940193612b6f565b906002821015611eb45752565b90602081019151916020825282518091526040820191602060408360051b8301019401926000915b838310612c4f57505050505090565b9091929394602080600192603f19858203018652885190612c71818351612c0b565b848060a01b03838301511683820152606080612c9c60408501516080604086015260808501906126e0565b93015191015297019301930191939290612c40565b91909160c0830192815181526020820151602082015260408201519360c060408301528451809152602060e0830195019060005b818110612d7f575050506060820151938181036060830152845180825260208201906020808260051b8501019701916000905b828210612d5157505050505060a0612d40612872949560808501518482036080860152612a3b565b9201519060a0818403910152612a3b565b9091929397602080612d6f600193601f198d82030186528851612c18565b9a96019493919091019101612d18565b8251875260209687019690920191600101612ce5565b65ffffffffffff60a08092600180831b03815116855282602082015116602086015263ffffffff6040820151166040860152606081015115156060860152608081015115156080860152015116910152565b346102ad5760206102a5612402366129cc565b91908201809211612e0757565b634e487b7160e01b600052601160045260246000fd5b600080516020615e0083398151915254604051612ea391602091906001600160a01b0316612e4c6060836127e4565b602482527f736c632e676f7665726e616e63652e6578656375746f7273566f74696e67506583830152631c9a5bd960e21b6040830152604051808095819462498bff60e81b835286600484015260248301906126e0565b03915afa90811561172557600091612eb9575090565b90506020813d602011612ee0575b81612ed4602093836127e4565b810103126102ad575190565b3d9150612ec7565b90600182811c92168015612f18575b6020831014612f0257565b634e487b7160e01b600052602260045260246000fd5b91607f1691612ef7565b60009291815491612f3283612ee8565b8083529260018116908115612f885750600114612f4e57505050565b60009081526020812093945091925b838310612f6e575060209250010190565b600181602092949394548385870101520191019190612f5d565b915050602093945060ff929192191683830152151560051b010190565b6000908152600080516020615e2083398151915260205260409020546001600160a01b031690565b805115612fda5760200190565b634e487b7160e01b600052603260045260246000fd5b8051821015612fda5760209160051b010190565b9290916130119284613b6e565b90602090613020603084613d22565b506000838152600080516020615e2083398151915283526040808220805460ff60f01b1916600160f01b179055848252600080516020615e808339815191528452902054600190613079906001600160a01b031661322f565b0183600052600080516020615e8083398151915283526001604060002001546000528252604060002090600882015480156131f55784600052600080516020615e80833981519152845260066040600020019060005283526040600020906130e760018060a01b0391612fcd565b511681549060005b82811061313557505050509060077f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f9201600360ff19825416179055604051838152a190565b60ff6131418286613d69565b505416908661319c6131538388613d69565b505460081c6001600160a01b03169361316c8489613d69565b506131b5600261317c878c613d69565b50015491604051978895869563e355396d60e01b87526004870190612c0b565b6024850152608060448501526001608485019101612f22565b90606483015203816000875af1918215611725576001926131d8575b50016130ef565b6131ee90883d8a1161171e5761170f81836127e4565b50386131d1565b63039f249b60e61b60005260046000fd5b600052600080516020615e2083398151915260205265ffffffffffff60406000205460a01c1690565b6001600160a01b031660009081527fb93e2841340255f69de4f9300770e3cc1894dc081e8bf6d34a78e9ac897c79046020526040902090565b91908203918211612e0757565b6132ea602060018060a01b03600080516020615e0083398151915254166040908151916132a281846127e4565b601a83527f736c632e676f7665726e616e63652e766f74696e6744656c61790000000000008484015251808095819462498bff60e81b835286600484015260248301906126e0565b03915afa60009181613302575b506128725750600090565b9091506020813d60201161332e575b8161331e602093836127e4565b810103126102ad575190386132f7565b3d9150613311565b6000818152600080516020615e8083398151915260205260409020600b810154600390910154111561337e5761336b81613d85565b6133785761287290613db0565b50600490565b50600390565b6040516133af816133a16020820194602086526040830190612c18565b03601f1981018352826127e4565b51902090565b908160209103126102ad575180151581036102ad5790565b604051906133da826127c9565b606060a083600081526000602082015282604082015282808201528260808201520152565b6040519061340c826127c9565b600060a0838281528260208201528260408201528260608201528260808201520152565b906040519161343e83612793565b8281549161344b83612875565b9261345960405194856127e4565b808452602084019160005260206000206000925b82841061347b575050505052565b60405190613488826127ae565b82549060ff8216906002821015611eb4578360039360209360019652858060a01b039060081c16838201526040516134c68161220381898b01612f22565b60408201526002860154606082015281520192019301929061346d565b906134ec6133cd565b506134f56133ff565b5081600052600080516020615e808339815191526020526040600020916001613525818060a01b0385541661322f565b0160018401546000526020526004604060002001805461354481612875565b9161355260405193846127e4565b818352601f1961356183612875565b01366020850137600886019060005b838110613724575050505060028401549360038101549160048201906009830192604051809485916020825491828152019160005260206000209060005b81811061370b57505050600b92916135c79103866127e4565b01936040518086602082985493848152019060005260206000209260005b8181106136f25750506135fa925003866127e4565b60405197613607896127c9565b885260208801526040870152805461361e81612875565b9161362c60405193846127e4565b818352602083019060005260206000206000915b8383106136d557505050506060860152608085015260a0840152600052600080516020615e2083398151915260205260406000209165ffffffffffff60016040519461368b866127c9565b8054828060a01b0381168752838160a01c16602088015263ffffffff8160d01c16604088015260ff8160f01c161515606088015260f81c1515608087015201541660a08401529190565b6001602081926136e485613430565b815201920192019190613640565b845483526001948501948a9450602090930192016135e5565b82548452889450602090930192600192830192016135ae565b8060406137336001938561384a565b905460039190911b1c60a084901b8490031660009081526020869052205461375b8288612ff0565b5201613570565b600080516020615e00833981519152546040516137e591602091906001600160a01b03166137916060836127e4565b602182527f736c632e676f7665726e616e63652e6578656375746f72735468726573686f6c83830152601960fa1b6040830152604051808095819462498bff60e81b835286600484015260248301906126e0565b03915afa90811561172557600091613818575b50606481116138045790565b635fed39e960e01b60005260045260246000fd5b906020823d602011613842575b81613832602093836127e4565b81010312610767575051386137f8565b3d9150613825565b8054821015612fda5760005260206000200190600090565b600080516020615e0083398151915254604051612ea391602091906001600160a01b03166138916060836127e4565b602382527f736c632e676f7665726e616e63652e6e65757472616c73566f74696e6750657283830152621a5bd960ea1b6040830152604051808095819462498bff60e81b835286600484015260248301906126e0565b600052600080516020615e2083398151915260205265ffffffffffff6001604060002001541690565b81810292918115918404141715612e0757565b81811061392e575050565b60008155600101613923565b90600160401b81116106485781549181815582821061395857505050565b82600302926003840403612e075781600302916003830403612e0757600052602060002091820191015b81811061398d575050565b80600060039255600181016139a28154612ee8565b90816139b8575b50506000600282015501613982565b81601f600093116001146139d05750555b38806139a9565b818352602083206139ec91601f0160051c810190600101613923565b80825281602081209155556139c9565b906002811015611eb45760ff80198354169116179055565b8054610100600160a81b03191660089290921b610100600160a81b0316919091179055565b9190601f8111613a4857505050565b613a74926000526020600020906020601f840160051c83019310613a76575b601f0160051c0190613923565b565b9091508190613a67565b80600052600080516020615e2083398151915260205265ffffffffffff60406000205460a01c1690600052600080516020615e2083398151915260205263ffffffff60406000205460d01c160165ffffffffffff8111612e075765ffffffffffff1690565b3d15613b10573d90613af682612805565b91613b0460405193846127e4565b82523d6000602084013e565b606090565b9080602083519182815201916020808360051b8301019401926000915b838310613b4157505050505090565b9091929394602080613b5f600193601f1986820301875289516126e0565b97019301930191939290613b32565b92906133af91613bbb613ba994604051958694613b97602087019960808b5260a0880190612a3b565b868103601f1901604088015290612a82565b848103601f1901606086015290613b15565b90608083015203601f1981018352826127e4565b600080516020615e0083398151915254604080519091613c47916020916001600160a01b0316613bff85836127e4565b8282527f736c632e676f7665726e616e63652e6e65757472616c735468726573686f6c64838301528451808095819462498bff60e81b835286600484015260248301906126e0565b03915afa918215613cad5750600091613c7b575b5060648111613c675790565b63066230b760e31b60005260045260246000fd5b906020823d602011613ca5575b81613c95602093836127e4565b8101031261076757505138613c5b565b3d9150613c88565b513d6000823e3d90fd5b51906001600160a01b03821682036102ad57565b80151580613d17575b15613d035780613ce5600192612a78565b613cee81612a78565b14613cfb57612872613762565b612872613bcf565b632f13130560e11b60005260045260246000fd5b506002811115613cd4565b90613d2c82613336565b916008831015611eb45781600160ff85161b1615613d4957505090565b6331b75e4d60e01b600052600452613d6082612ab6565b60445260646000fd5b8054821015612fda576000526003602060002091020190600090565b6000908152600080516020615e80833981519152602052604090206009810154600390910154111590565b80600052600080516020615e2083398151915260205260406000205460ff8160f01c16613e775760f81c613e7157613de781613206565b8015613e5c5765ffffffffffff421680911015613e5557613e0782613a80565b10613e125750600190565b613e1b816159b3565b158015613e45575b15613e2e5750600390565b613e37906138e7565b613e4057600490565b600590565b50613e4f81613d85565b15613e23565b5050600090565b50636ad0607560e01b60005260045260246000fd5b50600290565b5050600790565b6001600160a01b031660009081527f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb006020526040902080546001810190915590565b604290613ecb615cde565b613ed3615d48565b6040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a08152613f2460c0826127e4565b519020906040519161190160f01b8352600283015260228201522090565b9190823b613f7d5790613f5491615799565b50613f5e81612a78565b159182613f6a57505090565b6001600160a01b03918216911614919050565b916000926133a1613fb485946040519283916020830195630b135d3f60e11b875260248401526040604484015260648301906126e0565b51915afa613fc0613ae5565b81613ff1575b81613fcf575090565b80516020808301935090820191909103126102ad5751630b135d3f60e11b1490565b905060208151101590613fc6565b909360029261400e8484613d22565b5061401883613206565b506000838152600080516020615e80833981519152602052604090205460019061404a906001600160a01b031661322f565b0183600052600080516020615e808339815191526020526001604060002001546000526020526040600020936000602060018060a01b03600080516020615e40833981519152541698602460405180948193630debfda360e41b835260018060a01b03169c8d60048401525af1908115611725576000916144f4575b50156144df5760ff6007860182815460018482166140e381612a78565b14806144ce575b6144b3575b50505416906140fd82612a78565b810361449f575082600052600080516020615e8083398151915260205261413b86600960406000200160019160005201602052604060002054151590565b8015614462575b61444d5760ff1692600184036144205782600052600080516020615e80833981519152602052614179866009604060002001615926565b505b6000838152600080516020615e8083398151915260205260409020600b81015460039091015411156143be575b506000828152600080516020615e80833981519152602052604090206009810154600390910154111561428b575b805161422f57506142277fb8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda49360405193849384526020840152600160408401526080606084015260808301906126e0565b0390a2600190565b6142279061427d7fe2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb871295604051958695865260208601526001604086015260a0606086015260a08501906126e0565b9083820360808501526126e0565b6000828152600080516020615e808339815191526020526040902060018181015491546142c0906001600160a01b031661322f565b01816000526020526040600020906040908151916142de81846127e4565b60018352601f19810190813660208601376000878152600080516020615e80833981519152602052819020546001600160a01b031661431c85612fcd565b5280519261432a82856127e4565b6001845261433b8360208601614568565b6009860154600019810196908711612e0757612203836143ab936143b89960039651916020830152828201528181526143756060826127e4565b61437e88612fcd565b5261438887612fcd565b5080519561439682886127e4565b60018752366020880137518094819301612f22565b6020815191012092613004565b506141d6565b60406144047f3f3410c2c5574ce877ee7a73e464b358cf944acfb041e336f618574d1f3e332d92600361044260018060a01b038354169261220386518094819301612f22565b5061440e8161500f565b8151908582526020820152a1386141a8565b82600052600080516020615e8083398151915260205261444786600b604060002001615926565b5061417b565b85632503cc0160e01b60005260045260246000fd5b5082600052600080516020615e8083398151915260205261449a86600b60406000200160019160005201602052604060002054151590565b614142565b631101968160e11b600052610d9081612a78565b8319161781556144c2866159b3565b600888015582386140ef565b506144d8886159b3565b15156140ea565b866328dfb73560e21b60005260045260246000fd5b61450d915060203d60201161171e5761170f81836127e4565b386140c6565b908051603481106145605760131981830101516001600160b01b03191669dc8f8d908f908c9a8dc360b01b0161456057614552916029198201906157d5565b9015918215613f6a57505090565b505050600190565b60005b82811061457757505050565b60608282015260200161456b565b949392909461459c82516020840120848884613b6e565b958151815190818114801590614844575b801561483c575b61481f57505086600052600080516020615e2083398151915260205265ffffffffffff60406000205460a01c166147f3576145fe6145f0613275565b65ffffffffffff4216612dfa565b9361460a612635613862565b6000898152600080516020615e208339815191526020526040902080546001600160a01b0319166001600160a01b03891617815590929065ffffffffffff87116147d957805463ffffffff85116147bf5769ffffffffffffffffffff60a01b191660a088901b65ffffffffffff60a01b161760d085901b63ffffffff60d01b1617905583519061470b906146fd6146d56146bc6146a686612875565b956146b460405197886127e4565b808752612875565b966146cf6020870198601f190189614568565b8a612dfa565b966040519a8d8c5260018060a01b031660208c015261012060408c01526101208b0190612a3b565b9089820360608b0152612a82565b90878203608089015251808252602082019160208260051b82010194926000915b8383106147925750505050509261478d926147748388979496887f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e09a980360a0890152613b15565b9260c086015260e08501528382036101008501526126e0565b0390a1565b90919293956020806147b0600193601f198682030187528a516126e0565b9801930193019193929061472c565b846306dfcc6560e41b600052602060045260245260446000fd5b866306dfcc6560e41b600052603060045260245260446000fd5b6148148761480081613336565b906331b75e4d60e01b600052600452612ab6565b600060445260646000fd5b855190630447b05d60e41b60005260045260245260445260646000fd5b5080156145b4565b5085518114156145ad565b6040517fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1025481600061488083612ee8565b808352926001811690811561492357506001146148a4575b612872925003826127e4565b507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d102600090815290917f42ad5d3e1f2e6e70edcf6d991b8a3023d3fca8047a131592f9edb9fd9b89d57d5b81831061490757505090602061287292820101614898565b60209193508060019154838588010152019101909183926148ef565b6020925061287294915060ff191682840152151560051b820101614898565b6040517fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1035481600061497383612ee8565b8083529260018116908115614923575060011461499657612872925003826127e4565b507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d103600090815290917f5f9ce34815f8e11431c7bb75a8e6886a91478f7ffc1dbb0a98dc240fddd76b755b8183106149f957505090602061287292820101614898565b60209193508060019154838588010152019101909183926149e1565b919091828114614af257614a298354612ee8565b6001600160401b03811161064857614a4b81614a458454612ee8565b84613a39565b600093601f8211600114614a8c57614a7d9293948291600092614a815750508160011b916000199060031b1c19161790565b9055565b015490503880610512565b845260208085208386529085209094601f198316815b818110614ada57509583600195969710614ac1575b505050811b019055565b015460001960f88460031b161c19169055388080614ab7565b9192600180602092868b015481550194019201614aa2565b509050565b818114614b8757815491614b0b838361393a565b60005260206000209060005260206000206000915b838310614b2d5750505050565b600380826001938503614b47575b01920192019190614b20565b614b5560ff825416866139fc565b614b6a848060a01b03825460081c1686613a14565b614b78848201858701614a15565b60028101546002860155614b3b565b5050565b9060058201918160005282602052604060002054801515600014614d2757600019810191818311612e07576004019182546000198101908111612e0757808203614cd1575b50505080548015614cbb576000190190614bea828261384a565b614ca5578054906000815581614c10575b50505560005260205260006040812055600190565b81600302916003830403612e0757600090815260208120918201915b828110614c395750614bfb565b8082600392558260018201614c4e8154612ee8565b80614c63575b50505082600282015501614c2c565b601f8111600114614c795750555b823880614c54565b81835260208320614c9591601f0160051c810190600101613923565b8082528160208120915555614c71565b634e487b7160e01b600052600060045260246000fd5b634e487b7160e01b600052603160045260246000fd5b614cde614ce6918561384a565b50918461384a565b614ca557818181614d0294610af79403614d17575b5050613430565b60005283602052604060002055388080614bd0565b614d2091614af7565b3881614cfb565b50505050600090565b906005820191836000528260205260406000205415600014614d2757600401908154600160401b81101561064857806001614d6e920184558361384a565b919091614ca557516020815191614d85838561393a565b01916000526020600020916000905b828210614db257505050505491600052602052604060002055600190565b805180516002811015611eb457614dc990866139fc565b6020810151614de1906001600160a01b031686613a14565b6001850160408201518051906001600160401b03821161064857614e09826104f08554612ee8565b602090601f8311600114614e665793602093614e458460019895606095600399600092614e5b5750508160011b916000199060031b1c19161790565b90555b0151600288015501940191019092614d94565b015190503880610512565b90601f1983169184600052816000209260005b818110614ebe575084606094600398946020989460019b988c9510614ea6575b505050811b019055614e48565b0151600019838b1b60f8161c19169055388080614e99565b92936020600181928786015181550195019301614e79565b909190613a745750615976565b6000198114612e075760010190565b91614efc3361322f565b805490614f0882614ee3565b90556001614fd7829482614f1b3361322f565b0184600052602052600960406000200196875497614f3889614ee3565b9055604080988151614f4a83826127e4565b868152601f198301918236602084013733614f6483612fcd565b52614fa3845193614f7586866127e4565b898552803660208701376000614f8a86612fcd565b52614f97865196876127e4565b89865260208601614568565b8b51908960208301528c8201528b8152614fbe6060826127e4565b614fc784612fcd565b52614fd183612fcd565b50614585565b6000818152600080516020615e8083398151915260205286812080543360a086901b8690039081169019909116179055959095200155565b6000818152600080516020615e808339815191526020526040902054600190615040906001600160a01b031661322f565b0181600052600080516020615e808339815191526020526001604060002001546000526020526040600020615081600482015461507b613bcf565b90615996565b82600052600080516020615e808339815191526020526002604060002001556000602060018060a01b03600080516020615e4083398151915254166004604051809481936301dffb4f60e31b83525af180156117255760009061515a575b6150ec915061507b613762565b82600052600080516020615e80833981519152602052600360406000200155600a8101918254600160401b8110156106485761513381600795600161514a9401815561384a565b819391549060031b91821b91600019901b19161790565b905501805460ff19166001179055565b506020813d602011615186575b81615174602093836127e4565b810103126102ad576150ec90516150df565b3d9150615167565b919091600090808252600080516020615e8083398151915260205260016151bf818060a01b0360408520541661322f565b01908252600080516020615e80833981519152602052600160408320015482526020526040812092600184015493841580615791575b61578a57341561572e575034840361571657600080516020615ea083398151915254604051630d0e30db60e41b815294906020908690600490829034906001600160a01b03165af194851561570b576152c5956156ec575b505b600080516020615e0083398151915254604080519093916001600160a01b03169060209061527d86826127e4565b601d81527f736c632e676f7665726e616e63652e6578656375746f727353686172650000008282015285518099819262498bff60e81b835284600484015260248301906126e0565b0381845afa9081156156235785916156b6575b6153339750602085516152eb87826127e4565b601c81527f736c632e676f7665726e616e63652e6e65757472616c73536861726500000000828201528651809a819262498bff60e81b835284600484015260248301906126e0565b0381845afa978815615677578698615681575b509060206153a49286519061535b88836127e4565b601c82527f736c632e676f7665726e616e63652e7472656173757279536861726500000000838301528751808096819462498bff60e81b835286600484015260248301906126e0565b03915afa918215615677578692615643575b506153ca826153c58a84612dfa565b612dfa565b606481036156315750606491826153f0816153e86153f79589613910565b049a87613910565b0494613910565b0495806155c5575b5081615546575b505083615414575b50509050565b600080516020615e0083398151915254815161548c9591602091906001600160a01b031661544285836127e4565b601b82527f736c632e67656e6572616c2e7472656173757279416464726573730000000000838301528451808099819463d502db9760e01b835286600484015260248301906126e0565b03915afa801561553a5783906154fb575b600080516020615ea083398151915254925163a9059cbb60e01b60208201526001600160a01b0391821660248201526044808201939093529182529394506154f393909250166154ee6064836127e4565b615c3d565b80388061540e565b506020853d602011615532575b81615515602093836127e4565b8101031261076a5761552a6154f39495613cb7565b85945061549d565b3d9150615508565b505051903d90823e3d90fd5b600080516020615ee0833981519152546001600160a01b031690813b156155c15784916155909183865180968195829463dcf2fc3960e01b84528a60048501526044840190612a3b565b90602483015203925af1801561553a579083911561540657816155b2916127e4565b6155bd578138615406565b5080fd5b8480fd5b600080516020615e40833981519152546001600160a01b031690813b1561562d5785916024839287519485938492630b32e9c760e31b845260048401525af1801561562357156153ff578461561c919592956127e4565b92386153ff565b84513d87823e3d90fd5b8580fd5b630bef6e1760e21b8752600452602486fd5b9091506020813d60201161566f575b8161565f602093836127e4565b8101031261562d575190386153b6565b3d9150615652565b85513d88823e3d90fd5b9097506020813d6020116156ae575b8161569d602093836127e4565b8101031261562d5751966020615346565b3d9150615690565b90506020873d6020116156e4575b816156d1602093836127e4565b810103126155c1576153339651906152d8565b3d91506156c4565b6157049060203d60201161171e5761170f81836127e4565b503861524d565b6040513d85823e3d90fd5b63bf08c10d60e01b8252600484905234602452604482fd5b600080516020615ea08339815191525490546040516323b872dd60e01b60208201526001600160a01b039182166024820152306044820152606480820188905281526152c5969261578592166154ee6084836127e4565b61524f565b5050509050565b5034156151f5565b81519190604183036157ca576157c392506020820151906060604084015193015160001a90615a4b565b9192909190565b505060009160029190565b9190825182118015615869575b6158405760018101808211612e075782118061584b575b158015908160011b9182046002141715612e075760280180602811612e07576158228284613268565b036158405761583092615aca565b90916001600160a01b0390911690565b505050600090600090565b50828101602001516001600160f01b03191661060f60f31b146157f9565b508181116157e2565b9060018201918160005282602052604060002054801515600014614d27576000198101818111612e07578254600019810191908211612e07578181036158ef575b50505080548015614cbb5760001901906158cd828261384a565b8154906000199060031b1b191690555560005260205260006040812055600190565b61590f6158ff615133938661384a565b90549060031b1c9283928661384a565b9055600052836020526040600020553880806158b3565b6000828152600182016020526040902054613e5557805490600160401b821015610648578261595f61513384600180960185558461384a565b905580549260005201602052604060002055600190565b80511561598557805190602001fd5b63d6bda27560e01b60005260046000fd5b6159a260648383615b84565b906128729260649109151590612dfa565b600052600080516020615e80833981519152602052604060002060048101805490600092600093600092600260078401930154935b8581106159f85750505050505090565b615a0e610af7615a08838561384a565b50613430565b8060005284602052604060002054908682101580615a42575b615a36575b50506001016159e8565b97509250600138615a2c565b50848211615a27565b91906fa2a8918ca85bafe22016d0b997e4df60600160ff1b038411615abe579160209360809260ff60009560405194855216868401526040830152606082015282805260015afa15611725576000516001600160a01b03811615615ab25790600090600090565b50600090600190600090565b50505060009160039190565b92909260018401808511612e0757831180615b66575b158015908160011b9182046002141715612e0757615b049060009492939495612dfa565b915b818310615b165750505060019190565b9092919360ff615b308160f81b6020888601015116615d8d565b16600f8111615b5a578160041b9180830460101490151715612e0757600191019401919290615b06565b50600094508493505050565b50808401602001516001600160f01b03191661060f60f31b14615ae0565b90916000198383099280830292838086109503948086039514615c195784831115615c005790829109816000038216809204600281600302188082026002030280820260020302808202600203028082026002030280820260020302809102600203029360018380600003040190848311900302920304170290565b82634e487b71600052156003026011186020526024601cfd5b505091508115615c27570490565b634e487b7160e01b600052601260045260246000fd5b906000602091828151910182855af115611725576000513d615c8f57506001600160a01b0381163b155b615c6e5750565b635274afe760e01b60009081526001600160a01b0391909116600452602490fd5b60011415615c67565b90615ca35750615976565b81511580615cd5575b615cb4575090565b639996b31560e01b60009081526001600160a01b0391909116600452602490fd5b50803b15615cac565b615ce661484f565b8051908115615cf6576020012090565b50507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100548015615d235790565b507fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47090565b615d50614942565b8051908115615d60576020012090565b50507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d101548015615d235790565b60f81c602f811180615df5575b15615da957602f190160ff1690565b6060811180615deb575b15615dc2576056190160ff1690565b6040811180615de1575b15615ddb576036190160ff1690565b5060ff90565b5060478110615dcc565b5060678110615db3565b50603a8110615d9a56feb93e2841340255f69de4f9300770e3cc1894dc081e8bf6d34a78e9ac897c79037c712897014dbe49c045ef1299aa2d5f9e67e48eea4403efa21f1e0f3ac0cb01b93e2841340255f69de4f9300770e3cc1894dc081e8bf6d34a78e9ac897c7901360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcb93e2841340255f69de4f9300770e3cc1894dc081e8bf6d34a78e9ac897c7905b93e2841340255f69de4f9300770e3cc1894dc081e8bf6d34a78e9ac897c7900f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00b93e2841340255f69de4f9300770e3cc1894dc081e8bf6d34a78e9ac897c7902a164736f6c634300081e000a";
|
|
2261
|
-
|
|
2262
|
-
type GovernanceConstructorParams =
|
|
2263
|
-
| [signer?: Signer]
|
|
2264
|
-
| ConstructorParameters<typeof ContractFactory>;
|
|
2265
|
-
|
|
2266
|
-
const isSuperArgs = (
|
|
2267
|
-
xs: GovernanceConstructorParams
|
|
2268
|
-
): xs is ConstructorParameters<typeof ContractFactory> => xs.length > 1;
|
|
2269
|
-
|
|
2270
|
-
export class Governance__factory extends ContractFactory {
|
|
2271
|
-
constructor(...args: GovernanceConstructorParams) {
|
|
2272
|
-
if (isSuperArgs(args)) {
|
|
2273
|
-
super(...args);
|
|
2274
|
-
} else {
|
|
2275
|
-
super(_abi, _bytecode, args[0]);
|
|
2276
|
-
}
|
|
2277
|
-
this.contractName = "Governance";
|
|
2278
|
-
}
|
|
2279
|
-
|
|
2280
|
-
override getDeployTransaction(
|
|
2281
|
-
overrides?: NonPayableOverrides & { from?: string }
|
|
2282
|
-
): Promise<ContractDeployTransaction> {
|
|
2283
|
-
return super.getDeployTransaction(overrides || {});
|
|
2284
|
-
}
|
|
2285
|
-
override deploy(overrides?: NonPayableOverrides & { from?: string }) {
|
|
2286
|
-
return super.deploy(overrides || {}) as Promise<
|
|
2287
|
-
Governance & {
|
|
2288
|
-
deploymentTransaction(): ContractTransactionResponse;
|
|
2289
|
-
}
|
|
2290
|
-
>;
|
|
2291
|
-
}
|
|
2292
|
-
override connect(runner: ContractRunner | null): Governance__factory {
|
|
2293
|
-
return super.connect(runner) as Governance__factory;
|
|
2294
|
-
}
|
|
2295
|
-
static readonly contractName: "Governance";
|
|
2296
|
-
|
|
2297
|
-
public readonly contractName: "Governance";
|
|
2298
|
-
|
|
2299
|
-
static readonly bytecode = _bytecode;
|
|
2300
|
-
static readonly abi = _abi;
|
|
2301
|
-
static createInterface(): GovernanceInterface {
|
|
2302
|
-
return new Interface(_abi) as GovernanceInterface;
|
|
2303
|
-
}
|
|
2304
|
-
static connect(address: string, runner?: ContractRunner | null): Governance {
|
|
2305
|
-
return new Contract(address, _abi, runner) as unknown as Governance;
|
|
2306
|
-
}
|
|
2307
|
-
}
|