@arbitrum/nitro-contracts 1.0.3-beta.0 → 1.0.3-beta.2
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 +1008 -0
- package/build/contracts/src/bridge/Messages.sol/Messages.dbg.json +4 -0
- package/build/contracts/src/bridge/Messages.sol/Messages.json +10 -0
- package/build/contracts/src/bridge/Outbox.sol/Outbox.dbg.json +4 -0
- package/build/contracts/src/bridge/Outbox.sol/Outbox.json +546 -0
- package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.json +814 -0
- package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.dbg.json +4 -0
- package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.json +10 -0
- package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.dbg.json +4 -0
- package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.json +669 -0
- package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.dbg.json +4 -0
- package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.json +386 -0
- package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.dbg.json +4 -0
- package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.json +34 -0
- package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.dbg.json +4 -0
- package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.json +10 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.dbg.json +4 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.json +77 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.dbg.json +4 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.json +69 -0
- package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.dbg.json +4 -0
- package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.json +10 -0
- package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.dbg.json +4 -0
- package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.json +10 -0
- package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.dbg.json +4 -0
- package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.json +144 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.dbg.json +4 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.json +10 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.dbg.json +4 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.json +40 -0
- package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.dbg.json +4 -0
- package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.json +10 -0
- package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.dbg.json +4 -0
- package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.json +82 -0
- package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.dbg.json +4 -0
- package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.json +561 -0
- package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.dbg.json +4 -0
- package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.json +655 -0
- package/build/contracts/src/mocks/InboxStub.sol/InboxStub.dbg.json +4 -0
- package/build/contracts/src/mocks/InboxStub.sol/InboxStub.json +588 -0
- package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.dbg.json +4 -0
- package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.json +188 -0
- package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.dbg.json +4 -0
- package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.json +160 -0
- package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.dbg.json +4 -0
- package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.json +870 -0
- package/build/contracts/src/mocks/Simple.sol/Simple.dbg.json +4 -0
- package/build/contracts/src/mocks/Simple.sol/Simple.json +242 -0
- package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.dbg.json +4 -0
- package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.json +30 -0
- package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.dbg.json +4 -0
- package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.json +720 -0
- package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.dbg.json +4 -0
- package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.json +669 -0
- package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.dbg.json +4 -0
- package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.json +286 -0
- package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.dbg.json +4 -0
- package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.json +67 -0
- package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.dbg.json +4 -0
- package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.json +165 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.json +57 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.json +10 -0
- package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.json +477 -0
- package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.json +135 -0
- package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.json +477 -0
- package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.json +477 -0
- package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.json +477 -0
- package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.json +477 -0
- package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.json +148 -0
- package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.json +148 -0
- package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.json +10 -0
- package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.json +193 -0
- package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.json +77 -0
- package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.json +324 -0
- package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.json +49 -0
- package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.json +378 -0
- package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.json +69 -0
- package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.json +306 -0
- package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.json +49 -0
- package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.json +380 -0
- package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.json +77 -0
- package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.json +24 -0
- package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.json +243 -0
- package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.json +544 -0
- package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.json +889 -0
- package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.json +68 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.json +1428 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.json +1309 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.json +1443 -0
- package/build/contracts/src/rollup/Node.sol/NodeLib.dbg.json +4 -0
- package/build/contracts/src/rollup/Node.sol/NodeLib.json +10 -0
- package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.json +1808 -0
- package/build/contracts/src/rollup/RollupCore.sol/RollupCore.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupCore.sol/RollupCore.json +1051 -0
- package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.json +343 -0
- package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.json +110 -0
- package/build/contracts/src/rollup/RollupLib.sol/RollupLib.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupLib.sol/RollupLib.json +10 -0
- package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.json +226 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.json +1578 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.json +1712 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.json +1697 -0
- package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.json +379 -0
- package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.json +435 -0
- package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.json +150 -0
- package/build/contracts/src/state/Deserialize.sol/Deserialize.dbg.json +4 -0
- package/build/contracts/src/state/Deserialize.sol/Deserialize.json +10 -0
- package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.dbg.json +4 -0
- package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.json +10 -0
- package/build/contracts/src/state/Instructions.sol/Instructions.dbg.json +4 -0
- package/build/contracts/src/state/Instructions.sol/Instructions.json +10 -0
- package/build/contracts/src/state/Machine.sol/MachineLib.dbg.json +4 -0
- package/build/contracts/src/state/Machine.sol/MachineLib.json +10 -0
- package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.dbg.json +4 -0
- package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.json +10 -0
- package/build/contracts/src/state/Module.sol/ModuleLib.dbg.json +4 -0
- package/build/contracts/src/state/Module.sol/ModuleLib.json +10 -0
- package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.dbg.json +4 -0
- package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.json +10 -0
- package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.dbg.json +4 -0
- package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.json +10 -0
- package/build/contracts/src/state/PcArray.sol/PcArrayLib.dbg.json +4 -0
- package/build/contracts/src/state/PcArray.sol/PcArrayLib.json +10 -0
- package/build/contracts/src/state/StackFrame.sol/StackFrameLib.dbg.json +4 -0
- package/build/contracts/src/state/StackFrame.sol/StackFrameLib.json +10 -0
- package/build/contracts/src/state/Value.sol/ValueLib.dbg.json +4 -0
- package/build/contracts/src/state/Value.sol/ValueLib.json +10 -0
- package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.dbg.json +4 -0
- package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.json +10 -0
- package/build/contracts/src/state/ValueStack.sol/ValueStackLib.dbg.json +4 -0
- package/build/contracts/src/state/ValueStack.sol/ValueStackLib.json +10 -0
- package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.json +603 -0
- package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.json +54 -0
- package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.json +84 -0
- package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.json +520 -0
- package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.dbg.json +4 -0
- package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.json +49 -0
- package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.json +18 -0
- package/package.json +5 -2
@@ -0,0 +1,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": "0x60c06040523060a0523480156200001557600080fd5b5060408051600481526024810182526020810180516001600160e01b03166302881c7960e11b179052905160009182916064916200005391620000b7565b600060405180830381855afa9150503d806000811462000090576040519150601f19603f3d011682016040523d82523d6000602084013e62000095565b606091505b5091509150818015620000a9575080516020145b151560805250620000f59050565b6000825160005b81811015620000da5760208186018101518583015201620000be565b81811115620000ea576000828501525b509190910192915050565b60805160a051615a136200016f60003960008181611071015281816110b10152818161115701528181611197015281816119b4015281816119f401528181611b9701528181611bd701528181611cc90152818161259101526125d1015260008181612ab70152818161314f015261448f0152615a136000f3fe6080604052600436106103905760003560e01c80637ba9534a116101de578063ce11e6ab11610103578063ef40a6701161009b578063ef40a67014610d08578063f065de3f14610d3e578063f33e1fac14610d5e578063f38c937914610d7e578063f63a434a14610d9e578063facd743b14610dbe578063fb0e722b14610dee578063fc8ffa0314610e0e578063ff204f3b14610e2e57600080fd5b8063ce11e6ab14610b79578063ce66d05c14610b99578063d01e660214610bb9578063d735e21d14610bd9578063dcd030aa14610bfe578063dff6978714610c1e578063e78cea9214610c33578063e8bd492214610c53578063ee35f32714610ce857600080fd5b8063948d658811610176578063948d6588146109815780639846129a146109a15780639a8a0592146109b4578063a23c44b1146109ca578063a2b4f1d814610ad9578063a3ffb77214610af9578063aa38a6e714610b19578063aa65af4814610b39578063bc45e0ae14610b5957600080fd5b80637ba9534a1461086f5780637c75c298146108845780638456cb59146108a4578063848bf918146108b95780638640ce5f146108d957806389384960146108fe5780638ee1a1261461091e57806391c657e81461093457806392c8134c1461095457600080fd5b806347fb24c5116102c45780636177fd181161025c5780636177fd181461071d57806363721d6b1461076057806365f7f80d1461077557806369fd251c146107935780636ddd3744146107dc57806371ef232c146107fc57806376e7e23b14610812578063771b2f97146108285780637b83a3fe1461084f57600080fd5b806347fb24c51461061d5780634f1ef2861461063d5780634f61f8501461065057806351ed6a301461067057806352d1902d1461069057806353b60c4a146106a5578063567ca41b146106c55780635c975abb146106e55780636136fe2e146106fd57600080fd5b80631b1689e9116103375780631b1689e9146104ac57806328ff127a146104d05780632e7acfa6146104f05780632f30cabd146105285780632f7968e81461055e5780633659cfe61461057e5780633e96576e1461059e57806345e38b64146105e7578063470dce4e146105fd57600080fd5b8063014cc92c14610395578063023a96fe146103cb5780630397d458146103eb578063046f7da21461040d57806306ae5851146104225780630d40a0fd1461044257806312ab3d3b1461046257806313af40351461048c575b600080fd5b3480156103a157600080fd5b50606f546103b5906001600160a01b031681565b6040516103c29190614d2c565b60405180910390f35b3480156103d757600080fd5b50606e546103b5906001600160a01b031681565b3480156103f757600080fd5b5061040b610406366004614d55565b610e4e565b005b34801561041957600080fd5b5061040b611020565b34801561042e57600080fd5b5061040b61043d366004614d72565b611044565b34801561044e57600080fd5b5061040b61045d366004614d55565b611066565b34801561046e57600080fd5b50607e5461047c9060ff1681565b60405190151581526020016103c2565b34801561049857600080fd5b5061040b6104a7366004614d55565b611126565b3480156104b857600080fd5b506104c2607d5481565b6040519081526020016103c2565b3480156104dc57600080fd5b5061040b6104eb366004614d8b565b61114c565b3480156104fc57600080fd5b50606554610510906001600160401b031681565b6040516001600160401b0390911681526020016103c2565b34801561053457600080fd5b506104c2610543366004614d55565b6001600160a01b03166000908152607b602052604090205490565b34801561056a57600080fd5b5061040b610579366004614e03565b61195d565b34801561058a57600080fd5b5061040b610599366004614d55565b6119a9565b3480156105aa57600080fd5b506105106105b9366004614d55565b6001600160a01b0316600090815260796020526040902060010154600160401b90046001600160401b031690565b3480156105f357600080fd5b506104c260735481565b34801561060957600080fd5b5061040b610618366004614e4f565b611a66565b34801561062957600080fd5b5061040b610638366004614ea4565b611b0a565b61040b61064b366004614f4b565b611b8c565b34801561065c57600080fd5b5061040b61066b366004614d55565b611c3d565b34801561067c57600080fd5b506072546103b5906001600160a01b031681565b34801561069c57600080fd5b506104c2611cbc565b3480156106b157600080fd5b5061040b6106c0366004614d55565b611d6a565b3480156106d157600080fd5b5061040b6106e0366004614d55565b611da2565b3480156106f157600080fd5b5060335460ff1661047c565b34801561070957600080fd5b5061040b610718366004614ff2565b611e6f565b34801561072957600080fd5b5061047c610738366004614d55565b6001600160a01b0316600090815260796020526040902060010154600160c01b900460ff1690565b34801561076c57600080fd5b50607a546104c2565b34801561078157600080fd5b506075546001600160401b0316610510565b34801561079f57600080fd5b506105106107ae366004614d55565b6001600160a01b0316600090815260796020526040902060010154600160801b90046001600160401b031690565b3480156107e857600080fd5b506103b56107f7366004614ff2565b611eb1565b34801561080857600080fd5b506104c2607c5481565b34801561081e57600080fd5b506104c260675481565b34801561083457600080fd5b5060655461051090600160401b90046001600160401b031681565b34801561085b57600080fd5b5061040b61086a36600461500d565b611eea565b34801561087b57600080fd5b506105106121ed565b34801561089057600080fd5b5061040b61089f366004615075565b612203565b3480156108b057600080fd5b5061040b612377565b3480156108c557600080fd5b5061040b6108d43660046150b6565b61239b565b3480156108e557600080fd5b50607554600160c01b90046001600160401b0316610510565b34801561090a57600080fd5b5061040b610919366004614d72565b612417565b34801561092a57600080fd5b506104c260685481565b34801561094057600080fd5b5061047c61094f366004614d55565b612439565b34801561096057600080fd5b5061097461096f366004614ff2565b61249d565b6040516103c291906150e4565b34801561098d57600080fd5b5061040b61099c366004614d72565b612564565b61040b6109af366004614f4b565b612586565b3480156109c057600080fd5b506104c260665481565b3480156109d657600080fd5b50610a846109e5366004614d55565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506001600160a01b0316600090815260796020908152604091829020825160a081018452815481526001909101546001600160401b0380821693830193909352600160401b8104831693820193909352600160801b83049091166060820152600160c01b90910460ff161515608082015290565b6040516103c29190600060a0820190508251825260208301516001600160401b038082166020850152806040860151166040850152806060860151166060850152505060808301511515608083015292915050565b348015610ae557600080fd5b5061040b610af43660046151e0565b612633565b348015610b0557600080fd5b5061040b610b143660046151fd565b61265e565b348015610b2557600080fd5b50606d546103b5906001600160a01b031681565b348015610b4557600080fd5b5061047c610b54366004615268565b612752565b348015610b6557600080fd5b506070546103b5906001600160a01b031681565b348015610b8557600080fd5b50606b546103b5906001600160a01b031681565b348015610ba557600080fd5b5061040b610bb4366004614ff2565b612789565b348015610bc557600080fd5b506103b5610bd4366004614d72565b612814565b348015610be557600080fd5b50607554600160401b90046001600160401b0316610510565b348015610c0a57600080fd5b5061047c610c19366004614d55565b612829565b348015610c2a57600080fd5b50607854610510565b348015610c3f57600080fd5b50606a546103b5906001600160a01b031681565b348015610c5f57600080fd5b50610cb0610c6e366004614d55565b607960205260009081526040902080546001909101546001600160401b0380821691600160401b8104821691600160801b82041690600160c01b900460ff1685565b604080519586526001600160401b0394851660208701529284169285019290925290911660608301521515608082015260a0016103c2565b348015610cf457600080fd5b50606c546103b5906001600160a01b031681565b348015610d1457600080fd5b506104c2610d23366004614d55565b6001600160a01b031660009081526079602052604090205490565b348015610d4a57600080fd5b506071546103b5906001600160a01b031681565b348015610d6a57600080fd5b50610510610d79366004614d72565b61286c565b348015610d8a57600080fd5b5061040b610d993660046151fd565b6128a3565b348015610daa57600080fd5b506104c2610db9366004614ff2565b612ab3565b348015610dca57600080fd5b5061047c610dd9366004614d55565b60746020526000908152604090205460ff1681565b348015610dfa57600080fd5b506069546103b5906001600160a01b031681565b348015610e1a57600080fd5b5061040b610e29366004614d55565b612b7c565b348015610e3a57600080fd5b5061040b610e49366004614d55565b612c0e565b60335460ff16610e795760405162461bcd60e51b8152600401610e7090615284565b60405180910390fd5b6000806001600160a01b0316826001600160a01b0316141590506000306001600160a01b031663cd205fda6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ece57600080fd5b505afa158015610ee2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0691906152b2565b905081151581151514610f535760405162461bcd60e51b81526020600482015260156024820152741393d7d554d15497d313d1d250d7d4d5541413d495605a1b6044820152606401610e70565b6078546001600160401b031615610fa05760405162461bcd60e51b81526020600482015260116024820152704e4f5f4143544956455f5354414b45525360781b6044820152606401610e70565b607c5415610fe65760405162461bcd60e51b81526020600482015260136024820152724e4f5f50454e44494e475f574954484452415760681b6044820152606401610e70565b607280546001600160a01b0319166001600160a01b038516179055604051600d9060008051602061599783398151915290600090a2505050565b611028612ca6565b60405160049060008051602061599783398151915290600090a2565b6067819055604051600c9060008051602061599783398151915290600090a250565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156110af5760405162461bcd60e51b8152600401610e70906152cf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166110e1612d0c565b6001600160a01b0316146111075760405162461bcd60e51b8152600401610e709061531b565b6040805160008082526020820190925261112391839190612d2d565b50565b61112f81612ecd565b60405160079060008051602061599783398151915290600090a250565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156111955760405162461bcd60e51b8152600401610e70906152cf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166111c7612d0c565b6001600160a01b0316146111ed5760405162461bcd60e51b8152600401610e709061531b565b600054610100900460ff166112085760005460ff161561120c565b303b155b61126f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610e70565b600054610100900460ff16158015611291576000805461ffff19166101011790555b43607d556112a26020830183614d55565b606a80546001600160a01b0319166001600160a01b03929092169190911790556112d26040830160208401614d55565b606c80546001600160a01b0319166001600160a01b03929092169190911790556112ff6020830183614d55565b6001600160a01b03166347fb24c561131d6060850160408601614d55565b60016040518363ffffffff1660e01b815260040161133c929190615367565b600060405180830381600087803b15801561135657600080fd5b505af115801561136a573d6000803e3d6000fd5b5061137c925050506020830183614d55565b6001600160a01b0316634f61f85061139a6040850160208601614d55565b6040518263ffffffff1660e01b81526004016113b69190614d2c565b600060405180830381600087803b1580156113d057600080fd5b505af11580156113e4573d6000803e3d6000fd5b506113f9925050506060830160408401614d55565b606980546001600160a01b0319166001600160a01b03929092169190911790556114296080830160608401614d55565b606b80546001600160a01b0319166001600160a01b03929092169190911790556114566020830183614d55565b6001600160a01b031663cee3d7286114746080850160608601614d55565b60016040518363ffffffff1660e01b8152600401611493929190615367565b600060405180830381600087803b1580156114ad57600080fd5b505af11580156114c1573d6000803e3d6000fd5b506114d69250505060a0830160808401614d55565b606d80546001600160a01b0319166001600160a01b03929092169190911790556115036020830183614d55565b6001600160a01b03166347fb24c561152160a0850160808601614d55565b60016040518363ffffffff1660e01b8152600401611540929190615367565b600060405180830381600087803b15801561155a57600080fd5b505af115801561156e573d6000803e3d6000fd5b506115839250505060a0830160808401614d55565b6001600160a01b031663cf8d56d660e08501356115a4610100870187615382565b6040518463ffffffff1660e01b81526004016115c2939291906153c8565b600060405180830381600087803b1580156115dc57600080fd5b505af11580156115f0573d6000803e3d6000fd5b50611605925050506040830160208401614d55565b60405163e0bc972960e01b815260006004820181905260c0602483015260c4820181905260016044830181905260648301829052608483019190915260a48201526001600160a01b03919091169063e0bc97299060e401600060405180830381600087803b15801561167657600080fd5b505af115801561168a573d6000803e3d6000fd5b506116a19250505061012083016101008401614d55565b606f80546001600160a01b0319166001600160a01b03929092169190911790556116d361014083016101208401614d55565b607080546001600160a01b0319166001600160a01b039290921691909117905561170360c0830160a08401614d55565b606e80546001600160a01b0319166001600160a01b0392909216919091179055600061172d612f21565b905061173881612f7b565b6117456020850185614ff2565b6065805467ffffffffffffffff19166001600160401b03929092169190911790556117766040850160208601614ff2565b606580546001600160401b0392909216600160401b0267ffffffffffffffff60401b1990921691909117905560e084013560665560608401356067556080840135606855604b6073556117c7613213565b6001600160a01b03166117e060e0860160c08701614d55565b6001600160a01b0316141561182e5760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa2a9a1a927abafa0a226a4a760611b6044820152606401610e70565b61183e60c0850160a08601614d55565b6001600160a01b031661185760e0860160c08701614d55565b6001600160a01b031614156118a55760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa2a9a1a927abafa7aba722a960611b6044820152606401610e70565b6118b560e0850160c08601614d55565b607180546001600160a01b0319166001600160a01b03929092169190911790556118e56060850160408601614d55565b607280546001600160a01b0319166001600160a01b0392909216919091179055604080516080860135815260e086013560208201527ffc1b83c11d99d08a938e0b82a0bd45f822f71ff5abf23f999c93c4533d752464910160405180910390a1508015611958576000805461ff00191690555b505050565b60335460ff1661197f5760405162461bcd60e51b8152600401610e7090615284565b61198a83838361323b565b60405160189060008051602061599783398151915290600090a2505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156119f25760405162461bcd60e51b8152600401610e70906152cf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611a24612d0c565b6001600160a01b031614611a4a5760405162461bcd60e51b8152600401610e709061531b565b6040805160008082526020820190925261112391839190613395565b60335460ff16611a885760405162461bcd60e51b8152600401610e7090615284565b6075546001600160401b03858116911614611add5760405162461bcd60e51b815260206004820152601560248201527413d3931657d310551154d517d0d3d3919254935151605a1b6044820152606401610e70565b611ae98285858461350f565b5060405160179060008051602061599783398151915290600090a250505050565b606a546040516347fb24c560e01b81526001600160a01b03909116906347fb24c590611b3c9085908590600401615367565b600060405180830381600087803b158015611b5657600080fd5b505af1158015611b6a573d6000803e3d6000fd5b5050604051600292506000805160206159978339815191529150600090a25050565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415611bd55760405162461bcd60e51b8152600401610e70906152cf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611c07612d0c565b6001600160a01b031614611c2d5760405162461bcd60e51b8152600401610e709061531b565b611c3982826001613395565b5050565b606a546040516304f61f8560e41b81526001600160a01b0390911690634f61f85090611c6d908490600401614d2c565b600060405180830381600087803b158015611c8757600080fd5b505af1158015611c9b573d6000803e3d6000fd5b5050604051601b92506000805160206159978339815191529150600090a250565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611d575760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c6044820152771b1959081d1a1c9bdd59da0819195b1959d85d1958d85b1b60421b6064820152608401610e70565b5060008051602061597783398151915290565b606980546001600160a01b0319166001600160a01b038316179055604051601c9060008051602061599783398151915290600090a250565b606b546001600160a01b0382811691161415611ded5760405162461bcd60e51b815260206004820152600a602482015269086aaa4be9eaaa8849eb60b31b6044820152606401610e70565b606a546040516319dc7ae560e31b81526001600160a01b039091169063cee3d72890611e20908490600090600401615367565b600060405180830381600087803b158015611e3a57600080fd5b505af1158015611e4e573d6000803e3d6000fd5b5050604051600192506000805160206159978339815191529150600090a250565b6065805467ffffffffffffffff60401b1916600160401b6001600160401b03841602179055604051600a9060008051602061599783398151915290600090a250565b60006078826001600160401b031681548110611ecf57611ecf6153fe565b6000918252602090912001546001600160a01b031692915050565b60335460ff16611f0c5760405162461bcd60e51b8152600401610e7090615284565b60006001611f186121ed565b6001600160401b031615611f685760405162461bcd60e51b81526020600482015260176024820152761393d397d1d1539154d254d7d393d11154d7d1561254d5604a1b6044820152606401610e70565b611f7183613b23565b611fb05760405162461bcd60e51b815260206004820152601060248201526f4e4f545f454d5054595f4245464f524560801b6044820152606401610e70565b6001611fc260a0850160808601615439565b6003811115611fd357611fd3615414565b146120205760405162461bcd60e51b815260206004820152601b60248201527f4245464f52455f4d414348494e455f4e4f545f46494e495348454400000000006044820152606401610e70565b60c083013582146120675760405162461bcd60e51b81526020600482015260116024820152701393d517d6915493d7d4d153911493d3d5607a1b6044820152606401610e70565b6001600160401b038116612082610100850160e08601614ff2565b6001600160401b0316146120cb5760405162461bcd60e51b815260206004820152601060248201526f494e424f585f4e4f545f41545f4f4e4560801b6044820152606401610e70565b6120dd61012084016101008501614ff2565b6001600160401b0316156121335760405162461bcd60e51b815260206004820152601c60248201527f504f534954494f4e5f494e5f4d4553534147455f4e4f545f5a45524f000000006044820152606401610e70565b600161214761014085016101208601615439565b600381111561215857612158615414565b146121a55760405162461bcd60e51b815260206004820152601a60248201527f41465445525f4d414348494e455f4e4f545f46494e49534845440000000000006044820152606401610e70565b60a08301356121c08460006001600160401b0385168161350f565b506121cd6001828561323b565b604051601d9060008051602061599783398151915290600090a250505050565b607554600160801b90046001600160401b031690565b60335460ff166122255760405162461bcd60e51b8152600401610e7090615284565b806122425760405162461bcd60e51b8152600401610e7090615454565b60005b81811015612358576000607981858585818110612264576122646153fe565b90506020020160208101906122799190614d55565b6001600160a01b03168152602081019190915260400160002060010154600160801b90046001600160401b0316146122e55760405162461bcd60e51b815260206004820152600f60248201526e14d51052d15497d25397d0d2105313608a1b6044820152606401610e70565b6123168383838181106122fa576122fa6153fe565b905060200201602081019061230f9190614d55565b6000613b7f565b5061234683838381811061232c5761232c6153fe565b90506020020160208101906123419190614d55565b613c44565b806123508161548f565b915050612245565b5060405160169060008051602061599783398151915290600090a25050565b61237f613cea565b60405160039060008051602061599783398151915290600090a2565b604051631b2ce7f360e11b81526001600160a01b03831690633659cfe6906123c7908490600401614d2c565b600060405180830381600087803b1580156123e157600080fd5b505af11580156123f5573d6000803e3d6000fd5b5050604051601492506000805160206159978339815191529150600090a25050565b6068819055604051601a9060008051602061599783398151915290600090a250565b6000805b607a5481101561249457607a818154811061245a5761245a6153fe565b6000918252602090912001546001600160a01b03848116911614156124825750600192915050565b8061248c8161548f565b91505061243d565b50600092915050565b6124a5614c07565b6001600160401b03821660009081526076602052604090206040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e0870152918204831661010086015281048216610120850152919091041661014082015260059091015461016082015292915050565b607381905560405160089060008051602061599783398151915290600090a250565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156125cf5760405162461bcd60e51b8152600401610e70906152cf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316612601612d0c565b6001600160a01b0316146126275760405162461bcd60e51b8152600401610e709061531b565b611c3982826001612d2d565b607e805460ff1916821515179055604051601e9060008051602061599783398151915290600090a250565b8261267b5760405162461bcd60e51b8152600401610e7090615454565b82811461269a5760405162461bcd60e51b8152600401610e70906154aa565b60005b83811015612731578282828181106126b7576126b76153fe565b90506020020160208101906126cc91906151e0565b607460008787858181106126e2576126e26153fe565b90506020020160208101906126f79190614d55565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806127298161548f565b91505061269d565b5060405160069060008051602061599783398151915290600090a250505050565b6001600160401b03821660009081526077602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b6000816001600160401b0316116127db5760405162461bcd60e51b81526020600482015260166024820152751253959053125117d0d3d39192549357d411549253d160521b6044820152606401610e70565b6065805467ffffffffffffffff19166001600160401b03831617905560405160099060008051602061599783398151915290600090a250565b6000607a8281548110611ecf57611ecf6153fe565b6001600160a01b038116600090815260796020526040812060010154600160c01b900460ff1680156127835750607554612783906001600160401b031683612752565b6000607a8281548110612881576128816153fe565b600091825260209091200154600160a01b90046001600160401b031692915050565b60335460ff166128c55760405162461bcd60e51b8152600401610e7090615284565b826128e25760405162461bcd60e51b8152600401610e7090615454565b8281146129015760405162461bcd60e51b8152600401610e70906154aa565b60005b83811015612a92576000612964868684818110612923576129236153fe565b90506020020160208101906129389190614d55565b85858581811061294a5761294a6153fe565b905060200201602081019061295f9190614d55565b613d65565b90506001600160401b0381166129ab5760405162461bcd60e51b815260206004820152600c60248201526b1393d517d25397d0d210531360a21b6044820152606401610e70565b612a038686848181106129c0576129c06153fe565b90506020020160208101906129d59190614d55565b6001600160a01b03166000908152607960205260409020600101805467ffffffffffffffff60801b19169055565b612a188484848181106129c0576129c06153fe565b606e546040516356e9df9760e01b81526001600160401b03831660048201526001600160a01b03909116906356e9df9790602401600060405180830381600087803b158015612a6657600080fd5b505af1158015612a7a573d6000803e3d6000fd5b50505050508080612a8a9061548f565b915050612904565b5060405160159060008051602061599783398151915290600090a250505050565b60007f000000000000000000000000000000000000000000000000000000000000000015612b11576001600160401b0382166000908152607f6020526040902054806127835760405162461bcd60e51b8152600401610e70906154d0565b6001600160401b03821660009081526076602052604081206003810154909150600160401b90046001600160401b0316612b5d5760405162461bcd60e51b8152600401610e70906154d0565b60040154600160c01b90046001600160401b031692915050565b919050565b612b84613213565b6001600160a01b0316816001600160a01b03161415612bd65760405162461bcd60e51b815260206004820152600e60248201526d494e56414c49445f455343524f5760901b6044820152606401610e70565b607180546001600160a01b0319166001600160a01b03831617905560405160199060008051602061599783398151915290600090a250565b606b80546001600160a01b0319166001600160a01b0383811691909117909155606a546040516319dc7ae560e31b815291169063cee3d72890612c58908490600190600401615367565b600060405180830381600087803b158015612c7257600080fd5b505af1158015612c86573d6000803e3d6000fd5b50506040516000925060008051602061599783398151915291508290a250565b60335460ff16612cc85760405162461bcd60e51b8152600401610e7090615284565b6033805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b604051612d029190614d2c565b60405180910390a1565b60006000805160206159778339815191525b546001600160a01b0316919050565b7f49bd798cd84788856140a4cd5030756b4d08a9e4d55db725ec195f232d262a895460ff1615612d605761195883613e33565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b158015612d9957600080fd5b505afa925050508015612dc9575060408051601f3d908101601f19168201909252612dc6918101906154f1565b60015b612e365760405162461bcd60e51b815260206004820152603860248201527f45524331393637557067726164653a206e6577207365636f6e6461727920696d604482015277706c656d656e746174696f6e206973206e6f74205555505360401b6064820152608401610e70565b7f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d8114612ec15760405162461bcd60e51b815260206004820152603360248201527f45524331393637557067726164653a20756e737570706f72746564207365636f6044820152721b99185c9e481c1c9bde1a58589b1955555251606a1b6064820152608401610e70565b50611958838383613eee565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f612ef6613213565b604080516001600160a01b03928316815291841660208301520160405180910390a161112381613f19565b612f29614c07565b612f31614c6b565b6000612f63604051806040016040528084815260200160016003811115612f5a57612f5a615414565b90526001613fa5565b9050612f7481600080804381613fea565b9250505090565b612f8361403e565b60008080526076602090815282517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a181958558201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a1819595560408201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195a5560608201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195b8054608085015160a086015160c08701516001600160401b039586166001600160801b031994851617600160401b9387168402176001600160801b03908116600160801b93881684026001600160c01b0390811691909117600160c01b93891684021790965560e08901517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195c80546101008c01516101208d01516101408e0151948c169290991691909117908a169096029590951790911694871690920290941692909217919093169091021790556101608201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195d5561312790600161550a565b607560086101000a8154816001600160401b0302191690836001600160401b031602179055507f0000000000000000000000000000000000000000000000000000000000000000156111235760646001600160a01b031663a3b1b31d6040518163ffffffff1660e01b815260040160206040518083038186803b1580156131ad57600080fd5b505afa1580156131c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131e591906154f1565b60008052607f6020527f18b3a2798575d3a428c1f52e616a74b071539854e037e7d7c535365d474f40335550565b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103612d1e565b6001600160401b038316600090815260766020526040902061325d838361406f565b81600201541461329e5760405162461bcd60e51b815260206004820152600c60248201526b434f4e4649524d5f4441544160a01b6044820152606401610e70565b606b54604051630502677360e51b815260048101849052602481018590526001600160a01b039091169063a04cee6090604401600060405180830381600087803b1580156132eb57600080fd5b505af11580156132ff573d6000803e3d6000fd5b50506075805467ffffffffffffffff19166001600160401b0388161790555061332b905084600161550a565b6075805467ffffffffffffffff60401b1916600160401b6001600160401b03938416021790556040805185815260208101859052918616917f22ef0479a7ff660660d1c2fe35f1b632cf31675c2d9378db8cec95b00d8ffa3c91015b60405180910390a250505050565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156133c8576119588361408b565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561340157600080fd5b505afa925050508015613431575060408051601f3d908101601f1916820190925261342e918101906154f1565b60015b6134945760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b6064820152608401610e70565b60008051602061597783398151915281146135035760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b6064820152608401610e70565b5061195883838361410d565b6000600161352561014087016101208801615439565b600381111561353657613536615414565b14806135645750600261355161014087016101208801615439565b600381111561356257613562615414565b145b6135a35760405162461bcd60e51b815260206004820152601060248201526f4241445f41465445525f53544154555360801b6044820152606401610e70565b6135ab614c90565b6135b48561249d565b6060820152606a54604080516221048360e21b815290516001600160a01b03909216916284120c91600480820192602092909190829003018186803b1580156135fc57600080fd5b505afa158015613610573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061363491906154f1565b81526060810151516136468786614116565b146136855760405162461bcd60e51b815260206004820152600f60248201526e0a0a48aacbea6a882a88abe9082a69608b1b6044820152606401610e70565b60006136a161369c36899003890160a08a016155f7565b614152565b905060006136b761369c368a90038a018a6155f7565b9050806001600160401b0316826001600160401b0316101561370d5760405162461bcd60e51b815260206004820152600f60248201526e494e424f585f4241434b574152445360881b6044820152606401610e70565b806001600160401b0316826001600160401b031614156137b35761373e613739368a90038a018a6155f7565b614167565b6001600160401b031661375c613739368b90038b0160a08c016155f7565b6001600160401b031610156137b35760405162461bcd60e51b815260206004820152601a60248201527f494e424f585f504f535f494e5f4d53475f4241434b57415244530000000000006044820152606401610e70565b60026137c76101408a016101208b01615439565b60038111156137d8576137d8615414565b1480613801575060006137f6613739368b90038b0160a08c016155f7565b6001600160401b0316115b15613814578161381081615613565b9250505b82516001600160401b038316111561385f5760405162461bcd60e51b815260206004820152600e60248201526d12539093d617d41054d517d1539160921b6044820152606401610e70565b6001600160401b0382161561390757606a546001600160a01b03166316bf557961388a60018561563a565b6040516001600160e01b031960e084901b1681526001600160401b03909116600482015260240160206040518083038186803b1580156138c957600080fd5b505afa1580156138dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061390191906154f1565b60e08401525b50613921905061391c368890038801886156a1565b614176565b604082015260655461393c906001600160401b03164361550a565b6001600160401b0390811660c0830152606082015161012001511615801560a083015261399257606081015161012001516001600160401b031660009081526076602052604090206005015460808201526139a2565b6060810151610160015160808201525b6139c18160a00151826080015183604001518460e00151606854614215565b9150828214806139cf575082155b613a125760405162461bcd60e51b81526020600482015260146024820152730aa9c8ab0a08a86a88a88be9c9e888abe9082a6960631b6044820152606401610e70565b613a5a613a268760a0018360000151614116565b613a37836040015143606854614282565b613a4e613a49368b90038b018b6156a1565b6142c1565b888560c0015187613fea565b60208201526000613a696121ed565b613a7490600161550a565b90506000613a96876001600160401b0316600090815260766020526040902090565b9050613aa281836142eb565b613aaf836020015161435c565b50508181606001516101600151613ac46121ed565b6001600160401b03167f4f4caa9e67fb994e349dd35d1ad0ce23053d4323f83ce11dc817b5435031d09684604001518a8660e001516068548860000151604051613b1295949392919061578b565b60405180910390a450949350505050565b60008135158015613b3657506020820135155b8015613b585750613b4d6060830160408401614ff2565b6001600160401b0316155b80156127835750613b6f6080830160608401614ff2565b6001600160401b03161592915050565b6001600160a01b0382166000908152607960205260408120805480841115613bdc5760405162461bcd60e51b815260206004820152601060248201526f544f4f5f4c4954544c455f5354414b4560801b6044820152606401610e70565b6000613be885836157eb565b8584559050613bf7868261454a565b60408051838152602081018790526001600160a01b038816917febd093d389ab57f3566918d2c379a2b4d9539e8eb95efad9d5e465457833fde6910160405180910390a295945050505050565b6001600160a01b03808216600081815260796020908152604080832081518083019092529381526001808501546001600160401b03600160401b9091048116938301938452607a8054928301815590945290517ff0440771a29e57e18c66727944770b82cc77924aef333c927ce6bdd2cdb3ae0390910180549251909316600160a01b026001600160e01b031990921694169390931792909217909155611c39826145e6565b60335460ff1615613d305760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e70565b6033805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612cf53390565b6001600160a01b03828116600090815260796020526040808220928416825281206001830154919291600160801b90046001600160401b031680613dd55760405162461bcd60e51b81526020600482015260076024820152661393d7d0d2105360ca1b6044820152606401610e70565b60018201546001600160401b03828116600160801b9092041614613e2a5760405162461bcd60e51b815260206004820152600c60248201526b1112519197d25397d0d2105360a21b6044820152606401610e70565b95945050505050565b6001600160a01b0381163b613eaa5760405162461bcd60e51b815260206004820152603760248201527f455243313936373a206e6577207365636f6e6461727920696d706c656d656e74604482015276185d1a5bdb881a5cc81b9bdd08184818dbdb9d1c9858dd604a1b6064820152608401610e70565b807f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d5b80546001600160a01b0319166001600160a01b039290921691909117905550565b613ef7836147a9565b600082511180613f045750805b1561195857613f1383836147e9565b50505050565b6001600160a01b038116613f7e5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e70565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103613ecd565b6000613fb4836000015161480e565b828460200151604051602001613fcc93929190615802565b60405160208183030381529060405280519060200120905092915050565b613ff2614c07565b613ffa614c07565b96875250602086019490945260408501929092526001600160401b0390811660608501529081166080840181905260a0840152431661014083015261016082015290565b600054610100900460ff166140655760405162461bcd60e51b8152600401610e7090615840565b61406d614882565b565b6040805160208101849052908101829052600090606001613fcc565b6001600160a01b0381163b6140f85760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401610e70565b80600080516020615977833981519152613ecd565b613ef7836148b5565b600061412f61412a368590038501856155f7565b61480e565b8261414060a0860160808701615439565b604051602001613fcc93929190615802565b6020810151600090815b602002015192915050565b6020810151600090600161415c565b6000614180614ce1565b8251602001518190600381111561419957614199615414565b908160038111156141ac576141ac615414565b9052506020838101518101519082019060038111156141cd576141cd615414565b908160038111156141e0576141e0615414565b9052506141eb614cff565b83515181526020808501515190820152604084015161420d90839083906148f5565b949350505050565b60008086614224576000614227565b60015b6040516001600160f81b031960f883901b1660208201526021810188905260418101879052606181018690526081810185905290915060a1016040516020818303038152906040528051906020012091505095945050505050565b6040805160208101859052908101839052606081018290526000906080015b6040516020818303038152906040528051906020012090505b9392505050565b60006127836142d783602001516000015161499f565b6020840151516142e6906149aa565b61406f565b6004820154600160401b90046001600160401b031661432c5760048201805467ffffffffffffffff60401b1916600160401b436001600160401b0316021790555b600490910180546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b60758054600160801b90046001600160401b031690601061437c83615613565b825461010092830a6001600160401b03818102199092169282160291909117909255607554600160801b908190048316600090815260766020908152604091829020875181559087015160018201559086015160028201556060860151600382018054608089015160a08a015160c08b01519489166001600160801b031993841617600160401b928a168302176001600160801b03908116918a1688026001600160c01b0390811692909217600160c01b968b1687021790945560e08b0151600487018054998d01516101208e01516101408f0151938d169b9096169a909a17998b16909302989098179093169188169095029091161793909416909302919091179055610160830151600590910155507f0000000000000000000000000000000000000000000000000000000000000000156111235760646001600160a01b031663a3b1b31d6040518163ffffffff1660e01b815260040160206040518083038186803b1580156144ed57600080fd5b505afa158015614501573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061452591906154f1565b607554600160801b90046001600160401b03166000908152607f602052604090205550565b6001600160a01b0382166000908152607b60205260408120549061456e838361588b565b6001600160a01b0385166000908152607b60205260408120829055607c805492935085929091906145a090849061588b565b909155505060408051838152602081018390526001600160a01b038616917fa740af14c56e4e04a617b1de1eb20de73270decbaaead14f142aabf3038e5ae29101613387565b6001600160a01b03811660009081526079602052604090206001810154600160c01b900460ff166146465760405162461bcd60e51b815260206004820152600a6024820152691393d517d4d51052d15160b21b6044820152606401610e70565b600180820154607880546001600160401b0390921692909161466891906157eb565b81548110614678576146786153fe565b600091825260209091200154607880546001600160a01b03909216916001600160401b0384169081106146ad576146ad6153fe565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080607960006078846001600160401b0316815481106146fc576146fc6153fe565b6000918252602080832091909101546001600160a01b031683528201929092526040019020600101805467ffffffffffffffff19166001600160401b03929092169190911790556078805480614754576147546158a3565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03949094168152607990935250506040812090815560010180546001600160c81b0319169055565b6147b281613e33565b6040516001600160a01b038216907ff7eed2a7fabbf1bec8d55ed5e785cc76622376dde5df4ff15470551e030b813490600090a250565b60606142ba83836040518060600160405280602781526020016159b7602791396149b6565b8051805160209182015192820151805190830151604080516c23b637b130b61039ba30ba329d60991b81870152602d810194909452604d8401959095526001600160c01b031960c092831b8116606d850152911b1660758201528251808203605d018152607d909101909252815191012090565b600054610100900460ff166148a95760405162461bcd60e51b8152600401610e7090615840565b6033805460ff19169055565b6148be8161408b565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60408051600280825260608201835260009283929190602083019080368337019050508551909150614937906149328660005b602002015161480e565b614a93565b8160008151811061494a5761494a6153fe565b602090810291909101015261496b8560016020020151614932866001614928565b8160018151811061497e5761497e6153fe565b602002602001018181525050613e2a6000846001600160401b031683614bb7565b80516000908161415c565b8051600090600161415c565b60606001600160a01b0384163b614a1e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610e70565b600080856001600160a01b031685604051614a3991906158e5565b600060405180830381855af49150503d8060008114614a74576040519150601f19603f3d011682016040523d82523d6000602084013e614a79565b606091505b5091509150614a89828286614bce565b9695505050505050565b60006001836003811115614aa957614aa9615414565b1415614aef576040516b213637b1b59039ba30ba329d60a11b6020820152602c8101839052604c015b604051602081830303815290604052805190602001209050612783565b6002836003811115614b0357614b03615414565b1415614b395760405174213637b1b59039ba30ba32961032b93937b932b21d60591b602082015260358101839052605501614ad2565b6003836003811115614b4d57614b4d615414565b1415614b7c5760405174213637b1b59039ba30ba3296103a37b7903330b91d60591b6020820152603501614ad2565b60405162461bcd60e51b815260206004820152601060248201526f4241445f424c4f434b5f53544154555360801b6044820152606401610e70565b60008383836040516020016142a193929190615901565b60608315614bdd5750816142ba565b825115614bed5782518084602001fd5b8160405162461bcd60e51b8152600401610e709190615943565b6040805161018081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081018290526101208101829052610140810182905261016081019190915290565b6040518060400160405280614c7e614ce1565b8152602001614c8b614ce1565b905290565b60405180610100016040528060008152602001614cab614c07565b815260006020820152604001614cbf614c07565b8152600060208201819052604082018190526060820181905260809091015290565b60405180604001604052806002906020820280368337509192915050565b60405180604001604052806002905b614d16614c6b565b815260200190600190039081614d0e5790505090565b6001600160a01b0391909116815260200190565b6001600160a01b038116811461112357600080fd5b600060208284031215614d6757600080fd5b81356142ba81614d40565b600060208284031215614d8457600080fd5b5035919050565b600080828403610160811215614da057600080fd5b83356001600160401b03811115614db657600080fd5b84016101c08187031215614dc957600080fd5b9250610140601f1982011215614dde57600080fd5b506020830190509250929050565b80356001600160401b0381168114612b7757600080fd5b600080600060608486031215614e1857600080fd5b614e2184614dec565b95602085013595506040909401359392505050565b60006101608284031215614e4957600080fd5b50919050565b6000806000806101c08587031215614e6657600080fd5b614e6f85614dec565b935060208501359250614e858660408701614e36565b939692955092936101a00135925050565b801515811461112357600080fd5b60008060408385031215614eb757600080fd5b8235614ec281614d40565b91506020830135614ed281614e96565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715614f1557614f15614edd565b60405290565b604051601f8201601f191681016001600160401b0381118282101715614f4357614f43614edd565b604052919050565b60008060408385031215614f5e57600080fd5b8235614f6981614d40565b91506020838101356001600160401b0380821115614f8657600080fd5b818601915086601f830112614f9a57600080fd5b813581811115614fac57614fac614edd565b614fbe601f8201601f19168501614f1b565b91508082528784828501011115614fd457600080fd5b80848401858401376000848284010152508093505050509250929050565b60006020828403121561500457600080fd5b6142ba82614dec565b6000610160828403121561502057600080fd5b6142ba8383614e36565b60008083601f84011261503c57600080fd5b5081356001600160401b0381111561505357600080fd5b6020830191508360208260051b850101111561506e57600080fd5b9250929050565b6000806020838503121561508857600080fd5b82356001600160401b0381111561509e57600080fd5b6150aa8582860161502a565b90969095509350505050565b600080604083850312156150c957600080fd5b82356150d481614d40565b91506020830135614ed281614d40565b600061018082019050825182526020830151602083015260408301516040830152606083015161511f60608401826001600160401b03169052565b50608083015161513a60808401826001600160401b03169052565b5060a083015161515560a08401826001600160401b03169052565b5060c083015161517060c08401826001600160401b03169052565b5060e083015161518b60e08401826001600160401b03169052565b50610100838101516001600160401b038116848301525050610120838101516001600160401b038116848301525050610140838101516001600160401b03811684830152505061016092830151919092015290565b6000602082840312156151f257600080fd5b81356142ba81614e96565b6000806000806040858703121561521357600080fd5b84356001600160401b038082111561522a57600080fd5b6152368883890161502a565b9096509450602087013591508082111561524f57600080fd5b5061525c8782880161502a565b95989497509550505050565b6000806040838503121561527b57600080fd5b6150d483614dec565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6000602082840312156152c457600080fd5b81516142ba81614e96565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b6001600160a01b039290921682521515602082015260400190565b6000808335601e1984360301811261539957600080fd5b8301803591506001600160401b038211156153b357600080fd5b60200191503681900382131561506e57600080fd5b83815260406020820152816040820152818360608301376000818301606090810191909152601f909201601f1916010192915050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b803560048110612b7757600080fd5b60006020828403121561544b57600080fd5b6142ba8261542a565b6020808252600b908201526a454d5054595f415252415960a81b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156154a3576154a3615479565b5060010190565b6020808252600c908201526b0aea49e9c8ebe988a9c8ea8960a31b604082015260600190565b6020808252600790820152664e4f5f4e4f444560c81b604082015260600190565b60006020828403121561550357600080fd5b5051919050565b60006001600160401b0380831681851680830382111561552c5761552c615479565b01949350505050565b60006080828403121561554757600080fd5b61554f614ef3565b905082601f83011261556057600080fd5b615568614ef3565b80604084018581111561557a57600080fd5b845b8181101561559457803584526020938401930161557c565b5081845285605f8601126155a757600080fd5b6155af614ef3565b925082915060808501868111156155c557600080fd5b808210156155e9576155d682614dec565b84526020840193506020820191506155c5565b505060208301525092915050565b60006080828403121561560957600080fd5b6142ba8383615535565b60006001600160401b038083168181141561563057615630615479565b6001019392505050565b60006001600160401b038381169083168181101561565a5761565a615479565b039392505050565b600060a0828403121561567457600080fd5b61567c614ef3565b90506156888383615535565b81526156966080830161542a565b602082015292915050565b600061016082840312156156b457600080fd5b604051606081018181106001600160401b03821117156156d6576156d6614edd565b6040526156e38484615662565b81526156f28460a08501615662565b60208201526157046101408401614dec565b60408201529392505050565b604081833760006040838101828152908301915b6002811015615753576001600160401b0361573e84614dec565b16825260209283019290910190600101615724565b5050506157626080820161542a565b6004811061578057634e487b7160e01b600052602160045260246000fd5b806080840152505050565b8581526101e081016157a06020830187615710565b6157b060c0830160a08801615710565b6001600160401b036157c56101408801614dec565b1661016083015284610180830152836101a0830152826101c08301529695505050505050565b6000828210156157fd576157fd615479565b500390565b83815282602082015260006004831061582b57634e487b7160e01b600052602160045260246000fd5b5060f89190911b604082015260410192915050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000821982111561589e5761589e615479565b500190565b634e487b7160e01b600052603160045260246000fd5b60005b838110156158d45781810151838201526020016158bc565b83811115613f135750506000910152565b600082516158f78184602087016158b9565b9190910192915050565b83815260006020848184015260408301845182860160005b8281101561593557815184529284019290840190600101615919565b509198975050505050505050565b60208152600082518060208401526159628160408501602087016158b9565b601f01601f1916919091016040019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcea8787f128d10b2cc0317b0c3960f9ad447f7f6c1ed189db1083ccffd20f456e416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122006f91cc0c39b23cb0607749141b3ddda8baf244ed317fe6bd9cfaf81f465205c64736f6c63430008090033",
|
1805
|
+
"deployedBytecode": "0x6080604052600436106103905760003560e01c80637ba9534a116101de578063ce11e6ab11610103578063ef40a6701161009b578063ef40a67014610d08578063f065de3f14610d3e578063f33e1fac14610d5e578063f38c937914610d7e578063f63a434a14610d9e578063facd743b14610dbe578063fb0e722b14610dee578063fc8ffa0314610e0e578063ff204f3b14610e2e57600080fd5b8063ce11e6ab14610b79578063ce66d05c14610b99578063d01e660214610bb9578063d735e21d14610bd9578063dcd030aa14610bfe578063dff6978714610c1e578063e78cea9214610c33578063e8bd492214610c53578063ee35f32714610ce857600080fd5b8063948d658811610176578063948d6588146109815780639846129a146109a15780639a8a0592146109b4578063a23c44b1146109ca578063a2b4f1d814610ad9578063a3ffb77214610af9578063aa38a6e714610b19578063aa65af4814610b39578063bc45e0ae14610b5957600080fd5b80637ba9534a1461086f5780637c75c298146108845780638456cb59146108a4578063848bf918146108b95780638640ce5f146108d957806389384960146108fe5780638ee1a1261461091e57806391c657e81461093457806392c8134c1461095457600080fd5b806347fb24c5116102c45780636177fd181161025c5780636177fd181461071d57806363721d6b1461076057806365f7f80d1461077557806369fd251c146107935780636ddd3744146107dc57806371ef232c146107fc57806376e7e23b14610812578063771b2f97146108285780637b83a3fe1461084f57600080fd5b806347fb24c51461061d5780634f1ef2861461063d5780634f61f8501461065057806351ed6a301461067057806352d1902d1461069057806353b60c4a146106a5578063567ca41b146106c55780635c975abb146106e55780636136fe2e146106fd57600080fd5b80631b1689e9116103375780631b1689e9146104ac57806328ff127a146104d05780632e7acfa6146104f05780632f30cabd146105285780632f7968e81461055e5780633659cfe61461057e5780633e96576e1461059e57806345e38b64146105e7578063470dce4e146105fd57600080fd5b8063014cc92c14610395578063023a96fe146103cb5780630397d458146103eb578063046f7da21461040d57806306ae5851146104225780630d40a0fd1461044257806312ab3d3b1461046257806313af40351461048c575b600080fd5b3480156103a157600080fd5b50606f546103b5906001600160a01b031681565b6040516103c29190614d2c565b60405180910390f35b3480156103d757600080fd5b50606e546103b5906001600160a01b031681565b3480156103f757600080fd5b5061040b610406366004614d55565b610e4e565b005b34801561041957600080fd5b5061040b611020565b34801561042e57600080fd5b5061040b61043d366004614d72565b611044565b34801561044e57600080fd5b5061040b61045d366004614d55565b611066565b34801561046e57600080fd5b50607e5461047c9060ff1681565b60405190151581526020016103c2565b34801561049857600080fd5b5061040b6104a7366004614d55565b611126565b3480156104b857600080fd5b506104c2607d5481565b6040519081526020016103c2565b3480156104dc57600080fd5b5061040b6104eb366004614d8b565b61114c565b3480156104fc57600080fd5b50606554610510906001600160401b031681565b6040516001600160401b0390911681526020016103c2565b34801561053457600080fd5b506104c2610543366004614d55565b6001600160a01b03166000908152607b602052604090205490565b34801561056a57600080fd5b5061040b610579366004614e03565b61195d565b34801561058a57600080fd5b5061040b610599366004614d55565b6119a9565b3480156105aa57600080fd5b506105106105b9366004614d55565b6001600160a01b0316600090815260796020526040902060010154600160401b90046001600160401b031690565b3480156105f357600080fd5b506104c260735481565b34801561060957600080fd5b5061040b610618366004614e4f565b611a66565b34801561062957600080fd5b5061040b610638366004614ea4565b611b0a565b61040b61064b366004614f4b565b611b8c565b34801561065c57600080fd5b5061040b61066b366004614d55565b611c3d565b34801561067c57600080fd5b506072546103b5906001600160a01b031681565b34801561069c57600080fd5b506104c2611cbc565b3480156106b157600080fd5b5061040b6106c0366004614d55565b611d6a565b3480156106d157600080fd5b5061040b6106e0366004614d55565b611da2565b3480156106f157600080fd5b5060335460ff1661047c565b34801561070957600080fd5b5061040b610718366004614ff2565b611e6f565b34801561072957600080fd5b5061047c610738366004614d55565b6001600160a01b0316600090815260796020526040902060010154600160c01b900460ff1690565b34801561076c57600080fd5b50607a546104c2565b34801561078157600080fd5b506075546001600160401b0316610510565b34801561079f57600080fd5b506105106107ae366004614d55565b6001600160a01b0316600090815260796020526040902060010154600160801b90046001600160401b031690565b3480156107e857600080fd5b506103b56107f7366004614ff2565b611eb1565b34801561080857600080fd5b506104c2607c5481565b34801561081e57600080fd5b506104c260675481565b34801561083457600080fd5b5060655461051090600160401b90046001600160401b031681565b34801561085b57600080fd5b5061040b61086a36600461500d565b611eea565b34801561087b57600080fd5b506105106121ed565b34801561089057600080fd5b5061040b61089f366004615075565b612203565b3480156108b057600080fd5b5061040b612377565b3480156108c557600080fd5b5061040b6108d43660046150b6565b61239b565b3480156108e557600080fd5b50607554600160c01b90046001600160401b0316610510565b34801561090a57600080fd5b5061040b610919366004614d72565b612417565b34801561092a57600080fd5b506104c260685481565b34801561094057600080fd5b5061047c61094f366004614d55565b612439565b34801561096057600080fd5b5061097461096f366004614ff2565b61249d565b6040516103c291906150e4565b34801561098d57600080fd5b5061040b61099c366004614d72565b612564565b61040b6109af366004614f4b565b612586565b3480156109c057600080fd5b506104c260665481565b3480156109d657600080fd5b50610a846109e5366004614d55565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506001600160a01b0316600090815260796020908152604091829020825160a081018452815481526001909101546001600160401b0380821693830193909352600160401b8104831693820193909352600160801b83049091166060820152600160c01b90910460ff161515608082015290565b6040516103c29190600060a0820190508251825260208301516001600160401b038082166020850152806040860151166040850152806060860151166060850152505060808301511515608083015292915050565b348015610ae557600080fd5b5061040b610af43660046151e0565b612633565b348015610b0557600080fd5b5061040b610b143660046151fd565b61265e565b348015610b2557600080fd5b50606d546103b5906001600160a01b031681565b348015610b4557600080fd5b5061047c610b54366004615268565b612752565b348015610b6557600080fd5b506070546103b5906001600160a01b031681565b348015610b8557600080fd5b50606b546103b5906001600160a01b031681565b348015610ba557600080fd5b5061040b610bb4366004614ff2565b612789565b348015610bc557600080fd5b506103b5610bd4366004614d72565b612814565b348015610be557600080fd5b50607554600160401b90046001600160401b0316610510565b348015610c0a57600080fd5b5061047c610c19366004614d55565b612829565b348015610c2a57600080fd5b50607854610510565b348015610c3f57600080fd5b50606a546103b5906001600160a01b031681565b348015610c5f57600080fd5b50610cb0610c6e366004614d55565b607960205260009081526040902080546001909101546001600160401b0380821691600160401b8104821691600160801b82041690600160c01b900460ff1685565b604080519586526001600160401b0394851660208701529284169285019290925290911660608301521515608082015260a0016103c2565b348015610cf457600080fd5b50606c546103b5906001600160a01b031681565b348015610d1457600080fd5b506104c2610d23366004614d55565b6001600160a01b031660009081526079602052604090205490565b348015610d4a57600080fd5b506071546103b5906001600160a01b031681565b348015610d6a57600080fd5b50610510610d79366004614d72565b61286c565b348015610d8a57600080fd5b5061040b610d993660046151fd565b6128a3565b348015610daa57600080fd5b506104c2610db9366004614ff2565b612ab3565b348015610dca57600080fd5b5061047c610dd9366004614d55565b60746020526000908152604090205460ff1681565b348015610dfa57600080fd5b506069546103b5906001600160a01b031681565b348015610e1a57600080fd5b5061040b610e29366004614d55565b612b7c565b348015610e3a57600080fd5b5061040b610e49366004614d55565b612c0e565b60335460ff16610e795760405162461bcd60e51b8152600401610e7090615284565b60405180910390fd5b6000806001600160a01b0316826001600160a01b0316141590506000306001600160a01b031663cd205fda6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ece57600080fd5b505afa158015610ee2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0691906152b2565b905081151581151514610f535760405162461bcd60e51b81526020600482015260156024820152741393d7d554d15497d313d1d250d7d4d5541413d495605a1b6044820152606401610e70565b6078546001600160401b031615610fa05760405162461bcd60e51b81526020600482015260116024820152704e4f5f4143544956455f5354414b45525360781b6044820152606401610e70565b607c5415610fe65760405162461bcd60e51b81526020600482015260136024820152724e4f5f50454e44494e475f574954484452415760681b6044820152606401610e70565b607280546001600160a01b0319166001600160a01b038516179055604051600d9060008051602061599783398151915290600090a2505050565b611028612ca6565b60405160049060008051602061599783398151915290600090a2565b6067819055604051600c9060008051602061599783398151915290600090a250565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156110af5760405162461bcd60e51b8152600401610e70906152cf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166110e1612d0c565b6001600160a01b0316146111075760405162461bcd60e51b8152600401610e709061531b565b6040805160008082526020820190925261112391839190612d2d565b50565b61112f81612ecd565b60405160079060008051602061599783398151915290600090a250565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156111955760405162461bcd60e51b8152600401610e70906152cf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166111c7612d0c565b6001600160a01b0316146111ed5760405162461bcd60e51b8152600401610e709061531b565b600054610100900460ff166112085760005460ff161561120c565b303b155b61126f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610e70565b600054610100900460ff16158015611291576000805461ffff19166101011790555b43607d556112a26020830183614d55565b606a80546001600160a01b0319166001600160a01b03929092169190911790556112d26040830160208401614d55565b606c80546001600160a01b0319166001600160a01b03929092169190911790556112ff6020830183614d55565b6001600160a01b03166347fb24c561131d6060850160408601614d55565b60016040518363ffffffff1660e01b815260040161133c929190615367565b600060405180830381600087803b15801561135657600080fd5b505af115801561136a573d6000803e3d6000fd5b5061137c925050506020830183614d55565b6001600160a01b0316634f61f85061139a6040850160208601614d55565b6040518263ffffffff1660e01b81526004016113b69190614d2c565b600060405180830381600087803b1580156113d057600080fd5b505af11580156113e4573d6000803e3d6000fd5b506113f9925050506060830160408401614d55565b606980546001600160a01b0319166001600160a01b03929092169190911790556114296080830160608401614d55565b606b80546001600160a01b0319166001600160a01b03929092169190911790556114566020830183614d55565b6001600160a01b031663cee3d7286114746080850160608601614d55565b60016040518363ffffffff1660e01b8152600401611493929190615367565b600060405180830381600087803b1580156114ad57600080fd5b505af11580156114c1573d6000803e3d6000fd5b506114d69250505060a0830160808401614d55565b606d80546001600160a01b0319166001600160a01b03929092169190911790556115036020830183614d55565b6001600160a01b03166347fb24c561152160a0850160808601614d55565b60016040518363ffffffff1660e01b8152600401611540929190615367565b600060405180830381600087803b15801561155a57600080fd5b505af115801561156e573d6000803e3d6000fd5b506115839250505060a0830160808401614d55565b6001600160a01b031663cf8d56d660e08501356115a4610100870187615382565b6040518463ffffffff1660e01b81526004016115c2939291906153c8565b600060405180830381600087803b1580156115dc57600080fd5b505af11580156115f0573d6000803e3d6000fd5b50611605925050506040830160208401614d55565b60405163e0bc972960e01b815260006004820181905260c0602483015260c4820181905260016044830181905260648301829052608483019190915260a48201526001600160a01b03919091169063e0bc97299060e401600060405180830381600087803b15801561167657600080fd5b505af115801561168a573d6000803e3d6000fd5b506116a19250505061012083016101008401614d55565b606f80546001600160a01b0319166001600160a01b03929092169190911790556116d361014083016101208401614d55565b607080546001600160a01b0319166001600160a01b039290921691909117905561170360c0830160a08401614d55565b606e80546001600160a01b0319166001600160a01b0392909216919091179055600061172d612f21565b905061173881612f7b565b6117456020850185614ff2565b6065805467ffffffffffffffff19166001600160401b03929092169190911790556117766040850160208601614ff2565b606580546001600160401b0392909216600160401b0267ffffffffffffffff60401b1990921691909117905560e084013560665560608401356067556080840135606855604b6073556117c7613213565b6001600160a01b03166117e060e0860160c08701614d55565b6001600160a01b0316141561182e5760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa2a9a1a927abafa0a226a4a760611b6044820152606401610e70565b61183e60c0850160a08601614d55565b6001600160a01b031661185760e0860160c08701614d55565b6001600160a01b031614156118a55760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa2a9a1a927abafa7aba722a960611b6044820152606401610e70565b6118b560e0850160c08601614d55565b607180546001600160a01b0319166001600160a01b03929092169190911790556118e56060850160408601614d55565b607280546001600160a01b0319166001600160a01b0392909216919091179055604080516080860135815260e086013560208201527ffc1b83c11d99d08a938e0b82a0bd45f822f71ff5abf23f999c93c4533d752464910160405180910390a1508015611958576000805461ff00191690555b505050565b60335460ff1661197f5760405162461bcd60e51b8152600401610e7090615284565b61198a83838361323b565b60405160189060008051602061599783398151915290600090a2505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156119f25760405162461bcd60e51b8152600401610e70906152cf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611a24612d0c565b6001600160a01b031614611a4a5760405162461bcd60e51b8152600401610e709061531b565b6040805160008082526020820190925261112391839190613395565b60335460ff16611a885760405162461bcd60e51b8152600401610e7090615284565b6075546001600160401b03858116911614611add5760405162461bcd60e51b815260206004820152601560248201527413d3931657d310551154d517d0d3d3919254935151605a1b6044820152606401610e70565b611ae98285858461350f565b5060405160179060008051602061599783398151915290600090a250505050565b606a546040516347fb24c560e01b81526001600160a01b03909116906347fb24c590611b3c9085908590600401615367565b600060405180830381600087803b158015611b5657600080fd5b505af1158015611b6a573d6000803e3d6000fd5b5050604051600292506000805160206159978339815191529150600090a25050565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415611bd55760405162461bcd60e51b8152600401610e70906152cf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611c07612d0c565b6001600160a01b031614611c2d5760405162461bcd60e51b8152600401610e709061531b565b611c3982826001613395565b5050565b606a546040516304f61f8560e41b81526001600160a01b0390911690634f61f85090611c6d908490600401614d2c565b600060405180830381600087803b158015611c8757600080fd5b505af1158015611c9b573d6000803e3d6000fd5b5050604051601b92506000805160206159978339815191529150600090a250565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611d575760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c6044820152771b1959081d1a1c9bdd59da0819195b1959d85d1958d85b1b60421b6064820152608401610e70565b5060008051602061597783398151915290565b606980546001600160a01b0319166001600160a01b038316179055604051601c9060008051602061599783398151915290600090a250565b606b546001600160a01b0382811691161415611ded5760405162461bcd60e51b815260206004820152600a602482015269086aaa4be9eaaa8849eb60b31b6044820152606401610e70565b606a546040516319dc7ae560e31b81526001600160a01b039091169063cee3d72890611e20908490600090600401615367565b600060405180830381600087803b158015611e3a57600080fd5b505af1158015611e4e573d6000803e3d6000fd5b5050604051600192506000805160206159978339815191529150600090a250565b6065805467ffffffffffffffff60401b1916600160401b6001600160401b03841602179055604051600a9060008051602061599783398151915290600090a250565b60006078826001600160401b031681548110611ecf57611ecf6153fe565b6000918252602090912001546001600160a01b031692915050565b60335460ff16611f0c5760405162461bcd60e51b8152600401610e7090615284565b60006001611f186121ed565b6001600160401b031615611f685760405162461bcd60e51b81526020600482015260176024820152761393d397d1d1539154d254d7d393d11154d7d1561254d5604a1b6044820152606401610e70565b611f7183613b23565b611fb05760405162461bcd60e51b815260206004820152601060248201526f4e4f545f454d5054595f4245464f524560801b6044820152606401610e70565b6001611fc260a0850160808601615439565b6003811115611fd357611fd3615414565b146120205760405162461bcd60e51b815260206004820152601b60248201527f4245464f52455f4d414348494e455f4e4f545f46494e495348454400000000006044820152606401610e70565b60c083013582146120675760405162461bcd60e51b81526020600482015260116024820152701393d517d6915493d7d4d153911493d3d5607a1b6044820152606401610e70565b6001600160401b038116612082610100850160e08601614ff2565b6001600160401b0316146120cb5760405162461bcd60e51b815260206004820152601060248201526f494e424f585f4e4f545f41545f4f4e4560801b6044820152606401610e70565b6120dd61012084016101008501614ff2565b6001600160401b0316156121335760405162461bcd60e51b815260206004820152601c60248201527f504f534954494f4e5f494e5f4d4553534147455f4e4f545f5a45524f000000006044820152606401610e70565b600161214761014085016101208601615439565b600381111561215857612158615414565b146121a55760405162461bcd60e51b815260206004820152601a60248201527f41465445525f4d414348494e455f4e4f545f46494e49534845440000000000006044820152606401610e70565b60a08301356121c08460006001600160401b0385168161350f565b506121cd6001828561323b565b604051601d9060008051602061599783398151915290600090a250505050565b607554600160801b90046001600160401b031690565b60335460ff166122255760405162461bcd60e51b8152600401610e7090615284565b806122425760405162461bcd60e51b8152600401610e7090615454565b60005b81811015612358576000607981858585818110612264576122646153fe565b90506020020160208101906122799190614d55565b6001600160a01b03168152602081019190915260400160002060010154600160801b90046001600160401b0316146122e55760405162461bcd60e51b815260206004820152600f60248201526e14d51052d15497d25397d0d2105313608a1b6044820152606401610e70565b6123168383838181106122fa576122fa6153fe565b905060200201602081019061230f9190614d55565b6000613b7f565b5061234683838381811061232c5761232c6153fe565b90506020020160208101906123419190614d55565b613c44565b806123508161548f565b915050612245565b5060405160169060008051602061599783398151915290600090a25050565b61237f613cea565b60405160039060008051602061599783398151915290600090a2565b604051631b2ce7f360e11b81526001600160a01b03831690633659cfe6906123c7908490600401614d2c565b600060405180830381600087803b1580156123e157600080fd5b505af11580156123f5573d6000803e3d6000fd5b5050604051601492506000805160206159978339815191529150600090a25050565b6068819055604051601a9060008051602061599783398151915290600090a250565b6000805b607a5481101561249457607a818154811061245a5761245a6153fe565b6000918252602090912001546001600160a01b03848116911614156124825750600192915050565b8061248c8161548f565b91505061243d565b50600092915050565b6124a5614c07565b6001600160401b03821660009081526076602052604090206040805161018081018252825481526001830154602082015260028301549181019190915260038201546001600160401b038082166060840152600160401b80830482166080850152600160801b808404831660a0860152600160c01b93849004831660c0860152600486015480841660e0870152918204831661010086015281048216610120850152919091041661014082015260059091015461016082015292915050565b607381905560405160089060008051602061599783398151915290600090a250565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156125cf5760405162461bcd60e51b8152600401610e70906152cf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316612601612d0c565b6001600160a01b0316146126275760405162461bcd60e51b8152600401610e709061531b565b611c3982826001612d2d565b607e805460ff1916821515179055604051601e9060008051602061599783398151915290600090a250565b8261267b5760405162461bcd60e51b8152600401610e7090615454565b82811461269a5760405162461bcd60e51b8152600401610e70906154aa565b60005b83811015612731578282828181106126b7576126b76153fe565b90506020020160208101906126cc91906151e0565b607460008787858181106126e2576126e26153fe565b90506020020160208101906126f79190614d55565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806127298161548f565b91505061269d565b5060405160069060008051602061599783398151915290600090a250505050565b6001600160401b03821660009081526077602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b6000816001600160401b0316116127db5760405162461bcd60e51b81526020600482015260166024820152751253959053125117d0d3d39192549357d411549253d160521b6044820152606401610e70565b6065805467ffffffffffffffff19166001600160401b03831617905560405160099060008051602061599783398151915290600090a250565b6000607a8281548110611ecf57611ecf6153fe565b6001600160a01b038116600090815260796020526040812060010154600160c01b900460ff1680156127835750607554612783906001600160401b031683612752565b6000607a8281548110612881576128816153fe565b600091825260209091200154600160a01b90046001600160401b031692915050565b60335460ff166128c55760405162461bcd60e51b8152600401610e7090615284565b826128e25760405162461bcd60e51b8152600401610e7090615454565b8281146129015760405162461bcd60e51b8152600401610e70906154aa565b60005b83811015612a92576000612964868684818110612923576129236153fe565b90506020020160208101906129389190614d55565b85858581811061294a5761294a6153fe565b905060200201602081019061295f9190614d55565b613d65565b90506001600160401b0381166129ab5760405162461bcd60e51b815260206004820152600c60248201526b1393d517d25397d0d210531360a21b6044820152606401610e70565b612a038686848181106129c0576129c06153fe565b90506020020160208101906129d59190614d55565b6001600160a01b03166000908152607960205260409020600101805467ffffffffffffffff60801b19169055565b612a188484848181106129c0576129c06153fe565b606e546040516356e9df9760e01b81526001600160401b03831660048201526001600160a01b03909116906356e9df9790602401600060405180830381600087803b158015612a6657600080fd5b505af1158015612a7a573d6000803e3d6000fd5b50505050508080612a8a9061548f565b915050612904565b5060405160159060008051602061599783398151915290600090a250505050565b60007f000000000000000000000000000000000000000000000000000000000000000015612b11576001600160401b0382166000908152607f6020526040902054806127835760405162461bcd60e51b8152600401610e70906154d0565b6001600160401b03821660009081526076602052604081206003810154909150600160401b90046001600160401b0316612b5d5760405162461bcd60e51b8152600401610e70906154d0565b60040154600160c01b90046001600160401b031692915050565b919050565b612b84613213565b6001600160a01b0316816001600160a01b03161415612bd65760405162461bcd60e51b815260206004820152600e60248201526d494e56414c49445f455343524f5760901b6044820152606401610e70565b607180546001600160a01b0319166001600160a01b03831617905560405160199060008051602061599783398151915290600090a250565b606b80546001600160a01b0319166001600160a01b0383811691909117909155606a546040516319dc7ae560e31b815291169063cee3d72890612c58908490600190600401615367565b600060405180830381600087803b158015612c7257600080fd5b505af1158015612c86573d6000803e3d6000fd5b50506040516000925060008051602061599783398151915291508290a250565b60335460ff16612cc85760405162461bcd60e51b8152600401610e7090615284565b6033805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b604051612d029190614d2c565b60405180910390a1565b60006000805160206159778339815191525b546001600160a01b0316919050565b7f49bd798cd84788856140a4cd5030756b4d08a9e4d55db725ec195f232d262a895460ff1615612d605761195883613e33565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b158015612d9957600080fd5b505afa925050508015612dc9575060408051601f3d908101601f19168201909252612dc6918101906154f1565b60015b612e365760405162461bcd60e51b815260206004820152603860248201527f45524331393637557067726164653a206e6577207365636f6e6461727920696d604482015277706c656d656e746174696f6e206973206e6f74205555505360401b6064820152608401610e70565b7f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d8114612ec15760405162461bcd60e51b815260206004820152603360248201527f45524331393637557067726164653a20756e737570706f72746564207365636f6044820152721b99185c9e481c1c9bde1a58589b1955555251606a1b6064820152608401610e70565b50611958838383613eee565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f612ef6613213565b604080516001600160a01b03928316815291841660208301520160405180910390a161112381613f19565b612f29614c07565b612f31614c6b565b6000612f63604051806040016040528084815260200160016003811115612f5a57612f5a615414565b90526001613fa5565b9050612f7481600080804381613fea565b9250505090565b612f8361403e565b60008080526076602090815282517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a181958558201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a1819595560408201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195a5560608201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195b8054608085015160a086015160c08701516001600160401b039586166001600160801b031994851617600160401b9387168402176001600160801b03908116600160801b93881684026001600160c01b0390811691909117600160c01b93891684021790965560e08901517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195c80546101008c01516101208d01516101408e0151948c169290991691909117908a169096029590951790911694871690920290941692909217919093169091021790556101608201517fafbc767fed27552cbeceb3d11150dacedabc53b0cc52ac5aa6285a747a18195d5561312790600161550a565b607560086101000a8154816001600160401b0302191690836001600160401b031602179055507f0000000000000000000000000000000000000000000000000000000000000000156111235760646001600160a01b031663a3b1b31d6040518163ffffffff1660e01b815260040160206040518083038186803b1580156131ad57600080fd5b505afa1580156131c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131e591906154f1565b60008052607f6020527f18b3a2798575d3a428c1f52e616a74b071539854e037e7d7c535365d474f40335550565b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103612d1e565b6001600160401b038316600090815260766020526040902061325d838361406f565b81600201541461329e5760405162461bcd60e51b815260206004820152600c60248201526b434f4e4649524d5f4441544160a01b6044820152606401610e70565b606b54604051630502677360e51b815260048101849052602481018590526001600160a01b039091169063a04cee6090604401600060405180830381600087803b1580156132eb57600080fd5b505af11580156132ff573d6000803e3d6000fd5b50506075805467ffffffffffffffff19166001600160401b0388161790555061332b905084600161550a565b6075805467ffffffffffffffff60401b1916600160401b6001600160401b03938416021790556040805185815260208101859052918616917f22ef0479a7ff660660d1c2fe35f1b632cf31675c2d9378db8cec95b00d8ffa3c91015b60405180910390a250505050565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156133c8576119588361408b565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561340157600080fd5b505afa925050508015613431575060408051601f3d908101601f1916820190925261342e918101906154f1565b60015b6134945760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b6064820152608401610e70565b60008051602061597783398151915281146135035760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b6064820152608401610e70565b5061195883838361410d565b6000600161352561014087016101208801615439565b600381111561353657613536615414565b14806135645750600261355161014087016101208801615439565b600381111561356257613562615414565b145b6135a35760405162461bcd60e51b815260206004820152601060248201526f4241445f41465445525f53544154555360801b6044820152606401610e70565b6135ab614c90565b6135b48561249d565b6060820152606a54604080516221048360e21b815290516001600160a01b03909216916284120c91600480820192602092909190829003018186803b1580156135fc57600080fd5b505afa158015613610573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061363491906154f1565b81526060810151516136468786614116565b146136855760405162461bcd60e51b815260206004820152600f60248201526e0a0a48aacbea6a882a88abe9082a69608b1b6044820152606401610e70565b60006136a161369c36899003890160a08a016155f7565b614152565b905060006136b761369c368a90038a018a6155f7565b9050806001600160401b0316826001600160401b0316101561370d5760405162461bcd60e51b815260206004820152600f60248201526e494e424f585f4241434b574152445360881b6044820152606401610e70565b806001600160401b0316826001600160401b031614156137b35761373e613739368a90038a018a6155f7565b614167565b6001600160401b031661375c613739368b90038b0160a08c016155f7565b6001600160401b031610156137b35760405162461bcd60e51b815260206004820152601a60248201527f494e424f585f504f535f494e5f4d53475f4241434b57415244530000000000006044820152606401610e70565b60026137c76101408a016101208b01615439565b60038111156137d8576137d8615414565b1480613801575060006137f6613739368b90038b0160a08c016155f7565b6001600160401b0316115b15613814578161381081615613565b9250505b82516001600160401b038316111561385f5760405162461bcd60e51b815260206004820152600e60248201526d12539093d617d41054d517d1539160921b6044820152606401610e70565b6001600160401b0382161561390757606a546001600160a01b03166316bf557961388a60018561563a565b6040516001600160e01b031960e084901b1681526001600160401b03909116600482015260240160206040518083038186803b1580156138c957600080fd5b505afa1580156138dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061390191906154f1565b60e08401525b50613921905061391c368890038801886156a1565b614176565b604082015260655461393c906001600160401b03164361550a565b6001600160401b0390811660c0830152606082015161012001511615801560a083015261399257606081015161012001516001600160401b031660009081526076602052604090206005015460808201526139a2565b6060810151610160015160808201525b6139c18160a00151826080015183604001518460e00151606854614215565b9150828214806139cf575082155b613a125760405162461bcd60e51b81526020600482015260146024820152730aa9c8ab0a08a86a88a88be9c9e888abe9082a6960631b6044820152606401610e70565b613a5a613a268760a0018360000151614116565b613a37836040015143606854614282565b613a4e613a49368b90038b018b6156a1565b6142c1565b888560c0015187613fea565b60208201526000613a696121ed565b613a7490600161550a565b90506000613a96876001600160401b0316600090815260766020526040902090565b9050613aa281836142eb565b613aaf836020015161435c565b50508181606001516101600151613ac46121ed565b6001600160401b03167f4f4caa9e67fb994e349dd35d1ad0ce23053d4323f83ce11dc817b5435031d09684604001518a8660e001516068548860000151604051613b1295949392919061578b565b60405180910390a450949350505050565b60008135158015613b3657506020820135155b8015613b585750613b4d6060830160408401614ff2565b6001600160401b0316155b80156127835750613b6f6080830160608401614ff2565b6001600160401b03161592915050565b6001600160a01b0382166000908152607960205260408120805480841115613bdc5760405162461bcd60e51b815260206004820152601060248201526f544f4f5f4c4954544c455f5354414b4560801b6044820152606401610e70565b6000613be885836157eb565b8584559050613bf7868261454a565b60408051838152602081018790526001600160a01b038816917febd093d389ab57f3566918d2c379a2b4d9539e8eb95efad9d5e465457833fde6910160405180910390a295945050505050565b6001600160a01b03808216600081815260796020908152604080832081518083019092529381526001808501546001600160401b03600160401b9091048116938301938452607a8054928301815590945290517ff0440771a29e57e18c66727944770b82cc77924aef333c927ce6bdd2cdb3ae0390910180549251909316600160a01b026001600160e01b031990921694169390931792909217909155611c39826145e6565b60335460ff1615613d305760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e70565b6033805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612cf53390565b6001600160a01b03828116600090815260796020526040808220928416825281206001830154919291600160801b90046001600160401b031680613dd55760405162461bcd60e51b81526020600482015260076024820152661393d7d0d2105360ca1b6044820152606401610e70565b60018201546001600160401b03828116600160801b9092041614613e2a5760405162461bcd60e51b815260206004820152600c60248201526b1112519197d25397d0d2105360a21b6044820152606401610e70565b95945050505050565b6001600160a01b0381163b613eaa5760405162461bcd60e51b815260206004820152603760248201527f455243313936373a206e6577207365636f6e6461727920696d706c656d656e74604482015276185d1a5bdb881a5cc81b9bdd08184818dbdb9d1c9858dd604a1b6064820152608401610e70565b807f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d5b80546001600160a01b0319166001600160a01b039290921691909117905550565b613ef7836147a9565b600082511180613f045750805b1561195857613f1383836147e9565b50505050565b6001600160a01b038116613f7e5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e70565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103613ecd565b6000613fb4836000015161480e565b828460200151604051602001613fcc93929190615802565b60405160208183030381529060405280519060200120905092915050565b613ff2614c07565b613ffa614c07565b96875250602086019490945260408501929092526001600160401b0390811660608501529081166080840181905260a0840152431661014083015261016082015290565b600054610100900460ff166140655760405162461bcd60e51b8152600401610e7090615840565b61406d614882565b565b6040805160208101849052908101829052600090606001613fcc565b6001600160a01b0381163b6140f85760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401610e70565b80600080516020615977833981519152613ecd565b613ef7836148b5565b600061412f61412a368590038501856155f7565b61480e565b8261414060a0860160808701615439565b604051602001613fcc93929190615802565b6020810151600090815b602002015192915050565b6020810151600090600161415c565b6000614180614ce1565b8251602001518190600381111561419957614199615414565b908160038111156141ac576141ac615414565b9052506020838101518101519082019060038111156141cd576141cd615414565b908160038111156141e0576141e0615414565b9052506141eb614cff565b83515181526020808501515190820152604084015161420d90839083906148f5565b949350505050565b60008086614224576000614227565b60015b6040516001600160f81b031960f883901b1660208201526021810188905260418101879052606181018690526081810185905290915060a1016040516020818303038152906040528051906020012091505095945050505050565b6040805160208101859052908101839052606081018290526000906080015b6040516020818303038152906040528051906020012090505b9392505050565b60006127836142d783602001516000015161499f565b6020840151516142e6906149aa565b61406f565b6004820154600160401b90046001600160401b031661432c5760048201805467ffffffffffffffff60401b1916600160401b436001600160401b0316021790555b600490910180546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b60758054600160801b90046001600160401b031690601061437c83615613565b825461010092830a6001600160401b03818102199092169282160291909117909255607554600160801b908190048316600090815260766020908152604091829020875181559087015160018201559086015160028201556060860151600382018054608089015160a08a015160c08b01519489166001600160801b031993841617600160401b928a168302176001600160801b03908116918a1688026001600160c01b0390811692909217600160c01b968b1687021790945560e08b0151600487018054998d01516101208e01516101408f0151938d169b9096169a909a17998b16909302989098179093169188169095029091161793909416909302919091179055610160830151600590910155507f0000000000000000000000000000000000000000000000000000000000000000156111235760646001600160a01b031663a3b1b31d6040518163ffffffff1660e01b815260040160206040518083038186803b1580156144ed57600080fd5b505afa158015614501573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061452591906154f1565b607554600160801b90046001600160401b03166000908152607f602052604090205550565b6001600160a01b0382166000908152607b60205260408120549061456e838361588b565b6001600160a01b0385166000908152607b60205260408120829055607c805492935085929091906145a090849061588b565b909155505060408051838152602081018390526001600160a01b038616917fa740af14c56e4e04a617b1de1eb20de73270decbaaead14f142aabf3038e5ae29101613387565b6001600160a01b03811660009081526079602052604090206001810154600160c01b900460ff166146465760405162461bcd60e51b815260206004820152600a6024820152691393d517d4d51052d15160b21b6044820152606401610e70565b600180820154607880546001600160401b0390921692909161466891906157eb565b81548110614678576146786153fe565b600091825260209091200154607880546001600160a01b03909216916001600160401b0384169081106146ad576146ad6153fe565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080607960006078846001600160401b0316815481106146fc576146fc6153fe565b6000918252602080832091909101546001600160a01b031683528201929092526040019020600101805467ffffffffffffffff19166001600160401b03929092169190911790556078805480614754576147546158a3565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03949094168152607990935250506040812090815560010180546001600160c81b0319169055565b6147b281613e33565b6040516001600160a01b038216907ff7eed2a7fabbf1bec8d55ed5e785cc76622376dde5df4ff15470551e030b813490600090a250565b60606142ba83836040518060600160405280602781526020016159b7602791396149b6565b8051805160209182015192820151805190830151604080516c23b637b130b61039ba30ba329d60991b81870152602d810194909452604d8401959095526001600160c01b031960c092831b8116606d850152911b1660758201528251808203605d018152607d909101909252815191012090565b600054610100900460ff166148a95760405162461bcd60e51b8152600401610e7090615840565b6033805460ff19169055565b6148be8161408b565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60408051600280825260608201835260009283929190602083019080368337019050508551909150614937906149328660005b602002015161480e565b614a93565b8160008151811061494a5761494a6153fe565b602090810291909101015261496b8560016020020151614932866001614928565b8160018151811061497e5761497e6153fe565b602002602001018181525050613e2a6000846001600160401b031683614bb7565b80516000908161415c565b8051600090600161415c565b60606001600160a01b0384163b614a1e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610e70565b600080856001600160a01b031685604051614a3991906158e5565b600060405180830381855af49150503d8060008114614a74576040519150601f19603f3d011682016040523d82523d6000602084013e614a79565b606091505b5091509150614a89828286614bce565b9695505050505050565b60006001836003811115614aa957614aa9615414565b1415614aef576040516b213637b1b59039ba30ba329d60a11b6020820152602c8101839052604c015b604051602081830303815290604052805190602001209050612783565b6002836003811115614b0357614b03615414565b1415614b395760405174213637b1b59039ba30ba32961032b93937b932b21d60591b602082015260358101839052605501614ad2565b6003836003811115614b4d57614b4d615414565b1415614b7c5760405174213637b1b59039ba30ba3296103a37b7903330b91d60591b6020820152603501614ad2565b60405162461bcd60e51b815260206004820152601060248201526f4241445f424c4f434b5f53544154555360801b6044820152606401610e70565b60008383836040516020016142a193929190615901565b60608315614bdd5750816142ba565b825115614bed5782518084602001fd5b8160405162461bcd60e51b8152600401610e709190615943565b6040805161018081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081018290526101208101829052610140810182905261016081019190915290565b6040518060400160405280614c7e614ce1565b8152602001614c8b614ce1565b905290565b60405180610100016040528060008152602001614cab614c07565b815260006020820152604001614cbf614c07565b8152600060208201819052604082018190526060820181905260809091015290565b60405180604001604052806002906020820280368337509192915050565b60405180604001604052806002905b614d16614c6b565b815260200190600190039081614d0e5790505090565b6001600160a01b0391909116815260200190565b6001600160a01b038116811461112357600080fd5b600060208284031215614d6757600080fd5b81356142ba81614d40565b600060208284031215614d8457600080fd5b5035919050565b600080828403610160811215614da057600080fd5b83356001600160401b03811115614db657600080fd5b84016101c08187031215614dc957600080fd5b9250610140601f1982011215614dde57600080fd5b506020830190509250929050565b80356001600160401b0381168114612b7757600080fd5b600080600060608486031215614e1857600080fd5b614e2184614dec565b95602085013595506040909401359392505050565b60006101608284031215614e4957600080fd5b50919050565b6000806000806101c08587031215614e6657600080fd5b614e6f85614dec565b935060208501359250614e858660408701614e36565b939692955092936101a00135925050565b801515811461112357600080fd5b60008060408385031215614eb757600080fd5b8235614ec281614d40565b91506020830135614ed281614e96565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715614f1557614f15614edd565b60405290565b604051601f8201601f191681016001600160401b0381118282101715614f4357614f43614edd565b604052919050565b60008060408385031215614f5e57600080fd5b8235614f6981614d40565b91506020838101356001600160401b0380821115614f8657600080fd5b818601915086601f830112614f9a57600080fd5b813581811115614fac57614fac614edd565b614fbe601f8201601f19168501614f1b565b91508082528784828501011115614fd457600080fd5b80848401858401376000848284010152508093505050509250929050565b60006020828403121561500457600080fd5b6142ba82614dec565b6000610160828403121561502057600080fd5b6142ba8383614e36565b60008083601f84011261503c57600080fd5b5081356001600160401b0381111561505357600080fd5b6020830191508360208260051b850101111561506e57600080fd5b9250929050565b6000806020838503121561508857600080fd5b82356001600160401b0381111561509e57600080fd5b6150aa8582860161502a565b90969095509350505050565b600080604083850312156150c957600080fd5b82356150d481614d40565b91506020830135614ed281614d40565b600061018082019050825182526020830151602083015260408301516040830152606083015161511f60608401826001600160401b03169052565b50608083015161513a60808401826001600160401b03169052565b5060a083015161515560a08401826001600160401b03169052565b5060c083015161517060c08401826001600160401b03169052565b5060e083015161518b60e08401826001600160401b03169052565b50610100838101516001600160401b038116848301525050610120838101516001600160401b038116848301525050610140838101516001600160401b03811684830152505061016092830151919092015290565b6000602082840312156151f257600080fd5b81356142ba81614e96565b6000806000806040858703121561521357600080fd5b84356001600160401b038082111561522a57600080fd5b6152368883890161502a565b9096509450602087013591508082111561524f57600080fd5b5061525c8782880161502a565b95989497509550505050565b6000806040838503121561527b57600080fd5b6150d483614dec565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6000602082840312156152c457600080fd5b81516142ba81614e96565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b6001600160a01b039290921682521515602082015260400190565b6000808335601e1984360301811261539957600080fd5b8301803591506001600160401b038211156153b357600080fd5b60200191503681900382131561506e57600080fd5b83815260406020820152816040820152818360608301376000818301606090810191909152601f909201601f1916010192915050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b803560048110612b7757600080fd5b60006020828403121561544b57600080fd5b6142ba8261542a565b6020808252600b908201526a454d5054595f415252415960a81b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156154a3576154a3615479565b5060010190565b6020808252600c908201526b0aea49e9c8ebe988a9c8ea8960a31b604082015260600190565b6020808252600790820152664e4f5f4e4f444560c81b604082015260600190565b60006020828403121561550357600080fd5b5051919050565b60006001600160401b0380831681851680830382111561552c5761552c615479565b01949350505050565b60006080828403121561554757600080fd5b61554f614ef3565b905082601f83011261556057600080fd5b615568614ef3565b80604084018581111561557a57600080fd5b845b8181101561559457803584526020938401930161557c565b5081845285605f8601126155a757600080fd5b6155af614ef3565b925082915060808501868111156155c557600080fd5b808210156155e9576155d682614dec565b84526020840193506020820191506155c5565b505060208301525092915050565b60006080828403121561560957600080fd5b6142ba8383615535565b60006001600160401b038083168181141561563057615630615479565b6001019392505050565b60006001600160401b038381169083168181101561565a5761565a615479565b039392505050565b600060a0828403121561567457600080fd5b61567c614ef3565b90506156888383615535565b81526156966080830161542a565b602082015292915050565b600061016082840312156156b457600080fd5b604051606081018181106001600160401b03821117156156d6576156d6614edd565b6040526156e38484615662565b81526156f28460a08501615662565b60208201526157046101408401614dec565b60408201529392505050565b604081833760006040838101828152908301915b6002811015615753576001600160401b0361573e84614dec565b16825260209283019290910190600101615724565b5050506157626080820161542a565b6004811061578057634e487b7160e01b600052602160045260246000fd5b806080840152505050565b8581526101e081016157a06020830187615710565b6157b060c0830160a08801615710565b6001600160401b036157c56101408801614dec565b1661016083015284610180830152836101a0830152826101c08301529695505050505050565b6000828210156157fd576157fd615479565b500390565b83815282602082015260006004831061582b57634e487b7160e01b600052602160045260246000fd5b5060f89190911b604082015260410192915050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000821982111561589e5761589e615479565b500190565b634e487b7160e01b600052603160045260246000fd5b60005b838110156158d45781810151838201526020016158bc565b83811115613f135750506000910152565b600082516158f78184602087016158b9565b9190910192915050565b83815260006020848184015260408301845182860160005b8281101561593557815184529284019290840190600101615919565b509198975050505050505050565b60208152600082518060208401526159628160408501602087016158b9565b601f01601f1916919091016040019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcea8787f128d10b2cc0317b0c3960f9ad447f7f6c1ed189db1083ccffd20f456e416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122006f91cc0c39b23cb0607749141b3ddda8baf244ed317fe6bd9cfaf81f465205c64736f6c63430008090033",
|
1806
|
+
"linkReferences": {},
|
1807
|
+
"deployedLinkReferences": {}
|
1808
|
+
}
|