@arbitrum/nitro-contracts 1.0.3-beta.0 → 1.0.3-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/contracts/@openzeppelin/contracts/access/Ownable.sol/Ownable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json +63 -0
- package/build/contracts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.json +24 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol/ERC1967Proxy.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol/ERC1967Proxy.json +80 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.json +56 -0
- package/build/contracts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.json +19 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.json +24 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.json +113 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.json +160 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +155 -0
- package/build/contracts/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol/UUPSUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol/UUPSUpgradeable.json +100 -0
- package/build/contracts/@openzeppelin/contracts/utils/Address.sol/Address.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/utils/Address.sol/Address.json +10 -0
- package/build/contracts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/utils/Context.sol/Context.json +10 -0
- package/build/contracts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.json +10 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json +63 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json +10 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json +50 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.json +194 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json +10 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json +10 -0
- package/build/contracts/src/bridge/Bridge.sol/Bridge.dbg.json +4 -0
- package/build/contracts/src/bridge/Bridge.sol/Bridge.json +650 -0
- package/build/contracts/src/bridge/IBridge.sol/IBridge.dbg.json +4 -0
- package/build/contracts/src/bridge/IBridge.sol/IBridge.json +538 -0
- package/build/contracts/src/bridge/IDelayedMessageProvider.sol/IDelayedMessageProvider.dbg.json +4 -0
- package/build/contracts/src/bridge/IDelayedMessageProvider.sol/IDelayedMessageProvider.json +43 -0
- package/build/contracts/src/bridge/IInbox.sol/IInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/IInbox.sol/IInbox.json +575 -0
- package/build/contracts/src/bridge/IOutbox.sol/IOutbox.dbg.json +4 -0
- package/build/contracts/src/bridge/IOutbox.sol/IOutbox.json +419 -0
- package/build/contracts/src/bridge/IOwnable.sol/IOwnable.dbg.json +4 -0
- package/build/contracts/src/bridge/IOwnable.sol/IOwnable.json +24 -0
- package/build/contracts/src/bridge/ISequencerInbox.sol/ISequencerInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/ISequencerInbox.sol/ISequencerInbox.json +651 -0
- package/build/contracts/src/bridge/Inbox.sol/Inbox.dbg.json +4 -0
- package/build/contracts/src/bridge/Inbox.sol/Inbox.json +1008 -0
- package/build/contracts/src/bridge/Messages.sol/Messages.dbg.json +4 -0
- package/build/contracts/src/bridge/Messages.sol/Messages.json +10 -0
- package/build/contracts/src/bridge/Outbox.sol/Outbox.dbg.json +4 -0
- package/build/contracts/src/bridge/Outbox.sol/Outbox.json +546 -0
- package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.json +814 -0
- package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.dbg.json +4 -0
- package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.json +10 -0
- package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.dbg.json +4 -0
- package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.json +669 -0
- package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.dbg.json +4 -0
- package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.json +386 -0
- package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.dbg.json +4 -0
- package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.json +34 -0
- package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.dbg.json +4 -0
- package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.json +10 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.dbg.json +4 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.json +77 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.dbg.json +4 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.json +69 -0
- package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.dbg.json +4 -0
- package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.json +10 -0
- package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.dbg.json +4 -0
- package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.json +10 -0
- package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.dbg.json +4 -0
- package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.json +144 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.dbg.json +4 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.json +10 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.dbg.json +4 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.json +40 -0
- package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.dbg.json +4 -0
- package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.json +10 -0
- package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.dbg.json +4 -0
- package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.json +82 -0
- package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.dbg.json +4 -0
- package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.json +561 -0
- package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.dbg.json +4 -0
- package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.json +655 -0
- package/build/contracts/src/mocks/InboxStub.sol/InboxStub.dbg.json +4 -0
- package/build/contracts/src/mocks/InboxStub.sol/InboxStub.json +588 -0
- package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.dbg.json +4 -0
- package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.json +188 -0
- package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.dbg.json +4 -0
- package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.json +160 -0
- package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.dbg.json +4 -0
- package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.json +870 -0
- package/build/contracts/src/mocks/Simple.sol/Simple.dbg.json +4 -0
- package/build/contracts/src/mocks/Simple.sol/Simple.json +242 -0
- package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.dbg.json +4 -0
- package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.json +30 -0
- package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.dbg.json +4 -0
- package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.json +720 -0
- package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.dbg.json +4 -0
- package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.json +669 -0
- package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.dbg.json +4 -0
- package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.json +286 -0
- package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.dbg.json +4 -0
- package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.json +67 -0
- package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.dbg.json +4 -0
- package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.json +165 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.json +57 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.json +10 -0
- package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.json +477 -0
- package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.json +135 -0
- package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.json +477 -0
- package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.json +477 -0
- package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.json +477 -0
- package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.json +477 -0
- package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.json +148 -0
- package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.json +148 -0
- package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.json +10 -0
- package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.json +193 -0
- package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.json +77 -0
- package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.json +324 -0
- package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.json +49 -0
- package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.json +378 -0
- package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.json +69 -0
- package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.json +306 -0
- package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.json +49 -0
- package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.json +380 -0
- package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.json +77 -0
- package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.json +24 -0
- package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.json +243 -0
- package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.json +544 -0
- package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.json +889 -0
- package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.json +68 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.json +1428 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.json +1309 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.json +1443 -0
- package/build/contracts/src/rollup/Node.sol/NodeLib.dbg.json +4 -0
- package/build/contracts/src/rollup/Node.sol/NodeLib.json +10 -0
- package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.json +1808 -0
- package/build/contracts/src/rollup/RollupCore.sol/RollupCore.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupCore.sol/RollupCore.json +1051 -0
- package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.json +343 -0
- package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.json +110 -0
- package/build/contracts/src/rollup/RollupLib.sol/RollupLib.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupLib.sol/RollupLib.json +10 -0
- package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.json +226 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.json +1578 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.json +1712 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.json +1697 -0
- package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.json +379 -0
- package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.json +435 -0
- package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.json +150 -0
- package/build/contracts/src/state/Deserialize.sol/Deserialize.dbg.json +4 -0
- package/build/contracts/src/state/Deserialize.sol/Deserialize.json +10 -0
- package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.dbg.json +4 -0
- package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.json +10 -0
- package/build/contracts/src/state/Instructions.sol/Instructions.dbg.json +4 -0
- package/build/contracts/src/state/Instructions.sol/Instructions.json +10 -0
- package/build/contracts/src/state/Machine.sol/MachineLib.dbg.json +4 -0
- package/build/contracts/src/state/Machine.sol/MachineLib.json +10 -0
- package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.dbg.json +4 -0
- package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.json +10 -0
- package/build/contracts/src/state/Module.sol/ModuleLib.dbg.json +4 -0
- package/build/contracts/src/state/Module.sol/ModuleLib.json +10 -0
- package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.dbg.json +4 -0
- package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.json +10 -0
- package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.dbg.json +4 -0
- package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.json +10 -0
- package/build/contracts/src/state/PcArray.sol/PcArrayLib.dbg.json +4 -0
- package/build/contracts/src/state/PcArray.sol/PcArrayLib.json +10 -0
- package/build/contracts/src/state/StackFrame.sol/StackFrameLib.dbg.json +4 -0
- package/build/contracts/src/state/StackFrame.sol/StackFrameLib.json +10 -0
- package/build/contracts/src/state/Value.sol/ValueLib.dbg.json +4 -0
- package/build/contracts/src/state/Value.sol/ValueLib.json +10 -0
- package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.dbg.json +4 -0
- package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.json +10 -0
- package/build/contracts/src/state/ValueStack.sol/ValueStackLib.dbg.json +4 -0
- package/build/contracts/src/state/ValueStack.sol/ValueStackLib.json +10 -0
- package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.json +603 -0
- package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.json +54 -0
- package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.json +84 -0
- package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.json +520 -0
- package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.dbg.json +4 -0
- package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.json +49 -0
- package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.json +18 -0
- package/package.json +5 -2
|
@@ -0,0 +1,1712 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "ERC20RollupUserLogic",
|
|
4
|
+
"sourceName": "src/rollup/RollupUserLogic.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"anonymous": false,
|
|
8
|
+
"inputs": [
|
|
9
|
+
{
|
|
10
|
+
"indexed": false,
|
|
11
|
+
"internalType": "address",
|
|
12
|
+
"name": "previousAdmin",
|
|
13
|
+
"type": "address"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"indexed": false,
|
|
17
|
+
"internalType": "address",
|
|
18
|
+
"name": "newAdmin",
|
|
19
|
+
"type": "address"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"name": "AdminChanged",
|
|
23
|
+
"type": "event"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"anonymous": false,
|
|
27
|
+
"inputs": [
|
|
28
|
+
{
|
|
29
|
+
"indexed": true,
|
|
30
|
+
"internalType": "address",
|
|
31
|
+
"name": "beacon",
|
|
32
|
+
"type": "address"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"name": "BeaconUpgraded",
|
|
36
|
+
"type": "event"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"anonymous": false,
|
|
40
|
+
"inputs": [
|
|
41
|
+
{
|
|
42
|
+
"indexed": true,
|
|
43
|
+
"internalType": "uint64",
|
|
44
|
+
"name": "nodeNum",
|
|
45
|
+
"type": "uint64"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"indexed": false,
|
|
49
|
+
"internalType": "bytes32",
|
|
50
|
+
"name": "blockHash",
|
|
51
|
+
"type": "bytes32"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"indexed": false,
|
|
55
|
+
"internalType": "bytes32",
|
|
56
|
+
"name": "sendRoot",
|
|
57
|
+
"type": "bytes32"
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"name": "NodeConfirmed",
|
|
61
|
+
"type": "event"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"anonymous": false,
|
|
65
|
+
"inputs": [
|
|
66
|
+
{
|
|
67
|
+
"indexed": true,
|
|
68
|
+
"internalType": "uint64",
|
|
69
|
+
"name": "nodeNum",
|
|
70
|
+
"type": "uint64"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"indexed": true,
|
|
74
|
+
"internalType": "bytes32",
|
|
75
|
+
"name": "parentNodeHash",
|
|
76
|
+
"type": "bytes32"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"indexed": true,
|
|
80
|
+
"internalType": "bytes32",
|
|
81
|
+
"name": "nodeHash",
|
|
82
|
+
"type": "bytes32"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"indexed": false,
|
|
86
|
+
"internalType": "bytes32",
|
|
87
|
+
"name": "executionHash",
|
|
88
|
+
"type": "bytes32"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"components": [
|
|
92
|
+
{
|
|
93
|
+
"components": [
|
|
94
|
+
{
|
|
95
|
+
"components": [
|
|
96
|
+
{
|
|
97
|
+
"internalType": "bytes32[2]",
|
|
98
|
+
"name": "bytes32Vals",
|
|
99
|
+
"type": "bytes32[2]"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"internalType": "uint64[2]",
|
|
103
|
+
"name": "u64Vals",
|
|
104
|
+
"type": "uint64[2]"
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"internalType": "struct GlobalState",
|
|
108
|
+
"name": "globalState",
|
|
109
|
+
"type": "tuple"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"internalType": "enum MachineStatus",
|
|
113
|
+
"name": "machineStatus",
|
|
114
|
+
"type": "uint8"
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"internalType": "struct ExecutionState",
|
|
118
|
+
"name": "beforeState",
|
|
119
|
+
"type": "tuple"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"components": [
|
|
123
|
+
{
|
|
124
|
+
"components": [
|
|
125
|
+
{
|
|
126
|
+
"internalType": "bytes32[2]",
|
|
127
|
+
"name": "bytes32Vals",
|
|
128
|
+
"type": "bytes32[2]"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"internalType": "uint64[2]",
|
|
132
|
+
"name": "u64Vals",
|
|
133
|
+
"type": "uint64[2]"
|
|
134
|
+
}
|
|
135
|
+
],
|
|
136
|
+
"internalType": "struct GlobalState",
|
|
137
|
+
"name": "globalState",
|
|
138
|
+
"type": "tuple"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"internalType": "enum MachineStatus",
|
|
142
|
+
"name": "machineStatus",
|
|
143
|
+
"type": "uint8"
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"internalType": "struct ExecutionState",
|
|
147
|
+
"name": "afterState",
|
|
148
|
+
"type": "tuple"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"internalType": "uint64",
|
|
152
|
+
"name": "numBlocks",
|
|
153
|
+
"type": "uint64"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"indexed": false,
|
|
157
|
+
"internalType": "struct Assertion",
|
|
158
|
+
"name": "assertion",
|
|
159
|
+
"type": "tuple"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"indexed": false,
|
|
163
|
+
"internalType": "bytes32",
|
|
164
|
+
"name": "afterInboxBatchAcc",
|
|
165
|
+
"type": "bytes32"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"indexed": false,
|
|
169
|
+
"internalType": "bytes32",
|
|
170
|
+
"name": "wasmModuleRoot",
|
|
171
|
+
"type": "bytes32"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"indexed": false,
|
|
175
|
+
"internalType": "uint256",
|
|
176
|
+
"name": "inboxMaxCount",
|
|
177
|
+
"type": "uint256"
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"name": "NodeCreated",
|
|
181
|
+
"type": "event"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"anonymous": false,
|
|
185
|
+
"inputs": [
|
|
186
|
+
{
|
|
187
|
+
"indexed": true,
|
|
188
|
+
"internalType": "uint64",
|
|
189
|
+
"name": "nodeNum",
|
|
190
|
+
"type": "uint64"
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
"name": "NodeRejected",
|
|
194
|
+
"type": "event"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"anonymous": false,
|
|
198
|
+
"inputs": [
|
|
199
|
+
{
|
|
200
|
+
"indexed": false,
|
|
201
|
+
"internalType": "address",
|
|
202
|
+
"name": "account",
|
|
203
|
+
"type": "address"
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"name": "Paused",
|
|
207
|
+
"type": "event"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"anonymous": false,
|
|
211
|
+
"inputs": [
|
|
212
|
+
{
|
|
213
|
+
"indexed": true,
|
|
214
|
+
"internalType": "uint64",
|
|
215
|
+
"name": "challengeIndex",
|
|
216
|
+
"type": "uint64"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"indexed": false,
|
|
220
|
+
"internalType": "address",
|
|
221
|
+
"name": "asserter",
|
|
222
|
+
"type": "address"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"indexed": false,
|
|
226
|
+
"internalType": "address",
|
|
227
|
+
"name": "challenger",
|
|
228
|
+
"type": "address"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"indexed": false,
|
|
232
|
+
"internalType": "uint64",
|
|
233
|
+
"name": "challengedNode",
|
|
234
|
+
"type": "uint64"
|
|
235
|
+
}
|
|
236
|
+
],
|
|
237
|
+
"name": "RollupChallengeStarted",
|
|
238
|
+
"type": "event"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"anonymous": false,
|
|
242
|
+
"inputs": [
|
|
243
|
+
{
|
|
244
|
+
"indexed": false,
|
|
245
|
+
"internalType": "bytes32",
|
|
246
|
+
"name": "machineHash",
|
|
247
|
+
"type": "bytes32"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"indexed": false,
|
|
251
|
+
"internalType": "uint256",
|
|
252
|
+
"name": "chainId",
|
|
253
|
+
"type": "uint256"
|
|
254
|
+
}
|
|
255
|
+
],
|
|
256
|
+
"name": "RollupInitialized",
|
|
257
|
+
"type": "event"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"anonymous": false,
|
|
261
|
+
"inputs": [
|
|
262
|
+
{
|
|
263
|
+
"indexed": false,
|
|
264
|
+
"internalType": "address",
|
|
265
|
+
"name": "account",
|
|
266
|
+
"type": "address"
|
|
267
|
+
}
|
|
268
|
+
],
|
|
269
|
+
"name": "Unpaused",
|
|
270
|
+
"type": "event"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"anonymous": false,
|
|
274
|
+
"inputs": [
|
|
275
|
+
{
|
|
276
|
+
"indexed": true,
|
|
277
|
+
"internalType": "address",
|
|
278
|
+
"name": "implementation",
|
|
279
|
+
"type": "address"
|
|
280
|
+
}
|
|
281
|
+
],
|
|
282
|
+
"name": "Upgraded",
|
|
283
|
+
"type": "event"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"anonymous": false,
|
|
287
|
+
"inputs": [
|
|
288
|
+
{
|
|
289
|
+
"indexed": true,
|
|
290
|
+
"internalType": "address",
|
|
291
|
+
"name": "implementation",
|
|
292
|
+
"type": "address"
|
|
293
|
+
}
|
|
294
|
+
],
|
|
295
|
+
"name": "UpgradedSecondary",
|
|
296
|
+
"type": "event"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"anonymous": false,
|
|
300
|
+
"inputs": [
|
|
301
|
+
{
|
|
302
|
+
"indexed": true,
|
|
303
|
+
"internalType": "address",
|
|
304
|
+
"name": "user",
|
|
305
|
+
"type": "address"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"indexed": false,
|
|
309
|
+
"internalType": "uint256",
|
|
310
|
+
"name": "initialBalance",
|
|
311
|
+
"type": "uint256"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"indexed": false,
|
|
315
|
+
"internalType": "uint256",
|
|
316
|
+
"name": "finalBalance",
|
|
317
|
+
"type": "uint256"
|
|
318
|
+
}
|
|
319
|
+
],
|
|
320
|
+
"name": "UserStakeUpdated",
|
|
321
|
+
"type": "event"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"anonymous": false,
|
|
325
|
+
"inputs": [
|
|
326
|
+
{
|
|
327
|
+
"indexed": true,
|
|
328
|
+
"internalType": "address",
|
|
329
|
+
"name": "user",
|
|
330
|
+
"type": "address"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"indexed": false,
|
|
334
|
+
"internalType": "uint256",
|
|
335
|
+
"name": "initialBalance",
|
|
336
|
+
"type": "uint256"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"indexed": false,
|
|
340
|
+
"internalType": "uint256",
|
|
341
|
+
"name": "finalBalance",
|
|
342
|
+
"type": "uint256"
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
"name": "UserWithdrawableFundsUpdated",
|
|
346
|
+
"type": "event"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"inputs": [],
|
|
350
|
+
"name": "VALIDATOR_AFK_BLOCKS",
|
|
351
|
+
"outputs": [
|
|
352
|
+
{
|
|
353
|
+
"internalType": "uint256",
|
|
354
|
+
"name": "",
|
|
355
|
+
"type": "uint256"
|
|
356
|
+
}
|
|
357
|
+
],
|
|
358
|
+
"stateMutability": "view",
|
|
359
|
+
"type": "function"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"inputs": [
|
|
363
|
+
{
|
|
364
|
+
"internalType": "address",
|
|
365
|
+
"name": "",
|
|
366
|
+
"type": "address"
|
|
367
|
+
}
|
|
368
|
+
],
|
|
369
|
+
"name": "_stakerMap",
|
|
370
|
+
"outputs": [
|
|
371
|
+
{
|
|
372
|
+
"internalType": "uint256",
|
|
373
|
+
"name": "amountStaked",
|
|
374
|
+
"type": "uint256"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"internalType": "uint64",
|
|
378
|
+
"name": "index",
|
|
379
|
+
"type": "uint64"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"internalType": "uint64",
|
|
383
|
+
"name": "latestStakedNode",
|
|
384
|
+
"type": "uint64"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"internalType": "uint64",
|
|
388
|
+
"name": "currentChallenge",
|
|
389
|
+
"type": "uint64"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"internalType": "bool",
|
|
393
|
+
"name": "isStaked",
|
|
394
|
+
"type": "bool"
|
|
395
|
+
}
|
|
396
|
+
],
|
|
397
|
+
"stateMutability": "view",
|
|
398
|
+
"type": "function"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"inputs": [
|
|
402
|
+
{
|
|
403
|
+
"internalType": "address",
|
|
404
|
+
"name": "stakerAddress",
|
|
405
|
+
"type": "address"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"internalType": "uint256",
|
|
409
|
+
"name": "tokenAmount",
|
|
410
|
+
"type": "uint256"
|
|
411
|
+
}
|
|
412
|
+
],
|
|
413
|
+
"name": "addToDeposit",
|
|
414
|
+
"outputs": [],
|
|
415
|
+
"stateMutability": "nonpayable",
|
|
416
|
+
"type": "function"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"inputs": [
|
|
420
|
+
{
|
|
421
|
+
"internalType": "address",
|
|
422
|
+
"name": "staker",
|
|
423
|
+
"type": "address"
|
|
424
|
+
}
|
|
425
|
+
],
|
|
426
|
+
"name": "amountStaked",
|
|
427
|
+
"outputs": [
|
|
428
|
+
{
|
|
429
|
+
"internalType": "uint256",
|
|
430
|
+
"name": "",
|
|
431
|
+
"type": "uint256"
|
|
432
|
+
}
|
|
433
|
+
],
|
|
434
|
+
"stateMutability": "view",
|
|
435
|
+
"type": "function"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"inputs": [],
|
|
439
|
+
"name": "baseStake",
|
|
440
|
+
"outputs": [
|
|
441
|
+
{
|
|
442
|
+
"internalType": "uint256",
|
|
443
|
+
"name": "",
|
|
444
|
+
"type": "uint256"
|
|
445
|
+
}
|
|
446
|
+
],
|
|
447
|
+
"stateMutability": "view",
|
|
448
|
+
"type": "function"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"inputs": [],
|
|
452
|
+
"name": "bridge",
|
|
453
|
+
"outputs": [
|
|
454
|
+
{
|
|
455
|
+
"internalType": "contract IBridge",
|
|
456
|
+
"name": "",
|
|
457
|
+
"type": "address"
|
|
458
|
+
}
|
|
459
|
+
],
|
|
460
|
+
"stateMutability": "view",
|
|
461
|
+
"type": "function"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"inputs": [],
|
|
465
|
+
"name": "chainId",
|
|
466
|
+
"outputs": [
|
|
467
|
+
{
|
|
468
|
+
"internalType": "uint256",
|
|
469
|
+
"name": "",
|
|
470
|
+
"type": "uint256"
|
|
471
|
+
}
|
|
472
|
+
],
|
|
473
|
+
"stateMutability": "view",
|
|
474
|
+
"type": "function"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"inputs": [],
|
|
478
|
+
"name": "challengeManager",
|
|
479
|
+
"outputs": [
|
|
480
|
+
{
|
|
481
|
+
"internalType": "contract IChallengeManager",
|
|
482
|
+
"name": "",
|
|
483
|
+
"type": "address"
|
|
484
|
+
}
|
|
485
|
+
],
|
|
486
|
+
"stateMutability": "view",
|
|
487
|
+
"type": "function"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"inputs": [
|
|
491
|
+
{
|
|
492
|
+
"internalType": "uint256",
|
|
493
|
+
"name": "challengeIndex",
|
|
494
|
+
"type": "uint256"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"internalType": "address",
|
|
498
|
+
"name": "winningStaker",
|
|
499
|
+
"type": "address"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"internalType": "address",
|
|
503
|
+
"name": "losingStaker",
|
|
504
|
+
"type": "address"
|
|
505
|
+
}
|
|
506
|
+
],
|
|
507
|
+
"name": "completeChallenge",
|
|
508
|
+
"outputs": [],
|
|
509
|
+
"stateMutability": "nonpayable",
|
|
510
|
+
"type": "function"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"inputs": [
|
|
514
|
+
{
|
|
515
|
+
"internalType": "bytes32",
|
|
516
|
+
"name": "blockHash",
|
|
517
|
+
"type": "bytes32"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"internalType": "bytes32",
|
|
521
|
+
"name": "sendRoot",
|
|
522
|
+
"type": "bytes32"
|
|
523
|
+
}
|
|
524
|
+
],
|
|
525
|
+
"name": "confirmNextNode",
|
|
526
|
+
"outputs": [],
|
|
527
|
+
"stateMutability": "nonpayable",
|
|
528
|
+
"type": "function"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"inputs": [],
|
|
532
|
+
"name": "confirmPeriodBlocks",
|
|
533
|
+
"outputs": [
|
|
534
|
+
{
|
|
535
|
+
"internalType": "uint64",
|
|
536
|
+
"name": "",
|
|
537
|
+
"type": "uint64"
|
|
538
|
+
}
|
|
539
|
+
],
|
|
540
|
+
"stateMutability": "view",
|
|
541
|
+
"type": "function"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"inputs": [
|
|
545
|
+
{
|
|
546
|
+
"internalType": "uint64",
|
|
547
|
+
"name": "nodeNum",
|
|
548
|
+
"type": "uint64"
|
|
549
|
+
}
|
|
550
|
+
],
|
|
551
|
+
"name": "countStakedZombies",
|
|
552
|
+
"outputs": [
|
|
553
|
+
{
|
|
554
|
+
"internalType": "uint256",
|
|
555
|
+
"name": "",
|
|
556
|
+
"type": "uint256"
|
|
557
|
+
}
|
|
558
|
+
],
|
|
559
|
+
"stateMutability": "view",
|
|
560
|
+
"type": "function"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"inputs": [
|
|
564
|
+
{
|
|
565
|
+
"internalType": "uint64",
|
|
566
|
+
"name": "nodeNum",
|
|
567
|
+
"type": "uint64"
|
|
568
|
+
}
|
|
569
|
+
],
|
|
570
|
+
"name": "countZombiesStakedOnChildren",
|
|
571
|
+
"outputs": [
|
|
572
|
+
{
|
|
573
|
+
"internalType": "uint256",
|
|
574
|
+
"name": "",
|
|
575
|
+
"type": "uint256"
|
|
576
|
+
}
|
|
577
|
+
],
|
|
578
|
+
"stateMutability": "view",
|
|
579
|
+
"type": "function"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"inputs": [
|
|
583
|
+
{
|
|
584
|
+
"internalType": "address[2]",
|
|
585
|
+
"name": "stakers",
|
|
586
|
+
"type": "address[2]"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"internalType": "uint64[2]",
|
|
590
|
+
"name": "nodeNums",
|
|
591
|
+
"type": "uint64[2]"
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"internalType": "enum MachineStatus[2]",
|
|
595
|
+
"name": "machineStatuses",
|
|
596
|
+
"type": "uint8[2]"
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"components": [
|
|
600
|
+
{
|
|
601
|
+
"internalType": "bytes32[2]",
|
|
602
|
+
"name": "bytes32Vals",
|
|
603
|
+
"type": "bytes32[2]"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"internalType": "uint64[2]",
|
|
607
|
+
"name": "u64Vals",
|
|
608
|
+
"type": "uint64[2]"
|
|
609
|
+
}
|
|
610
|
+
],
|
|
611
|
+
"internalType": "struct GlobalState[2]",
|
|
612
|
+
"name": "globalStates",
|
|
613
|
+
"type": "tuple[2]"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"internalType": "uint64",
|
|
617
|
+
"name": "numBlocks",
|
|
618
|
+
"type": "uint64"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"internalType": "bytes32",
|
|
622
|
+
"name": "secondExecutionHash",
|
|
623
|
+
"type": "bytes32"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"internalType": "uint256[2]",
|
|
627
|
+
"name": "proposedBlocks",
|
|
628
|
+
"type": "uint256[2]"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"internalType": "bytes32[2]",
|
|
632
|
+
"name": "wasmModuleRoots",
|
|
633
|
+
"type": "bytes32[2]"
|
|
634
|
+
}
|
|
635
|
+
],
|
|
636
|
+
"name": "createChallenge",
|
|
637
|
+
"outputs": [],
|
|
638
|
+
"stateMutability": "nonpayable",
|
|
639
|
+
"type": "function"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"inputs": [
|
|
643
|
+
{
|
|
644
|
+
"internalType": "address",
|
|
645
|
+
"name": "staker",
|
|
646
|
+
"type": "address"
|
|
647
|
+
}
|
|
648
|
+
],
|
|
649
|
+
"name": "currentChallenge",
|
|
650
|
+
"outputs": [
|
|
651
|
+
{
|
|
652
|
+
"internalType": "uint64",
|
|
653
|
+
"name": "",
|
|
654
|
+
"type": "uint64"
|
|
655
|
+
}
|
|
656
|
+
],
|
|
657
|
+
"stateMutability": "view",
|
|
658
|
+
"type": "function"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"inputs": [],
|
|
662
|
+
"name": "currentRequiredStake",
|
|
663
|
+
"outputs": [
|
|
664
|
+
{
|
|
665
|
+
"internalType": "uint256",
|
|
666
|
+
"name": "",
|
|
667
|
+
"type": "uint256"
|
|
668
|
+
}
|
|
669
|
+
],
|
|
670
|
+
"stateMutability": "view",
|
|
671
|
+
"type": "function"
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"inputs": [],
|
|
675
|
+
"name": "extraChallengeTimeBlocks",
|
|
676
|
+
"outputs": [
|
|
677
|
+
{
|
|
678
|
+
"internalType": "uint64",
|
|
679
|
+
"name": "",
|
|
680
|
+
"type": "uint64"
|
|
681
|
+
}
|
|
682
|
+
],
|
|
683
|
+
"stateMutability": "view",
|
|
684
|
+
"type": "function"
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"inputs": [],
|
|
688
|
+
"name": "firstUnresolvedNode",
|
|
689
|
+
"outputs": [
|
|
690
|
+
{
|
|
691
|
+
"internalType": "uint64",
|
|
692
|
+
"name": "",
|
|
693
|
+
"type": "uint64"
|
|
694
|
+
}
|
|
695
|
+
],
|
|
696
|
+
"stateMutability": "view",
|
|
697
|
+
"type": "function"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"inputs": [
|
|
701
|
+
{
|
|
702
|
+
"internalType": "uint64",
|
|
703
|
+
"name": "nodeNum",
|
|
704
|
+
"type": "uint64"
|
|
705
|
+
}
|
|
706
|
+
],
|
|
707
|
+
"name": "getNode",
|
|
708
|
+
"outputs": [
|
|
709
|
+
{
|
|
710
|
+
"components": [
|
|
711
|
+
{
|
|
712
|
+
"internalType": "bytes32",
|
|
713
|
+
"name": "stateHash",
|
|
714
|
+
"type": "bytes32"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"internalType": "bytes32",
|
|
718
|
+
"name": "challengeHash",
|
|
719
|
+
"type": "bytes32"
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"internalType": "bytes32",
|
|
723
|
+
"name": "confirmData",
|
|
724
|
+
"type": "bytes32"
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"internalType": "uint64",
|
|
728
|
+
"name": "prevNum",
|
|
729
|
+
"type": "uint64"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"internalType": "uint64",
|
|
733
|
+
"name": "deadlineBlock",
|
|
734
|
+
"type": "uint64"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"internalType": "uint64",
|
|
738
|
+
"name": "noChildConfirmedBeforeBlock",
|
|
739
|
+
"type": "uint64"
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"internalType": "uint64",
|
|
743
|
+
"name": "stakerCount",
|
|
744
|
+
"type": "uint64"
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"internalType": "uint64",
|
|
748
|
+
"name": "childStakerCount",
|
|
749
|
+
"type": "uint64"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"internalType": "uint64",
|
|
753
|
+
"name": "firstChildBlock",
|
|
754
|
+
"type": "uint64"
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"internalType": "uint64",
|
|
758
|
+
"name": "latestChildNumber",
|
|
759
|
+
"type": "uint64"
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"internalType": "uint64",
|
|
763
|
+
"name": "createdAtBlock",
|
|
764
|
+
"type": "uint64"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"internalType": "bytes32",
|
|
768
|
+
"name": "nodeHash",
|
|
769
|
+
"type": "bytes32"
|
|
770
|
+
}
|
|
771
|
+
],
|
|
772
|
+
"internalType": "struct Node",
|
|
773
|
+
"name": "",
|
|
774
|
+
"type": "tuple"
|
|
775
|
+
}
|
|
776
|
+
],
|
|
777
|
+
"stateMutability": "view",
|
|
778
|
+
"type": "function"
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"inputs": [
|
|
782
|
+
{
|
|
783
|
+
"internalType": "uint64",
|
|
784
|
+
"name": "nodeNum",
|
|
785
|
+
"type": "uint64"
|
|
786
|
+
}
|
|
787
|
+
],
|
|
788
|
+
"name": "getNodeCreationBlockForLogLookup",
|
|
789
|
+
"outputs": [
|
|
790
|
+
{
|
|
791
|
+
"internalType": "uint256",
|
|
792
|
+
"name": "",
|
|
793
|
+
"type": "uint256"
|
|
794
|
+
}
|
|
795
|
+
],
|
|
796
|
+
"stateMutability": "view",
|
|
797
|
+
"type": "function"
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"inputs": [
|
|
801
|
+
{
|
|
802
|
+
"internalType": "address",
|
|
803
|
+
"name": "staker",
|
|
804
|
+
"type": "address"
|
|
805
|
+
}
|
|
806
|
+
],
|
|
807
|
+
"name": "getStaker",
|
|
808
|
+
"outputs": [
|
|
809
|
+
{
|
|
810
|
+
"components": [
|
|
811
|
+
{
|
|
812
|
+
"internalType": "uint256",
|
|
813
|
+
"name": "amountStaked",
|
|
814
|
+
"type": "uint256"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"internalType": "uint64",
|
|
818
|
+
"name": "index",
|
|
819
|
+
"type": "uint64"
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"internalType": "uint64",
|
|
823
|
+
"name": "latestStakedNode",
|
|
824
|
+
"type": "uint64"
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"internalType": "uint64",
|
|
828
|
+
"name": "currentChallenge",
|
|
829
|
+
"type": "uint64"
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"internalType": "bool",
|
|
833
|
+
"name": "isStaked",
|
|
834
|
+
"type": "bool"
|
|
835
|
+
}
|
|
836
|
+
],
|
|
837
|
+
"internalType": "struct IRollupCore.Staker",
|
|
838
|
+
"name": "",
|
|
839
|
+
"type": "tuple"
|
|
840
|
+
}
|
|
841
|
+
],
|
|
842
|
+
"stateMutability": "view",
|
|
843
|
+
"type": "function"
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
"inputs": [
|
|
847
|
+
{
|
|
848
|
+
"internalType": "uint64",
|
|
849
|
+
"name": "stakerNum",
|
|
850
|
+
"type": "uint64"
|
|
851
|
+
}
|
|
852
|
+
],
|
|
853
|
+
"name": "getStakerAddress",
|
|
854
|
+
"outputs": [
|
|
855
|
+
{
|
|
856
|
+
"internalType": "address",
|
|
857
|
+
"name": "",
|
|
858
|
+
"type": "address"
|
|
859
|
+
}
|
|
860
|
+
],
|
|
861
|
+
"stateMutability": "view",
|
|
862
|
+
"type": "function"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"inputs": [],
|
|
866
|
+
"name": "inbox",
|
|
867
|
+
"outputs": [
|
|
868
|
+
{
|
|
869
|
+
"internalType": "contract IInbox",
|
|
870
|
+
"name": "",
|
|
871
|
+
"type": "address"
|
|
872
|
+
}
|
|
873
|
+
],
|
|
874
|
+
"stateMutability": "view",
|
|
875
|
+
"type": "function"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"inputs": [
|
|
879
|
+
{
|
|
880
|
+
"internalType": "address",
|
|
881
|
+
"name": "_stakeToken",
|
|
882
|
+
"type": "address"
|
|
883
|
+
}
|
|
884
|
+
],
|
|
885
|
+
"name": "initialize",
|
|
886
|
+
"outputs": [],
|
|
887
|
+
"stateMutability": "view",
|
|
888
|
+
"type": "function"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"inputs": [],
|
|
892
|
+
"name": "isERC20Enabled",
|
|
893
|
+
"outputs": [
|
|
894
|
+
{
|
|
895
|
+
"internalType": "bool",
|
|
896
|
+
"name": "",
|
|
897
|
+
"type": "bool"
|
|
898
|
+
}
|
|
899
|
+
],
|
|
900
|
+
"stateMutability": "view",
|
|
901
|
+
"type": "function"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"inputs": [
|
|
905
|
+
{
|
|
906
|
+
"internalType": "address",
|
|
907
|
+
"name": "staker",
|
|
908
|
+
"type": "address"
|
|
909
|
+
}
|
|
910
|
+
],
|
|
911
|
+
"name": "isStaked",
|
|
912
|
+
"outputs": [
|
|
913
|
+
{
|
|
914
|
+
"internalType": "bool",
|
|
915
|
+
"name": "",
|
|
916
|
+
"type": "bool"
|
|
917
|
+
}
|
|
918
|
+
],
|
|
919
|
+
"stateMutability": "view",
|
|
920
|
+
"type": "function"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"inputs": [
|
|
924
|
+
{
|
|
925
|
+
"internalType": "address",
|
|
926
|
+
"name": "staker",
|
|
927
|
+
"type": "address"
|
|
928
|
+
}
|
|
929
|
+
],
|
|
930
|
+
"name": "isStakedOnLatestConfirmed",
|
|
931
|
+
"outputs": [
|
|
932
|
+
{
|
|
933
|
+
"internalType": "bool",
|
|
934
|
+
"name": "",
|
|
935
|
+
"type": "bool"
|
|
936
|
+
}
|
|
937
|
+
],
|
|
938
|
+
"stateMutability": "view",
|
|
939
|
+
"type": "function"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"inputs": [
|
|
943
|
+
{
|
|
944
|
+
"internalType": "address",
|
|
945
|
+
"name": "",
|
|
946
|
+
"type": "address"
|
|
947
|
+
}
|
|
948
|
+
],
|
|
949
|
+
"name": "isValidator",
|
|
950
|
+
"outputs": [
|
|
951
|
+
{
|
|
952
|
+
"internalType": "bool",
|
|
953
|
+
"name": "",
|
|
954
|
+
"type": "bool"
|
|
955
|
+
}
|
|
956
|
+
],
|
|
957
|
+
"stateMutability": "view",
|
|
958
|
+
"type": "function"
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"inputs": [
|
|
962
|
+
{
|
|
963
|
+
"internalType": "address",
|
|
964
|
+
"name": "staker",
|
|
965
|
+
"type": "address"
|
|
966
|
+
}
|
|
967
|
+
],
|
|
968
|
+
"name": "isZombie",
|
|
969
|
+
"outputs": [
|
|
970
|
+
{
|
|
971
|
+
"internalType": "bool",
|
|
972
|
+
"name": "",
|
|
973
|
+
"type": "bool"
|
|
974
|
+
}
|
|
975
|
+
],
|
|
976
|
+
"stateMutability": "view",
|
|
977
|
+
"type": "function"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"inputs": [],
|
|
981
|
+
"name": "lastStakeBlock",
|
|
982
|
+
"outputs": [
|
|
983
|
+
{
|
|
984
|
+
"internalType": "uint64",
|
|
985
|
+
"name": "",
|
|
986
|
+
"type": "uint64"
|
|
987
|
+
}
|
|
988
|
+
],
|
|
989
|
+
"stateMutability": "view",
|
|
990
|
+
"type": "function"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"inputs": [],
|
|
994
|
+
"name": "latestConfirmed",
|
|
995
|
+
"outputs": [
|
|
996
|
+
{
|
|
997
|
+
"internalType": "uint64",
|
|
998
|
+
"name": "",
|
|
999
|
+
"type": "uint64"
|
|
1000
|
+
}
|
|
1001
|
+
],
|
|
1002
|
+
"stateMutability": "view",
|
|
1003
|
+
"type": "function"
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"inputs": [],
|
|
1007
|
+
"name": "latestNodeCreated",
|
|
1008
|
+
"outputs": [
|
|
1009
|
+
{
|
|
1010
|
+
"internalType": "uint64",
|
|
1011
|
+
"name": "",
|
|
1012
|
+
"type": "uint64"
|
|
1013
|
+
}
|
|
1014
|
+
],
|
|
1015
|
+
"stateMutability": "view",
|
|
1016
|
+
"type": "function"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"inputs": [
|
|
1020
|
+
{
|
|
1021
|
+
"internalType": "address",
|
|
1022
|
+
"name": "staker",
|
|
1023
|
+
"type": "address"
|
|
1024
|
+
}
|
|
1025
|
+
],
|
|
1026
|
+
"name": "latestStakedNode",
|
|
1027
|
+
"outputs": [
|
|
1028
|
+
{
|
|
1029
|
+
"internalType": "uint64",
|
|
1030
|
+
"name": "",
|
|
1031
|
+
"type": "uint64"
|
|
1032
|
+
}
|
|
1033
|
+
],
|
|
1034
|
+
"stateMutability": "view",
|
|
1035
|
+
"type": "function"
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"inputs": [],
|
|
1039
|
+
"name": "loserStakeEscrow",
|
|
1040
|
+
"outputs": [
|
|
1041
|
+
{
|
|
1042
|
+
"internalType": "address",
|
|
1043
|
+
"name": "",
|
|
1044
|
+
"type": "address"
|
|
1045
|
+
}
|
|
1046
|
+
],
|
|
1047
|
+
"stateMutability": "view",
|
|
1048
|
+
"type": "function"
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"inputs": [],
|
|
1052
|
+
"name": "minimumAssertionPeriod",
|
|
1053
|
+
"outputs": [
|
|
1054
|
+
{
|
|
1055
|
+
"internalType": "uint256",
|
|
1056
|
+
"name": "",
|
|
1057
|
+
"type": "uint256"
|
|
1058
|
+
}
|
|
1059
|
+
],
|
|
1060
|
+
"stateMutability": "view",
|
|
1061
|
+
"type": "function"
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"inputs": [
|
|
1065
|
+
{
|
|
1066
|
+
"internalType": "uint256",
|
|
1067
|
+
"name": "tokenAmount",
|
|
1068
|
+
"type": "uint256"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"internalType": "uint64",
|
|
1072
|
+
"name": "nodeNum",
|
|
1073
|
+
"type": "uint64"
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"internalType": "bytes32",
|
|
1077
|
+
"name": "nodeHash",
|
|
1078
|
+
"type": "bytes32"
|
|
1079
|
+
}
|
|
1080
|
+
],
|
|
1081
|
+
"name": "newStakeOnExistingNode",
|
|
1082
|
+
"outputs": [],
|
|
1083
|
+
"stateMutability": "nonpayable",
|
|
1084
|
+
"type": "function"
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
"inputs": [
|
|
1088
|
+
{
|
|
1089
|
+
"internalType": "uint256",
|
|
1090
|
+
"name": "tokenAmount",
|
|
1091
|
+
"type": "uint256"
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
"components": [
|
|
1095
|
+
{
|
|
1096
|
+
"components": [
|
|
1097
|
+
{
|
|
1098
|
+
"components": [
|
|
1099
|
+
{
|
|
1100
|
+
"internalType": "bytes32[2]",
|
|
1101
|
+
"name": "bytes32Vals",
|
|
1102
|
+
"type": "bytes32[2]"
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
"internalType": "uint64[2]",
|
|
1106
|
+
"name": "u64Vals",
|
|
1107
|
+
"type": "uint64[2]"
|
|
1108
|
+
}
|
|
1109
|
+
],
|
|
1110
|
+
"internalType": "struct GlobalState",
|
|
1111
|
+
"name": "globalState",
|
|
1112
|
+
"type": "tuple"
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
"internalType": "enum MachineStatus",
|
|
1116
|
+
"name": "machineStatus",
|
|
1117
|
+
"type": "uint8"
|
|
1118
|
+
}
|
|
1119
|
+
],
|
|
1120
|
+
"internalType": "struct ExecutionState",
|
|
1121
|
+
"name": "beforeState",
|
|
1122
|
+
"type": "tuple"
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
"components": [
|
|
1126
|
+
{
|
|
1127
|
+
"components": [
|
|
1128
|
+
{
|
|
1129
|
+
"internalType": "bytes32[2]",
|
|
1130
|
+
"name": "bytes32Vals",
|
|
1131
|
+
"type": "bytes32[2]"
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"internalType": "uint64[2]",
|
|
1135
|
+
"name": "u64Vals",
|
|
1136
|
+
"type": "uint64[2]"
|
|
1137
|
+
}
|
|
1138
|
+
],
|
|
1139
|
+
"internalType": "struct GlobalState",
|
|
1140
|
+
"name": "globalState",
|
|
1141
|
+
"type": "tuple"
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
"internalType": "enum MachineStatus",
|
|
1145
|
+
"name": "machineStatus",
|
|
1146
|
+
"type": "uint8"
|
|
1147
|
+
}
|
|
1148
|
+
],
|
|
1149
|
+
"internalType": "struct ExecutionState",
|
|
1150
|
+
"name": "afterState",
|
|
1151
|
+
"type": "tuple"
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
"internalType": "uint64",
|
|
1155
|
+
"name": "numBlocks",
|
|
1156
|
+
"type": "uint64"
|
|
1157
|
+
}
|
|
1158
|
+
],
|
|
1159
|
+
"internalType": "struct Assertion",
|
|
1160
|
+
"name": "assertion",
|
|
1161
|
+
"type": "tuple"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"internalType": "bytes32",
|
|
1165
|
+
"name": "expectedNodeHash",
|
|
1166
|
+
"type": "bytes32"
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
"internalType": "uint256",
|
|
1170
|
+
"name": "prevNodeInboxMaxCount",
|
|
1171
|
+
"type": "uint256"
|
|
1172
|
+
}
|
|
1173
|
+
],
|
|
1174
|
+
"name": "newStakeOnNewNode",
|
|
1175
|
+
"outputs": [],
|
|
1176
|
+
"stateMutability": "nonpayable",
|
|
1177
|
+
"type": "function"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"inputs": [
|
|
1181
|
+
{
|
|
1182
|
+
"internalType": "uint64",
|
|
1183
|
+
"name": "nodeNum",
|
|
1184
|
+
"type": "uint64"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"internalType": "address",
|
|
1188
|
+
"name": "staker",
|
|
1189
|
+
"type": "address"
|
|
1190
|
+
}
|
|
1191
|
+
],
|
|
1192
|
+
"name": "nodeHasStaker",
|
|
1193
|
+
"outputs": [
|
|
1194
|
+
{
|
|
1195
|
+
"internalType": "bool",
|
|
1196
|
+
"name": "",
|
|
1197
|
+
"type": "bool"
|
|
1198
|
+
}
|
|
1199
|
+
],
|
|
1200
|
+
"stateMutability": "view",
|
|
1201
|
+
"type": "function"
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"inputs": [],
|
|
1205
|
+
"name": "outbox",
|
|
1206
|
+
"outputs": [
|
|
1207
|
+
{
|
|
1208
|
+
"internalType": "contract IOutbox",
|
|
1209
|
+
"name": "",
|
|
1210
|
+
"type": "address"
|
|
1211
|
+
}
|
|
1212
|
+
],
|
|
1213
|
+
"stateMutability": "view",
|
|
1214
|
+
"type": "function"
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"inputs": [],
|
|
1218
|
+
"name": "owner",
|
|
1219
|
+
"outputs": [
|
|
1220
|
+
{
|
|
1221
|
+
"internalType": "address",
|
|
1222
|
+
"name": "",
|
|
1223
|
+
"type": "address"
|
|
1224
|
+
}
|
|
1225
|
+
],
|
|
1226
|
+
"stateMutability": "view",
|
|
1227
|
+
"type": "function"
|
|
1228
|
+
},
|
|
1229
|
+
{
|
|
1230
|
+
"inputs": [],
|
|
1231
|
+
"name": "paused",
|
|
1232
|
+
"outputs": [
|
|
1233
|
+
{
|
|
1234
|
+
"internalType": "bool",
|
|
1235
|
+
"name": "",
|
|
1236
|
+
"type": "bool"
|
|
1237
|
+
}
|
|
1238
|
+
],
|
|
1239
|
+
"stateMutability": "view",
|
|
1240
|
+
"type": "function"
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"inputs": [],
|
|
1244
|
+
"name": "proxiableUUID",
|
|
1245
|
+
"outputs": [
|
|
1246
|
+
{
|
|
1247
|
+
"internalType": "bytes32",
|
|
1248
|
+
"name": "",
|
|
1249
|
+
"type": "bytes32"
|
|
1250
|
+
}
|
|
1251
|
+
],
|
|
1252
|
+
"stateMutability": "view",
|
|
1253
|
+
"type": "function"
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"inputs": [
|
|
1257
|
+
{
|
|
1258
|
+
"internalType": "uint256",
|
|
1259
|
+
"name": "target",
|
|
1260
|
+
"type": "uint256"
|
|
1261
|
+
}
|
|
1262
|
+
],
|
|
1263
|
+
"name": "reduceDeposit",
|
|
1264
|
+
"outputs": [],
|
|
1265
|
+
"stateMutability": "nonpayable",
|
|
1266
|
+
"type": "function"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"inputs": [
|
|
1270
|
+
{
|
|
1271
|
+
"internalType": "address",
|
|
1272
|
+
"name": "stakerAddress",
|
|
1273
|
+
"type": "address"
|
|
1274
|
+
}
|
|
1275
|
+
],
|
|
1276
|
+
"name": "rejectNextNode",
|
|
1277
|
+
"outputs": [],
|
|
1278
|
+
"stateMutability": "nonpayable",
|
|
1279
|
+
"type": "function"
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"inputs": [
|
|
1283
|
+
{
|
|
1284
|
+
"internalType": "uint256",
|
|
1285
|
+
"name": "startIndex",
|
|
1286
|
+
"type": "uint256"
|
|
1287
|
+
}
|
|
1288
|
+
],
|
|
1289
|
+
"name": "removeOldZombies",
|
|
1290
|
+
"outputs": [],
|
|
1291
|
+
"stateMutability": "nonpayable",
|
|
1292
|
+
"type": "function"
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
"inputs": [],
|
|
1296
|
+
"name": "removeWhitelistAfterFork",
|
|
1297
|
+
"outputs": [],
|
|
1298
|
+
"stateMutability": "nonpayable",
|
|
1299
|
+
"type": "function"
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
"inputs": [],
|
|
1303
|
+
"name": "removeWhitelistAfterValidatorAfk",
|
|
1304
|
+
"outputs": [],
|
|
1305
|
+
"stateMutability": "nonpayable",
|
|
1306
|
+
"type": "function"
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
"inputs": [
|
|
1310
|
+
{
|
|
1311
|
+
"internalType": "uint256",
|
|
1312
|
+
"name": "zombieNum",
|
|
1313
|
+
"type": "uint256"
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"internalType": "uint256",
|
|
1317
|
+
"name": "maxNodes",
|
|
1318
|
+
"type": "uint256"
|
|
1319
|
+
}
|
|
1320
|
+
],
|
|
1321
|
+
"name": "removeZombie",
|
|
1322
|
+
"outputs": [],
|
|
1323
|
+
"stateMutability": "nonpayable",
|
|
1324
|
+
"type": "function"
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
"inputs": [
|
|
1328
|
+
{
|
|
1329
|
+
"internalType": "uint256",
|
|
1330
|
+
"name": "nodeNum",
|
|
1331
|
+
"type": "uint256"
|
|
1332
|
+
}
|
|
1333
|
+
],
|
|
1334
|
+
"name": "requireUnresolved",
|
|
1335
|
+
"outputs": [],
|
|
1336
|
+
"stateMutability": "view",
|
|
1337
|
+
"type": "function"
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
"inputs": [],
|
|
1341
|
+
"name": "requireUnresolvedExists",
|
|
1342
|
+
"outputs": [],
|
|
1343
|
+
"stateMutability": "view",
|
|
1344
|
+
"type": "function"
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
"inputs": [
|
|
1348
|
+
{
|
|
1349
|
+
"internalType": "uint256",
|
|
1350
|
+
"name": "blockNumber",
|
|
1351
|
+
"type": "uint256"
|
|
1352
|
+
},
|
|
1353
|
+
{
|
|
1354
|
+
"internalType": "uint64",
|
|
1355
|
+
"name": "firstUnresolvedNodeNum",
|
|
1356
|
+
"type": "uint64"
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
"internalType": "uint64",
|
|
1360
|
+
"name": "latestCreatedNode",
|
|
1361
|
+
"type": "uint64"
|
|
1362
|
+
}
|
|
1363
|
+
],
|
|
1364
|
+
"name": "requiredStake",
|
|
1365
|
+
"outputs": [
|
|
1366
|
+
{
|
|
1367
|
+
"internalType": "uint256",
|
|
1368
|
+
"name": "",
|
|
1369
|
+
"type": "uint256"
|
|
1370
|
+
}
|
|
1371
|
+
],
|
|
1372
|
+
"stateMutability": "view",
|
|
1373
|
+
"type": "function"
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
"inputs": [
|
|
1377
|
+
{
|
|
1378
|
+
"internalType": "address",
|
|
1379
|
+
"name": "stakerAddress",
|
|
1380
|
+
"type": "address"
|
|
1381
|
+
}
|
|
1382
|
+
],
|
|
1383
|
+
"name": "returnOldDeposit",
|
|
1384
|
+
"outputs": [],
|
|
1385
|
+
"stateMutability": "nonpayable",
|
|
1386
|
+
"type": "function"
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
"inputs": [],
|
|
1390
|
+
"name": "rollupDeploymentBlock",
|
|
1391
|
+
"outputs": [
|
|
1392
|
+
{
|
|
1393
|
+
"internalType": "uint256",
|
|
1394
|
+
"name": "",
|
|
1395
|
+
"type": "uint256"
|
|
1396
|
+
}
|
|
1397
|
+
],
|
|
1398
|
+
"stateMutability": "view",
|
|
1399
|
+
"type": "function"
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
"inputs": [],
|
|
1403
|
+
"name": "rollupEventInbox",
|
|
1404
|
+
"outputs": [
|
|
1405
|
+
{
|
|
1406
|
+
"internalType": "contract IRollupEventInbox",
|
|
1407
|
+
"name": "",
|
|
1408
|
+
"type": "address"
|
|
1409
|
+
}
|
|
1410
|
+
],
|
|
1411
|
+
"stateMutability": "view",
|
|
1412
|
+
"type": "function"
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
"inputs": [],
|
|
1416
|
+
"name": "sequencerInbox",
|
|
1417
|
+
"outputs": [
|
|
1418
|
+
{
|
|
1419
|
+
"internalType": "contract ISequencerInbox",
|
|
1420
|
+
"name": "",
|
|
1421
|
+
"type": "address"
|
|
1422
|
+
}
|
|
1423
|
+
],
|
|
1424
|
+
"stateMutability": "view",
|
|
1425
|
+
"type": "function"
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
"inputs": [
|
|
1429
|
+
{
|
|
1430
|
+
"internalType": "uint64",
|
|
1431
|
+
"name": "nodeNum",
|
|
1432
|
+
"type": "uint64"
|
|
1433
|
+
},
|
|
1434
|
+
{
|
|
1435
|
+
"internalType": "bytes32",
|
|
1436
|
+
"name": "nodeHash",
|
|
1437
|
+
"type": "bytes32"
|
|
1438
|
+
}
|
|
1439
|
+
],
|
|
1440
|
+
"name": "stakeOnExistingNode",
|
|
1441
|
+
"outputs": [],
|
|
1442
|
+
"stateMutability": "nonpayable",
|
|
1443
|
+
"type": "function"
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
"inputs": [
|
|
1447
|
+
{
|
|
1448
|
+
"components": [
|
|
1449
|
+
{
|
|
1450
|
+
"components": [
|
|
1451
|
+
{
|
|
1452
|
+
"components": [
|
|
1453
|
+
{
|
|
1454
|
+
"internalType": "bytes32[2]",
|
|
1455
|
+
"name": "bytes32Vals",
|
|
1456
|
+
"type": "bytes32[2]"
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
"internalType": "uint64[2]",
|
|
1460
|
+
"name": "u64Vals",
|
|
1461
|
+
"type": "uint64[2]"
|
|
1462
|
+
}
|
|
1463
|
+
],
|
|
1464
|
+
"internalType": "struct GlobalState",
|
|
1465
|
+
"name": "globalState",
|
|
1466
|
+
"type": "tuple"
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
"internalType": "enum MachineStatus",
|
|
1470
|
+
"name": "machineStatus",
|
|
1471
|
+
"type": "uint8"
|
|
1472
|
+
}
|
|
1473
|
+
],
|
|
1474
|
+
"internalType": "struct ExecutionState",
|
|
1475
|
+
"name": "beforeState",
|
|
1476
|
+
"type": "tuple"
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
"components": [
|
|
1480
|
+
{
|
|
1481
|
+
"components": [
|
|
1482
|
+
{
|
|
1483
|
+
"internalType": "bytes32[2]",
|
|
1484
|
+
"name": "bytes32Vals",
|
|
1485
|
+
"type": "bytes32[2]"
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
"internalType": "uint64[2]",
|
|
1489
|
+
"name": "u64Vals",
|
|
1490
|
+
"type": "uint64[2]"
|
|
1491
|
+
}
|
|
1492
|
+
],
|
|
1493
|
+
"internalType": "struct GlobalState",
|
|
1494
|
+
"name": "globalState",
|
|
1495
|
+
"type": "tuple"
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
"internalType": "enum MachineStatus",
|
|
1499
|
+
"name": "machineStatus",
|
|
1500
|
+
"type": "uint8"
|
|
1501
|
+
}
|
|
1502
|
+
],
|
|
1503
|
+
"internalType": "struct ExecutionState",
|
|
1504
|
+
"name": "afterState",
|
|
1505
|
+
"type": "tuple"
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
"internalType": "uint64",
|
|
1509
|
+
"name": "numBlocks",
|
|
1510
|
+
"type": "uint64"
|
|
1511
|
+
}
|
|
1512
|
+
],
|
|
1513
|
+
"internalType": "struct Assertion",
|
|
1514
|
+
"name": "assertion",
|
|
1515
|
+
"type": "tuple"
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
"internalType": "bytes32",
|
|
1519
|
+
"name": "expectedNodeHash",
|
|
1520
|
+
"type": "bytes32"
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
"internalType": "uint256",
|
|
1524
|
+
"name": "prevNodeInboxMaxCount",
|
|
1525
|
+
"type": "uint256"
|
|
1526
|
+
}
|
|
1527
|
+
],
|
|
1528
|
+
"name": "stakeOnNewNode",
|
|
1529
|
+
"outputs": [],
|
|
1530
|
+
"stateMutability": "nonpayable",
|
|
1531
|
+
"type": "function"
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
"inputs": [],
|
|
1535
|
+
"name": "stakeToken",
|
|
1536
|
+
"outputs": [
|
|
1537
|
+
{
|
|
1538
|
+
"internalType": "address",
|
|
1539
|
+
"name": "",
|
|
1540
|
+
"type": "address"
|
|
1541
|
+
}
|
|
1542
|
+
],
|
|
1543
|
+
"stateMutability": "view",
|
|
1544
|
+
"type": "function"
|
|
1545
|
+
},
|
|
1546
|
+
{
|
|
1547
|
+
"inputs": [],
|
|
1548
|
+
"name": "stakerCount",
|
|
1549
|
+
"outputs": [
|
|
1550
|
+
{
|
|
1551
|
+
"internalType": "uint64",
|
|
1552
|
+
"name": "",
|
|
1553
|
+
"type": "uint64"
|
|
1554
|
+
}
|
|
1555
|
+
],
|
|
1556
|
+
"stateMutability": "view",
|
|
1557
|
+
"type": "function"
|
|
1558
|
+
},
|
|
1559
|
+
{
|
|
1560
|
+
"inputs": [],
|
|
1561
|
+
"name": "totalWithdrawableFunds",
|
|
1562
|
+
"outputs": [
|
|
1563
|
+
{
|
|
1564
|
+
"internalType": "uint256",
|
|
1565
|
+
"name": "",
|
|
1566
|
+
"type": "uint256"
|
|
1567
|
+
}
|
|
1568
|
+
],
|
|
1569
|
+
"stateMutability": "view",
|
|
1570
|
+
"type": "function"
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"inputs": [],
|
|
1574
|
+
"name": "validatorUtils",
|
|
1575
|
+
"outputs": [
|
|
1576
|
+
{
|
|
1577
|
+
"internalType": "address",
|
|
1578
|
+
"name": "",
|
|
1579
|
+
"type": "address"
|
|
1580
|
+
}
|
|
1581
|
+
],
|
|
1582
|
+
"stateMutability": "view",
|
|
1583
|
+
"type": "function"
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
"inputs": [],
|
|
1587
|
+
"name": "validatorWalletCreator",
|
|
1588
|
+
"outputs": [
|
|
1589
|
+
{
|
|
1590
|
+
"internalType": "address",
|
|
1591
|
+
"name": "",
|
|
1592
|
+
"type": "address"
|
|
1593
|
+
}
|
|
1594
|
+
],
|
|
1595
|
+
"stateMutability": "view",
|
|
1596
|
+
"type": "function"
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"inputs": [],
|
|
1600
|
+
"name": "validatorWhitelistDisabled",
|
|
1601
|
+
"outputs": [
|
|
1602
|
+
{
|
|
1603
|
+
"internalType": "bool",
|
|
1604
|
+
"name": "",
|
|
1605
|
+
"type": "bool"
|
|
1606
|
+
}
|
|
1607
|
+
],
|
|
1608
|
+
"stateMutability": "view",
|
|
1609
|
+
"type": "function"
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
"inputs": [],
|
|
1613
|
+
"name": "wasmModuleRoot",
|
|
1614
|
+
"outputs": [
|
|
1615
|
+
{
|
|
1616
|
+
"internalType": "bytes32",
|
|
1617
|
+
"name": "",
|
|
1618
|
+
"type": "bytes32"
|
|
1619
|
+
}
|
|
1620
|
+
],
|
|
1621
|
+
"stateMutability": "view",
|
|
1622
|
+
"type": "function"
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
"inputs": [],
|
|
1626
|
+
"name": "withdrawStakerFunds",
|
|
1627
|
+
"outputs": [
|
|
1628
|
+
{
|
|
1629
|
+
"internalType": "uint256",
|
|
1630
|
+
"name": "",
|
|
1631
|
+
"type": "uint256"
|
|
1632
|
+
}
|
|
1633
|
+
],
|
|
1634
|
+
"stateMutability": "nonpayable",
|
|
1635
|
+
"type": "function"
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
"inputs": [
|
|
1639
|
+
{
|
|
1640
|
+
"internalType": "address",
|
|
1641
|
+
"name": "user",
|
|
1642
|
+
"type": "address"
|
|
1643
|
+
}
|
|
1644
|
+
],
|
|
1645
|
+
"name": "withdrawableFunds",
|
|
1646
|
+
"outputs": [
|
|
1647
|
+
{
|
|
1648
|
+
"internalType": "uint256",
|
|
1649
|
+
"name": "",
|
|
1650
|
+
"type": "uint256"
|
|
1651
|
+
}
|
|
1652
|
+
],
|
|
1653
|
+
"stateMutability": "view",
|
|
1654
|
+
"type": "function"
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
"inputs": [
|
|
1658
|
+
{
|
|
1659
|
+
"internalType": "uint256",
|
|
1660
|
+
"name": "zombieNum",
|
|
1661
|
+
"type": "uint256"
|
|
1662
|
+
}
|
|
1663
|
+
],
|
|
1664
|
+
"name": "zombieAddress",
|
|
1665
|
+
"outputs": [
|
|
1666
|
+
{
|
|
1667
|
+
"internalType": "address",
|
|
1668
|
+
"name": "",
|
|
1669
|
+
"type": "address"
|
|
1670
|
+
}
|
|
1671
|
+
],
|
|
1672
|
+
"stateMutability": "view",
|
|
1673
|
+
"type": "function"
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"inputs": [],
|
|
1677
|
+
"name": "zombieCount",
|
|
1678
|
+
"outputs": [
|
|
1679
|
+
{
|
|
1680
|
+
"internalType": "uint256",
|
|
1681
|
+
"name": "",
|
|
1682
|
+
"type": "uint256"
|
|
1683
|
+
}
|
|
1684
|
+
],
|
|
1685
|
+
"stateMutability": "view",
|
|
1686
|
+
"type": "function"
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
"inputs": [
|
|
1690
|
+
{
|
|
1691
|
+
"internalType": "uint256",
|
|
1692
|
+
"name": "zombieNum",
|
|
1693
|
+
"type": "uint256"
|
|
1694
|
+
}
|
|
1695
|
+
],
|
|
1696
|
+
"name": "zombieLatestStakedNode",
|
|
1697
|
+
"outputs": [
|
|
1698
|
+
{
|
|
1699
|
+
"internalType": "uint64",
|
|
1700
|
+
"name": "",
|
|
1701
|
+
"type": "uint64"
|
|
1702
|
+
}
|
|
1703
|
+
],
|
|
1704
|
+
"stateMutability": "view",
|
|
1705
|
+
"type": "function"
|
|
1706
|
+
}
|
|
1707
|
+
],
|
|
1708
|
+
"bytecode": "0x60e06040523060a0524660c0523480156200001957600080fd5b5060408051600481526024810182526020810180516001600160e01b03166302881c7960e11b179052905160009182916064916200005791620000bb565b600060405180830381855afa9150503d806000811462000094576040519150601f19603f3d011682016040523d82523d6000602084013e62000099565b606091505b5091509150818015620000ad575080516020145b151560805250620000f99050565b6000825160005b81811015620000de5760208186018101518583015201620000c2565b81811115620000ee576000828501525b509190910192915050565b60805160a05160c051615b596200013e6000396000612545015260008181610e78015281816125b401526126390152600081816129a701526148240152615b596000f3fe608060405234801561001057600080fd5b50600436106103875760003560e01c8063771b2f97116101e0578063cd205fda11610110578063edfd03ed116100a8578063edfd03ed14610919578063ee35f3271461092c578063ef40a6701461093f578063f065de3f14610952578063f33e1fac14610965578063f3f0a03e14610978578063f63a434a1461098b578063facd743b1461099e578063fb0e722b146109c157600080fd5b8063cd205fda1461080f578063ce11e6ab14610822578063d01e660214610835578063d29a4e2714610848578063d735e21d1461085b578063dcd030aa14610863578063dff6978714610876578063e78cea921461087e578063e8bd49221461089157600080fd5b806392c8134c1161018357806392c8134c1461067d5780639a8a05921461069d578063a23c44b1146106a6578063aa38a6e7146107a8578063aa65af48146107bb578063b0ebedc7146107ce578063bc45e0ae146107e1578063c2c2e68e146107f4578063c4d66de8146107fc57600080fd5b8063771b2f97146105f9578063773d984e146106135780637ba9534a146106265780637e2d21551461062e5780638640ce5f146106415780638da5cb5b146106595780638ee1a1261461066157806391c657e81461066a57600080fd5b806354ce8961116102bb57806367425daf1161025e57806367425daf1461056d57806369fd251c146105755780636b94c33b146105885780636d08d0a21461059b5780636ddd3744146105ae5780636f57644e146105c157806371ef232c146105d45780637427be51146105dd57806376e7e23b146105f057600080fd5b806354ce8961146104f55780635c617e94146105085780635c975abb1461051b5780635eb405d51461052657806361373919146105395780636177fd181461054157806363721d6b1461055457806365f7f80d1461055c57600080fd5b80632b2af0ab1161032e5780632b2af0ab146104465780632e7acfa6146104595780632f30cabd146104845780633e96576e146104ad57806345e38b64146104c05780634ceccfe5146104c95780634d26732d146104d257806351ed6a30146104da57806352d1902d146104ed57600080fd5b8063014cc92c1461038c578063023a96fe146103bc5780630357aa49146103cf57806312ab3d3b146103e457806318baaab9146104015780631aeb55a0146104095780631b1689e91461041c5780631e83d30f14610433575b600080fd5b606f5461039f906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b606e5461039f906001600160a01b031681565b6103e26103dd366004614efe565b6109d4565b005b607e546103f19060ff1681565b60405190151581526020016103b3565b6103e2610aa7565b6103e2610417366004614f4f565b610b21565b610425607d5481565b6040519081526020016103b3565b6103e2610441366004614f7b565b610ce1565b6103e2610454366004614f7b565b610d6b565b60655461046c906001600160401b031681565b6040516001600160401b0390911681526020016103b3565b610425610492366004614f94565b6001600160a01b03166000908152607b602052604090205490565b61046c6104bb366004614f94565b610e0f565b61042560735481565b61042561b2fa81565b610425610e3d565b60725461039f906001600160a01b031681565b610425610e6b565b6103e2610503366004614fc8565b610f30565b610425610516366004614fff565b611193565b60335460ff166103f1565b6103e261053436600461501c565b6111e7565b61042561150a565b6103f161054f366004614f94565b61163c565b607a54610425565b6075546001600160401b031661046c565b6103e2611664565b61046c610583366004614f94565b6116ee565b6103e2610596366004614f94565b61171c565b6104256105a9366004614fff565b611a54565b61039f6105bc366004614fff565b611ad7565b6103e26105cf36600461504f565b611b10565b610425607c5481565b6103e26105eb366004614f94565b612142565b61042560675481565b60655461046c90600160401b90046001600160401b031681565b6103e26106213660046150ef565b61220c565b61046c612228565b6103e261063c36600461501c565b61223e565b607554600160c01b90046001600160401b031661046c565b61039f6123a2565b61042560685481565b6103f1610678366004614f94565b6123ac565b61069061068b366004614fff565b612410565b6040516103b39190615127565b61042560665481565b6107536106b4366004614f94565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506001600160a01b0316600090815260796020908152604091829020825160a081018452815481526001909101546001600160401b0380821693830193909352600160401b8104831693820193909352600160801b83049091166060820152600160c01b90910460ff161515608082015290565b6040516103b39190600060a0820190508251825260208301516001600160401b038082166020850152806040860151166040850152806060860151166060850152505060808301511515608083015292915050565b606d5461039f906001600160a01b031681565b6103f16107c9366004615223565b6124c8565b6104256107dc366004615258565b6124ff565b60705461039f906001600160a01b031681565b6103e261251f565b6103e261080a366004614f94565b6125a9565b6072546001600160a01b031615156103f1565b606b5461039f906001600160a01b031681565b61039f610843366004614f7b565b612767565b6103e261085636600461529a565b61277c565b61046c612799565b6103f1610871366004614f94565b6127af565b60785461046c565b606a5461039f906001600160a01b031681565b6108e161089f366004614f94565b607960205260009081526040902080546001909101546001600160401b0380821691600160401b8104821691600160801b82041690600160c01b900460ff1685565b604080519586526001600160401b0394851660208701529284169285019290925290911660608301521515608082015260a0016103b3565b6103e2610927366004614f7b565b6127f2565b606c5461039f906001600160a01b031681565b61042561094d366004614f94565b6128db565b60715461039f906001600160a01b031681565b61046c610973366004614f7b565b6128f6565b6103e26109863660046152d9565b61292d565b610425610999366004614fff565b6129a3565b6103f16109ac366004614f94565b60746020526000908152604090205460ff1681565b60695461039f906001600160a01b031681565b60335460ff1615610a005760405162461bcd60e51b81526004016109f7906152f5565b60405180910390fd5b606e546001600160a01b03163314610a495760405162461bcd60e51b815260206004820152600c60248201526b2ba927a723afa9a2a72222a960a11b60448201526064016109f7565b610a538282612a5f565b6001600160401b03168314610a985760405162461bcd60e51b815260206004820152600b60248201526a1393d517d25397d0d2105360aa1b60448201526064016109f7565b610aa28282612b2d565b505050565b607e5460ff1615610aca5760405162461bcd60e51b81526004016109f79061531f565b610ad2612be3565b610b125760405162461bcd60e51b815260206004820152601160248201527056414c494441544f525f4e4f545f41464b60781b60448201526064016109f7565b607e805460ff19166001179055565b3360009081526074602052604090205460ff1680610b415750607e5460ff165b610b5d5760405162461bcd60e51b81526004016109f79061534b565b60335460ff1615610b805760405162461bcd60e51b81526004016109f7906152f5565b610b89336127af565b610ba55760405162461bcd60e51b81526004016109f790615372565b610bad612799565b6001600160401b0316826001600160401b031610158015610be75750610bd1612228565b6001600160401b0316826001600160401b031611155b610c2b5760405162461bcd60e51b81526020600482015260156024820152744e4f44455f4e554d5f4f55545f4f465f52414e474560581b60448201526064016109f7565b6000610c3683612ced565b905081816005015414610c785760405162461bcd60e51b815260206004820152600a6024820152694e4f44455f52454f524760b01b60448201526064016109f7565b60038101546001600160401b0316610c8f33610e0f565b6001600160401b031614610cd75760405162461bcd60e51b815260206004820152600f60248201526e2727aa2fa9aa20a5a2a22fa82922ab60891b60448201526064016109f7565b610aa23384612d07565b3360009081526074602052604090205460ff1680610d015750607e5460ff165b610d1d5760405162461bcd60e51b81526004016109f79061534b565b60335460ff1615610d405760405162461bcd60e51b81526004016109f7906152f5565b610d4933612d58565b6000610d53610e3d565b905080821015610d61578091505b610aa23383612dc8565b610d73612799565b6001600160401b0316811015610dbd5760405162461bcd60e51b815260206004820152600f60248201526e1053149150511657d11150d2511151608a1b60448201526064016109f7565b610dc5612228565b6001600160401b0316811115610e0c5760405162461bcd60e51b815260206004820152600c60248201526b1113d154d39517d1561254d560a21b60448201526064016109f7565b50565b6001600160a01b0316600090815260796020526040902060010154600160401b90046001600160401b031690565b600080610e48612799565b9050610e654382610e57612228565b6001600160401b0316612e7b565b91505090565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f0b5760405162461bcd60e51b815260206004820152603b60248201527f555550534e6f745570677261646561626c653a206d757374206e6f742062652060448201527f63616c6c6564207468726f7567682064656c656761746563616c6c000000000060648201526084016109f7565b507f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d90565b3360009081526074602052604090205460ff1680610f505750607e5460ff165b610f6c5760405162461bcd60e51b81526004016109f79061534b565b60335460ff1615610f8f5760405162461bcd60e51b81526004016109f7906152f5565b610f98336127af565b610fb45760405162461bcd60e51b81526004016109f790615372565b6000610fbf33610e0f565b90506000610fcc82612410565b6101400151610fe4906001600160401b0316436153ac565b90506073548110156110255760405162461bcd60e51b815260206004820152600a60248201526954494d455f44454c544160b01b60448201526064016109f7565b6002611039610140870161012088016153e8565b600381111561104a5761104a6153c3565b148061107857508261106c61106736889003880160a08901615504565b6130e3565b6001600160401b031610155b6110b05760405162461bcd60e51b81526020600482015260096024820152681513d3d7d4d350531360ba1b60448201526064016109f7565b60006110c461016087016101408801614fff565b6001600160401b03161161110c5760405162461bcd60e51b815260206004820152600f60248201526e22a6a82a2cafa0a9a9a2a92a24a7a760891b60448201526064016109f7565b600161111e60a08701608088016153e8565b600381111561112f5761112f6153c3565b1461116e5760405162461bcd60e51b815260206004820152600f60248201526e4241445f505245565f53544154555360881b60448201526064016109f7565b5061117b848284866130f8565b5061118d33611188612228565b612d07565b50505050565b60008061119f607a5490565b90506000805b828110156111df576111ba856107c983612767565b156111cd57816111c981615520565b9250505b806111d781615520565b9150506111a5565b509392505050565b3360009081526074602052604090205460ff16806112075750607e5460ff165b6112235760405162461bcd60e51b81526004016109f79061534b565b60335460ff16156112465760405162461bcd60e51b81526004016109f7906152f5565b61124e611664565b6000611258612799565b9050600061126582612ced565b6040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e087015291820483166101008601528104821661012085015291909104166101408201526005820154610160820152909150611311906136e3565b60755460038201546001600160401b039081169116146113335761133361553b565b600381015460009061134d906001600160401b0316612ced565b6040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e0870152918204831661010086015281048216610120850152919091041661014082015260058201546101608201529091506113f990613732565b61140360006127f2565b600061140e84611193565b6003840154909150600090829061142d906001600160401b0316611a54565b61143791906153ac565b6003850154909150600160c01b90046001600160401b0316821061148a5760405162461bcd60e51b815260206004820152600a6024820152694e4f5f5354414b45525360b01b60448201526064016109f7565b60038401546114aa908290600160c01b90046001600160401b0316615551565b60048401546001600160401b0316146114f65760405162461bcd60e51b815260206004820152600e60248201526d1393d517d0531317d4d51052d15160921b60448201526064016109f7565b611501858888613782565b50505050505050565b3360009081526074602052604081205460ff168061152a5750607e5460ff165b6115465760405162461bcd60e51b81526004016109f79061534b565b60335460ff16156115695760405162461bcd60e51b81526004016109f7906152f5565b6000611574336138d1565b60725460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb90604401602060405180830381600087803b1580156115c157600080fd5b505af11580156115d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f99190615569565b6116375760405162461bcd60e51b815260206004820152600f60248201526e1514905394d1915497d19052531151608a1b60448201526064016109f7565b905090565b6001600160a01b0316600090815260796020526040902060010154600160c01b900460ff1690565b600061166e612799565b6001600160401b0316905061168b6075546001600160401b031690565b6001600160401b0316811180156116b257506116a5612228565b6001600160401b03168111155b610e0c5760405162461bcd60e51b815260206004820152600d60248201526c1393d7d553949154d3d3159151609a1b60448201526064016109f7565b6001600160a01b0316600090815260796020526040902060010154600160801b90046001600160401b031690565b3360009081526074602052604090205460ff168061173c5750607e5460ff165b6117585760405162461bcd60e51b81526004016109f79061534b565b60335460ff161561177b5760405162461bcd60e51b81526004016109f7906152f5565b611783611664565b60006117976075546001600160401b031690565b905060006117a3612799565b905060006117b082612ced565b60038101549091506001600160401b0384811691161415611a12576117d4846127af565b6117f05760405162461bcd60e51b81526004016109f790615372565b61180a6117fc85610e0f565b6001600160401b0316610d6b565b61181482856124c8565b156118545760405162461bcd60e51b815260206004820152601060248201526f14d51052d15117d3d397d5105491d15560821b60448201526064016109f7565b6040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e0870152918204831661010086015281048216610120850152919091041661014082015260058201546101608201526118fd906136e3565b6119af61190984612ced565b6040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e08701529182048316610100860152810482166101208501529190910416610140820152600590910154610160820152613732565b6119b960006127f2565b6119c282611193565b6003820154600160c01b90046001600160401b031614611a125760405162461bcd60e51b815260206004820152600b60248201526a4841535f5354414b45525360a81b60448201526064016109f7565b611a1a613952565b6040516001600160401b038316907feaffa3d968707ec919a2fc9f31d5ab2b86c905881ff561725d5a82fc95ad464090600090a250505050565b600080611a60607a5490565b90506000805b828110156111df576000611a7982613999565b80549091506001600160401b03878116600160a01b9092041614801590611ab157508054611ab19087906001600160a01b03166124c8565b15611ac45782611ac081615520565b9350505b5080611acf81615520565b915050611a66565b60006078826001600160401b031681548110611af557611af561558b565b6000918252602090912001546001600160a01b031692915050565b3360009081526074602052604090205460ff1680611b305750607e5460ff165b611b4c5760405162461bcd60e51b81526004016109f79061534b565b60335460ff1615611b6f5760405162461bcd60e51b81526004016109f7906152f5565b611b7f6040880160208901614fff565b6001600160401b0316611b956020890189614fff565b6001600160401b031610611bd95760405162461bcd60e51b815260206004820152600b60248201526a2ba927a723afa7a92222a960a91b60448201526064016109f7565b611be1612228565b6001600160401b0316611bfa6040890160208a01614fff565b6001600160401b03161115611c405760405162461bcd60e51b815260206004820152600c60248201526b1393d517d41493d413d4d15160a21b60448201526064016109f7565b611c4d6020880188614fff565b6001600160401b0316611c686075546001600160401b031690565b6001600160401b031610611cb25760405162461bcd60e51b81526020600482015260116024820152701053149150511657d0d3d3919254935151607a1b60448201526064016109f7565b6000611cd288825b602002016020810190611ccd9190614fff565b612ced565b90506000611ce1896001611cba565b600380820154908401549192506001600160401b03918216911614611d345760405162461bcd60e51b81526020600482015260096024820152682224a3232fa82922ab60b91b60448201526064016109f7565b611d538a60005b602002016020810190611d4e9190614f94565b612d58565b611d5e8a6001611d3b565b611d85611d6e60208b018b614fff565b8b60005b6020020160208101906107c99190614f94565b611dc65760405162461bcd60e51b815260206004820152601260248201527114d51052d1548c57d393d517d4d51052d15160721b60448201526064016109f7565b611de1611dd960408b0160208c01614fff565b8b6001611d72565b611e225760405162461bcd60e51b815260206004820152601260248201527114d51052d1548c97d393d517d4d51052d15160721b60448201526064016109f7565b604080518082018252611ea391611e9391908b90600290839083908082843760009201829052506040805180820190915292508c9150600290835b82821015611e8957611e7a60808302850136819003810190615504565b81526020019060010190611e5d565b50505050896139bf565b85358560005b6020020135613a69565b826001015414611ee25760405162461bcd60e51b815260206004820152600a6024820152694348414c5f484153483160b01b60448201526064016109f7565b611ef3856020860135856001611e99565b816001015414611f325760405162461bcd60e51b815260206004820152600a60248201526921a420a62fa420a9a41960b11b60448201526064016109f7565b60655460038301546000916001600160401b03600160401b91829004811692611f60928935929104166153ac565b6003850154611f77906001600160401b0316612ced565b60040154611f959190600160401b90046001600160401b0316615551565b611f9f9190615551565b90506020850135811015611fda57611fd2611fbd60208d018d614f94565b611fcd60408e0160208f01614f94565b612b2d565b505050612138565b600061201a8c8b8b8b89600c611ff18d358a6153ac565b611ffb91906155a1565b600c61200b60208f01358b6153ac565b61201591906155a1565b613aa7565b905061209d61202c60208e018e614f94565b8d60016020020160208101906120429190614f94565b6001600160a01b03918216600090815260796020526040808220600190810180546001600160401b038916600160801b0267ffffffffffffffff60801b19918216811790925594909516835291200180549091169091179055565b6001600160401b0381167f6db7dc2f507647d135035469b27aa79cea90582779d084a7821d6cd092cbd8736120d560208f018f614f94565b8e60016020020160208101906120eb9190614f94565b8e60006020020160208101906121019190614fff565b604080516001600160a01b0394851681529390921660208401526001600160401b03169082015260600160405180910390a2505050505b5050505050505050565b3360009081526074602052604090205460ff16806121625750607e5460ff165b61217e5760405162461bcd60e51b81526004016109f79061534b565b60335460ff16156121a15760405162461bcd60e51b81526004016109f7906152f5565b6075546001600160401b03166121b682610e0f565b6001600160401b031611156121fa5760405162461bcd60e51b815260206004820152600a6024820152691513d3d7d49150d1539560b21b60448201526064016109f7565b61220381612d58565b610e0c81613b66565b61221583613c16565b61221f8282610b21565b610aa283613d38565b607554600160801b90046001600160401b031690565b3360009081526074602052604090205460ff168061225e5750607e5460ff165b61227a5760405162461bcd60e51b81526004016109f79061534b565b60335460ff161561229d5760405162461bcd60e51b81526004016109f7906152f5565b607a5482106122df5760405162461bcd60e51b815260206004820152600e60248201526d4e4f5f535543485f5a4f4d42494560901b60448201526064016109f7565b60006122ea83612767565b905060006122f7846128f6565b905060008061230e6075546001600160401b031690565b6001600160401b031690505b80836001600160401b03161015801561233257508482105b1561237157600061234284612ced565b905061234e8486613dfe565b60038101546001600160401b031693508261236881615520565b9350505061231a565b80836001600160401b031610156123905761238b86613f48565b61239a565b61239a868461400e565b505050505050565b6000611637614057565b6000805b607a5481101561240757607a81815481106123cd576123cd61558b565b6000918252602090912001546001600160a01b03848116911614156123f55750600192915050565b806123ff81615520565b9150506123b0565b50600092915050565b612418614dc2565b61242182612ced565b6040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e0870152918204831661010086015281048216610120850152919091041661014082015260059091015461016082015292915050565b6001600160401b03821660009081526077602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b60006125158484846001600160401b0316612e7b565b90505b9392505050565b607e5460ff16156125425760405162461bcd60e51b81526004016109f79061531f565b467f00000000000000000000000000000000000000000000000000000000000000001415610b125760405162461bcd60e51b815260206004820152601460248201527310d210525397d25117d393d517d0d2105391d15160621b60448201526064016109f7565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156126375760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b60648201526084016109f7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661266961408a565b6001600160a01b0316146126d45760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b6163746976652070726f787960a01b60648201526084016109f7565b6001600160a01b03811661271d5760405162461bcd60e51b815260206004820152601060248201526f2722a2a22fa9aa20a5a2afaa27a5a2a760811b60448201526064016109f7565b6072546001600160a01b0316610e0c5760405162461bcd60e51b815260206004820152600f60248201526e046414345545f4e4f545f455243323608c1b60448201526064016109f7565b6000607a8281548110611af557611af561558b565b61278584613c16565b612790838383610f30565b61118d84613d38565b607554600160401b90046001600160401b031690565b6001600160a01b038116600090815260796020526040812060010154600160c01b900460ff1680156124f957506075546124f9906001600160401b0316836124c8565b3360009081526074602052604090205460ff16806128125750607e5460ff165b61282e5760405162461bcd60e51b81526004016109f79061534b565b60335460ff16156128515760405162461bcd60e51b81526004016109f7906152f5565b600061285c607a5490565b905060006128726075546001600160401b031690565b6001600160401b03169050825b8281101561118d575b81612892826128f6565b6001600160401b031610156128c9576128aa81613f48565b826128b4816155c0565b9350508281106128c45750505050565b612888565b806128d381615520565b91505061287f565b6001600160a01b031660009081526079602052604090205490565b6000607a828154811061290b5761290b61558b565b600091825260209091200154600160a01b90046001600160401b031692915050565b3360009081526074602052604090205460ff168061294d5750607e5460ff165b6129695760405162461bcd60e51b81526004016109f79061534b565b60335460ff161561298c5760405162461bcd60e51b81526004016109f7906152f5565b61299682826140b2565b61299f81613d38565b5050565b60007f000000000000000000000000000000000000000000000000000000000000000015612a01576001600160401b0382166000908152607f6020526040902054806124f95760405162461bcd60e51b81526004016109f7906155d7565b6000612a0c83612ced565b6003810154909150600160401b90046001600160401b0316612a405760405162461bcd60e51b81526004016109f7906155d7565b60040154600160c01b90046001600160401b031692915050565b919050565b6001600160a01b03828116600090815260796020526040808220928416825281206001830154919291600160801b90046001600160401b031680612acf5760405162461bcd60e51b81526020600482015260076024820152661393d7d0d2105360ca1b60448201526064016109f7565b60018201546001600160401b03828116600160801b9092041614612b245760405162461bcd60e51b815260206004820152600c60248201526b1112519197d25397d0d2105360a21b60448201526064016109f7565b95945050505050565b6000612b38826128db565b90506000612b45846128db565b905080821115612b6657612b598382612dc8565b612b6390836153ac565b91505b6000612b7360028461560e565b9050612b7f8582614120565b612b8981846153ac565b9250612bbd856001600160a01b03166000908152607960205260409020600101805467ffffffffffffffff60801b19169055565b607154612bd3906001600160a01b031684614185565b612bdc84614221565b5050505050565b600080612bf1611ccd612228565b6040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e0870152918204831661010086015281048216610120850152919091041661014082018190526005909201546101608201529150612ca257600091505090565b606554610140820151439161b2fa91612cc4916001600160401b031690615622565b6001600160401b0316612cd79190615551565b1015612ce557600191505090565b600091505090565b6001600160401b0316600090815260766020526040902090565b6001600160a01b0382166000908152607960205260409020612d2982846142c7565b60010180546001600160401b03909216600160401b0267ffffffffffffffff60401b1990921691909117905550565b612d618161163c565b612d7d5760405162461bcd60e51b81526004016109f790615372565b6000612d88826116ee565b6001600160401b031614610e0c5760405162461bcd60e51b8152602060048201526007602482015266125397d0d2105360ca1b60448201526064016109f7565b6001600160a01b0382166000908152607960205260408120805480841115612e255760405162461bcd60e51b815260206004820152601060248201526f544f4f5f4c4954544c455f5354414b4560801b60448201526064016109f7565b6000612e3185836153ac565b8584559050612e408682614185565b60408051838152602081018790526001600160a01b03881691600080516020615b04833981519152910160405180910390a295945050505050565b600081612e8960018561564d565b6001600160401b03161415612ea15750606754612518565b6000612eac84612ced565b60030154600160401b90046001600160401b0316905080851015612ed4575050606754612518565b6000604051806101400160405280600162ffffff1681526020016201e05b62ffffff1681526020016201f7d162ffffff1681526020016201389162ffffff168152602001620329e162ffffff1681526020016201be4362ffffff1681526020016204cb8c62ffffff1681526020016201fbc462ffffff16815260200162036d3262ffffff1681526020016202797362ffffff1681525090506000604051806101400160405280600162ffffff1681526020016201c03062ffffff1681526020016201b69962ffffff16815260200161fde262ffffff168152602001620265c662ffffff16815260200162013b8e62ffffff168152602001620329e162ffffff1681526020016201389162ffffff1681526020016201f7d162ffffff1681526020016201537562ffffff1681525090506000838861301191906153ac565b6065549091506000906001600160401b031661302e83600a6155a1565b613038919061560e565b90506000613047600a8361560e565b613052906002615759565b9050600085613062600a85615765565b600a81106130725761307261558b565b60200201516130869062ffffff16836155a1565b9050600085613096600a86615765565b600a81106130a6576130a661558b565b60200201516130ba9062ffffff168361560e565b9050806130c5575060015b806067546130d391906155a1565b9c9b505050505050505050505050565b6020810151600090815b602002015192915050565b6000600161310e610140870161012088016153e8565b600381111561311f5761311f6153c3565b148061314d5750600261313a610140870161012088016153e8565b600381111561314b5761314b6153c3565b145b61318c5760405162461bcd60e51b815260206004820152601060248201526f4241445f41465445525f53544154555360801b60448201526064016109f7565b613194614e26565b61319d85612410565b6060820152606a54604080516221048360e21b815290516001600160a01b03909216916284120c91600480820192602092909190829003018186803b1580156131e557600080fd5b505afa1580156131f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061321d9190615779565b815260608101515161322f878661448d565b1461326e5760405162461bcd60e51b815260206004820152600f60248201526e0a0a48aacbea6a882a88abe9082a69608b1b60448201526064016109f7565b600061328561106736899003890160a08a01615504565b9050600061329b611067368a90038a018a615504565b9050806001600160401b0316826001600160401b031610156132f15760405162461bcd60e51b815260206004820152600f60248201526e494e424f585f4241434b574152445360881b60448201526064016109f7565b806001600160401b0316826001600160401b031614156133975761332261331d368a90038a018a615504565b6144e7565b6001600160401b031661334061331d368b90038b0160a08c01615504565b6001600160401b031610156133975760405162461bcd60e51b815260206004820152601a60248201527f494e424f585f504f535f494e5f4d53475f4241434b574152445300000000000060448201526064016109f7565b60026133ab6101408a016101208b016153e8565b60038111156133bc576133bc6153c3565b14806133e5575060006133da61331d368b90038b0160a08c01615504565b6001600160401b0316115b156133f857816133f481615792565b9250505b82516001600160401b03831611156134435760405162461bcd60e51b815260206004820152600e60248201526d12539093d617d41054d517d1539160921b60448201526064016109f7565b6001600160401b038216156134eb57606a546001600160a01b03166316bf557961346e60018561564d565b6040516001600160e01b031960e084901b1681526001600160401b03909116600482015260240160206040518083038186803b1580156134ad57600080fd5b505afa1580156134c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134e59190615779565b60e08401525b506135059050613500368890038801886157f8565b6144f6565b6040820152606554613520906001600160401b031643615622565b6001600160401b0390811660c0830152606082015161012001511615801560a08301526135675761355981606001516101200151612ced565b600501546080820152613577565b6060810151610160015160808201525b6135968160a00151826080015183604001518460e00151606854614595565b9150828214806135a4575082155b6135e75760405162461bcd60e51b81526020600482015260146024820152730aa9c8ab0a08a86a88a88be9c9e888abe9082a6960631b60448201526064016109f7565b61362f6135fb8760a001836000015161448d565b61360c836040015143606854613a69565b61362361361e368b90038b018b6157f8565b614602565b888560c001518761462c565b6020820152600061363e612228565b613649906001615622565b9050600061365687612ced565b90506136628183614680565b61366f83602001516146f1565b50508181606001516101600151613684612228565b6001600160401b03167f4f4caa9e67fb994e349dd35d1ad0ce23053d4323f83ce11dc817b5435031d09684604001518a8660e0015160685488600001516040516136d29594939291906158f3565b60405180910390a450949350505050565b80608001516001600160401b0316431015610e0c5760405162461bcd60e51b815260206004820152600f60248201526e4245464f52455f444541444c494e4560881b60448201526064016109f7565b8060a001516001600160401b0316431015610e0c5760405162461bcd60e51b815260206004820152601060248201526f10d212531117d513d3d7d49150d1539560821b60448201526064016109f7565b600061378d84612ced565b905061379983836148df565b8160020154146137da5760405162461bcd60e51b815260206004820152600c60248201526b434f4e4649524d5f4441544160a01b60448201526064016109f7565b606b54604051630502677360e51b815260048101849052602481018590526001600160a01b039091169063a04cee6090604401600060405180830381600087803b15801561382757600080fd5b505af115801561383b573d6000803e3d6000fd5b50506075805467ffffffffffffffff19166001600160401b038816179055506138679050846001615622565b6075805467ffffffffffffffff60401b1916600160401b6001600160401b03938416021790556040805185815260208101859052918616917f22ef0479a7ff660660d1c2fe35f1b632cf31675c2d9378db8cec95b00d8ffa3c91015b60405180910390a250505050565b6001600160a01b0381166000908152607b60205260408120805490829055607c805482919084906139039084906153ac565b909155505060408051828152600060208201526001600160a01b038516917fa740af14c56e4e04a617b1de1eb20de73270decbaaead14f142aabf3038e5ae2910160405180910390a292915050565b60758054600160401b90046001600160401b031690600861397283615792565b91906101000a8154816001600160401b0302191690836001600160401b0316021790555050565b6000607a82815481106139ae576139ae61558b565b906000526020600020019050919050565b60408051600280825260608201835260009283929190602083019080368337019050508551909150613a01906139fc8660005b60200201516148fb565b61496f565b81600081518110613a1457613a1461558b565b6020908102919091010152613a3585600160200201516139fc8660016139f2565b81600181518110613a4857613a4861558b565b602002602001018181525050612b246000846001600160401b031683614a93565b6040805160208101859052908101839052606081018290526000906080015b6040516020818303038152906040528051906020012090509392505050565b606e546000906001600160a01b03166314eab5e78535898989613acd60208f018f614f94565b8e6001602002016020810190613ae39190614f94565b8a8a6040518963ffffffff1660e01b8152600401613b08989796959493929190615955565b602060405180830381600087803b158015613b2257600080fd5b505af1158015613b36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b5a9190615a05565b98975050505050505050565b6001600160a01b038116600090815260796020526040812090613b916075546001600160401b031690565b9050613b9d81846124c8565b15613bd25760018201546001600160401b03828116600160401b9092041614613bc857613bc861553b565b613bd28184613dfe565b8154613bde8482614185565b613be784614aaa565b60408051828152600060208201526001600160a01b03861691600080516020615b0483398151915291016138c3565b3360009081526074602052604090205460ff1680613c365750607e5460ff165b613c525760405162461bcd60e51b81526004016109f79061534b565b60335460ff1615613c755760405162461bcd60e51b81526004016109f7906152f5565b613c7e3361163c565b15613c9b5760405162461bcd60e51b81526004016109f790615a22565b613ca4336123ac565b15613ce45760405162461bcd60e51b815260206004820152601060248201526f5354414b45525f49535f5a4f4d42494560801b60448201526064016109f7565b613cec610e3d565b811015613d2e5760405162461bcd60e51b815260206004820152601060248201526f4e4f545f454e4f5547485f5354414b4560801b60448201526064016109f7565b610e0c3382614c50565b6072546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd90606401602060405180830381600087803b158015613d8a57600080fd5b505af1158015613d9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dc29190615569565b610e0c5760405162461bcd60e51b815260206004820152600d60248201526c1514905394d1915497d1905253609a1b60448201526064016109f7565b6001600160401b03821660009081526077602090815260408083206001600160a01b038516845290915290205460ff16613e4a5760405162461bcd60e51b81526004016109f790615372565b6001600160401b03821660009081526077602090815260408083206001600160a01b03851684529091528120805460ff19169055613e8783612ced565b600381018054919250600160c01b9091046001600160401b0316906018613ead83615a4a565b91906101000a8154816001600160401b0302191690836001600160401b031602179055505060006001600160401b0316836001600160401b03161115610aa2576003810154613f04906001600160401b0316612ced565b60040180546001600160401b0316906000613f1e83615a4a565b91906101000a8154816001600160401b0302191690836001600160401b0316021790555050505050565b607a8054613f58906001906153ac565b81548110613f6857613f6861558b565b90600052602060002001607a8281548110613f8557613f8561558b565b600091825260209091208254910180546001600160a01b039092166001600160a01b031983168117825592546001600160e01b0319909216909217600160a01b918290046001600160401b0316909102179055607a805480613fe957613fe9615a6d565b600082815260209020810160001990810180546001600160e01b031916905501905550565b80607a83815481106140225761402261558b565b9060005260206000200160000160146101000a8154816001600160401b0302191690836001600160401b031602179055505050565b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60007f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d61407b565b3360009081526074602052604090205460ff16806140d25750607e5460ff165b6140ee5760405162461bcd60e51b81526004016109f79061534b565b60335460ff16156141115760405162461bcd60e51b81526004016109f7906152f5565b61411a82612d58565b61299f82825b6001600160a01b0382166000908152607960205260408120805490916141468483615551565b80845560408051848152602081018390529192506001600160a01b03871691600080516020615b04833981519152910160405180910390a25050505050565b6001600160a01b0382166000908152607b6020526040812054906141a98383615551565b6001600160a01b0385166000908152607b60205260408120829055607c805492935085929091906141db908490615551565b909155505060408051838152602081018390526001600160a01b038616917fa740af14c56e4e04a617b1de1eb20de73270decbaaead14f142aabf3038e5ae291016138c3565b6001600160a01b03808216600081815260796020908152604080832081518083019092529381526001808501546001600160401b03600160401b9091048116938301938452607a8054928301815590945290517ff0440771a29e57e18c66727944770b82cc77924aef333c927ce6bdd2cdb3ae0390910180549251909316600160a01b026001600160e01b03199092169416939093179290921790915561299f82614aaa565b6001600160401b03821660009081526077602090815260408083206001600160a01b038516845290915290205460ff16156143145760405162461bcd60e51b81526004016109f790615a22565b6001600160401b03821660009081526077602090815260408083206001600160a01b03851684529091528120805460ff1916600117905561435483612ced565b6003810154909150600160401b90046001600160401b03166143885760405162461bcd60e51b81526004016109f7906155d7565b6003810154600160c01b90046001600160401b03166143a8816001615622565b6003830180546001600160c01b0316600160c01b6001600160401b039384160217905584161561118d5760038201546000906143ec906001600160401b0316612ced565b6004810180549192506001600160401b0390911690600061440c83615792565b91906101000a8154816001600160401b0302191690836001600160401b0316021790555050816001600160401b031660001415612bdc57606554612bdc9061445d906001600160401b031643615622565b60038301805467ffffffffffffffff60801b1916600160801b6001600160401b0390931692909202919091179055565b60006144a66144a136859003850185615504565b6148fb565b826144b760a08601608087016153e8565b6040516020016144c993929190615a83565b60405160208183030381529060405280519060200120905092915050565b602081015160009060016130ed565b6000614500614e77565b82516020015181906003811115614519576145196153c3565b9081600381111561452c5761452c6153c3565b90525060208381015181015190820190600381111561454d5761454d6153c3565b90816003811115614560576145606153c3565b90525061456b614e95565b83515181526020808501515190820152604084015161458d90839083906139bf565b949350505050565b600080866145a45760006145a7565b60015b6040516001600160f81b031960f883901b1660208201526021810188905260418101879052606181018690526081810185905290915060a1016040516020818303038152906040528051906020012091505095945050505050565b60006124f9614618836020015160000151614dab565b60208401515161462790614db6565b6148df565b614634614dc2565b61463c614dc2565b96875250602086019490945260408501929092526001600160401b0390811660608501529081166080840181905260a0840152431661014083015261016082015290565b6004820154600160401b90046001600160401b03166146c15760048201805467ffffffffffffffff60401b1916600160401b436001600160401b0316021790555b600490910180546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b60758054600160801b90046001600160401b031690601061471183615792565b825461010092830a6001600160401b03818102199092169282160291909117909255607554600160801b908190048316600090815260766020908152604091829020875181559087015160018201559086015160028201556060860151600382018054608089015160a08a015160c08b01519489166001600160801b031993841617600160401b928a168302176001600160801b03908116918a1688026001600160c01b0390811692909217600160c01b968b1687021790945560e08b0151600487018054998d01516101208e01516101408f0151938d169b9096169a909a17998b16909302989098179093169188169095029091161793909416909302919091179055610160830151600590910155507f000000000000000000000000000000000000000000000000000000000000000015610e0c5760646001600160a01b031663a3b1b31d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561488257600080fd5b505afa158015614896573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148ba9190615779565b607554600160801b90046001600160401b03166000908152607f602052604090205550565b60408051602081018490529081018290526000906060016144c9565b8051805160209182015192820151805190830151604080516c23b637b130b61039ba30ba329d60991b81870152602d810194909452604d8401959095526001600160c01b031960c092831b8116606d850152911b1660758201528251808203605d018152607d909101909252815191012090565b60006001836003811115614985576149856153c3565b14156149cb576040516b213637b1b59039ba30ba329d60a11b6020820152602c8101839052604c015b6040516020818303038152906040528051906020012090506124f9565b60028360038111156149df576149df6153c3565b1415614a155760405174213637b1b59039ba30ba32961032b93937b932b21d60591b6020820152603581018390526055016149ae565b6003836003811115614a2957614a296153c3565b1415614a585760405174213637b1b59039ba30ba3296103a37b7903330b91d60591b60208201526035016149ae565b60405162461bcd60e51b815260206004820152601060248201526f4241445f424c4f434b5f53544154555360801b60448201526064016109f7565b6000838383604051602001613a8893929190615ac1565b6001600160a01b03811660009081526079602052604090206001810154600160c01b900460ff16614aed5760405162461bcd60e51b81526004016109f790615372565b600180820154607880546001600160401b03909216929091614b0f91906153ac565b81548110614b1f57614b1f61558b565b600091825260209091200154607880546001600160a01b03909216916001600160401b038416908110614b5457614b5461558b565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080607960006078846001600160401b031681548110614ba357614ba361558b565b6000918252602080832091909101546001600160a01b031683528201929092526040019020600101805467ffffffffffffffff19166001600160401b03929092169190911790556078805480614bfb57614bfb615a6d565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03949094168152607990935250506040812090815560010180546001600160c81b0319169055565b6078805460018082019092557f8dc6fb69531d98d70dc0420e638d2dfd04e09e1ec783ede9aac77da9c5a0dac4810180546001600160a01b0319166001600160a01b0386169081179091556040805160a0810182528581526001600160401b038085166020808401918252607580548416858701908152600060608701818152608088018c81528a835260798652898320985189559551978c0180549351915196519888166001600160801b031990941693909317600160401b918816919091021768ffffffffffffffffff60801b1916600160801b9587169590950260ff60c01b191694909417600160c01b9615158702179055805484168352607782528583208784528252858320805460ff191690991790985587546001600160c01b031643909316909302919091179095558151948552840185905291929091600080516020615b04833981519152910160405180910390a2505050565b8051600090816130ed565b805160009060016130ed565b6040805161018081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081018290526101208101829052610140810182905261016081019190915290565b60405180610100016040528060008152602001614e41614dc2565b815260006020820152604001614e55614dc2565b8152600060208201819052604082018190526060820181905260809091015290565b60405180604001604052806002906020820280368337509192915050565b60405180604001604052806002905b614eac614ec2565b815260200190600190039081614ea45790505090565b6040518060400160405280614ed5614e77565b8152602001614ee2614e77565b905290565b80356001600160a01b0381168114612a5a57600080fd5b600080600060608486031215614f1357600080fd5b83359250614f2360208501614ee7565b9150614f3160408501614ee7565b90509250925092565b6001600160401b0381168114610e0c57600080fd5b60008060408385031215614f6257600080fd5b8235614f6d81614f3a565b946020939093013593505050565b600060208284031215614f8d57600080fd5b5035919050565b600060208284031215614fa657600080fd5b61251882614ee7565b60006101608284031215614fc257600080fd5b50919050565b60008060006101a08486031215614fde57600080fd5b614fe88585614faf565b956101608501359550610180909401359392505050565b60006020828403121561501157600080fd5b813561251881614f3a565b6000806040838503121561502f57600080fd5b50508035926020909101359150565b80604081018310156124f957600080fd5b600080600080600080600080610280898b03121561506c57600080fd5b6150768a8a61503e565b97506150858a60408b0161503e565b96506150948a60808b0161503e565b95506101c089018a8111156150a857600080fd5b60c08a019550356150b881614f3a565b93506101e089013592506150d08a6102008b0161503e565b91506150e08a6102408b0161503e565b90509295985092959890939650565b60008060006060848603121561510457600080fd5b83359250602084013561511681614f3a565b929592945050506040919091013590565b600061018082019050825182526020830151602083015260408301516040830152606083015161516260608401826001600160401b03169052565b50608083015161517d60808401826001600160401b03169052565b5060a083015161519860a08401826001600160401b03169052565b5060c08301516151b360c08401826001600160401b03169052565b5060e08301516151ce60e08401826001600160401b03169052565b50610100838101516001600160401b038116848301525050610120838101516001600160401b038116848301525050610140838101516001600160401b03811684830152505061016092830151919092015290565b6000806040838503121561523657600080fd5b823561524181614f3a565b915061524f60208401614ee7565b90509250929050565b60008060006060848603121561526d57600080fd5b83359250602084013561527f81614f3a565b9150604084013561528f81614f3a565b809150509250925092565b6000806000806101c085870312156152b157600080fd5b843593506152c28660208701614faf565b9396939550505050610180820135916101a0013590565b600080604083850312156152ec57600080fd5b614f6d83614ee7565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526012908201527115d2125511531254d517d11254d05093115160721b604082015260600190565b6020808252600d908201526c2727aa2fab20a624a220aa27a960991b604082015260600190565b6020808252600a90820152691393d517d4d51052d15160b21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156153be576153be615396565b500390565b634e487b7160e01b600052602160045260246000fd5b803560048110612a5a57600080fd5b6000602082840312156153fa57600080fd5b612518826153d9565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b038111828210171561543b5761543b615403565b60405290565b60006080828403121561545357600080fd5b61545b615419565b905082601f83011261546c57600080fd5b615474615419565b80604084018581111561548657600080fd5b845b818110156154a0578035845260209384019301615488565b5081845285605f8601126154b357600080fd5b6154bb615419565b925082915060808501868111156154d157600080fd5b808210156154f65781356154e481614f3a565b845260209384019391909101906154d1565b505060208301525092915050565b60006080828403121561551657600080fd5b6125188383615441565b600060001982141561553457615534615396565b5060010190565b634e487b7160e01b600052600160045260246000fd5b6000821982111561556457615564615396565b500190565b60006020828403121561557b57600080fd5b8151801515811461251857600080fd5b634e487b7160e01b600052603260045260246000fd5b60008160001904831182151516156155bb576155bb615396565b500290565b6000816155cf576155cf615396565b506000190190565b6020808252600790820152664e4f5f4e4f444560c81b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b60008261561d5761561d6155f8565b500490565b60006001600160401b0380831681851680830382111561564457615644615396565b01949350505050565b60006001600160401b038381169083168181101561566d5761566d615396565b039392505050565b600181815b808511156156b057816000190482111561569657615696615396565b808516156156a357918102915b93841c939080029061567a565b509250929050565b6000826156c7575060016124f9565b816156d4575060006124f9565b81600181146156ea57600281146156f457615710565b60019150506124f9565b60ff84111561570557615705615396565b50506001821b6124f9565b5060208310610133831016604e8410600b8410161715615733575081810a6124f9565b61573d8383615675565b806000190482111561575157615751615396565b029392505050565b600061251883836156b8565b600082615774576157746155f8565b500690565b60006020828403121561578b57600080fd5b5051919050565b60006001600160401b03808316818114156157af576157af615396565b6001019392505050565b600060a082840312156157cb57600080fd5b6157d3615419565b90506157df8383615441565b81526157ed608083016153d9565b602082015292915050565b6000610160828403121561580b57600080fd5b604051606081018181106001600160401b038211171561582d5761582d615403565b60405261583a84846157b9565b81526158498460a085016157b9565b602082015261014083013561585d81614f3a565b60408201529392505050565b604081833760006040838101828152908301915b6002811015612bdc57823561589181614f3a565b6001600160401b031682526020928301929091019060010161587d565b600481106158cc57634e487b7160e01b600052602160045260246000fd5b9052565b6158da8282615869565b6158e6608082016153d9565b610aa260808401826158ae565b8581526101e0810161590860208301876158d0565b61591860c0830160a088016158d0565b61014086013561592781614f3a565b6001600160401b03166101608301526101808201949094526101a08101929092526101c09091015292915050565b888152610200810160208083018a60005b6002811015615991576159818361597c846153d9565b6158ae565b9183019190830190600101615966565b50505050606082018860005b60028110156159c3576159b08383615869565b608092830192919091019060010161599d565b5050506001600160401b03969096166101608201526001600160a01b03948516610180820152929093166101a08301526101c08201526101e001529392505050565b600060208284031215615a1757600080fd5b815161251881614f3a565b6020808252600e908201526d1053149150511657d4d51052d15160921b604082015260600190565b60006001600160401b03821680615a6357615a63615396565b6000190192915050565b634e487b7160e01b600052603160045260246000fd5b838152826020820152600060048310615aac57634e487b7160e01b600052602160045260246000fd5b5060f89190911b604082015260410192915050565b83815260006020848184015260408301845182860160005b82811015615af557815184529284019290840190600101615ad9565b50919897505050505050505056feebd093d389ab57f3566918d2c379a2b4d9539e8eb95efad9d5e465457833fde6a2646970667358221220f10ebc081a9a1e4c45b47b7d6f4af099f1dc080cc111da3ff4986682ed00bc4e64736f6c63430008090033",
|
|
1709
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106103875760003560e01c8063771b2f97116101e0578063cd205fda11610110578063edfd03ed116100a8578063edfd03ed14610919578063ee35f3271461092c578063ef40a6701461093f578063f065de3f14610952578063f33e1fac14610965578063f3f0a03e14610978578063f63a434a1461098b578063facd743b1461099e578063fb0e722b146109c157600080fd5b8063cd205fda1461080f578063ce11e6ab14610822578063d01e660214610835578063d29a4e2714610848578063d735e21d1461085b578063dcd030aa14610863578063dff6978714610876578063e78cea921461087e578063e8bd49221461089157600080fd5b806392c8134c1161018357806392c8134c1461067d5780639a8a05921461069d578063a23c44b1146106a6578063aa38a6e7146107a8578063aa65af48146107bb578063b0ebedc7146107ce578063bc45e0ae146107e1578063c2c2e68e146107f4578063c4d66de8146107fc57600080fd5b8063771b2f97146105f9578063773d984e146106135780637ba9534a146106265780637e2d21551461062e5780638640ce5f146106415780638da5cb5b146106595780638ee1a1261461066157806391c657e81461066a57600080fd5b806354ce8961116102bb57806367425daf1161025e57806367425daf1461056d57806369fd251c146105755780636b94c33b146105885780636d08d0a21461059b5780636ddd3744146105ae5780636f57644e146105c157806371ef232c146105d45780637427be51146105dd57806376e7e23b146105f057600080fd5b806354ce8961146104f55780635c617e94146105085780635c975abb1461051b5780635eb405d51461052657806361373919146105395780636177fd181461054157806363721d6b1461055457806365f7f80d1461055c57600080fd5b80632b2af0ab1161032e5780632b2af0ab146104465780632e7acfa6146104595780632f30cabd146104845780633e96576e146104ad57806345e38b64146104c05780634ceccfe5146104c95780634d26732d146104d257806351ed6a30146104da57806352d1902d146104ed57600080fd5b8063014cc92c1461038c578063023a96fe146103bc5780630357aa49146103cf57806312ab3d3b146103e457806318baaab9146104015780631aeb55a0146104095780631b1689e91461041c5780631e83d30f14610433575b600080fd5b606f5461039f906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b606e5461039f906001600160a01b031681565b6103e26103dd366004614efe565b6109d4565b005b607e546103f19060ff1681565b60405190151581526020016103b3565b6103e2610aa7565b6103e2610417366004614f4f565b610b21565b610425607d5481565b6040519081526020016103b3565b6103e2610441366004614f7b565b610ce1565b6103e2610454366004614f7b565b610d6b565b60655461046c906001600160401b031681565b6040516001600160401b0390911681526020016103b3565b610425610492366004614f94565b6001600160a01b03166000908152607b602052604090205490565b61046c6104bb366004614f94565b610e0f565b61042560735481565b61042561b2fa81565b610425610e3d565b60725461039f906001600160a01b031681565b610425610e6b565b6103e2610503366004614fc8565b610f30565b610425610516366004614fff565b611193565b60335460ff166103f1565b6103e261053436600461501c565b6111e7565b61042561150a565b6103f161054f366004614f94565b61163c565b607a54610425565b6075546001600160401b031661046c565b6103e2611664565b61046c610583366004614f94565b6116ee565b6103e2610596366004614f94565b61171c565b6104256105a9366004614fff565b611a54565b61039f6105bc366004614fff565b611ad7565b6103e26105cf36600461504f565b611b10565b610425607c5481565b6103e26105eb366004614f94565b612142565b61042560675481565b60655461046c90600160401b90046001600160401b031681565b6103e26106213660046150ef565b61220c565b61046c612228565b6103e261063c36600461501c565b61223e565b607554600160c01b90046001600160401b031661046c565b61039f6123a2565b61042560685481565b6103f1610678366004614f94565b6123ac565b61069061068b366004614fff565b612410565b6040516103b39190615127565b61042560665481565b6107536106b4366004614f94565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506001600160a01b0316600090815260796020908152604091829020825160a081018452815481526001909101546001600160401b0380821693830193909352600160401b8104831693820193909352600160801b83049091166060820152600160c01b90910460ff161515608082015290565b6040516103b39190600060a0820190508251825260208301516001600160401b038082166020850152806040860151166040850152806060860151166060850152505060808301511515608083015292915050565b606d5461039f906001600160a01b031681565b6103f16107c9366004615223565b6124c8565b6104256107dc366004615258565b6124ff565b60705461039f906001600160a01b031681565b6103e261251f565b6103e261080a366004614f94565b6125a9565b6072546001600160a01b031615156103f1565b606b5461039f906001600160a01b031681565b61039f610843366004614f7b565b612767565b6103e261085636600461529a565b61277c565b61046c612799565b6103f1610871366004614f94565b6127af565b60785461046c565b606a5461039f906001600160a01b031681565b6108e161089f366004614f94565b607960205260009081526040902080546001909101546001600160401b0380821691600160401b8104821691600160801b82041690600160c01b900460ff1685565b604080519586526001600160401b0394851660208701529284169285019290925290911660608301521515608082015260a0016103b3565b6103e2610927366004614f7b565b6127f2565b606c5461039f906001600160a01b031681565b61042561094d366004614f94565b6128db565b60715461039f906001600160a01b031681565b61046c610973366004614f7b565b6128f6565b6103e26109863660046152d9565b61292d565b610425610999366004614fff565b6129a3565b6103f16109ac366004614f94565b60746020526000908152604090205460ff1681565b60695461039f906001600160a01b031681565b60335460ff1615610a005760405162461bcd60e51b81526004016109f7906152f5565b60405180910390fd5b606e546001600160a01b03163314610a495760405162461bcd60e51b815260206004820152600c60248201526b2ba927a723afa9a2a72222a960a11b60448201526064016109f7565b610a538282612a5f565b6001600160401b03168314610a985760405162461bcd60e51b815260206004820152600b60248201526a1393d517d25397d0d2105360aa1b60448201526064016109f7565b610aa28282612b2d565b505050565b607e5460ff1615610aca5760405162461bcd60e51b81526004016109f79061531f565b610ad2612be3565b610b125760405162461bcd60e51b815260206004820152601160248201527056414c494441544f525f4e4f545f41464b60781b60448201526064016109f7565b607e805460ff19166001179055565b3360009081526074602052604090205460ff1680610b415750607e5460ff165b610b5d5760405162461bcd60e51b81526004016109f79061534b565b60335460ff1615610b805760405162461bcd60e51b81526004016109f7906152f5565b610b89336127af565b610ba55760405162461bcd60e51b81526004016109f790615372565b610bad612799565b6001600160401b0316826001600160401b031610158015610be75750610bd1612228565b6001600160401b0316826001600160401b031611155b610c2b5760405162461bcd60e51b81526020600482015260156024820152744e4f44455f4e554d5f4f55545f4f465f52414e474560581b60448201526064016109f7565b6000610c3683612ced565b905081816005015414610c785760405162461bcd60e51b815260206004820152600a6024820152694e4f44455f52454f524760b01b60448201526064016109f7565b60038101546001600160401b0316610c8f33610e0f565b6001600160401b031614610cd75760405162461bcd60e51b815260206004820152600f60248201526e2727aa2fa9aa20a5a2a22fa82922ab60891b60448201526064016109f7565b610aa23384612d07565b3360009081526074602052604090205460ff1680610d015750607e5460ff165b610d1d5760405162461bcd60e51b81526004016109f79061534b565b60335460ff1615610d405760405162461bcd60e51b81526004016109f7906152f5565b610d4933612d58565b6000610d53610e3d565b905080821015610d61578091505b610aa23383612dc8565b610d73612799565b6001600160401b0316811015610dbd5760405162461bcd60e51b815260206004820152600f60248201526e1053149150511657d11150d2511151608a1b60448201526064016109f7565b610dc5612228565b6001600160401b0316811115610e0c5760405162461bcd60e51b815260206004820152600c60248201526b1113d154d39517d1561254d560a21b60448201526064016109f7565b50565b6001600160a01b0316600090815260796020526040902060010154600160401b90046001600160401b031690565b600080610e48612799565b9050610e654382610e57612228565b6001600160401b0316612e7b565b91505090565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f0b5760405162461bcd60e51b815260206004820152603b60248201527f555550534e6f745570677261646561626c653a206d757374206e6f742062652060448201527f63616c6c6564207468726f7567682064656c656761746563616c6c000000000060648201526084016109f7565b507f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d90565b3360009081526074602052604090205460ff1680610f505750607e5460ff165b610f6c5760405162461bcd60e51b81526004016109f79061534b565b60335460ff1615610f8f5760405162461bcd60e51b81526004016109f7906152f5565b610f98336127af565b610fb45760405162461bcd60e51b81526004016109f790615372565b6000610fbf33610e0f565b90506000610fcc82612410565b6101400151610fe4906001600160401b0316436153ac565b90506073548110156110255760405162461bcd60e51b815260206004820152600a60248201526954494d455f44454c544160b01b60448201526064016109f7565b6002611039610140870161012088016153e8565b600381111561104a5761104a6153c3565b148061107857508261106c61106736889003880160a08901615504565b6130e3565b6001600160401b031610155b6110b05760405162461bcd60e51b81526020600482015260096024820152681513d3d7d4d350531360ba1b60448201526064016109f7565b60006110c461016087016101408801614fff565b6001600160401b03161161110c5760405162461bcd60e51b815260206004820152600f60248201526e22a6a82a2cafa0a9a9a2a92a24a7a760891b60448201526064016109f7565b600161111e60a08701608088016153e8565b600381111561112f5761112f6153c3565b1461116e5760405162461bcd60e51b815260206004820152600f60248201526e4241445f505245565f53544154555360881b60448201526064016109f7565b5061117b848284866130f8565b5061118d33611188612228565b612d07565b50505050565b60008061119f607a5490565b90506000805b828110156111df576111ba856107c983612767565b156111cd57816111c981615520565b9250505b806111d781615520565b9150506111a5565b509392505050565b3360009081526074602052604090205460ff16806112075750607e5460ff165b6112235760405162461bcd60e51b81526004016109f79061534b565b60335460ff16156112465760405162461bcd60e51b81526004016109f7906152f5565b61124e611664565b6000611258612799565b9050600061126582612ced565b6040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e087015291820483166101008601528104821661012085015291909104166101408201526005820154610160820152909150611311906136e3565b60755460038201546001600160401b039081169116146113335761133361553b565b600381015460009061134d906001600160401b0316612ced565b6040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e0870152918204831661010086015281048216610120850152919091041661014082015260058201546101608201529091506113f990613732565b61140360006127f2565b600061140e84611193565b6003840154909150600090829061142d906001600160401b0316611a54565b61143791906153ac565b6003850154909150600160c01b90046001600160401b0316821061148a5760405162461bcd60e51b815260206004820152600a6024820152694e4f5f5354414b45525360b01b60448201526064016109f7565b60038401546114aa908290600160c01b90046001600160401b0316615551565b60048401546001600160401b0316146114f65760405162461bcd60e51b815260206004820152600e60248201526d1393d517d0531317d4d51052d15160921b60448201526064016109f7565b611501858888613782565b50505050505050565b3360009081526074602052604081205460ff168061152a5750607e5460ff165b6115465760405162461bcd60e51b81526004016109f79061534b565b60335460ff16156115695760405162461bcd60e51b81526004016109f7906152f5565b6000611574336138d1565b60725460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb90604401602060405180830381600087803b1580156115c157600080fd5b505af11580156115d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f99190615569565b6116375760405162461bcd60e51b815260206004820152600f60248201526e1514905394d1915497d19052531151608a1b60448201526064016109f7565b905090565b6001600160a01b0316600090815260796020526040902060010154600160c01b900460ff1690565b600061166e612799565b6001600160401b0316905061168b6075546001600160401b031690565b6001600160401b0316811180156116b257506116a5612228565b6001600160401b03168111155b610e0c5760405162461bcd60e51b815260206004820152600d60248201526c1393d7d553949154d3d3159151609a1b60448201526064016109f7565b6001600160a01b0316600090815260796020526040902060010154600160801b90046001600160401b031690565b3360009081526074602052604090205460ff168061173c5750607e5460ff165b6117585760405162461bcd60e51b81526004016109f79061534b565b60335460ff161561177b5760405162461bcd60e51b81526004016109f7906152f5565b611783611664565b60006117976075546001600160401b031690565b905060006117a3612799565b905060006117b082612ced565b60038101549091506001600160401b0384811691161415611a12576117d4846127af565b6117f05760405162461bcd60e51b81526004016109f790615372565b61180a6117fc85610e0f565b6001600160401b0316610d6b565b61181482856124c8565b156118545760405162461bcd60e51b815260206004820152601060248201526f14d51052d15117d3d397d5105491d15560821b60448201526064016109f7565b6040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e0870152918204831661010086015281048216610120850152919091041661014082015260058201546101608201526118fd906136e3565b6119af61190984612ced565b6040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e08701529182048316610100860152810482166101208501529190910416610140820152600590910154610160820152613732565b6119b960006127f2565b6119c282611193565b6003820154600160c01b90046001600160401b031614611a125760405162461bcd60e51b815260206004820152600b60248201526a4841535f5354414b45525360a81b60448201526064016109f7565b611a1a613952565b6040516001600160401b038316907feaffa3d968707ec919a2fc9f31d5ab2b86c905881ff561725d5a82fc95ad464090600090a250505050565b600080611a60607a5490565b90506000805b828110156111df576000611a7982613999565b80549091506001600160401b03878116600160a01b9092041614801590611ab157508054611ab19087906001600160a01b03166124c8565b15611ac45782611ac081615520565b9350505b5080611acf81615520565b915050611a66565b60006078826001600160401b031681548110611af557611af561558b565b6000918252602090912001546001600160a01b031692915050565b3360009081526074602052604090205460ff1680611b305750607e5460ff165b611b4c5760405162461bcd60e51b81526004016109f79061534b565b60335460ff1615611b6f5760405162461bcd60e51b81526004016109f7906152f5565b611b7f6040880160208901614fff565b6001600160401b0316611b956020890189614fff565b6001600160401b031610611bd95760405162461bcd60e51b815260206004820152600b60248201526a2ba927a723afa7a92222a960a91b60448201526064016109f7565b611be1612228565b6001600160401b0316611bfa6040890160208a01614fff565b6001600160401b03161115611c405760405162461bcd60e51b815260206004820152600c60248201526b1393d517d41493d413d4d15160a21b60448201526064016109f7565b611c4d6020880188614fff565b6001600160401b0316611c686075546001600160401b031690565b6001600160401b031610611cb25760405162461bcd60e51b81526020600482015260116024820152701053149150511657d0d3d3919254935151607a1b60448201526064016109f7565b6000611cd288825b602002016020810190611ccd9190614fff565b612ced565b90506000611ce1896001611cba565b600380820154908401549192506001600160401b03918216911614611d345760405162461bcd60e51b81526020600482015260096024820152682224a3232fa82922ab60b91b60448201526064016109f7565b611d538a60005b602002016020810190611d4e9190614f94565b612d58565b611d5e8a6001611d3b565b611d85611d6e60208b018b614fff565b8b60005b6020020160208101906107c99190614f94565b611dc65760405162461bcd60e51b815260206004820152601260248201527114d51052d1548c57d393d517d4d51052d15160721b60448201526064016109f7565b611de1611dd960408b0160208c01614fff565b8b6001611d72565b611e225760405162461bcd60e51b815260206004820152601260248201527114d51052d1548c97d393d517d4d51052d15160721b60448201526064016109f7565b604080518082018252611ea391611e9391908b90600290839083908082843760009201829052506040805180820190915292508c9150600290835b82821015611e8957611e7a60808302850136819003810190615504565b81526020019060010190611e5d565b50505050896139bf565b85358560005b6020020135613a69565b826001015414611ee25760405162461bcd60e51b815260206004820152600a6024820152694348414c5f484153483160b01b60448201526064016109f7565b611ef3856020860135856001611e99565b816001015414611f325760405162461bcd60e51b815260206004820152600a60248201526921a420a62fa420a9a41960b11b60448201526064016109f7565b60655460038301546000916001600160401b03600160401b91829004811692611f60928935929104166153ac565b6003850154611f77906001600160401b0316612ced565b60040154611f959190600160401b90046001600160401b0316615551565b611f9f9190615551565b90506020850135811015611fda57611fd2611fbd60208d018d614f94565b611fcd60408e0160208f01614f94565b612b2d565b505050612138565b600061201a8c8b8b8b89600c611ff18d358a6153ac565b611ffb91906155a1565b600c61200b60208f01358b6153ac565b61201591906155a1565b613aa7565b905061209d61202c60208e018e614f94565b8d60016020020160208101906120429190614f94565b6001600160a01b03918216600090815260796020526040808220600190810180546001600160401b038916600160801b0267ffffffffffffffff60801b19918216811790925594909516835291200180549091169091179055565b6001600160401b0381167f6db7dc2f507647d135035469b27aa79cea90582779d084a7821d6cd092cbd8736120d560208f018f614f94565b8e60016020020160208101906120eb9190614f94565b8e60006020020160208101906121019190614fff565b604080516001600160a01b0394851681529390921660208401526001600160401b03169082015260600160405180910390a2505050505b5050505050505050565b3360009081526074602052604090205460ff16806121625750607e5460ff165b61217e5760405162461bcd60e51b81526004016109f79061534b565b60335460ff16156121a15760405162461bcd60e51b81526004016109f7906152f5565b6075546001600160401b03166121b682610e0f565b6001600160401b031611156121fa5760405162461bcd60e51b815260206004820152600a6024820152691513d3d7d49150d1539560b21b60448201526064016109f7565b61220381612d58565b610e0c81613b66565b61221583613c16565b61221f8282610b21565b610aa283613d38565b607554600160801b90046001600160401b031690565b3360009081526074602052604090205460ff168061225e5750607e5460ff165b61227a5760405162461bcd60e51b81526004016109f79061534b565b60335460ff161561229d5760405162461bcd60e51b81526004016109f7906152f5565b607a5482106122df5760405162461bcd60e51b815260206004820152600e60248201526d4e4f5f535543485f5a4f4d42494560901b60448201526064016109f7565b60006122ea83612767565b905060006122f7846128f6565b905060008061230e6075546001600160401b031690565b6001600160401b031690505b80836001600160401b03161015801561233257508482105b1561237157600061234284612ced565b905061234e8486613dfe565b60038101546001600160401b031693508261236881615520565b9350505061231a565b80836001600160401b031610156123905761238b86613f48565b61239a565b61239a868461400e565b505050505050565b6000611637614057565b6000805b607a5481101561240757607a81815481106123cd576123cd61558b565b6000918252602090912001546001600160a01b03848116911614156123f55750600192915050565b806123ff81615520565b9150506123b0565b50600092915050565b612418614dc2565b61242182612ced565b6040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e0870152918204831661010086015281048216610120850152919091041661014082015260059091015461016082015292915050565b6001600160401b03821660009081526077602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b60006125158484846001600160401b0316612e7b565b90505b9392505050565b607e5460ff16156125425760405162461bcd60e51b81526004016109f79061531f565b467f00000000000000000000000000000000000000000000000000000000000000001415610b125760405162461bcd60e51b815260206004820152601460248201527310d210525397d25117d393d517d0d2105391d15160621b60448201526064016109f7565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156126375760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b60648201526084016109f7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661266961408a565b6001600160a01b0316146126d45760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b6163746976652070726f787960a01b60648201526084016109f7565b6001600160a01b03811661271d5760405162461bcd60e51b815260206004820152601060248201526f2722a2a22fa9aa20a5a2afaa27a5a2a760811b60448201526064016109f7565b6072546001600160a01b0316610e0c5760405162461bcd60e51b815260206004820152600f60248201526e046414345545f4e4f545f455243323608c1b60448201526064016109f7565b6000607a8281548110611af557611af561558b565b61278584613c16565b612790838383610f30565b61118d84613d38565b607554600160401b90046001600160401b031690565b6001600160a01b038116600090815260796020526040812060010154600160c01b900460ff1680156124f957506075546124f9906001600160401b0316836124c8565b3360009081526074602052604090205460ff16806128125750607e5460ff165b61282e5760405162461bcd60e51b81526004016109f79061534b565b60335460ff16156128515760405162461bcd60e51b81526004016109f7906152f5565b600061285c607a5490565b905060006128726075546001600160401b031690565b6001600160401b03169050825b8281101561118d575b81612892826128f6565b6001600160401b031610156128c9576128aa81613f48565b826128b4816155c0565b9350508281106128c45750505050565b612888565b806128d381615520565b91505061287f565b6001600160a01b031660009081526079602052604090205490565b6000607a828154811061290b5761290b61558b565b600091825260209091200154600160a01b90046001600160401b031692915050565b3360009081526074602052604090205460ff168061294d5750607e5460ff165b6129695760405162461bcd60e51b81526004016109f79061534b565b60335460ff161561298c5760405162461bcd60e51b81526004016109f7906152f5565b61299682826140b2565b61299f81613d38565b5050565b60007f000000000000000000000000000000000000000000000000000000000000000015612a01576001600160401b0382166000908152607f6020526040902054806124f95760405162461bcd60e51b81526004016109f7906155d7565b6000612a0c83612ced565b6003810154909150600160401b90046001600160401b0316612a405760405162461bcd60e51b81526004016109f7906155d7565b60040154600160c01b90046001600160401b031692915050565b919050565b6001600160a01b03828116600090815260796020526040808220928416825281206001830154919291600160801b90046001600160401b031680612acf5760405162461bcd60e51b81526020600482015260076024820152661393d7d0d2105360ca1b60448201526064016109f7565b60018201546001600160401b03828116600160801b9092041614612b245760405162461bcd60e51b815260206004820152600c60248201526b1112519197d25397d0d2105360a21b60448201526064016109f7565b95945050505050565b6000612b38826128db565b90506000612b45846128db565b905080821115612b6657612b598382612dc8565b612b6390836153ac565b91505b6000612b7360028461560e565b9050612b7f8582614120565b612b8981846153ac565b9250612bbd856001600160a01b03166000908152607960205260409020600101805467ffffffffffffffff60801b19169055565b607154612bd3906001600160a01b031684614185565b612bdc84614221565b5050505050565b600080612bf1611ccd612228565b6040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e0870152918204831661010086015281048216610120850152919091041661014082018190526005909201546101608201529150612ca257600091505090565b606554610140820151439161b2fa91612cc4916001600160401b031690615622565b6001600160401b0316612cd79190615551565b1015612ce557600191505090565b600091505090565b6001600160401b0316600090815260766020526040902090565b6001600160a01b0382166000908152607960205260409020612d2982846142c7565b60010180546001600160401b03909216600160401b0267ffffffffffffffff60401b1990921691909117905550565b612d618161163c565b612d7d5760405162461bcd60e51b81526004016109f790615372565b6000612d88826116ee565b6001600160401b031614610e0c5760405162461bcd60e51b8152602060048201526007602482015266125397d0d2105360ca1b60448201526064016109f7565b6001600160a01b0382166000908152607960205260408120805480841115612e255760405162461bcd60e51b815260206004820152601060248201526f544f4f5f4c4954544c455f5354414b4560801b60448201526064016109f7565b6000612e3185836153ac565b8584559050612e408682614185565b60408051838152602081018790526001600160a01b03881691600080516020615b04833981519152910160405180910390a295945050505050565b600081612e8960018561564d565b6001600160401b03161415612ea15750606754612518565b6000612eac84612ced565b60030154600160401b90046001600160401b0316905080851015612ed4575050606754612518565b6000604051806101400160405280600162ffffff1681526020016201e05b62ffffff1681526020016201f7d162ffffff1681526020016201389162ffffff168152602001620329e162ffffff1681526020016201be4362ffffff1681526020016204cb8c62ffffff1681526020016201fbc462ffffff16815260200162036d3262ffffff1681526020016202797362ffffff1681525090506000604051806101400160405280600162ffffff1681526020016201c03062ffffff1681526020016201b69962ffffff16815260200161fde262ffffff168152602001620265c662ffffff16815260200162013b8e62ffffff168152602001620329e162ffffff1681526020016201389162ffffff1681526020016201f7d162ffffff1681526020016201537562ffffff1681525090506000838861301191906153ac565b6065549091506000906001600160401b031661302e83600a6155a1565b613038919061560e565b90506000613047600a8361560e565b613052906002615759565b9050600085613062600a85615765565b600a81106130725761307261558b565b60200201516130869062ffffff16836155a1565b9050600085613096600a86615765565b600a81106130a6576130a661558b565b60200201516130ba9062ffffff168361560e565b9050806130c5575060015b806067546130d391906155a1565b9c9b505050505050505050505050565b6020810151600090815b602002015192915050565b6000600161310e610140870161012088016153e8565b600381111561311f5761311f6153c3565b148061314d5750600261313a610140870161012088016153e8565b600381111561314b5761314b6153c3565b145b61318c5760405162461bcd60e51b815260206004820152601060248201526f4241445f41465445525f53544154555360801b60448201526064016109f7565b613194614e26565b61319d85612410565b6060820152606a54604080516221048360e21b815290516001600160a01b03909216916284120c91600480820192602092909190829003018186803b1580156131e557600080fd5b505afa1580156131f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061321d9190615779565b815260608101515161322f878661448d565b1461326e5760405162461bcd60e51b815260206004820152600f60248201526e0a0a48aacbea6a882a88abe9082a69608b1b60448201526064016109f7565b600061328561106736899003890160a08a01615504565b9050600061329b611067368a90038a018a615504565b9050806001600160401b0316826001600160401b031610156132f15760405162461bcd60e51b815260206004820152600f60248201526e494e424f585f4241434b574152445360881b60448201526064016109f7565b806001600160401b0316826001600160401b031614156133975761332261331d368a90038a018a615504565b6144e7565b6001600160401b031661334061331d368b90038b0160a08c01615504565b6001600160401b031610156133975760405162461bcd60e51b815260206004820152601a60248201527f494e424f585f504f535f494e5f4d53475f4241434b574152445300000000000060448201526064016109f7565b60026133ab6101408a016101208b016153e8565b60038111156133bc576133bc6153c3565b14806133e5575060006133da61331d368b90038b0160a08c01615504565b6001600160401b0316115b156133f857816133f481615792565b9250505b82516001600160401b03831611156134435760405162461bcd60e51b815260206004820152600e60248201526d12539093d617d41054d517d1539160921b60448201526064016109f7565b6001600160401b038216156134eb57606a546001600160a01b03166316bf557961346e60018561564d565b6040516001600160e01b031960e084901b1681526001600160401b03909116600482015260240160206040518083038186803b1580156134ad57600080fd5b505afa1580156134c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134e59190615779565b60e08401525b506135059050613500368890038801886157f8565b6144f6565b6040820152606554613520906001600160401b031643615622565b6001600160401b0390811660c0830152606082015161012001511615801560a08301526135675761355981606001516101200151612ced565b600501546080820152613577565b6060810151610160015160808201525b6135968160a00151826080015183604001518460e00151606854614595565b9150828214806135a4575082155b6135e75760405162461bcd60e51b81526020600482015260146024820152730aa9c8ab0a08a86a88a88be9c9e888abe9082a6960631b60448201526064016109f7565b61362f6135fb8760a001836000015161448d565b61360c836040015143606854613a69565b61362361361e368b90038b018b6157f8565b614602565b888560c001518761462c565b6020820152600061363e612228565b613649906001615622565b9050600061365687612ced565b90506136628183614680565b61366f83602001516146f1565b50508181606001516101600151613684612228565b6001600160401b03167f4f4caa9e67fb994e349dd35d1ad0ce23053d4323f83ce11dc817b5435031d09684604001518a8660e0015160685488600001516040516136d29594939291906158f3565b60405180910390a450949350505050565b80608001516001600160401b0316431015610e0c5760405162461bcd60e51b815260206004820152600f60248201526e4245464f52455f444541444c494e4560881b60448201526064016109f7565b8060a001516001600160401b0316431015610e0c5760405162461bcd60e51b815260206004820152601060248201526f10d212531117d513d3d7d49150d1539560821b60448201526064016109f7565b600061378d84612ced565b905061379983836148df565b8160020154146137da5760405162461bcd60e51b815260206004820152600c60248201526b434f4e4649524d5f4441544160a01b60448201526064016109f7565b606b54604051630502677360e51b815260048101849052602481018590526001600160a01b039091169063a04cee6090604401600060405180830381600087803b15801561382757600080fd5b505af115801561383b573d6000803e3d6000fd5b50506075805467ffffffffffffffff19166001600160401b038816179055506138679050846001615622565b6075805467ffffffffffffffff60401b1916600160401b6001600160401b03938416021790556040805185815260208101859052918616917f22ef0479a7ff660660d1c2fe35f1b632cf31675c2d9378db8cec95b00d8ffa3c91015b60405180910390a250505050565b6001600160a01b0381166000908152607b60205260408120805490829055607c805482919084906139039084906153ac565b909155505060408051828152600060208201526001600160a01b038516917fa740af14c56e4e04a617b1de1eb20de73270decbaaead14f142aabf3038e5ae2910160405180910390a292915050565b60758054600160401b90046001600160401b031690600861397283615792565b91906101000a8154816001600160401b0302191690836001600160401b0316021790555050565b6000607a82815481106139ae576139ae61558b565b906000526020600020019050919050565b60408051600280825260608201835260009283929190602083019080368337019050508551909150613a01906139fc8660005b60200201516148fb565b61496f565b81600081518110613a1457613a1461558b565b6020908102919091010152613a3585600160200201516139fc8660016139f2565b81600181518110613a4857613a4861558b565b602002602001018181525050612b246000846001600160401b031683614a93565b6040805160208101859052908101839052606081018290526000906080015b6040516020818303038152906040528051906020012090509392505050565b606e546000906001600160a01b03166314eab5e78535898989613acd60208f018f614f94565b8e6001602002016020810190613ae39190614f94565b8a8a6040518963ffffffff1660e01b8152600401613b08989796959493929190615955565b602060405180830381600087803b158015613b2257600080fd5b505af1158015613b36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b5a9190615a05565b98975050505050505050565b6001600160a01b038116600090815260796020526040812090613b916075546001600160401b031690565b9050613b9d81846124c8565b15613bd25760018201546001600160401b03828116600160401b9092041614613bc857613bc861553b565b613bd28184613dfe565b8154613bde8482614185565b613be784614aaa565b60408051828152600060208201526001600160a01b03861691600080516020615b0483398151915291016138c3565b3360009081526074602052604090205460ff1680613c365750607e5460ff165b613c525760405162461bcd60e51b81526004016109f79061534b565b60335460ff1615613c755760405162461bcd60e51b81526004016109f7906152f5565b613c7e3361163c565b15613c9b5760405162461bcd60e51b81526004016109f790615a22565b613ca4336123ac565b15613ce45760405162461bcd60e51b815260206004820152601060248201526f5354414b45525f49535f5a4f4d42494560801b60448201526064016109f7565b613cec610e3d565b811015613d2e5760405162461bcd60e51b815260206004820152601060248201526f4e4f545f454e4f5547485f5354414b4560801b60448201526064016109f7565b610e0c3382614c50565b6072546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd90606401602060405180830381600087803b158015613d8a57600080fd5b505af1158015613d9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dc29190615569565b610e0c5760405162461bcd60e51b815260206004820152600d60248201526c1514905394d1915497d1905253609a1b60448201526064016109f7565b6001600160401b03821660009081526077602090815260408083206001600160a01b038516845290915290205460ff16613e4a5760405162461bcd60e51b81526004016109f790615372565b6001600160401b03821660009081526077602090815260408083206001600160a01b03851684529091528120805460ff19169055613e8783612ced565b600381018054919250600160c01b9091046001600160401b0316906018613ead83615a4a565b91906101000a8154816001600160401b0302191690836001600160401b031602179055505060006001600160401b0316836001600160401b03161115610aa2576003810154613f04906001600160401b0316612ced565b60040180546001600160401b0316906000613f1e83615a4a565b91906101000a8154816001600160401b0302191690836001600160401b0316021790555050505050565b607a8054613f58906001906153ac565b81548110613f6857613f6861558b565b90600052602060002001607a8281548110613f8557613f8561558b565b600091825260209091208254910180546001600160a01b039092166001600160a01b031983168117825592546001600160e01b0319909216909217600160a01b918290046001600160401b0316909102179055607a805480613fe957613fe9615a6d565b600082815260209020810160001990810180546001600160e01b031916905501905550565b80607a83815481106140225761402261558b565b9060005260206000200160000160146101000a8154816001600160401b0302191690836001600160401b031602179055505050565b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60007f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d61407b565b3360009081526074602052604090205460ff16806140d25750607e5460ff165b6140ee5760405162461bcd60e51b81526004016109f79061534b565b60335460ff16156141115760405162461bcd60e51b81526004016109f7906152f5565b61411a82612d58565b61299f82825b6001600160a01b0382166000908152607960205260408120805490916141468483615551565b80845560408051848152602081018390529192506001600160a01b03871691600080516020615b04833981519152910160405180910390a25050505050565b6001600160a01b0382166000908152607b6020526040812054906141a98383615551565b6001600160a01b0385166000908152607b60205260408120829055607c805492935085929091906141db908490615551565b909155505060408051838152602081018390526001600160a01b038616917fa740af14c56e4e04a617b1de1eb20de73270decbaaead14f142aabf3038e5ae291016138c3565b6001600160a01b03808216600081815260796020908152604080832081518083019092529381526001808501546001600160401b03600160401b9091048116938301938452607a8054928301815590945290517ff0440771a29e57e18c66727944770b82cc77924aef333c927ce6bdd2cdb3ae0390910180549251909316600160a01b026001600160e01b03199092169416939093179290921790915561299f82614aaa565b6001600160401b03821660009081526077602090815260408083206001600160a01b038516845290915290205460ff16156143145760405162461bcd60e51b81526004016109f790615a22565b6001600160401b03821660009081526077602090815260408083206001600160a01b03851684529091528120805460ff1916600117905561435483612ced565b6003810154909150600160401b90046001600160401b03166143885760405162461bcd60e51b81526004016109f7906155d7565b6003810154600160c01b90046001600160401b03166143a8816001615622565b6003830180546001600160c01b0316600160c01b6001600160401b039384160217905584161561118d5760038201546000906143ec906001600160401b0316612ced565b6004810180549192506001600160401b0390911690600061440c83615792565b91906101000a8154816001600160401b0302191690836001600160401b0316021790555050816001600160401b031660001415612bdc57606554612bdc9061445d906001600160401b031643615622565b60038301805467ffffffffffffffff60801b1916600160801b6001600160401b0390931692909202919091179055565b60006144a66144a136859003850185615504565b6148fb565b826144b760a08601608087016153e8565b6040516020016144c993929190615a83565b60405160208183030381529060405280519060200120905092915050565b602081015160009060016130ed565b6000614500614e77565b82516020015181906003811115614519576145196153c3565b9081600381111561452c5761452c6153c3565b90525060208381015181015190820190600381111561454d5761454d6153c3565b90816003811115614560576145606153c3565b90525061456b614e95565b83515181526020808501515190820152604084015161458d90839083906139bf565b949350505050565b600080866145a45760006145a7565b60015b6040516001600160f81b031960f883901b1660208201526021810188905260418101879052606181018690526081810185905290915060a1016040516020818303038152906040528051906020012091505095945050505050565b60006124f9614618836020015160000151614dab565b60208401515161462790614db6565b6148df565b614634614dc2565b61463c614dc2565b96875250602086019490945260408501929092526001600160401b0390811660608501529081166080840181905260a0840152431661014083015261016082015290565b6004820154600160401b90046001600160401b03166146c15760048201805467ffffffffffffffff60401b1916600160401b436001600160401b0316021790555b600490910180546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b60758054600160801b90046001600160401b031690601061471183615792565b825461010092830a6001600160401b03818102199092169282160291909117909255607554600160801b908190048316600090815260766020908152604091829020875181559087015160018201559086015160028201556060860151600382018054608089015160a08a015160c08b01519489166001600160801b031993841617600160401b928a168302176001600160801b03908116918a1688026001600160c01b0390811692909217600160c01b968b1687021790945560e08b0151600487018054998d01516101208e01516101408f0151938d169b9096169a909a17998b16909302989098179093169188169095029091161793909416909302919091179055610160830151600590910155507f000000000000000000000000000000000000000000000000000000000000000015610e0c5760646001600160a01b031663a3b1b31d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561488257600080fd5b505afa158015614896573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148ba9190615779565b607554600160801b90046001600160401b03166000908152607f602052604090205550565b60408051602081018490529081018290526000906060016144c9565b8051805160209182015192820151805190830151604080516c23b637b130b61039ba30ba329d60991b81870152602d810194909452604d8401959095526001600160c01b031960c092831b8116606d850152911b1660758201528251808203605d018152607d909101909252815191012090565b60006001836003811115614985576149856153c3565b14156149cb576040516b213637b1b59039ba30ba329d60a11b6020820152602c8101839052604c015b6040516020818303038152906040528051906020012090506124f9565b60028360038111156149df576149df6153c3565b1415614a155760405174213637b1b59039ba30ba32961032b93937b932b21d60591b6020820152603581018390526055016149ae565b6003836003811115614a2957614a296153c3565b1415614a585760405174213637b1b59039ba30ba3296103a37b7903330b91d60591b60208201526035016149ae565b60405162461bcd60e51b815260206004820152601060248201526f4241445f424c4f434b5f53544154555360801b60448201526064016109f7565b6000838383604051602001613a8893929190615ac1565b6001600160a01b03811660009081526079602052604090206001810154600160c01b900460ff16614aed5760405162461bcd60e51b81526004016109f790615372565b600180820154607880546001600160401b03909216929091614b0f91906153ac565b81548110614b1f57614b1f61558b565b600091825260209091200154607880546001600160a01b03909216916001600160401b038416908110614b5457614b5461558b565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080607960006078846001600160401b031681548110614ba357614ba361558b565b6000918252602080832091909101546001600160a01b031683528201929092526040019020600101805467ffffffffffffffff19166001600160401b03929092169190911790556078805480614bfb57614bfb615a6d565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03949094168152607990935250506040812090815560010180546001600160c81b0319169055565b6078805460018082019092557f8dc6fb69531d98d70dc0420e638d2dfd04e09e1ec783ede9aac77da9c5a0dac4810180546001600160a01b0319166001600160a01b0386169081179091556040805160a0810182528581526001600160401b038085166020808401918252607580548416858701908152600060608701818152608088018c81528a835260798652898320985189559551978c0180549351915196519888166001600160801b031990941693909317600160401b918816919091021768ffffffffffffffffff60801b1916600160801b9587169590950260ff60c01b191694909417600160c01b9615158702179055805484168352607782528583208784528252858320805460ff191690991790985587546001600160c01b031643909316909302919091179095558151948552840185905291929091600080516020615b04833981519152910160405180910390a2505050565b8051600090816130ed565b805160009060016130ed565b6040805161018081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081018290526101208101829052610140810182905261016081019190915290565b60405180610100016040528060008152602001614e41614dc2565b815260006020820152604001614e55614dc2565b8152600060208201819052604082018190526060820181905260809091015290565b60405180604001604052806002906020820280368337509192915050565b60405180604001604052806002905b614eac614ec2565b815260200190600190039081614ea45790505090565b6040518060400160405280614ed5614e77565b8152602001614ee2614e77565b905290565b80356001600160a01b0381168114612a5a57600080fd5b600080600060608486031215614f1357600080fd5b83359250614f2360208501614ee7565b9150614f3160408501614ee7565b90509250925092565b6001600160401b0381168114610e0c57600080fd5b60008060408385031215614f6257600080fd5b8235614f6d81614f3a565b946020939093013593505050565b600060208284031215614f8d57600080fd5b5035919050565b600060208284031215614fa657600080fd5b61251882614ee7565b60006101608284031215614fc257600080fd5b50919050565b60008060006101a08486031215614fde57600080fd5b614fe88585614faf565b956101608501359550610180909401359392505050565b60006020828403121561501157600080fd5b813561251881614f3a565b6000806040838503121561502f57600080fd5b50508035926020909101359150565b80604081018310156124f957600080fd5b600080600080600080600080610280898b03121561506c57600080fd5b6150768a8a61503e565b97506150858a60408b0161503e565b96506150948a60808b0161503e565b95506101c089018a8111156150a857600080fd5b60c08a019550356150b881614f3a565b93506101e089013592506150d08a6102008b0161503e565b91506150e08a6102408b0161503e565b90509295985092959890939650565b60008060006060848603121561510457600080fd5b83359250602084013561511681614f3a565b929592945050506040919091013590565b600061018082019050825182526020830151602083015260408301516040830152606083015161516260608401826001600160401b03169052565b50608083015161517d60808401826001600160401b03169052565b5060a083015161519860a08401826001600160401b03169052565b5060c08301516151b360c08401826001600160401b03169052565b5060e08301516151ce60e08401826001600160401b03169052565b50610100838101516001600160401b038116848301525050610120838101516001600160401b038116848301525050610140838101516001600160401b03811684830152505061016092830151919092015290565b6000806040838503121561523657600080fd5b823561524181614f3a565b915061524f60208401614ee7565b90509250929050565b60008060006060848603121561526d57600080fd5b83359250602084013561527f81614f3a565b9150604084013561528f81614f3a565b809150509250925092565b6000806000806101c085870312156152b157600080fd5b843593506152c28660208701614faf565b9396939550505050610180820135916101a0013590565b600080604083850312156152ec57600080fd5b614f6d83614ee7565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526012908201527115d2125511531254d517d11254d05093115160721b604082015260600190565b6020808252600d908201526c2727aa2fab20a624a220aa27a960991b604082015260600190565b6020808252600a90820152691393d517d4d51052d15160b21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156153be576153be615396565b500390565b634e487b7160e01b600052602160045260246000fd5b803560048110612a5a57600080fd5b6000602082840312156153fa57600080fd5b612518826153d9565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b038111828210171561543b5761543b615403565b60405290565b60006080828403121561545357600080fd5b61545b615419565b905082601f83011261546c57600080fd5b615474615419565b80604084018581111561548657600080fd5b845b818110156154a0578035845260209384019301615488565b5081845285605f8601126154b357600080fd5b6154bb615419565b925082915060808501868111156154d157600080fd5b808210156154f65781356154e481614f3a565b845260209384019391909101906154d1565b505060208301525092915050565b60006080828403121561551657600080fd5b6125188383615441565b600060001982141561553457615534615396565b5060010190565b634e487b7160e01b600052600160045260246000fd5b6000821982111561556457615564615396565b500190565b60006020828403121561557b57600080fd5b8151801515811461251857600080fd5b634e487b7160e01b600052603260045260246000fd5b60008160001904831182151516156155bb576155bb615396565b500290565b6000816155cf576155cf615396565b506000190190565b6020808252600790820152664e4f5f4e4f444560c81b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b60008261561d5761561d6155f8565b500490565b60006001600160401b0380831681851680830382111561564457615644615396565b01949350505050565b60006001600160401b038381169083168181101561566d5761566d615396565b039392505050565b600181815b808511156156b057816000190482111561569657615696615396565b808516156156a357918102915b93841c939080029061567a565b509250929050565b6000826156c7575060016124f9565b816156d4575060006124f9565b81600181146156ea57600281146156f457615710565b60019150506124f9565b60ff84111561570557615705615396565b50506001821b6124f9565b5060208310610133831016604e8410600b8410161715615733575081810a6124f9565b61573d8383615675565b806000190482111561575157615751615396565b029392505050565b600061251883836156b8565b600082615774576157746155f8565b500690565b60006020828403121561578b57600080fd5b5051919050565b60006001600160401b03808316818114156157af576157af615396565b6001019392505050565b600060a082840312156157cb57600080fd5b6157d3615419565b90506157df8383615441565b81526157ed608083016153d9565b602082015292915050565b6000610160828403121561580b57600080fd5b604051606081018181106001600160401b038211171561582d5761582d615403565b60405261583a84846157b9565b81526158498460a085016157b9565b602082015261014083013561585d81614f3a565b60408201529392505050565b604081833760006040838101828152908301915b6002811015612bdc57823561589181614f3a565b6001600160401b031682526020928301929091019060010161587d565b600481106158cc57634e487b7160e01b600052602160045260246000fd5b9052565b6158da8282615869565b6158e6608082016153d9565b610aa260808401826158ae565b8581526101e0810161590860208301876158d0565b61591860c0830160a088016158d0565b61014086013561592781614f3a565b6001600160401b03166101608301526101808201949094526101a08101929092526101c09091015292915050565b888152610200810160208083018a60005b6002811015615991576159818361597c846153d9565b6158ae565b9183019190830190600101615966565b50505050606082018860005b60028110156159c3576159b08383615869565b608092830192919091019060010161599d565b5050506001600160401b03969096166101608201526001600160a01b03948516610180820152929093166101a08301526101c08201526101e001529392505050565b600060208284031215615a1757600080fd5b815161251881614f3a565b6020808252600e908201526d1053149150511657d4d51052d15160921b604082015260600190565b60006001600160401b03821680615a6357615a63615396565b6000190192915050565b634e487b7160e01b600052603160045260246000fd5b838152826020820152600060048310615aac57634e487b7160e01b600052602160045260246000fd5b5060f89190911b604082015260410192915050565b83815260006020848184015260408301845182860160005b82811015615af557815184529284019290840190600101615ad9565b50919897505050505050505056feebd093d389ab57f3566918d2c379a2b4d9539e8eb95efad9d5e465457833fde6a2646970667358221220f10ebc081a9a1e4c45b47b7d6f4af099f1dc080cc111da3ff4986682ed00bc4e64736f6c63430008090033",
|
|
1710
|
+
"linkReferences": {},
|
|
1711
|
+
"deployedLinkReferences": {}
|
|
1712
|
+
}
|