Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 5,668 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer Funds | 15714113 | 805 days ago | IN | 0 ETH | 0.00211646 | ||||
Admin Withdraw | 15699162 | 807 days ago | IN | 0 ETH | 0.00051609 | ||||
Admin Withdraw | 15698022 | 807 days ago | IN | 0 ETH | 0.00065601 | ||||
Admin Withdraw | 15698011 | 807 days ago | IN | 0 ETH | 0.00068965 | ||||
Admin Withdraw | 15697948 | 807 days ago | IN | 0 ETH | 0.00062713 | ||||
Admin Withdraw | 15697930 | 807 days ago | IN | 0 ETH | 0.00059425 | ||||
Admin Withdraw | 15697884 | 807 days ago | IN | 0 ETH | 0.0008524 | ||||
Admin Withdraw | 15697875 | 807 days ago | IN | 0 ETH | 0.00065808 | ||||
Admin Withdraw | 15697851 | 807 days ago | IN | 0 ETH | 0.00059646 | ||||
Admin Withdraw | 15697758 | 807 days ago | IN | 0 ETH | 0.00080586 | ||||
Admin Withdraw | 15697726 | 807 days ago | IN | 0 ETH | 0.00131364 | ||||
Admin Withdraw | 15697710 | 807 days ago | IN | 0 ETH | 0.00177205 | ||||
Admin Withdraw | 15697668 | 807 days ago | IN | 0 ETH | 0.00110723 | ||||
Admin Pause Tran... | 15692165 | 808 days ago | IN | 0 ETH | 0.00027551 | ||||
Deposit | 15687236 | 809 days ago | IN | 0.005 ETH | 0.00109434 | ||||
Deposit | 15683809 | 809 days ago | IN | 0.005 ETH | 0.03093303 | ||||
Execute Proposal | 15683717 | 809 days ago | IN | 0 ETH | 0.00065906 | ||||
Execute Proposal | 15683716 | 809 days ago | IN | 0 ETH | 0.00199159 | ||||
Vote Proposal | 15683691 | 809 days ago | IN | 0 ETH | 0.00066515 | ||||
Vote Proposal | 15683690 | 809 days ago | IN | 0 ETH | 0.00192133 | ||||
Vote Proposal | 15683690 | 809 days ago | IN | 0 ETH | 0.00391241 | ||||
Deposit | 15683562 | 809 days ago | IN | 0.005 ETH | 0.00363663 | ||||
Deposit | 15682487 | 809 days ago | IN | 0.005 ETH | 0.00302029 | ||||
Deposit | 15682378 | 809 days ago | IN | 0.005 ETH | 0.00349235 | ||||
Deposit | 15677116 | 810 days ago | IN | 0.005 ETH | 0.00564964 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15714113 | 805 days ago | 0.00522144 ETH | ||||
15714113 | 805 days ago | 1.33900291 ETH | ||||
15714113 | 805 days ago | 0.26706875 ETH | ||||
15714113 | 805 days ago | 1.17695914 ETH | ||||
15714113 | 805 days ago | 1.38174773 ETH | ||||
15693128 | 808 days ago | 0.005 ETH | ||||
15685943 | 809 days ago | 0.005 ETH | ||||
15685943 | 809 days ago | 0.005 ETH | ||||
15685943 | 809 days ago | 0.005 ETH | ||||
15678790 | 810 days ago | 0.005 ETH | ||||
15678790 | 810 days ago | 0.005 ETH | ||||
15678790 | 810 days ago | 0.005 ETH | ||||
15671665 | 811 days ago | 0.005 ETH | ||||
15671665 | 811 days ago | 0.005 ETH | ||||
15671665 | 811 days ago | 0.005 ETH | ||||
15664510 | 812 days ago | 0.005 ETH | ||||
15664510 | 812 days ago | 0.005 ETH | ||||
15664510 | 812 days ago | 0.005 ETH | ||||
15657332 | 813 days ago | 0.005 ETH | ||||
15657332 | 813 days ago | 0.005 ETH | ||||
15657332 | 813 days ago | 0.005 ETH | ||||
15643036 | 815 days ago | 0.005 ETH | ||||
15643036 | 815 days ago | 0.005 ETH | ||||
15643036 | 815 days ago | 0.005 ETH | ||||
15635882 | 816 days ago | 0.005 ETH |
Loading...
Loading
Contract Name:
Bridge
Compiler Version
v0.6.4+commit.1dca32f3
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-11 */ pragma solidity 0.6.4; pragma experimental ABIEncoderV2; /** * @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)); } } /** * @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"); } } /* * @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; } } /** * @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 /** * @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 /** * @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; } } /** @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; } /** @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); } /** @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; function _wtokenAddress() external returns (address); /** @notice Used to update the _bridgeAddress @param newBridgeAddress Address of the updated bridge address. */ function updateBridgeAddress(address newBridgeAddress) external; } interface IERC20HandlerExt { function _resourceIDToTokenContractAddress(bytes32 resourceID) external returns (address); } /** @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 depositFunctionDepositerOffset Depositer address position offset in the metadata, in bytes. @param executeFunctionSig Function signature of method to be called in {contractAddress} when a deposit is executed. */ function setResource( bytes32 resourceID, address contractAddress, bytes4 depositFunctionSig, uint depositFunctionDepositerOffset, bytes4 executeFunctionSig) external; } interface IWETH { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; } /** @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 _totalOperators; uint256 public _totalProposals; uint256 public _fee; uint256 public _expiry; address public _wtokenAddress; enum Vote {No, Yes} enum ProposalStatus {Inactive, Active, Passed, Executed, Cancelled} struct Proposal { bytes32 _resourceID; bytes32 _dataHash; address[] _yesVotes; address[] _noVotes; ProposalStatus _status; uint256 _proposedBlock; } // destinationChainID => number of deposits mapping(uint8 => uint64) public _depositCounts; // destinationID ==> specailFee other than _fee mapping(uint8 => uint256) public _specialFee; // resourceID => handler address mapping(bytes32 => address) public _resourceIDToHandlerAddress; // depositNonce => destinationChainID => bytes mapping(uint64 => mapping(uint8 => bytes)) public _depositRecords; // 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; event RelayerThresholdChanged(uint256 indexed newThreshold); event RelayerAdded(address indexed relayer); event RelayerRemoved(address indexed relayer); event OperatorAdded(address indexed operator); event OperatorRemoved(address indexed operator); 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 OPERATOR_ROLE = keccak256("OPERATOR_ROLE"); modifier onlyAdmin() { _onlyAdmin(); _; } modifier onlyAdminOrRelayer() { _onlyAdminOrRelayer(); _; } modifier onlyRelayers() { _onlyRelayers(); _; } modifier onlyOperators() { _onlyOperators(); _; } modifier onlyAdminOrOperator() { _onlyAdminOrOperator(); _; } function _onlyAdminOrRelayer() private { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender) || hasRole(RELAYER_ROLE, msg.sender), "sender is not relayer or admin"); } function _onlyAdminOrOperator() private { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender) || hasRole(OPERATOR_ROLE, msg.sender), "sender is not operator or admin"); } function _onlyAdmin() private { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "sender doesn't have admin role"); } function _onlyRelayers() private { require(hasRole(RELAYER_ROLE, msg.sender), "sender doesn't have relayer role"); } function _onlyOperators() private { require(hasRole(OPERATOR_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, uint256 initialRelayerThreshold, uint256 fee, uint256 expiry, address wtoken) public { _chainID = chainID; _relayerThreshold = initialRelayerThreshold; _fee = fee; _expiry = expiry; _wtokenAddress = wtoken; _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setRoleAdmin(RELAYER_ROLE, DEFAULT_ADMIN_ROLE); _setRoleAdmin(OPERATOR_ROLE, DEFAULT_ADMIN_ROLE); for (uint256 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 Returns true if {operator} has the operator role. @param operator Address to check. */ function isOperator(address operator) external view returns (bool) { return hasRole(OPERATOR_ROLE, operator); } /** @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 onlyAdminOrOperator { _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 onlyAdminOrOperator { _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(uint256 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 Grants {operatorAddress} the relayer role and increases {_totalOperator} count. @notice Only callable by an address that currently has the admin role. @param operatorAddress Address of operator to be added. @notice Emits {OperatorAdded} event. */ function adminAddOperator(address operatorAddress) external onlyAdmin { require(!hasRole(OPERATOR_ROLE, operatorAddress), "addr already has operator role!"); grantRole(OPERATOR_ROLE, operatorAddress); emit OperatorAdded(operatorAddress); _totalOperators++; } /** @notice Removes operator role for {operatorAddress} and decreases {_totalOperator} count. @notice Only callable by an address that currently has the admin role. @param operatorAddress Address of relayer to be removed. @notice Emits {OperatorRemoved} event. */ function adminRemoveOperator(address operatorAddress) external onlyAdmin { require(hasRole(OPERATOR_ROLE, operatorAddress), "addr doesn't have operator role!"); revokeRole(OPERATOR_ROLE, operatorAddress); emit OperatorRemoved(operatorAddress); _totalOperators--; } /** @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 onlyAdmin { _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, uint256 depositFunctionDepositerOffset, bytes4 executeFunctionSig ) external onlyAdmin { _resourceIDToHandlerAddress[resourceID] = handlerAddress; IGenericHandler handler = IGenericHandler(handlerAddress); handler.setResource(resourceID, contractAddress, depositFunctionSig, depositFunctionDepositerOffset, 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 onlyAdmin { 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 {_fee} will be updated to. */ function adminChangeFee(uint256 newFee) external onlyAdmin { require(_fee != newFee, "Current fee is equal to new fee"); _fee = newFee; } /** @notice Changes deposit fee. @notice Only callable by admin. @param newFee Value {_specialFee} will be updated to. @param chainID Value {_specialFeeChainID} will be updated to */ function adminChangeSpecialFee(uint256 newFee, uint8 chainID) external onlyAdminOrOperator { uint256 current = _specialFee[chainID]; require((current != newFee), "Current special fee equals to the new fee"); _specialFee[chainID] = newFee; } /** @notice Get bridge fee, Returns fee of destionation chainID. @param destinationChainID Value destination chainID @return _fee */ function _getFee(uint8 destinationChainID) internal view returns (uint256) { uint256 special = _specialFee[destinationChainID]; if (special != 0) { return special; } else { return _fee; } } function getFee(uint8 destinationChainID) external view returns (uint256) { return _getFee(destinationChainID); } /** @notice Used to manually withdraw funds from ERC safes. @param handlerAddress Address of handler to withdraw from. @param newBridgeAddress Address of the updated _bridgeAddress. */ function adminUpdateBridgeAddress( address handlerAddress, address newBridgeAddress ) external onlyAdmin { IERCHandler handler = IERCHandler(handlerAddress); handler.updateBridgeAddress(newBridgeAddress); } /** @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. @notice Emits {Deposit} event. */ function deposit(uint8 destinationChainID, bytes32 resourceID, bytes calldata data) external payable whenNotPaused { uint256 fee = _getFee(destinationChainID); require(msg.value == fee, "Incorrect fee supplied"); address handler = _resourceIDToHandlerAddress[resourceID]; require(handler != address(0), "resourceID not mapped to handler"); // resourceId can not be wtoken bytes32 wTokenResourceID = bytes32((uint256(uint160(_wtokenAddress)) << 8) +1); require (wTokenResourceID != resourceID, "wToken is not allowed in ERC20 method"); uint64 depositNonce = ++_depositCounts[destinationChainID]; _depositRecords[depositNonce][destinationChainID] = data; IDepositExecute depositHandler = IDepositExecute(handler); depositHandler.deposit(resourceID, destinationChainID, depositNonce, msg.sender, data); emit Deposit(destinationChainID, resourceID, depositNonce); } /** @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. @notice Emits {Deposit} event. */ function depositETH(uint8 destinationChainID, bytes32 resourceID, bytes calldata data) external payable whenNotPaused { uint256 fee = _getFee(destinationChainID); require(msg.value >= fee, "Insufficient fee supplied"); address handler = _resourceIDToHandlerAddress[resourceID]; require(handler != address(0), "resourceID not mapped to handler"); uint256 value = msg.value - fee; uint256 amount; assembly { amount := calldataload(0x84) } require (amount == value, "msg.value and data mismatched"); address wtokenAddress = IERCHandler(handler)._wtokenAddress(); require(wtokenAddress != address(0), "_wtokenAddress is 0x"); IWETH(wtokenAddress).deposit{value: value}(); IWETH(wtokenAddress).transfer(address(handler), value); uint64 depositNonce = ++_depositCounts[destinationChainID]; _depositRecords[depositNonce][destinationChainID] = data; 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 dataHash Hash of 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, bytes32 dataHash) external onlyRelayers whenNotPaused { 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 passed/executed/cancelled"); 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 { if (sub(block.number, proposal._proposedBlock) > _expiry) { // if the number of blocks that has passed since this proposal was // submitted exceeds the expiry threshold set, cancel the proposal proposal._status = ProposalStatus.Cancelled; emit ProposalEvent(chainID, depositNonce, ProposalStatus.Cancelled, resourceID, dataHash); } else { require(dataHash == proposal._dataHash, "datahash mismatch"); proposal._yesVotes.push(msg.sender); } } if (proposal._status != ProposalStatus.Cancelled) { _hasVotedOnProposal[nonceAndID][dataHash][msg.sender] = true; emit ProposalVote(chainID, depositNonce, proposal._status, resourceID); // If _depositThreshold is set to 1, then auto finalize // or if _relayerThreshold has been exceeded if (_relayerThreshold <= 1 || proposal._yesVotes.length >= _relayerThreshold) { proposal._status = ProposalStatus.Passed; emit ProposalEvent(chainID, depositNonce, ProposalStatus.Passed, resourceID, dataHash); } } } /** @notice Executes a deposit proposal that is considered passed using a specified handler contract. @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 dataHash Hash of data originally provided when deposit was made. @notice Proposal must be past expiry threshold. @notice Emits {ProposalEvent} event with status {Cancelled}. */ function cancelProposal(uint8 chainID, uint64 depositNonce, bytes32 dataHash) public onlyAdminOrRelayer { uint72 nonceAndID = (uint72(depositNonce) << 8) | uint72(chainID); Proposal storage proposal = _proposals[nonceAndID][dataHash]; require(proposal._status != ProposalStatus.Cancelled, "Proposal already cancelled"); require(sub(block.number, proposal._proposedBlock) > _expiry, "Proposal not at expiry threshold"); proposal._status = ProposalStatus.Cancelled; emit ProposalEvent(chainID, depositNonce, ProposalStatus.Cancelled, proposal._resourceID, proposal._dataHash); } /** @notice Executes a deposit proposal that is considered passed using a specified handler contract. @notice Only callable by relayers when Bridge is not paused. @param chainID ID of chain deposit originated from. @param resourceID ResourceID to be used when making deposits. @param depositNonce ID of deposited generated by origin Bridge contract. @param data Data originally provided when deposit was made. @notice Proposal must have Passed status. @notice Hash of {data} must equal proposal's {dataHash}. @notice Emits {ProposalEvent} event with status {Executed}. */ function executeProposal(uint8 chainID, uint64 depositNonce, bytes calldata data, bytes32 resourceID) external onlyRelayers whenNotPaused { address handler = _resourceIDToHandlerAddress[resourceID]; uint72 nonceAndID = (uint72(depositNonce) << 8) | uint72(chainID); bytes32 dataHash = keccak256(abi.encodePacked(handler, data)); Proposal storage proposal = _proposals[nonceAndID][dataHash]; require(proposal._status != ProposalStatus.Inactive, "proposal is not active"); require(proposal._status == ProposalStatus.Passed, "proposal already transferred"); 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 (uint256 i = 0; i < addrs.length; i++) { addrs[i].transfer(amounts[i]); } } }
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"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"wtoken","type":"address"}],"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":true,"internalType":"address","name":"operator","type":"address"}],"name":"OperatorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"}],"name":"OperatorRemoved","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":"OPERATOR_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":"_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":"uint64","name":"","type":"uint64"},{"internalType":"uint8","name":"","type":"uint8"}],"name":"_depositRecords","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_expiry","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fee","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":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"_specialFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalOperators","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"_wtokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operatorAddress","type":"address"}],"name":"adminAddOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"relayerAddress","type":"address"}],"name":"adminAddRelayer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"adminChangeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"adminChangeRelayerThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"},{"internalType":"uint8","name":"chainID","type":"uint8"}],"name":"adminChangeSpecialFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"adminPauseTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operatorAddress","type":"address"}],"name":"adminRemoveOperator","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":"uint256","name":"depositFunctionDepositerOffset","type":"uint256"},{"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":"newBridgeAddress","type":"address"}],"name":"adminUpdateBridgeAddress","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":"chainID","type":"uint8"},{"internalType":"uint64","name":"depositNonce","type":"uint64"},{"internalType":"bytes32","name":"dataHash","type":"bytes32"}],"name":"cancelProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"destinationChainID","type":"uint8"},{"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"destinationChainID","type":"uint8"},{"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"depositETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"chainID","type":"uint8"},{"internalType":"uint64","name":"depositNonce","type":"uint64"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"resourceID","type":"bytes32"}],"name":"executeProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"destinationChainID","type":"uint8"}],"name":"getFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"operator","type":"address"}],"name":"isOperator","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":"bytes32","name":"dataHash","type":"bytes32"}],"name":"voteProposal","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620039f5380380620039f5833981016040819052620000349162000338565b6000805460ff1990811682556002805490911660ff8916179055600385905560078490556008839055600980546001600160a01b0319166001600160a01b0384161790556200008490336200012a565b620000b0604051620000969062000452565b60405190819003902060006001600160e01b036200014316565b620000c2604051620000969062000439565b60005b85518110156200011d576200010a604051620000e19062000452565b6040518091039020878381518110620000f657fe5b60200260200101516200015860201b60201c565b60048054600190810190915501620000c5565b50505050505050620004e0565b6200013f82826001600160e01b03620001b916565b5050565b60009182526001602052604090912060020155565b6000828152600160205260409020600201546200019190620001826001600160e01b036200023d16565b6001600160e01b036200024116565b6200012a5760405162461bcd60e51b8152600401620001b0906200046a565b60405180910390fd5b6000828152600160209081526040909120620001e09183906200224162000270821b17901c565b156200013f57620001f96001600160e01b036200023d16565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b3390565b6000828152600160209081526040822062000267918490620021b362000290821b17901c565b90505b92915050565b600062000267836001600160a01b0384166001600160e01b03620002b016565b600062000267836001600160a01b0384166001600160e01b036200030816565b6000620002c783836001600160e01b036200030816565b620002ff575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200026a565b5060006200026a565b60009081526001919091016020526040902054151590565b80516001600160a01b03811681146200026a57600080fd5b60008060008060008060c0878903121562000351578182fd5b865160ff8116811462000362578283fd5b602088810151919750906001600160401b038082111562000381578485fd5b818a018b601f82011262000393578586fd5b8051925081831115620003a4578586fd5b8383029150620003b6848301620004b9565b8381528481019082860184840187018f1015620003d1578889fd5b8894505b85851015620003ff57620003ea8f8262000320565b835260019490940193918601918601620003d5565b50809a505050505050506040870151935060608701519250608087015191506200042d8860a0890162000320565b90509295509295509295565b6c4f50455241544f525f524f4c4560981b8152600d0190565b6b52454c415945525f524f4c4560a01b8152600c0190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b6040518181016001600160401b0381118282101715620004d857600080fd5b604052919050565b61350580620004f06000396000f3fe6080604052600436106102c95760003560e01c806380ae1c2811610175578063beab7131116100dc578063d547741f11610095578063f5b541a61161006f578063f5b541a614610871578063f69bd04414610886578063febce92c1461089b578063ffaac0eb146108bb576102c9565b8063d547741f14610829578063d7a9cd7914610849578063f179637c1461085e576102c9565b8063beab71311461077d578063c5b37c221461079f578063c5ec8970146107b4578063ca15c873146107c9578063cb10f215146107e9578063cdb0f73a14610809576102c9565b8063926d7d7f1161012e578063926d7d7f146106d157806395b15e98146106e65780639d5773e0146107065780639d82dd631461071b578063a217fddf1461073b578063a9cf69fa14610750576102c9565b806380ae1c281461061c57806384db809f146106315780638c0c2631146106515780639010d07c1461067157806391c404ac1461069157806391d14854146106b1576102c9565b80634b0b919d116102345780635c975abb116101ed5780636d70f7ae116101c75780636d70f7ae146105a7578063780cf004146105c75780637febe63f146105e7578063802aabe814610607576102c9565b80635c975abb146105525780635e1fab0f1461056757806369a8c24614610587576102c9565b80634b0b919d146104665780634e0560051461049357806350598719146104b357806353ec4105146104e3578063541d5548146105055780635a1ad87c14610532576102c9565b80632f2ff15d116102865780632f2ff15d14610399578063320b9006146103b957806336568abe146103d95780633ee7094a146103f95780634454b20d146104265780634603ae3814610446576102c9565b806305e2ca17146102ce578063083132c4146102e357806317f03ce5146103195780631a5ae9ad146103395780631ff013f114610359578063248a9ca314610379575b600080fd5b6102e16102dc366004612920565b6108d0565b005b3480156102ef57600080fd5b506103036102fe366004612905565b610a80565b6040516103109190612bd1565b60405180910390f35b34801561032557600080fd5b506102e161033436600461296c565b610a93565b34801561034557600080fd5b50610303610354366004612905565b610b86565b34801561036557600080fd5b506102e16103743660046129a9565b610b98565b34801561038557600080fd5b50610303610394366004612801565b610faa565b3480156103a557600080fd5b506102e16103b4366004612819565b610fbf565b3480156103c557600080fd5b506102e16103d4366004612602565b611007565b3480156103e557600080fd5b506102e16103f4366004612819565b6110a6565b34801561040557600080fd5b50610419610414366004612887565b6110e8565b6040516103109190612cd0565b34801561043257600080fd5b506102e16104413660046129f8565b61118c565b34801561045257600080fd5b506102e1610461366004612779565b611384565b34801561047257600080fd5b50610486610481366004612905565b611412565b6040516103109190613443565b34801561049f57600080fd5b506102e16104ae366004612801565b61142d565b3480156104bf57600080fd5b506104d36104ce3660046128bb565b611468565b6040516103109493929190612c35565b3480156104ef57600080fd5b506104f86114a0565b6040516103109190612b75565b34801561051157600080fd5b50610525610520366004612602565b6114af565b6040516103109190612bc6565b34801561053e57600080fd5b506102e161054d36600461270a565b6114ce565b34801561055e57600080fd5b50610525611568565b34801561057357600080fd5b506102e1610582366004612602565b611572565b34801561059357600080fd5b506102e16105a236600461285e565b611593565b3480156105b357600080fd5b506105256105c2366004612602565b6115e3565b3480156105d357600080fd5b506102e16105e2366004612679565b6115f4565b3480156105f357600080fd5b506105256106023660046128e6565b611667565b34801561061357600080fd5b5061030361168d565b34801561062857600080fd5b506102e1611693565b34801561063d57600080fd5b506104f861064c366004612801565b6116a5565b34801561065d57600080fd5b506102e161066c366004612641565b6116c0565b34801561067d57600080fd5b506104f861068c36600461283d565b61172d565b34801561069d57600080fd5b506102e16106ac366004612801565b611754565b3480156106bd57600080fd5b506105256106cc366004612819565b611783565b3480156106dd57600080fd5b506103036117a1565b3480156106f257600080fd5b506102e1610701366004612641565b6117b8565b34801561071257600080fd5b506103036117ee565b34801561072757600080fd5b506102e1610736366004612602565b6117f4565b34801561074757600080fd5b50610303611877565b34801561075c57600080fd5b5061077061076b36600461296c565b61187c565b60405161031091906133ca565b34801561078957600080fd5b506107926119cd565b6040516103109190613457565b3480156107ab57600080fd5b506103036119d6565b3480156107c057600080fd5b506103036119dc565b3480156107d557600080fd5b506103036107e4366004612801565b6119e2565b3480156107f557600080fd5b506102e16108043660046126c9565b6119f9565b34801561081557600080fd5b506102e1610824366004612602565b611a8a565b34801561083557600080fd5b506102e1610844366004612819565b611b1b565b34801561085557600080fd5b50610303611b55565b6102e161086c366004612920565b611b5b565b34801561087d57600080fd5b50610303611e6a565b34801561089257600080fd5b50610303611e76565b3480156108a757600080fd5b506102e16108b6366004612602565b611e7c565b3480156108c757600080fd5b506102e1611eff565b6108d8611f0f565b60006108e385611f32565b905080341461090d5760405162461bcd60e51b815260040161090490612edd565b60405180910390fd5b6000848152600c60205260409020546001600160a01b0316806109425760405162461bcd60e51b815260040161090490612fb2565b600954610100600160a81b0360089190911b16600101858114156109785760405162461bcd60e51b815260040161090490612fe7565b60ff87166000818152600a6020908152604080832080546001600160401b0380821660010190811667ffffffffffffffff1990921682179092558452600d83528184209484529390915290206109cf9087876123fe565b506040516338995da960e01b815283906001600160a01b038216906338995da990610a08908b908d90879033908e908e90600401612c81565b600060405180830381600087803b158015610a2257600080fd5b505af1158015610a36573d6000803e3d6000fd5b50505050816001600160401b0316888a60ff167fdbb69440df8433824a026ef190652f29929eb64b4d1d5d2a69be8afe3e6eaed860405160405180910390a4505050505050505050565b6000610a8b82611f32565b90505b919050565b610a9b611f5c565b68ffffffffffffffff00600883901b1660ff8416176001600160481b0381166000908152600e6020908152604080832085845290915290206004808083015460ff1690811115610ae757fe5b1415610b055760405162461bcd60e51b815260040161090490612f44565b600854610b16438360050154611fa6565b11610b335760405162461bcd60e51b81526004016109049061307c565b6004818101805460ff191682179055815460018301546040516001600160401b0388169260ff8a16926000805160206134b083398151915292610b77929190612c27565b60405180910390a45050505050565b600b6020526000908152604090205481565b610ba0611fe8565b610ba8611f0f565b68ffffffffffffffff00600884901b1660ff8516176001600160481b0381166000908152600e602090815260408083208584528252808320868452600c909252909120546001600160a01b0316610c115760405162461bcd60e51b815260040161090490613344565b60048082015460019160ff90911690811115610c2957fe5b1115610c475760405162461bcd60e51b8152600401610904906131f7565b6001600160481b0382166000908152600f60209081526040808320868452825280832033845290915290205460ff1615610c935760405162461bcd60e51b815260040161090490612e49565b60048082015460ff1690811115610ca657fe5b610e1e576006805460019081019091556040805160c0810182528681526020810186905281518381528083018352909291830191816020016020820280368337505050815260408051600080825260208083018452808501929092526001838501819052436060909501949094526001600160481b0387168152600e82528281208882528252829020845181558482015193810193909355908301518051610d54926002850192019061247c565b5060608201518051610d7091600384019160209091019061247c565b5060808201518160040160006101000a81548160ff02191690836004811115610d9557fe5b021790555060a082015181600501559050503381600201600081548110610db857fe5b600091825260209091200180546001600160a01b0319166001600160a01b039290921691909117905560015b856001600160401b03168760ff166000805160206134b08339815191528787604051610e11929190612c27565b60405180910390a4610e94565b600854610e2f438360050154611fa6565b1115610e49576004818101805460ff191682179055610de4565b80600101548314610e6c5760405162461bcd60e51b815260040161090490613319565b600281018054600181018255600091825260209091200180546001600160a01b031916331790555b60048181015460ff1681811115610ea757fe5b14610fa2576001600160481b0382166000908152600f6020908152604080832086845282528083203384529091529020805460ff1916600117905560048082015460ff1690811115610ef557fe5b856001600160401b03168760ff167f25f8daaa4635a7729927ba3f5b3d59cc3320aca7c32c9db4e7ca7b957434364087604051610f329190612bd1565b60405180910390a46001600354111580610f525750600354600282015410155b15610fa25760048101805460ff191660029081179091556040516001600160401b0387169060ff8916906000805160206134b083398151915290610f999089908990612c27565b60405180910390a45b505050505050565b60009081526001602052604090206002015490565b600082815260016020526040902060020154610fdd906106cc612013565b610ff95760405162461bcd60e51b815260040161090490612dfa565b6110038282612017565b5050565b61100f612086565b61102c60405161101e90612b44565b604051809103902082611783565b6110485760405162461bcd60e51b8152600401610904906132e4565b61106560405161105790612b44565b604051809103902082611b1b565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a25060058054600019019055565b6110ae612013565b6001600160a01b0316816001600160a01b0316146110de5760405162461bcd60e51b81526004016109049061337b565b61100382826120ad565b600d6020908152600092835260408084208252918352918190208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156111845780601f1061115957610100808354040283529160200191611184565b820191906000526020600020905b81548152906001019060200180831161116757829003601f168201915b505050505081565b611194611fe8565b61119c611f0f565b6000818152600c602090815260408083205490516001600160a01b039091169268ffffffffffffffff00600889901b1660ff8a16179290916111e49185918991899101612b18565b60408051601f1981840301815291815281516020928301206001600160481b0385166000908152600e84528281208282529093529082209092509060048083015460ff169081111561123257fe5b14156112505760405162461bcd60e51b815260040161090490612d1a565b600260048083015460ff169081111561126557fe5b146112825760405162461bcd60e51b815260040161090490612ce3565b806001015482146112a55760405162461bcd60e51b815260040161090490612f0d565b6004818101805460ff1916600317905581546000818152600c60205260409081902054905163712467f960e11b81526001600160a01b0390911692839263e248cff2926112f6928d918d9101612c5e565b600060405180830381600087803b15801561131057600080fd5b505af1158015611324573d6000803e3d6000fd5b50505060048084015460ff16915081111561133b57fe5b896001600160401b03168b60ff166000805160206134b083398151915285600001548660010154604051611370929190612c27565b60405180910390a450505050505050505050565b61138c612086565b60005b8381101561140b578484828181106113a357fe5b90506020020160208101906113b89190612602565b6001600160a01b03166108fc8484848181106113d057fe5b905060200201359081150290604051600060405180830381858888f19350505050158015611402573d6000803e3d6000fd5b5060010161138f565b5050505050565b600a602052600090815260409020546001600160401b031681565b611435612086565b600381905560405181907fa20d6b84cd798a24038be305eff8a45ca82ef54a2aa2082005d8e14c0a4746c890600090a250565b600e60209081526000928352604080842090915290825290208054600182015460048301546005909301549192909160ff9091169084565b6009546001600160a01b031681565b6000610a8b6040516114c090612b5d565b604051809103902083611783565b6114d6612086565b6000858152600c60205260409081902080546001600160a01b0319166001600160a01b038916908117909155905163de319d9960e01b815287919063de319d999061152d9089908990899089908990600401612bf1565b600060405180830381600087803b15801561154757600080fd5b505af115801561155b573d6000803e3d6000fd5b5050505050505050505050565b60005460ff165b90565b61157a612086565b611585600082610fbf565b6115906000336110a6565b50565b61159b61211c565b60ff81166000908152600b6020526040902054828114156115ce5760405162461bcd60e51b815260040161090490613140565b5060ff166000908152600b6020526040902055565b6000610a8b6040516114c090612b44565b6115fc612086565b604051636ce5768960e11b815284906001600160a01b0382169063d9caed129061162e90879087908790600401612b89565b600060405180830381600087803b15801561164857600080fd5b505af115801561165c573d6000803e3d6000fd5b505050505050505050565b600f60209081526000938452604080852082529284528284209052825290205460ff1681565b60045481565b61169b61211c565b6116a3612158565b565b600c602052600090815260409020546001600160a01b031681565b6116c8612086565b6040516307b7ed9960e01b815282906001600160a01b038216906307b7ed99906116f6908590600401612b75565b600060405180830381600087803b15801561171057600080fd5b505af1158015611724573d6000803e3d6000fd5b50505050505050565b600082815260016020526040812061174b908363ffffffff6121a716565b90505b92915050565b61175c612086565b80600754141561177e5760405162461bcd60e51b8152600401610904906132ad565b600755565b600082815260016020526040812061174b908363ffffffff6121b316565b6040516117ad90612b5d565b604051809103902081565b6117c0612086565b60405163645c8a4b60e01b815282906001600160a01b0382169063645c8a4b906116f6908590600401612b75565b60065481565b6117fc612086565b61180b60405161101e90612b5d565b6118275760405162461bcd60e51b815260040161090490612ea6565b61183660405161105790612b5d565b6040516001600160a01b038216907f10e1f7ce9fd7d1b90a66d13a2ab3cb8dd7f29f3f8d520b143b063ccfbab6906b90600090a25060048054600019019055565b600081565b6118846124dd565b68ffffffffffffffff00600884901b1660ff8516176001600160481b0381166000908152600e60209081526040808320868452825291829020825160c081018452815481526001820154818401526002820180548551818602810186018752818152929593949386019383018282801561192757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611909575b505050505081526020016003820180548060200260200160405190810160405280929190818152602001828054801561198957602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161196b575b505050918352505060048281015460209092019160ff16908111156119aa57fe5b60048111156119b557fe5b81526020016005820154815250509150509392505050565b60025460ff1681565b60075481565b60085481565b6000818152600160205260408120610a8b906121c8565b611a01612086565b6000828152600c60205260409081902080546001600160a01b0319166001600160a01b0386169081179091559051635c7d1b9b60e11b815284919063b8fa373690611a529086908690600401612bda565b600060405180830381600087803b158015611a6c57600080fd5b505af1158015611a80573d6000803e3d6000fd5b5050505050505050565b611a92612086565b611aa160405161101e90612b5d565b15611abe5760405162461bcd60e51b815260040161090490613109565b611adb604051611acd90612b5d565b604051809103902082610fbf565b6040516001600160a01b038216907f03580ee9f53a62b7cb409a2cb56f9be87747dd15017afc5cef6eef321e4fb2c590600090a250600480546001019055565b600082815260016020526040902060020154611b39906106cc612013565b6110de5760405162461bcd60e51b81526004016109049061302c565b60035481565b611b63611f0f565b6000611b6e85611f32565b905080341015611b905760405162461bcd60e51b8152600401610904906131c0565b6000848152600c60205260409020546001600160a01b031680611bc55760405162461bcd60e51b815260040161090490612fb2565b34829003608435808214611beb5760405162461bcd60e51b815260040161090490612d8c565b6000836001600160a01b03166353ec41056040518163ffffffff1660e01b8152600401602060405180830381600087803b158015611c2857600080fd5b505af1158015611c3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c609190612625565b90506001600160a01b038116611c885760405162461bcd60e51b8152600401610904906130db565b806001600160a01b031663d0e30db0846040518263ffffffff1660e01b81526004016000604051808303818588803b158015611cc357600080fd5b505af1158015611cd7573d6000803e3d6000fd5b505060405163a9059cbb60e01b81526001600160a01b038516935063a9059cbb9250611d0a915087908790600401612bad565b602060405180830381600087803b158015611d2457600080fd5b505af1158015611d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5c91906127e1565b5060ff89166000818152600a6020908152604080832080546001600160401b0380821660010190811667ffffffffffffffff1990921682179092558452600d8352818420948452939091529020611db49089896123fe565b506000859050806001600160a01b03166338995da98b8d85338e8e6040518763ffffffff1660e01b8152600401611df096959493929190612c81565b600060405180830381600087803b158015611e0a57600080fd5b505af1158015611e1e573d6000803e3d6000fd5b50505050816001600160401b03168a8c60ff167fdbb69440df8433824a026ef190652f29929eb64b4d1d5d2a69be8afe3e6eaed860405160405180910390a45050505050505050505050565b6040516117ad90612b44565b60055481565b611e84612086565b611e9360405161101e90612b44565b15611eb05760405162461bcd60e51b815260040161090490613189565b611ebf604051611acd90612b44565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250600580546001019055565b611f0761211c565b6116a36121d3565b60005460ff16156116a35760405162461bcd60e51b8152600401610904906130b1565b60ff81166000908152600b60205260408120548015611f52579050610a8e565b5050600754610a8e565b611f67600033611783565b80611f8a5750611f8a604051611f7c90612b5d565b604051809103902033611783565b6116a35760405162461bcd60e51b815260040161090490612dc3565b600061174b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612215565b611ff7604051611f7c90612b5d565b6116a35760405162461bcd60e51b815260040161090490613241565b3390565b6000828152600160205260409020612035908263ffffffff61224116565b1561100357612042612013565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b612091600033611783565b6116a35760405162461bcd60e51b815260040161090490613276565b60008281526001602052604090206120cb908263ffffffff61225616565b15611003576120d8612013565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b612127600033611783565b8061213c575061213c604051611f7c90612b44565b6116a35760405162461bcd60e51b815260040161090490612f7b565b612160611f0f565b6000805460ff191660011790556040517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589061219d903390612b75565b60405180910390a1565b600061174b838361226b565b600061174b836001600160a01b0384166122b0565b6000610a8b826122c8565b6121db6122cc565b6000805460ff191690556040517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9061219d903390612b75565b600081848411156122395760405162461bcd60e51b81526004016109049190612cd0565b505050900390565b600061174b836001600160a01b0384166122ee565b600061174b836001600160a01b038416612338565b8154600090821061228e5760405162461bcd60e51b815260040161090490612d4a565b82600001828154811061229d57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60005460ff166116a35760405162461bcd60e51b815260040161090490612e78565b60006122fa83836122b0565b6123305750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561174e565b50600061174e565b600081815260018301602052604081205480156123f4578354600019808301919081019060009087908390811061236b57fe5b906000526020600020015490508087600001848154811061238857fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806123b857fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061174e565b600091505061174e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061243f5782800160ff1982351617855561246c565b8280016001018555821561246c579182015b8281111561246c578235825591602001919060010190612451565b50612478929150612515565b5090565b8280548282559060005260206000209081019282156124d1579160200282015b828111156124d157825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061249c565b5061247892915061252f565b6040805160c0810182526000808252602082018190526060928201839052828201929092529060808201908152602001600081525090565b61156f91905b80821115612478576000815560010161251b565b61156f91905b808211156124785780546001600160a01b0319168155600101612535565b60008083601f840112612564578182fd5b5081356001600160401b0381111561257a578182fd5b602083019150836020808302850101111561259457600080fd5b9250929050565b60008083601f8401126125ac578182fd5b5081356001600160401b038111156125c2578182fd5b60208301915083602082850101111561259457600080fd5b80356001600160401b038116811461174e57600080fd5b803560ff8116811461174e57600080fd5b600060208284031215612613578081fd5b813561261e8161346f565b9392505050565b600060208284031215612636578081fd5b815161261e8161346f565b60008060408385031215612653578081fd5b823561265e8161346f565b9150602083013561266e8161346f565b809150509250929050565b6000806000806080858703121561268e578182fd5b84356126998161346f565b935060208501356126a98161346f565b925060408501356126b98161346f565b9396929550929360600135925050565b6000806000606084860312156126dd578283fd5b83356126e88161346f565b92506020840135915060408401356126ff8161346f565b809150509250925092565b60008060008060008060c08789031215612722578182fd5b863561272d8161346f565b95506020870135945060408701356127448161346f565b9350606087013561275481613484565b92506080870135915060a087013561276b81613484565b809150509295509295509295565b6000806000806040858703121561278e578384fd5b84356001600160401b03808211156127a4578586fd5b6127b088838901612553565b909650945060208701359150808211156127c8578384fd5b506127d587828801612553565b95989497509550505050565b6000602082840312156127f2578081fd5b8151801515811461261e578182fd5b600060208284031215612812578081fd5b5035919050565b6000806040838503121561282b578182fd5b82359150602083013561266e8161346f565b6000806040838503121561284f578182fd5b50508035926020909101359150565b60008060408385031215612870578182fd5b82359150602083013560ff8116811461266e578182fd5b60008060408385031215612899578182fd5b6128a384846125da565b91506128b284602085016125f1565b90509250929050565b600080604083850312156128cd578182fd5b82356128d88161349a565b946020939093013593505050565b6000806000606084860312156128fa578081fd5b83356126e88161349a565b600060208284031215612916578081fd5b61174b83836125f1565b60008060008060608587031215612935578182fd5b61293f86866125f1565b93506020850135925060408501356001600160401b03811115612960578283fd5b6127d58782880161259b565b600080600060608486031215612980578081fd5b61298a85856125f1565b925061299985602086016125da565b9150604084013590509250925092565b600080600080608085870312156129be578182fd5b6129c886866125f1565b935060208501356001600160401b03811681146129e3578283fd5b93969395505050506040820135916060013590565b600080600080600060808688031215612a0f578283fd5b612a1987876125f1565b9450612a2887602088016125da565b935060408601356001600160401b03811115612a42578384fd5b612a4e8882890161259b565b96999598509660600135949350505050565b6000815180845260208085019450808401835b83811015612a985781516001600160a01b031687529582019590820190600101612a73565b509495945050505050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b60008151808452815b81811015612af257602081850181015186830182015201612ad6565b81811115612b035782602083870101525b50601f01601f19169290920160200192915050565b60006bffffffffffffffffffffffff198560601b16825282846014840137910160140190815292915050565b6c4f50455241544f525f524f4c4560981b8152600d0190565b6b52454c415945525f524f4c4560a01b8152600c0190565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b9182526001600160a01b0316602082015260400190565b9485526001600160a01b039390931660208501526001600160e01b03199182166040850152606084015216608082015260a00190565b918252602082015260400190565b8481526020810184905260808101612c4c84613465565b60408201939093526060015292915050565b600084825260406020830152612c78604083018486612aa3565b95945050505050565b86815260ff861660208201526001600160401b03851660408201526001600160a01b038416606082015260a060808201819052600090612cc49083018486612aa3565b98975050505050505050565b60006020825261174b6020830184612acd565b6020808252601c908201527f70726f706f73616c20616c7265616479207472616e7366657272656400000000604082015260600190565b60208082526016908201527570726f706f73616c206973206e6f742061637469766560501b604082015260600190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601d908201527f6d73672e76616c756520616e642064617461206d69736d617463686564000000604082015260600190565b6020808252601e908201527f73656e646572206973206e6f742072656c61796572206f722061646d696e0000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b6020808252601590820152741c995b185e595c88185b1c9958591e481d9bdd1959605a1b604082015260600190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601f908201527f6164647220646f65736e277420686176652072656c6179657220726f6c652100604082015260600190565b602080825260169082015275125b98dbdc9c9958dd08199959481cdd5c1c1b1a595960521b604082015260600190565b6020808252601b908201527f6461746120646f65736e2774206d617463682064617461686173680000000000604082015260600190565b6020808252601a908201527f50726f706f73616c20616c72656164792063616e63656c6c6564000000000000604082015260600190565b6020808252601f908201527f73656e646572206973206e6f74206f70657261746f72206f722061646d696e00604082015260600190565b6020808252818101527f7265736f757263654944206e6f74206d617070656420746f2068616e646c6572604082015260600190565b60208082526025908201527f77546f6b656e206973206e6f7420616c6c6f77656420696e204552433230206d604082015264195d1a1bd960da1b606082015260800190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b6020808252818101527f50726f706f73616c206e6f7420617420657870697279207468726573686f6c64604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601490820152730beeee8ded6cadc82c8c8e4cae6e640d2e64060f60631b604082015260600190565b6020808252601e908201527f6164647220616c7265616479206861732072656c6179657220726f6c65210000604082015260600190565b60208082526029908201527f43757272656e74207370656369616c2066656520657175616c7320746f20746860408201526865206e65772066656560b81b606082015260800190565b6020808252601f908201527f6164647220616c726561647920686173206f70657261746f7220726f6c652100604082015260600190565b60208082526019908201527f496e73756666696369656e742066656520737570706c69656400000000000000604082015260600190565b6020808252602a908201527f70726f706f73616c20616c7265616479207061737365642f65786563757465646040820152690bd8d85b98d95b1b195960b21b606082015260800190565b6020808252818101527f73656e64657220646f65736e277420686176652072656c6179657220726f6c65604082015260600190565b6020808252601e908201527f73656e64657220646f65736e277420686176652061646d696e20726f6c650000604082015260600190565b6020808252601f908201527f43757272656e742066656520697320657175616c20746f206e65772066656500604082015260600190565b6020808252818101527f6164647220646f65736e27742068617665206f70657261746f7220726f6c6521604082015260600190565b6020808252601190820152700c8c2e8c2d0c2e6d040dad2e6dac2e8c6d607b1b604082015260600190565b60208082526019908201527f6e6f2068616e646c657220666f72207265736f75726365494400000000000000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6000602082528251602083015260208301516040830152604083015160c060608401526133fa60e0840182612a60565b6060850151848203601f1901608086015291506134178183612a60565b6080860151925061342783613465565b8260a086015260a086015160c086015280935050505092915050565b6001600160401b0391909116815260200190565b60ff91909116815260200190565b6005811061159057fe5b6001600160a01b038116811461159057600080fd5b6001600160e01b03198116811461159057600080fd5b6001600160481b038116811461159057600080fdfe803c5a12f6bde629cea32e63d4b92d1b560816a6fb72e939d3c89e1cab650417a264697066735822122022f4b03b3d4f6a35ff0f350adf96fe7a0af96cec26ba9ea0568c2e5d4d39dcb764736f6c63430006040033000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000010e0000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000005000000000000000000000000d33966215c372935858db3c4749dfb62718d0554000000000000000000000000be53970753c7ec7a2fddbc00d65f3f555a249fd90000000000000000000000002b553c1f705b100bf4fa0423c94b3a61721375af000000000000000000000000f6c75ea68bec6205def2c5a4043ab9f4f85bb9ea000000000000000000000000b57df3ac6777b100a92e7bf8f28a1442f79ed1bf
Deployed Bytecode
0x6080604052600436106102c95760003560e01c806380ae1c2811610175578063beab7131116100dc578063d547741f11610095578063f5b541a61161006f578063f5b541a614610871578063f69bd04414610886578063febce92c1461089b578063ffaac0eb146108bb576102c9565b8063d547741f14610829578063d7a9cd7914610849578063f179637c1461085e576102c9565b8063beab71311461077d578063c5b37c221461079f578063c5ec8970146107b4578063ca15c873146107c9578063cb10f215146107e9578063cdb0f73a14610809576102c9565b8063926d7d7f1161012e578063926d7d7f146106d157806395b15e98146106e65780639d5773e0146107065780639d82dd631461071b578063a217fddf1461073b578063a9cf69fa14610750576102c9565b806380ae1c281461061c57806384db809f146106315780638c0c2631146106515780639010d07c1461067157806391c404ac1461069157806391d14854146106b1576102c9565b80634b0b919d116102345780635c975abb116101ed5780636d70f7ae116101c75780636d70f7ae146105a7578063780cf004146105c75780637febe63f146105e7578063802aabe814610607576102c9565b80635c975abb146105525780635e1fab0f1461056757806369a8c24614610587576102c9565b80634b0b919d146104665780634e0560051461049357806350598719146104b357806353ec4105146104e3578063541d5548146105055780635a1ad87c14610532576102c9565b80632f2ff15d116102865780632f2ff15d14610399578063320b9006146103b957806336568abe146103d95780633ee7094a146103f95780634454b20d146104265780634603ae3814610446576102c9565b806305e2ca17146102ce578063083132c4146102e357806317f03ce5146103195780631a5ae9ad146103395780631ff013f114610359578063248a9ca314610379575b600080fd5b6102e16102dc366004612920565b6108d0565b005b3480156102ef57600080fd5b506103036102fe366004612905565b610a80565b6040516103109190612bd1565b60405180910390f35b34801561032557600080fd5b506102e161033436600461296c565b610a93565b34801561034557600080fd5b50610303610354366004612905565b610b86565b34801561036557600080fd5b506102e16103743660046129a9565b610b98565b34801561038557600080fd5b50610303610394366004612801565b610faa565b3480156103a557600080fd5b506102e16103b4366004612819565b610fbf565b3480156103c557600080fd5b506102e16103d4366004612602565b611007565b3480156103e557600080fd5b506102e16103f4366004612819565b6110a6565b34801561040557600080fd5b50610419610414366004612887565b6110e8565b6040516103109190612cd0565b34801561043257600080fd5b506102e16104413660046129f8565b61118c565b34801561045257600080fd5b506102e1610461366004612779565b611384565b34801561047257600080fd5b50610486610481366004612905565b611412565b6040516103109190613443565b34801561049f57600080fd5b506102e16104ae366004612801565b61142d565b3480156104bf57600080fd5b506104d36104ce3660046128bb565b611468565b6040516103109493929190612c35565b3480156104ef57600080fd5b506104f86114a0565b6040516103109190612b75565b34801561051157600080fd5b50610525610520366004612602565b6114af565b6040516103109190612bc6565b34801561053e57600080fd5b506102e161054d36600461270a565b6114ce565b34801561055e57600080fd5b50610525611568565b34801561057357600080fd5b506102e1610582366004612602565b611572565b34801561059357600080fd5b506102e16105a236600461285e565b611593565b3480156105b357600080fd5b506105256105c2366004612602565b6115e3565b3480156105d357600080fd5b506102e16105e2366004612679565b6115f4565b3480156105f357600080fd5b506105256106023660046128e6565b611667565b34801561061357600080fd5b5061030361168d565b34801561062857600080fd5b506102e1611693565b34801561063d57600080fd5b506104f861064c366004612801565b6116a5565b34801561065d57600080fd5b506102e161066c366004612641565b6116c0565b34801561067d57600080fd5b506104f861068c36600461283d565b61172d565b34801561069d57600080fd5b506102e16106ac366004612801565b611754565b3480156106bd57600080fd5b506105256106cc366004612819565b611783565b3480156106dd57600080fd5b506103036117a1565b3480156106f257600080fd5b506102e1610701366004612641565b6117b8565b34801561071257600080fd5b506103036117ee565b34801561072757600080fd5b506102e1610736366004612602565b6117f4565b34801561074757600080fd5b50610303611877565b34801561075c57600080fd5b5061077061076b36600461296c565b61187c565b60405161031091906133ca565b34801561078957600080fd5b506107926119cd565b6040516103109190613457565b3480156107ab57600080fd5b506103036119d6565b3480156107c057600080fd5b506103036119dc565b3480156107d557600080fd5b506103036107e4366004612801565b6119e2565b3480156107f557600080fd5b506102e16108043660046126c9565b6119f9565b34801561081557600080fd5b506102e1610824366004612602565b611a8a565b34801561083557600080fd5b506102e1610844366004612819565b611b1b565b34801561085557600080fd5b50610303611b55565b6102e161086c366004612920565b611b5b565b34801561087d57600080fd5b50610303611e6a565b34801561089257600080fd5b50610303611e76565b3480156108a757600080fd5b506102e16108b6366004612602565b611e7c565b3480156108c757600080fd5b506102e1611eff565b6108d8611f0f565b60006108e385611f32565b905080341461090d5760405162461bcd60e51b815260040161090490612edd565b60405180910390fd5b6000848152600c60205260409020546001600160a01b0316806109425760405162461bcd60e51b815260040161090490612fb2565b600954610100600160a81b0360089190911b16600101858114156109785760405162461bcd60e51b815260040161090490612fe7565b60ff87166000818152600a6020908152604080832080546001600160401b0380821660010190811667ffffffffffffffff1990921682179092558452600d83528184209484529390915290206109cf9087876123fe565b506040516338995da960e01b815283906001600160a01b038216906338995da990610a08908b908d90879033908e908e90600401612c81565b600060405180830381600087803b158015610a2257600080fd5b505af1158015610a36573d6000803e3d6000fd5b50505050816001600160401b0316888a60ff167fdbb69440df8433824a026ef190652f29929eb64b4d1d5d2a69be8afe3e6eaed860405160405180910390a4505050505050505050565b6000610a8b82611f32565b90505b919050565b610a9b611f5c565b68ffffffffffffffff00600883901b1660ff8416176001600160481b0381166000908152600e6020908152604080832085845290915290206004808083015460ff1690811115610ae757fe5b1415610b055760405162461bcd60e51b815260040161090490612f44565b600854610b16438360050154611fa6565b11610b335760405162461bcd60e51b81526004016109049061307c565b6004818101805460ff191682179055815460018301546040516001600160401b0388169260ff8a16926000805160206134b083398151915292610b77929190612c27565b60405180910390a45050505050565b600b6020526000908152604090205481565b610ba0611fe8565b610ba8611f0f565b68ffffffffffffffff00600884901b1660ff8516176001600160481b0381166000908152600e602090815260408083208584528252808320868452600c909252909120546001600160a01b0316610c115760405162461bcd60e51b815260040161090490613344565b60048082015460019160ff90911690811115610c2957fe5b1115610c475760405162461bcd60e51b8152600401610904906131f7565b6001600160481b0382166000908152600f60209081526040808320868452825280832033845290915290205460ff1615610c935760405162461bcd60e51b815260040161090490612e49565b60048082015460ff1690811115610ca657fe5b610e1e576006805460019081019091556040805160c0810182528681526020810186905281518381528083018352909291830191816020016020820280368337505050815260408051600080825260208083018452808501929092526001838501819052436060909501949094526001600160481b0387168152600e82528281208882528252829020845181558482015193810193909355908301518051610d54926002850192019061247c565b5060608201518051610d7091600384019160209091019061247c565b5060808201518160040160006101000a81548160ff02191690836004811115610d9557fe5b021790555060a082015181600501559050503381600201600081548110610db857fe5b600091825260209091200180546001600160a01b0319166001600160a01b039290921691909117905560015b856001600160401b03168760ff166000805160206134b08339815191528787604051610e11929190612c27565b60405180910390a4610e94565b600854610e2f438360050154611fa6565b1115610e49576004818101805460ff191682179055610de4565b80600101548314610e6c5760405162461bcd60e51b815260040161090490613319565b600281018054600181018255600091825260209091200180546001600160a01b031916331790555b60048181015460ff1681811115610ea757fe5b14610fa2576001600160481b0382166000908152600f6020908152604080832086845282528083203384529091529020805460ff1916600117905560048082015460ff1690811115610ef557fe5b856001600160401b03168760ff167f25f8daaa4635a7729927ba3f5b3d59cc3320aca7c32c9db4e7ca7b957434364087604051610f329190612bd1565b60405180910390a46001600354111580610f525750600354600282015410155b15610fa25760048101805460ff191660029081179091556040516001600160401b0387169060ff8916906000805160206134b083398151915290610f999089908990612c27565b60405180910390a45b505050505050565b60009081526001602052604090206002015490565b600082815260016020526040902060020154610fdd906106cc612013565b610ff95760405162461bcd60e51b815260040161090490612dfa565b6110038282612017565b5050565b61100f612086565b61102c60405161101e90612b44565b604051809103902082611783565b6110485760405162461bcd60e51b8152600401610904906132e4565b61106560405161105790612b44565b604051809103902082611b1b565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a25060058054600019019055565b6110ae612013565b6001600160a01b0316816001600160a01b0316146110de5760405162461bcd60e51b81526004016109049061337b565b61100382826120ad565b600d6020908152600092835260408084208252918352918190208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156111845780601f1061115957610100808354040283529160200191611184565b820191906000526020600020905b81548152906001019060200180831161116757829003601f168201915b505050505081565b611194611fe8565b61119c611f0f565b6000818152600c602090815260408083205490516001600160a01b039091169268ffffffffffffffff00600889901b1660ff8a16179290916111e49185918991899101612b18565b60408051601f1981840301815291815281516020928301206001600160481b0385166000908152600e84528281208282529093529082209092509060048083015460ff169081111561123257fe5b14156112505760405162461bcd60e51b815260040161090490612d1a565b600260048083015460ff169081111561126557fe5b146112825760405162461bcd60e51b815260040161090490612ce3565b806001015482146112a55760405162461bcd60e51b815260040161090490612f0d565b6004818101805460ff1916600317905581546000818152600c60205260409081902054905163712467f960e11b81526001600160a01b0390911692839263e248cff2926112f6928d918d9101612c5e565b600060405180830381600087803b15801561131057600080fd5b505af1158015611324573d6000803e3d6000fd5b50505060048084015460ff16915081111561133b57fe5b896001600160401b03168b60ff166000805160206134b083398151915285600001548660010154604051611370929190612c27565b60405180910390a450505050505050505050565b61138c612086565b60005b8381101561140b578484828181106113a357fe5b90506020020160208101906113b89190612602565b6001600160a01b03166108fc8484848181106113d057fe5b905060200201359081150290604051600060405180830381858888f19350505050158015611402573d6000803e3d6000fd5b5060010161138f565b5050505050565b600a602052600090815260409020546001600160401b031681565b611435612086565b600381905560405181907fa20d6b84cd798a24038be305eff8a45ca82ef54a2aa2082005d8e14c0a4746c890600090a250565b600e60209081526000928352604080842090915290825290208054600182015460048301546005909301549192909160ff9091169084565b6009546001600160a01b031681565b6000610a8b6040516114c090612b5d565b604051809103902083611783565b6114d6612086565b6000858152600c60205260409081902080546001600160a01b0319166001600160a01b038916908117909155905163de319d9960e01b815287919063de319d999061152d9089908990899089908990600401612bf1565b600060405180830381600087803b15801561154757600080fd5b505af115801561155b573d6000803e3d6000fd5b5050505050505050505050565b60005460ff165b90565b61157a612086565b611585600082610fbf565b6115906000336110a6565b50565b61159b61211c565b60ff81166000908152600b6020526040902054828114156115ce5760405162461bcd60e51b815260040161090490613140565b5060ff166000908152600b6020526040902055565b6000610a8b6040516114c090612b44565b6115fc612086565b604051636ce5768960e11b815284906001600160a01b0382169063d9caed129061162e90879087908790600401612b89565b600060405180830381600087803b15801561164857600080fd5b505af115801561165c573d6000803e3d6000fd5b505050505050505050565b600f60209081526000938452604080852082529284528284209052825290205460ff1681565b60045481565b61169b61211c565b6116a3612158565b565b600c602052600090815260409020546001600160a01b031681565b6116c8612086565b6040516307b7ed9960e01b815282906001600160a01b038216906307b7ed99906116f6908590600401612b75565b600060405180830381600087803b15801561171057600080fd5b505af1158015611724573d6000803e3d6000fd5b50505050505050565b600082815260016020526040812061174b908363ffffffff6121a716565b90505b92915050565b61175c612086565b80600754141561177e5760405162461bcd60e51b8152600401610904906132ad565b600755565b600082815260016020526040812061174b908363ffffffff6121b316565b6040516117ad90612b5d565b604051809103902081565b6117c0612086565b60405163645c8a4b60e01b815282906001600160a01b0382169063645c8a4b906116f6908590600401612b75565b60065481565b6117fc612086565b61180b60405161101e90612b5d565b6118275760405162461bcd60e51b815260040161090490612ea6565b61183660405161105790612b5d565b6040516001600160a01b038216907f10e1f7ce9fd7d1b90a66d13a2ab3cb8dd7f29f3f8d520b143b063ccfbab6906b90600090a25060048054600019019055565b600081565b6118846124dd565b68ffffffffffffffff00600884901b1660ff8516176001600160481b0381166000908152600e60209081526040808320868452825291829020825160c081018452815481526001820154818401526002820180548551818602810186018752818152929593949386019383018282801561192757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611909575b505050505081526020016003820180548060200260200160405190810160405280929190818152602001828054801561198957602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161196b575b505050918352505060048281015460209092019160ff16908111156119aa57fe5b60048111156119b557fe5b81526020016005820154815250509150509392505050565b60025460ff1681565b60075481565b60085481565b6000818152600160205260408120610a8b906121c8565b611a01612086565b6000828152600c60205260409081902080546001600160a01b0319166001600160a01b0386169081179091559051635c7d1b9b60e11b815284919063b8fa373690611a529086908690600401612bda565b600060405180830381600087803b158015611a6c57600080fd5b505af1158015611a80573d6000803e3d6000fd5b5050505050505050565b611a92612086565b611aa160405161101e90612b5d565b15611abe5760405162461bcd60e51b815260040161090490613109565b611adb604051611acd90612b5d565b604051809103902082610fbf565b6040516001600160a01b038216907f03580ee9f53a62b7cb409a2cb56f9be87747dd15017afc5cef6eef321e4fb2c590600090a250600480546001019055565b600082815260016020526040902060020154611b39906106cc612013565b6110de5760405162461bcd60e51b81526004016109049061302c565b60035481565b611b63611f0f565b6000611b6e85611f32565b905080341015611b905760405162461bcd60e51b8152600401610904906131c0565b6000848152600c60205260409020546001600160a01b031680611bc55760405162461bcd60e51b815260040161090490612fb2565b34829003608435808214611beb5760405162461bcd60e51b815260040161090490612d8c565b6000836001600160a01b03166353ec41056040518163ffffffff1660e01b8152600401602060405180830381600087803b158015611c2857600080fd5b505af1158015611c3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c609190612625565b90506001600160a01b038116611c885760405162461bcd60e51b8152600401610904906130db565b806001600160a01b031663d0e30db0846040518263ffffffff1660e01b81526004016000604051808303818588803b158015611cc357600080fd5b505af1158015611cd7573d6000803e3d6000fd5b505060405163a9059cbb60e01b81526001600160a01b038516935063a9059cbb9250611d0a915087908790600401612bad565b602060405180830381600087803b158015611d2457600080fd5b505af1158015611d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5c91906127e1565b5060ff89166000818152600a6020908152604080832080546001600160401b0380821660010190811667ffffffffffffffff1990921682179092558452600d8352818420948452939091529020611db49089896123fe565b506000859050806001600160a01b03166338995da98b8d85338e8e6040518763ffffffff1660e01b8152600401611df096959493929190612c81565b600060405180830381600087803b158015611e0a57600080fd5b505af1158015611e1e573d6000803e3d6000fd5b50505050816001600160401b03168a8c60ff167fdbb69440df8433824a026ef190652f29929eb64b4d1d5d2a69be8afe3e6eaed860405160405180910390a45050505050505050505050565b6040516117ad90612b44565b60055481565b611e84612086565b611e9360405161101e90612b44565b15611eb05760405162461bcd60e51b815260040161090490613189565b611ebf604051611acd90612b44565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250600580546001019055565b611f0761211c565b6116a36121d3565b60005460ff16156116a35760405162461bcd60e51b8152600401610904906130b1565b60ff81166000908152600b60205260408120548015611f52579050610a8e565b5050600754610a8e565b611f67600033611783565b80611f8a5750611f8a604051611f7c90612b5d565b604051809103902033611783565b6116a35760405162461bcd60e51b815260040161090490612dc3565b600061174b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612215565b611ff7604051611f7c90612b5d565b6116a35760405162461bcd60e51b815260040161090490613241565b3390565b6000828152600160205260409020612035908263ffffffff61224116565b1561100357612042612013565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b612091600033611783565b6116a35760405162461bcd60e51b815260040161090490613276565b60008281526001602052604090206120cb908263ffffffff61225616565b15611003576120d8612013565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b612127600033611783565b8061213c575061213c604051611f7c90612b44565b6116a35760405162461bcd60e51b815260040161090490612f7b565b612160611f0f565b6000805460ff191660011790556040517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589061219d903390612b75565b60405180910390a1565b600061174b838361226b565b600061174b836001600160a01b0384166122b0565b6000610a8b826122c8565b6121db6122cc565b6000805460ff191690556040517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9061219d903390612b75565b600081848411156122395760405162461bcd60e51b81526004016109049190612cd0565b505050900390565b600061174b836001600160a01b0384166122ee565b600061174b836001600160a01b038416612338565b8154600090821061228e5760405162461bcd60e51b815260040161090490612d4a565b82600001828154811061229d57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60005460ff166116a35760405162461bcd60e51b815260040161090490612e78565b60006122fa83836122b0565b6123305750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561174e565b50600061174e565b600081815260018301602052604081205480156123f4578354600019808301919081019060009087908390811061236b57fe5b906000526020600020015490508087600001848154811061238857fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806123b857fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061174e565b600091505061174e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061243f5782800160ff1982351617855561246c565b8280016001018555821561246c579182015b8281111561246c578235825591602001919060010190612451565b50612478929150612515565b5090565b8280548282559060005260206000209081019282156124d1579160200282015b828111156124d157825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061249c565b5061247892915061252f565b6040805160c0810182526000808252602082018190526060928201839052828201929092529060808201908152602001600081525090565b61156f91905b80821115612478576000815560010161251b565b61156f91905b808211156124785780546001600160a01b0319168155600101612535565b60008083601f840112612564578182fd5b5081356001600160401b0381111561257a578182fd5b602083019150836020808302850101111561259457600080fd5b9250929050565b60008083601f8401126125ac578182fd5b5081356001600160401b038111156125c2578182fd5b60208301915083602082850101111561259457600080fd5b80356001600160401b038116811461174e57600080fd5b803560ff8116811461174e57600080fd5b600060208284031215612613578081fd5b813561261e8161346f565b9392505050565b600060208284031215612636578081fd5b815161261e8161346f565b60008060408385031215612653578081fd5b823561265e8161346f565b9150602083013561266e8161346f565b809150509250929050565b6000806000806080858703121561268e578182fd5b84356126998161346f565b935060208501356126a98161346f565b925060408501356126b98161346f565b9396929550929360600135925050565b6000806000606084860312156126dd578283fd5b83356126e88161346f565b92506020840135915060408401356126ff8161346f565b809150509250925092565b60008060008060008060c08789031215612722578182fd5b863561272d8161346f565b95506020870135945060408701356127448161346f565b9350606087013561275481613484565b92506080870135915060a087013561276b81613484565b809150509295509295509295565b6000806000806040858703121561278e578384fd5b84356001600160401b03808211156127a4578586fd5b6127b088838901612553565b909650945060208701359150808211156127c8578384fd5b506127d587828801612553565b95989497509550505050565b6000602082840312156127f2578081fd5b8151801515811461261e578182fd5b600060208284031215612812578081fd5b5035919050565b6000806040838503121561282b578182fd5b82359150602083013561266e8161346f565b6000806040838503121561284f578182fd5b50508035926020909101359150565b60008060408385031215612870578182fd5b82359150602083013560ff8116811461266e578182fd5b60008060408385031215612899578182fd5b6128a384846125da565b91506128b284602085016125f1565b90509250929050565b600080604083850312156128cd578182fd5b82356128d88161349a565b946020939093013593505050565b6000806000606084860312156128fa578081fd5b83356126e88161349a565b600060208284031215612916578081fd5b61174b83836125f1565b60008060008060608587031215612935578182fd5b61293f86866125f1565b93506020850135925060408501356001600160401b03811115612960578283fd5b6127d58782880161259b565b600080600060608486031215612980578081fd5b61298a85856125f1565b925061299985602086016125da565b9150604084013590509250925092565b600080600080608085870312156129be578182fd5b6129c886866125f1565b935060208501356001600160401b03811681146129e3578283fd5b93969395505050506040820135916060013590565b600080600080600060808688031215612a0f578283fd5b612a1987876125f1565b9450612a2887602088016125da565b935060408601356001600160401b03811115612a42578384fd5b612a4e8882890161259b565b96999598509660600135949350505050565b6000815180845260208085019450808401835b83811015612a985781516001600160a01b031687529582019590820190600101612a73565b509495945050505050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b60008151808452815b81811015612af257602081850181015186830182015201612ad6565b81811115612b035782602083870101525b50601f01601f19169290920160200192915050565b60006bffffffffffffffffffffffff198560601b16825282846014840137910160140190815292915050565b6c4f50455241544f525f524f4c4560981b8152600d0190565b6b52454c415945525f524f4c4560a01b8152600c0190565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b9182526001600160a01b0316602082015260400190565b9485526001600160a01b039390931660208501526001600160e01b03199182166040850152606084015216608082015260a00190565b918252602082015260400190565b8481526020810184905260808101612c4c84613465565b60408201939093526060015292915050565b600084825260406020830152612c78604083018486612aa3565b95945050505050565b86815260ff861660208201526001600160401b03851660408201526001600160a01b038416606082015260a060808201819052600090612cc49083018486612aa3565b98975050505050505050565b60006020825261174b6020830184612acd565b6020808252601c908201527f70726f706f73616c20616c7265616479207472616e7366657272656400000000604082015260600190565b60208082526016908201527570726f706f73616c206973206e6f742061637469766560501b604082015260600190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601d908201527f6d73672e76616c756520616e642064617461206d69736d617463686564000000604082015260600190565b6020808252601e908201527f73656e646572206973206e6f742072656c61796572206f722061646d696e0000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b6020808252601590820152741c995b185e595c88185b1c9958591e481d9bdd1959605a1b604082015260600190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601f908201527f6164647220646f65736e277420686176652072656c6179657220726f6c652100604082015260600190565b602080825260169082015275125b98dbdc9c9958dd08199959481cdd5c1c1b1a595960521b604082015260600190565b6020808252601b908201527f6461746120646f65736e2774206d617463682064617461686173680000000000604082015260600190565b6020808252601a908201527f50726f706f73616c20616c72656164792063616e63656c6c6564000000000000604082015260600190565b6020808252601f908201527f73656e646572206973206e6f74206f70657261746f72206f722061646d696e00604082015260600190565b6020808252818101527f7265736f757263654944206e6f74206d617070656420746f2068616e646c6572604082015260600190565b60208082526025908201527f77546f6b656e206973206e6f7420616c6c6f77656420696e204552433230206d604082015264195d1a1bd960da1b606082015260800190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b6020808252818101527f50726f706f73616c206e6f7420617420657870697279207468726573686f6c64604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601490820152730beeee8ded6cadc82c8c8e4cae6e640d2e64060f60631b604082015260600190565b6020808252601e908201527f6164647220616c7265616479206861732072656c6179657220726f6c65210000604082015260600190565b60208082526029908201527f43757272656e74207370656369616c2066656520657175616c7320746f20746860408201526865206e65772066656560b81b606082015260800190565b6020808252601f908201527f6164647220616c726561647920686173206f70657261746f7220726f6c652100604082015260600190565b60208082526019908201527f496e73756666696369656e742066656520737570706c69656400000000000000604082015260600190565b6020808252602a908201527f70726f706f73616c20616c7265616479207061737365642f65786563757465646040820152690bd8d85b98d95b1b195960b21b606082015260800190565b6020808252818101527f73656e64657220646f65736e277420686176652072656c6179657220726f6c65604082015260600190565b6020808252601e908201527f73656e64657220646f65736e277420686176652061646d696e20726f6c650000604082015260600190565b6020808252601f908201527f43757272656e742066656520697320657175616c20746f206e65772066656500604082015260600190565b6020808252818101527f6164647220646f65736e27742068617665206f70657261746f7220726f6c6521604082015260600190565b6020808252601190820152700c8c2e8c2d0c2e6d040dad2e6dac2e8c6d607b1b604082015260600190565b60208082526019908201527f6e6f2068616e646c657220666f72207265736f75726365494400000000000000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6000602082528251602083015260208301516040830152604083015160c060608401526133fa60e0840182612a60565b6060850151848203601f1901608086015291506134178183612a60565b6080860151925061342783613465565b8260a086015260a086015160c086015280935050505092915050565b6001600160401b0391909116815260200190565b60ff91909116815260200190565b6005811061159057fe5b6001600160a01b038116811461159057600080fd5b6001600160e01b03198116811461159057600080fd5b6001600160481b038116811461159057600080fdfe803c5a12f6bde629cea32e63d4b92d1b560816a6fb72e939d3c89e1cab650417a264697066735822122022f4b03b3d4f6a35ff0f350adf96fe7a0af96cec26ba9ea0568c2e5d4d39dcb764736f6c63430006040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000010e0000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000005000000000000000000000000d33966215c372935858db3c4749dfb62718d0554000000000000000000000000be53970753c7ec7a2fddbc00d65f3f555a249fd90000000000000000000000002b553c1f705b100bf4fa0423c94b3a61721375af000000000000000000000000f6c75ea68bec6205def2c5a4043ab9f4f85bb9ea000000000000000000000000b57df3ac6777b100a92e7bf8f28a1442f79ed1bf
-----Decoded View---------------
Arg [0] : chainID (uint8): 1
Arg [1] : initialRelayers (address[]): 0xD33966215C372935858DB3C4749dFb62718D0554,0xbe53970753c7EC7A2fddbC00D65F3f555a249FD9,0x2B553c1f705b100bF4FA0423c94b3a61721375af,0xf6C75eA68BeC6205deF2C5a4043ab9f4f85bb9ea,0xb57df3ac6777b100A92e7BF8F28A1442F79ed1Bf
Arg [2] : initialRelayerThreshold (uint256): 1
Arg [3] : fee (uint256): 20000000000000000
Arg [4] : expiry (uint256): 4320
Arg [5] : wtoken (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 00000000000000000000000000000000000000000000000000470de4df820000
Arg [4] : 00000000000000000000000000000000000000000000000000000000000010e0
Arg [5] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 000000000000000000000000d33966215c372935858db3c4749dfb62718d0554
Arg [8] : 000000000000000000000000be53970753c7ec7a2fddbc00d65f3f555a249fd9
Arg [9] : 0000000000000000000000002b553c1f705b100bf4fa0423c94b3a61721375af
Arg [10] : 000000000000000000000000f6c75ea68bec6205def2c5a4043ab9f4f85bb9ea
Arg [11] : 000000000000000000000000b57df3ac6777b100a92e7bf8f28a1442f79ed1bf
Deployed Bytecode Sourcemap
26418:24923:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;42038:987:0;;;;;;;;;:::i;:::-;;40302:127;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;40302:127:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;48359:641;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;48359:641:0;;;;;;;;:::i;27224:44::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;27224:44:0;;;;;;;;:::i;45385:2420::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;45385:2420:0;;;;;;;;:::i;15556:114::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;15556:114:0;;;;;;;;:::i;15932:227::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;15932:227:0;;;;;;;;:::i;35303:305::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;35303:305:0;;;;;;;;:::i;17141:209::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;17141:209:0;;;;;;;;:::i;27434:65::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;27434:65:0;;;;;;;;:::i;:::-;;;;;;;;49672:1048;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;49672:1048:0;;;;;;;;:::i;51118:218::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;51118:218:0;;;;;;;;:::i;27118:46::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;27118:46:0;;;;;;;;:::i;:::-;;;;;;;;32982:182;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;32982:182:0;;;;;;;;:::i;27572:65::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;27572:65:0;;;;;;;;:::i;:::-;;;;;;;;;;;26714:29;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26714:29:0;;;:::i;:::-;;;;;;;;31269:121;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;31269:121:0;;;;;;;;:::i;:::-;;;;;;;;37019:550;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;37019:550:0;;;;;;;;:::i;19550:78::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19550:78:0;;;:::i;31909:173::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;31909:173:0;;;;;;;;:::i;39587:272::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;39587:272:0;;;;;;;;:::i;31526:125::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;31526:125:0;;;;;;;;:::i;41287:312::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;41287:312:0;;;;;;;;:::i;27724:90::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;27724:90:0;;;;;;;;:::i;26549:29::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26549:29:0;;;:::i;32276:87::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32276:87:0;;;:::i;27313:62::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;27313:62:0;;;;;;;;:::i;37968:203::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;37968:203:0;;;;;;;;:::i;15229:138::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;15229:138:0;;;;;;;;:::i;39189:160::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;39189:160:0;;;;;;;;:::i;14190:139::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;14190:139:0;;;;;;;;:::i;28661:64::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28661:64:0;;;:::i;40658:252::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;40658:252:0;;;;;;;;:::i;26622:30::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26622:30:0;;;:::i;34076:295::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;34076:295:0;;;;;;;;:::i;13358:49::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;13358:49:0;;;:::i;38767:261::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;38767:261:0;;;;;;;;:::i;:::-;;;;;;;;26480:23;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26480:23:0;;;:::i;:::-;;;;;;;;26659:19;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26659:19:0;;;:::i;26685:22::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26685:22:0;;;:::i;14503:127::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;14503:127:0;;;;;;;;:::i;36159:302::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;36159:302:0;;;;;;;;:::i;33473:289::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;33473:289:0;;;;;;;;:::i;16404:230::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;16404:230:0;;;;;;;;:::i;26510:32::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26510:32:0;;;:::i;43464:1244::-;;;;;;;;;:::i;28732:66::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28732:66:0;;;:::i;26585:30::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26585:30:0;;;:::i;34685:299::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;34685:299:0;;;;;;;;:::i;32559:91::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32559:91:0;;;:::i;42038:987::-;19859:16;:14;:16::i;:::-;42164:11:::1;42178:27;42186:18;42178:7;:27::i;:::-;42164:41;;42239:3;42226:9;:16;42218:51;;;;-1:-1:-1::0;;;42218:51:0::1;;;;;;;;;;;;;;;;;42282:15;42300:39:::0;;;:27:::1;:39;::::0;;;;;-1:-1:-1;;;;;42300:39:0::1;42358:21:::0;42350:66:::1;;;;-1:-1:-1::0;;;42350:66:0::1;;;;;;;;;42522:14;::::0;-1:-1:-1;;;;;42542:1:0::1;42506:37:::0;;;;;42522:14;42505:42:::1;42568:30:::0;;::::1;;42559:81;;;;-1:-1:-1::0;;;42559:81:0::1;;;;;;;;;42678:34;::::0;::::1;42654:19;42678:34:::0;;;:14:::1;:34;::::0;;;;;;;42676:36;;-1:-1:-1;;;;;42676:36:0;;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;42676:36:0;;::::1;::::0;::::1;::::0;;;42723:29;;:15:::1;:29:::0;;;;;:49;;;;;;;;;:56:::1;::::0;42775:4;;42723:56:::1;:::i;:::-;-1:-1:-1::0;42860:86:0::1;::::0;-1:-1:-1;;;42860:86:0;;42841:7;;-1:-1:-1;;;;;42860:22:0;::::1;::::0;::::1;::::0;:86:::1;::::0;42883:10;;42895:18;;42915:12;;42929:10:::1;::::0;42941:4;;;;42860:86:::1;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;42860:86:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;42860:86:0;;;;43004:12;-1:-1:-1::0;;;;;42964:53:0::1;42992:10;42972:18;42964:53;;;;;;;;;;;;19886:1;;;;;42038:987:::0;;;;:::o;40302:127::-;40367:7;40394:27;40402:18;40394:7;:27::i;:::-;40387:34;;40302:127;;;;:::o;48359:641::-;28920:21;:19;:21::i;:::-;48495:25;48519:1:::1;48495:25:::0;;;;48524:15:::1;::::0;::::1;48494:45;-1:-1:-1::0;;;;;48578:22:0;::::1;48474:17;48578:22:::0;;;:10:::1;:22;::::0;;;;;;;:32;;;;;;;;48651:24:::1;48631:16:::0;;;::::1;::::0;::::1;;::::0;:44;::::1;;;;;;;;48623:83;;;;-1:-1:-1::0;;;48623:83:0::1;;;;;;;;;48770:7;;48725:42;48729:12;48743:8;:23;;;48725:3;:42::i;:::-;:52;48717:97;;;;-1:-1:-1::0;;;48717:97:0::1;;;;;;;;;48846:24;48827:16:::0;;::::1;:43:::0;;-1:-1:-1;;48827:43:0::1;::::0;::::1;::::0;;48949:20;;48827:43;48971:18;::::1;::::0;48886:104:::1;::::0;-1:-1:-1;;;;;48886:104:0;::::1;::::0;::::1;::::0;::::1;::::0;-1:-1:-1;;;;;;;;;;;48886:104:0;::::1;::::0;48949:20;48971:18;48886:104:::1;;;;;;;;;;28952:1;;48359:641:::0;;;:::o;27224:44::-;;;;;;;;;;;;;:::o;45385:2420::-;29004:15;:13;:15::i;:::-;19859:16:::1;:14;:16::i;:::-;45551:25:::0;45575:1:::2;45551:25:::0;;;;45580:15:::2;::::0;::::2;45550:45;-1:-1:-1::0;;;;;45634:22:0;::::2;45530:17;45634:22:::0;;;:10:::2;:22;::::0;;;;;;;:32;;;;;;;;45687:39;;;:27:::2;:39:::0;;;;;;;-1:-1:-1;;;;;45687:39:0::2;45679:91;;;;-1:-1:-1::0;;;45679:91:0::2;;;;;;;;;45794:16;::::0;;::::2;::::0;45815:1:::2;::::0;45794:16:::2;::::0;;::::2;::::0;45789:22;::::2;;;;;;:27;;45781:82;;;;-1:-1:-1::0;;;45781:82:0::2;;;;;;;;;-1:-1:-1::0;;;;;45883:31:0;::::2;;::::0;;;:19:::2;:31;::::0;;;;;;;:41;;;;;;;;45925:10:::2;45883:53:::0;;;;;;;;::::2;;45882:54;45874:88;;;;-1:-1:-1::0;;;45874:88:0::2;;;;;;;;;45984:16;::::0;;::::2;::::0;::::2;;::::0;45979:22;::::2;;;;;;45975:1186;;46025:15;46023:17:::0;;::::2;::::0;;::::2;::::0;;;46090:302:::2;::::0;;::::2;::::0;::::2;::::0;;;;;::::2;::::0;::::2;::::0;;;46212:16;;;;;;;::::2;::::0;;46090:302;;;;;;46212:16:::2;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;-1:-1:::0;;;46090:302:0;;46258:16:::2;::::0;;46272:1:::2;46258:16:::0;;;46090:302:::2;46258:16:::0;;::::2;::::0;;46090:302;;::::2;::::0;;;;46303:21:::2;46090:302:::0;;;;;;46360:12:::2;46090:302:::0;;;;;;;;-1:-1:-1;;;;;46055:22:0;::::2;::::0;;:10:::2;:22:::0;;;;;:32;;;;;;;;:337;;;;;;::::2;::::0;;;::::2;::::0;;;;;;::::2;::::0;;;::::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;46055:337:0::2;::::0;::::2;::::0;;;::::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;::::0;::::2;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46433:10;46409:8;:18;;46428:1;46409:21;;;;;;;;;::::0;;;::::2;::::0;;;::::2;:34:::0;;-1:-1:-1;;;;;;46409:34:0::2;-1:-1:-1::0;;;;;46409:34:0;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;46463:81:0::2;46486:12;-1:-1:-1::0;;;;;46463:81:0::2;46477:7;46463:81;;-1:-1:-1::0;;;;;;;;;;;46523:10:0::2;46535:8;46463:81;;;;;;;;;;;;;;;;45975:1186;;;46626:7;;46581:42;46585:12;46599:8;:23;;;46581:3;:42::i;:::-;:52;46577:571;;;46841:24;46822:16:::0;;::::2;:43:::0;;-1:-1:-1;;46822:43:0::2;::::0;::::2;::::0;;46889:84:::2;::::0;46577:571:::2;47034:8;:18;;;47022:8;:30;47014:60;;;;-1:-1:-1::0;;;47014:60:0::2;;;;;;;;;47093:18;::::0;::::2;27:10:-1::0;;39:1:::2;23:18:::0;::::2;45:23:::0;;-1:-1;47093:35:0;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;;;;47093:35:0::2;47117:10;47093:35;::::0;;46577:571:::2;47195:24;47175:16:::0;;::::2;::::0;::::2;;:44:::0;;::::2;;;;;;;47171:625;;-1:-1:-1::0;;;;;47236:31:0;::::2;;::::0;;;:19:::2;:31;::::0;;;;;;;:41;;;;;;;;47278:10:::2;47236:53:::0;;;;;;;:60;;-1:-1:-1;;47236:60:0::2;47292:4;47236:60;::::0;;47352:16:::2;::::0;;::::2;::::0;47236:60:::2;47352:16;::::0;47316:65;::::2;;;;;;47338:12;-1:-1:-1::0;;;;;47316:65:0::2;47329:7;47316:65;;;47370:10;47316:65;;;;;;;;;;;;;;;47550:1;47529:17;;:22;;:72;;;-1:-1:-1::0;47584:17:0::2;::::0;47555:18:::2;::::0;::::2;:25:::0;:46:::2;;47529:72;47525:260;;;47622:16;::::0;::::2;:40:::0;;-1:-1:-1;;47622:40:0::2;47641:21;47622:40:::0;;::::2;::::0;;;47688:81:::2;::::0;-1:-1:-1;;;;;47688:81:0;::::2;::::0;::::2;::::0;::::2;::::0;-1:-1:-1;;;;;;;;;;;47688:81:0;::::2;::::0;47748:10;;47760:8;;47688:81:::2;;;;;;;;;;47525:260;19886:1;;45385:2420:::0;;;;:::o;15556:114::-;15613:7;15640:12;;;:6;:12;;;;;:22;;;;15556:114::o;15932:227::-;16024:12;;;;:6;:12;;;;;:22;;;16016:45;;16048:12;:10;:12::i;16016:45::-;16008:105;;;;-1:-1:-1;;;16008:105:0;;;;;;;;;16126:25;16137:4;16143:7;16126:10;:25::i;:::-;15932:227;;:::o;35303:305::-;28839:12;:10;:12::i;:::-;35395:39:::1;28772:26;;;;;;;;;;;;;;35418:15;35395:7;:39::i;:::-;35387:84;;;;-1:-1:-1::0;;;35387:84:0::1;;;;;;;;;35482:42;28772:26;;;;;;;;;;;;;;35508:15;35482:10;:42::i;:::-;35540:32;::::0;-1:-1:-1;;;;;35540:32:0;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;35583:15:0::1;:17:::0;;-1:-1:-1;;35583:17:0;;;35303:305::o;17141:209::-;17239:12;:10;:12::i;:::-;-1:-1:-1;;;;;17228:23:0;:7;-1:-1:-1;;;;;17228:23:0;;17220:83;;;;-1:-1:-1;;;17220:83:0;;;;;;;;;17316:26;17328:4;17334:7;17316:11;:26::i;27434:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27434:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49672:1048::-;29004:15;:13;:15::i;:::-;19859:16:::1;:14;:16::i;:::-;49821:15:::2;49839:39:::0;;;:27:::2;:39;::::0;;;;;;;;49994:31;;-1:-1:-1;;;;;49839:39:0;;::::2;::::0;49910:25;49934:1:::2;49910:25:::0;;;;49939:15:::2;::::0;::::2;49909:45;::::0;49821:15;;49994:31:::2;::::0;49839:39;;50020:4;;;;49994:31:::2;;;;;::::0;;-1:-1:-1;;26:21;;::::2;22:32:::0;6:49;;49994:31:0;;;49984:42;;49:4:-1::2;49984:42:0::0;;::::2;::::0;-1:-1:-1;;;;;50065:22:0;::::2;50037:25;50065:22:::0;;;:10:::2;:22:::0;;;;;:32;;;;;;;;;49984:42;;-1:-1:-1;50065:32:0;50118:16:::2;::::0;;::::2;::::0;::::2;;::::0;:43;::::2;;;;;;;;50110:78;;;;-1:-1:-1::0;;;50110:78:0::2;;;;;;;;;50227:21;50207:16;::::0;;::::2;::::0;::::2;;::::0;:41;::::2;;;;;;;50199:82;;;;-1:-1:-1::0;;;50199:82:0::2;;;;;;;;;50312:8;:18;;;50300:8;:30;50292:70;;;;-1:-1:-1::0;;;50292:70:0::2;;;;;;;;;50375:16;::::0;;::::2;:42:::0;;-1:-1:-1;;50375:42:0::2;50394:23;50375:42;::::0;;50507:20;;-1:-1:-1;50479:49:0;;;:27:::2;:49;::::0;;;;;;;50540:58;;-1:-1:-1;;;50540:58:0;;-1:-1:-1;;;;;50479:49:0;;::::2;::::0;;;50540:30:::2;::::0;:58:::2;::::0;50593:4;;;;50540:58:::2;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::2;2:2;50540:58:0;;;;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;;;50653:16:0::2;::::0;;::::2;::::0;::::2;;::::0;-1:-1:-1;50616:96:0;::::2;;;;;;50639:12;-1:-1:-1::0;;;;;50616:96:0::2;50630:7;50616:96;;-1:-1:-1::0;;;;;;;;;;;50671:8:0::2;:20;;;50693:8;:18;;;50616:96;;;;;;;;;;;;;;;;19886:1;;;;;49672:1048:::0;;;;;:::o;51118:218::-;28839:12;:10;:12::i;:::-;51235:9:::1;51230:99;51250:16:::0;;::::1;51230:99;;;51288:5;;51294:1;51288:8;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;51288:17:0::1;:29;51306:7;;51314:1;51306:10;;;;;;;;;;;;;51288: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;51268:3:0::1;;51230:99;;;;51118:218:::0;;;;:::o;27118:46::-;;;;;;;;;;;;-1:-1:-1;;;;;27118:46:0;;:::o;32982:182::-;28839:12;:10;:12::i;:::-;33071:17:::1;:32:::0;;;33119:37:::1;::::0;33091:12;;33119:37:::1;::::0;;;::::1;32982:182:::0;:::o;27572:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26714:29::-;;;-1:-1:-1;;;;;26714:29:0;;:::o;31269:121::-;31328:4;31352:30;28700:25;;;;;;;;;;;;;;31374:7;31352;:30::i;37019:550::-;28839:12;:10;:12::i;:::-;37306:39:::1;::::0;;;:27:::1;:39;::::0;;;;;;:56;;-1:-1:-1;;;;;;37306:56:0::1;-1:-1:-1::0;;;;;37306:56:0;::::1;::::0;;::::1;::::0;;;37441:120;;-1:-1:-1;;;37441:120:0;;37306:56;;;37441:19:::1;::::0;:120:::1;::::0;37306:39;;37473:15;;37490:18;;37510:30;;37542:18;;37441:120:::1;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;37441:120:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;37441:120:0;;;;28862:1;37019:550:::0;;;;;;:::o;19550:78::-;19589:4;19613:7;;;19550:78;;:::o;31909:173::-;28839:12;:10;:12::i;:::-;31980:39:::1;13403:4;32010:8:::0;31980:9:::1;:39::i;:::-;32030:44;13403:4;32063:10;32030:12;:44::i;:::-;31909:173:::0;:::o;39587:272::-;29169:22;:20;:22::i;:::-;39707:20:::1;::::0;::::1;39689:15;39707:20:::0;;;:11:::1;:20;::::0;;;;;39747:17;;::::1;;39738:73;;;;-1:-1:-1::0;;;39738:73:0::1;;;;;;;;;-1:-1:-1::0;39822:20:0::1;;;::::0;;;:11:::1;:20;::::0;;;;:29;39587:272::o;31526:125::-;31587:4;31611:32;28772:26;;;;;;41287:312;28839:12;:10;:12::i;:::-;41533:58:::1;::::0;-1:-1:-1;;;41533:58:0;;41507:14;;-1:-1:-1;;;;;41533:16:0;::::1;::::0;::::1;::::0;:58:::1;::::0;41550:12;;41564:9;;41575:15;;41533:58:::1;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;41533:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;41533:58:0;;;;28862:1;41287:312:::0;;;;:::o;27724:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26549:29::-;;;;:::o;32276:87::-;29169:22;:20;:22::i;:::-;32347:8:::1;:6;:8::i;:::-;32276:87::o:0;27313:62::-;;;;;;;;;;;;-1:-1:-1;;;;;27313:62:0;;:::o;37968:203::-;28839:12;:10;:12::i;:::-;38130:33:::1;::::0;-1:-1:-1;;;38130:33:0;;38104:14;;-1:-1:-1;;;;;38130:19:0;::::1;::::0;::::1;::::0;:33:::1;::::0;38150:12;;38130:33:::1;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;38130:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;38130:33:0;;;;28862:1;37968:203:::0;;:::o;15229:138::-;15302:7;15329:12;;;:6;:12;;;;;:30;;15353:5;15329:30;:23;:30;:::i;:::-;15322:37;;15229:138;;;;;:::o;39189:160::-;28839:12;:10;:12::i;:::-;39275:6:::1;39267:4;;:14;;39259:58;;;;-1:-1:-1::0;;;39259:58:0::1;;;;;;;;;39328:4;:13:::0;39189:160::o;14190:139::-;14259:4;14283:12;;;:6;:12;;;;;:38;;14313:7;14283:38;:29;:38;:::i;28661:64::-;28700:25;;;;;;;;;;;;;;28661:64;:::o;40658:252::-;28839:12;:10;:12::i;:::-;40857:45:::1;::::0;-1:-1:-1;;;40857:45:0;;40831:14;;-1:-1:-1;;;;;40857:27:0;::::1;::::0;::::1;::::0;:45:::1;::::0;40885:16;;40857:45:::1;;;;26622:30:::0;;;;:::o;34076:295::-;28839:12;:10;:12::i;:::-;34166:37:::1;28700:25;;;;;;34166:37;34158:81;;;;-1:-1:-1::0;;;34158:81:0::1;;;;;;;;;34250:40;28700:25;;;;;;34250:40;34306:30;::::0;-1:-1:-1;;;;;34306:30:0;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;34347:14:0::1;:16:::0;;-1:-1:-1;;34347:16:0;;;34076:295::o;13358:49::-;13403:4;13358:49;:::o;38767:261::-;38871:15;;:::i;:::-;38920:25;38944:1;38920:25;;;;38949:21;;;38919:51;-1:-1:-1;;;;;38988:22:0;;38899:17;38988:22;;;:10;:22;;;;;;;;:32;;;;;;;;;38981:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38988:32;;38981:39;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38981:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38981:39:0;;;;;;;;;;;;;;;;-1:-1:-1;;;38981:39:0;;;-1:-1:-1;;38981:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38767:261;;;;;:::o;26480:23::-;;;;;;:::o;26659:19::-;;;;:::o;26685:22::-;;;;:::o;14503:127::-;14566:7;14593:12;;;:6;:12;;;;;:29;;:27;:29::i;36159:302::-;28839:12;:10;:12::i;:::-;36281:39:::1;::::0;;;:27:::1;:39;::::0;;;;;;:56;;-1:-1:-1;;;;;;36281:56:0::1;-1:-1:-1::0;;;;;36281:56:0;::::1;::::0;;::::1;::::0;;;36408:45;;-1:-1:-1;;;36408:45:0;;36281:56;;;36408:19:::1;::::0;:45:::1;::::0;36281:39;;36440:12;;36408:45:::1;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;36408:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;36408:45:0;;;;28862:1;36159:302:::0;;;:::o;33473:289::-;28839:12;:10;:12::i;:::-;33561:37:::1;28700:25;;;;;;33561:37;33560:38;33552:81;;;;-1:-1:-1::0;;;33552:81:0::1;;;;;;;;;33644:39;28700:25;;;;;;;;;;;;;;33668:14;33644:9;:39::i;:::-;33699:28;::::0;-1:-1:-1;;;;;33699:28:0;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;33738:14:0::1;:16:::0;;::::1;;::::0;;33473:289::o;16404:230::-;16497:12;;;;:6;:12;;;;;:22;;;16489:45;;16521:12;:10;:12::i;16489:45::-;16481:106;;;;-1:-1:-1;;;16481:106:0;;;;;;;;26510:32;;;;:::o;43464:1244::-;19859:16;:14;:16::i;:::-;43593:11:::1;43607:27;43615:18;43607:7;:27::i;:::-;43593:41;;43668:3;43655:9;:16;;43647:54;;;;-1:-1:-1::0;;;43647:54:0::1;;;;;;;;;43714:15;43732:39:::0;;;:27:::1;:39;::::0;;;;;-1:-1:-1;;;;;43732:39:0::1;43790:21:::0;43782:66:::1;;;;-1:-1:-1::0;;;43782:66:0::1;;;;;;;;;43877:9;:15:::0;;::::1;43975:4;43962:18;44010:15:::0;;::::1;44001:58;;;;-1:-1:-1::0;;;44001:58:0::1;;;;;;;;;44072:21;44108:7;-1:-1:-1::0;;;;;44096:35:0::1;;:37;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;44096:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;44096:37:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;44096:37:0;;;;;;;;;44072:61:::0;-1:-1:-1;;;;;;44152:27:0;::::1;44144:60;;;;-1:-1:-1::0;;;44144:60:0::1;;;;;;;;;44221:13;-1:-1:-1::0;;;;;44215:28:0::1;;44251:5;44215:44;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;44215:44:0;;;;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;;44270:54:0::1;::::0;-1:-1:-1;;;44270:54:0;;-1:-1:-1;;;;;44270:29:0;::::1;::::0;-1:-1:-1;44270:29:0::1;::::0;-1:-1:-1;44270:54:0::1;::::0;-1:-1:-1;44308:7:0;;44318:5;;44270:54:::1;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;44270:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;44270:54:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;44270:54:0;;;;;;;;;-1:-1:-1::0;44361:34:0::1;::::0;::::1;44337:19;44361:34:::0;;;:14:::1;:34;::::0;;;;;;;44359:36;;-1:-1:-1;;;;;44359:36:0;;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;44359:36:0;;::::1;::::0;::::1;::::0;;;44406:29;;:15:::1;:29:::0;;;;;:49;;;;;;;;;:56:::1;::::0;44458:4;;44406:56:::1;:::i;:::-;;44475:30;44524:7;44475:57;;44543:14;-1:-1:-1::0;;;;;44543:22:0::1;;44566:10;44578:18;44598:12;44612:10;44624:4;;44543:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;44543:86:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;44543:86:0;;;;44687:12;-1:-1:-1::0;;;;;44647:53:0::1;44675:10;44655:18;44647:53;;;;;;;;;;;;19886:1;;;;;;;43464:1244:::0;;;;:::o;28732:66::-;28772:26;;;;;;26585:30;;;;:::o;34685:299::-;28839:12;:10;:12::i;:::-;34775:39:::1;28772:26;;;;;;34775:39;34774:40;34766:84;;;;-1:-1:-1::0;;;34766:84:0::1;;;;;;;;;34861:41;28772:26;;;;;;34861:41;34918:30;::::0;-1:-1:-1;;;;;34918:30:0;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;34959:15:0::1;:17:::0;;::::1;;::::0;;34685:299::o;32559:91::-;29169:22;:20;:22::i;:::-;32632:10:::1;:8;:10::i;19903:95::-:0;19962:7;;;;19961:8;19953:37;;;;-1:-1:-1;;;19953:37:0;;;;;;;;40038:256;40142:31;;;40104:7;40142:31;;;:11;:31;;;;;;40188:12;;40184:103;;40224:7;-1:-1:-1;40217:14:0;;40184:103;-1:-1:-1;;40271:4:0;;40264:11;;29226:190;29284:39;13403:4;29312:10;29284:7;:39::i;:::-;:76;;;;29327:33;28700:25;;;;;;;;;;;;;;29349:10;29327:7;:33::i;:::-;29276:132;;;;-1:-1:-1;;;29276:132:0;;;;;;;;21490:137;21548:7;21575:44;21580:1;21583;21575:44;;;;;;;;;;;;;;;;;:4;:44::i;29764:130::-;29816:33;28700:25;;;;;;29816:33;29808:78;;;;-1:-1:-1;;;29808:78:0;;;;;;;;11397:106;11485:10;11397:106;:::o;18261:188::-;18335:12;;;;:6;:12;;;;;:33;;18360:7;18335:33;:24;:33;:::i;:::-;18331:111;;;18417:12;:10;:12::i;:::-;-1:-1:-1;;;;;18390:40:0;18408:7;-1:-1:-1;;;;;18390:40:0;18402:4;18390:40;;;;;;;;;;18261:188;;:::o;29625:131::-;29674:39;13403:4;29702:10;29674:7;:39::i;:::-;29666:82;;;;-1:-1:-1;;;29666:82:0;;;;;;;;18457:192;18532:12;;;;:6;:12;;;;;:36;;18560:7;18532:36;:27;:36;:::i;:::-;18528:114;;;18617:12;:10;:12::i;:::-;-1:-1:-1;;;;;18590:40:0;18608:7;-1:-1:-1;;;;;18590:40:0;18602:4;18590:40;;;;;;;;;;18457:192;;:::o;29424:193::-;29483:39;13403:4;29511:10;29483:7;:39::i;:::-;:77;;;;29526:34;28772:26;;;;;;29526:34;29475:134;;;;-1:-1:-1;;;29475:134:0;;;;;;;;20506:116;19859:16;:14;:16::i;:::-;20566:7:::1;:14:::0;;-1:-1:-1;;20566:14:0::1;20576:4;20566:14;::::0;;20596:18:::1;::::0;::::1;::::0;::::1;::::0;20603:10:::1;::::0;20596:18:::1;;;;;;;;;;20506:116::o:0;6270:149::-;6344:7;6387:22;6391:3;6403:5;6387:3;:22::i;5565:158::-;5645:4;5669:46;5679:3;-1:-1:-1;;;;;5699:14:0;;5669:9;:46::i;5809:117::-;5872:7;5899:19;5907:3;5899:7;:19::i;20763:118::-;20226:13;:11;:13::i;:::-;20832:5:::1;20822:15:::0;;-1:-1:-1;;20822:15:0::1;::::0;;20853:20:::1;::::0;::::1;::::0;::::1;::::0;20862:10:::1;::::0;20853:20:::1;;21922:193:::0;22009:7;22045:12;22037:6;;;;22029:29;;;;-1:-1:-1;;;22029:29:0;;;;;;;;;;-1:-1:-1;;;22081:5:0;;;21922:193::o;5011:143::-;5081:4;5105:41;5110:3;-1:-1:-1;;;;;5130:14:0;;5105:4;:41::i;5330:149::-;5403:4;5427:44;5435:3;-1:-1:-1;;;;;5455:14:0;;5427:7;:44::i;4553:204::-;4648:18;;4620:7;;4648:26;-1:-1:-1;4640:73:0;;;;-1:-1:-1;;;4640:73:0;;;;;;;;;4731:3;:11;;4743:5;4731:18;;;;;;;;;;;;;;;;4724:25;;4553:204;;;;:::o;3885:129::-;3958:4;3982:19;;;:12;;;;;:19;;;;;;:24;;;3885:129::o;4100:109::-;4183:18;;4100:109::o;20267:95::-;20322:7;;;;20314:40;;;;-1:-1:-1;;;20314:40:0;;;;;;;;1665:414;1728:4;1750:21;1760:3;1765:5;1750:9;:21::i;:::-;1745:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;1788:11:0;:23;;;;;;;;;;;;;1971:18;;1949:19;;;:12;;;:19;;;;;;:40;;;;2004:11;;1745:327;-1:-1:-1;2055:5:0;2048:12;;2255:1544;2321:4;2460:19;;;:12;;;:19;;;;;;2496:15;;2492:1300;;2931:18;;-1:-1:-1;;2882:14:0;;;;2931:22;;;;2858:21;;2931:3;;:22;;3218;;;;;;;;;;;;;;3198:42;;3364:9;3335:3;:11;;3347:13;3335:26;;;;;;;;;;;;;;;;;;;:38;;;;3441:23;;;3483:1;3441:12;;;:23;;;;;;3467:17;;;3441:43;;3593:17;;3441:3;;3593:17;;;;;;;;;;;;;;;;;;;;;;3688:3;:12;;:19;3701:5;3688:19;;;;;;;;;;;3681:26;;;3731:4;3724:11;;;;;;;;2492:1300;3775:5;3768:12;;;;;26418:24923;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;26418:24923:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26418:24923:0;;;-1:-1:-1;26418:24923:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26418:24923:0;-1:-1:-1;;;;;26418:24923:0;;;;;;;;;;;-1:-1:-1;26418:24923:0;;;;;;;-1:-1:-1;26418:24923:0;;;-1:-1:-1;26418:24923:0;:::i;:::-;;;;;;;;;-1:-1:-1;26418:24923:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26418:24923:0;;;;;;;462:360:-1;;;600:3;593:4;585:6;581:17;577:27;567:2;;-1:-1;;608:12;567:2;-1:-1;638:20;;-1:-1;;;;;667:30;;664:2;;;-1:-1;;700:12;664:2;744:4;736:6;732:17;720:29;;795:3;744:4;;779:6;775:17;736:6;761:32;;758:41;755:2;;;812:1;;802:12;755:2;560:262;;;;;;1629:336;;;1743:3;1736:4;1728:6;1724:17;1720:27;1710:2;;-1:-1;;1751:12;1710:2;-1:-1;1781:20;;-1:-1;;;;;1810:30;;1807:2;;;-1:-1;;1843:12;1807:2;1887:4;1879:6;1875:17;1863:29;;1938:3;1887:4;1918:17;1879:6;1904:32;;1901:41;1898:2;;;1955:1;;1945:12;2110:128;2176:20;;-1:-1;;;;;51974:30;;54502:34;;54492:2;;54550:1;;54540:12;2380:126;2445:20;;52192:4;52181:16;;54745:33;;54735:2;;54792:1;;54782:12;2513:241;;2617:2;2605:9;2596:7;2592:23;2588:32;2585:2;;;-1:-1;;2623:12;2585:2;85:6;72:20;97:33;124:5;97:33;;;2675:63;2579:175;-1:-1;;;2579:175;2761:263;;2876:2;2864:9;2855:7;2851:23;2847:32;2844:2;;;-1:-1;;2882:12;2844:2;226:6;220:13;238:33;265:5;238:33;;3295:366;;;3416:2;3404:9;3395:7;3391:23;3387:32;3384:2;;;-1:-1;;3422:12;3384:2;85:6;72:20;97:33;124:5;97:33;;;3474:63;-1:-1;3574:2;3613:22;;72:20;97:33;72:20;97:33;;;3582:63;;;;3378:283;;;;;;3668:617;;;;;3823:3;3811:9;3802:7;3798:23;3794:33;3791:2;;;-1:-1;;3830:12;3791:2;85:6;72:20;97:33;124:5;97:33;;;3882:63;-1:-1;3982:2;4021:22;;72:20;97:33;72:20;97:33;;;3990:63;-1:-1;4090:2;4129:22;;72:20;97:33;72:20;97:33;;;3785:500;;;;-1:-1;4098:63;;4198:2;4237:22;2040:20;;-1:-1;;3785:500;4292:491;;;;4430:2;4418:9;4409:7;4405:23;4401:32;4398:2;;;-1:-1;;4436:12;4398:2;85:6;72:20;97:33;124:5;97:33;;;4488:63;-1:-1;4588:2;4627:22;;1410:20;;-1:-1;4696:2;4735:22;;72:20;97:33;72:20;97:33;;;4704:63;;;;4392:391;;;;;;4790:865;;;;;;;4977:3;4965:9;4956:7;4952:23;4948:33;4945:2;;;-1:-1;;4984:12;4945:2;85:6;72:20;97:33;124:5;97:33;;;5036:63;-1:-1;5136:2;5175:22;;1410:20;;-1:-1;5244:2;5283:22;;72:20;97:33;72:20;97:33;;;5252:63;-1:-1;5352:2;5390:22;;1546:20;1571:32;1546:20;1571:32;;;5360:62;-1:-1;5459:3;5499:22;;2040:20;;-1:-1;5568:3;5607:22;;1546:20;1571:32;1546:20;1571:32;;;5577:62;;;;4939:716;;;;;;;;;5662:694;;;;;5861:2;5849:9;5840:7;5836:23;5832:32;5829:2;;;-1:-1;;5867:12;5829:2;5925:17;5912:31;-1:-1;;;;;5963:18;5955:6;5952:30;5949:2;;;-1:-1;;5985:12;5949:2;6023:88;6103:7;6094:6;6083:9;6079:22;6023:88;;;6013:98;;-1:-1;6013:98;-1:-1;6176:2;6161:18;;6148:32;;-1:-1;6189:30;;;6186:2;;;-1:-1;;6222:12;6186:2;;6260:80;6332:7;6323:6;6312:9;6308:22;6260:80;;;5823:533;;;;-1:-1;6250:90;-1:-1;;;;5823:533;6363:257;;6475:2;6463:9;6454:7;6450:23;6446:32;6443:2;;;-1:-1;;6481:12;6443:2;1289:6;1283:13;54037:5;51299:13;51292:21;54015:5;54012:32;54002:2;;-1:-1;;54048:12;6627:241;;6731:2;6719:9;6710:7;6706:23;6702:32;6699:2;;;-1:-1;;6737:12;6699:2;-1:-1;1410:20;;6693:175;-1:-1;6693:175;6875:366;;;6996:2;6984:9;6975:7;6971:23;6967:32;6964:2;;;-1:-1;;7002:12;6964:2;1423:6;1410:20;7054:63;;7154:2;7197:9;7193:22;72:20;97:33;124:5;97:33;;7248:366;;;7369:2;7357:9;7348:7;7344:23;7340:32;7337:2;;;-1:-1;;7375:12;7337:2;-1:-1;;1410:20;;;7527:2;7566:22;;;2040:20;;-1:-1;7331:283;7869:362;;;7988:2;7976:9;7967:7;7963:23;7959:32;7956:2;;;-1:-1;;7994:12;7956:2;2053:6;2040:20;8046:63;;8146:2;8187:9;8183:22;2445:20;52192:4;54771:5;52181:16;54748:5;54745:33;54735:2;;-1:-1;;54782:12;8238:360;;;8356:2;8344:9;8335:7;8331:23;8327:32;8324:2;;;-1:-1;;8362:12;8324:2;8424:52;8468:7;8444:22;8424:52;;;8414:62;;8531:51;8574:7;8513:2;8554:9;8550:22;8531:51;;;8521:61;;8318:280;;;;;;8605:364;;;8725:2;8713:9;8704:7;8700:23;8696:32;8693:2;;;-1:-1;;8731:12;8693:2;2324:6;2311:20;2336:32;2362:5;2336:32;;;8783:62;8882:2;8921:22;;;;1410:20;;-1:-1;;;8687:282;8976:489;;;;9113:2;9101:9;9092:7;9088:23;9084:32;9081:2;;;-1:-1;;9119:12;9081:2;2324:6;2311:20;2336:32;2362:5;2336:32;;9472:237;;9574:2;9562:9;9553:7;9549:23;9545:32;9542:2;;;-1:-1;;9580:12;9542:2;9642:51;9685:7;9661:22;9642:51;;9716:611;;;;;9871:2;9859:9;9850:7;9846:23;9842:32;9839:2;;;-1:-1;;9877:12;9839:2;9939:51;9982:7;9958:22;9939:51;;;9929:61;;10027:2;10070:9;10066:22;1410:20;10035:63;;10163:2;10152:9;10148:18;10135:32;-1:-1;;;;;10179:6;10176:30;10173:2;;;-1:-1;;10209:12;10173:2;10247:64;10303:7;10294:6;10283:9;10279:22;10247:64;;10334:485;;;;10469:2;10457:9;10448:7;10444:23;10440:32;10437:2;;;-1:-1;;10475:12;10437:2;10537:51;10580:7;10556:22;10537:51;;;10527:61;;10643:52;10687:7;10625:2;10667:9;10663:22;10643:52;;;10633:62;;10732:2;10775:9;10771:22;1410:20;10740:63;;10431:388;;;;;;10826:611;;;;;10978:3;10966:9;10957:7;10953:23;10949:33;10946:2;;;-1:-1;;10985:12;10946:2;11047:51;11090:7;11066:22;11047:51;;;11037:61;;11135:2;11177:9;11173:22;2176:20;-1:-1;;;;;54529:5;51974:30;54505:5;54502:34;54492:2;;-1:-1;;54540:12;54492:2;10940:497;;11143:62;;-1:-1;;;;11242:2;11281:22;;1410:20;;11350:2;11389:22;1410:20;;10940:497;11444:735;;;;;;11615:3;11603:9;11594:7;11590:23;11586:33;11583:2;;;-1:-1;;11622:12;11583:2;11684:51;11727:7;11703:22;11684:51;;;11674:61;;11790:52;11834:7;11772:2;11814:9;11810:22;11790:52;;;11780:62;;11907:2;11896:9;11892:18;11879:32;-1:-1;;;;;11923:6;11920:30;11917:2;;;-1:-1;;11953:12;11917:2;11991:64;12047:7;12038:6;12027:9;12023:22;11991:64;;;11577:602;;;;-1:-1;11981:74;12092:2;12131:22;1410:20;;11577:602;-1:-1;;;;11577:602;12937:654;;13112:5;49797:12;50323:6;50318:3;50311:19;50360:4;;50355:3;50351:14;13124:83;;50360:4;13274:5;49655:14;-1:-1;13313:256;13338:6;13335:1;13332:13;13313:256;;;13399:13;;-1:-1;;;;;51768:54;12578:37;;12340:14;;;;50176;;;;678:18;13353:9;13313:256;;;-1:-1;13575:10;;13047:544;-1:-1;;;;;13047:544;14080:297;;50323:6;50318:3;50311:19;52821:6;52816:3;50360:4;50355:3;50351:14;52798:30;-1:-1;50360:4;52868:6;50355:3;52859:16;;52852:27;50360:4;53452:7;;53456:2;14363:6;53436:14;53432:28;50355:3;14332:39;;14325:46;;14180:197;;;;;;14726:335;;14860:5;49797:12;50323:6;50318:3;50311:19;-1:-1;52966:101;52980:6;52977:1;52974:13;52966:101;;;50360:4;53047:11;;;;;53041:18;53028:11;;;;;53021:39;52995:10;52966:101;;;53082:6;53079:1;53076:13;53073:2;;;-1:-1;50360:4;53138:6;50355:3;53129:16;;53122:27;53073:2;-1:-1;53452:7;53436:14;-1:-1;;53432:28;15017:39;;;;50360:4;15017:39;;14812:249;-1:-1;;14812:249;29126:421;;53543:14;;51772:5;53547:2;53543:14;;12843:3;12836:58;52821:6;52816:3;29398:2;29393:3;29389:12;52798:30;52859:16;;29398:2;52859:16;52852:27;;;52859:16;29289:258;-1:-1;;29289:258;29554:372;-1:-1;;;22934:36;;22918:2;22989:12;;29734:192;29933:372;-1:-1;;;26102:35;;26086:2;26156:12;;30113:192;30312:213;-1:-1;;;;;51768:54;;;;12578:37;;30430:2;30415:18;;30401:124;30768:435;-1:-1;;;;;51768:54;;;12578:37;;51768:54;;;;31106:2;31091:18;;12578:37;31189:2;31174:18;;13771:37;;;;30942:2;30927:18;;30913:290;31210:324;-1:-1;;;;;51768:54;;;;12578:37;;31520:2;31505:18;;13771:37;31356:2;31341:18;;31327:207;31541:201;51299:13;;51292:21;13664:34;;31653:2;31638:18;;31624:118;31749:213;13771:37;;;31867:2;31852:18;;31838:124;31969:324;13771:37;;;-1:-1;;;;;51768:54;32279:2;32264:18;;12578:37;32115:2;32100:18;;32086:207;32300:651;13771:37;;;-1:-1;;;;;51768:54;;;;32691:2;32676:18;;12578:37;-1:-1;;;;;;51465:78;;;32772:2;32757:18;;14009:36;32855:2;32840:18;;13771:37;51465:78;32936:3;32921:19;;14009:36;32526:3;32511:19;;32497:454;32958:324;13771:37;;;33268:2;33253:18;;13771:37;33104:2;33089:18;;33075:207;33289:581;13771:37;;;33673:2;33658:18;;13771:37;;;33508:3;33493:19;;51642:52;51688:5;51642:52;;;33773:2;33758:18;;15146:67;;;;33856:2;33841:18;13771:37;33479:391;;-1:-1;;33479:391;33877:428;;13801:5;13778:3;13771:37;34051:2;34169;34158:9;34154:18;34147:48;34209:86;34051:2;34040:9;34036:18;34281:6;34273;34209:86;;;34201:94;34022:283;-1:-1;;;;;34022:283;34312:767;13771:37;;;52192:4;52181:16;;34733:2;34718:18;;29079:35;-1:-1;;;;;51974:30;;34814:2;34799:18;;28964:36;-1:-1;;;;;51768:54;;34905:2;34890:18;;12447:58;51779:42;34942:3;34927:19;;34920:49;;;34312:767;;34983:86;;34557:19;;35055:6;35047;34983:86;;;34975:94;34543:536;-1:-1;;;;;;;;34543:536;35086:289;;35218:2;35239:17;35232:47;35293:72;35218:2;35207:9;35203:18;35351:6;35293:72;;35690:407;35881:2;35895:47;;;15971:2;35866:18;;;50311:19;16007:30;50351:14;;;15987:51;16057:12;;;35852:245;36104:407;36295:2;36309:47;;;16308:2;36280:18;;;50311:19;-1:-1;;;50351:14;;;16324:45;16388:12;;;36266:245;36518:407;36709:2;36723:47;;;16639:2;36694:18;;;50311:19;16675:34;50351:14;;;16655:55;-1:-1;;;16730:12;;;16723:26;16768:12;;;36680:245;36932:407;37123:2;37137:47;;;17019:2;37108:18;;;50311:19;17055:31;50351:14;;;17035:52;17106:12;;;37094:245;37346:407;37537:2;37551:47;;;17357:2;37522:18;;;50311:19;17393:32;50351:14;;;17373:53;17445:12;;;37508:245;37760:407;37951:2;37965:47;;;17696:2;37936:18;;;50311:19;17732:34;50351:14;;;17712:55;-1:-1;;;17787:12;;;17780:39;17838:12;;;37922:245;38174:407;38365:2;38379:47;;;18089:2;38350:18;;;50311:19;-1:-1;;;50351:14;;;18105:44;18168:12;;;38336:245;38588:407;38779:2;38793:47;;;18419:2;38764:18;;;50311:19;-1:-1;;;50351:14;;;18435:43;18497:12;;;38750:245;39002:407;39193:2;39207:47;;;18748:2;39178:18;;;50311:19;18784:33;50351:14;;;18764:54;18837:12;;;39164:245;39416:407;39607:2;39621:47;;;19088:2;39592:18;;;50311:19;-1:-1;;;50351:14;;;19104:45;19168:12;;;39578:245;39830:407;40021:2;40035:47;;;19419:2;40006:18;;;50311:19;19455:29;50351:14;;;19435:50;19504:12;;;39992:245;40244:407;40435:2;40449:47;;;19755:2;40420:18;;;50311:19;19791:28;50351:14;;;19771:49;19839:12;;;40406:245;40658:407;40849:2;40863:47;;;20090:2;40834:18;;;50311:19;20126:33;50351:14;;;20106:54;20179:12;;;40820:245;41072:407;41263:2;41277:47;;;41248:18;;;50311:19;20466:34;50351:14;;;20446:55;20520:12;;;41234:245;41486:407;41677:2;41691:47;;;20771:2;41662:18;;;50311:19;20807:34;50351:14;;;20787:55;-1:-1;;;20862:12;;;20855:29;20903:12;;;41648:245;41900:407;42091:2;42105:47;;;21154:2;42076:18;;;50311:19;21190:34;50351:14;;;21170:55;-1:-1;;;21245:12;;;21238:40;21297:12;;;42062:245;42314:407;42505:2;42519:47;;;42490:18;;;50311:19;21584:34;50351:14;;;21564:55;21638:12;;;42476:245;42728:407;42919:2;42933:47;;;21889:2;42904:18;;;50311:19;-1:-1;;;50351:14;;;21905:39;21963:12;;;42890:245;43142:407;43333:2;43347:47;;;22214:2;43318:18;;;50311:19;-1:-1;;;50351:14;;;22230:43;22292:12;;;43304:245;43556:407;43747:2;43761:47;;;22543:2;43732:18;;;50311:19;22579:32;50351:14;;;22559:53;22631:12;;;43718:245;43970:407;44161:2;44175:47;;;23240:2;44146:18;;;50311:19;23276:34;50351:14;;;23256:55;-1:-1;;;23331:12;;;23324:33;23376:12;;;44132:245;44384:407;44575:2;44589:47;;;23627:2;44560:18;;;50311:19;23663:33;50351:14;;;23643:54;23716:12;;;44546:245;44798:407;44989:2;45003:47;;;23967:2;44974:18;;;50311:19;24003:27;50351:14;;;23983:48;24050:12;;;44960:245;45212:407;45403:2;45417:47;;;24301:2;45388:18;;;50311:19;24337:34;50351:14;;;24317:55;-1:-1;;;24392:12;;;24385:34;24438:12;;;45374:245;45626:407;45817:2;45831:47;;;45802:18;;;50311:19;24725:34;50351:14;;;24705:55;24779:12;;;45788:245;46040:407;46231:2;46245:47;;;25030:2;46216:18;;;50311:19;25066:32;50351:14;;;25046:53;25118:12;;;46202:245;46454:407;46645:2;46659:47;;;25369:2;46630:18;;;50311:19;25405:33;50351:14;;;25385:54;25458:12;;;46616:245;46868:407;47059:2;47073:47;;;47044:18;;;50311:19;25745:34;50351:14;;;25725:55;25799:12;;;47030:245;47282:407;47473:2;47487:47;;;26407:2;47458:18;;;50311:19;-1:-1;;;50351:14;;;26423:40;26482:12;;;47444:245;47696:407;47887:2;47901:47;;;26733:2;47872:18;;;50311:19;26769:27;50351:14;;;26749:48;26816:12;;;47858:245;48110:407;48301:2;48315:47;;;27067:2;48286:18;;;50311:19;27103:34;50351:14;;;27083:55;-1:-1;;;27158:12;;;27151:39;27209:12;;;48272:245;48524:365;;48694:2;48715:17;48708:47;27522:16;27516:23;48694:2;48683:9;48679:18;13771:37;48694:2;27685:5;27681:16;27675:23;27752:14;48683:9;27752:14;13771:37;27752:14;27844:5;27840:16;27834:23;27443:4;27877:14;48683:9;27877:14;27870:38;27923:99;27434:14;48683:9;27434:14;28003:12;27923:99;;;27877:14;28100:16;;28094:23;28153:14;;;-1:-1;;28153:14;28137;;;28130:38;28094:23;-1:-1;28183:99;28157:4;28094:23;28183:99;;;28137:14;28363:5;28359:16;28353:23;28333:43;;51642:52;51688:5;51642:52;;;52441:43;28447:14;48683:9;28447:14;15146:67;28447:14;28544:5;28540:16;28534:23;27443:4;48683:9;28611:14;13771:37;48761:118;;;;;;48665:224;;;;;49116:209;-1:-1;;;;;51974:30;;;;28964:36;;49232:2;49217:18;;49203:122;49332:205;52192:4;52181:16;;;;29079:35;;49446:2;49431:18;;49417:120;53575:110;53663:1;53656:5;53653:12;53643:2;;53669:9;53692:117;-1:-1;;;;;51768:54;;53751:35;;53741:2;;53800:1;;53790:12;54198:115;-1:-1;;;;;;51465:78;;54256:34;;54246:2;;54304:1;;54294:12;54566:115;-1:-1;;;;;54651:5;52077:32;54627:5;54624:34;54614:2;;54672:1;;54662:12
Swarm Source
ipfs://22f4b03b3d4f6a35ff0f350adf96fe7a0af96cec26ba9ea0568c2e5d4d39dcb7
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.