@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,1008 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "Inbox",
|
4
|
+
"sourceName": "src/bridge/Inbox.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "uint256",
|
10
|
+
"name": "dataLength",
|
11
|
+
"type": "uint256"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"internalType": "uint256",
|
15
|
+
"name": "maxDataLength",
|
16
|
+
"type": "uint256"
|
17
|
+
}
|
18
|
+
],
|
19
|
+
"name": "DataTooLarge",
|
20
|
+
"type": "error"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"inputs": [],
|
24
|
+
"name": "GasLimitTooLarge",
|
25
|
+
"type": "error"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"inputs": [
|
29
|
+
{
|
30
|
+
"internalType": "uint256",
|
31
|
+
"name": "expected",
|
32
|
+
"type": "uint256"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"internalType": "uint256",
|
36
|
+
"name": "actual",
|
37
|
+
"type": "uint256"
|
38
|
+
}
|
39
|
+
],
|
40
|
+
"name": "InsufficientSubmissionCost",
|
41
|
+
"type": "error"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"inputs": [
|
45
|
+
{
|
46
|
+
"internalType": "uint256",
|
47
|
+
"name": "expected",
|
48
|
+
"type": "uint256"
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"internalType": "uint256",
|
52
|
+
"name": "actual",
|
53
|
+
"type": "uint256"
|
54
|
+
}
|
55
|
+
],
|
56
|
+
"name": "InsufficientValue",
|
57
|
+
"type": "error"
|
58
|
+
},
|
59
|
+
{
|
60
|
+
"inputs": [],
|
61
|
+
"name": "L1Forked",
|
62
|
+
"type": "error"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"inputs": [
|
66
|
+
{
|
67
|
+
"internalType": "address",
|
68
|
+
"name": "origin",
|
69
|
+
"type": "address"
|
70
|
+
}
|
71
|
+
],
|
72
|
+
"name": "NotAllowedOrigin",
|
73
|
+
"type": "error"
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"inputs": [],
|
77
|
+
"name": "NotForked",
|
78
|
+
"type": "error"
|
79
|
+
},
|
80
|
+
{
|
81
|
+
"inputs": [],
|
82
|
+
"name": "NotOrigin",
|
83
|
+
"type": "error"
|
84
|
+
},
|
85
|
+
{
|
86
|
+
"inputs": [
|
87
|
+
{
|
88
|
+
"internalType": "address",
|
89
|
+
"name": "sender",
|
90
|
+
"type": "address"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"internalType": "address",
|
94
|
+
"name": "owner",
|
95
|
+
"type": "address"
|
96
|
+
}
|
97
|
+
],
|
98
|
+
"name": "NotOwner",
|
99
|
+
"type": "error"
|
100
|
+
},
|
101
|
+
{
|
102
|
+
"inputs": [
|
103
|
+
{
|
104
|
+
"internalType": "address",
|
105
|
+
"name": "sender",
|
106
|
+
"type": "address"
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"internalType": "address",
|
110
|
+
"name": "rollup",
|
111
|
+
"type": "address"
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"internalType": "address",
|
115
|
+
"name": "owner",
|
116
|
+
"type": "address"
|
117
|
+
}
|
118
|
+
],
|
119
|
+
"name": "NotRollupOrOwner",
|
120
|
+
"type": "error"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"inputs": [
|
124
|
+
{
|
125
|
+
"internalType": "address",
|
126
|
+
"name": "from",
|
127
|
+
"type": "address"
|
128
|
+
},
|
129
|
+
{
|
130
|
+
"internalType": "address",
|
131
|
+
"name": "to",
|
132
|
+
"type": "address"
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"internalType": "uint256",
|
136
|
+
"name": "l2CallValue",
|
137
|
+
"type": "uint256"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"internalType": "uint256",
|
141
|
+
"name": "deposit",
|
142
|
+
"type": "uint256"
|
143
|
+
},
|
144
|
+
{
|
145
|
+
"internalType": "uint256",
|
146
|
+
"name": "maxSubmissionCost",
|
147
|
+
"type": "uint256"
|
148
|
+
},
|
149
|
+
{
|
150
|
+
"internalType": "address",
|
151
|
+
"name": "excessFeeRefundAddress",
|
152
|
+
"type": "address"
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"internalType": "address",
|
156
|
+
"name": "callValueRefundAddress",
|
157
|
+
"type": "address"
|
158
|
+
},
|
159
|
+
{
|
160
|
+
"internalType": "uint256",
|
161
|
+
"name": "gasLimit",
|
162
|
+
"type": "uint256"
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"internalType": "uint256",
|
166
|
+
"name": "maxFeePerGas",
|
167
|
+
"type": "uint256"
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"internalType": "bytes",
|
171
|
+
"name": "data",
|
172
|
+
"type": "bytes"
|
173
|
+
}
|
174
|
+
],
|
175
|
+
"name": "RetryableData",
|
176
|
+
"type": "error"
|
177
|
+
},
|
178
|
+
{
|
179
|
+
"anonymous": false,
|
180
|
+
"inputs": [
|
181
|
+
{
|
182
|
+
"indexed": true,
|
183
|
+
"internalType": "address",
|
184
|
+
"name": "user",
|
185
|
+
"type": "address"
|
186
|
+
},
|
187
|
+
{
|
188
|
+
"indexed": false,
|
189
|
+
"internalType": "bool",
|
190
|
+
"name": "val",
|
191
|
+
"type": "bool"
|
192
|
+
}
|
193
|
+
],
|
194
|
+
"name": "AllowListAddressSet",
|
195
|
+
"type": "event"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"anonymous": false,
|
199
|
+
"inputs": [
|
200
|
+
{
|
201
|
+
"indexed": false,
|
202
|
+
"internalType": "bool",
|
203
|
+
"name": "isEnabled",
|
204
|
+
"type": "bool"
|
205
|
+
}
|
206
|
+
],
|
207
|
+
"name": "AllowListEnabledUpdated",
|
208
|
+
"type": "event"
|
209
|
+
},
|
210
|
+
{
|
211
|
+
"anonymous": false,
|
212
|
+
"inputs": [
|
213
|
+
{
|
214
|
+
"indexed": true,
|
215
|
+
"internalType": "uint256",
|
216
|
+
"name": "messageNum",
|
217
|
+
"type": "uint256"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"indexed": false,
|
221
|
+
"internalType": "bytes",
|
222
|
+
"name": "data",
|
223
|
+
"type": "bytes"
|
224
|
+
}
|
225
|
+
],
|
226
|
+
"name": "InboxMessageDelivered",
|
227
|
+
"type": "event"
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"anonymous": false,
|
231
|
+
"inputs": [
|
232
|
+
{
|
233
|
+
"indexed": true,
|
234
|
+
"internalType": "uint256",
|
235
|
+
"name": "messageNum",
|
236
|
+
"type": "uint256"
|
237
|
+
}
|
238
|
+
],
|
239
|
+
"name": "InboxMessageDeliveredFromOrigin",
|
240
|
+
"type": "event"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"anonymous": false,
|
244
|
+
"inputs": [
|
245
|
+
{
|
246
|
+
"indexed": false,
|
247
|
+
"internalType": "address",
|
248
|
+
"name": "account",
|
249
|
+
"type": "address"
|
250
|
+
}
|
251
|
+
],
|
252
|
+
"name": "Paused",
|
253
|
+
"type": "event"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"anonymous": false,
|
257
|
+
"inputs": [
|
258
|
+
{
|
259
|
+
"indexed": false,
|
260
|
+
"internalType": "address",
|
261
|
+
"name": "account",
|
262
|
+
"type": "address"
|
263
|
+
}
|
264
|
+
],
|
265
|
+
"name": "Unpaused",
|
266
|
+
"type": "event"
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"inputs": [],
|
270
|
+
"name": "allowListEnabled",
|
271
|
+
"outputs": [
|
272
|
+
{
|
273
|
+
"internalType": "bool",
|
274
|
+
"name": "",
|
275
|
+
"type": "bool"
|
276
|
+
}
|
277
|
+
],
|
278
|
+
"stateMutability": "view",
|
279
|
+
"type": "function"
|
280
|
+
},
|
281
|
+
{
|
282
|
+
"inputs": [],
|
283
|
+
"name": "bridge",
|
284
|
+
"outputs": [
|
285
|
+
{
|
286
|
+
"internalType": "contract IBridge",
|
287
|
+
"name": "",
|
288
|
+
"type": "address"
|
289
|
+
}
|
290
|
+
],
|
291
|
+
"stateMutability": "view",
|
292
|
+
"type": "function"
|
293
|
+
},
|
294
|
+
{
|
295
|
+
"inputs": [
|
296
|
+
{
|
297
|
+
"internalType": "uint256",
|
298
|
+
"name": "dataLength",
|
299
|
+
"type": "uint256"
|
300
|
+
},
|
301
|
+
{
|
302
|
+
"internalType": "uint256",
|
303
|
+
"name": "baseFee",
|
304
|
+
"type": "uint256"
|
305
|
+
}
|
306
|
+
],
|
307
|
+
"name": "calculateRetryableSubmissionFee",
|
308
|
+
"outputs": [
|
309
|
+
{
|
310
|
+
"internalType": "uint256",
|
311
|
+
"name": "",
|
312
|
+
"type": "uint256"
|
313
|
+
}
|
314
|
+
],
|
315
|
+
"stateMutability": "view",
|
316
|
+
"type": "function"
|
317
|
+
},
|
318
|
+
{
|
319
|
+
"inputs": [
|
320
|
+
{
|
321
|
+
"internalType": "address",
|
322
|
+
"name": "to",
|
323
|
+
"type": "address"
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"internalType": "uint256",
|
327
|
+
"name": "l2CallValue",
|
328
|
+
"type": "uint256"
|
329
|
+
},
|
330
|
+
{
|
331
|
+
"internalType": "uint256",
|
332
|
+
"name": "maxSubmissionCost",
|
333
|
+
"type": "uint256"
|
334
|
+
},
|
335
|
+
{
|
336
|
+
"internalType": "address",
|
337
|
+
"name": "excessFeeRefundAddress",
|
338
|
+
"type": "address"
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"internalType": "address",
|
342
|
+
"name": "callValueRefundAddress",
|
343
|
+
"type": "address"
|
344
|
+
},
|
345
|
+
{
|
346
|
+
"internalType": "uint256",
|
347
|
+
"name": "gasLimit",
|
348
|
+
"type": "uint256"
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"internalType": "uint256",
|
352
|
+
"name": "maxFeePerGas",
|
353
|
+
"type": "uint256"
|
354
|
+
},
|
355
|
+
{
|
356
|
+
"internalType": "bytes",
|
357
|
+
"name": "data",
|
358
|
+
"type": "bytes"
|
359
|
+
}
|
360
|
+
],
|
361
|
+
"name": "createRetryableTicket",
|
362
|
+
"outputs": [
|
363
|
+
{
|
364
|
+
"internalType": "uint256",
|
365
|
+
"name": "",
|
366
|
+
"type": "uint256"
|
367
|
+
}
|
368
|
+
],
|
369
|
+
"stateMutability": "payable",
|
370
|
+
"type": "function"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"inputs": [
|
374
|
+
{
|
375
|
+
"internalType": "address",
|
376
|
+
"name": "to",
|
377
|
+
"type": "address"
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"internalType": "uint256",
|
381
|
+
"name": "l2CallValue",
|
382
|
+
"type": "uint256"
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"internalType": "uint256",
|
386
|
+
"name": "maxSubmissionCost",
|
387
|
+
"type": "uint256"
|
388
|
+
},
|
389
|
+
{
|
390
|
+
"internalType": "address",
|
391
|
+
"name": "excessFeeRefundAddress",
|
392
|
+
"type": "address"
|
393
|
+
},
|
394
|
+
{
|
395
|
+
"internalType": "address",
|
396
|
+
"name": "callValueRefundAddress",
|
397
|
+
"type": "address"
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"internalType": "uint256",
|
401
|
+
"name": "gasLimit",
|
402
|
+
"type": "uint256"
|
403
|
+
},
|
404
|
+
{
|
405
|
+
"internalType": "uint256",
|
406
|
+
"name": "maxFeePerGas",
|
407
|
+
"type": "uint256"
|
408
|
+
},
|
409
|
+
{
|
410
|
+
"internalType": "bytes",
|
411
|
+
"name": "data",
|
412
|
+
"type": "bytes"
|
413
|
+
}
|
414
|
+
],
|
415
|
+
"name": "createRetryableTicketNoRefundAliasRewrite",
|
416
|
+
"outputs": [
|
417
|
+
{
|
418
|
+
"internalType": "uint256",
|
419
|
+
"name": "",
|
420
|
+
"type": "uint256"
|
421
|
+
}
|
422
|
+
],
|
423
|
+
"stateMutability": "payable",
|
424
|
+
"type": "function"
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"inputs": [
|
428
|
+
{
|
429
|
+
"internalType": "uint256",
|
430
|
+
"name": "",
|
431
|
+
"type": "uint256"
|
432
|
+
}
|
433
|
+
],
|
434
|
+
"name": "depositEth",
|
435
|
+
"outputs": [
|
436
|
+
{
|
437
|
+
"internalType": "uint256",
|
438
|
+
"name": "",
|
439
|
+
"type": "uint256"
|
440
|
+
}
|
441
|
+
],
|
442
|
+
"stateMutability": "payable",
|
443
|
+
"type": "function"
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"inputs": [],
|
447
|
+
"name": "depositEth",
|
448
|
+
"outputs": [
|
449
|
+
{
|
450
|
+
"internalType": "uint256",
|
451
|
+
"name": "",
|
452
|
+
"type": "uint256"
|
453
|
+
}
|
454
|
+
],
|
455
|
+
"stateMutability": "payable",
|
456
|
+
"type": "function"
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"inputs": [
|
460
|
+
{
|
461
|
+
"internalType": "contract IBridge",
|
462
|
+
"name": "_bridge",
|
463
|
+
"type": "address"
|
464
|
+
},
|
465
|
+
{
|
466
|
+
"internalType": "contract ISequencerInbox",
|
467
|
+
"name": "_sequencerInbox",
|
468
|
+
"type": "address"
|
469
|
+
}
|
470
|
+
],
|
471
|
+
"name": "initialize",
|
472
|
+
"outputs": [],
|
473
|
+
"stateMutability": "nonpayable",
|
474
|
+
"type": "function"
|
475
|
+
},
|
476
|
+
{
|
477
|
+
"inputs": [
|
478
|
+
{
|
479
|
+
"internalType": "address",
|
480
|
+
"name": "",
|
481
|
+
"type": "address"
|
482
|
+
}
|
483
|
+
],
|
484
|
+
"name": "isAllowed",
|
485
|
+
"outputs": [
|
486
|
+
{
|
487
|
+
"internalType": "bool",
|
488
|
+
"name": "",
|
489
|
+
"type": "bool"
|
490
|
+
}
|
491
|
+
],
|
492
|
+
"stateMutability": "view",
|
493
|
+
"type": "function"
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"inputs": [],
|
497
|
+
"name": "pause",
|
498
|
+
"outputs": [],
|
499
|
+
"stateMutability": "nonpayable",
|
500
|
+
"type": "function"
|
501
|
+
},
|
502
|
+
{
|
503
|
+
"inputs": [],
|
504
|
+
"name": "paused",
|
505
|
+
"outputs": [
|
506
|
+
{
|
507
|
+
"internalType": "bool",
|
508
|
+
"name": "",
|
509
|
+
"type": "bool"
|
510
|
+
}
|
511
|
+
],
|
512
|
+
"stateMutability": "view",
|
513
|
+
"type": "function"
|
514
|
+
},
|
515
|
+
{
|
516
|
+
"inputs": [
|
517
|
+
{
|
518
|
+
"internalType": "contract IBridge",
|
519
|
+
"name": "",
|
520
|
+
"type": "address"
|
521
|
+
}
|
522
|
+
],
|
523
|
+
"name": "postUpgradeInit",
|
524
|
+
"outputs": [],
|
525
|
+
"stateMutability": "nonpayable",
|
526
|
+
"type": "function"
|
527
|
+
},
|
528
|
+
{
|
529
|
+
"inputs": [
|
530
|
+
{
|
531
|
+
"internalType": "uint256",
|
532
|
+
"name": "gasLimit",
|
533
|
+
"type": "uint256"
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"internalType": "uint256",
|
537
|
+
"name": "maxFeePerGas",
|
538
|
+
"type": "uint256"
|
539
|
+
},
|
540
|
+
{
|
541
|
+
"internalType": "address",
|
542
|
+
"name": "to",
|
543
|
+
"type": "address"
|
544
|
+
},
|
545
|
+
{
|
546
|
+
"internalType": "uint256",
|
547
|
+
"name": "value",
|
548
|
+
"type": "uint256"
|
549
|
+
},
|
550
|
+
{
|
551
|
+
"internalType": "bytes",
|
552
|
+
"name": "data",
|
553
|
+
"type": "bytes"
|
554
|
+
}
|
555
|
+
],
|
556
|
+
"name": "sendContractTransaction",
|
557
|
+
"outputs": [
|
558
|
+
{
|
559
|
+
"internalType": "uint256",
|
560
|
+
"name": "",
|
561
|
+
"type": "uint256"
|
562
|
+
}
|
563
|
+
],
|
564
|
+
"stateMutability": "nonpayable",
|
565
|
+
"type": "function"
|
566
|
+
},
|
567
|
+
{
|
568
|
+
"inputs": [
|
569
|
+
{
|
570
|
+
"internalType": "uint256",
|
571
|
+
"name": "gasLimit",
|
572
|
+
"type": "uint256"
|
573
|
+
},
|
574
|
+
{
|
575
|
+
"internalType": "uint256",
|
576
|
+
"name": "maxFeePerGas",
|
577
|
+
"type": "uint256"
|
578
|
+
},
|
579
|
+
{
|
580
|
+
"internalType": "address",
|
581
|
+
"name": "to",
|
582
|
+
"type": "address"
|
583
|
+
},
|
584
|
+
{
|
585
|
+
"internalType": "bytes",
|
586
|
+
"name": "data",
|
587
|
+
"type": "bytes"
|
588
|
+
}
|
589
|
+
],
|
590
|
+
"name": "sendL1FundedContractTransaction",
|
591
|
+
"outputs": [
|
592
|
+
{
|
593
|
+
"internalType": "uint256",
|
594
|
+
"name": "",
|
595
|
+
"type": "uint256"
|
596
|
+
}
|
597
|
+
],
|
598
|
+
"stateMutability": "payable",
|
599
|
+
"type": "function"
|
600
|
+
},
|
601
|
+
{
|
602
|
+
"inputs": [
|
603
|
+
{
|
604
|
+
"internalType": "uint256",
|
605
|
+
"name": "gasLimit",
|
606
|
+
"type": "uint256"
|
607
|
+
},
|
608
|
+
{
|
609
|
+
"internalType": "uint256",
|
610
|
+
"name": "maxFeePerGas",
|
611
|
+
"type": "uint256"
|
612
|
+
},
|
613
|
+
{
|
614
|
+
"internalType": "uint256",
|
615
|
+
"name": "nonce",
|
616
|
+
"type": "uint256"
|
617
|
+
},
|
618
|
+
{
|
619
|
+
"internalType": "address",
|
620
|
+
"name": "to",
|
621
|
+
"type": "address"
|
622
|
+
},
|
623
|
+
{
|
624
|
+
"internalType": "bytes",
|
625
|
+
"name": "data",
|
626
|
+
"type": "bytes"
|
627
|
+
}
|
628
|
+
],
|
629
|
+
"name": "sendL1FundedUnsignedTransaction",
|
630
|
+
"outputs": [
|
631
|
+
{
|
632
|
+
"internalType": "uint256",
|
633
|
+
"name": "",
|
634
|
+
"type": "uint256"
|
635
|
+
}
|
636
|
+
],
|
637
|
+
"stateMutability": "payable",
|
638
|
+
"type": "function"
|
639
|
+
},
|
640
|
+
{
|
641
|
+
"inputs": [
|
642
|
+
{
|
643
|
+
"internalType": "uint256",
|
644
|
+
"name": "gasLimit",
|
645
|
+
"type": "uint256"
|
646
|
+
},
|
647
|
+
{
|
648
|
+
"internalType": "uint256",
|
649
|
+
"name": "maxFeePerGas",
|
650
|
+
"type": "uint256"
|
651
|
+
},
|
652
|
+
{
|
653
|
+
"internalType": "uint256",
|
654
|
+
"name": "nonce",
|
655
|
+
"type": "uint256"
|
656
|
+
},
|
657
|
+
{
|
658
|
+
"internalType": "address",
|
659
|
+
"name": "to",
|
660
|
+
"type": "address"
|
661
|
+
},
|
662
|
+
{
|
663
|
+
"internalType": "bytes",
|
664
|
+
"name": "data",
|
665
|
+
"type": "bytes"
|
666
|
+
}
|
667
|
+
],
|
668
|
+
"name": "sendL1FundedUnsignedTransactionToFork",
|
669
|
+
"outputs": [
|
670
|
+
{
|
671
|
+
"internalType": "uint256",
|
672
|
+
"name": "",
|
673
|
+
"type": "uint256"
|
674
|
+
}
|
675
|
+
],
|
676
|
+
"stateMutability": "payable",
|
677
|
+
"type": "function"
|
678
|
+
},
|
679
|
+
{
|
680
|
+
"inputs": [
|
681
|
+
{
|
682
|
+
"internalType": "bytes",
|
683
|
+
"name": "messageData",
|
684
|
+
"type": "bytes"
|
685
|
+
}
|
686
|
+
],
|
687
|
+
"name": "sendL2Message",
|
688
|
+
"outputs": [
|
689
|
+
{
|
690
|
+
"internalType": "uint256",
|
691
|
+
"name": "",
|
692
|
+
"type": "uint256"
|
693
|
+
}
|
694
|
+
],
|
695
|
+
"stateMutability": "nonpayable",
|
696
|
+
"type": "function"
|
697
|
+
},
|
698
|
+
{
|
699
|
+
"inputs": [
|
700
|
+
{
|
701
|
+
"internalType": "bytes",
|
702
|
+
"name": "messageData",
|
703
|
+
"type": "bytes"
|
704
|
+
}
|
705
|
+
],
|
706
|
+
"name": "sendL2MessageFromOrigin",
|
707
|
+
"outputs": [
|
708
|
+
{
|
709
|
+
"internalType": "uint256",
|
710
|
+
"name": "",
|
711
|
+
"type": "uint256"
|
712
|
+
}
|
713
|
+
],
|
714
|
+
"stateMutability": "nonpayable",
|
715
|
+
"type": "function"
|
716
|
+
},
|
717
|
+
{
|
718
|
+
"inputs": [
|
719
|
+
{
|
720
|
+
"internalType": "uint256",
|
721
|
+
"name": "gasLimit",
|
722
|
+
"type": "uint256"
|
723
|
+
},
|
724
|
+
{
|
725
|
+
"internalType": "uint256",
|
726
|
+
"name": "maxFeePerGas",
|
727
|
+
"type": "uint256"
|
728
|
+
},
|
729
|
+
{
|
730
|
+
"internalType": "uint256",
|
731
|
+
"name": "nonce",
|
732
|
+
"type": "uint256"
|
733
|
+
},
|
734
|
+
{
|
735
|
+
"internalType": "address",
|
736
|
+
"name": "to",
|
737
|
+
"type": "address"
|
738
|
+
},
|
739
|
+
{
|
740
|
+
"internalType": "uint256",
|
741
|
+
"name": "value",
|
742
|
+
"type": "uint256"
|
743
|
+
},
|
744
|
+
{
|
745
|
+
"internalType": "bytes",
|
746
|
+
"name": "data",
|
747
|
+
"type": "bytes"
|
748
|
+
}
|
749
|
+
],
|
750
|
+
"name": "sendUnsignedTransaction",
|
751
|
+
"outputs": [
|
752
|
+
{
|
753
|
+
"internalType": "uint256",
|
754
|
+
"name": "",
|
755
|
+
"type": "uint256"
|
756
|
+
}
|
757
|
+
],
|
758
|
+
"stateMutability": "nonpayable",
|
759
|
+
"type": "function"
|
760
|
+
},
|
761
|
+
{
|
762
|
+
"inputs": [
|
763
|
+
{
|
764
|
+
"internalType": "uint256",
|
765
|
+
"name": "gasLimit",
|
766
|
+
"type": "uint256"
|
767
|
+
},
|
768
|
+
{
|
769
|
+
"internalType": "uint256",
|
770
|
+
"name": "maxFeePerGas",
|
771
|
+
"type": "uint256"
|
772
|
+
},
|
773
|
+
{
|
774
|
+
"internalType": "uint256",
|
775
|
+
"name": "nonce",
|
776
|
+
"type": "uint256"
|
777
|
+
},
|
778
|
+
{
|
779
|
+
"internalType": "address",
|
780
|
+
"name": "to",
|
781
|
+
"type": "address"
|
782
|
+
},
|
783
|
+
{
|
784
|
+
"internalType": "uint256",
|
785
|
+
"name": "value",
|
786
|
+
"type": "uint256"
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"internalType": "bytes",
|
790
|
+
"name": "data",
|
791
|
+
"type": "bytes"
|
792
|
+
}
|
793
|
+
],
|
794
|
+
"name": "sendUnsignedTransactionToFork",
|
795
|
+
"outputs": [
|
796
|
+
{
|
797
|
+
"internalType": "uint256",
|
798
|
+
"name": "",
|
799
|
+
"type": "uint256"
|
800
|
+
}
|
801
|
+
],
|
802
|
+
"stateMutability": "nonpayable",
|
803
|
+
"type": "function"
|
804
|
+
},
|
805
|
+
{
|
806
|
+
"inputs": [
|
807
|
+
{
|
808
|
+
"internalType": "uint256",
|
809
|
+
"name": "gasLimit",
|
810
|
+
"type": "uint256"
|
811
|
+
},
|
812
|
+
{
|
813
|
+
"internalType": "uint256",
|
814
|
+
"name": "maxFeePerGas",
|
815
|
+
"type": "uint256"
|
816
|
+
},
|
817
|
+
{
|
818
|
+
"internalType": "uint256",
|
819
|
+
"name": "nonce",
|
820
|
+
"type": "uint256"
|
821
|
+
},
|
822
|
+
{
|
823
|
+
"internalType": "uint256",
|
824
|
+
"name": "value",
|
825
|
+
"type": "uint256"
|
826
|
+
},
|
827
|
+
{
|
828
|
+
"internalType": "address",
|
829
|
+
"name": "withdrawTo",
|
830
|
+
"type": "address"
|
831
|
+
}
|
832
|
+
],
|
833
|
+
"name": "sendWithdrawEthToFork",
|
834
|
+
"outputs": [
|
835
|
+
{
|
836
|
+
"internalType": "uint256",
|
837
|
+
"name": "",
|
838
|
+
"type": "uint256"
|
839
|
+
}
|
840
|
+
],
|
841
|
+
"stateMutability": "nonpayable",
|
842
|
+
"type": "function"
|
843
|
+
},
|
844
|
+
{
|
845
|
+
"inputs": [],
|
846
|
+
"name": "sequencerInbox",
|
847
|
+
"outputs": [
|
848
|
+
{
|
849
|
+
"internalType": "contract ISequencerInbox",
|
850
|
+
"name": "",
|
851
|
+
"type": "address"
|
852
|
+
}
|
853
|
+
],
|
854
|
+
"stateMutability": "view",
|
855
|
+
"type": "function"
|
856
|
+
},
|
857
|
+
{
|
858
|
+
"inputs": [
|
859
|
+
{
|
860
|
+
"internalType": "address[]",
|
861
|
+
"name": "user",
|
862
|
+
"type": "address[]"
|
863
|
+
},
|
864
|
+
{
|
865
|
+
"internalType": "bool[]",
|
866
|
+
"name": "val",
|
867
|
+
"type": "bool[]"
|
868
|
+
}
|
869
|
+
],
|
870
|
+
"name": "setAllowList",
|
871
|
+
"outputs": [],
|
872
|
+
"stateMutability": "nonpayable",
|
873
|
+
"type": "function"
|
874
|
+
},
|
875
|
+
{
|
876
|
+
"inputs": [
|
877
|
+
{
|
878
|
+
"internalType": "bool",
|
879
|
+
"name": "_allowListEnabled",
|
880
|
+
"type": "bool"
|
881
|
+
}
|
882
|
+
],
|
883
|
+
"name": "setAllowListEnabled",
|
884
|
+
"outputs": [],
|
885
|
+
"stateMutability": "nonpayable",
|
886
|
+
"type": "function"
|
887
|
+
},
|
888
|
+
{
|
889
|
+
"inputs": [
|
890
|
+
{
|
891
|
+
"internalType": "address",
|
892
|
+
"name": "to",
|
893
|
+
"type": "address"
|
894
|
+
},
|
895
|
+
{
|
896
|
+
"internalType": "uint256",
|
897
|
+
"name": "l2CallValue",
|
898
|
+
"type": "uint256"
|
899
|
+
},
|
900
|
+
{
|
901
|
+
"internalType": "uint256",
|
902
|
+
"name": "maxSubmissionCost",
|
903
|
+
"type": "uint256"
|
904
|
+
},
|
905
|
+
{
|
906
|
+
"internalType": "address",
|
907
|
+
"name": "excessFeeRefundAddress",
|
908
|
+
"type": "address"
|
909
|
+
},
|
910
|
+
{
|
911
|
+
"internalType": "address",
|
912
|
+
"name": "callValueRefundAddress",
|
913
|
+
"type": "address"
|
914
|
+
},
|
915
|
+
{
|
916
|
+
"internalType": "uint256",
|
917
|
+
"name": "gasLimit",
|
918
|
+
"type": "uint256"
|
919
|
+
},
|
920
|
+
{
|
921
|
+
"internalType": "uint256",
|
922
|
+
"name": "maxFeePerGas",
|
923
|
+
"type": "uint256"
|
924
|
+
},
|
925
|
+
{
|
926
|
+
"internalType": "bytes",
|
927
|
+
"name": "data",
|
928
|
+
"type": "bytes"
|
929
|
+
}
|
930
|
+
],
|
931
|
+
"name": "uniswapCreateRetryableTicket",
|
932
|
+
"outputs": [
|
933
|
+
{
|
934
|
+
"internalType": "uint256",
|
935
|
+
"name": "",
|
936
|
+
"type": "uint256"
|
937
|
+
}
|
938
|
+
],
|
939
|
+
"stateMutability": "payable",
|
940
|
+
"type": "function"
|
941
|
+
},
|
942
|
+
{
|
943
|
+
"inputs": [],
|
944
|
+
"name": "unpause",
|
945
|
+
"outputs": [],
|
946
|
+
"stateMutability": "nonpayable",
|
947
|
+
"type": "function"
|
948
|
+
},
|
949
|
+
{
|
950
|
+
"inputs": [
|
951
|
+
{
|
952
|
+
"internalType": "address",
|
953
|
+
"name": "to",
|
954
|
+
"type": "address"
|
955
|
+
},
|
956
|
+
{
|
957
|
+
"internalType": "uint256",
|
958
|
+
"name": "l2CallValue",
|
959
|
+
"type": "uint256"
|
960
|
+
},
|
961
|
+
{
|
962
|
+
"internalType": "uint256",
|
963
|
+
"name": "maxSubmissionCost",
|
964
|
+
"type": "uint256"
|
965
|
+
},
|
966
|
+
{
|
967
|
+
"internalType": "address",
|
968
|
+
"name": "excessFeeRefundAddress",
|
969
|
+
"type": "address"
|
970
|
+
},
|
971
|
+
{
|
972
|
+
"internalType": "address",
|
973
|
+
"name": "callValueRefundAddress",
|
974
|
+
"type": "address"
|
975
|
+
},
|
976
|
+
{
|
977
|
+
"internalType": "uint256",
|
978
|
+
"name": "gasLimit",
|
979
|
+
"type": "uint256"
|
980
|
+
},
|
981
|
+
{
|
982
|
+
"internalType": "uint256",
|
983
|
+
"name": "maxFeePerGas",
|
984
|
+
"type": "uint256"
|
985
|
+
},
|
986
|
+
{
|
987
|
+
"internalType": "bytes",
|
988
|
+
"name": "data",
|
989
|
+
"type": "bytes"
|
990
|
+
}
|
991
|
+
],
|
992
|
+
"name": "unsafeCreateRetryableTicket",
|
993
|
+
"outputs": [
|
994
|
+
{
|
995
|
+
"internalType": "uint256",
|
996
|
+
"name": "",
|
997
|
+
"type": "uint256"
|
998
|
+
}
|
999
|
+
],
|
1000
|
+
"stateMutability": "payable",
|
1001
|
+
"type": "function"
|
1002
|
+
}
|
1003
|
+
],
|
1004
|
+
"bytecode": "0x60c0604052306080524660a05234801561001857600080fd5b5060805160a0516129f46100456000396000611d7c015260008181610d8e015261176801526129f46000f3fe60806040526004361061016b5760003560e01c806367ef3ab8116100cc578063babcc5391161007a578063babcc53914610385578063c474d2c5146103b5578063e3de72a5146103d5578063e6bd12cf146103f5578063e78cea9214610408578063ee35f32714610435578063efeadb6d1461045557600080fd5b806367ef3ab8146102ca5780636e6e8a6a146102dd57806370665f14146102f05780638456cb59146103105780638a631aa614610325578063a66b327d14610345578063b75436bb1461036557600080fd5b80633f4ba83a116101295780633f4ba83a1461022d578063439370b114610244578063485cc9551461024c5780635075788b1461026c5780635c975abb1461028c5780635e916758146102a4578063679b6ded146102b757600080fd5b8062f72382146101705780630f4d14e9146101a35780631b871c8d146101b65780631cb763d2146101c95780631fe927cf146101dc57806322bd5c1c146101fc575b600080fd5b34801561017c57600080fd5b5061019061018b3660046120b4565b610475565b6040519081526020015b60405180910390f35b6101906101b1366004612130565b6105b6565b6101906101c4366004612149565b61063a565b6101906101d7366004612149565b6106cd565b3480156101e857600080fd5b506101906101f73660046121ed565b610982565b34801561020857600080fd5b5060665461021d90600160a01b900460ff1681565b604051901515815260200161019a565b34801561023957600080fd5b50610242610ac6565b005b610190610c06565b34801561025857600080fd5b5061024261026736600461222e565b610cdb565b34801561027857600080fd5b506101906102873660046120b4565b610e24565b34801561029857600080fd5b5060335460ff1661021d565b6101906102b2366004612267565b610eef565b6101906102c5366004612149565b610fc2565b6101906102d83660046122d0565b6110af565b6101906102eb366004612149565b611185565b3480156102fc57600080fd5b5061019061030b366004612342565b6112e6565b34801561031c57600080fd5b50610242611443565b34801561033157600080fd5b5061019061034036600461238f565b611580565b34801561035157600080fd5b506101906103603660046123e3565b611649565b34801561037157600080fd5b506101906103803660046121ed565b611681565b34801561039157600080fd5b5061021d6103a0366004612405565b60676020526000908152604090205460ff1681565b3480156103c157600080fd5b506102426103d0366004612405565b61175d565b3480156103e157600080fd5b506102426103f036600461250d565b611803565b6101906104033660046122d0565b611a83565b34801561041457600080fd5b50606554610428906001600160a01b031681565b60405161019a91906125ce565b34801561044157600080fd5b50606654610428906001600160a01b031681565b34801561046157600080fd5b506102426104703660046125e2565b611b9b565b600061048360335460ff1690565b156104a95760405162461bcd60e51b81526004016104a0906125fd565b60405180910390fd5b606654600160a01b900460ff1680156104d257503260009081526067602052604090205460ff16155b156104f25732604051630f51ed7160e41b81526004016104a091906125ce565b6104fa611d7a565b61051757604051635180dd8360e11b815260040160405180910390fd5b3332146105375760405163feb3d07160e01b815260040160405180910390fd5b6001600160401b0388111561055f5760405163107c527b60e01b815260040160405180910390fd5b6105aa600361056d33611da1565b60008b8b8b8b6001600160a01b03168b8b8b604051602001610596989796959493929190612627565b604051602081830303815290604052611db0565b98975050505050505050565b60006105c460335460ff1690565b156105e15760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff16801561060a57503260009081526067602052604090205460ff16155b1561062a5732604051630f51ed7160e41b81526004016104a091906125ce565b610632610c06565b90505b919050565b600061064860335460ff1690565b156106655760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff16801561068e57503260009081526067602052604090205460ff16155b156106ae5732604051630f51ed7160e41b81526004016104a091906125ce565b6106bf8a8a8a8a8a8a8a8a8a611185565b9a9950505050505050505050565b60006106db60335460ff1690565b156106f85760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff16801561072157503260009081526067602052604090205460ff16155b156107415732604051630f51ed7160e41b81526004016104a091906125ce565b33731a9c8182c09f50c8318d769245bea52c32be35bc1461079e5760405162461bcd60e51b81526020600482015260176024820152764e4f545f554e49535741505f4c315f54494d454c4f434b60481b60448201526064016104a0565b6001600160a01b038a16731f98431c8ad98523631ae4a59f267346ea31f984146108065760405162461bcd60e51b81526020600482015260196024820152784e4f545f544f5f554e49535741505f4c325f464143544f525960381b60448201526064016104a0565b6108108486612683565b61081a8a8a6126a2565b61082491906126a2565b34101561086c576108358486612683565b61083f8a8a6126a2565b61084991906126a2565b604051631c102d6360e21b815260048101919091523460248201526044016104a0565b61087587611e3c565b156108895761111161111160901b01870196505b61089286611e3c565b156108a65761111161111160901b01860195505b84600114806108b55750836001145b156108e957338a8a348b8b8b8b8b8b8b6040516307c266e360e01b81526004016104a09b9a999897969594939291906126ba565b60006108f58348611649565b90508089101561092257604051637d6f91c560e11b815260048101829052602481018a90526044016104a0565b610973600961093033611da1565b8d6001600160a01b03168d348e8e6001600160a01b03168e6001600160a01b03168e8e8e8e90508f8f6040516020016105969b9a99989796959493929190612743565b9b9a5050505050505050505050565b600061099060335460ff1690565b156109ad5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff1680156109d657503260009081526067602052604090205460ff16155b156109f65732604051630f51ed7160e41b81526004016104a091906125ce565b6109fe611d7a565b15610a1c5760405163c6ea680360e01b815260040160405180910390fd5b333214610a3c5760405163feb3d07160e01b815260040160405180910390fd5b6201cccc821115610a6c57604051634634691b60e01b8152600481018390526201cccc60248201526044016104a0565b6000610a916003338686604051610a8492919061279d565b6040518091039020611e4b565b60405190915081907fab532385be8f1005a4b6ba8fa20a2245facb346134ac739fe9a5198dc1580b9c90600090a29392505050565b6065546040805163cb23bcb560e01b815290516000926001600160a01b03169163cb23bcb5916004808301926020929190829003018186803b158015610b0b57600080fd5b505afa158015610b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4391906127ad565b9050336001600160a01b03821614610bfb576000816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b9057600080fd5b505afa158015610ba4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc891906127ad565b9050336001600160a01b03821614610bf957338282604051630739600760e01b81526004016104a0939291906127ca565b505b610c03611efd565b50565b6000610c1460335460ff1690565b15610c315760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff168015610c5a57503260009081526067602052604090205460ff16155b15610c7a5732604051630f51ed7160e41b81526004016104a091906125ce565b33610c8481611e3c565b80610c8f5750323314155b15610ca257503361111161111160901b01015b6040516bffffffffffffffffffffffff19606083901b166020820152346034820152610cd590600c903390605401610596565b91505090565b600054610100900460ff16610cf65760005460ff1615610cfe565b610cfe611f8a565b610d615760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016104a0565b600054610100900460ff16158015610d83576000805461ffff19166101011790555b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415610dcc5760405162461bcd60e51b81526004016104a0906127ed565b606580546001600160a01b038086166001600160a01b031990921691909117909155606680546001600160a81b031916918416919091179055610e0d611f9b565b8015610e1f576000805461ff00191690555b505050565b6000610e3260335460ff1690565b15610e4f5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff168015610e7857503260009081526067602052604090205460ff16155b15610e985732604051630f51ed7160e41b81526004016104a091906125ce565b6001600160401b03881115610ec05760405163107c527b60e01b815260040160405180910390fd5b6105aa60033360008b8b8b8b6001600160a01b03168b8b8b604051602001610596989796959493929190612627565b6000610efd60335460ff1690565b15610f1a5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff168015610f4357503260009081526067602052604090205460ff16155b15610f635732604051630f51ed7160e41b81526004016104a091906125ce565b6001600160401b03861115610f8b5760405163107c527b60e01b815260040160405180910390fd5b610fb860073360018989896001600160a01b0316348a8a6040516020016105969796959493929190612839565b9695505050505050565b6000610fd060335460ff1690565b15610fed5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff16801561101657503260009081526067602052604090205460ff16155b156110365732604051630f51ed7160e41b81526004016104a091906125ce565b6110408486612683565b61104a8a8a6126a2565b61105491906126a2565b341015611065576108358486612683565b61106e87611e3c565b156110825761111161111160901b01870196505b61108b86611e3c565b156106ae5761111161111160901b01860195506106bf8a8a8a8a8a8a8a8a8a611185565b60006110bd60335460ff1690565b156110da5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff16801561110357503260009081526067602052604090205460ff16155b156111235732604051630f51ed7160e41b81526004016104a091906125ce565b6001600160401b0387111561114b5760405163107c527b60e01b815260040160405180910390fd5b61117a60073360008a8a8a8a6001600160a01b0316348b8b604051602001610596989796959493929190612627565b979650505050505050565b600061119360335460ff1690565b156111b05760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff1680156111d957503260009081526067602052604090205460ff16155b156111f95732604051630f51ed7160e41b81526004016104a091906125ce565b84600114806112085750836001145b1561123c57338a8a348b8b8b8b8b8b8b6040516307c266e360e01b81526004016104a09b9a999897969594939291906126ba565b6001600160401b038511156112645760405163107c527b60e01b815260040160405180910390fd5b60006112708348611649565b90508089101561129d57604051637d6f91c560e11b815260048101829052602481018a90526044016104a0565b6109736009338d6001600160a01b03168d348e8e6001600160a01b03168e6001600160a01b03168e8e8e8e90508f8f6040516020016105969b9a99989796959493929190612743565b60006112f460335460ff1690565b156113115760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff16801561133a57503260009081526067602052604090205460ff16155b1561135a5732604051630f51ed7160e41b81526004016104a091906125ce565b611362611d7a565b61137f57604051635180dd8360e11b815260040160405180910390fd5b33321461139f5760405163feb3d07160e01b815260040160405180910390fd5b6001600160401b038611156113c75760405163107c527b60e01b815260040160405180910390fd5b610fb860036113d533611da1565b600089898960646001600160a01b03168a6325e1606360e01b8b6040516024016113ff91906125ce565b60408051601f19818403018152918152602080830180516001600160e01b03166001600160e01b0319909516949094179093525161059698979695949392016128a4565b6065546040805163cb23bcb560e01b815290516000926001600160a01b03169163cb23bcb5916004808301926020929190829003018186803b15801561148857600080fd5b505afa15801561149c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c091906127ad565b9050336001600160a01b03821614611578576000816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561150d57600080fd5b505afa158015611521573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154591906127ad565b9050336001600160a01b0382161461157657338282604051630739600760e01b81526004016104a0939291906127ca565b505b610c03611fcc565b600061158e60335460ff1690565b156115ab5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff1680156115d457503260009081526067602052604090205460ff16155b156115f45732604051630f51ed7160e41b81526004016104a091906125ce565b6001600160401b0387111561161c5760405163107c527b60e01b815260040160405180910390fd5b61117a60033360018a8a8a6001600160a01b03168a8a8a6040516020016105969796959493929190612839565b600081156116575781611659565b485b611664846006612683565b611670906105786126a2565b61167a9190612683565b9392505050565b600061168f60335460ff1690565b156116ac5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff1680156116d557503260009081526067602052604090205460ff16155b156116f55732604051630f51ed7160e41b81526004016104a091906125ce565b6116fd611d7a565b1561171b5760405163c6ea680360e01b815260040160405180910390fd5b61167a60033385858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611db092505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156117a65760405162461bcd60e51b81526004016104a0906127ed565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61038054336001600160a01b03821614610e1f57604051631194af8760e11b81523360048201526001600160a01b03821660248201526044016104a0565b6065546040805163cb23bcb560e01b815290516000926001600160a01b03169163cb23bcb5916004808301926020929190829003018186803b15801561184857600080fd5b505afa15801561185c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188091906127ad565b9050336001600160a01b03821614611938576000816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156118cd57600080fd5b505afa1580156118e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190591906127ad565b9050336001600160a01b0382161461193657338282604051630739600760e01b81526004016104a0939291906127ca565b505b81518351146119795760405162461bcd60e51b815260206004820152600d60248201526c1253959053125117d253941555609a1b60448201526064016104a0565b60005b8351811015611a7d57828181518110611997576119976128f6565b6020026020010151606760008684815181106119b5576119b56128f6565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550838181518110611a0657611a066128f6565b60200260200101516001600160a01b03167fd9739f45a01ce092c5cdb3d68f63d63d21676b1c6c0b4f9cbc6be4cf5449595a848381518110611a4a57611a4a6128f6565b6020026020010151604051611a63911515815260200190565b60405180910390a280611a758161290c565b91505061197c565b50505050565b6000611a9160335460ff1690565b15611aae5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff168015611ad757503260009081526067602052604090205460ff16155b15611af75732604051630f51ed7160e41b81526004016104a091906125ce565b611aff611d7a565b611b1c57604051635180dd8360e11b815260040160405180910390fd5b333214611b3c5760405163feb3d07160e01b815260040160405180910390fd5b6001600160401b03871115611b645760405163107c527b60e01b815260040160405180910390fd5b61117a6007611b7233611da1565b60008a8a8a8a6001600160a01b0316348b8b604051602001610596989796959493929190612627565b6065546040805163cb23bcb560e01b815290516000926001600160a01b03169163cb23bcb5916004808301926020929190829003018186803b158015611be057600080fd5b505afa158015611bf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c1891906127ad565b9050336001600160a01b03821614611cd0576000816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c6557600080fd5b505afa158015611c79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9d91906127ad565b9050336001600160a01b03821614611cce57338282604051630739600760e01b81526004016104a0939291906127ca565b505b606660149054906101000a900460ff1615158215151415611d215760405162461bcd60e51b815260206004820152600b60248201526a1053149150511657d4d15560aa1b60448201526064016104a0565b60668054831515600160a01b0260ff60a01b199091161790556040517f16435b45f7482047f839a6a19d291442627200f52cad2803c595150d0d440eb390611d6e90841515815260200190565b60405180910390a15050565b7f000000000000000000000000000000000000000000000000000000000000000046141590565b61111061111160901b01190190565b60006201cccc82511115611de6578151604051634634691b60e01b815260048101919091526201cccc60248201526044016104a0565b6000611dfa85858580519060200120611e4b565b9050807fff64905f73a67fb594e0f940a8075a860db489ad991e032f48c81123eb52d60b84604051611e2c9190612927565b60405180910390a2949350505050565b6001600160a01b03163b151590565b6065546000906001600160a01b0316638db5993b348661111161111160901b0187016040516001600160e01b031960e086901b16815260ff90921660048301526001600160a01b03166024820152604481018690526064016020604051808303818588803b158015611ebc57600080fd5b505af1158015611ed0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611ef5919061295a565b949350505050565b60335460ff16611f465760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016104a0565b6033805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b604051611f8091906125ce565b60405180910390a1565b6000611f9530611e3c565b15905090565b600054610100900460ff16611fc25760405162461bcd60e51b81526004016104a090612973565b611fca612024565b565b60335460ff1615611fef5760405162461bcd60e51b81526004016104a0906125fd565b6033805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f733390565b600054610100900460ff1661204b5760405162461bcd60e51b81526004016104a090612973565b6033805460ff19169055565b6001600160a01b0381168114610c0357600080fd5b60008083601f84011261207e57600080fd5b5081356001600160401b0381111561209557600080fd5b6020830191508360208285010111156120ad57600080fd5b9250929050565b600080600080600080600060c0888a0312156120cf57600080fd5b87359650602088013595506040880135945060608801356120ef81612057565b93506080880135925060a08801356001600160401b0381111561211157600080fd5b61211d8a828b0161206c565b989b979a50959850939692959293505050565b60006020828403121561214257600080fd5b5035919050565b60008060008060008060008060006101008a8c03121561216857600080fd5b893561217381612057565b985060208a0135975060408a0135965060608a013561219181612057565b955060808a01356121a181612057565b945060a08a0135935060c08a0135925060e08a01356001600160401b038111156121ca57600080fd5b6121d68c828d0161206c565b915080935050809150509295985092959850929598565b6000806020838503121561220057600080fd5b82356001600160401b0381111561221657600080fd5b6122228582860161206c565b90969095509350505050565b6000806040838503121561224157600080fd5b823561224c81612057565b9150602083013561225c81612057565b809150509250929050565b60008060008060006080868803121561227f57600080fd5b8535945060208601359350604086013561229881612057565b925060608601356001600160401b038111156122b357600080fd5b6122bf8882890161206c565b969995985093965092949392505050565b60008060008060008060a087890312156122e957600080fd5b863595506020870135945060408701359350606087013561230981612057565b925060808701356001600160401b0381111561232457600080fd5b61233089828a0161206c565b979a9699509497509295939492505050565b600080600080600060a0868803121561235a57600080fd5b85359450602086013593506040860135925060608601359150608086013561238181612057565b809150509295509295909350565b60008060008060008060a087890312156123a857600080fd5b863595506020870135945060408701356123c181612057565b93506060870135925060808701356001600160401b0381111561232457600080fd5b600080604083850312156123f657600080fd5b50508035926020909101359150565b60006020828403121561241757600080fd5b813561167a81612057565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561246057612460612422565b604052919050565b60006001600160401b0382111561248157612481612422565b5060051b60200190565b8035801515811461063557600080fd5b600082601f8301126124ac57600080fd5b813560206124c16124bc83612468565b612438565b82815260059290921b840181019181810190868411156124e057600080fd5b8286015b84811015612502576124f58161248b565b83529183019183016124e4565b509695505050505050565b6000806040838503121561252057600080fd5b82356001600160401b038082111561253757600080fd5b818501915085601f83011261254b57600080fd5b8135602061255b6124bc83612468565b82815260059290921b8401810191818101908984111561257a57600080fd5b948201945b838610156125a157853561259281612057565b8252948201949082019061257f565b965050860135925050808211156125b757600080fd5b506125c48582860161249b565b9150509250929050565b6001600160a01b0391909116815260200190565b6000602082840312156125f457600080fd5b61167a8261248b565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60ff60f81b8960f81b168152876001820152866021820152856041820152846061820152836081820152818360a18301376000910160a101908152979650505050505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561269d5761269d61266d565b500290565b600082198211156126b5576126b561266d565b500190565b6001600160a01b038c811682528b81166020830152604082018b9052606082018a90526080820189905287811660a0830152861660c082015260e0810185905261010081018490526101406101208201819052810182905260006101608385828501376000838501820152601f909301601f19169091019091019b9a5050505050505050505050565b8b81528a60208201528960408201528860608201528760808201528660a08201528560c08201528460e08201528361010082015260006101208385828501376000929093019092019081529b9a5050505050505050505050565b8183823760009101908152919050565b6000602082840312156127bf57600080fd5b815161167a81612057565b6001600160a01b0393841681529183166020830152909116604082015260600190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b60ff60f81b8860f81b16815286600182015285602182015284604182015283606182015281836081830137600091016081019081529695505050505050565b60005b8381101561289357818101518382015260200161287b565b83811115611a7d5750506000910152565b60ff60f81b8860f81b168152866001820152856021820152846041820152836061820152826081820152600082516128e38160a1850160208701612878565b9190910160a10198975050505050505050565b634e487b7160e01b600052603260045260246000fd5b60006000198214156129205761292061266d565b5060010190565b6020815260008251806020840152612946816040850160208701612878565b601f01601f19169190910160400192915050565b60006020828403121561296c57600080fd5b5051919050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea264697066735822122056914c758fb8b7a557c0165eeaa5550909502372c2d1824543d32ee0fb9497bd64736f6c63430008090033",
|
1005
|
+
"deployedBytecode": "0x60806040526004361061016b5760003560e01c806367ef3ab8116100cc578063babcc5391161007a578063babcc53914610385578063c474d2c5146103b5578063e3de72a5146103d5578063e6bd12cf146103f5578063e78cea9214610408578063ee35f32714610435578063efeadb6d1461045557600080fd5b806367ef3ab8146102ca5780636e6e8a6a146102dd57806370665f14146102f05780638456cb59146103105780638a631aa614610325578063a66b327d14610345578063b75436bb1461036557600080fd5b80633f4ba83a116101295780633f4ba83a1461022d578063439370b114610244578063485cc9551461024c5780635075788b1461026c5780635c975abb1461028c5780635e916758146102a4578063679b6ded146102b757600080fd5b8062f72382146101705780630f4d14e9146101a35780631b871c8d146101b65780631cb763d2146101c95780631fe927cf146101dc57806322bd5c1c146101fc575b600080fd5b34801561017c57600080fd5b5061019061018b3660046120b4565b610475565b6040519081526020015b60405180910390f35b6101906101b1366004612130565b6105b6565b6101906101c4366004612149565b61063a565b6101906101d7366004612149565b6106cd565b3480156101e857600080fd5b506101906101f73660046121ed565b610982565b34801561020857600080fd5b5060665461021d90600160a01b900460ff1681565b604051901515815260200161019a565b34801561023957600080fd5b50610242610ac6565b005b610190610c06565b34801561025857600080fd5b5061024261026736600461222e565b610cdb565b34801561027857600080fd5b506101906102873660046120b4565b610e24565b34801561029857600080fd5b5060335460ff1661021d565b6101906102b2366004612267565b610eef565b6101906102c5366004612149565b610fc2565b6101906102d83660046122d0565b6110af565b6101906102eb366004612149565b611185565b3480156102fc57600080fd5b5061019061030b366004612342565b6112e6565b34801561031c57600080fd5b50610242611443565b34801561033157600080fd5b5061019061034036600461238f565b611580565b34801561035157600080fd5b506101906103603660046123e3565b611649565b34801561037157600080fd5b506101906103803660046121ed565b611681565b34801561039157600080fd5b5061021d6103a0366004612405565b60676020526000908152604090205460ff1681565b3480156103c157600080fd5b506102426103d0366004612405565b61175d565b3480156103e157600080fd5b506102426103f036600461250d565b611803565b6101906104033660046122d0565b611a83565b34801561041457600080fd5b50606554610428906001600160a01b031681565b60405161019a91906125ce565b34801561044157600080fd5b50606654610428906001600160a01b031681565b34801561046157600080fd5b506102426104703660046125e2565b611b9b565b600061048360335460ff1690565b156104a95760405162461bcd60e51b81526004016104a0906125fd565b60405180910390fd5b606654600160a01b900460ff1680156104d257503260009081526067602052604090205460ff16155b156104f25732604051630f51ed7160e41b81526004016104a091906125ce565b6104fa611d7a565b61051757604051635180dd8360e11b815260040160405180910390fd5b3332146105375760405163feb3d07160e01b815260040160405180910390fd5b6001600160401b0388111561055f5760405163107c527b60e01b815260040160405180910390fd5b6105aa600361056d33611da1565b60008b8b8b8b6001600160a01b03168b8b8b604051602001610596989796959493929190612627565b604051602081830303815290604052611db0565b98975050505050505050565b60006105c460335460ff1690565b156105e15760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff16801561060a57503260009081526067602052604090205460ff16155b1561062a5732604051630f51ed7160e41b81526004016104a091906125ce565b610632610c06565b90505b919050565b600061064860335460ff1690565b156106655760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff16801561068e57503260009081526067602052604090205460ff16155b156106ae5732604051630f51ed7160e41b81526004016104a091906125ce565b6106bf8a8a8a8a8a8a8a8a8a611185565b9a9950505050505050505050565b60006106db60335460ff1690565b156106f85760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff16801561072157503260009081526067602052604090205460ff16155b156107415732604051630f51ed7160e41b81526004016104a091906125ce565b33731a9c8182c09f50c8318d769245bea52c32be35bc1461079e5760405162461bcd60e51b81526020600482015260176024820152764e4f545f554e49535741505f4c315f54494d454c4f434b60481b60448201526064016104a0565b6001600160a01b038a16731f98431c8ad98523631ae4a59f267346ea31f984146108065760405162461bcd60e51b81526020600482015260196024820152784e4f545f544f5f554e49535741505f4c325f464143544f525960381b60448201526064016104a0565b6108108486612683565b61081a8a8a6126a2565b61082491906126a2565b34101561086c576108358486612683565b61083f8a8a6126a2565b61084991906126a2565b604051631c102d6360e21b815260048101919091523460248201526044016104a0565b61087587611e3c565b156108895761111161111160901b01870196505b61089286611e3c565b156108a65761111161111160901b01860195505b84600114806108b55750836001145b156108e957338a8a348b8b8b8b8b8b8b6040516307c266e360e01b81526004016104a09b9a999897969594939291906126ba565b60006108f58348611649565b90508089101561092257604051637d6f91c560e11b815260048101829052602481018a90526044016104a0565b610973600961093033611da1565b8d6001600160a01b03168d348e8e6001600160a01b03168e6001600160a01b03168e8e8e8e90508f8f6040516020016105969b9a99989796959493929190612743565b9b9a5050505050505050505050565b600061099060335460ff1690565b156109ad5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff1680156109d657503260009081526067602052604090205460ff16155b156109f65732604051630f51ed7160e41b81526004016104a091906125ce565b6109fe611d7a565b15610a1c5760405163c6ea680360e01b815260040160405180910390fd5b333214610a3c5760405163feb3d07160e01b815260040160405180910390fd5b6201cccc821115610a6c57604051634634691b60e01b8152600481018390526201cccc60248201526044016104a0565b6000610a916003338686604051610a8492919061279d565b6040518091039020611e4b565b60405190915081907fab532385be8f1005a4b6ba8fa20a2245facb346134ac739fe9a5198dc1580b9c90600090a29392505050565b6065546040805163cb23bcb560e01b815290516000926001600160a01b03169163cb23bcb5916004808301926020929190829003018186803b158015610b0b57600080fd5b505afa158015610b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4391906127ad565b9050336001600160a01b03821614610bfb576000816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b9057600080fd5b505afa158015610ba4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc891906127ad565b9050336001600160a01b03821614610bf957338282604051630739600760e01b81526004016104a0939291906127ca565b505b610c03611efd565b50565b6000610c1460335460ff1690565b15610c315760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff168015610c5a57503260009081526067602052604090205460ff16155b15610c7a5732604051630f51ed7160e41b81526004016104a091906125ce565b33610c8481611e3c565b80610c8f5750323314155b15610ca257503361111161111160901b01015b6040516bffffffffffffffffffffffff19606083901b166020820152346034820152610cd590600c903390605401610596565b91505090565b600054610100900460ff16610cf65760005460ff1615610cfe565b610cfe611f8a565b610d615760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016104a0565b600054610100900460ff16158015610d83576000805461ffff19166101011790555b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415610dcc5760405162461bcd60e51b81526004016104a0906127ed565b606580546001600160a01b038086166001600160a01b031990921691909117909155606680546001600160a81b031916918416919091179055610e0d611f9b565b8015610e1f576000805461ff00191690555b505050565b6000610e3260335460ff1690565b15610e4f5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff168015610e7857503260009081526067602052604090205460ff16155b15610e985732604051630f51ed7160e41b81526004016104a091906125ce565b6001600160401b03881115610ec05760405163107c527b60e01b815260040160405180910390fd5b6105aa60033360008b8b8b8b6001600160a01b03168b8b8b604051602001610596989796959493929190612627565b6000610efd60335460ff1690565b15610f1a5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff168015610f4357503260009081526067602052604090205460ff16155b15610f635732604051630f51ed7160e41b81526004016104a091906125ce565b6001600160401b03861115610f8b5760405163107c527b60e01b815260040160405180910390fd5b610fb860073360018989896001600160a01b0316348a8a6040516020016105969796959493929190612839565b9695505050505050565b6000610fd060335460ff1690565b15610fed5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff16801561101657503260009081526067602052604090205460ff16155b156110365732604051630f51ed7160e41b81526004016104a091906125ce565b6110408486612683565b61104a8a8a6126a2565b61105491906126a2565b341015611065576108358486612683565b61106e87611e3c565b156110825761111161111160901b01870196505b61108b86611e3c565b156106ae5761111161111160901b01860195506106bf8a8a8a8a8a8a8a8a8a611185565b60006110bd60335460ff1690565b156110da5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff16801561110357503260009081526067602052604090205460ff16155b156111235732604051630f51ed7160e41b81526004016104a091906125ce565b6001600160401b0387111561114b5760405163107c527b60e01b815260040160405180910390fd5b61117a60073360008a8a8a8a6001600160a01b0316348b8b604051602001610596989796959493929190612627565b979650505050505050565b600061119360335460ff1690565b156111b05760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff1680156111d957503260009081526067602052604090205460ff16155b156111f95732604051630f51ed7160e41b81526004016104a091906125ce565b84600114806112085750836001145b1561123c57338a8a348b8b8b8b8b8b8b6040516307c266e360e01b81526004016104a09b9a999897969594939291906126ba565b6001600160401b038511156112645760405163107c527b60e01b815260040160405180910390fd5b60006112708348611649565b90508089101561129d57604051637d6f91c560e11b815260048101829052602481018a90526044016104a0565b6109736009338d6001600160a01b03168d348e8e6001600160a01b03168e6001600160a01b03168e8e8e8e90508f8f6040516020016105969b9a99989796959493929190612743565b60006112f460335460ff1690565b156113115760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff16801561133a57503260009081526067602052604090205460ff16155b1561135a5732604051630f51ed7160e41b81526004016104a091906125ce565b611362611d7a565b61137f57604051635180dd8360e11b815260040160405180910390fd5b33321461139f5760405163feb3d07160e01b815260040160405180910390fd5b6001600160401b038611156113c75760405163107c527b60e01b815260040160405180910390fd5b610fb860036113d533611da1565b600089898960646001600160a01b03168a6325e1606360e01b8b6040516024016113ff91906125ce565b60408051601f19818403018152918152602080830180516001600160e01b03166001600160e01b0319909516949094179093525161059698979695949392016128a4565b6065546040805163cb23bcb560e01b815290516000926001600160a01b03169163cb23bcb5916004808301926020929190829003018186803b15801561148857600080fd5b505afa15801561149c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c091906127ad565b9050336001600160a01b03821614611578576000816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561150d57600080fd5b505afa158015611521573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154591906127ad565b9050336001600160a01b0382161461157657338282604051630739600760e01b81526004016104a0939291906127ca565b505b610c03611fcc565b600061158e60335460ff1690565b156115ab5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff1680156115d457503260009081526067602052604090205460ff16155b156115f45732604051630f51ed7160e41b81526004016104a091906125ce565b6001600160401b0387111561161c5760405163107c527b60e01b815260040160405180910390fd5b61117a60033360018a8a8a6001600160a01b03168a8a8a6040516020016105969796959493929190612839565b600081156116575781611659565b485b611664846006612683565b611670906105786126a2565b61167a9190612683565b9392505050565b600061168f60335460ff1690565b156116ac5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff1680156116d557503260009081526067602052604090205460ff16155b156116f55732604051630f51ed7160e41b81526004016104a091906125ce565b6116fd611d7a565b1561171b5760405163c6ea680360e01b815260040160405180910390fd5b61167a60033385858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611db092505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156117a65760405162461bcd60e51b81526004016104a0906127ed565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61038054336001600160a01b03821614610e1f57604051631194af8760e11b81523360048201526001600160a01b03821660248201526044016104a0565b6065546040805163cb23bcb560e01b815290516000926001600160a01b03169163cb23bcb5916004808301926020929190829003018186803b15801561184857600080fd5b505afa15801561185c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188091906127ad565b9050336001600160a01b03821614611938576000816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156118cd57600080fd5b505afa1580156118e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190591906127ad565b9050336001600160a01b0382161461193657338282604051630739600760e01b81526004016104a0939291906127ca565b505b81518351146119795760405162461bcd60e51b815260206004820152600d60248201526c1253959053125117d253941555609a1b60448201526064016104a0565b60005b8351811015611a7d57828181518110611997576119976128f6565b6020026020010151606760008684815181106119b5576119b56128f6565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550838181518110611a0657611a066128f6565b60200260200101516001600160a01b03167fd9739f45a01ce092c5cdb3d68f63d63d21676b1c6c0b4f9cbc6be4cf5449595a848381518110611a4a57611a4a6128f6565b6020026020010151604051611a63911515815260200190565b60405180910390a280611a758161290c565b91505061197c565b50505050565b6000611a9160335460ff1690565b15611aae5760405162461bcd60e51b81526004016104a0906125fd565b606654600160a01b900460ff168015611ad757503260009081526067602052604090205460ff16155b15611af75732604051630f51ed7160e41b81526004016104a091906125ce565b611aff611d7a565b611b1c57604051635180dd8360e11b815260040160405180910390fd5b333214611b3c5760405163feb3d07160e01b815260040160405180910390fd5b6001600160401b03871115611b645760405163107c527b60e01b815260040160405180910390fd5b61117a6007611b7233611da1565b60008a8a8a8a6001600160a01b0316348b8b604051602001610596989796959493929190612627565b6065546040805163cb23bcb560e01b815290516000926001600160a01b03169163cb23bcb5916004808301926020929190829003018186803b158015611be057600080fd5b505afa158015611bf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c1891906127ad565b9050336001600160a01b03821614611cd0576000816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c6557600080fd5b505afa158015611c79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9d91906127ad565b9050336001600160a01b03821614611cce57338282604051630739600760e01b81526004016104a0939291906127ca565b505b606660149054906101000a900460ff1615158215151415611d215760405162461bcd60e51b815260206004820152600b60248201526a1053149150511657d4d15560aa1b60448201526064016104a0565b60668054831515600160a01b0260ff60a01b199091161790556040517f16435b45f7482047f839a6a19d291442627200f52cad2803c595150d0d440eb390611d6e90841515815260200190565b60405180910390a15050565b7f000000000000000000000000000000000000000000000000000000000000000046141590565b61111061111160901b01190190565b60006201cccc82511115611de6578151604051634634691b60e01b815260048101919091526201cccc60248201526044016104a0565b6000611dfa85858580519060200120611e4b565b9050807fff64905f73a67fb594e0f940a8075a860db489ad991e032f48c81123eb52d60b84604051611e2c9190612927565b60405180910390a2949350505050565b6001600160a01b03163b151590565b6065546000906001600160a01b0316638db5993b348661111161111160901b0187016040516001600160e01b031960e086901b16815260ff90921660048301526001600160a01b03166024820152604481018690526064016020604051808303818588803b158015611ebc57600080fd5b505af1158015611ed0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611ef5919061295a565b949350505050565b60335460ff16611f465760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016104a0565b6033805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b604051611f8091906125ce565b60405180910390a1565b6000611f9530611e3c565b15905090565b600054610100900460ff16611fc25760405162461bcd60e51b81526004016104a090612973565b611fca612024565b565b60335460ff1615611fef5760405162461bcd60e51b81526004016104a0906125fd565b6033805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f733390565b600054610100900460ff1661204b5760405162461bcd60e51b81526004016104a090612973565b6033805460ff19169055565b6001600160a01b0381168114610c0357600080fd5b60008083601f84011261207e57600080fd5b5081356001600160401b0381111561209557600080fd5b6020830191508360208285010111156120ad57600080fd5b9250929050565b600080600080600080600060c0888a0312156120cf57600080fd5b87359650602088013595506040880135945060608801356120ef81612057565b93506080880135925060a08801356001600160401b0381111561211157600080fd5b61211d8a828b0161206c565b989b979a50959850939692959293505050565b60006020828403121561214257600080fd5b5035919050565b60008060008060008060008060006101008a8c03121561216857600080fd5b893561217381612057565b985060208a0135975060408a0135965060608a013561219181612057565b955060808a01356121a181612057565b945060a08a0135935060c08a0135925060e08a01356001600160401b038111156121ca57600080fd5b6121d68c828d0161206c565b915080935050809150509295985092959850929598565b6000806020838503121561220057600080fd5b82356001600160401b0381111561221657600080fd5b6122228582860161206c565b90969095509350505050565b6000806040838503121561224157600080fd5b823561224c81612057565b9150602083013561225c81612057565b809150509250929050565b60008060008060006080868803121561227f57600080fd5b8535945060208601359350604086013561229881612057565b925060608601356001600160401b038111156122b357600080fd5b6122bf8882890161206c565b969995985093965092949392505050565b60008060008060008060a087890312156122e957600080fd5b863595506020870135945060408701359350606087013561230981612057565b925060808701356001600160401b0381111561232457600080fd5b61233089828a0161206c565b979a9699509497509295939492505050565b600080600080600060a0868803121561235a57600080fd5b85359450602086013593506040860135925060608601359150608086013561238181612057565b809150509295509295909350565b60008060008060008060a087890312156123a857600080fd5b863595506020870135945060408701356123c181612057565b93506060870135925060808701356001600160401b0381111561232457600080fd5b600080604083850312156123f657600080fd5b50508035926020909101359150565b60006020828403121561241757600080fd5b813561167a81612057565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561246057612460612422565b604052919050565b60006001600160401b0382111561248157612481612422565b5060051b60200190565b8035801515811461063557600080fd5b600082601f8301126124ac57600080fd5b813560206124c16124bc83612468565b612438565b82815260059290921b840181019181810190868411156124e057600080fd5b8286015b84811015612502576124f58161248b565b83529183019183016124e4565b509695505050505050565b6000806040838503121561252057600080fd5b82356001600160401b038082111561253757600080fd5b818501915085601f83011261254b57600080fd5b8135602061255b6124bc83612468565b82815260059290921b8401810191818101908984111561257a57600080fd5b948201945b838610156125a157853561259281612057565b8252948201949082019061257f565b965050860135925050808211156125b757600080fd5b506125c48582860161249b565b9150509250929050565b6001600160a01b0391909116815260200190565b6000602082840312156125f457600080fd5b61167a8261248b565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60ff60f81b8960f81b168152876001820152866021820152856041820152846061820152836081820152818360a18301376000910160a101908152979650505050505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561269d5761269d61266d565b500290565b600082198211156126b5576126b561266d565b500190565b6001600160a01b038c811682528b81166020830152604082018b9052606082018a90526080820189905287811660a0830152861660c082015260e0810185905261010081018490526101406101208201819052810182905260006101608385828501376000838501820152601f909301601f19169091019091019b9a5050505050505050505050565b8b81528a60208201528960408201528860608201528760808201528660a08201528560c08201528460e08201528361010082015260006101208385828501376000929093019092019081529b9a5050505050505050505050565b8183823760009101908152919050565b6000602082840312156127bf57600080fd5b815161167a81612057565b6001600160a01b0393841681529183166020830152909116604082015260600190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b60ff60f81b8860f81b16815286600182015285602182015284604182015283606182015281836081830137600091016081019081529695505050505050565b60005b8381101561289357818101518382015260200161287b565b83811115611a7d5750506000910152565b60ff60f81b8860f81b168152866001820152856021820152846041820152836061820152826081820152600082516128e38160a1850160208701612878565b9190910160a10198975050505050505050565b634e487b7160e01b600052603260045260246000fd5b60006000198214156129205761292061266d565b5060010190565b6020815260008251806020840152612946816040850160208701612878565b601f01601f19169190910160400192915050565b60006020828403121561296c57600080fd5b5051919050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea264697066735822122056914c758fb8b7a557c0165eeaa5550909502372c2d1824543d32ee0fb9497bd64736f6c63430008090033",
|
1006
|
+
"linkReferences": {},
|
1007
|
+
"deployedLinkReferences": {}
|
1008
|
+
}
|