Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 302 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer Funds | 13153936 | 1255 days ago | IN | 0 ETH | 0.00677531 | ||||
Admin Pause Tran... | 13012234 | 1277 days ago | IN | 0 ETH | 0.00163828 | ||||
Grant Role | 13012223 | 1277 days ago | IN | 0 ETH | 0.00260514 | ||||
Admin Withdraw | 13011582 | 1277 days ago | IN | 0 ETH | 0.00885398 | ||||
Admin Withdraw | 13011581 | 1277 days ago | IN | 0 ETH | 0.01020873 | ||||
Admin Withdraw | 13011578 | 1277 days ago | IN | 0 ETH | 0.00941253 | ||||
Admin Withdraw | 13011577 | 1277 days ago | IN | 0 ETH | 0.00886215 | ||||
Admin Withdraw | 13011577 | 1277 days ago | IN | 0 ETH | 0.00923836 | ||||
Admin Withdraw | 13011549 | 1277 days ago | IN | 0 ETH | 0.00300897 | ||||
Admin Withdraw | 13011549 | 1277 days ago | IN | 0 ETH | 0.00287315 | ||||
Admin Withdraw | 13011549 | 1277 days ago | IN | 0 ETH | 0.0026919 | ||||
Admin Withdraw | 13011549 | 1277 days ago | IN | 0 ETH | 0.00338879 | ||||
Admin Withdraw | 13011549 | 1277 days ago | IN | 0 ETH | 0.00375621 | ||||
Admin Withdraw | 13011542 | 1277 days ago | IN | 0 ETH | 0.00267898 | ||||
Admin Withdraw | 13011526 | 1277 days ago | IN | 0 ETH | 0.00288759 | ||||
Admin Withdraw | 13011514 | 1277 days ago | IN | 0 ETH | 0.00315963 | ||||
Admin Withdraw | 12973388 | 1283 days ago | IN | 0 ETH | 0.00307797 | ||||
Vote Proposal | 12968285 | 1284 days ago | IN | 0 ETH | 0.01219024 | ||||
Vote Proposal | 12968285 | 1284 days ago | IN | 0 ETH | 0.01219086 | ||||
Admin Withdraw | 12968152 | 1284 days ago | IN | 0 ETH | 0.00229128 | ||||
Admin Set Burnab... | 12968080 | 1284 days ago | IN | 0 ETH | 0.00104837 | ||||
Admin Set Burnab... | 12968064 | 1284 days ago | IN | 0 ETH | 0.0010112 | ||||
Deposit | 12968032 | 1284 days ago | IN | 0.00402398 ETH | 0.00596676 | ||||
Deposit | 12968020 | 1284 days ago | IN | 0.00402398 ETH | 0.00621113 | ||||
Vote Proposal | 12967709 | 1284 days ago | IN | 0 ETH | 0.01357556 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
13153936 | 1255 days ago | 0.11855699 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Bridge
Compiler Version
v0.6.4+commit.1dca32f3
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity 0.6.4; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./utils/Pausable.sol"; import "./utils/SafeMath.sol"; import "./interfaces/IDepositExecute.sol"; import "./interfaces/IBridge.sol"; import "./interfaces/IERCHandler.sol"; import "./interfaces/IGenericHandler.sol"; /** @title Facilitates deposits, creation and votiing of deposit proposals, and deposit executions. @author ChainSafe Systems. */ contract Bridge is Pausable, AccessControl, SafeMath { uint8 public _chainID; uint256 public _relayerThreshold; uint256 public _totalRelayers; uint256 public _totalProposals; enum Vote {No, Yes} enum ProposalStatus {Inactive, Active, Executed} struct Proposal { bytes32 _resourceID; bytes32 _dataHash; address[] _yesVotes; address[] _noVotes; ProposalStatus _status; uint256 _proposedBlock; } // destinationChainID => number of deposits mapping(uint8 => uint64) public _depositCounts; // resourceID => handler address mapping(bytes32 => address) public _resourceIDToHandlerAddress; // destinationChainID + depositNonce => dataHash => Proposal mapping(uint72 => mapping(bytes32 => Proposal)) public _proposals; // destinationChainID + depositNonce => dataHash => relayerAddress => bool mapping(uint72 => mapping(bytes32 => mapping(address => bool))) public _hasVotedOnProposal; // destinationChainID => deposit fee mapping(uint8 => uint256) public _fees; event RelayerThresholdChanged(uint indexed newThreshold); event RelayerAdded(address indexed relayer); event RelayerRemoved(address indexed relayer); event Deposit( uint8 indexed destinationChainID, bytes32 indexed resourceID, uint64 indexed depositNonce ); event ProposalEvent( uint8 indexed originChainID, uint64 indexed depositNonce, ProposalStatus indexed status, bytes32 resourceID, bytes32 dataHash ); event ProposalVote( uint8 indexed originChainID, uint64 indexed depositNonce, ProposalStatus indexed status, bytes32 resourceID ); bytes32 public constant RELAYER_ROLE = keccak256("RELAYER_ROLE"); bytes32 public constant FEE_SETTER_ROLE = keccak256("FEE_SETTER_ROLE"); bytes32 public constant RESOURCE_SETTER_ROLE = keccak256("RESOURCE_SETTER_ROLE"); modifier onlyAdmin() { _onlyAdmin(); _; } modifier onlyAdminOrRelayer() { _onlyAdminOrRelayer(); _; } modifier onlyRelayers() { _onlyRelayers(); _; } modifier onlyFeeSetter() { require(hasRole(FEE_SETTER_ROLE, msg.sender), "sender is not fee setter"); _; } modifier onlyResourceSetter() { require(hasRole(RESOURCE_SETTER_ROLE, msg.sender), "sender is not resource setter"); _; } function _onlyAdminOrRelayer() private view { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender) || hasRole(RELAYER_ROLE, msg.sender), "sender is not relayer or admin"); } function _onlyAdmin() private view { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "sender doesn't have admin role"); } function _onlyRelayers() private view { require(hasRole(RELAYER_ROLE, msg.sender), "sender doesn't have relayer role"); } /** @notice Initializes Bridge, creates and grants {msg.sender} the admin role, creates and grants {initialRelayers} the relayer role. @param chainID ID of chain the Bridge contract exists on. @param initialRelayers Addresses that should be initially granted the relayer role. @param initialRelayerThreshold Number of votes needed for a deposit proposal to be considered passed. */ constructor (uint8 chainID, address[] memory initialRelayers, uint initialRelayerThreshold) public { _chainID = chainID; _relayerThreshold = initialRelayerThreshold; _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(FEE_SETTER_ROLE, msg.sender); _setupRole(RESOURCE_SETTER_ROLE, msg.sender); _setRoleAdmin(RELAYER_ROLE, DEFAULT_ADMIN_ROLE); _setRoleAdmin(FEE_SETTER_ROLE, DEFAULT_ADMIN_ROLE); _setRoleAdmin(RESOURCE_SETTER_ROLE, DEFAULT_ADMIN_ROLE); for (uint i; i < initialRelayers.length; i++) { grantRole(RELAYER_ROLE, initialRelayers[i]); _totalRelayers++; } } /** @notice Returns true if {relayer} has the relayer role. @param relayer Address to check. */ function isRelayer(address relayer) external view returns (bool) { return hasRole(RELAYER_ROLE, relayer); } /** @notice Removes admin role from {msg.sender} and grants it to {newAdmin}. @notice Only callable by an address that currently has the admin role. @param newAdmin Address that admin role will be granted to. */ function renounceAdmin(address newAdmin) external onlyAdmin { grantRole(DEFAULT_ADMIN_ROLE, newAdmin); renounceRole(DEFAULT_ADMIN_ROLE, msg.sender); } /** @notice Pauses deposits, proposal creation and voting, and deposit executions. @notice Only callable by an address that currently has the admin role. */ function adminPauseTransfers() external onlyAdmin { _pause(); } /** @notice Unpauses deposits, proposal creation and voting, and deposit executions. @notice Only callable by an address that currently has the admin role. */ function adminUnpauseTransfers() external onlyAdmin { _unpause(); } /** @notice Modifies the number of votes required for a proposal to be considered passed. @notice Only callable by an address that currently has the admin role. @param newThreshold Value {_relayerThreshold} will be changed to. @notice Emits {RelayerThresholdChanged} event. */ function adminChangeRelayerThreshold(uint newThreshold) external onlyAdmin { _relayerThreshold = newThreshold; emit RelayerThresholdChanged(newThreshold); } /** @notice Grants {relayerAddress} the relayer role and increases {_totalRelayer} count. @notice Only callable by an address that currently has the admin role. @param relayerAddress Address of relayer to be added. @notice Emits {RelayerAdded} event. */ function adminAddRelayer(address relayerAddress) external onlyAdmin { require(!hasRole(RELAYER_ROLE, relayerAddress), "addr already has relayer role!"); grantRole(RELAYER_ROLE, relayerAddress); emit RelayerAdded(relayerAddress); _totalRelayers++; } /** @notice Removes relayer role for {relayerAddress} and decreases {_totalRelayer} count. @notice Only callable by an address that currently has the admin role. @param relayerAddress Address of relayer to be removed. @notice Emits {RelayerRemoved} event. */ function adminRemoveRelayer(address relayerAddress) external onlyAdmin { require(hasRole(RELAYER_ROLE, relayerAddress), "addr doesn't have relayer role!"); revokeRole(RELAYER_ROLE, relayerAddress); emit RelayerRemoved(relayerAddress); _totalRelayers--; } /** @notice Sets a new resource for handler contracts that use the IERCHandler interface, and maps the {handlerAddress} to {resourceID} in {_resourceIDToHandlerAddress}. @notice Only callable by an address that currently has the admin role. @param handlerAddress Address of handler resource will be set for. @param resourceID ResourceID to be used when making deposits. @param tokenAddress Address of contract to be called when a deposit is made and a deposited is executed. */ function adminSetResource(address handlerAddress, bytes32 resourceID, address tokenAddress) external onlyResourceSetter { _resourceIDToHandlerAddress[resourceID] = handlerAddress; IERCHandler handler = IERCHandler(handlerAddress); handler.setResource(resourceID, tokenAddress); } /** @notice Sets a new resource for handler contracts that use the IGenericHandler interface, and maps the {handlerAddress} to {resourceID} in {_resourceIDToHandlerAddress}. @notice Only callable by an address that currently has the admin role. @param handlerAddress Address of handler resource will be set for. @param resourceID ResourceID to be used when making deposits. @param contractAddress Address of contract to be called when a deposit is made and a deposited is executed. */ function adminSetGenericResource( address handlerAddress, bytes32 resourceID, address contractAddress, bytes4 depositFunctionSig, bytes4 executeFunctionSig ) external onlyResourceSetter { _resourceIDToHandlerAddress[resourceID] = handlerAddress; IGenericHandler handler = IGenericHandler(handlerAddress); handler.setResource(resourceID, contractAddress, depositFunctionSig, executeFunctionSig); } /** @notice Sets a resource as burnable for handler contracts that use the IERCHandler interface. @notice Only callable by an address that currently has the admin role. @param handlerAddress Address of handler resource will be set for. @param tokenAddress Address of contract to be called when a deposit is made and a deposited is executed. */ function adminSetBurnable(address handlerAddress, address tokenAddress) external onlyResourceSetter { IERCHandler handler = IERCHandler(handlerAddress); handler.setBurnable(tokenAddress); } /** @notice Returns a proposal. @param originChainID Chain ID deposit originated from. @param depositNonce ID of proposal generated by proposal's origin Bridge contract. @param dataHash Hash of data to be provided when deposit proposal is executed. @return Proposal which consists of: - _dataHash Hash of data to be provided when deposit proposal is executed. - _yesVotes Number of votes in favor of proposal. - _noVotes Number of votes against proposal. - _status Current status of proposal. */ function getProposal(uint8 originChainID, uint64 depositNonce, bytes32 dataHash) external view returns (Proposal memory) { uint72 nonceAndID = (uint72(depositNonce) << 8) | uint72(originChainID); return _proposals[nonceAndID][dataHash]; } /** @notice Changes deposit fee. @notice Only callable by admin. @param newFee Value {_fees[destinationChainID]} will be updated to. */ function changeFee(uint8 destinationChainID, uint newFee) external onlyFeeSetter { _fees[destinationChainID] = newFee; } /** @notice Used to manually withdraw funds from ERC safes. @param handlerAddress Address of handler to withdraw from. @param tokenAddress Address of token to withdraw. @param recipient Address to withdraw tokens to. @param amountOrTokenID Either the amount of ERC20 tokens or the ERC721 token ID to withdraw. */ function adminWithdraw( address handlerAddress, address tokenAddress, address recipient, uint256 amountOrTokenID ) external onlyAdmin { IERCHandler handler = IERCHandler(handlerAddress); handler.withdraw(tokenAddress, recipient, amountOrTokenID); } /** @notice Initiates a transfer using a specified handler contract. @notice Only callable when Bridge is not paused. @param destinationChainID ID of chain deposit will be bridged to. @param resourceID ResourceID used to find address of handler to be used for deposit. @param data Additional data to be passed to specified handler. @param _auxData Unused parameter, can be used for everything, for example, writing IDs of apps from which the deposit was made. @notice Emits {Deposit} event. */ function deposit(uint8 destinationChainID, bytes32 resourceID, bytes calldata data, bytes calldata _auxData) external payable whenNotPaused { require(msg.value == _fees[destinationChainID], "Incorrect fee supplied"); address handler = _resourceIDToHandlerAddress[resourceID]; require(handler != address(0), "resourceID not mapped to handler"); uint64 depositNonce = ++_depositCounts[destinationChainID]; IDepositExecute depositHandler = IDepositExecute(handler); depositHandler.deposit(resourceID, destinationChainID, depositNonce, msg.sender, data); emit Deposit(destinationChainID, resourceID, depositNonce); } /** @notice When called, {msg.sender} will be marked as voting in favor of proposal. @notice Only callable by relayers when Bridge is not paused. @param chainID ID of chain deposit originated from. @param depositNonce ID of deposited generated by origin Bridge contract. @param data data provided when deposit was made. @notice Proposal must not have already been passed or executed. @notice {msg.sender} must not have already voted on proposal. @notice Emits {ProposalEvent} event with status indicating the proposal status. @notice Emits {ProposalVote} event. */ function voteProposal(uint8 chainID, uint64 depositNonce, bytes32 resourceID, bytes calldata data) external onlyRelayers whenNotPaused { address handler = _resourceIDToHandlerAddress[resourceID]; bytes32 dataHash = keccak256(abi.encodePacked(handler, data)); uint72 nonceAndID = (uint72(depositNonce) << 8) | uint72(chainID); Proposal storage proposal = _proposals[nonceAndID][dataHash]; require(_resourceIDToHandlerAddress[resourceID] != address(0), "no handler for resourceID"); require(uint(proposal._status) <= 1, "proposal already executed"); require(!_hasVotedOnProposal[nonceAndID][dataHash][msg.sender], "relayer already voted"); if (uint(proposal._status) == 0) { ++_totalProposals; _proposals[nonceAndID][dataHash] = Proposal({ _resourceID : resourceID, _dataHash : dataHash, _yesVotes : new address[](1), _noVotes : new address[](0), _status : ProposalStatus.Active, _proposedBlock : block.number }); proposal._yesVotes[0] = msg.sender; emit ProposalEvent(chainID, depositNonce, ProposalStatus.Active, resourceID, dataHash); } else { require(dataHash == proposal._dataHash, "datahash mismatch"); proposal._yesVotes.push(msg.sender); } _hasVotedOnProposal[nonceAndID][dataHash][msg.sender] = true; emit ProposalVote(chainID, depositNonce, proposal._status, resourceID); // if _relayerThreshold has been exceeded if (proposal._yesVotes.length >= _relayerThreshold) { require(dataHash == proposal._dataHash, "data doesn't match datahash"); proposal._status = ProposalStatus.Executed; IDepositExecute depositHandler = IDepositExecute(_resourceIDToHandlerAddress[proposal._resourceID]); depositHandler.executeProposal(proposal._resourceID, data); emit ProposalEvent(chainID, depositNonce, proposal._status, proposal._resourceID, proposal._dataHash); } } /** @notice Transfers eth in the contract to the specified addresses. The parameters addrs and amounts are mapped 1-1. This means that the address at index 0 for addrs will receive the amount (in WEI) from amounts at index 0. @param addrs Array of addresses to transfer {amounts} to. @param amounts Array of amonuts to transfer to {addrs}. */ function transferFunds(address payable[] calldata addrs, uint[] calldata amounts) external onlyAdmin { for (uint i = 0; i < addrs.length; i++) { addrs[i].transfer(amounts[i]); } } }
pragma solidity ^0.6.0; import "../utils/EnumerableSet.sol"; import "../utils/Address.sol"; import "../GSN/Context.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This is a stripped down version of Open zeppelin's Pausable contract. * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/EnumerableSet.sol * */ contract Pausable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _whenNotPaused(); _; } function _whenNotPaused() private view { require(!_paused, "Pausable: paused"); } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenPaused() { _whenPaused(); _; } function _whenPaused() private view { require(_paused, "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(msg.sender); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * note that this is a stripped down version of open zeppelin's safemath * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/SafeMath.sol */ contract SafeMath { /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return _sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function _sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } }
pragma solidity 0.6.4; /** @title Interface for handler contracts that support deposits and deposit executions. @author ChainSafe Systems. */ interface IDepositExecute { /** @notice It is intended that deposit are made using the Bridge contract. @param destinationChainID Chain ID deposit is expected to be bridged to. @param depositNonce This value is generated as an ID by the Bridge contract. @param depositer Address of account making the deposit in the Bridge contract. @param data Consists of additional data needed for a specific deposit. */ function deposit(bytes32 resourceID, uint8 destinationChainID, uint64 depositNonce, address depositer, bytes calldata data) external; /** @notice It is intended that proposals are executed by the Bridge contract. @param data Consists of additional data needed for a specific deposit execution. */ function executeProposal(bytes32 resourceID, bytes calldata data) external; }
pragma solidity 0.6.4; /** @title Interface for Bridge contract. @author ChainSafe Systems. */ interface IBridge { /** @notice Exposing getter for {_chainID} instead of forcing the use of call. @return uint8 The {_chainID} that is currently set for the Bridge contract. */ function _chainID() external returns (uint8); }
pragma solidity 0.6.4; /** @title Interface to be used with handlers that support ERC20s and ERC721s. @author ChainSafe Systems. */ interface IERCHandler { /** @notice Correlates {resourceID} with {contractAddress}. @param resourceID ResourceID to be used when making deposits. @param contractAddress Address of contract to be called when a deposit is made and a deposited is executed. */ function setResource(bytes32 resourceID, address contractAddress) external; /** @notice Marks {contractAddress} as mintable/burnable. @param contractAddress Address of contract to be used when making or executing deposits. */ function setBurnable(address contractAddress) external; /** @notice Used to manually release funds from ERC safes. @param tokenAddress Address of token contract to release. @param recipient Address to release tokens to. @param amountOrTokenID Either the amount of ERC20 tokens or the ERC721 token ID to release. */ function withdraw(address tokenAddress, address recipient, uint256 amountOrTokenID) external; }
pragma solidity 0.6.4; /** @title Interface for handler that handles generic deposits and deposit executions. @author ChainSafe Systems. */ interface IGenericHandler { /** @notice Correlates {resourceID} with {contractAddress}, {depositFunctionSig}, and {executeFunctionSig}. @param resourceID ResourceID to be used when making deposits. @param contractAddress Address of contract to be called when a deposit is made and a deposited is executed. @param depositFunctionSig Function signature of method to be called in {contractAddress} when a deposit is made. @param executeFunctionSig Function signature of method to be called in {contractAddress} when a deposit is executed. */ function setResource(bytes32 resourceID, address contractAddress, bytes4 depositFunctionSig, bytes4 executeFunctionSig) external; }
pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } }
pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint8","name":"chainID","type":"uint8"},{"internalType":"address[]","name":"initialRelayers","type":"address[]"},{"internalType":"uint256","name":"initialRelayerThreshold","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint8","name":"destinationChainID","type":"uint8"},{"indexed":true,"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"indexed":true,"internalType":"uint64","name":"depositNonce","type":"uint64"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint8","name":"originChainID","type":"uint8"},{"indexed":true,"internalType":"uint64","name":"depositNonce","type":"uint64"},{"indexed":true,"internalType":"enum Bridge.ProposalStatus","name":"status","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"dataHash","type":"bytes32"}],"name":"ProposalEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint8","name":"originChainID","type":"uint8"},{"indexed":true,"internalType":"uint64","name":"depositNonce","type":"uint64"},{"indexed":true,"internalType":"enum Bridge.ProposalStatus","name":"status","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"resourceID","type":"bytes32"}],"name":"ProposalVote","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"relayer","type":"address"}],"name":"RelayerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"relayer","type":"address"}],"name":"RelayerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"RelayerThresholdChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_SETTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RELAYER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESOURCE_SETTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_chainID","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"_depositCounts","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"_fees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint72","name":"","type":"uint72"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"address","name":"","type":"address"}],"name":"_hasVotedOnProposal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint72","name":"","type":"uint72"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"_proposals","outputs":[{"internalType":"bytes32","name":"_resourceID","type":"bytes32"},{"internalType":"bytes32","name":"_dataHash","type":"bytes32"},{"internalType":"enum Bridge.ProposalStatus","name":"_status","type":"uint8"},{"internalType":"uint256","name":"_proposedBlock","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_relayerThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"_resourceIDToHandlerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalProposals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalRelayers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"relayerAddress","type":"address"}],"name":"adminAddRelayer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"adminChangeRelayerThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"adminPauseTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"relayerAddress","type":"address"}],"name":"adminRemoveRelayer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"adminSetBurnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"},{"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"bytes4","name":"depositFunctionSig","type":"bytes4"},{"internalType":"bytes4","name":"executeFunctionSig","type":"bytes4"}],"name":"adminSetGenericResource","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"},{"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"adminSetResource","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"adminUnpauseTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amountOrTokenID","type":"uint256"}],"name":"adminWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"destinationChainID","type":"uint8"},{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"changeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"destinationChainID","type":"uint8"},{"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"_auxData","type":"bytes"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"originChainID","type":"uint8"},{"internalType":"uint64","name":"depositNonce","type":"uint64"},{"internalType":"bytes32","name":"dataHash","type":"bytes32"}],"name":"getProposal","outputs":[{"components":[{"internalType":"bytes32","name":"_resourceID","type":"bytes32"},{"internalType":"bytes32","name":"_dataHash","type":"bytes32"},{"internalType":"address[]","name":"_yesVotes","type":"address[]"},{"internalType":"address[]","name":"_noVotes","type":"address[]"},{"internalType":"enum Bridge.ProposalStatus","name":"_status","type":"uint8"},{"internalType":"uint256","name":"_proposedBlock","type":"uint256"}],"internalType":"struct Bridge.Proposal","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"relayer","type":"address"}],"name":"isRelayer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"renounceAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable[]","name":"addrs","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"transferFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"chainID","type":"uint8"},{"internalType":"uint64","name":"depositNonce","type":"uint64"},{"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"voteProposal","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002b1a38038062002b1a83398101604081905262000034916200035f565b6000805460ff1990811682556002805490911660ff861617905560038290556200005f903362000151565b6200008a60405162000071906200047b565b604051908190039020336001600160e01b036200015116565b6200009c60405162000071906200043a565b620000c8604051620000ae9062000463565b60405190819003902060006001600160e01b036200016a16565b620000da604051620000ae906200047b565b620000ec604051620000ae906200043a565b60005b82518110156200014757620001346040516200010b9062000463565b60405180910390208483815181106200012057fe5b60200260200101516200017f60201b60201c565b60048054600190810190915501620000ef565b505050506200050c565b6200016682826001600160e01b03620001e016565b5050565b60009182526001602052604090912060020155565b600082815260016020526040902060020154620001b890620001a96001600160e01b036200026416565b6001600160e01b036200026816565b620001515760405162461bcd60e51b8152600401620001d79062000496565b60405180910390fd5b6000828152600160209081526040909120620002079183906200179662000297821b17901c565b156200016657620002206001600160e01b036200026416565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b3390565b600082815260016020908152604082206200028e91849062001709620002b7821b17901c565b90505b92915050565b60006200028e836001600160a01b0384166001600160e01b03620002d716565b60006200028e836001600160a01b0384166001600160e01b036200032f16565b6000620002ee83836001600160e01b036200032f16565b620003265750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000291565b50600062000291565b60009081526001919091016020526040902054151590565b80516001600160a01b03811681146200029157600080fd5b60008060006060848603121562000374578283fd5b835160ff8116811462000385578384fd5b602085810151919450906001600160401b0380821115620003a4578485fd5b81870188601f820112620003b6578586fd5b8051925081831115620003c7578586fd5b8383029150620003d9848301620004e5565b8381528481019082860184840187018c1015620003f4578889fd5b8894505b8585101562000422576200040d8c8262000347565b835260019490940193918601918601620003f8565b50809750505050505050604084015190509250925092565b7f5245534f555243455f5345545445525f524f4c45000000000000000000000000815260140190565b6b52454c415945525f524f4c4560a01b8152600c0190565b6e4645455f5345545445525f524f4c4560881b8152600f0190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b6040518181016001600160401b03811182821017156200050457600080fd5b604052919050565b6125fe806200051c6000396000f3fe60806040526004361061021a5760003560e01c80639010d07c11610123578063c0331b3e116100ab578063d7a9cd791161006f578063d7a9cd791461062e578063e8437ee714610643578063e934768314610663578063eb6e53aa14610678578063ffaac0eb1461068d5761021a565b8063c0331b3e1461058e578063ca15c873146105ae578063cb10f215146105ce578063cdb0f73a146105ee578063d547741f1461060e5761021a565b80639d82dd63116100f25780639d82dd63146104ea578063a217fddf1461050a578063a49e88d91461051f578063a9cf69fa1461053f578063beab71311461056c5761021a565b80639010d07c1461048057806391d14854146104a0578063926d7d7f146104c05780639d5773e0146104d55761021a565b80635c975abb116101a65780637febe63f116101755780637febe63f146103e9578063802aabe81461040957806380ae1c281461041e57806384db809f146104335780638c0c2631146104605761021a565b80635c975abb146103815780635e1fab0f1461039657806373c45c98146103b6578063780cf004146103c95761021a565b80634603ae38116101ed5780634603ae38146102b75780634b0b919d146102d75780634e056005146103045780635059871914610324578063541d5548146103545761021a565b806313a7e54e1461021f578063248a9ca3146102415780632f2ff15d1461027757806336568abe14610297575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611da9565b6106a2565b005b34801561024d57600080fd5b5061026161025c366004611c60565b6106fa565b60405161026e9190611fbb565b60405180910390f35b34801561028357600080fd5b5061023f610292366004611c78565b61070f565b3480156102a357600080fd5b5061023f6102b2366004611c78565b610757565b3480156102c357600080fd5b5061023f6102d2366004611bf8565b610799565b3480156102e357600080fd5b506102f76102f2366004611d07565b610827565b60405161026e9190612564565b34801561031057600080fd5b5061023f61031f366004611c60565b610842565b34801561033057600080fd5b5061034461033f366004611cbd565b61087d565b60405161026e949392919061201a565b34801561036057600080fd5b5061037461036f366004611aac565b6108b5565b60405161026e9190611fb0565b34801561038d57600080fd5b506103746108da565b3480156103a257600080fd5b5061023f6103b1366004611aac565b6108e4565b61023f6103c4366004611d22565b610905565b3480156103d557600080fd5b5061023f6103e4366004611b00565b610a59565b3480156103f557600080fd5b50610374610404366004611ce8565b610acc565b34801561041557600080fd5b50610261610af2565b34801561042a57600080fd5b5061023f610af8565b34801561043f57600080fd5b5061045361044e366004611c60565b610b0a565b60405161026e9190611f78565b34801561046c57600080fd5b5061023f61047b366004611ac8565b610b25565b34801561048c57600080fd5b5061045361049b366004611c9c565b610bb5565b3480156104ac57600080fd5b506103746104bb366004611c78565b610bda565b3480156104cc57600080fd5b50610261610bf8565b3480156104e157600080fd5b50610261610c0f565b3480156104f657600080fd5b5061023f610505366004611aac565b610c15565b34801561051657600080fd5b50610261610cb4565b34801561052b57600080fd5b5061026161053a366004611d07565b610cb9565b34801561054b57600080fd5b5061055f61055a366004611dc5565b610ccb565b60405161026e91906124ea565b34801561057857600080fd5b50610581610e1f565b60405161026e9190612578565b34801561059a57600080fd5b5061023f6105a9366004611e0f565b610e28565b3480156105ba57600080fd5b506102616105c9366004611c60565b611304565b3480156105da57600080fd5b5061023f6105e9366004611b50565b61131b565b3480156105fa57600080fd5b5061023f610609366004611aac565b6113cf565b34801561061a57600080fd5b5061023f610629366004611c78565b611460565b34801561063a57600080fd5b5061026161149a565b34801561064f57600080fd5b5061023f61065e366004611b91565b6114a0565b34801561066f57600080fd5b5061026161155a565b34801561068457600080fd5b50610261611566565b34801561069957600080fd5b5061023f611572565b6106bf6040516106b190611f5d565b604051809103902033610bda565b6106e45760405162461bcd60e51b81526004016106db9061235f565b60405180910390fd5b60ff9091166000908152600a6020526040902055565b60009081526001602052604090206002015490565b60008281526001602052604090206002015461072d906104bb611582565b6107495760405162461bcd60e51b81526004016106db906120f8565b6107538282611586565b5050565b61075f611582565b6001600160a01b0316816001600160a01b03161461078f5760405162461bcd60e51b81526004016106db90612464565b61075382826115f5565b6107a1611664565b60005b83811015610820578484828181106107b857fe5b90506020020160208101906107cd9190611aac565b6001600160a01b03166108fc8484848181106107e557fe5b905060200201359081150290604051600060405180830381858888f19350505050158015610817573d6000803e3d6000fd5b506001016107a4565b5050505050565b6006602052600090815260409020546001600160401b031681565b61084a611664565b600381905560405181907fa20d6b84cd798a24038be305eff8a45ca82ef54a2aa2082005d8e14c0a4746c890600090a250565b600860209081526000928352604080842090915290825290208054600182015460048301546005909301549192909160ff9091169084565b60006108d46040516108c690611f45565b604051809103902083610bda565b92915050565b60005460ff165b90565b6108ec611664565b6108f760008261070f565b610902600033610757565b50565b61090d61168b565b60ff86166000908152600a6020526040902054341461093e5760405162461bcd60e51b81526004016106db906121db565b6000858152600760205260409020546001600160a01b0316806109735760405162461bcd60e51b81526004016106db90612242565b60ff871660009081526006602052604090819020805467ffffffffffffffff19811660016001600160401b03928316019182161790915590516338995da960e01b815282906001600160a01b038216906338995da9906109e1908b908d90879033908e908e90600401612067565b600060405180830381600087803b1580156109fb57600080fd5b505af1158015610a0f573d6000803e3d6000fd5b50505050816001600160401b0316888a60ff167fdbb69440df8433824a026ef190652f29929eb64b4d1d5d2a69be8afe3e6eaed860405160405180910390a4505050505050505050565b610a61611664565b604051636ce5768960e11b815284906001600160a01b0382169063d9caed1290610a9390879087908790600401611f8c565b600060405180830381600087803b158015610aad57600080fd5b505af1158015610ac1573d6000803e3d6000fd5b505050505050505050565b600960209081526000938452604080852082529284528284209052825290205460ff1681565b60045481565b610b00611664565b610b086116ae565b565b6007602052600090815260409020546001600160a01b031681565b610b346040516106b190611f25565b610b505760405162461bcd60e51b81526004016106db90612277565b6040516307b7ed9960e01b815282906001600160a01b038216906307b7ed9990610b7e908590600401611f78565b600060405180830381600087803b158015610b9857600080fd5b505af1158015610bac573d6000803e3d6000fd5b50505050505050565b6000828152600160205260408120610bd3908363ffffffff6116fd16565b9392505050565b6000828152600160205260408120610bd3908363ffffffff61170916565b604051610c0490611f45565b604051809103902081565b60055481565b610c1d611664565b610c3a604051610c2c90611f45565b604051809103902082610bda565b610c565760405162461bcd60e51b81526004016106db906121a4565b610c73604051610c6590611f45565b604051809103902082611460565b6040516001600160a01b038216907f10e1f7ce9fd7d1b90a66d13a2ab3cb8dd7f29f3f8d520b143b063ccfbab6906b90600090a25060048054600019019055565b600081565b600a6020526000908152604090205481565b610cd3611953565b68ffffffffffffffffff60ff8516600885811b68ffffffffffffffff001691909117918216600090815260209182526040808220868352835290819020815160c08101835281548152600182015481850152600282018054845181870281018701865281815292959394860193830182828015610d7957602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610d5b575b5050505050815260200160038201805480602002602001604051908101604052809291908181526020018280548015610ddb57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610dbd575b5050509183525050600482015460209091019060ff166002811115610dfc57fe5b6002811115610e0757fe5b81526020016005820154815250509150509392505050565b60025460ff1681565b610e3061171e565b610e3861168b565b60008381526007602090815260408083205490516001600160a01b039091169291610e699184918791879101611ef9565b60408051601f19818403018152918152815160209283012068ffffffffffffffff0060088a811b9190911660ff8c161768ffffffffffffffffff8116600090815291855283822083835285528382208a83526007909552929020549093509091906001600160a01b0316610eef5760405162461bcd60e51b81526004016106db9061242d565b600481015460019060ff166002811115610f0557fe5b1115610f235760405162461bcd60e51b81526004016106db906124b3565b68ffffffffffffffffff82166000908152600960209081526040808320868452825280832033845290915290205460ff1615610f715760405162461bcd60e51b81526004016106db90612147565b600481015460ff166002811115610f8457fe5b611108576005805460019081019091556040805160c08101825289815260208101869052815183815280830183529092918301918160200160208202803683375050508152604080516000808252602080830184528085019290925260018385018190524360609095019490945268ffffffffffffffffff87168152600882528281208882528252829020845181558482015193810193909355908301518051611034926002850192019061198b565b506060820151805161105091600384019160209091019061198b565b50608082015160048201805460ff1916600183600281111561106e57fe5b021790555060a08201518160050155905050338160020160008154811061109157fe5b600091825260209091200180546001600160a01b0319166001600160a01b03929092169190911790556001886001600160401b03168a60ff167f803c5a12f6bde629cea32e63d4b92d1b560816a6fb72e939d3c89e1cab6504178a876040516110fb92919061200c565b60405180910390a4611153565b8060010154831461112b5760405162461bcd60e51b81526004016106db90612402565b600281018054600181018255600091825260209091200180546001600160a01b031916331790555b68ffffffffffffffffff8216600090815260096020908152604080832086845282528083203384529091529020805460ff19166001179055600481015460ff16600281111561119e57fe5b886001600160401b03168a60ff167f25f8daaa4635a7729927ba3f5b3d59cc3320aca7c32c9db4e7ca7b95743436408a6040516111db9190611fbb565b60405180910390a4600354600282015410610ac157806001015483146112135760405162461bcd60e51b81526004016106db9061220b565b6004818101805460ff1916600217905581546000818152600760205260409081902054905163712467f960e11b81526001600160a01b0390911692839263e248cff292611264928c918c9101612044565b600060405180830381600087803b15801561127e57600080fd5b505af1158015611292573d6000803e3d6000fd5b50505050600482015460ff1660028111156112a957fe5b896001600160401b03168b60ff167f803c5a12f6bde629cea32e63d4b92d1b560816a6fb72e939d3c89e1cab650417856000015486600101546040516112f092919061200c565b60405180910390a450505050505050505050565b60008181526001602052604081206108d490611749565b61132a6040516106b190611f25565b6113465760405162461bcd60e51b81526004016106db90612277565b6000828152600760205260409081902080546001600160a01b0319166001600160a01b0386169081179091559051635c7d1b9b60e11b815284919063b8fa3736906113979086908690600401611fc4565b600060405180830381600087803b1580156113b157600080fd5b505af11580156113c5573d6000803e3d6000fd5b5050505050505050565b6113d7611664565b6113e6604051610c2c90611f45565b156114035760405162461bcd60e51b81526004016106db90612328565b61142060405161141290611f45565b60405180910390208261070f565b6040516001600160a01b038216907f03580ee9f53a62b7cb409a2cb56f9be87747dd15017afc5cef6eef321e4fb2c590600090a250600480546001019055565b60008281526001602052604090206002015461147e906104bb611582565b61078f5760405162461bcd60e51b81526004016106db906122ae565b60035481565b6114af6040516106b190611f25565b6114cb5760405162461bcd60e51b81526004016106db90612277565b6000848152600760205260409081902080546001600160a01b0319166001600160a01b0388169081179091559051635dd40c2d60e11b815286919063bba8185a90611520908890889088908890600401611fdb565b600060405180830381600087803b15801561153a57600080fd5b505af115801561154e573d6000803e3d6000fd5b50505050505050505050565b604051610c0490611f5d565b604051610c0490611f25565b61157a611664565b610b08611754565b3390565b60008281526001602052604090206115a4908263ffffffff61179616565b15610753576115b1611582565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600160205260409020611613908263ffffffff6117ab16565b1561075357611620611582565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b61166f600033610bda565b610b085760405162461bcd60e51b81526004016106db906123cb565b60005460ff1615610b085760405162461bcd60e51b81526004016106db906122fe565b6116b661168b565b6000805460ff191660011790556040517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258906116f3903390611f78565b60405180910390a1565b6000610bd383836117c0565b6000610bd3836001600160a01b038416611805565b61172d6040516106b190611f45565b610b085760405162461bcd60e51b81526004016106db90612396565b60006108d48261181d565b61175c611821565b6000805460ff191690556040517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa906116f3903390611f78565b6000610bd3836001600160a01b038416611843565b6000610bd3836001600160a01b03841661188d565b815460009082106117e35760405162461bcd60e51b81526004016106db906120b6565b8260000182815481106117f257fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60005460ff16610b085760405162461bcd60e51b81526004016106db90612176565b600061184f8383611805565b611885575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108d4565b5060006108d4565b6000818152600183016020526040812054801561194957835460001980830191908101906000908790839081106118c057fe5b90600052602060002001549050808760000184815481106118dd57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061190d57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108d4565b60009150506108d4565b6040805160c0810182526000808252602082018190526060928201839052828201929092529060808201908152602001600081525090565b8280548282559060005260206000209081019282156119e0579160200282015b828111156119e057825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906119ab565b506119ec9291506119f0565b5090565b6108e191905b808211156119ec5780546001600160a01b03191681556001016119f6565b60008083601f840112611a25578182fd5b5081356001600160401b03811115611a3b578182fd5b6020830191508360208083028501011115611a5557600080fd5b9250929050565b60008083601f840112611a6d578182fd5b5081356001600160401b03811115611a83578182fd5b602083019150836020828501011115611a5557600080fd5b803560ff811681146108d457600080fd5b600060208284031215611abd578081fd5b8135610bd381612586565b60008060408385031215611ada578081fd5b8235611ae581612586565b91506020830135611af581612586565b809150509250929050565b60008060008060808587031215611b15578182fd5b8435611b2081612586565b93506020850135611b3081612586565b92506040850135611b4081612586565b9396929550929360600135925050565b600080600060608486031215611b64578283fd5b8335611b6f81612586565b9250602084013591506040840135611b8681612586565b809150509250925092565b600080600080600060a08688031215611ba8578081fd5b8535611bb381612586565b9450602086013593506040860135611bca81612586565b92506060860135611bda8161259b565b91506080860135611bea8161259b565b809150509295509295909350565b60008060008060408587031215611c0d578384fd5b84356001600160401b0380821115611c23578586fd5b611c2f88838901611a14565b90965094506020870135915080821115611c47578384fd5b50611c5487828801611a14565b95989497509550505050565b600060208284031215611c71578081fd5b5035919050565b60008060408385031215611c8a578182fd5b823591506020830135611af581612586565b60008060408385031215611cae578182fd5b50508035926020909101359150565b60008060408385031215611ccf578081fd5b8235611cda816125b1565b946020939093013593505050565b600080600060608486031215611cfc578081fd5b8335611b6f816125b1565b600060208284031215611d18578081fd5b610bd38383611a9b565b60008060008060008060808789031215611d3a578384fd5b611d448888611a9b565b95506020870135945060408701356001600160401b0380821115611d66578586fd5b611d728a838b01611a5c565b90965094506060890135915080821115611d8a578283fd5b50611d9789828a01611a5c565b979a9699509497509295939492505050565b60008060408385031215611dbb578182fd5b611cda8484611a9b565b600080600060608486031215611dd9578081fd5b611de38585611a9b565b925060208401356001600160401b0381168114611dfe578182fd5b929592945050506040919091013590565b600080600080600060808688031215611e26578283fd5b853560ff81168114611e36578384fd5b945060208601356001600160401b038082168214611e52578485fd5b9094506040870135935060608701359080821115611e6e578283fd5b50611e7b88828901611a5c565b969995985093965092949392505050565b6000815180845260208085019450808401835b83811015611ec45781516001600160a01b031687529582019590820190600101611e9f565b509495945050505050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b60006bffffffffffffffffffffffff198560601b16825282846014840137910160140190815292915050565b735245534f555243455f5345545445525f524f4c4560601b815260140190565b6b52454c415945525f524f4c4560a01b8152600c0190565b6e4645455f5345545445525f524f4c4560881b8152600f0190565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b901515815260200190565b90815260200190565b9182526001600160a01b0316602082015260400190565b9384526001600160a01b039290921660208401526001600160e01b0319908116604084015216606082015260800190565b918252602082015260400190565b84815260208101849052608081016003841061203257fe5b60408201939093526060015292915050565b60008482526040602083015261205e604083018486611ecf565b95945050505050565b86815260ff861660208201526001600160401b03851660408201526001600160a01b038416606082015260a0608082018190526000906120aa9083018486611ecf565b98975050505050505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b6020808252601590820152741c995b185e595c88185b1c9958591e481d9bdd1959605a1b604082015260600190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601f908201527f6164647220646f65736e277420686176652072656c6179657220726f6c652100604082015260600190565b602080825260169082015275125b98dbdc9c9958dd08199959481cdd5c1c1b1a595960521b604082015260600190565b6020808252601b908201527f6461746120646f65736e2774206d617463682064617461686173680000000000604082015260600190565b6020808252818101527f7265736f757263654944206e6f74206d617070656420746f2068616e646c6572604082015260600190565b6020808252601d908201527f73656e646572206973206e6f74207265736f7572636520736574746572000000604082015260600190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601e908201527f6164647220616c7265616479206861732072656c6179657220726f6c65210000604082015260600190565b60208082526018908201527f73656e646572206973206e6f7420666565207365747465720000000000000000604082015260600190565b6020808252818101527f73656e64657220646f65736e277420686176652072656c6179657220726f6c65604082015260600190565b6020808252601e908201527f73656e64657220646f65736e277420686176652061646d696e20726f6c650000604082015260600190565b6020808252601190820152700c8c2e8c2d0c2e6d040dad2e6dac2e8c6d607b1b604082015260600190565b60208082526019908201527f6e6f2068616e646c657220666f72207265736f75726365494400000000000000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b60208082526019908201527f70726f706f73616c20616c726561647920657865637574656400000000000000604082015260600190565b6000602082528251602083015260208301516040830152604083015160c0606084015261251a60e0840182611e8c565b6060850151848203601f1901608086015291506125378183611e8c565b608086015192506003831061254857fe5b8260a086015260a086015160c086015280935050505092915050565b6001600160401b0391909116815260200190565b60ff91909116815260200190565b6001600160a01b038116811461090257600080fd5b6001600160e01b03198116811461090257600080fd5b68ffffffffffffffffff8116811461090257600080fdfea2646970667358221220b7ebd09932f48ad275308380a929adf67c8d5a022fe627ef0c0a546f83f5132164736f6c6343000604003300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000cc35215953725637c433404c01546c49a0ba6a1000000000000000000000000c5e370bf1f1013d913df3acfd5a79d2af8bc88ba0000000000000000000000004f4d8d40eaa65b2dbe7cf9f6e7fb0c807e1ed6540000000000000000000000001e6a269fe265c44eb18ab6633c3137be48e8c898
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80639010d07c11610123578063c0331b3e116100ab578063d7a9cd791161006f578063d7a9cd791461062e578063e8437ee714610643578063e934768314610663578063eb6e53aa14610678578063ffaac0eb1461068d5761021a565b8063c0331b3e1461058e578063ca15c873146105ae578063cb10f215146105ce578063cdb0f73a146105ee578063d547741f1461060e5761021a565b80639d82dd63116100f25780639d82dd63146104ea578063a217fddf1461050a578063a49e88d91461051f578063a9cf69fa1461053f578063beab71311461056c5761021a565b80639010d07c1461048057806391d14854146104a0578063926d7d7f146104c05780639d5773e0146104d55761021a565b80635c975abb116101a65780637febe63f116101755780637febe63f146103e9578063802aabe81461040957806380ae1c281461041e57806384db809f146104335780638c0c2631146104605761021a565b80635c975abb146103815780635e1fab0f1461039657806373c45c98146103b6578063780cf004146103c95761021a565b80634603ae38116101ed5780634603ae38146102b75780634b0b919d146102d75780634e056005146103045780635059871914610324578063541d5548146103545761021a565b806313a7e54e1461021f578063248a9ca3146102415780632f2ff15d1461027757806336568abe14610297575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611da9565b6106a2565b005b34801561024d57600080fd5b5061026161025c366004611c60565b6106fa565b60405161026e9190611fbb565b60405180910390f35b34801561028357600080fd5b5061023f610292366004611c78565b61070f565b3480156102a357600080fd5b5061023f6102b2366004611c78565b610757565b3480156102c357600080fd5b5061023f6102d2366004611bf8565b610799565b3480156102e357600080fd5b506102f76102f2366004611d07565b610827565b60405161026e9190612564565b34801561031057600080fd5b5061023f61031f366004611c60565b610842565b34801561033057600080fd5b5061034461033f366004611cbd565b61087d565b60405161026e949392919061201a565b34801561036057600080fd5b5061037461036f366004611aac565b6108b5565b60405161026e9190611fb0565b34801561038d57600080fd5b506103746108da565b3480156103a257600080fd5b5061023f6103b1366004611aac565b6108e4565b61023f6103c4366004611d22565b610905565b3480156103d557600080fd5b5061023f6103e4366004611b00565b610a59565b3480156103f557600080fd5b50610374610404366004611ce8565b610acc565b34801561041557600080fd5b50610261610af2565b34801561042a57600080fd5b5061023f610af8565b34801561043f57600080fd5b5061045361044e366004611c60565b610b0a565b60405161026e9190611f78565b34801561046c57600080fd5b5061023f61047b366004611ac8565b610b25565b34801561048c57600080fd5b5061045361049b366004611c9c565b610bb5565b3480156104ac57600080fd5b506103746104bb366004611c78565b610bda565b3480156104cc57600080fd5b50610261610bf8565b3480156104e157600080fd5b50610261610c0f565b3480156104f657600080fd5b5061023f610505366004611aac565b610c15565b34801561051657600080fd5b50610261610cb4565b34801561052b57600080fd5b5061026161053a366004611d07565b610cb9565b34801561054b57600080fd5b5061055f61055a366004611dc5565b610ccb565b60405161026e91906124ea565b34801561057857600080fd5b50610581610e1f565b60405161026e9190612578565b34801561059a57600080fd5b5061023f6105a9366004611e0f565b610e28565b3480156105ba57600080fd5b506102616105c9366004611c60565b611304565b3480156105da57600080fd5b5061023f6105e9366004611b50565b61131b565b3480156105fa57600080fd5b5061023f610609366004611aac565b6113cf565b34801561061a57600080fd5b5061023f610629366004611c78565b611460565b34801561063a57600080fd5b5061026161149a565b34801561064f57600080fd5b5061023f61065e366004611b91565b6114a0565b34801561066f57600080fd5b5061026161155a565b34801561068457600080fd5b50610261611566565b34801561069957600080fd5b5061023f611572565b6106bf6040516106b190611f5d565b604051809103902033610bda565b6106e45760405162461bcd60e51b81526004016106db9061235f565b60405180910390fd5b60ff9091166000908152600a6020526040902055565b60009081526001602052604090206002015490565b60008281526001602052604090206002015461072d906104bb611582565b6107495760405162461bcd60e51b81526004016106db906120f8565b6107538282611586565b5050565b61075f611582565b6001600160a01b0316816001600160a01b03161461078f5760405162461bcd60e51b81526004016106db90612464565b61075382826115f5565b6107a1611664565b60005b83811015610820578484828181106107b857fe5b90506020020160208101906107cd9190611aac565b6001600160a01b03166108fc8484848181106107e557fe5b905060200201359081150290604051600060405180830381858888f19350505050158015610817573d6000803e3d6000fd5b506001016107a4565b5050505050565b6006602052600090815260409020546001600160401b031681565b61084a611664565b600381905560405181907fa20d6b84cd798a24038be305eff8a45ca82ef54a2aa2082005d8e14c0a4746c890600090a250565b600860209081526000928352604080842090915290825290208054600182015460048301546005909301549192909160ff9091169084565b60006108d46040516108c690611f45565b604051809103902083610bda565b92915050565b60005460ff165b90565b6108ec611664565b6108f760008261070f565b610902600033610757565b50565b61090d61168b565b60ff86166000908152600a6020526040902054341461093e5760405162461bcd60e51b81526004016106db906121db565b6000858152600760205260409020546001600160a01b0316806109735760405162461bcd60e51b81526004016106db90612242565b60ff871660009081526006602052604090819020805467ffffffffffffffff19811660016001600160401b03928316019182161790915590516338995da960e01b815282906001600160a01b038216906338995da9906109e1908b908d90879033908e908e90600401612067565b600060405180830381600087803b1580156109fb57600080fd5b505af1158015610a0f573d6000803e3d6000fd5b50505050816001600160401b0316888a60ff167fdbb69440df8433824a026ef190652f29929eb64b4d1d5d2a69be8afe3e6eaed860405160405180910390a4505050505050505050565b610a61611664565b604051636ce5768960e11b815284906001600160a01b0382169063d9caed1290610a9390879087908790600401611f8c565b600060405180830381600087803b158015610aad57600080fd5b505af1158015610ac1573d6000803e3d6000fd5b505050505050505050565b600960209081526000938452604080852082529284528284209052825290205460ff1681565b60045481565b610b00611664565b610b086116ae565b565b6007602052600090815260409020546001600160a01b031681565b610b346040516106b190611f25565b610b505760405162461bcd60e51b81526004016106db90612277565b6040516307b7ed9960e01b815282906001600160a01b038216906307b7ed9990610b7e908590600401611f78565b600060405180830381600087803b158015610b9857600080fd5b505af1158015610bac573d6000803e3d6000fd5b50505050505050565b6000828152600160205260408120610bd3908363ffffffff6116fd16565b9392505050565b6000828152600160205260408120610bd3908363ffffffff61170916565b604051610c0490611f45565b604051809103902081565b60055481565b610c1d611664565b610c3a604051610c2c90611f45565b604051809103902082610bda565b610c565760405162461bcd60e51b81526004016106db906121a4565b610c73604051610c6590611f45565b604051809103902082611460565b6040516001600160a01b038216907f10e1f7ce9fd7d1b90a66d13a2ab3cb8dd7f29f3f8d520b143b063ccfbab6906b90600090a25060048054600019019055565b600081565b600a6020526000908152604090205481565b610cd3611953565b68ffffffffffffffffff60ff8516600885811b68ffffffffffffffff001691909117918216600090815260209182526040808220868352835290819020815160c08101835281548152600182015481850152600282018054845181870281018701865281815292959394860193830182828015610d7957602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610d5b575b5050505050815260200160038201805480602002602001604051908101604052809291908181526020018280548015610ddb57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610dbd575b5050509183525050600482015460209091019060ff166002811115610dfc57fe5b6002811115610e0757fe5b81526020016005820154815250509150509392505050565b60025460ff1681565b610e3061171e565b610e3861168b565b60008381526007602090815260408083205490516001600160a01b039091169291610e699184918791879101611ef9565b60408051601f19818403018152918152815160209283012068ffffffffffffffff0060088a811b9190911660ff8c161768ffffffffffffffffff8116600090815291855283822083835285528382208a83526007909552929020549093509091906001600160a01b0316610eef5760405162461bcd60e51b81526004016106db9061242d565b600481015460019060ff166002811115610f0557fe5b1115610f235760405162461bcd60e51b81526004016106db906124b3565b68ffffffffffffffffff82166000908152600960209081526040808320868452825280832033845290915290205460ff1615610f715760405162461bcd60e51b81526004016106db90612147565b600481015460ff166002811115610f8457fe5b611108576005805460019081019091556040805160c08101825289815260208101869052815183815280830183529092918301918160200160208202803683375050508152604080516000808252602080830184528085019290925260018385018190524360609095019490945268ffffffffffffffffff87168152600882528281208882528252829020845181558482015193810193909355908301518051611034926002850192019061198b565b506060820151805161105091600384019160209091019061198b565b50608082015160048201805460ff1916600183600281111561106e57fe5b021790555060a08201518160050155905050338160020160008154811061109157fe5b600091825260209091200180546001600160a01b0319166001600160a01b03929092169190911790556001886001600160401b03168a60ff167f803c5a12f6bde629cea32e63d4b92d1b560816a6fb72e939d3c89e1cab6504178a876040516110fb92919061200c565b60405180910390a4611153565b8060010154831461112b5760405162461bcd60e51b81526004016106db90612402565b600281018054600181018255600091825260209091200180546001600160a01b031916331790555b68ffffffffffffffffff8216600090815260096020908152604080832086845282528083203384529091529020805460ff19166001179055600481015460ff16600281111561119e57fe5b886001600160401b03168a60ff167f25f8daaa4635a7729927ba3f5b3d59cc3320aca7c32c9db4e7ca7b95743436408a6040516111db9190611fbb565b60405180910390a4600354600282015410610ac157806001015483146112135760405162461bcd60e51b81526004016106db9061220b565b6004818101805460ff1916600217905581546000818152600760205260409081902054905163712467f960e11b81526001600160a01b0390911692839263e248cff292611264928c918c9101612044565b600060405180830381600087803b15801561127e57600080fd5b505af1158015611292573d6000803e3d6000fd5b50505050600482015460ff1660028111156112a957fe5b896001600160401b03168b60ff167f803c5a12f6bde629cea32e63d4b92d1b560816a6fb72e939d3c89e1cab650417856000015486600101546040516112f092919061200c565b60405180910390a450505050505050505050565b60008181526001602052604081206108d490611749565b61132a6040516106b190611f25565b6113465760405162461bcd60e51b81526004016106db90612277565b6000828152600760205260409081902080546001600160a01b0319166001600160a01b0386169081179091559051635c7d1b9b60e11b815284919063b8fa3736906113979086908690600401611fc4565b600060405180830381600087803b1580156113b157600080fd5b505af11580156113c5573d6000803e3d6000fd5b5050505050505050565b6113d7611664565b6113e6604051610c2c90611f45565b156114035760405162461bcd60e51b81526004016106db90612328565b61142060405161141290611f45565b60405180910390208261070f565b6040516001600160a01b038216907f03580ee9f53a62b7cb409a2cb56f9be87747dd15017afc5cef6eef321e4fb2c590600090a250600480546001019055565b60008281526001602052604090206002015461147e906104bb611582565b61078f5760405162461bcd60e51b81526004016106db906122ae565b60035481565b6114af6040516106b190611f25565b6114cb5760405162461bcd60e51b81526004016106db90612277565b6000848152600760205260409081902080546001600160a01b0319166001600160a01b0388169081179091559051635dd40c2d60e11b815286919063bba8185a90611520908890889088908890600401611fdb565b600060405180830381600087803b15801561153a57600080fd5b505af115801561154e573d6000803e3d6000fd5b50505050505050505050565b604051610c0490611f5d565b604051610c0490611f25565b61157a611664565b610b08611754565b3390565b60008281526001602052604090206115a4908263ffffffff61179616565b15610753576115b1611582565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600160205260409020611613908263ffffffff6117ab16565b1561075357611620611582565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b61166f600033610bda565b610b085760405162461bcd60e51b81526004016106db906123cb565b60005460ff1615610b085760405162461bcd60e51b81526004016106db906122fe565b6116b661168b565b6000805460ff191660011790556040517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258906116f3903390611f78565b60405180910390a1565b6000610bd383836117c0565b6000610bd3836001600160a01b038416611805565b61172d6040516106b190611f45565b610b085760405162461bcd60e51b81526004016106db90612396565b60006108d48261181d565b61175c611821565b6000805460ff191690556040517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa906116f3903390611f78565b6000610bd3836001600160a01b038416611843565b6000610bd3836001600160a01b03841661188d565b815460009082106117e35760405162461bcd60e51b81526004016106db906120b6565b8260000182815481106117f257fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60005460ff16610b085760405162461bcd60e51b81526004016106db90612176565b600061184f8383611805565b611885575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108d4565b5060006108d4565b6000818152600183016020526040812054801561194957835460001980830191908101906000908790839081106118c057fe5b90600052602060002001549050808760000184815481106118dd57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061190d57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108d4565b60009150506108d4565b6040805160c0810182526000808252602082018190526060928201839052828201929092529060808201908152602001600081525090565b8280548282559060005260206000209081019282156119e0579160200282015b828111156119e057825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906119ab565b506119ec9291506119f0565b5090565b6108e191905b808211156119ec5780546001600160a01b03191681556001016119f6565b60008083601f840112611a25578182fd5b5081356001600160401b03811115611a3b578182fd5b6020830191508360208083028501011115611a5557600080fd5b9250929050565b60008083601f840112611a6d578182fd5b5081356001600160401b03811115611a83578182fd5b602083019150836020828501011115611a5557600080fd5b803560ff811681146108d457600080fd5b600060208284031215611abd578081fd5b8135610bd381612586565b60008060408385031215611ada578081fd5b8235611ae581612586565b91506020830135611af581612586565b809150509250929050565b60008060008060808587031215611b15578182fd5b8435611b2081612586565b93506020850135611b3081612586565b92506040850135611b4081612586565b9396929550929360600135925050565b600080600060608486031215611b64578283fd5b8335611b6f81612586565b9250602084013591506040840135611b8681612586565b809150509250925092565b600080600080600060a08688031215611ba8578081fd5b8535611bb381612586565b9450602086013593506040860135611bca81612586565b92506060860135611bda8161259b565b91506080860135611bea8161259b565b809150509295509295909350565b60008060008060408587031215611c0d578384fd5b84356001600160401b0380821115611c23578586fd5b611c2f88838901611a14565b90965094506020870135915080821115611c47578384fd5b50611c5487828801611a14565b95989497509550505050565b600060208284031215611c71578081fd5b5035919050565b60008060408385031215611c8a578182fd5b823591506020830135611af581612586565b60008060408385031215611cae578182fd5b50508035926020909101359150565b60008060408385031215611ccf578081fd5b8235611cda816125b1565b946020939093013593505050565b600080600060608486031215611cfc578081fd5b8335611b6f816125b1565b600060208284031215611d18578081fd5b610bd38383611a9b565b60008060008060008060808789031215611d3a578384fd5b611d448888611a9b565b95506020870135945060408701356001600160401b0380821115611d66578586fd5b611d728a838b01611a5c565b90965094506060890135915080821115611d8a578283fd5b50611d9789828a01611a5c565b979a9699509497509295939492505050565b60008060408385031215611dbb578182fd5b611cda8484611a9b565b600080600060608486031215611dd9578081fd5b611de38585611a9b565b925060208401356001600160401b0381168114611dfe578182fd5b929592945050506040919091013590565b600080600080600060808688031215611e26578283fd5b853560ff81168114611e36578384fd5b945060208601356001600160401b038082168214611e52578485fd5b9094506040870135935060608701359080821115611e6e578283fd5b50611e7b88828901611a5c565b969995985093965092949392505050565b6000815180845260208085019450808401835b83811015611ec45781516001600160a01b031687529582019590820190600101611e9f565b509495945050505050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b60006bffffffffffffffffffffffff198560601b16825282846014840137910160140190815292915050565b735245534f555243455f5345545445525f524f4c4560601b815260140190565b6b52454c415945525f524f4c4560a01b8152600c0190565b6e4645455f5345545445525f524f4c4560881b8152600f0190565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b901515815260200190565b90815260200190565b9182526001600160a01b0316602082015260400190565b9384526001600160a01b039290921660208401526001600160e01b0319908116604084015216606082015260800190565b918252602082015260400190565b84815260208101849052608081016003841061203257fe5b60408201939093526060015292915050565b60008482526040602083015261205e604083018486611ecf565b95945050505050565b86815260ff861660208201526001600160401b03851660408201526001600160a01b038416606082015260a0608082018190526000906120aa9083018486611ecf565b98975050505050505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b6020808252601590820152741c995b185e595c88185b1c9958591e481d9bdd1959605a1b604082015260600190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601f908201527f6164647220646f65736e277420686176652072656c6179657220726f6c652100604082015260600190565b602080825260169082015275125b98dbdc9c9958dd08199959481cdd5c1c1b1a595960521b604082015260600190565b6020808252601b908201527f6461746120646f65736e2774206d617463682064617461686173680000000000604082015260600190565b6020808252818101527f7265736f757263654944206e6f74206d617070656420746f2068616e646c6572604082015260600190565b6020808252601d908201527f73656e646572206973206e6f74207265736f7572636520736574746572000000604082015260600190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601e908201527f6164647220616c7265616479206861732072656c6179657220726f6c65210000604082015260600190565b60208082526018908201527f73656e646572206973206e6f7420666565207365747465720000000000000000604082015260600190565b6020808252818101527f73656e64657220646f65736e277420686176652072656c6179657220726f6c65604082015260600190565b6020808252601e908201527f73656e64657220646f65736e277420686176652061646d696e20726f6c650000604082015260600190565b6020808252601190820152700c8c2e8c2d0c2e6d040dad2e6dac2e8c6d607b1b604082015260600190565b60208082526019908201527f6e6f2068616e646c657220666f72207265736f75726365494400000000000000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b60208082526019908201527f70726f706f73616c20616c726561647920657865637574656400000000000000604082015260600190565b6000602082528251602083015260208301516040830152604083015160c0606084015261251a60e0840182611e8c565b6060850151848203601f1901608086015291506125378183611e8c565b608086015192506003831061254857fe5b8260a086015260a086015160c086015280935050505092915050565b6001600160401b0391909116815260200190565b60ff91909116815260200190565b6001600160a01b038116811461090257600080fd5b6001600160e01b03198116811461090257600080fd5b68ffffffffffffffffff8116811461090257600080fdfea2646970667358221220b7ebd09932f48ad275308380a929adf67c8d5a022fe627ef0c0a546f83f5132164736f6c63430006040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000cc35215953725637c433404c01546c49a0ba6a1000000000000000000000000c5e370bf1f1013d913df3acfd5a79d2af8bc88ba0000000000000000000000004f4d8d40eaa65b2dbe7cf9f6e7fb0c807e1ed6540000000000000000000000001e6a269fe265c44eb18ab6633c3137be48e8c898
-----Decoded View---------------
Arg [0] : chainID (uint8): 1
Arg [1] : initialRelayers (address[]): 0x0cc35215953725637c433404C01546c49A0ba6A1,0xC5e370bF1F1013D913dF3AcFd5A79d2aF8BC88bA,0x4f4d8D40EAa65b2dbE7cF9f6E7fb0c807e1Ed654,0x1e6a269fE265c44Eb18AB6633C3137be48E8C898
Arg [2] : initialRelayerThreshold (uint256): 2
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 0000000000000000000000000cc35215953725637c433404c01546c49a0ba6a1
Arg [5] : 000000000000000000000000c5e370bf1f1013d913df3acfd5a79d2af8bc88ba
Arg [6] : 0000000000000000000000004f4d8d40eaa65b2dbe7cf9f6e7fb0c807e1ed654
Arg [7] : 0000000000000000000000001e6a269fe265c44eb18ab6633c3137be48e8c898
Deployed Bytecode Sourcemap
479:15915:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;10948:132:4;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;10948:132:4;;;;;;;;:::i;:::-;;3826:112:1;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;3826:112:1;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;4188:223;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;4188:223:1;;;;;;;;:::i;5362:205::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;5362:205:1;;;;;;;;:::i;16180:211:4:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;16180:211:4;;;;;;;;:::i;1011:46::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;1011:46:4;;;;;;;;:::i;:::-;;;;;;;;6111:176;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;6111:176:4;;;;;;;;:::i;1233:65::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;1233:65:4;;;;;;;;:::i;:::-;;;;;;;;;;;4715:119;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;4715:119:4;;;;;;;;:::i;:::-;;;;;;;;889:76:9;;5:9:-1;2:2;;;27:1;24;17:12;2:2;889:76:9;;;:::i;5085:170:4:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;5085:170:4;;;;;;;;:::i;12317:676::-;;;;;;;;;:::i;11448:304::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;11448:304:4;;;;;;;;:::i;1383:90::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;1383:90:4;;;;;;;;:::i;606:29::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;606:29:4;;;:::i;5443:75::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;5443:75:4;;;:::i;1100:62::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;1100:62:4;;;;;;;;:::i;:::-;;;;;;;;9723:209;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;9723:209:4;;;;;;;;:::i;3509:136:1:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;3509:136:1;;;;;;;;:::i;2494:137::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;2494:137:1;;;;;;;;:::i;2264:64:4:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2264:64:4;;;:::i;641:30::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;641:30:4;;;:::i;7178:290::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;7178:290:4;;;;;;;;:::i;1684:49:1:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1684:49:1;;;:::i;1520:38:4:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;1520:38:4;;;;;;;;:::i;10515:258::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;10515:258:4;;;;;;;;:::i;:::-;;;;;;;;539:23;;5:9:-1;2:2;;;27:1;24;17:12;2:2;539:23:4;;;:::i;:::-;;;;;;;;13645:2145;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;13645:2145:4;;;;;;;;:::i;2799:125:1:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;2799:125:1;;;;;;;;:::i;8009:307:4:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;8009:307:4;;;;;;;;:::i;6588:284::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;6588:284:4;;;;;;;;:::i;4645:226:1:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;4645:226:1;;;;;;;;:::i;568:32:4:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;568:32:4;;;:::i;8864:468::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;8864:468:4;;;;;;;;:::i;2334:70::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2334:70:4;;;:::i;2410:80::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2410:80:4;;;:::i;5708:79::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;5708:79:4;;;:::i;10948:132::-;2765:36;2376:28;;;;;;;;;;;;;;2790:10;2765:7;:36::i;:::-;2757:73;;;;-1:-1:-1;;;2757:73:4;;;;;;;;;;;;;;;;;11039:25:::1;::::0;;::::1;;::::0;;;:5:::1;:25;::::0;;;;:34;10948:132::o;3826:112:1:-;3883:7;3909:12;;;:6;:12;;;;;:22;;;;3826:112::o;4188:223::-;4279:12;;;;:6;:12;;;;;:22;;;4271:45;;4303:12;:10;:12::i;4271:45::-;4263:105;;;;-1:-1:-1;;;4263:105:1;;;;;;;;;4379:25;4390:4;4396:7;4379:10;:25::i;:::-;4188:223;;:::o;5362:205::-;5459:12;:10;:12::i;:::-;-1:-1:-1;;;;;5448:23:1;:7;-1:-1:-1;;;;;5448:23:1;;5440:83;;;;-1:-1:-1;;;5440:83:1;;;;;;;;;5534:26;5546:4;5552:7;5534:11;:26::i;16180:211:4:-;2528:12;:10;:12::i;:::-;16296:6:::1;16291:94;16308:16:::0;;::::1;16291:94;;;16345:5;;16351:1;16345:8;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;16345:17:4::1;:29;16363:7;;16371:1;16363:10;;;;;;;;;;;;;16345:29;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;16326:3:4::1;;16291:94;;;;16180:211:::0;;;;:::o;1011:46::-;;;;;;;;;;;;-1:-1:-1;;;;;1011:46:4;;:::o;6111:176::-;2528:12;:10;:12::i;:::-;6196:17:::1;:32:::0;;;6243:37:::1;::::0;6216:12;;6243:37:::1;::::0;;;::::1;6111:176:::0;:::o;1233:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4715:119::-;4774:4;4797:30;2303:25;;;;;;;;;;;;;;4819:7;4797;:30::i;:::-;4790:37;4715:119;-1:-1:-1;;4715:119:4:o;889:76:9:-;928:4;951:7;;;889:76;;:::o;5085:170:4:-;2528:12;:10;:12::i;:::-;5155:39:::1;1729:4:1;5185:8:4::0;5155:9:::1;:39::i;:::-;5204:44;1729:4:1;5237:10:4;5204:12;:44::i;:::-;5085:170:::0;:::o;12317:676::-;1186:16:9;:14;:16::i;:::-;12488:25:4::1;::::0;::::1;;::::0;;;:5:::1;:25;::::0;;;;;12475:9:::1;:38;12467:73;;;;-1:-1:-1::0;;;12467:73:4::1;;;;;;;;;12551:15;12569:39:::0;;;:27:::1;:39;::::0;;;;;-1:-1:-1;;;;;12569:39:4::1;12626:21:::0;12618:66:::1;;;;-1:-1:-1::0;;;12618:66:4::1;;;;;;;;;12719:34;::::0;::::1;12695:19;12719:34:::0;;;:14:::1;:34;::::0;;;;;;12717:36;;-1:-1:-1;;12717:36:4;::::1;::::0;-1:-1:-1;;;;;12717:36:4;;::::1;;::::0;;::::1;;::::0;;;12831:86;;-1:-1:-1;;;12831:86:4;;12813:7;;-1:-1:-1;;;;;12831:22:4;::::1;::::0;::::1;::::0;:86:::1;::::0;12854:10;;12719:34;;12717:36;;12900:10:::1;::::0;12912:4;;;;12831:86:::1;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;12831:86:4;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;12831:86:4;;;;12973:12;-1:-1:-1::0;;;;;12933:53:4::1;12961:10;12941:18;12933:53;;;;;;;;;;;;1212:1:9;;;12317:676:4::0;;;;;;:::o;11448:304::-;2528:12;:10;:12::i;:::-;11687:58:::1;::::0;-1:-1:-1;;;11687:58:4;;11662:14;;-1:-1:-1;;;;;11687:16:4;::::1;::::0;::::1;::::0;:58:::1;::::0;11704:12;;11718:9;;11729:15;;11687:58:::1;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;11687:58:4;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;11687:58:4;;;;2550:1;11448:304:::0;;;;:::o;1383:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;606:29::-;;;;:::o;5443:75::-;2528:12;:10;:12::i;:::-;5503:8:::1;:6;:8::i;:::-;5443:75::o:0;1100:62::-;;;;;;;;;;;;-1:-1:-1;;;;;1100:62:4;;:::o;9723:209::-;2902:41;2457:33;;;;;;2902:41;2894:83;;;;-1:-1:-1;;;2894:83:4;;;;;;;;;9892:33:::1;::::0;-1:-1:-1;;;9892:33:4;;9867:14;;-1:-1:-1;;;;;9892:19:4;::::1;::::0;::::1;::::0;:33:::1;::::0;9912:12;;9892:33:::1;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;9892:33:4;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;9892:33:4;;;;2987:1;9723:209:::0;;:::o;3509:136:1:-;3582:7;3608:12;;;:6;:12;;;;;:30;;3632:5;3608:30;:23;:30;:::i;:::-;3601:37;3509:136;-1:-1:-1;;;3509:136:1:o;2494:137::-;2563:4;2586:12;;;:6;:12;;;;;:38;;2616:7;2586:38;:29;:38;:::i;2264:64:4:-;2303:25;;;;;;;;;;;;;;2264:64;:::o;641:30::-;;;;:::o;7178:290::-;2528:12;:10;:12::i;:::-;7267:37:::1;2303:25;;;;;;;;;;;;;;7289:14;7267:7;:37::i;:::-;7259:81;;;;-1:-1:-1::0;;;7259:81:4::1;;;;;;;;;7350:40;2303:25;;;;;;;;;;;;;;7375:14;7350:10;:40::i;:::-;7405:30;::::0;-1:-1:-1;;;;;7405:30:4;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;7445:14:4::1;:16:::0;;-1:-1:-1;;7445:16:4;;;7178:290::o;1684:49:1:-;1729:4;1684:49;:::o;1520:38:4:-;;;;;;;;;;;;;:::o;10515:258::-;10619:15;;:::i;:::-;10667:25;10696:21;;;10691:1;10667:25;;;;;10666:51;;;;10734:22;;;10646:17;10734:22;;;;;;;;;;;:32;;;;;;;;;10727:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10734:32;;10727:39;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10727:39:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10727:39:4;;;;;;;;;;;;;;;;-1:-1:-1;;;10727:39:4;;;-1:-1:-1;;10727:39:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10515:258;;;;;:::o;539:23::-;;;;;;:::o;13645:2145::-;2683:15;:13;:15::i;:::-;1186:16:9::1;:14;:16::i;:::-;13790:15:4::2;13808:39:::0;;;:27:::2;:39;::::0;;;;;;;;13886:31;;-1:-1:-1;;;;;13808:39:4;;::::2;::::0;13790:15;13886:31:::2;::::0;13808:39;;13912:4;;;;13886:31:::2;;;;;::::0;;-1:-1:-1;;26:21;;::::2;22:32:::0;6:49;;13886:31:4;;;13876:42;;49:4:-1::2;13876:42:4::0;;::::2;::::0;13950:25;13974:1:::2;13950:25:::0;;;;;;;13979:15:::2;::::0;::::2;13949:45;13950:25;14032:22:::0;::::2;13929:17;14032:22:::0;;;;;;;;;:32;;;;;;;;14083:39;;;:27:::2;:39:::0;;;;;;;13876:42;;-1:-1:-1;13949:45:4;;14032:32;-1:-1:-1;;;;;14083:39:4::2;14075:91;;;;-1:-1:-1::0;;;14075:91:4::2;;;;;;;;;14189:16;::::0;::::2;::::0;14210:1:::2;::::0;14189:16:::2;;14184:22;::::0;::::2;;;;;;:27;;14176:65;;;;-1:-1:-1::0;;;14176:65:4::2;;;;;;;;;14260:31;::::0;::::2;;::::0;;;:19:::2;:31;::::0;;;;;;;:41;;;;;;;;14302:10:::2;14260:53:::0;;;;;;;;::::2;;14259:54;14251:88;;;;-1:-1:-1::0;;;14251:88:4::2;;;;;;;;;14359:16;::::0;::::2;::::0;::::2;;14354:22;::::0;::::2;;;;;;14350:708;;14399:15;14397:17:::0;;::::2;::::0;;::::2;::::0;;;14463:295:::2;::::0;;::::2;::::0;::::2;::::0;;;;;::::2;::::0;::::2;::::0;;;14582:16;;;;;;;::::2;::::0;;14463:295;;;;;;14582:16:::2;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;-1:-1:::0;;;14463:295:4;;14627:16:::2;::::0;;14641:1:::2;14627:16:::0;;;14463:295:::2;14627:16:::0;;::::2;::::0;;14463:295;;::::2;::::0;;;;14671:21:::2;14463:295:::0;;;;;;14727:12:::2;14463:295:::0;;;;;;;;14428:22:::2;::::0;::::2;::::0;;:10:::2;:22:::0;;;;;:32;;;;;;;;:330;;;;;;::::2;::::0;;;::::2;::::0;;;;;;::::2;::::0;;;::::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;14428:330:4::2;::::0;::::2;::::0;;;::::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;14428:330:4::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;;-1:-1:-1;;14428:330:4::2;::::0;;::::2;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;14797:10;14773:8;:18;;14792:1;14773:21;;;;;;;;;::::0;;;::::2;::::0;;;::::2;:34:::0;;-1:-1:-1;;;;;;14773:34:4::2;-1:-1:-1::0;;;;;14773:34:4;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;14849:12:4::2;-1:-1:-1::0;;;;;14826:81:4::2;14840:7;14826:81;;;14886:10;14898:8;14826:81;;;;;;;;;;;;;;;;14350:708;;;14958:8;:18;;;14946:8;:30;14938:60;;;;-1:-1:-1::0;;;14938:60:4::2;;;;;;;;;15012:18;::::0;::::2;27:10:-1::0;;39:1:::2;23:18:::0;::::2;45:23:::0;;-1:-1;15012:35:4;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;;;;15012:35:4::2;15036:10;15012:35;::::0;;14350:708:::2;15076:31;::::0;::::2;;::::0;;;:19:::2;:31;::::0;;;;;;;:41;;;;;;;;15118:10:::2;15076:53:::0;;;;;;;:60;;-1:-1:-1;;15076:60:4::2;15132:4;15076:60;::::0;;15187:16:::2;::::0;::::2;::::0;15076:60:::2;15187:16;15151:65;::::0;::::2;;;;;;15173:12;-1:-1:-1::0;;;;;15151:65:4::2;15164:7;15151:65;;;15205:10;15151:65;;;;;;;;;;;;;;;15310:17;::::0;15281:18:::2;::::0;::::2;:25:::0;:46:::2;15277:507;;15363:8;:18;;;15351:8;:30;15343:70;;;;-1:-1:-1::0;;;15343:70:4::2;;;;;;;;;15428:16;::::0;;::::2;:42:::0;;-1:-1:-1;;15428:42:4::2;15447:23;15428:42;::::0;;15562:20;;-1:-1:-1;15534:49:4;;;:27:::2;:49;::::0;;;;;;;15599:58;;-1:-1:-1;;;15599:58:4;;-1:-1:-1;;;;;15534:49:4;;::::2;::::0;;;15599:30:::2;::::0;:58:::2;::::0;15652:4;;;;15599:58:::2;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::2;2:2;15599:58:4;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;-1:-1:::0;;;;15714:16:4::2;::::0;::::2;::::0;::::2;;15677:96;::::0;::::2;;;;;;15700:12;-1:-1:-1::0;;;;;15677:96:4::2;15691:7;15677:96;;;15732:8;:20;;;15754:8;:18;;;15677:96;;;;;;;;;;;;;;;;15277:507;1212:1:9;;;;13645:2145:4::0;;;;;:::o;2799:125:1:-;2862:7;2888:12;;;:6;:12;;;;;:29;;:27;:29::i;8009:307:4:-;2902:41;2457:33;;;;;;2902:41;2894:83;;;;-1:-1:-1;;;2894:83:4;;;;;;;;;8139:39:::1;::::0;;;:27:::1;:39;::::0;;;;;;:56;;-1:-1:-1;;;;;;8139:56:4::1;-1:-1:-1::0;;;;;8139:56:4;::::1;::::0;;::::1;::::0;;;8264:45;;-1:-1:-1;;;8264:45:4;;8139:56;;;8264:19:::1;::::0;:45:::1;::::0;8139:39;;8296:12;;8264:45:::1;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;8264:45:4;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;8264:45:4;;;;2987:1;8009:307:::0;;;:::o;6588:284::-;2528:12;:10;:12::i;:::-;6675:37:::1;2303:25;;;;;;6675:37;6674:38;6666:81;;;;-1:-1:-1::0;;;6666:81:4::1;;;;;;;;;6757:39;2303:25;;;;;;;;;;;;;;6781:14;6757:9;:39::i;:::-;6811:28;::::0;-1:-1:-1;;;;;6811:28:4;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;6849:14:4::1;:16:::0;;::::1;;::::0;;6588:284::o;4645:226:1:-;4737:12;;;;:6;:12;;;;;:22;;;4729:45;;4761:12;:10;:12::i;4729:45::-;4721:106;;;;-1:-1:-1;;;4721:106:1;;;;;;;;568:32:4;;;;:::o;8864:468::-;2902:41;2457:33;;;;;;2902:41;2894:83;;;;-1:-1:-1;;;2894:83:4;;;;;;;;;9104:39:::1;::::0;;;:27:::1;:39;::::0;;;;;;:56;;-1:-1:-1;;;;;;9104:56:4::1;-1:-1:-1::0;;;;;9104:56:4;::::1;::::0;;::::1;::::0;;;9237:88;;-1:-1:-1;;;9237:88:4;;9104:56;;;9237:19:::1;::::0;:88:::1;::::0;9104:39;;9269:15;;9286:18;;9306;;9237:88:::1;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;9237:88:4;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;9237:88:4;;;;2987:1;8864:468:::0;;;;;:::o;2334:70::-;2376:28;;;;;;2410:80;2457:33;;;;;;5708:79;2528:12;:10;:12::i;:::-;5770:10:::1;:8;:10::i;735:104:0:-:0;822:10;735:104;:::o;6449:184:1:-;6522:12;;;;:6;:12;;;;;:33;;6547:7;6522:33;:24;:33;:::i;:::-;6518:109;;;6603:12;:10;:12::i;:::-;-1:-1:-1;;;;;6576:40:1;6594:7;-1:-1:-1;;;;;6576:40:1;6588:4;6576:40;;;;;;;;;;6449:184;;:::o;6639:188::-;6713:12;;;;:6;:12;;;;;:36;;6741:7;6713:36;:27;:36;:::i;:::-;6709:112;;;6797:12;:10;:12::i;:::-;-1:-1:-1;;;;;6770:40:1;6788:7;-1:-1:-1;;;;;6770:40:1;6782:4;6770:40;;;;;;;;;;6639:188;;:::o;3199:134:4:-;3252:39;1729:4:1;3280:10:4;3252:7;:39::i;:::-;3244:82;;;;-1:-1:-1;;;3244:82:4;;;;;;;;1226:93:9;1284:7;;;;1283:8;1275:37;;;;-1:-1:-1;;;1275:37:9;;;;;;;;1802:113;1186:16;:14;:16::i;:::-;1861:7:::1;:14:::0;;-1:-1:-1;;1861:14:9::1;1871:4;1861:14;::::0;;1890:18:::1;::::0;::::1;::::0;::::1;::::0;1897:10:::1;::::0;1890:18:::1;;;;;;;;;;1802:113::o:0;6052:147:3:-;6126:7;6168:22;6172:3;6184:5;6168:3;:22::i;5368:156::-;5448:4;5471:46;5481:3;-1:-1:-1;;;;;5501:14:3;;5471:9;:46::i;3339:133:4:-;3395:33;2303:25;;;;;;3395:33;3387:78;;;;-1:-1:-1;;;3387:78:4;;;;;;;;5605:115:3;5668:7;5694:19;5702:3;5694:7;:19::i;2047:115:9:-;1537:13;:11;:13::i;:::-;2115:5:::1;2105:15:::0;;-1:-1:-1;;2105:15:9::1;::::0;;2135:20:::1;::::0;::::1;::::0;::::1;::::0;2144:10:::1;::::0;2135:20:::1;;4831:141:3::0;4901:4;4924:41;4929:3;-1:-1:-1;;;;;4949:14:3;;4924:4;:41::i;5140:147::-;5213:4;5236:44;5244:3;-1:-1:-1;;;;;5264:14:3;;5236:7;:44::i;4390:201::-;4484:18;;4457:7;;4484:26;-1:-1:-1;4476:73:3;;;;-1:-1:-1;;;4476:73:3;;;;;;;;;4566:3;:11;;4578:5;4566:18;;;;;;;;;;;;;;;;4559:25;;4390:201;;;;:::o;3743:127::-;3816:4;3839:19;;;:12;;;;;:19;;;;;;:24;;;3743:127::o;3951:107::-;4033:18;;3951:107::o;1574:93:9:-;1628:7;;;;1620:40;;;;-1:-1:-1;;;1620:40:9;;;;;;;;1578:404:3;1641:4;1662:21;1672:3;1677:5;1662:9;:21::i;:::-;1657:319;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;1699:11:3;:23;;;;;;;;;;;;;1879:18;;1857:19;;;:12;;;:19;;;;;;:40;;;;1911:11;;1657:319;-1:-1:-1;1960:5:3;1953:12;;2150:1512;2216:4;2353:19;;;:12;;;:19;;;;;;2387:15;;2383:1273;;2816:18;;-1:-1:-1;;2768:14:3;;;;2816:22;;;;2744:21;;2816:3;;:22;;3098;;;;;;;;;;;;;;3078:42;;3241:9;3212:3;:11;;3224:13;3212:26;;;;;;;;;;;;;;;;;;;:38;;;;3316:23;;;3358:1;3316:12;;;:23;;;;;;3342:17;;;3316:43;;3465:17;;3316:3;;3465:17;;;;;;;;;;;;;;;;;;;;;;3557:3;:12;;:19;3570:5;3557:19;;;;;;;;;;;3550:26;;;3598:4;3591:11;;;;;;;;2383:1273;3640:5;3633:12;;;;;479:15915:4;;;;;;;;;-1:-1:-1;479:15915:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;479:15915:4;-1:-1:-1;;;;;479:15915:4;;;;;;;;;;;-1:-1:-1;479:15915:4;;;;;;;-1:-1:-1;479:15915:4;;;-1:-1:-1;479:15915:4;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;;479:15915:4;;;;;;;321:360:-1;;;459:3;452:4;444:6;440:17;436:27;426:2;;-1:-1;;467:12;426:2;-1:-1;497:20;;-1:-1;;;;;526:30;;523:2;;;-1:-1;;559:12;523:2;603:4;595:6;591:17;579:29;;654:3;603:4;;638:6;634:17;595:6;620:32;;617:41;614:2;;;671:1;;661:12;614:2;419:262;;;;;;1353:336;;;1467:3;1460:4;1452:6;1448:17;1444:27;1434:2;;-1:-1;;1475:12;1434:2;-1:-1;1505:20;;-1:-1;;;;;1534:30;;1531:2;;;-1:-1;;1567:12;1531:2;1611:4;1603:6;1599:17;1587:29;;1662:3;1611:4;1642:17;1603:6;1628:32;;1625:41;1622:2;;;1679:1;;1669:12;2104:126;2169:20;;40090:4;40079:16;;42245:33;;42235:2;;42292:1;;42282:12;2237:241;;2341:2;2329:9;2320:7;2316:23;2312:32;2309:2;;;-1:-1;;2347:12;2309:2;85:6;72:20;97:33;124:5;97:33;;2749:366;;;2870:2;2858:9;2849:7;2845:23;2841:32;2838:2;;;-1:-1;;2876:12;2838:2;85:6;72:20;97:33;124:5;97:33;;;2928:63;-1:-1;3028:2;3067:22;;72:20;97:33;72:20;97:33;;;3036:63;;;;2832:283;;;;;;3122:617;;;;;3277:3;3265:9;3256:7;3252:23;3248:33;3245:2;;;-1:-1;;3284:12;3245:2;85:6;72:20;97:33;124:5;97:33;;;3336:63;-1:-1;3436:2;3475:22;;72:20;97:33;72:20;97:33;;;3444:63;-1:-1;3544:2;3583:22;;72:20;97:33;72:20;97:33;;;3239:500;;;;-1:-1;3552:63;;3652:2;3691:22;1764:20;;-1:-1;;3239:500;3746:491;;;;3884:2;3872:9;3863:7;3859:23;3855:32;3852:2;;;-1:-1;;3890:12;3852:2;85:6;72:20;97:33;124:5;97:33;;;3942:63;-1:-1;4042:2;4081:22;;1134:20;;-1:-1;4150:2;4189:22;;72:20;97:33;72:20;97:33;;;4158:63;;;;3846:391;;;;;;4244:739;;;;;;4414:3;4402:9;4393:7;4389:23;4385:33;4382:2;;;-1:-1;;4421:12;4382:2;85:6;72:20;97:33;124:5;97:33;;;4473:63;-1:-1;4573:2;4612:22;;1134:20;;-1:-1;4681:2;4720:22;;72:20;97:33;72:20;97:33;;;4689:63;-1:-1;4789:2;4827:22;;1270:20;1295:32;1270:20;1295:32;;;4797:62;-1:-1;4896:3;4935:22;;1270:20;1295:32;1270:20;1295:32;;;4905:62;;;;4376:607;;;;;;;;;4990:694;;;;;5189:2;5177:9;5168:7;5164:23;5160:32;5157:2;;;-1:-1;;5195:12;5157:2;5253:17;5240:31;-1:-1;;;;;5291:18;5283:6;5280:30;5277:2;;;-1:-1;;5313:12;5277:2;5351:88;5431:7;5422:6;5411:9;5407:22;5351:88;;;5341:98;;-1:-1;5341:98;-1:-1;5504:2;5489:18;;5476:32;;-1:-1;5517:30;;;5514:2;;;-1:-1;;5550:12;5514:2;;5588:80;5660:7;5651:6;5640:9;5636:22;5588:80;;;5151:533;;;;-1:-1;5578:90;-1:-1;;;;5151:533;5691:241;;5795:2;5783:9;5774:7;5770:23;5766:32;5763:2;;;-1:-1;;5801:12;5763:2;-1:-1;1134:20;;5757:175;-1:-1;5757:175;5939:366;;;6060:2;6048:9;6039:7;6035:23;6031:32;6028:2;;;-1:-1;;6066:12;6028:2;1147:6;1134:20;6118:63;;6218:2;6261:9;6257:22;72:20;97:33;124:5;97:33;;6312:366;;;6433:2;6421:9;6412:7;6408:23;6404:32;6401:2;;;-1:-1;;6439:12;6401:2;-1:-1;;1134:20;;;6591:2;6630:22;;;1764:20;;-1:-1;6395:283;6933:364;;;7053:2;7041:9;7032:7;7028:23;7024:32;7021:2;;;-1:-1;;7059:12;7021:2;2048:6;2035:20;2060:32;2086:5;2060:32;;;7111:62;7210:2;7249:22;;;;1134:20;;-1:-1;;;7015:282;7304:489;;;;7441:2;7429:9;7420:7;7416:23;7412:32;7409:2;;;-1:-1;;7447:12;7409:2;2048:6;2035:20;2060:32;2086:5;2060:32;;7800:237;;7902:2;7890:9;7881:7;7877:23;7873:32;7870:2;;;-1:-1;;7908:12;7870:2;7970:51;8013:7;7989:22;7970:51;;8044:861;;;;;;;8235:3;8223:9;8214:7;8210:23;8206:33;8203:2;;;-1:-1;;8242:12;8203:2;8304:51;8347:7;8323:22;8304:51;;;8294:61;;8392:2;8435:9;8431:22;1134:20;8400:63;;8528:2;8517:9;8513:18;8500:32;-1:-1;;;;;8552:18;8544:6;8541:30;8538:2;;;-1:-1;;8574:12;8538:2;8612:64;8668:7;8659:6;8648:9;8644:22;8612:64;;;8602:74;;-1:-1;8602:74;-1:-1;8741:2;8726:18;;8713:32;;-1:-1;8754:30;;;8751:2;;;-1:-1;;8787:12;8751:2;;8825:64;8881:7;8872:6;8861:9;8857:22;8825:64;;;8197:708;;;;-1:-1;8197:708;;-1:-1;8197:708;;8815:74;;8197:708;-1:-1;;;8197:708;8912:362;;;9031:2;9019:9;9010:7;9006:23;9002:32;8999:2;;;-1:-1;;9037:12;8999:2;9099:51;9142:7;9118:22;9099:51;;9281:485;;;;9416:2;9404:9;9395:7;9391:23;9387:32;9384:2;;;-1:-1;;9422:12;9384:2;9484:51;9527:7;9503:22;9484:51;;;9474:61;;9572:2;9614:9;9610:22;1900:20;-1:-1;;;;;42029:5;39872:30;42005:5;42002:34;41992:2;;-1:-1;;42040:12;41992:2;9378:388;;9580:62;;-1:-1;;;9679:2;9718:22;;;;1134:20;;9378:388;9773:735;;;;;;9944:3;9932:9;9923:7;9919:23;9915:33;9912:2;;;-1:-1;;9951:12;9912:2;2182:6;2169:20;40090:4;42271:5;40079:16;42248:5;42245:33;42235:2;;-1:-1;;42282:12;42235:2;10003:61;-1:-1;10101:2;10139:22;;1900:20;-1:-1;;;;;39872:30;;;42002:34;;41992:2;;-1:-1;;42040:12;41992:2;10109:62;;-1:-1;10208:2;10247:22;;1134:20;;-1:-1;10344:2;10329:18;;10316:32;;10357:30;;;10354:2;;;-1:-1;;10390:12;10354:2;;10428:64;10484:7;10475:6;10464:9;10460:22;10428:64;;;9906:602;;;;-1:-1;9906:602;;-1:-1;10418:74;;;9906:602;-1:-1;;;9906:602;11266:654;;11441:5;37950:12;38223:6;38218:3;38211:19;38260:4;;38255:3;38251:14;11453:83;;38260:4;11603:5;37808:14;-1:-1;11642:256;11667:6;11664:1;11661:13;11642:256;;;11728:13;;-1:-1;;;;;39666:54;10907:37;;10669:14;;;;38076;;;;537:18;11682:9;11642:256;;;-1:-1;11904:10;;11376:544;-1:-1;;;;;11376:544;12409:297;;38223:6;38218:3;38211:19;40717:6;40712:3;38260:4;38255:3;38251:14;40694:30;-1:-1;38260:4;40764:6;38255:3;40755:16;;40748:27;38260:4;41071:7;;41075:2;12692:6;41055:14;41051:28;38255:3;12661:39;;12654:46;;12509:197;;;;;;22921:421;;41162:14;;39670:5;41166:2;41162:14;;11172:3;11165:58;40717:6;40712:3;23193:2;23188:3;23184:12;40694:30;40755:16;;23193:2;40755:16;40748:27;;;40755:16;23084:258;-1:-1;;23084:258;23349:372;-1:-1;;;16091:43;;16075:2;16153:12;;23529:192;23728:372;-1:-1;;;19206:35;;19190:2;19260:12;;23908:192;24107:372;-1:-1;;;19889:38;;19873:2;19946:12;;24287:192;24486:213;-1:-1;;;;;39666:54;;;;10907:37;;24604:2;24589:18;;24575:124;24942:435;-1:-1;;;;;39666:54;;;10907:37;;39666:54;;;;25280:2;25265:18;;10907:37;25363:2;25348:18;;12100:37;;;;25116:2;25101:18;;25087:290;25384:201;39199:13;;39192:21;11993:34;;25496:2;25481:18;;25467:118;25592:213;12100:37;;;25710:2;25695:18;;25681:124;25812:324;12100:37;;;-1:-1;;;;;39666:54;26122:2;26107:18;;10907:37;25958:2;25943:18;;25929:207;26143:539;12100:37;;;-1:-1;;;;;39666:54;;;;26506:2;26491:18;;10907:37;-1:-1;;;;;;39365:78;;;26587:2;26572:18;;12338:36;39365:78;26668:2;26653:18;;12338:36;26341:3;26326:19;;26312:370;26689:324;12100:37;;;26999:2;26984:18;;12100:37;26835:2;26820:18;;26806:207;27020:579;12100:37;;;27403:2;27388:18;;12100:37;;;27238:3;27223:19;;41281:1;41271:12;;41261:2;;41287:9;41261:2;27502;27487:18;;13132:66;;;;27585:2;27570:18;12100:37;27209:390;;-1:-1;;27209:390;27606:428;;12130:5;12107:3;12100:37;27780:2;27898;27887:9;27883:18;27876:48;27938:86;27780:2;27769:9;27765:18;28010:6;28002;27938:86;;;27930:94;27751:283;-1:-1;;;;;27751:283;28041:767;12100:37;;;40090:4;40079:16;;28462:2;28447:18;;22874:35;-1:-1;;;;;39872:30;;28543:2;28528:18;;22759:36;-1:-1;;;;;39666:54;;28634:2;28619:18;;10776:58;39677:42;28671:3;28656:19;;28649:49;;;28041:767;;28712:86;;28286:19;;28784:6;28776;28712:86;;;28704:94;28272:536;-1:-1;;;;;;;;28272:536;28815:407;29006:2;29020:47;;;13600:2;28991:18;;;38211:19;13636:34;38251:14;;;13616:55;-1:-1;;;13691:12;;;13684:26;13729:12;;;28977:245;29229:407;29420:2;29434:47;;;13980:2;29405:18;;;38211:19;14016:34;38251:14;;;13996:55;-1:-1;;;14071:12;;;14064:39;14122:12;;;29391:245;29643:407;29834:2;29848:47;;;14373:2;29819:18;;;38211:19;-1:-1;;;38251:14;;;14389:44;14452:12;;;29805:245;30057:407;30248:2;30262:47;;;14703:2;30233:18;;;38211:19;-1:-1;;;38251:14;;;14719:43;14781:12;;;30219:245;30471:407;30662:2;30676:47;;;15032:2;30647:18;;;38211:19;15068:33;38251:14;;;15048:54;15121:12;;;30633:245;30885:407;31076:2;31090:47;;;15372:2;31061:18;;;38211:19;-1:-1;;;38251:14;;;15388:45;15452:12;;;31047:245;31299:407;31490:2;31504:47;;;15703:2;31475:18;;;38211:19;15739:29;38251:14;;;15719:50;15788:12;;;31461:245;31713:407;31904:2;31918:47;;;31889:18;;;38211:19;16440:34;38251:14;;;16420:55;16494:12;;;31875:245;32127:407;32318:2;32332:47;;;16745:2;32303:18;;;38211:19;16781:31;38251:14;;;16761:52;16832:12;;;32289:245;32541:407;32732:2;32746:47;;;17083:2;32717:18;;;38211:19;17119:34;38251:14;;;17099:55;-1:-1;;;17174:12;;;17167:40;17226:12;;;32703:245;32955:407;33146:2;33160:47;;;17477:2;33131:18;;;38211:19;-1:-1;;;38251:14;;;17493:39;17551:12;;;33117:245;33369:407;33560:2;33574:47;;;17802:2;33545:18;;;38211:19;17838:32;38251:14;;;17818:53;17890:12;;;33531:245;33783:407;33974:2;33988:47;;;18141:2;33959:18;;;38211:19;18177:26;38251:14;;;18157:47;18223:12;;;33945:245;34197:407;34388:2;34402:47;;;34373:18;;;38211:19;18510:34;38251:14;;;18490:55;18564:12;;;34359:245;34611:407;34802:2;34816:47;;;18815:2;34787:18;;;38211:19;18851:32;38251:14;;;18831:53;18903:12;;;34773:245;35025:407;35216:2;35230:47;;;19511:2;35201:18;;;38211:19;-1:-1;;;38251:14;;;19527:40;19586:12;;;35187:245;35439:407;35630:2;35644:47;;;20197:2;35615:18;;;38211:19;20233:27;38251:14;;;20213:48;20280:12;;;35601:245;35853:407;36044:2;36058:47;;;20531:2;36029:18;;;38211:19;20567:34;38251:14;;;20547:55;-1:-1;;;20622:12;;;20615:39;20673:12;;;36015:245;36267:407;36458:2;36472:47;;;20924:2;36443:18;;;38211:19;20960:27;38251:14;;;20940:48;21007:12;;;36429:245;36681:361;;36849:2;36870:17;36863:47;21318:16;21312:23;36849:2;36838:9;36834:18;12100:37;36849:2;21481:5;21477:16;21471:23;21548:14;36838:9;21548:14;12100:37;21548:14;21640:5;21636:16;21630:23;21239:4;21673:14;36838:9;21673:14;21666:38;21719:99;21230:14;36838:9;21230:14;21799:12;21719:99;;;21673:14;21896:16;;21890:23;21949:14;;;-1:-1;;21949:14;21933;;;21926:38;21890:23;-1:-1;21979:99;21953:4;21890:23;21979:99;;;21933:14;22159:5;22155:16;22149:23;22129:43;;41281:1;41274:5;41271:12;41261:2;;41287:9;41261:2;40338:42;22242:14;36838:9;22242:14;13132:66;22242:14;22339:5;22335:16;22329:23;21239:4;36838:9;22406:14;12100:37;36916:116;;;;;;36820:222;;;;;37269:209;-1:-1;;;;;39872:30;;;;22759:36;;37385:2;37370:18;;37356:122;37485:205;40090:4;40079:16;;;;22874:35;;37599:2;37584:18;;37570:120;41310:117;-1:-1;;;;;39666:54;;41369:35;;41359:2;;41418:1;;41408:12;41698:115;-1:-1;;;;;;39365:78;;41756:34;;41746:2;;41804:1;;41794:12;42066:115;39986:20;42151:5;39975:32;42127:5;42124:34;42114:2;;42172:1;;42162:12
Swarm Source
ipfs://b7ebd09932f48ad275308380a929adf67c8d5a022fe627ef0c0a546f83f51321
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.