@arbitrum/nitro-contracts 1.0.3-beta.0 → 1.0.3-beta.1
Sign up to get free protection for your applications and to get access to all the features.
- 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 +954 -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/ArbitrumChecker.sol/ArbitrumChecker.dbg.json +4 -0
- package/build/contracts/src/libraries/ArbitrumChecker.sol/ArbitrumChecker.json +10 -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 +350 -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 +95 -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/DeployHelper.sol/DeployHelper.dbg.json +4 -0
- package/build/contracts/src/rollup/DeployHelper.sol/DeployHelper.json +128 -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 +383 -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 +4 -2
@@ -0,0 +1,1808 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "RollupAdminLogic",
|
4
|
+
"sourceName": "src/rollup/RollupAdminLogic.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": true,
|
201
|
+
"internalType": "uint256",
|
202
|
+
"name": "id",
|
203
|
+
"type": "uint256"
|
204
|
+
}
|
205
|
+
],
|
206
|
+
"name": "OwnerFunctionCalled",
|
207
|
+
"type": "event"
|
208
|
+
},
|
209
|
+
{
|
210
|
+
"anonymous": false,
|
211
|
+
"inputs": [
|
212
|
+
{
|
213
|
+
"indexed": false,
|
214
|
+
"internalType": "address",
|
215
|
+
"name": "account",
|
216
|
+
"type": "address"
|
217
|
+
}
|
218
|
+
],
|
219
|
+
"name": "Paused",
|
220
|
+
"type": "event"
|
221
|
+
},
|
222
|
+
{
|
223
|
+
"anonymous": false,
|
224
|
+
"inputs": [
|
225
|
+
{
|
226
|
+
"indexed": true,
|
227
|
+
"internalType": "uint64",
|
228
|
+
"name": "challengeIndex",
|
229
|
+
"type": "uint64"
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"indexed": false,
|
233
|
+
"internalType": "address",
|
234
|
+
"name": "asserter",
|
235
|
+
"type": "address"
|
236
|
+
},
|
237
|
+
{
|
238
|
+
"indexed": false,
|
239
|
+
"internalType": "address",
|
240
|
+
"name": "challenger",
|
241
|
+
"type": "address"
|
242
|
+
},
|
243
|
+
{
|
244
|
+
"indexed": false,
|
245
|
+
"internalType": "uint64",
|
246
|
+
"name": "challengedNode",
|
247
|
+
"type": "uint64"
|
248
|
+
}
|
249
|
+
],
|
250
|
+
"name": "RollupChallengeStarted",
|
251
|
+
"type": "event"
|
252
|
+
},
|
253
|
+
{
|
254
|
+
"anonymous": false,
|
255
|
+
"inputs": [
|
256
|
+
{
|
257
|
+
"indexed": false,
|
258
|
+
"internalType": "bytes32",
|
259
|
+
"name": "machineHash",
|
260
|
+
"type": "bytes32"
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"indexed": false,
|
264
|
+
"internalType": "uint256",
|
265
|
+
"name": "chainId",
|
266
|
+
"type": "uint256"
|
267
|
+
}
|
268
|
+
],
|
269
|
+
"name": "RollupInitialized",
|
270
|
+
"type": "event"
|
271
|
+
},
|
272
|
+
{
|
273
|
+
"anonymous": false,
|
274
|
+
"inputs": [
|
275
|
+
{
|
276
|
+
"indexed": false,
|
277
|
+
"internalType": "address",
|
278
|
+
"name": "account",
|
279
|
+
"type": "address"
|
280
|
+
}
|
281
|
+
],
|
282
|
+
"name": "Unpaused",
|
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": "Upgraded",
|
296
|
+
"type": "event"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"anonymous": false,
|
300
|
+
"inputs": [
|
301
|
+
{
|
302
|
+
"indexed": true,
|
303
|
+
"internalType": "address",
|
304
|
+
"name": "implementation",
|
305
|
+
"type": "address"
|
306
|
+
}
|
307
|
+
],
|
308
|
+
"name": "UpgradedSecondary",
|
309
|
+
"type": "event"
|
310
|
+
},
|
311
|
+
{
|
312
|
+
"anonymous": false,
|
313
|
+
"inputs": [
|
314
|
+
{
|
315
|
+
"indexed": true,
|
316
|
+
"internalType": "address",
|
317
|
+
"name": "user",
|
318
|
+
"type": "address"
|
319
|
+
},
|
320
|
+
{
|
321
|
+
"indexed": false,
|
322
|
+
"internalType": "uint256",
|
323
|
+
"name": "initialBalance",
|
324
|
+
"type": "uint256"
|
325
|
+
},
|
326
|
+
{
|
327
|
+
"indexed": false,
|
328
|
+
"internalType": "uint256",
|
329
|
+
"name": "finalBalance",
|
330
|
+
"type": "uint256"
|
331
|
+
}
|
332
|
+
],
|
333
|
+
"name": "UserStakeUpdated",
|
334
|
+
"type": "event"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"anonymous": false,
|
338
|
+
"inputs": [
|
339
|
+
{
|
340
|
+
"indexed": true,
|
341
|
+
"internalType": "address",
|
342
|
+
"name": "user",
|
343
|
+
"type": "address"
|
344
|
+
},
|
345
|
+
{
|
346
|
+
"indexed": false,
|
347
|
+
"internalType": "uint256",
|
348
|
+
"name": "initialBalance",
|
349
|
+
"type": "uint256"
|
350
|
+
},
|
351
|
+
{
|
352
|
+
"indexed": false,
|
353
|
+
"internalType": "uint256",
|
354
|
+
"name": "finalBalance",
|
355
|
+
"type": "uint256"
|
356
|
+
}
|
357
|
+
],
|
358
|
+
"name": "UserWithdrawableFundsUpdated",
|
359
|
+
"type": "event"
|
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": "staker",
|
405
|
+
"type": "address"
|
406
|
+
}
|
407
|
+
],
|
408
|
+
"name": "amountStaked",
|
409
|
+
"outputs": [
|
410
|
+
{
|
411
|
+
"internalType": "uint256",
|
412
|
+
"name": "",
|
413
|
+
"type": "uint256"
|
414
|
+
}
|
415
|
+
],
|
416
|
+
"stateMutability": "view",
|
417
|
+
"type": "function"
|
418
|
+
},
|
419
|
+
{
|
420
|
+
"inputs": [],
|
421
|
+
"name": "baseStake",
|
422
|
+
"outputs": [
|
423
|
+
{
|
424
|
+
"internalType": "uint256",
|
425
|
+
"name": "",
|
426
|
+
"type": "uint256"
|
427
|
+
}
|
428
|
+
],
|
429
|
+
"stateMutability": "view",
|
430
|
+
"type": "function"
|
431
|
+
},
|
432
|
+
{
|
433
|
+
"inputs": [],
|
434
|
+
"name": "bridge",
|
435
|
+
"outputs": [
|
436
|
+
{
|
437
|
+
"internalType": "contract IBridge",
|
438
|
+
"name": "",
|
439
|
+
"type": "address"
|
440
|
+
}
|
441
|
+
],
|
442
|
+
"stateMutability": "view",
|
443
|
+
"type": "function"
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"inputs": [],
|
447
|
+
"name": "chainId",
|
448
|
+
"outputs": [
|
449
|
+
{
|
450
|
+
"internalType": "uint256",
|
451
|
+
"name": "",
|
452
|
+
"type": "uint256"
|
453
|
+
}
|
454
|
+
],
|
455
|
+
"stateMutability": "view",
|
456
|
+
"type": "function"
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"inputs": [],
|
460
|
+
"name": "challengeManager",
|
461
|
+
"outputs": [
|
462
|
+
{
|
463
|
+
"internalType": "contract IChallengeManager",
|
464
|
+
"name": "",
|
465
|
+
"type": "address"
|
466
|
+
}
|
467
|
+
],
|
468
|
+
"stateMutability": "view",
|
469
|
+
"type": "function"
|
470
|
+
},
|
471
|
+
{
|
472
|
+
"inputs": [],
|
473
|
+
"name": "confirmPeriodBlocks",
|
474
|
+
"outputs": [
|
475
|
+
{
|
476
|
+
"internalType": "uint64",
|
477
|
+
"name": "",
|
478
|
+
"type": "uint64"
|
479
|
+
}
|
480
|
+
],
|
481
|
+
"stateMutability": "view",
|
482
|
+
"type": "function"
|
483
|
+
},
|
484
|
+
{
|
485
|
+
"inputs": [
|
486
|
+
{
|
487
|
+
"components": [
|
488
|
+
{
|
489
|
+
"components": [
|
490
|
+
{
|
491
|
+
"components": [
|
492
|
+
{
|
493
|
+
"internalType": "bytes32[2]",
|
494
|
+
"name": "bytes32Vals",
|
495
|
+
"type": "bytes32[2]"
|
496
|
+
},
|
497
|
+
{
|
498
|
+
"internalType": "uint64[2]",
|
499
|
+
"name": "u64Vals",
|
500
|
+
"type": "uint64[2]"
|
501
|
+
}
|
502
|
+
],
|
503
|
+
"internalType": "struct GlobalState",
|
504
|
+
"name": "globalState",
|
505
|
+
"type": "tuple"
|
506
|
+
},
|
507
|
+
{
|
508
|
+
"internalType": "enum MachineStatus",
|
509
|
+
"name": "machineStatus",
|
510
|
+
"type": "uint8"
|
511
|
+
}
|
512
|
+
],
|
513
|
+
"internalType": "struct ExecutionState",
|
514
|
+
"name": "beforeState",
|
515
|
+
"type": "tuple"
|
516
|
+
},
|
517
|
+
{
|
518
|
+
"components": [
|
519
|
+
{
|
520
|
+
"components": [
|
521
|
+
{
|
522
|
+
"internalType": "bytes32[2]",
|
523
|
+
"name": "bytes32Vals",
|
524
|
+
"type": "bytes32[2]"
|
525
|
+
},
|
526
|
+
{
|
527
|
+
"internalType": "uint64[2]",
|
528
|
+
"name": "u64Vals",
|
529
|
+
"type": "uint64[2]"
|
530
|
+
}
|
531
|
+
],
|
532
|
+
"internalType": "struct GlobalState",
|
533
|
+
"name": "globalState",
|
534
|
+
"type": "tuple"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"internalType": "enum MachineStatus",
|
538
|
+
"name": "machineStatus",
|
539
|
+
"type": "uint8"
|
540
|
+
}
|
541
|
+
],
|
542
|
+
"internalType": "struct ExecutionState",
|
543
|
+
"name": "afterState",
|
544
|
+
"type": "tuple"
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"internalType": "uint64",
|
548
|
+
"name": "numBlocks",
|
549
|
+
"type": "uint64"
|
550
|
+
}
|
551
|
+
],
|
552
|
+
"internalType": "struct Assertion",
|
553
|
+
"name": "assertion",
|
554
|
+
"type": "tuple"
|
555
|
+
}
|
556
|
+
],
|
557
|
+
"name": "createNitroMigrationGenesis",
|
558
|
+
"outputs": [],
|
559
|
+
"stateMutability": "nonpayable",
|
560
|
+
"type": "function"
|
561
|
+
},
|
562
|
+
{
|
563
|
+
"inputs": [
|
564
|
+
{
|
565
|
+
"internalType": "address",
|
566
|
+
"name": "staker",
|
567
|
+
"type": "address"
|
568
|
+
}
|
569
|
+
],
|
570
|
+
"name": "currentChallenge",
|
571
|
+
"outputs": [
|
572
|
+
{
|
573
|
+
"internalType": "uint64",
|
574
|
+
"name": "",
|
575
|
+
"type": "uint64"
|
576
|
+
}
|
577
|
+
],
|
578
|
+
"stateMutability": "view",
|
579
|
+
"type": "function"
|
580
|
+
},
|
581
|
+
{
|
582
|
+
"inputs": [],
|
583
|
+
"name": "extraChallengeTimeBlocks",
|
584
|
+
"outputs": [
|
585
|
+
{
|
586
|
+
"internalType": "uint64",
|
587
|
+
"name": "",
|
588
|
+
"type": "uint64"
|
589
|
+
}
|
590
|
+
],
|
591
|
+
"stateMutability": "view",
|
592
|
+
"type": "function"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"inputs": [],
|
596
|
+
"name": "firstUnresolvedNode",
|
597
|
+
"outputs": [
|
598
|
+
{
|
599
|
+
"internalType": "uint64",
|
600
|
+
"name": "",
|
601
|
+
"type": "uint64"
|
602
|
+
}
|
603
|
+
],
|
604
|
+
"stateMutability": "view",
|
605
|
+
"type": "function"
|
606
|
+
},
|
607
|
+
{
|
608
|
+
"inputs": [
|
609
|
+
{
|
610
|
+
"internalType": "uint64",
|
611
|
+
"name": "nodeNum",
|
612
|
+
"type": "uint64"
|
613
|
+
},
|
614
|
+
{
|
615
|
+
"internalType": "bytes32",
|
616
|
+
"name": "blockHash",
|
617
|
+
"type": "bytes32"
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"internalType": "bytes32",
|
621
|
+
"name": "sendRoot",
|
622
|
+
"type": "bytes32"
|
623
|
+
}
|
624
|
+
],
|
625
|
+
"name": "forceConfirmNode",
|
626
|
+
"outputs": [],
|
627
|
+
"stateMutability": "nonpayable",
|
628
|
+
"type": "function"
|
629
|
+
},
|
630
|
+
{
|
631
|
+
"inputs": [
|
632
|
+
{
|
633
|
+
"internalType": "uint64",
|
634
|
+
"name": "prevNode",
|
635
|
+
"type": "uint64"
|
636
|
+
},
|
637
|
+
{
|
638
|
+
"internalType": "uint256",
|
639
|
+
"name": "prevNodeInboxMaxCount",
|
640
|
+
"type": "uint256"
|
641
|
+
},
|
642
|
+
{
|
643
|
+
"components": [
|
644
|
+
{
|
645
|
+
"components": [
|
646
|
+
{
|
647
|
+
"components": [
|
648
|
+
{
|
649
|
+
"internalType": "bytes32[2]",
|
650
|
+
"name": "bytes32Vals",
|
651
|
+
"type": "bytes32[2]"
|
652
|
+
},
|
653
|
+
{
|
654
|
+
"internalType": "uint64[2]",
|
655
|
+
"name": "u64Vals",
|
656
|
+
"type": "uint64[2]"
|
657
|
+
}
|
658
|
+
],
|
659
|
+
"internalType": "struct GlobalState",
|
660
|
+
"name": "globalState",
|
661
|
+
"type": "tuple"
|
662
|
+
},
|
663
|
+
{
|
664
|
+
"internalType": "enum MachineStatus",
|
665
|
+
"name": "machineStatus",
|
666
|
+
"type": "uint8"
|
667
|
+
}
|
668
|
+
],
|
669
|
+
"internalType": "struct ExecutionState",
|
670
|
+
"name": "beforeState",
|
671
|
+
"type": "tuple"
|
672
|
+
},
|
673
|
+
{
|
674
|
+
"components": [
|
675
|
+
{
|
676
|
+
"components": [
|
677
|
+
{
|
678
|
+
"internalType": "bytes32[2]",
|
679
|
+
"name": "bytes32Vals",
|
680
|
+
"type": "bytes32[2]"
|
681
|
+
},
|
682
|
+
{
|
683
|
+
"internalType": "uint64[2]",
|
684
|
+
"name": "u64Vals",
|
685
|
+
"type": "uint64[2]"
|
686
|
+
}
|
687
|
+
],
|
688
|
+
"internalType": "struct GlobalState",
|
689
|
+
"name": "globalState",
|
690
|
+
"type": "tuple"
|
691
|
+
},
|
692
|
+
{
|
693
|
+
"internalType": "enum MachineStatus",
|
694
|
+
"name": "machineStatus",
|
695
|
+
"type": "uint8"
|
696
|
+
}
|
697
|
+
],
|
698
|
+
"internalType": "struct ExecutionState",
|
699
|
+
"name": "afterState",
|
700
|
+
"type": "tuple"
|
701
|
+
},
|
702
|
+
{
|
703
|
+
"internalType": "uint64",
|
704
|
+
"name": "numBlocks",
|
705
|
+
"type": "uint64"
|
706
|
+
}
|
707
|
+
],
|
708
|
+
"internalType": "struct Assertion",
|
709
|
+
"name": "assertion",
|
710
|
+
"type": "tuple"
|
711
|
+
},
|
712
|
+
{
|
713
|
+
"internalType": "bytes32",
|
714
|
+
"name": "expectedNodeHash",
|
715
|
+
"type": "bytes32"
|
716
|
+
}
|
717
|
+
],
|
718
|
+
"name": "forceCreateNode",
|
719
|
+
"outputs": [],
|
720
|
+
"stateMutability": "nonpayable",
|
721
|
+
"type": "function"
|
722
|
+
},
|
723
|
+
{
|
724
|
+
"inputs": [
|
725
|
+
{
|
726
|
+
"internalType": "address[]",
|
727
|
+
"name": "staker",
|
728
|
+
"type": "address[]"
|
729
|
+
}
|
730
|
+
],
|
731
|
+
"name": "forceRefundStaker",
|
732
|
+
"outputs": [],
|
733
|
+
"stateMutability": "nonpayable",
|
734
|
+
"type": "function"
|
735
|
+
},
|
736
|
+
{
|
737
|
+
"inputs": [
|
738
|
+
{
|
739
|
+
"internalType": "address[]",
|
740
|
+
"name": "stakerA",
|
741
|
+
"type": "address[]"
|
742
|
+
},
|
743
|
+
{
|
744
|
+
"internalType": "address[]",
|
745
|
+
"name": "stakerB",
|
746
|
+
"type": "address[]"
|
747
|
+
}
|
748
|
+
],
|
749
|
+
"name": "forceResolveChallenge",
|
750
|
+
"outputs": [],
|
751
|
+
"stateMutability": "nonpayable",
|
752
|
+
"type": "function"
|
753
|
+
},
|
754
|
+
{
|
755
|
+
"inputs": [
|
756
|
+
{
|
757
|
+
"internalType": "uint64",
|
758
|
+
"name": "nodeNum",
|
759
|
+
"type": "uint64"
|
760
|
+
}
|
761
|
+
],
|
762
|
+
"name": "getNode",
|
763
|
+
"outputs": [
|
764
|
+
{
|
765
|
+
"components": [
|
766
|
+
{
|
767
|
+
"internalType": "bytes32",
|
768
|
+
"name": "stateHash",
|
769
|
+
"type": "bytes32"
|
770
|
+
},
|
771
|
+
{
|
772
|
+
"internalType": "bytes32",
|
773
|
+
"name": "challengeHash",
|
774
|
+
"type": "bytes32"
|
775
|
+
},
|
776
|
+
{
|
777
|
+
"internalType": "bytes32",
|
778
|
+
"name": "confirmData",
|
779
|
+
"type": "bytes32"
|
780
|
+
},
|
781
|
+
{
|
782
|
+
"internalType": "uint64",
|
783
|
+
"name": "prevNum",
|
784
|
+
"type": "uint64"
|
785
|
+
},
|
786
|
+
{
|
787
|
+
"internalType": "uint64",
|
788
|
+
"name": "deadlineBlock",
|
789
|
+
"type": "uint64"
|
790
|
+
},
|
791
|
+
{
|
792
|
+
"internalType": "uint64",
|
793
|
+
"name": "noChildConfirmedBeforeBlock",
|
794
|
+
"type": "uint64"
|
795
|
+
},
|
796
|
+
{
|
797
|
+
"internalType": "uint64",
|
798
|
+
"name": "stakerCount",
|
799
|
+
"type": "uint64"
|
800
|
+
},
|
801
|
+
{
|
802
|
+
"internalType": "uint64",
|
803
|
+
"name": "childStakerCount",
|
804
|
+
"type": "uint64"
|
805
|
+
},
|
806
|
+
{
|
807
|
+
"internalType": "uint64",
|
808
|
+
"name": "firstChildBlock",
|
809
|
+
"type": "uint64"
|
810
|
+
},
|
811
|
+
{
|
812
|
+
"internalType": "uint64",
|
813
|
+
"name": "latestChildNumber",
|
814
|
+
"type": "uint64"
|
815
|
+
},
|
816
|
+
{
|
817
|
+
"internalType": "uint64",
|
818
|
+
"name": "createdAtBlock",
|
819
|
+
"type": "uint64"
|
820
|
+
},
|
821
|
+
{
|
822
|
+
"internalType": "bytes32",
|
823
|
+
"name": "nodeHash",
|
824
|
+
"type": "bytes32"
|
825
|
+
}
|
826
|
+
],
|
827
|
+
"internalType": "struct Node",
|
828
|
+
"name": "",
|
829
|
+
"type": "tuple"
|
830
|
+
}
|
831
|
+
],
|
832
|
+
"stateMutability": "view",
|
833
|
+
"type": "function"
|
834
|
+
},
|
835
|
+
{
|
836
|
+
"inputs": [
|
837
|
+
{
|
838
|
+
"internalType": "uint64",
|
839
|
+
"name": "nodeNum",
|
840
|
+
"type": "uint64"
|
841
|
+
}
|
842
|
+
],
|
843
|
+
"name": "getNodeCreationBlockForLogLookup",
|
844
|
+
"outputs": [
|
845
|
+
{
|
846
|
+
"internalType": "uint256",
|
847
|
+
"name": "",
|
848
|
+
"type": "uint256"
|
849
|
+
}
|
850
|
+
],
|
851
|
+
"stateMutability": "view",
|
852
|
+
"type": "function"
|
853
|
+
},
|
854
|
+
{
|
855
|
+
"inputs": [
|
856
|
+
{
|
857
|
+
"internalType": "address",
|
858
|
+
"name": "staker",
|
859
|
+
"type": "address"
|
860
|
+
}
|
861
|
+
],
|
862
|
+
"name": "getStaker",
|
863
|
+
"outputs": [
|
864
|
+
{
|
865
|
+
"components": [
|
866
|
+
{
|
867
|
+
"internalType": "uint256",
|
868
|
+
"name": "amountStaked",
|
869
|
+
"type": "uint256"
|
870
|
+
},
|
871
|
+
{
|
872
|
+
"internalType": "uint64",
|
873
|
+
"name": "index",
|
874
|
+
"type": "uint64"
|
875
|
+
},
|
876
|
+
{
|
877
|
+
"internalType": "uint64",
|
878
|
+
"name": "latestStakedNode",
|
879
|
+
"type": "uint64"
|
880
|
+
},
|
881
|
+
{
|
882
|
+
"internalType": "uint64",
|
883
|
+
"name": "currentChallenge",
|
884
|
+
"type": "uint64"
|
885
|
+
},
|
886
|
+
{
|
887
|
+
"internalType": "bool",
|
888
|
+
"name": "isStaked",
|
889
|
+
"type": "bool"
|
890
|
+
}
|
891
|
+
],
|
892
|
+
"internalType": "struct IRollupCore.Staker",
|
893
|
+
"name": "",
|
894
|
+
"type": "tuple"
|
895
|
+
}
|
896
|
+
],
|
897
|
+
"stateMutability": "view",
|
898
|
+
"type": "function"
|
899
|
+
},
|
900
|
+
{
|
901
|
+
"inputs": [
|
902
|
+
{
|
903
|
+
"internalType": "uint64",
|
904
|
+
"name": "stakerNum",
|
905
|
+
"type": "uint64"
|
906
|
+
}
|
907
|
+
],
|
908
|
+
"name": "getStakerAddress",
|
909
|
+
"outputs": [
|
910
|
+
{
|
911
|
+
"internalType": "address",
|
912
|
+
"name": "",
|
913
|
+
"type": "address"
|
914
|
+
}
|
915
|
+
],
|
916
|
+
"stateMutability": "view",
|
917
|
+
"type": "function"
|
918
|
+
},
|
919
|
+
{
|
920
|
+
"inputs": [],
|
921
|
+
"name": "inbox",
|
922
|
+
"outputs": [
|
923
|
+
{
|
924
|
+
"internalType": "contract IInbox",
|
925
|
+
"name": "",
|
926
|
+
"type": "address"
|
927
|
+
}
|
928
|
+
],
|
929
|
+
"stateMutability": "view",
|
930
|
+
"type": "function"
|
931
|
+
},
|
932
|
+
{
|
933
|
+
"inputs": [
|
934
|
+
{
|
935
|
+
"components": [
|
936
|
+
{
|
937
|
+
"internalType": "uint64",
|
938
|
+
"name": "confirmPeriodBlocks",
|
939
|
+
"type": "uint64"
|
940
|
+
},
|
941
|
+
{
|
942
|
+
"internalType": "uint64",
|
943
|
+
"name": "extraChallengeTimeBlocks",
|
944
|
+
"type": "uint64"
|
945
|
+
},
|
946
|
+
{
|
947
|
+
"internalType": "address",
|
948
|
+
"name": "stakeToken",
|
949
|
+
"type": "address"
|
950
|
+
},
|
951
|
+
{
|
952
|
+
"internalType": "uint256",
|
953
|
+
"name": "baseStake",
|
954
|
+
"type": "uint256"
|
955
|
+
},
|
956
|
+
{
|
957
|
+
"internalType": "bytes32",
|
958
|
+
"name": "wasmModuleRoot",
|
959
|
+
"type": "bytes32"
|
960
|
+
},
|
961
|
+
{
|
962
|
+
"internalType": "address",
|
963
|
+
"name": "owner",
|
964
|
+
"type": "address"
|
965
|
+
},
|
966
|
+
{
|
967
|
+
"internalType": "address",
|
968
|
+
"name": "loserStakeEscrow",
|
969
|
+
"type": "address"
|
970
|
+
},
|
971
|
+
{
|
972
|
+
"internalType": "uint256",
|
973
|
+
"name": "chainId",
|
974
|
+
"type": "uint256"
|
975
|
+
},
|
976
|
+
{
|
977
|
+
"internalType": "string",
|
978
|
+
"name": "chainConfig",
|
979
|
+
"type": "string"
|
980
|
+
},
|
981
|
+
{
|
982
|
+
"internalType": "uint64",
|
983
|
+
"name": "genesisBlockNum",
|
984
|
+
"type": "uint64"
|
985
|
+
},
|
986
|
+
{
|
987
|
+
"components": [
|
988
|
+
{
|
989
|
+
"internalType": "uint256",
|
990
|
+
"name": "delayBlocks",
|
991
|
+
"type": "uint256"
|
992
|
+
},
|
993
|
+
{
|
994
|
+
"internalType": "uint256",
|
995
|
+
"name": "futureBlocks",
|
996
|
+
"type": "uint256"
|
997
|
+
},
|
998
|
+
{
|
999
|
+
"internalType": "uint256",
|
1000
|
+
"name": "delaySeconds",
|
1001
|
+
"type": "uint256"
|
1002
|
+
},
|
1003
|
+
{
|
1004
|
+
"internalType": "uint256",
|
1005
|
+
"name": "futureSeconds",
|
1006
|
+
"type": "uint256"
|
1007
|
+
}
|
1008
|
+
],
|
1009
|
+
"internalType": "struct ISequencerInbox.MaxTimeVariation",
|
1010
|
+
"name": "sequencerInboxMaxTimeVariation",
|
1011
|
+
"type": "tuple"
|
1012
|
+
}
|
1013
|
+
],
|
1014
|
+
"internalType": "struct Config",
|
1015
|
+
"name": "config",
|
1016
|
+
"type": "tuple"
|
1017
|
+
},
|
1018
|
+
{
|
1019
|
+
"components": [
|
1020
|
+
{
|
1021
|
+
"internalType": "contract IBridge",
|
1022
|
+
"name": "bridge",
|
1023
|
+
"type": "address"
|
1024
|
+
},
|
1025
|
+
{
|
1026
|
+
"internalType": "contract ISequencerInbox",
|
1027
|
+
"name": "sequencerInbox",
|
1028
|
+
"type": "address"
|
1029
|
+
},
|
1030
|
+
{
|
1031
|
+
"internalType": "contract IInbox",
|
1032
|
+
"name": "inbox",
|
1033
|
+
"type": "address"
|
1034
|
+
},
|
1035
|
+
{
|
1036
|
+
"internalType": "contract IOutbox",
|
1037
|
+
"name": "outbox",
|
1038
|
+
"type": "address"
|
1039
|
+
},
|
1040
|
+
{
|
1041
|
+
"internalType": "contract IRollupEventInbox",
|
1042
|
+
"name": "rollupEventInbox",
|
1043
|
+
"type": "address"
|
1044
|
+
},
|
1045
|
+
{
|
1046
|
+
"internalType": "contract IChallengeManager",
|
1047
|
+
"name": "challengeManager",
|
1048
|
+
"type": "address"
|
1049
|
+
},
|
1050
|
+
{
|
1051
|
+
"internalType": "address",
|
1052
|
+
"name": "rollupAdminLogic",
|
1053
|
+
"type": "address"
|
1054
|
+
},
|
1055
|
+
{
|
1056
|
+
"internalType": "contract IRollupUser",
|
1057
|
+
"name": "rollupUserLogic",
|
1058
|
+
"type": "address"
|
1059
|
+
},
|
1060
|
+
{
|
1061
|
+
"internalType": "address",
|
1062
|
+
"name": "validatorUtils",
|
1063
|
+
"type": "address"
|
1064
|
+
},
|
1065
|
+
{
|
1066
|
+
"internalType": "address",
|
1067
|
+
"name": "validatorWalletCreator",
|
1068
|
+
"type": "address"
|
1069
|
+
}
|
1070
|
+
],
|
1071
|
+
"internalType": "struct ContractDependencies",
|
1072
|
+
"name": "connectedContracts",
|
1073
|
+
"type": "tuple"
|
1074
|
+
}
|
1075
|
+
],
|
1076
|
+
"name": "initialize",
|
1077
|
+
"outputs": [],
|
1078
|
+
"stateMutability": "nonpayable",
|
1079
|
+
"type": "function"
|
1080
|
+
},
|
1081
|
+
{
|
1082
|
+
"inputs": [
|
1083
|
+
{
|
1084
|
+
"internalType": "address",
|
1085
|
+
"name": "staker",
|
1086
|
+
"type": "address"
|
1087
|
+
}
|
1088
|
+
],
|
1089
|
+
"name": "isStaked",
|
1090
|
+
"outputs": [
|
1091
|
+
{
|
1092
|
+
"internalType": "bool",
|
1093
|
+
"name": "",
|
1094
|
+
"type": "bool"
|
1095
|
+
}
|
1096
|
+
],
|
1097
|
+
"stateMutability": "view",
|
1098
|
+
"type": "function"
|
1099
|
+
},
|
1100
|
+
{
|
1101
|
+
"inputs": [
|
1102
|
+
{
|
1103
|
+
"internalType": "address",
|
1104
|
+
"name": "staker",
|
1105
|
+
"type": "address"
|
1106
|
+
}
|
1107
|
+
],
|
1108
|
+
"name": "isStakedOnLatestConfirmed",
|
1109
|
+
"outputs": [
|
1110
|
+
{
|
1111
|
+
"internalType": "bool",
|
1112
|
+
"name": "",
|
1113
|
+
"type": "bool"
|
1114
|
+
}
|
1115
|
+
],
|
1116
|
+
"stateMutability": "view",
|
1117
|
+
"type": "function"
|
1118
|
+
},
|
1119
|
+
{
|
1120
|
+
"inputs": [
|
1121
|
+
{
|
1122
|
+
"internalType": "address",
|
1123
|
+
"name": "",
|
1124
|
+
"type": "address"
|
1125
|
+
}
|
1126
|
+
],
|
1127
|
+
"name": "isValidator",
|
1128
|
+
"outputs": [
|
1129
|
+
{
|
1130
|
+
"internalType": "bool",
|
1131
|
+
"name": "",
|
1132
|
+
"type": "bool"
|
1133
|
+
}
|
1134
|
+
],
|
1135
|
+
"stateMutability": "view",
|
1136
|
+
"type": "function"
|
1137
|
+
},
|
1138
|
+
{
|
1139
|
+
"inputs": [
|
1140
|
+
{
|
1141
|
+
"internalType": "address",
|
1142
|
+
"name": "staker",
|
1143
|
+
"type": "address"
|
1144
|
+
}
|
1145
|
+
],
|
1146
|
+
"name": "isZombie",
|
1147
|
+
"outputs": [
|
1148
|
+
{
|
1149
|
+
"internalType": "bool",
|
1150
|
+
"name": "",
|
1151
|
+
"type": "bool"
|
1152
|
+
}
|
1153
|
+
],
|
1154
|
+
"stateMutability": "view",
|
1155
|
+
"type": "function"
|
1156
|
+
},
|
1157
|
+
{
|
1158
|
+
"inputs": [],
|
1159
|
+
"name": "lastStakeBlock",
|
1160
|
+
"outputs": [
|
1161
|
+
{
|
1162
|
+
"internalType": "uint64",
|
1163
|
+
"name": "",
|
1164
|
+
"type": "uint64"
|
1165
|
+
}
|
1166
|
+
],
|
1167
|
+
"stateMutability": "view",
|
1168
|
+
"type": "function"
|
1169
|
+
},
|
1170
|
+
{
|
1171
|
+
"inputs": [],
|
1172
|
+
"name": "latestConfirmed",
|
1173
|
+
"outputs": [
|
1174
|
+
{
|
1175
|
+
"internalType": "uint64",
|
1176
|
+
"name": "",
|
1177
|
+
"type": "uint64"
|
1178
|
+
}
|
1179
|
+
],
|
1180
|
+
"stateMutability": "view",
|
1181
|
+
"type": "function"
|
1182
|
+
},
|
1183
|
+
{
|
1184
|
+
"inputs": [],
|
1185
|
+
"name": "latestNodeCreated",
|
1186
|
+
"outputs": [
|
1187
|
+
{
|
1188
|
+
"internalType": "uint64",
|
1189
|
+
"name": "",
|
1190
|
+
"type": "uint64"
|
1191
|
+
}
|
1192
|
+
],
|
1193
|
+
"stateMutability": "view",
|
1194
|
+
"type": "function"
|
1195
|
+
},
|
1196
|
+
{
|
1197
|
+
"inputs": [
|
1198
|
+
{
|
1199
|
+
"internalType": "address",
|
1200
|
+
"name": "staker",
|
1201
|
+
"type": "address"
|
1202
|
+
}
|
1203
|
+
],
|
1204
|
+
"name": "latestStakedNode",
|
1205
|
+
"outputs": [
|
1206
|
+
{
|
1207
|
+
"internalType": "uint64",
|
1208
|
+
"name": "",
|
1209
|
+
"type": "uint64"
|
1210
|
+
}
|
1211
|
+
],
|
1212
|
+
"stateMutability": "view",
|
1213
|
+
"type": "function"
|
1214
|
+
},
|
1215
|
+
{
|
1216
|
+
"inputs": [],
|
1217
|
+
"name": "loserStakeEscrow",
|
1218
|
+
"outputs": [
|
1219
|
+
{
|
1220
|
+
"internalType": "address",
|
1221
|
+
"name": "",
|
1222
|
+
"type": "address"
|
1223
|
+
}
|
1224
|
+
],
|
1225
|
+
"stateMutability": "view",
|
1226
|
+
"type": "function"
|
1227
|
+
},
|
1228
|
+
{
|
1229
|
+
"inputs": [],
|
1230
|
+
"name": "minimumAssertionPeriod",
|
1231
|
+
"outputs": [
|
1232
|
+
{
|
1233
|
+
"internalType": "uint256",
|
1234
|
+
"name": "",
|
1235
|
+
"type": "uint256"
|
1236
|
+
}
|
1237
|
+
],
|
1238
|
+
"stateMutability": "view",
|
1239
|
+
"type": "function"
|
1240
|
+
},
|
1241
|
+
{
|
1242
|
+
"inputs": [
|
1243
|
+
{
|
1244
|
+
"internalType": "uint64",
|
1245
|
+
"name": "nodeNum",
|
1246
|
+
"type": "uint64"
|
1247
|
+
},
|
1248
|
+
{
|
1249
|
+
"internalType": "address",
|
1250
|
+
"name": "staker",
|
1251
|
+
"type": "address"
|
1252
|
+
}
|
1253
|
+
],
|
1254
|
+
"name": "nodeHasStaker",
|
1255
|
+
"outputs": [
|
1256
|
+
{
|
1257
|
+
"internalType": "bool",
|
1258
|
+
"name": "",
|
1259
|
+
"type": "bool"
|
1260
|
+
}
|
1261
|
+
],
|
1262
|
+
"stateMutability": "view",
|
1263
|
+
"type": "function"
|
1264
|
+
},
|
1265
|
+
{
|
1266
|
+
"inputs": [],
|
1267
|
+
"name": "outbox",
|
1268
|
+
"outputs": [
|
1269
|
+
{
|
1270
|
+
"internalType": "contract IOutbox",
|
1271
|
+
"name": "",
|
1272
|
+
"type": "address"
|
1273
|
+
}
|
1274
|
+
],
|
1275
|
+
"stateMutability": "view",
|
1276
|
+
"type": "function"
|
1277
|
+
},
|
1278
|
+
{
|
1279
|
+
"inputs": [],
|
1280
|
+
"name": "pause",
|
1281
|
+
"outputs": [],
|
1282
|
+
"stateMutability": "nonpayable",
|
1283
|
+
"type": "function"
|
1284
|
+
},
|
1285
|
+
{
|
1286
|
+
"inputs": [],
|
1287
|
+
"name": "paused",
|
1288
|
+
"outputs": [
|
1289
|
+
{
|
1290
|
+
"internalType": "bool",
|
1291
|
+
"name": "",
|
1292
|
+
"type": "bool"
|
1293
|
+
}
|
1294
|
+
],
|
1295
|
+
"stateMutability": "view",
|
1296
|
+
"type": "function"
|
1297
|
+
},
|
1298
|
+
{
|
1299
|
+
"inputs": [],
|
1300
|
+
"name": "proxiableUUID",
|
1301
|
+
"outputs": [
|
1302
|
+
{
|
1303
|
+
"internalType": "bytes32",
|
1304
|
+
"name": "",
|
1305
|
+
"type": "bytes32"
|
1306
|
+
}
|
1307
|
+
],
|
1308
|
+
"stateMutability": "view",
|
1309
|
+
"type": "function"
|
1310
|
+
},
|
1311
|
+
{
|
1312
|
+
"inputs": [
|
1313
|
+
{
|
1314
|
+
"internalType": "address",
|
1315
|
+
"name": "_outbox",
|
1316
|
+
"type": "address"
|
1317
|
+
}
|
1318
|
+
],
|
1319
|
+
"name": "removeOldOutbox",
|
1320
|
+
"outputs": [],
|
1321
|
+
"stateMutability": "nonpayable",
|
1322
|
+
"type": "function"
|
1323
|
+
},
|
1324
|
+
{
|
1325
|
+
"inputs": [],
|
1326
|
+
"name": "resume",
|
1327
|
+
"outputs": [],
|
1328
|
+
"stateMutability": "nonpayable",
|
1329
|
+
"type": "function"
|
1330
|
+
},
|
1331
|
+
{
|
1332
|
+
"inputs": [],
|
1333
|
+
"name": "rollupDeploymentBlock",
|
1334
|
+
"outputs": [
|
1335
|
+
{
|
1336
|
+
"internalType": "uint256",
|
1337
|
+
"name": "",
|
1338
|
+
"type": "uint256"
|
1339
|
+
}
|
1340
|
+
],
|
1341
|
+
"stateMutability": "view",
|
1342
|
+
"type": "function"
|
1343
|
+
},
|
1344
|
+
{
|
1345
|
+
"inputs": [],
|
1346
|
+
"name": "rollupEventInbox",
|
1347
|
+
"outputs": [
|
1348
|
+
{
|
1349
|
+
"internalType": "contract IRollupEventInbox",
|
1350
|
+
"name": "",
|
1351
|
+
"type": "address"
|
1352
|
+
}
|
1353
|
+
],
|
1354
|
+
"stateMutability": "view",
|
1355
|
+
"type": "function"
|
1356
|
+
},
|
1357
|
+
{
|
1358
|
+
"inputs": [],
|
1359
|
+
"name": "sequencerInbox",
|
1360
|
+
"outputs": [
|
1361
|
+
{
|
1362
|
+
"internalType": "contract ISequencerInbox",
|
1363
|
+
"name": "",
|
1364
|
+
"type": "address"
|
1365
|
+
}
|
1366
|
+
],
|
1367
|
+
"stateMutability": "view",
|
1368
|
+
"type": "function"
|
1369
|
+
},
|
1370
|
+
{
|
1371
|
+
"inputs": [
|
1372
|
+
{
|
1373
|
+
"internalType": "uint256",
|
1374
|
+
"name": "newBaseStake",
|
1375
|
+
"type": "uint256"
|
1376
|
+
}
|
1377
|
+
],
|
1378
|
+
"name": "setBaseStake",
|
1379
|
+
"outputs": [],
|
1380
|
+
"stateMutability": "nonpayable",
|
1381
|
+
"type": "function"
|
1382
|
+
},
|
1383
|
+
{
|
1384
|
+
"inputs": [
|
1385
|
+
{
|
1386
|
+
"internalType": "uint64",
|
1387
|
+
"name": "newConfirmPeriod",
|
1388
|
+
"type": "uint64"
|
1389
|
+
}
|
1390
|
+
],
|
1391
|
+
"name": "setConfirmPeriodBlocks",
|
1392
|
+
"outputs": [],
|
1393
|
+
"stateMutability": "nonpayable",
|
1394
|
+
"type": "function"
|
1395
|
+
},
|
1396
|
+
{
|
1397
|
+
"inputs": [
|
1398
|
+
{
|
1399
|
+
"internalType": "address",
|
1400
|
+
"name": "_inbox",
|
1401
|
+
"type": "address"
|
1402
|
+
},
|
1403
|
+
{
|
1404
|
+
"internalType": "bool",
|
1405
|
+
"name": "_enabled",
|
1406
|
+
"type": "bool"
|
1407
|
+
}
|
1408
|
+
],
|
1409
|
+
"name": "setDelayedInbox",
|
1410
|
+
"outputs": [],
|
1411
|
+
"stateMutability": "nonpayable",
|
1412
|
+
"type": "function"
|
1413
|
+
},
|
1414
|
+
{
|
1415
|
+
"inputs": [
|
1416
|
+
{
|
1417
|
+
"internalType": "uint64",
|
1418
|
+
"name": "newExtraTimeBlocks",
|
1419
|
+
"type": "uint64"
|
1420
|
+
}
|
1421
|
+
],
|
1422
|
+
"name": "setExtraChallengeTimeBlocks",
|
1423
|
+
"outputs": [],
|
1424
|
+
"stateMutability": "nonpayable",
|
1425
|
+
"type": "function"
|
1426
|
+
},
|
1427
|
+
{
|
1428
|
+
"inputs": [
|
1429
|
+
{
|
1430
|
+
"internalType": "contract IInbox",
|
1431
|
+
"name": "newInbox",
|
1432
|
+
"type": "address"
|
1433
|
+
}
|
1434
|
+
],
|
1435
|
+
"name": "setInbox",
|
1436
|
+
"outputs": [],
|
1437
|
+
"stateMutability": "nonpayable",
|
1438
|
+
"type": "function"
|
1439
|
+
},
|
1440
|
+
{
|
1441
|
+
"inputs": [
|
1442
|
+
{
|
1443
|
+
"internalType": "address",
|
1444
|
+
"name": "newLoserStakerEscrow",
|
1445
|
+
"type": "address"
|
1446
|
+
}
|
1447
|
+
],
|
1448
|
+
"name": "setLoserStakeEscrow",
|
1449
|
+
"outputs": [],
|
1450
|
+
"stateMutability": "nonpayable",
|
1451
|
+
"type": "function"
|
1452
|
+
},
|
1453
|
+
{
|
1454
|
+
"inputs": [
|
1455
|
+
{
|
1456
|
+
"internalType": "uint256",
|
1457
|
+
"name": "newPeriod",
|
1458
|
+
"type": "uint256"
|
1459
|
+
}
|
1460
|
+
],
|
1461
|
+
"name": "setMinimumAssertionPeriod",
|
1462
|
+
"outputs": [],
|
1463
|
+
"stateMutability": "nonpayable",
|
1464
|
+
"type": "function"
|
1465
|
+
},
|
1466
|
+
{
|
1467
|
+
"inputs": [
|
1468
|
+
{
|
1469
|
+
"internalType": "contract IOutbox",
|
1470
|
+
"name": "_outbox",
|
1471
|
+
"type": "address"
|
1472
|
+
}
|
1473
|
+
],
|
1474
|
+
"name": "setOutbox",
|
1475
|
+
"outputs": [],
|
1476
|
+
"stateMutability": "nonpayable",
|
1477
|
+
"type": "function"
|
1478
|
+
},
|
1479
|
+
{
|
1480
|
+
"inputs": [
|
1481
|
+
{
|
1482
|
+
"internalType": "address",
|
1483
|
+
"name": "newOwner",
|
1484
|
+
"type": "address"
|
1485
|
+
}
|
1486
|
+
],
|
1487
|
+
"name": "setOwner",
|
1488
|
+
"outputs": [],
|
1489
|
+
"stateMutability": "nonpayable",
|
1490
|
+
"type": "function"
|
1491
|
+
},
|
1492
|
+
{
|
1493
|
+
"inputs": [
|
1494
|
+
{
|
1495
|
+
"internalType": "address",
|
1496
|
+
"name": "_sequencerInbox",
|
1497
|
+
"type": "address"
|
1498
|
+
}
|
1499
|
+
],
|
1500
|
+
"name": "setSequencerInbox",
|
1501
|
+
"outputs": [],
|
1502
|
+
"stateMutability": "nonpayable",
|
1503
|
+
"type": "function"
|
1504
|
+
},
|
1505
|
+
{
|
1506
|
+
"inputs": [
|
1507
|
+
{
|
1508
|
+
"internalType": "address",
|
1509
|
+
"name": "newStakeToken",
|
1510
|
+
"type": "address"
|
1511
|
+
}
|
1512
|
+
],
|
1513
|
+
"name": "setStakeToken",
|
1514
|
+
"outputs": [],
|
1515
|
+
"stateMutability": "nonpayable",
|
1516
|
+
"type": "function"
|
1517
|
+
},
|
1518
|
+
{
|
1519
|
+
"inputs": [
|
1520
|
+
{
|
1521
|
+
"internalType": "address[]",
|
1522
|
+
"name": "_validator",
|
1523
|
+
"type": "address[]"
|
1524
|
+
},
|
1525
|
+
{
|
1526
|
+
"internalType": "bool[]",
|
1527
|
+
"name": "_val",
|
1528
|
+
"type": "bool[]"
|
1529
|
+
}
|
1530
|
+
],
|
1531
|
+
"name": "setValidator",
|
1532
|
+
"outputs": [],
|
1533
|
+
"stateMutability": "nonpayable",
|
1534
|
+
"type": "function"
|
1535
|
+
},
|
1536
|
+
{
|
1537
|
+
"inputs": [
|
1538
|
+
{
|
1539
|
+
"internalType": "bool",
|
1540
|
+
"name": "_validatorWhitelistDisabled",
|
1541
|
+
"type": "bool"
|
1542
|
+
}
|
1543
|
+
],
|
1544
|
+
"name": "setValidatorWhitelistDisabled",
|
1545
|
+
"outputs": [],
|
1546
|
+
"stateMutability": "nonpayable",
|
1547
|
+
"type": "function"
|
1548
|
+
},
|
1549
|
+
{
|
1550
|
+
"inputs": [
|
1551
|
+
{
|
1552
|
+
"internalType": "bytes32",
|
1553
|
+
"name": "newWasmModuleRoot",
|
1554
|
+
"type": "bytes32"
|
1555
|
+
}
|
1556
|
+
],
|
1557
|
+
"name": "setWasmModuleRoot",
|
1558
|
+
"outputs": [],
|
1559
|
+
"stateMutability": "nonpayable",
|
1560
|
+
"type": "function"
|
1561
|
+
},
|
1562
|
+
{
|
1563
|
+
"inputs": [],
|
1564
|
+
"name": "stakeToken",
|
1565
|
+
"outputs": [
|
1566
|
+
{
|
1567
|
+
"internalType": "address",
|
1568
|
+
"name": "",
|
1569
|
+
"type": "address"
|
1570
|
+
}
|
1571
|
+
],
|
1572
|
+
"stateMutability": "view",
|
1573
|
+
"type": "function"
|
1574
|
+
},
|
1575
|
+
{
|
1576
|
+
"inputs": [],
|
1577
|
+
"name": "stakerCount",
|
1578
|
+
"outputs": [
|
1579
|
+
{
|
1580
|
+
"internalType": "uint64",
|
1581
|
+
"name": "",
|
1582
|
+
"type": "uint64"
|
1583
|
+
}
|
1584
|
+
],
|
1585
|
+
"stateMutability": "view",
|
1586
|
+
"type": "function"
|
1587
|
+
},
|
1588
|
+
{
|
1589
|
+
"inputs": [],
|
1590
|
+
"name": "totalWithdrawableFunds",
|
1591
|
+
"outputs": [
|
1592
|
+
{
|
1593
|
+
"internalType": "uint256",
|
1594
|
+
"name": "",
|
1595
|
+
"type": "uint256"
|
1596
|
+
}
|
1597
|
+
],
|
1598
|
+
"stateMutability": "view",
|
1599
|
+
"type": "function"
|
1600
|
+
},
|
1601
|
+
{
|
1602
|
+
"inputs": [
|
1603
|
+
{
|
1604
|
+
"internalType": "address",
|
1605
|
+
"name": "beacon",
|
1606
|
+
"type": "address"
|
1607
|
+
},
|
1608
|
+
{
|
1609
|
+
"internalType": "address",
|
1610
|
+
"name": "newImplementation",
|
1611
|
+
"type": "address"
|
1612
|
+
}
|
1613
|
+
],
|
1614
|
+
"name": "upgradeBeacon",
|
1615
|
+
"outputs": [],
|
1616
|
+
"stateMutability": "nonpayable",
|
1617
|
+
"type": "function"
|
1618
|
+
},
|
1619
|
+
{
|
1620
|
+
"inputs": [
|
1621
|
+
{
|
1622
|
+
"internalType": "address",
|
1623
|
+
"name": "newImplementation",
|
1624
|
+
"type": "address"
|
1625
|
+
}
|
1626
|
+
],
|
1627
|
+
"name": "upgradeSecondaryTo",
|
1628
|
+
"outputs": [],
|
1629
|
+
"stateMutability": "nonpayable",
|
1630
|
+
"type": "function"
|
1631
|
+
},
|
1632
|
+
{
|
1633
|
+
"inputs": [
|
1634
|
+
{
|
1635
|
+
"internalType": "address",
|
1636
|
+
"name": "newImplementation",
|
1637
|
+
"type": "address"
|
1638
|
+
},
|
1639
|
+
{
|
1640
|
+
"internalType": "bytes",
|
1641
|
+
"name": "data",
|
1642
|
+
"type": "bytes"
|
1643
|
+
}
|
1644
|
+
],
|
1645
|
+
"name": "upgradeSecondaryToAndCall",
|
1646
|
+
"outputs": [],
|
1647
|
+
"stateMutability": "payable",
|
1648
|
+
"type": "function"
|
1649
|
+
},
|
1650
|
+
{
|
1651
|
+
"inputs": [
|
1652
|
+
{
|
1653
|
+
"internalType": "address",
|
1654
|
+
"name": "newImplementation",
|
1655
|
+
"type": "address"
|
1656
|
+
}
|
1657
|
+
],
|
1658
|
+
"name": "upgradeTo",
|
1659
|
+
"outputs": [],
|
1660
|
+
"stateMutability": "nonpayable",
|
1661
|
+
"type": "function"
|
1662
|
+
},
|
1663
|
+
{
|
1664
|
+
"inputs": [
|
1665
|
+
{
|
1666
|
+
"internalType": "address",
|
1667
|
+
"name": "newImplementation",
|
1668
|
+
"type": "address"
|
1669
|
+
},
|
1670
|
+
{
|
1671
|
+
"internalType": "bytes",
|
1672
|
+
"name": "data",
|
1673
|
+
"type": "bytes"
|
1674
|
+
}
|
1675
|
+
],
|
1676
|
+
"name": "upgradeToAndCall",
|
1677
|
+
"outputs": [],
|
1678
|
+
"stateMutability": "payable",
|
1679
|
+
"type": "function"
|
1680
|
+
},
|
1681
|
+
{
|
1682
|
+
"inputs": [],
|
1683
|
+
"name": "validatorUtils",
|
1684
|
+
"outputs": [
|
1685
|
+
{
|
1686
|
+
"internalType": "address",
|
1687
|
+
"name": "",
|
1688
|
+
"type": "address"
|
1689
|
+
}
|
1690
|
+
],
|
1691
|
+
"stateMutability": "view",
|
1692
|
+
"type": "function"
|
1693
|
+
},
|
1694
|
+
{
|
1695
|
+
"inputs": [],
|
1696
|
+
"name": "validatorWalletCreator",
|
1697
|
+
"outputs": [
|
1698
|
+
{
|
1699
|
+
"internalType": "address",
|
1700
|
+
"name": "",
|
1701
|
+
"type": "address"
|
1702
|
+
}
|
1703
|
+
],
|
1704
|
+
"stateMutability": "view",
|
1705
|
+
"type": "function"
|
1706
|
+
},
|
1707
|
+
{
|
1708
|
+
"inputs": [],
|
1709
|
+
"name": "validatorWhitelistDisabled",
|
1710
|
+
"outputs": [
|
1711
|
+
{
|
1712
|
+
"internalType": "bool",
|
1713
|
+
"name": "",
|
1714
|
+
"type": "bool"
|
1715
|
+
}
|
1716
|
+
],
|
1717
|
+
"stateMutability": "view",
|
1718
|
+
"type": "function"
|
1719
|
+
},
|
1720
|
+
{
|
1721
|
+
"inputs": [],
|
1722
|
+
"name": "wasmModuleRoot",
|
1723
|
+
"outputs": [
|
1724
|
+
{
|
1725
|
+
"internalType": "bytes32",
|
1726
|
+
"name": "",
|
1727
|
+
"type": "bytes32"
|
1728
|
+
}
|
1729
|
+
],
|
1730
|
+
"stateMutability": "view",
|
1731
|
+
"type": "function"
|
1732
|
+
},
|
1733
|
+
{
|
1734
|
+
"inputs": [
|
1735
|
+
{
|
1736
|
+
"internalType": "address",
|
1737
|
+
"name": "user",
|
1738
|
+
"type": "address"
|
1739
|
+
}
|
1740
|
+
],
|
1741
|
+
"name": "withdrawableFunds",
|
1742
|
+
"outputs": [
|
1743
|
+
{
|
1744
|
+
"internalType": "uint256",
|
1745
|
+
"name": "",
|
1746
|
+
"type": "uint256"
|
1747
|
+
}
|
1748
|
+
],
|
1749
|
+
"stateMutability": "view",
|
1750
|
+
"type": "function"
|
1751
|
+
},
|
1752
|
+
{
|
1753
|
+
"inputs": [
|
1754
|
+
{
|
1755
|
+
"internalType": "uint256",
|
1756
|
+
"name": "zombieNum",
|
1757
|
+
"type": "uint256"
|
1758
|
+
}
|
1759
|
+
],
|
1760
|
+
"name": "zombieAddress",
|
1761
|
+
"outputs": [
|
1762
|
+
{
|
1763
|
+
"internalType": "address",
|
1764
|
+
"name": "",
|
1765
|
+
"type": "address"
|
1766
|
+
}
|
1767
|
+
],
|
1768
|
+
"stateMutability": "view",
|
1769
|
+
"type": "function"
|
1770
|
+
},
|
1771
|
+
{
|
1772
|
+
"inputs": [],
|
1773
|
+
"name": "zombieCount",
|
1774
|
+
"outputs": [
|
1775
|
+
{
|
1776
|
+
"internalType": "uint256",
|
1777
|
+
"name": "",
|
1778
|
+
"type": "uint256"
|
1779
|
+
}
|
1780
|
+
],
|
1781
|
+
"stateMutability": "view",
|
1782
|
+
"type": "function"
|
1783
|
+
},
|
1784
|
+
{
|
1785
|
+
"inputs": [
|
1786
|
+
{
|
1787
|
+
"internalType": "uint256",
|
1788
|
+
"name": "zombieNum",
|
1789
|
+
"type": "uint256"
|
1790
|
+
}
|
1791
|
+
],
|
1792
|
+
"name": "zombieLatestStakedNode",
|
1793
|
+
"outputs": [
|
1794
|
+
{
|
1795
|
+
"internalType": "uint64",
|
1796
|
+
"name": "",
|
1797
|
+
"type": "uint64"
|
1798
|
+
}
|
1799
|
+
],
|
1800
|
+
"stateMutability": "view",
|
1801
|
+
"type": "function"
|
1802
|
+
}
|
1803
|
+
],
|
1804
|
+
"bytecode": "0x60c0604052620000196200003660201b62002ca61760201c565b15156080523060a0523480156200002f57600080fd5b5062000111565b60408051600481526024810182526020810180516001600160e01b03166302881c7960e11b179052905160009182918291606491620000769190620000d3565b600060405180830381855afa9150503d8060008114620000b3576040519150601f19603f3d011682016040523d82523d6000602084013e620000b8565b606091505b5091509150818015620000cc575080516020145b9250505090565b6000825160005b81811015620000f65760208186018101518583015201620000da565b8181111562000106576000828501525b509190910192915050565b60805160a051615aa46200018b60003960008181611071015281816110b10152818161115701528181611197015281816119b4015281816119f401528181611b9701528181611bd701528181611cc90152818161259101526125d1015260008181612ab7015281816131e001526145200152615aa46000f3fe6080604052600436106103905760003560e01c80637ba9534a116101de578063ce11e6ab11610103578063ef40a6701161009b578063ef40a67014610d08578063f065de3f14610d3e578063f33e1fac14610d5e578063f38c937914610d7e578063f63a434a14610d9e578063facd743b14610dbe578063fb0e722b14610dee578063fc8ffa0314610e0e578063ff204f3b14610e2e57600080fd5b8063ce11e6ab14610b79578063ce66d05c14610b99578063d01e660214610bb9578063d735e21d14610bd9578063dcd030aa14610bfe578063dff6978714610c1e578063e78cea9214610c33578063e8bd492214610c53578063ee35f32714610ce857600080fd5b8063948d658811610176578063948d6588146109815780639846129a146109a15780639a8a0592146109b4578063a23c44b1146109ca578063a2b4f1d814610ad9578063a3ffb77214610af9578063aa38a6e714610b19578063aa65af4814610b39578063bc45e0ae14610b5957600080fd5b80637ba9534a1461086f5780637c75c298146108845780638456cb59146108a4578063848bf918146108b95780638640ce5f146108d957806389384960146108fe5780638ee1a1261461091e57806391c657e81461093457806392c8134c1461095457600080fd5b806347fb24c5116102c45780636177fd181161025c5780636177fd181461071d57806363721d6b1461076057806365f7f80d1461077557806369fd251c146107935780636ddd3744146107dc57806371ef232c146107fc57806376e7e23b14610812578063771b2f97146108285780637b83a3fe1461084f57600080fd5b806347fb24c51461061d5780634f1ef2861461063d5780634f61f8501461065057806351ed6a301461067057806352d1902d1461069057806353b60c4a146106a5578063567ca41b146106c55780635c975abb146106e55780636136fe2e146106fd57600080fd5b80631b1689e9116103375780631b1689e9146104ac57806328ff127a146104d05780632e7acfa6146104f05780632f30cabd146105285780632f7968e81461055e5780633659cfe61461057e5780633e96576e1461059e57806345e38b64146105e7578063470dce4e146105fd57600080fd5b8063014cc92c14610395578063023a96fe146103cb5780630397d458146103eb578063046f7da21461040d57806306ae5851146104225780630d40a0fd1461044257806312ab3d3b1461046257806313af40351461048c575b600080fd5b3480156103a157600080fd5b50606f546103b5906001600160a01b031681565b6040516103c29190614dbd565b60405180910390f35b3480156103d757600080fd5b50606e546103b5906001600160a01b031681565b3480156103f757600080fd5b5061040b610406366004614de6565b610e4e565b005b34801561041957600080fd5b5061040b611020565b34801561042e57600080fd5b5061040b61043d366004614e03565b611044565b34801561044e57600080fd5b5061040b61045d366004614de6565b611066565b34801561046e57600080fd5b50607e5461047c9060ff1681565b60405190151581526020016103c2565b34801561049857600080fd5b5061040b6104a7366004614de6565b611126565b3480156104b857600080fd5b506104c2607d5481565b6040519081526020016103c2565b3480156104dc57600080fd5b5061040b6104eb366004614e1c565b61114c565b3480156104fc57600080fd5b50606554610510906001600160401b031681565b6040516001600160401b0390911681526020016103c2565b34801561053457600080fd5b506104c2610543366004614de6565b6001600160a01b03166000908152607b602052604090205490565b34801561056a57600080fd5b5061040b610579366004614e94565b61195d565b34801561058a57600080fd5b5061040b610599366004614de6565b6119a9565b3480156105aa57600080fd5b506105106105b9366004614de6565b6001600160a01b0316600090815260796020526040902060010154600160401b90046001600160401b031690565b3480156105f357600080fd5b506104c260735481565b34801561060957600080fd5b5061040b610618366004614ee0565b611a66565b34801561062957600080fd5b5061040b610638366004614f35565b611b0a565b61040b61064b366004614fdc565b611b8c565b34801561065c57600080fd5b5061040b61066b366004614de6565b611c3d565b34801561067c57600080fd5b506072546103b5906001600160a01b031681565b34801561069c57600080fd5b506104c2611cbc565b3480156106b157600080fd5b5061040b6106c0366004614de6565b611d6a565b3480156106d157600080fd5b5061040b6106e0366004614de6565b611da2565b3480156106f157600080fd5b5060335460ff1661047c565b34801561070957600080fd5b5061040b610718366004615083565b611e6f565b34801561072957600080fd5b5061047c610738366004614de6565b6001600160a01b0316600090815260796020526040902060010154600160c01b900460ff1690565b34801561076c57600080fd5b50607a546104c2565b34801561078157600080fd5b506075546001600160401b0316610510565b34801561079f57600080fd5b506105106107ae366004614de6565b6001600160a01b0316600090815260796020526040902060010154600160801b90046001600160401b031690565b3480156107e857600080fd5b506103b56107f7366004615083565b611eb1565b34801561080857600080fd5b506104c2607c5481565b34801561081e57600080fd5b506104c260675481565b34801561083457600080fd5b5060655461051090600160401b90046001600160401b031681565b34801561085b57600080fd5b5061040b61086a36600461509e565b611eea565b34801561087b57600080fd5b506105106121ed565b34801561089057600080fd5b5061040b61089f366004615106565b612203565b3480156108b057600080fd5b5061040b612377565b3480156108c557600080fd5b5061040b6108d4366004615147565b61239b565b3480156108e557600080fd5b50607554600160c01b90046001600160401b0316610510565b34801561090a57600080fd5b5061040b610919366004614e03565b612417565b34801561092a57600080fd5b506104c260685481565b34801561094057600080fd5b5061047c61094f366004614de6565b612439565b34801561096057600080fd5b5061097461096f366004615083565b61249d565b6040516103c29190615175565b34801561098d57600080fd5b5061040b61099c366004614e03565b612564565b61040b6109af366004614fdc565b612586565b3480156109c057600080fd5b506104c260665481565b3480156109d657600080fd5b50610a846109e5366004614de6565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506001600160a01b0316600090815260796020908152604091829020825160a081018452815481526001909101546001600160401b0380821693830193909352600160401b8104831693820193909352600160801b83049091166060820152600160c01b90910460ff161515608082015290565b6040516103c29190600060a0820190508251825260208301516001600160401b038082166020850152806040860151166040850152806060860151166060850152505060808301511515608083015292915050565b348015610ae557600080fd5b5061040b610af4366004615271565b612633565b348015610b0557600080fd5b5061040b610b1436600461528e565b61265e565b348015610b2557600080fd5b50606d546103b5906001600160a01b031681565b348015610b4557600080fd5b5061047c610b543660046152f9565b612752565b348015610b6557600080fd5b506070546103b5906001600160a01b031681565b348015610b8557600080fd5b50606b546103b5906001600160a01b031681565b348015610ba557600080fd5b5061040b610bb4366004615083565b612789565b348015610bc557600080fd5b506103b5610bd4366004614e03565b612814565b348015610be557600080fd5b50607554600160401b90046001600160401b0316610510565b348015610c0a57600080fd5b5061047c610c19366004614de6565b612829565b348015610c2a57600080fd5b50607854610510565b348015610c3f57600080fd5b50606a546103b5906001600160a01b031681565b348015610c5f57600080fd5b50610cb0610c6e366004614de6565b607960205260009081526040902080546001909101546001600160401b0380821691600160401b8104821691600160801b82041690600160c01b900460ff1685565b604080519586526001600160401b0394851660208701529284169285019290925290911660608301521515608082015260a0016103c2565b348015610cf457600080fd5b50606c546103b5906001600160a01b031681565b348015610d1457600080fd5b506104c2610d23366004614de6565b6001600160a01b031660009081526079602052604090205490565b348015610d4a57600080fd5b506071546103b5906001600160a01b031681565b348015610d6a57600080fd5b50610510610d79366004614e03565b61286c565b348015610d8a57600080fd5b5061040b610d9936600461528e565b6128a3565b348015610daa57600080fd5b506104c2610db9366004615083565b612ab3565b348015610dca57600080fd5b5061047c610dd9366004614de6565b60746020526000908152604090205460ff1681565b348015610dfa57600080fd5b506069546103b5906001600160a01b031681565b348015610e1a57600080fd5b5061040b610e29366004614de6565b612b7c565b348015610e3a57600080fd5b5061040b610e49366004614de6565b612c0e565b60335460ff16610e795760405162461bcd60e51b8152600401610e7090615315565b60405180910390fd5b6000806001600160a01b0316826001600160a01b0316141590506000306001600160a01b031663cd205fda6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ece57600080fd5b505afa158015610ee2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f069190615343565b905081151581151514610f535760405162461bcd60e51b81526020600482015260156024820152741393d7d554d15497d313d1d250d7d4d5541413d495605a1b6044820152606401610e70565b6078546001600160401b031615610fa05760405162461bcd60e51b81526020600482015260116024820152704e4f5f4143544956455f5354414b45525360781b6044820152606401610e70565b607c5415610fe65760405162461bcd60e51b81526020600482015260136024820152724e4f5f50454e44494e475f574954484452415760681b6044820152606401610e70565b607280546001600160a01b0319166001600160a01b038516179055604051600d90600080516020615a2883398151915290600090a2505050565b611028612d3e565b604051600490600080516020615a2883398151915290600090a2565b6067819055604051600c90600080516020615a2883398151915290600090a250565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156110af5760405162461bcd60e51b8152600401610e7090615360565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166110e1612da4565b6001600160a01b0316146111075760405162461bcd60e51b8152600401610e70906153ac565b6040805160008082526020820190925261112391839190612dc5565b50565b61112f81612f65565b604051600790600080516020615a2883398151915290600090a250565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156111955760405162461bcd60e51b8152600401610e7090615360565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166111c7612da4565b6001600160a01b0316146111ed5760405162461bcd60e51b8152600401610e70906153ac565b600054610100900460ff166112085760005460ff161561120c565b303b155b61126f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610e70565b600054610100900460ff16158015611291576000805461ffff19166101011790555b43607d556112a26020830183614de6565b606a80546001600160a01b0319166001600160a01b03929092169190911790556112d26040830160208401614de6565b606c80546001600160a01b0319166001600160a01b03929092169190911790556112ff6020830183614de6565b6001600160a01b03166347fb24c561131d6060850160408601614de6565b60016040518363ffffffff1660e01b815260040161133c9291906153f8565b600060405180830381600087803b15801561135657600080fd5b505af115801561136a573d6000803e3d6000fd5b5061137c925050506020830183614de6565b6001600160a01b0316634f61f85061139a6040850160208601614de6565b6040518263ffffffff1660e01b81526004016113b69190614dbd565b600060405180830381600087803b1580156113d057600080fd5b505af11580156113e4573d6000803e3d6000fd5b506113f9925050506060830160408401614de6565b606980546001600160a01b0319166001600160a01b03929092169190911790556114296080830160608401614de6565b606b80546001600160a01b0319166001600160a01b03929092169190911790556114566020830183614de6565b6001600160a01b031663cee3d7286114746080850160608601614de6565b60016040518363ffffffff1660e01b81526004016114939291906153f8565b600060405180830381600087803b1580156114ad57600080fd5b505af11580156114c1573d6000803e3d6000fd5b506114d69250505060a0830160808401614de6565b606d80546001600160a01b0319166001600160a01b03929092169190911790556115036020830183614de6565b6001600160a01b03166347fb24c561152160a0850160808601614de6565b60016040518363ffffffff1660e01b81526004016115409291906153f8565b600060405180830381600087803b15801561155a57600080fd5b505af115801561156e573d6000803e3d6000fd5b506115839250505060a0830160808401614de6565b6001600160a01b031663cf8d56d660e08501356115a4610100870187615413565b6040518463ffffffff1660e01b81526004016115c293929190615459565b600060405180830381600087803b1580156115dc57600080fd5b505af11580156115f0573d6000803e3d6000fd5b50611605925050506040830160208401614de6565b60405163e0bc972960e01b815260006004820181905260c0602483015260c4820181905260016044830181905260648301829052608483019190915260a48201526001600160a01b03919091169063e0bc97299060e401600060405180830381600087803b15801561167657600080fd5b505af115801561168a573d6000803e3d6000fd5b506116a19250505061012083016101008401614de6565b606f80546001600160a01b0319166001600160a01b03929092169190911790556116d361014083016101208401614de6565b607080546001600160a01b0319166001600160a01b039290921691909117905561170360c0830160a08401614de6565b606e80546001600160a01b0319166001600160a01b0392909216919091179055600061172d612fb9565b90506117388161300c565b6117456020850185615083565b6065805467ffffffffffffffff19166001600160401b03929092169190911790556117766040850160208601615083565b606580546001600160401b0392909216600160401b0267ffffffffffffffff60401b1990921691909117905560e084013560665560608401356067556080840135606855604b6073556117c76132a4565b6001600160a01b03166117e060e0860160c08701614de6565b6001600160a01b0316141561182e5760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa2a9a1a927abafa0a226a4a760611b6044820152606401610e70565b61183e60c0850160a08601614de6565b6001600160a01b031661185760e0860160c08701614de6565b6001600160a01b031614156118a55760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa2a9a1a927abafa7aba722a960611b6044820152606401610e70565b6118b560e0850160c08601614de6565b607180546001600160a01b0319166001600160a01b03929092169190911790556118e56060850160408601614de6565b607280546001600160a01b0319166001600160a01b0392909216919091179055604080516080860135815260e086013560208201527ffc1b83c11d99d08a938e0b82a0bd45f822f71ff5abf23f999c93c4533d752464910160405180910390a1508015611958576000805461ff00191690555b505050565b60335460ff1661197f5760405162461bcd60e51b8152600401610e7090615315565b61198a8383836132cc565b604051601890600080516020615a2883398151915290600090a2505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156119f25760405162461bcd60e51b8152600401610e7090615360565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611a24612da4565b6001600160a01b031614611a4a5760405162461bcd60e51b8152600401610e70906153ac565b6040805160008082526020820190925261112391839190613426565b60335460ff16611a885760405162461bcd60e51b8152600401610e7090615315565b6075546001600160401b03858116911614611add5760405162461bcd60e51b815260206004820152601560248201527413d3931657d310551154d517d0d3d3919254935151605a1b6044820152606401610e70565b611ae9828585846135a0565b50604051601790600080516020615a2883398151915290600090a250505050565b606a546040516347fb24c560e01b81526001600160a01b03909116906347fb24c590611b3c90859085906004016153f8565b600060405180830381600087803b158015611b5657600080fd5b505af1158015611b6a573d6000803e3d6000fd5b505060405160029250600080516020615a288339815191529150600090a25050565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415611bd55760405162461bcd60e51b8152600401610e7090615360565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611c07612da4565b6001600160a01b031614611c2d5760405162461bcd60e51b8152600401610e70906153ac565b611c3982826001613426565b5050565b606a546040516304f61f8560e41b81526001600160a01b0390911690634f61f85090611c6d908490600401614dbd565b600060405180830381600087803b158015611c8757600080fd5b505af1158015611c9b573d6000803e3d6000fd5b5050604051601b9250600080516020615a288339815191529150600090a250565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611d575760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c6044820152771b1959081d1a1c9bdd59da0819195b1959d85d1958d85b1b60421b6064820152608401610e70565b50600080516020615a0883398151915290565b606980546001600160a01b0319166001600160a01b038316179055604051601c90600080516020615a2883398151915290600090a250565b606b546001600160a01b0382811691161415611ded5760405162461bcd60e51b815260206004820152600a602482015269086aaa4be9eaaa8849eb60b31b6044820152606401610e70565b606a546040516319dc7ae560e31b81526001600160a01b039091169063cee3d72890611e209084906000906004016153f8565b600060405180830381600087803b158015611e3a57600080fd5b505af1158015611e4e573d6000803e3d6000fd5b505060405160019250600080516020615a288339815191529150600090a250565b6065805467ffffffffffffffff60401b1916600160401b6001600160401b03841602179055604051600a90600080516020615a2883398151915290600090a250565b60006078826001600160401b031681548110611ecf57611ecf61548f565b6000918252602090912001546001600160a01b031692915050565b60335460ff16611f0c5760405162461bcd60e51b8152600401610e7090615315565b60006001611f186121ed565b6001600160401b031615611f685760405162461bcd60e51b81526020600482015260176024820152761393d397d1d1539154d254d7d393d11154d7d1561254d5604a1b6044820152606401610e70565b611f7183613bb4565b611fb05760405162461bcd60e51b815260206004820152601060248201526f4e4f545f454d5054595f4245464f524560801b6044820152606401610e70565b6001611fc260a08501608086016154ca565b6003811115611fd357611fd36154a5565b146120205760405162461bcd60e51b815260206004820152601b60248201527f4245464f52455f4d414348494e455f4e4f545f46494e495348454400000000006044820152606401610e70565b60c083013582146120675760405162461bcd60e51b81526020600482015260116024820152701393d517d6915493d7d4d153911493d3d5607a1b6044820152606401610e70565b6001600160401b038116612082610100850160e08601615083565b6001600160401b0316146120cb5760405162461bcd60e51b815260206004820152601060248201526f494e424f585f4e4f545f41545f4f4e4560801b6044820152606401610e70565b6120dd61012084016101008501615083565b6001600160401b0316156121335760405162461bcd60e51b815260206004820152601c60248201527f504f534954494f4e5f494e5f4d4553534147455f4e4f545f5a45524f000000006044820152606401610e70565b6001612147610140850161012086016154ca565b6003811115612158576121586154a5565b146121a55760405162461bcd60e51b815260206004820152601a60248201527f41465445525f4d414348494e455f4e4f545f46494e49534845440000000000006044820152606401610e70565b60a08301356121c08460006001600160401b038516816135a0565b506121cd600182856132cc565b604051601d90600080516020615a2883398151915290600090a250505050565b607554600160801b90046001600160401b031690565b60335460ff166122255760405162461bcd60e51b8152600401610e7090615315565b806122425760405162461bcd60e51b8152600401610e70906154e5565b60005b818110156123585760006079818585858181106122645761226461548f565b90506020020160208101906122799190614de6565b6001600160a01b03168152602081019190915260400160002060010154600160801b90046001600160401b0316146122e55760405162461bcd60e51b815260206004820152600f60248201526e14d51052d15497d25397d0d2105313608a1b6044820152606401610e70565b6123168383838181106122fa576122fa61548f565b905060200201602081019061230f9190614de6565b6000613c10565b5061234683838381811061232c5761232c61548f565b90506020020160208101906123419190614de6565b613cd5565b8061235081615520565b915050612245565b50604051601690600080516020615a2883398151915290600090a25050565b61237f613d7b565b604051600390600080516020615a2883398151915290600090a2565b604051631b2ce7f360e11b81526001600160a01b03831690633659cfe6906123c7908490600401614dbd565b600060405180830381600087803b1580156123e157600080fd5b505af11580156123f5573d6000803e3d6000fd5b505060405160149250600080516020615a288339815191529150600090a25050565b6068819055604051601a90600080516020615a2883398151915290600090a250565b6000805b607a5481101561249457607a818154811061245a5761245a61548f565b6000918252602090912001546001600160a01b03848116911614156124825750600192915050565b8061248c81615520565b91505061243d565b50600092915050565b6124a5614c98565b6001600160401b03821660009081526076602052604090206040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e0870152918204831661010086015281048216610120850152919091041661014082015260059091015461016082015292915050565b6073819055604051600890600080516020615a2883398151915290600090a250565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156125cf5760405162461bcd60e51b8152600401610e7090615360565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316612601612da4565b6001600160a01b0316146126275760405162461bcd60e51b8152600401610e70906153ac565b611c3982826001612dc5565b607e805460ff1916821515179055604051601e90600080516020615a2883398151915290600090a250565b8261267b5760405162461bcd60e51b8152600401610e70906154e5565b82811461269a5760405162461bcd60e51b8152600401610e709061553b565b60005b83811015612731578282828181106126b7576126b761548f565b90506020020160208101906126cc9190615271565b607460008787858181106126e2576126e261548f565b90506020020160208101906126f79190614de6565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061272981615520565b91505061269d565b50604051600690600080516020615a2883398151915290600090a250505050565b6001600160401b03821660009081526077602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b6000816001600160401b0316116127db5760405162461bcd60e51b81526020600482015260166024820152751253959053125117d0d3d39192549357d411549253d160521b6044820152606401610e70565b6065805467ffffffffffffffff19166001600160401b038316179055604051600990600080516020615a2883398151915290600090a250565b6000607a8281548110611ecf57611ecf61548f565b6001600160a01b038116600090815260796020526040812060010154600160c01b900460ff1680156127835750607554612783906001600160401b031683612752565b6000607a82815481106128815761288161548f565b600091825260209091200154600160a01b90046001600160401b031692915050565b60335460ff166128c55760405162461bcd60e51b8152600401610e7090615315565b826128e25760405162461bcd60e51b8152600401610e70906154e5565b8281146129015760405162461bcd60e51b8152600401610e709061553b565b60005b83811015612a925760006129648686848181106129235761292361548f565b90506020020160208101906129389190614de6565b85858581811061294a5761294a61548f565b905060200201602081019061295f9190614de6565b613df6565b90506001600160401b0381166129ab5760405162461bcd60e51b815260206004820152600c60248201526b1393d517d25397d0d210531360a21b6044820152606401610e70565b612a038686848181106129c0576129c061548f565b90506020020160208101906129d59190614de6565b6001600160a01b03166000908152607960205260409020600101805467ffffffffffffffff60801b19169055565b612a188484848181106129c0576129c061548f565b606e546040516356e9df9760e01b81526001600160401b03831660048201526001600160a01b03909116906356e9df9790602401600060405180830381600087803b158015612a6657600080fd5b505af1158015612a7a573d6000803e3d6000fd5b50505050508080612a8a90615520565b915050612904565b50604051601590600080516020615a2883398151915290600090a250505050565b60007f000000000000000000000000000000000000000000000000000000000000000015612b11576001600160401b0382166000908152607f6020526040902054806127835760405162461bcd60e51b8152600401610e7090615561565b6001600160401b03821660009081526076602052604081206003810154909150600160401b90046001600160401b0316612b5d5760405162461bcd60e51b8152600401610e7090615561565b60040154600160c01b90046001600160401b031692915050565b919050565b612b846132a4565b6001600160a01b0316816001600160a01b03161415612bd65760405162461bcd60e51b815260206004820152600e60248201526d494e56414c49445f455343524f5760901b6044820152606401610e70565b607180546001600160a01b0319166001600160a01b038316179055604051601990600080516020615a2883398151915290600090a250565b606b80546001600160a01b0319166001600160a01b0383811691909117909155606a546040516319dc7ae560e31b815291169063cee3d72890612c589084906001906004016153f8565b600060405180830381600087803b158015612c7257600080fd5b505af1158015612c86573d6000803e3d6000fd5b505060405160009250600080516020615a2883398151915291508290a250565b60408051600481526024810182526020810180516001600160e01b03166302881c7960e11b179052905160009182918291606491612ce491906155ae565b600060405180830381855afa9150503d8060008114612d1f576040519150601f19603f3d011682016040523d82523d6000602084013e612d24565b606091505b5091509150818015612d37575080516020145b9250505090565b60335460ff16612d605760405162461bcd60e51b8152600401610e7090615315565b6033805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b604051612d9a9190614dbd565b60405180910390a1565b6000600080516020615a088339815191525b546001600160a01b0316919050565b7f49bd798cd84788856140a4cd5030756b4d08a9e4d55db725ec195f232d262a895460ff1615612df85761195883613ec4565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b158015612e3157600080fd5b505afa925050508015612e61575060408051601f3d908101601f19168201909252612e5e918101906155ca565b60015b612ece5760405162461bcd60e51b815260206004820152603860248201527f45524331393637557067726164653a206e6577207365636f6e6461727920696d604482015277706c656d656e746174696f6e206973206e6f74205555505360401b6064820152608401610e70565b7f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d8114612f595760405162461bcd60e51b815260206004820152603360248201527f45524331393637557067726164653a20756e737570706f72746564207365636f6044820152721b99185c9e481c1c9bde1a58589b1955555251606a1b6064820152608401610e70565b50611958838383613f7f565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f612f8e6132a4565b604080516001600160a01b03928316815291841660208301520160405180910390a161112381613faa565b612fc1614c98565b612fc9614cfc565b6000612ffb604051806040016040528084815260200160016003811115612ff257612ff26154a5565b90526001614036565b9050612d378160008080438161407b565b6130146140cf565b60008080526076602090815282517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a181958558201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a1819595560408201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195a5560608201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195b8054608085015160a086015160c08701516001600160401b039586166001600160801b031994851617600160401b9387168402176001600160801b03908116600160801b93881684026001600160c01b0390811691909117600160c01b93891684021790965560e08901517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195c80546101008c01516101208d01516101408e0151948c169290991691909117908a169096029590951790911694871690920290941692909217919093169091021790556101608201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195d556131b89060016155e3565b607560086101000a8154816001600160401b0302191690836001600160401b031602179055507f0000000000000000000000000000000000000000000000000000000000000000156111235760646001600160a01b031663a3b1b31d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561323e57600080fd5b505afa158015613252573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061327691906155ca565b60008052607f6020527f18b3a2798575d3a428c1f52e616a74b071539854e037e7d7c535365d474f40335550565b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103612db6565b6001600160401b03831660009081526076602052604090206132ee8383614100565b81600201541461332f5760405162461bcd60e51b815260206004820152600c60248201526b434f4e4649524d5f4441544160a01b6044820152606401610e70565b606b54604051630502677360e51b815260048101849052602481018590526001600160a01b039091169063a04cee6090604401600060405180830381600087803b15801561337c57600080fd5b505af1158015613390573d6000803e3d6000fd5b50506075805467ffffffffffffffff19166001600160401b038816179055506133bc90508460016155e3565b6075805467ffffffffffffffff60401b1916600160401b6001600160401b03938416021790556040805185815260208101859052918616917f22ef0479a7ff660660d1c2fe35f1b632cf31675c2d9378db8cec95b00d8ffa3c91015b60405180910390a250505050565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff1615613459576119588361411c565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561349257600080fd5b505afa9250505080156134c2575060408051601f3d908101601f191682019092526134bf918101906155ca565b60015b6135255760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b6064820152608401610e70565b600080516020615a0883398151915281146135945760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b6064820152608401610e70565b5061195883838361419e565b600060016135b6610140870161012088016154ca565b60038111156135c7576135c76154a5565b14806135f5575060026135e2610140870161012088016154ca565b60038111156135f3576135f36154a5565b145b6136345760405162461bcd60e51b815260206004820152601060248201526f4241445f41465445525f53544154555360801b6044820152606401610e70565b61363c614d21565b6136458561249d565b6060820152606a54604080516221048360e21b815290516001600160a01b03909216916284120c91600480820192602092909190829003018186803b15801561368d57600080fd5b505afa1580156136a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136c591906155ca565b81526060810151516136d787866141a7565b146137165760405162461bcd60e51b815260206004820152600f60248201526e0a0a48aacbea6a882a88abe9082a69608b1b6044820152606401610e70565b600061373261372d36899003890160a08a016156d0565b6141e3565b9050600061374861372d368a90038a018a6156d0565b9050806001600160401b0316826001600160401b0316101561379e5760405162461bcd60e51b815260206004820152600f60248201526e494e424f585f4241434b574152445360881b6044820152606401610e70565b806001600160401b0316826001600160401b03161415613844576137cf6137ca368a90038a018a6156d0565b6141f8565b6001600160401b03166137ed6137ca368b90038b0160a08c016156d0565b6001600160401b031610156138445760405162461bcd60e51b815260206004820152601a60248201527f494e424f585f504f535f494e5f4d53475f4241434b57415244530000000000006044820152606401610e70565b60026138586101408a016101208b016154ca565b6003811115613869576138696154a5565b1480613892575060006138876137ca368b90038b0160a08c016156d0565b6001600160401b0316115b156138a557816138a1816156ec565b9250505b82516001600160401b03831611156138f05760405162461bcd60e51b815260206004820152600e60248201526d12539093d617d41054d517d1539160921b6044820152606401610e70565b6001600160401b0382161561399857606a546001600160a01b03166316bf557961391b600185615713565b6040516001600160e01b031960e084901b1681526001600160401b03909116600482015260240160206040518083038186803b15801561395a57600080fd5b505afa15801561396e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061399291906155ca565b60e08401525b506139b290506139ad3688900388018861577a565b614207565b60408201526065546139cd906001600160401b0316436155e3565b6001600160401b0390811660c0830152606082015161012001511615801560a0830152613a2357606081015161012001516001600160401b03166000908152607660205260409020600501546080820152613a33565b6060810151610160015160808201525b613a528160a00151826080015183604001518460e001516068546142a6565b915082821480613a60575082155b613aa35760405162461bcd60e51b81526020600482015260146024820152730aa9c8ab0a08a86a88a88be9c9e888abe9082a6960631b6044820152606401610e70565b613aeb613ab78760a00183600001516141a7565b613ac8836040015143606854614313565b613adf613ada368b90038b018b61577a565b614352565b888560c001518761407b565b60208201526000613afa6121ed565b613b059060016155e3565b90506000613b27876001600160401b0316600090815260766020526040902090565b9050613b33818361437c565b613b4083602001516143ed565b50508181606001516101600151613b556121ed565b6001600160401b03167f4f4caa9e67fb994e349dd35d1ad0ce23053d4323f83ce11dc817b5435031d09684604001518a8660e001516068548860000151604051613ba3959493929190615864565b60405180910390a450949350505050565b60008135158015613bc757506020820135155b8015613be95750613bde6060830160408401615083565b6001600160401b0316155b80156127835750613c006080830160608401615083565b6001600160401b03161592915050565b6001600160a01b0382166000908152607960205260408120805480841115613c6d5760405162461bcd60e51b815260206004820152601060248201526f544f4f5f4c4954544c455f5354414b4560801b6044820152606401610e70565b6000613c7985836158c4565b8584559050613c8886826145db565b60408051838152602081018790526001600160a01b038816917febd093d389ab57f3566918d2c379a2b4d9539e8eb95efad9d5e465457833fde6910160405180910390a295945050505050565b6001600160a01b03808216600081815260796020908152604080832081518083019092529381526001808501546001600160401b03600160401b9091048116938301938452607a8054928301815590945290517ff0440771a29e57e18c66727944770b82cc77924aef333c927ce6bdd2cdb3ae0390910180549251909316600160a01b026001600160e01b031990921694169390931792909217909155611c3982614677565b60335460ff1615613dc15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e70565b6033805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612d8d3390565b6001600160a01b03828116600090815260796020526040808220928416825281206001830154919291600160801b90046001600160401b031680613e665760405162461bcd60e51b81526020600482015260076024820152661393d7d0d2105360ca1b6044820152606401610e70565b60018201546001600160401b03828116600160801b9092041614613ebb5760405162461bcd60e51b815260206004820152600c60248201526b1112519197d25397d0d2105360a21b6044820152606401610e70565b95945050505050565b6001600160a01b0381163b613f3b5760405162461bcd60e51b815260206004820152603760248201527f455243313936373a206e6577207365636f6e6461727920696d706c656d656e74604482015276185d1a5bdb881a5cc81b9bdd08184818dbdb9d1c9858dd604a1b6064820152608401610e70565b807f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d5b80546001600160a01b0319166001600160a01b039290921691909117905550565b613f888361483a565b600082511180613f955750805b1561195857613fa4838361487a565b50505050565b6001600160a01b03811661400f5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e70565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103613f5e565b6000614045836000015161489f565b82846020015160405160200161405d939291906158db565b60405160208183030381529060405280519060200120905092915050565b614083614c98565b61408b614c98565b96875250602086019490945260408501929092526001600160401b0390811660608501529081166080840181905260a0840152431661014083015261016082015290565b600054610100900460ff166140f65760405162461bcd60e51b8152600401610e7090615919565b6140fe614913565b565b604080516020810184905290810182905260009060600161405d565b6001600160a01b0381163b6141895760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401610e70565b80600080516020615a08833981519152613f5e565b613f8883614946565b60006141c06141bb368590038501856156d0565b61489f565b826141d160a08601608087016154ca565b60405160200161405d939291906158db565b6020810151600090815b602002015192915050565b602081015160009060016141ed565b6000614211614d72565b8251602001518190600381111561422a5761422a6154a5565b9081600381111561423d5761423d6154a5565b90525060208381015181015190820190600381111561425e5761425e6154a5565b90816003811115614271576142716154a5565b90525061427c614d90565b83515181526020808501515190820152604084015161429e9083908390614986565b949350505050565b600080866142b55760006142b8565b60015b6040516001600160f81b031960f883901b1660208201526021810188905260418101879052606181018690526081810185905290915060a1016040516020818303038152906040528051906020012091505095945050505050565b6040805160208101859052908101839052606081018290526000906080015b6040516020818303038152906040528051906020012090505b9392505050565b6000612783614368836020015160000151614a30565b60208401515161437790614a3b565b614100565b6004820154600160401b90046001600160401b03166143bd5760048201805467ffffffffffffffff60401b1916600160401b436001600160401b0316021790555b600490910180546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b60758054600160801b90046001600160401b031690601061440d836156ec565b825461010092830a6001600160401b03818102199092169282160291909117909255607554600160801b908190048316600090815260766020908152604091829020875181559087015160018201559086015160028201556060860151600382018054608089015160a08a015160c08b01519489166001600160801b031993841617600160401b928a168302176001600160801b03908116918a1688026001600160c01b0390811692909217600160c01b968b1687021790945560e08b0151600487018054998d01516101208e01516101408f0151938d169b9096169a909a17998b16909302989098179093169188169095029091161793909416909302919091179055610160830151600590910155507f0000000000000000000000000000000000000000000000000000000000000000156111235760646001600160a01b031663a3b1b31d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561457e57600080fd5b505afa158015614592573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145b691906155ca565b607554600160801b90046001600160401b03166000908152607f602052604090205550565b6001600160a01b0382166000908152607b6020526040812054906145ff8383615964565b6001600160a01b0385166000908152607b60205260408120829055607c80549293508592909190614631908490615964565b909155505060408051838152602081018390526001600160a01b038616917fa740af14c56e4e04a617b1de1eb20de73270decbaaead14f142aabf3038e5ae29101613418565b6001600160a01b03811660009081526079602052604090206001810154600160c01b900460ff166146d75760405162461bcd60e51b815260206004820152600a6024820152691393d517d4d51052d15160b21b6044820152606401610e70565b600180820154607880546001600160401b039092169290916146f991906158c4565b815481106147095761470961548f565b600091825260209091200154607880546001600160a01b03909216916001600160401b03841690811061473e5761473e61548f565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080607960006078846001600160401b03168154811061478d5761478d61548f565b6000918252602080832091909101546001600160a01b031683528201929092526040019020600101805467ffffffffffffffff19166001600160401b039290921691909117905560788054806147e5576147e561597c565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03949094168152607990935250506040812090815560010180546001600160c81b0319169055565b61484381613ec4565b6040516001600160a01b038216907ff7eed2a7fabbf1bec8d55ed5e785cc76622376dde5df4ff15470551e030b813490600090a250565b606061434b8383604051806060016040528060278152602001615a4860279139614a47565b8051805160209182015192820151805190830151604080516c23b637b130b61039ba30ba329d60991b81870152602d810194909452604d8401959095526001600160c01b031960c092831b8116606d850152911b1660758201528251808203605d018152607d909101909252815191012090565b600054610100900460ff1661493a5760405162461bcd60e51b8152600401610e7090615919565b6033805460ff19169055565b61494f8161411c565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b604080516002808252606082018352600092839291906020830190803683370190505085519091506149c8906149c38660005b602002015161489f565b614b24565b816000815181106149db576149db61548f565b60209081029190910101526149fc85600160200201516149c38660016149b9565b81600181518110614a0f57614a0f61548f565b602002602001018181525050613ebb6000846001600160401b031683614c48565b8051600090816141ed565b805160009060016141ed565b60606001600160a01b0384163b614aaf5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610e70565b600080856001600160a01b031685604051614aca91906155ae565b600060405180830381855af49150503d8060008114614b05576040519150601f19603f3d011682016040523d82523d6000602084013e614b0a565b606091505b5091509150614b1a828286614c5f565b9695505050505050565b60006001836003811115614b3a57614b3a6154a5565b1415614b80576040516b213637b1b59039ba30ba329d60a11b6020820152602c8101839052604c015b604051602081830303815290604052805190602001209050612783565b6002836003811115614b9457614b946154a5565b1415614bca5760405174213637b1b59039ba30ba32961032b93937b932b21d60591b602082015260358101839052605501614b63565b6003836003811115614bde57614bde6154a5565b1415614c0d5760405174213637b1b59039ba30ba3296103a37b7903330b91d60591b6020820152603501614b63565b60405162461bcd60e51b815260206004820152601060248201526f4241445f424c4f434b5f53544154555360801b6044820152606401610e70565b600083838360405160200161433293929190615992565b60608315614c6e57508161434b565b825115614c7e5782518084602001fd5b8160405162461bcd60e51b8152600401610e7091906159d4565b6040805161018081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081018290526101208101829052610140810182905261016081019190915290565b6040518060400160405280614d0f614d72565b8152602001614d1c614d72565b905290565b60405180610100016040528060008152602001614d3c614c98565b815260006020820152604001614d50614c98565b8152600060208201819052604082018190526060820181905260809091015290565b60405180604001604052806002906020820280368337509192915050565b60405180604001604052806002905b614da7614cfc565b815260200190600190039081614d9f5790505090565b6001600160a01b0391909116815260200190565b6001600160a01b038116811461112357600080fd5b600060208284031215614df857600080fd5b813561434b81614dd1565b600060208284031215614e1557600080fd5b5035919050565b600080828403610160811215614e3157600080fd5b83356001600160401b03811115614e4757600080fd5b84016101c08187031215614e5a57600080fd5b9250610140601f1982011215614e6f57600080fd5b506020830190509250929050565b80356001600160401b0381168114612b7757600080fd5b600080600060608486031215614ea957600080fd5b614eb284614e7d565b95602085013595506040909401359392505050565b60006101608284031215614eda57600080fd5b50919050565b6000806000806101c08587031215614ef757600080fd5b614f0085614e7d565b935060208501359250614f168660408701614ec7565b939692955092936101a00135925050565b801515811461112357600080fd5b60008060408385031215614f4857600080fd5b8235614f5381614dd1565b91506020830135614f6381614f27565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715614fa657614fa6614f6e565b60405290565b604051601f8201601f191681016001600160401b0381118282101715614fd457614fd4614f6e565b604052919050565b60008060408385031215614fef57600080fd5b8235614ffa81614dd1565b91506020838101356001600160401b038082111561501757600080fd5b818601915086601f83011261502b57600080fd5b81358181111561503d5761503d614f6e565b61504f601f8201601f19168501614fac565b9150808252878482850101111561506557600080fd5b80848401858401376000848284010152508093505050509250929050565b60006020828403121561509557600080fd5b61434b82614e7d565b600061016082840312156150b157600080fd5b61434b8383614ec7565b60008083601f8401126150cd57600080fd5b5081356001600160401b038111156150e457600080fd5b6020830191508360208260051b85010111156150ff57600080fd5b9250929050565b6000806020838503121561511957600080fd5b82356001600160401b0381111561512f57600080fd5b61513b858286016150bb565b90969095509350505050565b6000806040838503121561515a57600080fd5b823561516581614dd1565b91506020830135614f6381614dd1565b60006101808201905082518252602083015160208301526040830151604083015260608301516151b060608401826001600160401b03169052565b5060808301516151cb60808401826001600160401b03169052565b5060a08301516151e660a08401826001600160401b03169052565b5060c083015161520160c08401826001600160401b03169052565b5060e083015161521c60e08401826001600160401b03169052565b50610100838101516001600160401b038116848301525050610120838101516001600160401b038116848301525050610140838101516001600160401b03811684830152505061016092830151919092015290565b60006020828403121561528357600080fd5b813561434b81614f27565b600080600080604085870312156152a457600080fd5b84356001600160401b03808211156152bb57600080fd5b6152c7888389016150bb565b909650945060208701359150808211156152e057600080fd5b506152ed878288016150bb565b95989497509550505050565b6000806040838503121561530c57600080fd5b61516583614e7d565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60006020828403121561535557600080fd5b815161434b81614f27565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b6001600160a01b039290921682521515602082015260400190565b6000808335601e1984360301811261542a57600080fd5b8301803591506001600160401b0382111561544457600080fd5b6020019150368190038213156150ff57600080fd5b83815260406020820152816040820152818360608301376000818301606090810191909152601f909201601f1916010192915050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b803560048110612b7757600080fd5b6000602082840312156154dc57600080fd5b61434b826154bb565b6020808252600b908201526a454d5054595f415252415960a81b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156155345761553461550a565b5060010190565b6020808252600c908201526b0aea49e9c8ebe988a9c8ea8960a31b604082015260600190565b6020808252600790820152664e4f5f4e4f444560c81b604082015260600190565b60005b8381101561559d578181015183820152602001615585565b83811115613fa45750506000910152565b600082516155c0818460208701615582565b9190910192915050565b6000602082840312156155dc57600080fd5b5051919050565b60006001600160401b038083168185168083038211156156055761560561550a565b01949350505050565b60006080828403121561562057600080fd5b615628614f84565b905082601f83011261563957600080fd5b615641614f84565b80604084018581111561565357600080fd5b845b8181101561566d578035845260209384019301615655565b5081845285605f86011261568057600080fd5b615688614f84565b9250829150608085018681111561569e57600080fd5b808210156156c2576156af82614e7d565b845260208401935060208201915061569e565b505060208301525092915050565b6000608082840312156156e257600080fd5b61434b838361560e565b60006001600160401b03808316818114156157095761570961550a565b6001019392505050565b60006001600160401b03838116908316818110156157335761573361550a565b039392505050565b600060a0828403121561574d57600080fd5b615755614f84565b9050615761838361560e565b815261576f608083016154bb565b602082015292915050565b6000610160828403121561578d57600080fd5b604051606081018181106001600160401b03821117156157af576157af614f6e565b6040526157bc848461573b565b81526157cb8460a0850161573b565b60208201526157dd6101408401614e7d565b60408201529392505050565b604081833760006040838101828152908301915b600281101561582c576001600160401b0361581784614e7d565b168252602092830192909101906001016157fd565b50505061583b608082016154bb565b6004811061585957634e487b7160e01b600052602160045260246000fd5b806080840152505050565b8581526101e0810161587960208301876157e9565b61588960c0830160a088016157e9565b6001600160401b0361589e6101408801614e7d565b1661016083015284610180830152836101a0830152826101c08301529695505050505050565b6000828210156158d6576158d661550a565b500390565b83815282602082015260006004831061590457634e487b7160e01b600052602160045260246000fd5b5060f89190911b604082015260410192915050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b600082198211156159775761597761550a565b500190565b634e487b7160e01b600052603160045260246000fd5b83815260006020848184015260408301845182860160005b828110156159c6578151845292840192908401906001016159aa565b509198975050505050505050565b60208152600082518060208401526159f3816040850160208701615582565b601f01601f1916919091016040019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcea8787f128d10b2cc0317b0c3960f9ad447f7f6c1ed189db1083ccffd20f456e416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212202106d8c87ec9008a3ca67000e3c51a22ef9e5a738f04a6fe365ec776ec3bbaac64736f6c63430008090033",
|
1805
|
+
"deployedBytecode": "0x6080604052600436106103905760003560e01c80637ba9534a116101de578063ce11e6ab11610103578063ef40a6701161009b578063ef40a67014610d08578063f065de3f14610d3e578063f33e1fac14610d5e578063f38c937914610d7e578063f63a434a14610d9e578063facd743b14610dbe578063fb0e722b14610dee578063fc8ffa0314610e0e578063ff204f3b14610e2e57600080fd5b8063ce11e6ab14610b79578063ce66d05c14610b99578063d01e660214610bb9578063d735e21d14610bd9578063dcd030aa14610bfe578063dff6978714610c1e578063e78cea9214610c33578063e8bd492214610c53578063ee35f32714610ce857600080fd5b8063948d658811610176578063948d6588146109815780639846129a146109a15780639a8a0592146109b4578063a23c44b1146109ca578063a2b4f1d814610ad9578063a3ffb77214610af9578063aa38a6e714610b19578063aa65af4814610b39578063bc45e0ae14610b5957600080fd5b80637ba9534a1461086f5780637c75c298146108845780638456cb59146108a4578063848bf918146108b95780638640ce5f146108d957806389384960146108fe5780638ee1a1261461091e57806391c657e81461093457806392c8134c1461095457600080fd5b806347fb24c5116102c45780636177fd181161025c5780636177fd181461071d57806363721d6b1461076057806365f7f80d1461077557806369fd251c146107935780636ddd3744146107dc57806371ef232c146107fc57806376e7e23b14610812578063771b2f97146108285780637b83a3fe1461084f57600080fd5b806347fb24c51461061d5780634f1ef2861461063d5780634f61f8501461065057806351ed6a301461067057806352d1902d1461069057806353b60c4a146106a5578063567ca41b146106c55780635c975abb146106e55780636136fe2e146106fd57600080fd5b80631b1689e9116103375780631b1689e9146104ac57806328ff127a146104d05780632e7acfa6146104f05780632f30cabd146105285780632f7968e81461055e5780633659cfe61461057e5780633e96576e1461059e57806345e38b64146105e7578063470dce4e146105fd57600080fd5b8063014cc92c14610395578063023a96fe146103cb5780630397d458146103eb578063046f7da21461040d57806306ae5851146104225780630d40a0fd1461044257806312ab3d3b1461046257806313af40351461048c575b600080fd5b3480156103a157600080fd5b50606f546103b5906001600160a01b031681565b6040516103c29190614dbd565b60405180910390f35b3480156103d757600080fd5b50606e546103b5906001600160a01b031681565b3480156103f757600080fd5b5061040b610406366004614de6565b610e4e565b005b34801561041957600080fd5b5061040b611020565b34801561042e57600080fd5b5061040b61043d366004614e03565b611044565b34801561044e57600080fd5b5061040b61045d366004614de6565b611066565b34801561046e57600080fd5b50607e5461047c9060ff1681565b60405190151581526020016103c2565b34801561049857600080fd5b5061040b6104a7366004614de6565b611126565b3480156104b857600080fd5b506104c2607d5481565b6040519081526020016103c2565b3480156104dc57600080fd5b5061040b6104eb366004614e1c565b61114c565b3480156104fc57600080fd5b50606554610510906001600160401b031681565b6040516001600160401b0390911681526020016103c2565b34801561053457600080fd5b506104c2610543366004614de6565b6001600160a01b03166000908152607b602052604090205490565b34801561056a57600080fd5b5061040b610579366004614e94565b61195d565b34801561058a57600080fd5b5061040b610599366004614de6565b6119a9565b3480156105aa57600080fd5b506105106105b9366004614de6565b6001600160a01b0316600090815260796020526040902060010154600160401b90046001600160401b031690565b3480156105f357600080fd5b506104c260735481565b34801561060957600080fd5b5061040b610618366004614ee0565b611a66565b34801561062957600080fd5b5061040b610638366004614f35565b611b0a565b61040b61064b366004614fdc565b611b8c565b34801561065c57600080fd5b5061040b61066b366004614de6565b611c3d565b34801561067c57600080fd5b506072546103b5906001600160a01b031681565b34801561069c57600080fd5b506104c2611cbc565b3480156106b157600080fd5b5061040b6106c0366004614de6565b611d6a565b3480156106d157600080fd5b5061040b6106e0366004614de6565b611da2565b3480156106f157600080fd5b5060335460ff1661047c565b34801561070957600080fd5b5061040b610718366004615083565b611e6f565b34801561072957600080fd5b5061047c610738366004614de6565b6001600160a01b0316600090815260796020526040902060010154600160c01b900460ff1690565b34801561076c57600080fd5b50607a546104c2565b34801561078157600080fd5b506075546001600160401b0316610510565b34801561079f57600080fd5b506105106107ae366004614de6565b6001600160a01b0316600090815260796020526040902060010154600160801b90046001600160401b031690565b3480156107e857600080fd5b506103b56107f7366004615083565b611eb1565b34801561080857600080fd5b506104c2607c5481565b34801561081e57600080fd5b506104c260675481565b34801561083457600080fd5b5060655461051090600160401b90046001600160401b031681565b34801561085b57600080fd5b5061040b61086a36600461509e565b611eea565b34801561087b57600080fd5b506105106121ed565b34801561089057600080fd5b5061040b61089f366004615106565b612203565b3480156108b057600080fd5b5061040b612377565b3480156108c557600080fd5b5061040b6108d4366004615147565b61239b565b3480156108e557600080fd5b50607554600160c01b90046001600160401b0316610510565b34801561090a57600080fd5b5061040b610919366004614e03565b612417565b34801561092a57600080fd5b506104c260685481565b34801561094057600080fd5b5061047c61094f366004614de6565b612439565b34801561096057600080fd5b5061097461096f366004615083565b61249d565b6040516103c29190615175565b34801561098d57600080fd5b5061040b61099c366004614e03565b612564565b61040b6109af366004614fdc565b612586565b3480156109c057600080fd5b506104c260665481565b3480156109d657600080fd5b50610a846109e5366004614de6565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506001600160a01b0316600090815260796020908152604091829020825160a081018452815481526001909101546001600160401b0380821693830193909352600160401b8104831693820193909352600160801b83049091166060820152600160c01b90910460ff161515608082015290565b6040516103c29190600060a0820190508251825260208301516001600160401b038082166020850152806040860151166040850152806060860151166060850152505060808301511515608083015292915050565b348015610ae557600080fd5b5061040b610af4366004615271565b612633565b348015610b0557600080fd5b5061040b610b1436600461528e565b61265e565b348015610b2557600080fd5b50606d546103b5906001600160a01b031681565b348015610b4557600080fd5b5061047c610b543660046152f9565b612752565b348015610b6557600080fd5b506070546103b5906001600160a01b031681565b348015610b8557600080fd5b50606b546103b5906001600160a01b031681565b348015610ba557600080fd5b5061040b610bb4366004615083565b612789565b348015610bc557600080fd5b506103b5610bd4366004614e03565b612814565b348015610be557600080fd5b50607554600160401b90046001600160401b0316610510565b348015610c0a57600080fd5b5061047c610c19366004614de6565b612829565b348015610c2a57600080fd5b50607854610510565b348015610c3f57600080fd5b50606a546103b5906001600160a01b031681565b348015610c5f57600080fd5b50610cb0610c6e366004614de6565b607960205260009081526040902080546001909101546001600160401b0380821691600160401b8104821691600160801b82041690600160c01b900460ff1685565b604080519586526001600160401b0394851660208701529284169285019290925290911660608301521515608082015260a0016103c2565b348015610cf457600080fd5b50606c546103b5906001600160a01b031681565b348015610d1457600080fd5b506104c2610d23366004614de6565b6001600160a01b031660009081526079602052604090205490565b348015610d4a57600080fd5b506071546103b5906001600160a01b031681565b348015610d6a57600080fd5b50610510610d79366004614e03565b61286c565b348015610d8a57600080fd5b5061040b610d9936600461528e565b6128a3565b348015610daa57600080fd5b506104c2610db9366004615083565b612ab3565b348015610dca57600080fd5b5061047c610dd9366004614de6565b60746020526000908152604090205460ff1681565b348015610dfa57600080fd5b506069546103b5906001600160a01b031681565b348015610e1a57600080fd5b5061040b610e29366004614de6565b612b7c565b348015610e3a57600080fd5b5061040b610e49366004614de6565b612c0e565b60335460ff16610e795760405162461bcd60e51b8152600401610e7090615315565b60405180910390fd5b6000806001600160a01b0316826001600160a01b0316141590506000306001600160a01b031663cd205fda6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ece57600080fd5b505afa158015610ee2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f069190615343565b905081151581151514610f535760405162461bcd60e51b81526020600482015260156024820152741393d7d554d15497d313d1d250d7d4d5541413d495605a1b6044820152606401610e70565b6078546001600160401b031615610fa05760405162461bcd60e51b81526020600482015260116024820152704e4f5f4143544956455f5354414b45525360781b6044820152606401610e70565b607c5415610fe65760405162461bcd60e51b81526020600482015260136024820152724e4f5f50454e44494e475f574954484452415760681b6044820152606401610e70565b607280546001600160a01b0319166001600160a01b038516179055604051600d90600080516020615a2883398151915290600090a2505050565b611028612d3e565b604051600490600080516020615a2883398151915290600090a2565b6067819055604051600c90600080516020615a2883398151915290600090a250565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156110af5760405162461bcd60e51b8152600401610e7090615360565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166110e1612da4565b6001600160a01b0316146111075760405162461bcd60e51b8152600401610e70906153ac565b6040805160008082526020820190925261112391839190612dc5565b50565b61112f81612f65565b604051600790600080516020615a2883398151915290600090a250565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156111955760405162461bcd60e51b8152600401610e7090615360565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166111c7612da4565b6001600160a01b0316146111ed5760405162461bcd60e51b8152600401610e70906153ac565b600054610100900460ff166112085760005460ff161561120c565b303b155b61126f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610e70565b600054610100900460ff16158015611291576000805461ffff19166101011790555b43607d556112a26020830183614de6565b606a80546001600160a01b0319166001600160a01b03929092169190911790556112d26040830160208401614de6565b606c80546001600160a01b0319166001600160a01b03929092169190911790556112ff6020830183614de6565b6001600160a01b03166347fb24c561131d6060850160408601614de6565b60016040518363ffffffff1660e01b815260040161133c9291906153f8565b600060405180830381600087803b15801561135657600080fd5b505af115801561136a573d6000803e3d6000fd5b5061137c925050506020830183614de6565b6001600160a01b0316634f61f85061139a6040850160208601614de6565b6040518263ffffffff1660e01b81526004016113b69190614dbd565b600060405180830381600087803b1580156113d057600080fd5b505af11580156113e4573d6000803e3d6000fd5b506113f9925050506060830160408401614de6565b606980546001600160a01b0319166001600160a01b03929092169190911790556114296080830160608401614de6565b606b80546001600160a01b0319166001600160a01b03929092169190911790556114566020830183614de6565b6001600160a01b031663cee3d7286114746080850160608601614de6565b60016040518363ffffffff1660e01b81526004016114939291906153f8565b600060405180830381600087803b1580156114ad57600080fd5b505af11580156114c1573d6000803e3d6000fd5b506114d69250505060a0830160808401614de6565b606d80546001600160a01b0319166001600160a01b03929092169190911790556115036020830183614de6565b6001600160a01b03166347fb24c561152160a0850160808601614de6565b60016040518363ffffffff1660e01b81526004016115409291906153f8565b600060405180830381600087803b15801561155a57600080fd5b505af115801561156e573d6000803e3d6000fd5b506115839250505060a0830160808401614de6565b6001600160a01b031663cf8d56d660e08501356115a4610100870187615413565b6040518463ffffffff1660e01b81526004016115c293929190615459565b600060405180830381600087803b1580156115dc57600080fd5b505af11580156115f0573d6000803e3d6000fd5b50611605925050506040830160208401614de6565b60405163e0bc972960e01b815260006004820181905260c0602483015260c4820181905260016044830181905260648301829052608483019190915260a48201526001600160a01b03919091169063e0bc97299060e401600060405180830381600087803b15801561167657600080fd5b505af115801561168a573d6000803e3d6000fd5b506116a19250505061012083016101008401614de6565b606f80546001600160a01b0319166001600160a01b03929092169190911790556116d361014083016101208401614de6565b607080546001600160a01b0319166001600160a01b039290921691909117905561170360c0830160a08401614de6565b606e80546001600160a01b0319166001600160a01b0392909216919091179055600061172d612fb9565b90506117388161300c565b6117456020850185615083565b6065805467ffffffffffffffff19166001600160401b03929092169190911790556117766040850160208601615083565b606580546001600160401b0392909216600160401b0267ffffffffffffffff60401b1990921691909117905560e084013560665560608401356067556080840135606855604b6073556117c76132a4565b6001600160a01b03166117e060e0860160c08701614de6565b6001600160a01b0316141561182e5760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa2a9a1a927abafa0a226a4a760611b6044820152606401610e70565b61183e60c0850160a08601614de6565b6001600160a01b031661185760e0860160c08701614de6565b6001600160a01b031614156118a55760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa2a9a1a927abafa7aba722a960611b6044820152606401610e70565b6118b560e0850160c08601614de6565b607180546001600160a01b0319166001600160a01b03929092169190911790556118e56060850160408601614de6565b607280546001600160a01b0319166001600160a01b0392909216919091179055604080516080860135815260e086013560208201527ffc1b83c11d99d08a938e0b82a0bd45f822f71ff5abf23f999c93c4533d752464910160405180910390a1508015611958576000805461ff00191690555b505050565b60335460ff1661197f5760405162461bcd60e51b8152600401610e7090615315565b61198a8383836132cc565b604051601890600080516020615a2883398151915290600090a2505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156119f25760405162461bcd60e51b8152600401610e7090615360565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611a24612da4565b6001600160a01b031614611a4a5760405162461bcd60e51b8152600401610e70906153ac565b6040805160008082526020820190925261112391839190613426565b60335460ff16611a885760405162461bcd60e51b8152600401610e7090615315565b6075546001600160401b03858116911614611add5760405162461bcd60e51b815260206004820152601560248201527413d3931657d310551154d517d0d3d3919254935151605a1b6044820152606401610e70565b611ae9828585846135a0565b50604051601790600080516020615a2883398151915290600090a250505050565b606a546040516347fb24c560e01b81526001600160a01b03909116906347fb24c590611b3c90859085906004016153f8565b600060405180830381600087803b158015611b5657600080fd5b505af1158015611b6a573d6000803e3d6000fd5b505060405160029250600080516020615a288339815191529150600090a25050565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415611bd55760405162461bcd60e51b8152600401610e7090615360565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611c07612da4565b6001600160a01b031614611c2d5760405162461bcd60e51b8152600401610e70906153ac565b611c3982826001613426565b5050565b606a546040516304f61f8560e41b81526001600160a01b0390911690634f61f85090611c6d908490600401614dbd565b600060405180830381600087803b158015611c8757600080fd5b505af1158015611c9b573d6000803e3d6000fd5b5050604051601b9250600080516020615a288339815191529150600090a250565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611d575760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c6044820152771b1959081d1a1c9bdd59da0819195b1959d85d1958d85b1b60421b6064820152608401610e70565b50600080516020615a0883398151915290565b606980546001600160a01b0319166001600160a01b038316179055604051601c90600080516020615a2883398151915290600090a250565b606b546001600160a01b0382811691161415611ded5760405162461bcd60e51b815260206004820152600a602482015269086aaa4be9eaaa8849eb60b31b6044820152606401610e70565b606a546040516319dc7ae560e31b81526001600160a01b039091169063cee3d72890611e209084906000906004016153f8565b600060405180830381600087803b158015611e3a57600080fd5b505af1158015611e4e573d6000803e3d6000fd5b505060405160019250600080516020615a288339815191529150600090a250565b6065805467ffffffffffffffff60401b1916600160401b6001600160401b03841602179055604051600a90600080516020615a2883398151915290600090a250565b60006078826001600160401b031681548110611ecf57611ecf61548f565b6000918252602090912001546001600160a01b031692915050565b60335460ff16611f0c5760405162461bcd60e51b8152600401610e7090615315565b60006001611f186121ed565b6001600160401b031615611f685760405162461bcd60e51b81526020600482015260176024820152761393d397d1d1539154d254d7d393d11154d7d1561254d5604a1b6044820152606401610e70565b611f7183613bb4565b611fb05760405162461bcd60e51b815260206004820152601060248201526f4e4f545f454d5054595f4245464f524560801b6044820152606401610e70565b6001611fc260a08501608086016154ca565b6003811115611fd357611fd36154a5565b146120205760405162461bcd60e51b815260206004820152601b60248201527f4245464f52455f4d414348494e455f4e4f545f46494e495348454400000000006044820152606401610e70565b60c083013582146120675760405162461bcd60e51b81526020600482015260116024820152701393d517d6915493d7d4d153911493d3d5607a1b6044820152606401610e70565b6001600160401b038116612082610100850160e08601615083565b6001600160401b0316146120cb5760405162461bcd60e51b815260206004820152601060248201526f494e424f585f4e4f545f41545f4f4e4560801b6044820152606401610e70565b6120dd61012084016101008501615083565b6001600160401b0316156121335760405162461bcd60e51b815260206004820152601c60248201527f504f534954494f4e5f494e5f4d4553534147455f4e4f545f5a45524f000000006044820152606401610e70565b6001612147610140850161012086016154ca565b6003811115612158576121586154a5565b146121a55760405162461bcd60e51b815260206004820152601a60248201527f41465445525f4d414348494e455f4e4f545f46494e49534845440000000000006044820152606401610e70565b60a08301356121c08460006001600160401b038516816135a0565b506121cd600182856132cc565b604051601d90600080516020615a2883398151915290600090a250505050565b607554600160801b90046001600160401b031690565b60335460ff166122255760405162461bcd60e51b8152600401610e7090615315565b806122425760405162461bcd60e51b8152600401610e70906154e5565b60005b818110156123585760006079818585858181106122645761226461548f565b90506020020160208101906122799190614de6565b6001600160a01b03168152602081019190915260400160002060010154600160801b90046001600160401b0316146122e55760405162461bcd60e51b815260206004820152600f60248201526e14d51052d15497d25397d0d2105313608a1b6044820152606401610e70565b6123168383838181106122fa576122fa61548f565b905060200201602081019061230f9190614de6565b6000613c10565b5061234683838381811061232c5761232c61548f565b90506020020160208101906123419190614de6565b613cd5565b8061235081615520565b915050612245565b50604051601690600080516020615a2883398151915290600090a25050565b61237f613d7b565b604051600390600080516020615a2883398151915290600090a2565b604051631b2ce7f360e11b81526001600160a01b03831690633659cfe6906123c7908490600401614dbd565b600060405180830381600087803b1580156123e157600080fd5b505af11580156123f5573d6000803e3d6000fd5b505060405160149250600080516020615a288339815191529150600090a25050565b6068819055604051601a90600080516020615a2883398151915290600090a250565b6000805b607a5481101561249457607a818154811061245a5761245a61548f565b6000918252602090912001546001600160a01b03848116911614156124825750600192915050565b8061248c81615520565b91505061243d565b50600092915050565b6124a5614c98565b6001600160401b03821660009081526076602052604090206040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e0870152918204831661010086015281048216610120850152919091041661014082015260059091015461016082015292915050565b6073819055604051600890600080516020615a2883398151915290600090a250565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156125cf5760405162461bcd60e51b8152600401610e7090615360565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316612601612da4565b6001600160a01b0316146126275760405162461bcd60e51b8152600401610e70906153ac565b611c3982826001612dc5565b607e805460ff1916821515179055604051601e90600080516020615a2883398151915290600090a250565b8261267b5760405162461bcd60e51b8152600401610e70906154e5565b82811461269a5760405162461bcd60e51b8152600401610e709061553b565b60005b83811015612731578282828181106126b7576126b761548f565b90506020020160208101906126cc9190615271565b607460008787858181106126e2576126e261548f565b90506020020160208101906126f79190614de6565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061272981615520565b91505061269d565b50604051600690600080516020615a2883398151915290600090a250505050565b6001600160401b03821660009081526077602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b6000816001600160401b0316116127db5760405162461bcd60e51b81526020600482015260166024820152751253959053125117d0d3d39192549357d411549253d160521b6044820152606401610e70565b6065805467ffffffffffffffff19166001600160401b038316179055604051600990600080516020615a2883398151915290600090a250565b6000607a8281548110611ecf57611ecf61548f565b6001600160a01b038116600090815260796020526040812060010154600160c01b900460ff1680156127835750607554612783906001600160401b031683612752565b6000607a82815481106128815761288161548f565b600091825260209091200154600160a01b90046001600160401b031692915050565b60335460ff166128c55760405162461bcd60e51b8152600401610e7090615315565b826128e25760405162461bcd60e51b8152600401610e70906154e5565b8281146129015760405162461bcd60e51b8152600401610e709061553b565b60005b83811015612a925760006129648686848181106129235761292361548f565b90506020020160208101906129389190614de6565b85858581811061294a5761294a61548f565b905060200201602081019061295f9190614de6565b613df6565b90506001600160401b0381166129ab5760405162461bcd60e51b815260206004820152600c60248201526b1393d517d25397d0d210531360a21b6044820152606401610e70565b612a038686848181106129c0576129c061548f565b90506020020160208101906129d59190614de6565b6001600160a01b03166000908152607960205260409020600101805467ffffffffffffffff60801b19169055565b612a188484848181106129c0576129c061548f565b606e546040516356e9df9760e01b81526001600160401b03831660048201526001600160a01b03909116906356e9df9790602401600060405180830381600087803b158015612a6657600080fd5b505af1158015612a7a573d6000803e3d6000fd5b50505050508080612a8a90615520565b915050612904565b50604051601590600080516020615a2883398151915290600090a250505050565b60007f000000000000000000000000000000000000000000000000000000000000000015612b11576001600160401b0382166000908152607f6020526040902054806127835760405162461bcd60e51b8152600401610e7090615561565b6001600160401b03821660009081526076602052604081206003810154909150600160401b90046001600160401b0316612b5d5760405162461bcd60e51b8152600401610e7090615561565b60040154600160c01b90046001600160401b031692915050565b919050565b612b846132a4565b6001600160a01b0316816001600160a01b03161415612bd65760405162461bcd60e51b815260206004820152600e60248201526d494e56414c49445f455343524f5760901b6044820152606401610e70565b607180546001600160a01b0319166001600160a01b038316179055604051601990600080516020615a2883398151915290600090a250565b606b80546001600160a01b0319166001600160a01b0383811691909117909155606a546040516319dc7ae560e31b815291169063cee3d72890612c589084906001906004016153f8565b600060405180830381600087803b158015612c7257600080fd5b505af1158015612c86573d6000803e3d6000fd5b505060405160009250600080516020615a2883398151915291508290a250565b60408051600481526024810182526020810180516001600160e01b03166302881c7960e11b179052905160009182918291606491612ce491906155ae565b600060405180830381855afa9150503d8060008114612d1f576040519150601f19603f3d011682016040523d82523d6000602084013e612d24565b606091505b5091509150818015612d37575080516020145b9250505090565b60335460ff16612d605760405162461bcd60e51b8152600401610e7090615315565b6033805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b604051612d9a9190614dbd565b60405180910390a1565b6000600080516020615a088339815191525b546001600160a01b0316919050565b7f49bd798cd84788856140a4cd5030756b4d08a9e4d55db725ec195f232d262a895460ff1615612df85761195883613ec4565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b158015612e3157600080fd5b505afa925050508015612e61575060408051601f3d908101601f19168201909252612e5e918101906155ca565b60015b612ece5760405162461bcd60e51b815260206004820152603860248201527f45524331393637557067726164653a206e6577207365636f6e6461727920696d604482015277706c656d656e746174696f6e206973206e6f74205555505360401b6064820152608401610e70565b7f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d8114612f595760405162461bcd60e51b815260206004820152603360248201527f45524331393637557067726164653a20756e737570706f72746564207365636f6044820152721b99185c9e481c1c9bde1a58589b1955555251606a1b6064820152608401610e70565b50611958838383613f7f565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f612f8e6132a4565b604080516001600160a01b03928316815291841660208301520160405180910390a161112381613faa565b612fc1614c98565b612fc9614cfc565b6000612ffb604051806040016040528084815260200160016003811115612ff257612ff26154a5565b90526001614036565b9050612d378160008080438161407b565b6130146140cf565b60008080526076602090815282517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a181958558201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a1819595560408201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195a5560608201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195b8054608085015160a086015160c08701516001600160401b039586166001600160801b031994851617600160401b9387168402176001600160801b03908116600160801b93881684026001600160c01b0390811691909117600160c01b93891684021790965560e08901517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195c80546101008c01516101208d01516101408e0151948c169290991691909117908a169096029590951790911694871690920290941692909217919093169091021790556101608201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195d556131b89060016155e3565b607560086101000a8154816001600160401b0302191690836001600160401b031602179055507f0000000000000000000000000000000000000000000000000000000000000000156111235760646001600160a01b031663a3b1b31d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561323e57600080fd5b505afa158015613252573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061327691906155ca565b60008052607f6020527f18b3a2798575d3a428c1f52e616a74b071539854e037e7d7c535365d474f40335550565b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103612db6565b6001600160401b03831660009081526076602052604090206132ee8383614100565b81600201541461332f5760405162461bcd60e51b815260206004820152600c60248201526b434f4e4649524d5f4441544160a01b6044820152606401610e70565b606b54604051630502677360e51b815260048101849052602481018590526001600160a01b039091169063a04cee6090604401600060405180830381600087803b15801561337c57600080fd5b505af1158015613390573d6000803e3d6000fd5b50506075805467ffffffffffffffff19166001600160401b038816179055506133bc90508460016155e3565b6075805467ffffffffffffffff60401b1916600160401b6001600160401b03938416021790556040805185815260208101859052918616917f22ef0479a7ff660660d1c2fe35f1b632cf31675c2d9378db8cec95b00d8ffa3c91015b60405180910390a250505050565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff1615613459576119588361411c565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561349257600080fd5b505afa9250505080156134c2575060408051601f3d908101601f191682019092526134bf918101906155ca565b60015b6135255760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b6064820152608401610e70565b600080516020615a0883398151915281146135945760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b6064820152608401610e70565b5061195883838361419e565b600060016135b6610140870161012088016154ca565b60038111156135c7576135c76154a5565b14806135f5575060026135e2610140870161012088016154ca565b60038111156135f3576135f36154a5565b145b6136345760405162461bcd60e51b815260206004820152601060248201526f4241445f41465445525f53544154555360801b6044820152606401610e70565b61363c614d21565b6136458561249d565b6060820152606a54604080516221048360e21b815290516001600160a01b03909216916284120c91600480820192602092909190829003018186803b15801561368d57600080fd5b505afa1580156136a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136c591906155ca565b81526060810151516136d787866141a7565b146137165760405162461bcd60e51b815260206004820152600f60248201526e0a0a48aacbea6a882a88abe9082a69608b1b6044820152606401610e70565b600061373261372d36899003890160a08a016156d0565b6141e3565b9050600061374861372d368a90038a018a6156d0565b9050806001600160401b0316826001600160401b0316101561379e5760405162461bcd60e51b815260206004820152600f60248201526e494e424f585f4241434b574152445360881b6044820152606401610e70565b806001600160401b0316826001600160401b03161415613844576137cf6137ca368a90038a018a6156d0565b6141f8565b6001600160401b03166137ed6137ca368b90038b0160a08c016156d0565b6001600160401b031610156138445760405162461bcd60e51b815260206004820152601a60248201527f494e424f585f504f535f494e5f4d53475f4241434b57415244530000000000006044820152606401610e70565b60026138586101408a016101208b016154ca565b6003811115613869576138696154a5565b1480613892575060006138876137ca368b90038b0160a08c016156d0565b6001600160401b0316115b156138a557816138a1816156ec565b9250505b82516001600160401b03831611156138f05760405162461bcd60e51b815260206004820152600e60248201526d12539093d617d41054d517d1539160921b6044820152606401610e70565b6001600160401b0382161561399857606a546001600160a01b03166316bf557961391b600185615713565b6040516001600160e01b031960e084901b1681526001600160401b03909116600482015260240160206040518083038186803b15801561395a57600080fd5b505afa15801561396e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061399291906155ca565b60e08401525b506139b290506139ad3688900388018861577a565b614207565b60408201526065546139cd906001600160401b0316436155e3565b6001600160401b0390811660c0830152606082015161012001511615801560a0830152613a2357606081015161012001516001600160401b03166000908152607660205260409020600501546080820152613a33565b6060810151610160015160808201525b613a528160a00151826080015183604001518460e001516068546142a6565b915082821480613a60575082155b613aa35760405162461bcd60e51b81526020600482015260146024820152730aa9c8ab0a08a86a88a88be9c9e888abe9082a6960631b6044820152606401610e70565b613aeb613ab78760a00183600001516141a7565b613ac8836040015143606854614313565b613adf613ada368b90038b018b61577a565b614352565b888560c001518761407b565b60208201526000613afa6121ed565b613b059060016155e3565b90506000613b27876001600160401b0316600090815260766020526040902090565b9050613b33818361437c565b613b4083602001516143ed565b50508181606001516101600151613b556121ed565b6001600160401b03167f4f4caa9e67fb994e349dd35d1ad0ce23053d4323f83ce11dc817b5435031d09684604001518a8660e001516068548860000151604051613ba3959493929190615864565b60405180910390a450949350505050565b60008135158015613bc757506020820135155b8015613be95750613bde6060830160408401615083565b6001600160401b0316155b80156127835750613c006080830160608401615083565b6001600160401b03161592915050565b6001600160a01b0382166000908152607960205260408120805480841115613c6d5760405162461bcd60e51b815260206004820152601060248201526f544f4f5f4c4954544c455f5354414b4560801b6044820152606401610e70565b6000613c7985836158c4565b8584559050613c8886826145db565b60408051838152602081018790526001600160a01b038816917febd093d389ab57f3566918d2c379a2b4d9539e8eb95efad9d5e465457833fde6910160405180910390a295945050505050565b6001600160a01b03808216600081815260796020908152604080832081518083019092529381526001808501546001600160401b03600160401b9091048116938301938452607a8054928301815590945290517ff0440771a29e57e18c66727944770b82cc77924aef333c927ce6bdd2cdb3ae0390910180549251909316600160a01b026001600160e01b031990921694169390931792909217909155611c3982614677565b60335460ff1615613dc15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e70565b6033805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612d8d3390565b6001600160a01b03828116600090815260796020526040808220928416825281206001830154919291600160801b90046001600160401b031680613e665760405162461bcd60e51b81526020600482015260076024820152661393d7d0d2105360ca1b6044820152606401610e70565b60018201546001600160401b03828116600160801b9092041614613ebb5760405162461bcd60e51b815260206004820152600c60248201526b1112519197d25397d0d2105360a21b6044820152606401610e70565b95945050505050565b6001600160a01b0381163b613f3b5760405162461bcd60e51b815260206004820152603760248201527f455243313936373a206e6577207365636f6e6461727920696d706c656d656e74604482015276185d1a5bdb881a5cc81b9bdd08184818dbdb9d1c9858dd604a1b6064820152608401610e70565b807f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d5b80546001600160a01b0319166001600160a01b039290921691909117905550565b613f888361483a565b600082511180613f955750805b1561195857613fa4838361487a565b50505050565b6001600160a01b03811661400f5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e70565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103613f5e565b6000614045836000015161489f565b82846020015160405160200161405d939291906158db565b60405160208183030381529060405280519060200120905092915050565b614083614c98565b61408b614c98565b96875250602086019490945260408501929092526001600160401b0390811660608501529081166080840181905260a0840152431661014083015261016082015290565b600054610100900460ff166140f65760405162461bcd60e51b8152600401610e7090615919565b6140fe614913565b565b604080516020810184905290810182905260009060600161405d565b6001600160a01b0381163b6141895760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401610e70565b80600080516020615a08833981519152613f5e565b613f8883614946565b60006141c06141bb368590038501856156d0565b61489f565b826141d160a08601608087016154ca565b60405160200161405d939291906158db565b6020810151600090815b602002015192915050565b602081015160009060016141ed565b6000614211614d72565b8251602001518190600381111561422a5761422a6154a5565b9081600381111561423d5761423d6154a5565b90525060208381015181015190820190600381111561425e5761425e6154a5565b90816003811115614271576142716154a5565b90525061427c614d90565b83515181526020808501515190820152604084015161429e9083908390614986565b949350505050565b600080866142b55760006142b8565b60015b6040516001600160f81b031960f883901b1660208201526021810188905260418101879052606181018690526081810185905290915060a1016040516020818303038152906040528051906020012091505095945050505050565b6040805160208101859052908101839052606081018290526000906080015b6040516020818303038152906040528051906020012090505b9392505050565b6000612783614368836020015160000151614a30565b60208401515161437790614a3b565b614100565b6004820154600160401b90046001600160401b03166143bd5760048201805467ffffffffffffffff60401b1916600160401b436001600160401b0316021790555b600490910180546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b60758054600160801b90046001600160401b031690601061440d836156ec565b825461010092830a6001600160401b03818102199092169282160291909117909255607554600160801b908190048316600090815260766020908152604091829020875181559087015160018201559086015160028201556060860151600382018054608089015160a08a015160c08b01519489166001600160801b031993841617600160401b928a168302176001600160801b03908116918a1688026001600160c01b0390811692909217600160c01b968b1687021790945560e08b0151600487018054998d01516101208e01516101408f0151938d169b9096169a909a17998b16909302989098179093169188169095029091161793909416909302919091179055610160830151600590910155507f0000000000000000000000000000000000000000000000000000000000000000156111235760646001600160a01b031663a3b1b31d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561457e57600080fd5b505afa158015614592573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145b691906155ca565b607554600160801b90046001600160401b03166000908152607f602052604090205550565b6001600160a01b0382166000908152607b6020526040812054906145ff8383615964565b6001600160a01b0385166000908152607b60205260408120829055607c80549293508592909190614631908490615964565b909155505060408051838152602081018390526001600160a01b038616917fa740af14c56e4e04a617b1de1eb20de73270decbaaead14f142aabf3038e5ae29101613418565b6001600160a01b03811660009081526079602052604090206001810154600160c01b900460ff166146d75760405162461bcd60e51b815260206004820152600a6024820152691393d517d4d51052d15160b21b6044820152606401610e70565b600180820154607880546001600160401b039092169290916146f991906158c4565b815481106147095761470961548f565b600091825260209091200154607880546001600160a01b03909216916001600160401b03841690811061473e5761473e61548f565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080607960006078846001600160401b03168154811061478d5761478d61548f565b6000918252602080832091909101546001600160a01b031683528201929092526040019020600101805467ffffffffffffffff19166001600160401b039290921691909117905560788054806147e5576147e561597c565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03949094168152607990935250506040812090815560010180546001600160c81b0319169055565b61484381613ec4565b6040516001600160a01b038216907ff7eed2a7fabbf1bec8d55ed5e785cc76622376dde5df4ff15470551e030b813490600090a250565b606061434b8383604051806060016040528060278152602001615a4860279139614a47565b8051805160209182015192820151805190830151604080516c23b637b130b61039ba30ba329d60991b81870152602d810194909452604d8401959095526001600160c01b031960c092831b8116606d850152911b1660758201528251808203605d018152607d909101909252815191012090565b600054610100900460ff1661493a5760405162461bcd60e51b8152600401610e7090615919565b6033805460ff19169055565b61494f8161411c565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b604080516002808252606082018352600092839291906020830190803683370190505085519091506149c8906149c38660005b602002015161489f565b614b24565b816000815181106149db576149db61548f565b60209081029190910101526149fc85600160200201516149c38660016149b9565b81600181518110614a0f57614a0f61548f565b602002602001018181525050613ebb6000846001600160401b031683614c48565b8051600090816141ed565b805160009060016141ed565b60606001600160a01b0384163b614aaf5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610e70565b600080856001600160a01b031685604051614aca91906155ae565b600060405180830381855af49150503d8060008114614b05576040519150601f19603f3d011682016040523d82523d6000602084013e614b0a565b606091505b5091509150614b1a828286614c5f565b9695505050505050565b60006001836003811115614b3a57614b3a6154a5565b1415614b80576040516b213637b1b59039ba30ba329d60a11b6020820152602c8101839052604c015b604051602081830303815290604052805190602001209050612783565b6002836003811115614b9457614b946154a5565b1415614bca5760405174213637b1b59039ba30ba32961032b93937b932b21d60591b602082015260358101839052605501614b63565b6003836003811115614bde57614bde6154a5565b1415614c0d5760405174213637b1b59039ba30ba3296103a37b7903330b91d60591b6020820152603501614b63565b60405162461bcd60e51b815260206004820152601060248201526f4241445f424c4f434b5f53544154555360801b6044820152606401610e70565b600083838360405160200161433293929190615992565b60608315614c6e57508161434b565b825115614c7e5782518084602001fd5b8160405162461bcd60e51b8152600401610e7091906159d4565b6040805161018081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081018290526101208101829052610140810182905261016081019190915290565b6040518060400160405280614d0f614d72565b8152602001614d1c614d72565b905290565b60405180610100016040528060008152602001614d3c614c98565b815260006020820152604001614d50614c98565b8152600060208201819052604082018190526060820181905260809091015290565b60405180604001604052806002906020820280368337509192915050565b60405180604001604052806002905b614da7614cfc565b815260200190600190039081614d9f5790505090565b6001600160a01b0391909116815260200190565b6001600160a01b038116811461112357600080fd5b600060208284031215614df857600080fd5b813561434b81614dd1565b600060208284031215614e1557600080fd5b5035919050565b600080828403610160811215614e3157600080fd5b83356001600160401b03811115614e4757600080fd5b84016101c08187031215614e5a57600080fd5b9250610140601f1982011215614e6f57600080fd5b506020830190509250929050565b80356001600160401b0381168114612b7757600080fd5b600080600060608486031215614ea957600080fd5b614eb284614e7d565b95602085013595506040909401359392505050565b60006101608284031215614eda57600080fd5b50919050565b6000806000806101c08587031215614ef757600080fd5b614f0085614e7d565b935060208501359250614f168660408701614ec7565b939692955092936101a00135925050565b801515811461112357600080fd5b60008060408385031215614f4857600080fd5b8235614f5381614dd1565b91506020830135614f6381614f27565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715614fa657614fa6614f6e565b60405290565b604051601f8201601f191681016001600160401b0381118282101715614fd457614fd4614f6e565b604052919050565b60008060408385031215614fef57600080fd5b8235614ffa81614dd1565b91506020838101356001600160401b038082111561501757600080fd5b818601915086601f83011261502b57600080fd5b81358181111561503d5761503d614f6e565b61504f601f8201601f19168501614fac565b9150808252878482850101111561506557600080fd5b80848401858401376000848284010152508093505050509250929050565b60006020828403121561509557600080fd5b61434b82614e7d565b600061016082840312156150b157600080fd5b61434b8383614ec7565b60008083601f8401126150cd57600080fd5b5081356001600160401b038111156150e457600080fd5b6020830191508360208260051b85010111156150ff57600080fd5b9250929050565b6000806020838503121561511957600080fd5b82356001600160401b0381111561512f57600080fd5b61513b858286016150bb565b90969095509350505050565b6000806040838503121561515a57600080fd5b823561516581614dd1565b91506020830135614f6381614dd1565b60006101808201905082518252602083015160208301526040830151604083015260608301516151b060608401826001600160401b03169052565b5060808301516151cb60808401826001600160401b03169052565b5060a08301516151e660a08401826001600160401b03169052565b5060c083015161520160c08401826001600160401b03169052565b5060e083015161521c60e08401826001600160401b03169052565b50610100838101516001600160401b038116848301525050610120838101516001600160401b038116848301525050610140838101516001600160401b03811684830152505061016092830151919092015290565b60006020828403121561528357600080fd5b813561434b81614f27565b600080600080604085870312156152a457600080fd5b84356001600160401b03808211156152bb57600080fd5b6152c7888389016150bb565b909650945060208701359150808211156152e057600080fd5b506152ed878288016150bb565b95989497509550505050565b6000806040838503121561530c57600080fd5b61516583614e7d565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60006020828403121561535557600080fd5b815161434b81614f27565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b6001600160a01b039290921682521515602082015260400190565b6000808335601e1984360301811261542a57600080fd5b8301803591506001600160401b0382111561544457600080fd5b6020019150368190038213156150ff57600080fd5b83815260406020820152816040820152818360608301376000818301606090810191909152601f909201601f1916010192915050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b803560048110612b7757600080fd5b6000602082840312156154dc57600080fd5b61434b826154bb565b6020808252600b908201526a454d5054595f415252415960a81b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156155345761553461550a565b5060010190565b6020808252600c908201526b0aea49e9c8ebe988a9c8ea8960a31b604082015260600190565b6020808252600790820152664e4f5f4e4f444560c81b604082015260600190565b60005b8381101561559d578181015183820152602001615585565b83811115613fa45750506000910152565b600082516155c0818460208701615582565b9190910192915050565b6000602082840312156155dc57600080fd5b5051919050565b60006001600160401b038083168185168083038211156156055761560561550a565b01949350505050565b60006080828403121561562057600080fd5b615628614f84565b905082601f83011261563957600080fd5b615641614f84565b80604084018581111561565357600080fd5b845b8181101561566d578035845260209384019301615655565b5081845285605f86011261568057600080fd5b615688614f84565b9250829150608085018681111561569e57600080fd5b808210156156c2576156af82614e7d565b845260208401935060208201915061569e565b505060208301525092915050565b6000608082840312156156e257600080fd5b61434b838361560e565b60006001600160401b03808316818114156157095761570961550a565b6001019392505050565b60006001600160401b03838116908316818110156157335761573361550a565b039392505050565b600060a0828403121561574d57600080fd5b615755614f84565b9050615761838361560e565b815261576f608083016154bb565b602082015292915050565b6000610160828403121561578d57600080fd5b604051606081018181106001600160401b03821117156157af576157af614f6e565b6040526157bc848461573b565b81526157cb8460a0850161573b565b60208201526157dd6101408401614e7d565b60408201529392505050565b604081833760006040838101828152908301915b600281101561582c576001600160401b0361581784614e7d565b168252602092830192909101906001016157fd565b50505061583b608082016154bb565b6004811061585957634e487b7160e01b600052602160045260246000fd5b806080840152505050565b8581526101e0810161587960208301876157e9565b61588960c0830160a088016157e9565b6001600160401b0361589e6101408801614e7d565b1661016083015284610180830152836101a0830152826101c08301529695505050505050565b6000828210156158d6576158d661550a565b500390565b83815282602082015260006004831061590457634e487b7160e01b600052602160045260246000fd5b5060f89190911b604082015260410192915050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b600082198211156159775761597761550a565b500190565b634e487b7160e01b600052603160045260246000fd5b83815260006020848184015260408301845182860160005b828110156159c6578151845292840192908401906001016159aa565b509198975050505050505050565b60208152600082518060208401526159f3816040850160208701615582565b601f01601f1916919091016040019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcea8787f128d10b2cc0317b0c3960f9ad447f7f6c1ed189db1083ccffd20f456e416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212202106d8c87ec9008a3ca67000e3c51a22ef9e5a738f04a6fe365ec776ec3bbaac64736f6c63430008090033",
|
1806
|
+
"linkReferences": {},
|
1807
|
+
"deployedLinkReferences": {}
|
1808
|
+
}
|