More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,410 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 16534186 | 707 days ago | IN | 0 ETH | 0.00161779 | ||||
Deposit | 16533792 | 707 days ago | IN | 0 ETH | 0.00075463 | ||||
Withdraw | 16533438 | 707 days ago | IN | 0 ETH | 0.00072434 | ||||
Withdraw | 16533419 | 707 days ago | IN | 0 ETH | 0.00044909 | ||||
Withdraw | 16520927 | 709 days ago | IN | 0 ETH | 0.00153682 | ||||
Deposit | 16481749 | 715 days ago | IN | 0 ETH | 0.00072155 | ||||
Deposit | 16395627 | 727 days ago | IN | 0 ETH | 0.00094018 | ||||
Deposit | 16240215 | 748 days ago | IN | 0 ETH | 0.00086765 | ||||
Deposit | 16196960 | 754 days ago | IN | 0 ETH | 0.00075156 | ||||
Withdraw | 16196949 | 754 days ago | IN | 0 ETH | 0.00180045 | ||||
Withdraw | 16191428 | 755 days ago | IN | 0 ETH | 0.0027673 | ||||
Deposit | 16191425 | 755 days ago | IN | 0 ETH | 0.00165829 | ||||
Withdraw | 16191397 | 755 days ago | IN | 0 ETH | 0.00265666 | ||||
Deposit | 16191248 | 755 days ago | IN | 0 ETH | 0.00125064 | ||||
Withdraw | 16175348 | 757 days ago | IN | 0 ETH | 0.0020857 | ||||
Withdraw | 16175215 | 757 days ago | IN | 0 ETH | 0.00134443 | ||||
Deposit | 16175000 | 757 days ago | IN | 0 ETH | 0.000631 | ||||
Withdraw | 16161089 | 759 days ago | IN | 0 ETH | 0.00188542 | ||||
Deposit | 16160190 | 760 days ago | IN | 0 ETH | 0.00067624 | ||||
Withdraw | 16055764 | 774 days ago | IN | 0 ETH | 0.00121367 | ||||
Withdraw | 16055666 | 774 days ago | IN | 0 ETH | 0.00122317 | ||||
Deposit | 16055610 | 774 days ago | IN | 0 ETH | 0.00044226 | ||||
Deposit | 15896235 | 796 days ago | IN | 0 ETH | 0.00038748 | ||||
Withdraw | 15855491 | 802 days ago | IN | 0 ETH | 0.00155847 | ||||
Withdraw | 15855398 | 802 days ago | IN | 0 ETH | 0.00375412 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Bridge
Compiler Version
v0.6.11+commit.5ef660b1
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-06 */ // SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.6.11; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @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 Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = msg.sender; _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == msg.sender, "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract Bridge is Ownable, ReentrancyGuard { using SafeMath for uint; using SafeERC20 for IERC20; using Address for address; modifier noContractsAllowed() { require(!(address(msg.sender).isContract()) && tx.origin == msg.sender, "No Contracts Allowed!"); _; } // ----------------------- Smart Contract Variables ----------------------- // Must be updated before live deployment. uint public dailyTokenWithdrawLimitPerAccount = 10_000e18; uint public constant CHAIN_ID = 1; uint public constant ONE_DAY = 24 hours; address public constant TRUSTED_TOKEN_ADDRESS = 0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17; address public verifyAddress = 0x072bc8750a0852C0eac038be3E7f2e7c7dAb1E94; // ----------------------- End Smart Contract Variables ----------------------- event Deposit(address indexed account, uint amount, uint blocknumber, uint timestamp, uint id); event Withdraw(address indexed account, uint amount, uint id); mapping (address => uint) public lastUpdatedTokenWithdrawTimestamp; mapping (address => uint) public lastUpdatedTokenWithdrawAmount; // deposit index OF OTHER CHAIN => withdrawal in current chain mapping (uint => bool) public claimedWithdrawalsByOtherChainDepositId; // deposit index for current chain uint public lastDepositIndex; function setVerifyAddress(address newVerifyAddress) external noContractsAllowed onlyOwner { verifyAddress = newVerifyAddress; } function setDailyLimit(uint newDailyTokenWithdrawLimitPerAccount) external noContractsAllowed onlyOwner { dailyTokenWithdrawLimitPerAccount = newDailyTokenWithdrawLimitPerAccount; } function deposit(uint amount) external noContractsAllowed nonReentrant { require(amount <= dailyTokenWithdrawLimitPerAccount, "amount exceeds limit"); lastDepositIndex = lastDepositIndex.add(1); IERC20(TRUSTED_TOKEN_ADDRESS).safeTransferFrom(msg.sender, address(this), amount); emit Deposit(msg.sender, amount, block.number, block.timestamp, lastDepositIndex); } function withdraw(uint amount, uint chainId, uint id, bytes calldata signature) external noContractsAllowed nonReentrant { require(chainId == CHAIN_ID, "invalid chainId!"); require(!claimedWithdrawalsByOtherChainDepositId[id], "already withdrawn!"); require(verify(msg.sender, amount, chainId, id, signature), "invalid signature!"); require(canWithdraw(msg.sender, amount), "cannot withdraw, limit reached for current duration!"); claimedWithdrawalsByOtherChainDepositId[id] = true; IERC20(TRUSTED_TOKEN_ADDRESS).safeTransfer(msg.sender, amount); emit Withdraw(msg.sender, amount, id); } function canWithdraw(address account, uint amount) private returns (bool) { if (block.timestamp.sub(lastUpdatedTokenWithdrawTimestamp[account]) >= ONE_DAY) { lastUpdatedTokenWithdrawAmount[account] = 0; lastUpdatedTokenWithdrawTimestamp[account] = block.timestamp; } lastUpdatedTokenWithdrawAmount[account] = lastUpdatedTokenWithdrawAmount[account].add(amount); return lastUpdatedTokenWithdrawAmount[account] <= dailyTokenWithdrawLimitPerAccount; } // the Bridge is a centralized service, allow admin to transfer any ERC20 token if required in case of emergencies function transferAnyERC20Token(address tokenAddress, address recipient, uint amount) external noContractsAllowed onlyOwner { IERC20(tokenAddress).safeTransfer(recipient, amount); } /// signature methods. function verify( address account, uint amount, uint chainId, uint id, bytes calldata signature ) internal view returns(bool) { bytes32 message = prefixed(keccak256(abi.encode(account, amount, chainId, id, address(this)))); return (recoverSigner(message, signature) == verifyAddress); } function recoverSigner(bytes32 message, bytes memory sig) internal pure returns (address) { (uint8 v, bytes32 r, bytes32 s) = abi.decode(sig, (uint8, bytes32, bytes32)); return ecrecover(message, v, r, s); } /// builds a prefixed hash to mimic the behavior of eth_sign. function prefixed(bytes32 hash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"blocknumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"CHAIN_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ONE_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRUSTED_TOKEN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedWithdrawalsByOtherChainDepositId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dailyTokenWithdrawLimitPerAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastDepositIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdatedTokenWithdrawAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdatedTokenWithdrawTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDailyTokenWithdrawLimitPerAccount","type":"uint256"}],"name":"setDailyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newVerifyAddress","type":"address"}],"name":"setVerifyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"verifyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405269021e19e0c9bab240000060025573072bc8750a0852c0eac038be3e7f2e7c7dab1e94600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801561007357600080fd5b506000339050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600180819055506120988061012b6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063b6b55f25116100a2578063d977f85611610071578063d977f856146103a6578063da0219ec146103fe578063f2fde38b1461041c578063f9615f2b14610460578063fe55892d146104b85761010b565b8063b6b55f2514610280578063b6e66b16146102ae578063d493b9ac146102f2578063d61860fe146103605761010b565b80638da5cb5b116100de5780638da5cb5b146101a0578063a1b8c40f146101ea578063a35f7c7b14610208578063b20d30a9146102525761010b565b806365925b9014610110578063715018a61461015a57806385e1f4d014610164578063863e76db14610182575b600080fd5b61011861054f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610162610575565b005b61016c6106f6565b6040518082815260200191505060405180910390f35b61018a6106fb565b6040518082815260200191505060405180910390f35b6101a8610702565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101f261072b565b6040518082815260200191505060405180910390f35b610210610731565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61027e6004803603602081101561026857600080fd5b8101908080359060200190929190505050610749565b005b6102ac6004803603602081101561029657600080fd5b81019080803590602001909291905050506108de565b005b6102f0600480360360208110156102c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b6f565b005b61035e6004803603606081101561030857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d3e565b005b61038c6004803603602081101561037657600080fd5b8101908080359060200190929190505050610ef9565b604051808215151515815260200191505060405180910390f35b6103e8600480360360208110156103bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f19565b6040518082815260200191505060405180910390f35b610406610f31565b6040518082815260200191505060405180910390f35b61045e6004803603602081101561043257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f37565b005b6104a26004803603602081101561047657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061113d565b6040518082815260200191505060405180910390f35b61054d600480360360808110156104ce57600080fd5b810190808035906020019092919080359060200190929190803590602001909291908035906020019064010000000081111561050957600080fd5b82018360208201111561051b57600080fd5b8035906020019184600183028401116401000000008311171561053d57600080fd5b9091929391929390505050611155565b005b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610637576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600181565b6201518081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b73961c8c0b1aad0c0b10a51fef6a867e3091bcef1781565b6107683373ffffffffffffffffffffffffffffffffffffffff16611557565b1580156107a057503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b610812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e6f20436f6e74726163747320416c6c6f77656421000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060028190555050565b6108fd3373ffffffffffffffffffffffffffffffffffffffff16611557565b15801561093557503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b6109a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e6f20436f6e74726163747320416c6c6f77656421000000000000000000000081525060200191505060405180910390fd5b60026001541415610a20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600254811115610aa0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f616d6f756e742065786365656473206c696d697400000000000000000000000081525060200191505060405180910390fd5b610ab6600160075461156a90919063ffffffff16565b600781905550610afd33308373961c8c0b1aad0c0b10a51fef6a867e3091bcef1773ffffffffffffffffffffffffffffffffffffffff166115f2909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f7162984403f6c73c8639375d45a9187dfd04602231bd8e587c415718b5f7e5f98243426007546040518085815260200184815260200183815260200182815260200194505050505060405180910390a26001808190555050565b610b8e3373ffffffffffffffffffffffffffffffffffffffff16611557565b158015610bc657503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b610c38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e6f20436f6e74726163747320416c6c6f77656421000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cfa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d5d3373ffffffffffffffffffffffffffffffffffffffff16611557565b158015610d9557503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b610e07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e6f20436f6e74726163747320416c6c6f77656421000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610ef482828573ffffffffffffffffffffffffffffffffffffffff166116df9092919063ffffffff16565b505050565b60066020528060005260406000206000915054906101000a900460ff1681565b60046020528060005260406000206000915090505481565b60025481565b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611fdf6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60056020528060005260406000206000915090505481565b6111743373ffffffffffffffffffffffffffffffffffffffff16611557565b1580156111ac57503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b61121e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e6f20436f6e74726163747320416c6c6f77656421000000000000000000000081525060200191505060405180910390fd5b60026001541415611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060018414611315576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f696e76616c696420636861696e4964210000000000000000000000000000000081525060200191505060405180910390fd5b6006600084815260200190815260200160002060009054906101000a900460ff16156113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f616c72656164792077697468647261776e21000000000000000000000000000081525060200191505060405180910390fd5b6113b7338686868686611797565b611429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f696e76616c6964207369676e617475726521000000000000000000000000000081525060200191505060405180910390fd5b61143333866118ee565b611488576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806120056034913960400191505060405180910390fd5b60016006600085815260200190815260200160002060006101000a81548160ff0219169083151502179055506114f3338673961c8c0b1aad0c0b10a51fef6a867e3091bcef1773ffffffffffffffffffffffffffffffffffffffff166116df9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5688685604051808381526020018281526020019250505060405180910390a2600180819055505050505050565b600080823b905060008111915050919050565b6000808284019050838110156115e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6116d9846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611ab7565b50505050565b6117928363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611ab7565b505050565b6000806118418888888830604051602001808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019550505050505060405160208183030381529060405280519060200120611ba6565b9050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118ca8286868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611bfe565b73ffffffffffffffffffffffffffffffffffffffff16149150509695505050505050565b600062015180611946600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442611cb690919063ffffffff16565b106119d5576000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b611a2782600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461156a90919063ffffffff16565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600254600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115905092915050565b6060611b19826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b9050600081511115611ba157808060200190516020811015611b3a57600080fd5b8101908080519060200190929190505050611ba0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612039602a913960400191505060405180910390fd5b5b505050565b60008160405160200180807f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250601c01828152602001915050604051602081830303815290604052805190602001209050919050565b600080600080848060200190516060811015611c1957600080fd5b8101908080519060200190929190805190602001909291908051906020019092919050505092509250925060018684848460405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015611ca1573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6000611cf883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d18565b905092915050565b6060611d0f8484600085611dd8565b90509392505050565b6000838311158290611dc5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d8a578082015181840152602081019050611d6f565b50505050905090810190601f168015611db75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060611de385611557565b611e55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310611ea55780518252602082019150602081019050602083039250611e82565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611f07576040519150601f19603f3d011682016040523d82523d6000602084013e611f0c565b606091505b50915091508115611f21578092505050611fd6565b600081511115611f345780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f9b578082015181840152602081019050611f80565b50505050905090810190601f168015611fc85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737363616e6e6f742077697468647261772c206c696d6974207265616368656420666f722063757272656e74206475726174696f6e215361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220d74fd2b99c9fe6ca064e833278286a406ab6bacf575c79531b00601eb285d0c964736f6c634300060b0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063b6b55f25116100a2578063d977f85611610071578063d977f856146103a6578063da0219ec146103fe578063f2fde38b1461041c578063f9615f2b14610460578063fe55892d146104b85761010b565b8063b6b55f2514610280578063b6e66b16146102ae578063d493b9ac146102f2578063d61860fe146103605761010b565b80638da5cb5b116100de5780638da5cb5b146101a0578063a1b8c40f146101ea578063a35f7c7b14610208578063b20d30a9146102525761010b565b806365925b9014610110578063715018a61461015a57806385e1f4d014610164578063863e76db14610182575b600080fd5b61011861054f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610162610575565b005b61016c6106f6565b6040518082815260200191505060405180910390f35b61018a6106fb565b6040518082815260200191505060405180910390f35b6101a8610702565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101f261072b565b6040518082815260200191505060405180910390f35b610210610731565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61027e6004803603602081101561026857600080fd5b8101908080359060200190929190505050610749565b005b6102ac6004803603602081101561029657600080fd5b81019080803590602001909291905050506108de565b005b6102f0600480360360208110156102c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b6f565b005b61035e6004803603606081101561030857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d3e565b005b61038c6004803603602081101561037657600080fd5b8101908080359060200190929190505050610ef9565b604051808215151515815260200191505060405180910390f35b6103e8600480360360208110156103bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f19565b6040518082815260200191505060405180910390f35b610406610f31565b6040518082815260200191505060405180910390f35b61045e6004803603602081101561043257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f37565b005b6104a26004803603602081101561047657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061113d565b6040518082815260200191505060405180910390f35b61054d600480360360808110156104ce57600080fd5b810190808035906020019092919080359060200190929190803590602001909291908035906020019064010000000081111561050957600080fd5b82018360208201111561051b57600080fd5b8035906020019184600183028401116401000000008311171561053d57600080fd5b9091929391929390505050611155565b005b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610637576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600181565b6201518081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b73961c8c0b1aad0c0b10a51fef6a867e3091bcef1781565b6107683373ffffffffffffffffffffffffffffffffffffffff16611557565b1580156107a057503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b610812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e6f20436f6e74726163747320416c6c6f77656421000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060028190555050565b6108fd3373ffffffffffffffffffffffffffffffffffffffff16611557565b15801561093557503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b6109a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e6f20436f6e74726163747320416c6c6f77656421000000000000000000000081525060200191505060405180910390fd5b60026001541415610a20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600254811115610aa0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f616d6f756e742065786365656473206c696d697400000000000000000000000081525060200191505060405180910390fd5b610ab6600160075461156a90919063ffffffff16565b600781905550610afd33308373961c8c0b1aad0c0b10a51fef6a867e3091bcef1773ffffffffffffffffffffffffffffffffffffffff166115f2909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f7162984403f6c73c8639375d45a9187dfd04602231bd8e587c415718b5f7e5f98243426007546040518085815260200184815260200183815260200182815260200194505050505060405180910390a26001808190555050565b610b8e3373ffffffffffffffffffffffffffffffffffffffff16611557565b158015610bc657503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b610c38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e6f20436f6e74726163747320416c6c6f77656421000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cfa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d5d3373ffffffffffffffffffffffffffffffffffffffff16611557565b158015610d9557503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b610e07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e6f20436f6e74726163747320416c6c6f77656421000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610ef482828573ffffffffffffffffffffffffffffffffffffffff166116df9092919063ffffffff16565b505050565b60066020528060005260406000206000915054906101000a900460ff1681565b60046020528060005260406000206000915090505481565b60025481565b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611fdf6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60056020528060005260406000206000915090505481565b6111743373ffffffffffffffffffffffffffffffffffffffff16611557565b1580156111ac57503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b61121e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e6f20436f6e74726163747320416c6c6f77656421000000000000000000000081525060200191505060405180910390fd5b60026001541415611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060018414611315576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f696e76616c696420636861696e4964210000000000000000000000000000000081525060200191505060405180910390fd5b6006600084815260200190815260200160002060009054906101000a900460ff16156113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f616c72656164792077697468647261776e21000000000000000000000000000081525060200191505060405180910390fd5b6113b7338686868686611797565b611429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f696e76616c6964207369676e617475726521000000000000000000000000000081525060200191505060405180910390fd5b61143333866118ee565b611488576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806120056034913960400191505060405180910390fd5b60016006600085815260200190815260200160002060006101000a81548160ff0219169083151502179055506114f3338673961c8c0b1aad0c0b10a51fef6a867e3091bcef1773ffffffffffffffffffffffffffffffffffffffff166116df9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5688685604051808381526020018281526020019250505060405180910390a2600180819055505050505050565b600080823b905060008111915050919050565b6000808284019050838110156115e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6116d9846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611ab7565b50505050565b6117928363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611ab7565b505050565b6000806118418888888830604051602001808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019550505050505060405160208183030381529060405280519060200120611ba6565b9050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118ca8286868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611bfe565b73ffffffffffffffffffffffffffffffffffffffff16149150509695505050505050565b600062015180611946600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442611cb690919063ffffffff16565b106119d5576000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b611a2782600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461156a90919063ffffffff16565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600254600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115905092915050565b6060611b19826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b9050600081511115611ba157808060200190516020811015611b3a57600080fd5b8101908080519060200190929190505050611ba0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612039602a913960400191505060405180910390fd5b5b505050565b60008160405160200180807f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250601c01828152602001915050604051602081830303815290604052805190602001209050919050565b600080600080848060200190516060811015611c1957600080fd5b8101908080519060200190929190805190602001909291908051906020019092919050505092509250925060018684848460405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015611ca1573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6000611cf883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d18565b905092915050565b6060611d0f8484600085611dd8565b90509392505050565b6000838311158290611dc5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d8a578082015181840152602081019050611d6f565b50505050905090810190601f168015611db75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060611de385611557565b611e55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310611ea55780518252602082019150602081019050602083039250611e82565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611f07576040519150601f19603f3d011682016040523d82523d6000602084013e611f0c565b606091505b50915091508115611f21578092505050611fd6565b600081511115611f345780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f9b578082015181840152602081019050611f80565b50505050905090810190601f168015611fc85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737363616e6e6f742077697468647261772c206c696d6974207265616368656420666f722063757272656e74206475726174696f6e215361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220d74fd2b99c9fe6ca064e833278286a406ab6bacf575c79531b00601eb285d0c964736f6c634300060b0033
Deployed Bytecode Sourcemap
22466:4628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23175:73;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21910:148;;;:::i;:::-;;22986:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23026:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21270:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23868:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23078:90;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24056:195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24263:423;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23909:141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26026:194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23746:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23527:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22922:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22213:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23600:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24692:675;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23175:73;;;;;;;;;;;;;:::o;21910:148::-;21492:10;21482:20;;:6;;;;;;;;;;;:20;;;21474:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22017:1:::1;21980:40;;22001:6;::::0;::::1;;;;;;;;;21980:40;;;;;;;;;;;;22048:1;22031:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;21910:148::o:0;22986:33::-;23018:1;22986:33;:::o;23026:39::-;23057:8;23026:39;:::o;21270:79::-;21308:7;21335:6;;;;;;;;;;;21328:13;;21270:79;:::o;23868:28::-;;;;:::o;23078:90::-;23126:42;23078:90;:::o;24056:195::-;22669:32;22677:10;22669:30;;;:32::i;:::-;22667:35;:62;;;;;22719:10;22706:23;;:9;:23;;;22667:62;22659:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21492:10:::1;21482:20;;:6;::::0;::::1;;;;;;;;;:20;;;21474:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;24207:36:::2;24171:33;:72;;;;24056:195:::0;:::o;24263:423::-;22669:32;22677:10;22669:30;;;:32::i;:::-;22667:35;:62;;;;;22719:10;22706:23;;:9;:23;;;22667:62;22659:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19320:1:::1;19926:7;;:19;;19918:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;19320:1;20059:7;:18;;;;24363:33:::2;;24353:6;:43;;24345:76;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;24461:23;24482:1;24461:16;;:20;;:23;;;;:::i;:::-;24442:16;:42;;;;24495:81;24542:10;24562:4;24569:6;23126:42;24495:46;;;;:81;;;;;;:::i;:::-;24610:10;24602:76;;;24622:6;24630:12;24644:15;24661:16;;24602:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19276:1:::1;20238:7:::0;:22:::1;;;;24263:423:::0;:::o;23909:141::-;22669:32;22677:10;22669:30;;;:32::i;:::-;22667:35;:62;;;;;22719:10;22706:23;;:9;:23;;;22667:62;22659:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21492:10:::1;21482:20;;:6;::::0;::::1;;;;;;;;;:20;;;21474:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;24026:16:::2;24010:13;;:32;;;;;;;;;;;;;;;;;;23909:141:::0;:::o;26026:194::-;22669:32;22677:10;22669:30;;;:32::i;:::-;22667:35;:62;;;;;22719:10;22706:23;;:9;:23;;;22667:62;22659:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21492:10:::1;21482:20;;:6;::::0;::::1;;;;;;;;;:20;;;21474:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;26160:52:::2;26194:9;26205:6;26167:12;26160:33;;;;:52;;;;;:::i;:::-;26026:194:::0;;;:::o;23746:69::-;;;;;;;;;;;;;;;;;;;;;;:::o;23527:66::-;;;;;;;;;;;;;;;;;:::o;22922:57::-;;;;:::o;22213:244::-;21492:10;21482:20;;:6;;;;;;;;;;;:20;;;21474:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22322:1:::1;22302:22;;:8;:22;;;;22294:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22412:8;22383:38;;22404:6;::::0;::::1;;;;;;;;;22383:38;;;;;;;;;;;;22441:8;22432:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;22213:244:::0;:::o;23600:63::-;;;;;;;;;;;;;;;;;:::o;24692:675::-;22669:32;22677:10;22669:30;;;:32::i;:::-;22667:35;:62;;;;;22719:10;22706:23;;:9;:23;;;22667:62;22659:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19320:1:::1;19926:7;;:19;;19918:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;19320:1;20059:7;:18;;;;23018:1:::2;24832:7;:19;24824:48;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;24892:39;:43;24932:2;24892:43;;;;;;;;;;;;;;;;;;;;;24891:44;24883:75;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;24977:50;24984:10;24996:6;25004:7;25013:2;25017:9;;24977:6;:50::i;:::-;24969:81;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;25069:31;25081:10;25093:6;25069:11;:31::i;:::-;25061:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25224:4;25178:39;:43;25218:2;25178:43;;;;;;;;;;;;:50;;;;;;;;;;;;;;;;;;25239:62;25282:10;25294:6;23126:42;25239;;;;:62;;;;;:::i;:::-;25336:10;25327:32;;;25348:6;25356:2;25327:32;;;;;;;;;;;;;;;;;;;;;;;;19276:1:::1;20238:7:::0;:22:::1;;;;24692:675:::0;;;;;:::o;6052:422::-;6112:4;6320:12;6431:7;6419:20;6411:28;;6465:1;6458:4;:8;6451:15;;;6052:422;;;:::o;911:181::-;969:7;989:9;1005:1;1001;:5;989:17;;1030:1;1025;:6;;1017:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1083:1;1076:8;;;911:181;;;;:::o;12077:205::-;12178:96;12198:5;12228:27;;;12257:4;12263:2;12267:5;12205:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12178:19;:96::i;:::-;12077:205;;;;:::o;11892:177::-;11975:86;11995:5;12025:23;;;12050:2;12054:5;12002:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11975:19;:86::i;:::-;11892:177;;;:::o;26257:324::-;26398:4;26412:15;26430:76;26460:7;26469:6;26477:7;26486:2;26498:4;26449:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26439:66;;;;;;26430:8;:76::i;:::-;26412:94;;26562:13;;;;;;;;;;;26525:50;;:33;26539:7;26548:9;;26525:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:13;:33::i;:::-;:50;;;26517:59;;;26257:324;;;;;;;;:::o;25379:515::-;25447:4;23057:8;25468:63;25488:33;:42;25522:7;25488:42;;;;;;;;;;;;;;;;25468:15;:19;;:63;;;;:::i;:::-;:74;25464:225;;25601:1;25559:30;:39;25590:7;25559:39;;;;;;;;;;;;;;;:43;;;;25662:15;25617:33;:42;25651:7;25617:42;;;;;;;;;;;;;;;:60;;;;25464:225;25741:51;25785:6;25741:30;:39;25772:7;25741:39;;;;;;;;;;;;;;;;:43;;:51;;;;:::i;:::-;25699:30;:39;25730:7;25699:39;;;;;;;;;;;;;;;:93;;;;25853:33;;25810:30;:39;25841:7;25810:39;;;;;;;;;;;;;;;;:76;;25803:83;;25379:515;;;;:::o;14197:761::-;14621:23;14647:69;14675:4;14647:69;;;;;;;;;;;;;;;;;14655:5;14647:27;;;;:69;;;;;:::i;:::-;14621:95;;14751:1;14731:10;:17;:21;14727:224;;;14873:10;14862:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14854:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14727:224;14197:761;;;:::o;26932:159::-;26987:7;27077:4;27024:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27014:69;;;;;;27007:76;;26932:159;;;:::o;26593:264::-;26701:7;26727;26736:9;26747;26771:3;26760:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26726:76;;;;;;26822:27;26832:7;26841:1;26844;26847;26822:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26815:34;;;;;26593:264;;;;:::o;1375:136::-;1433:7;1460:43;1464:1;1467;1460:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1453:50;;1375:136;;;;:::o;8970:196::-;9073:12;9105:53;9128:6;9136:4;9142:1;9145:12;9105:22;:53::i;:::-;9098:60;;8970:196;;;;;:::o;1814:192::-;1900:7;1933:1;1928;:6;;1936:12;1920:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960:9;1976:1;1972;:5;1960:17;;1997:1;1990:8;;;1814:192;;;;;:::o;10347:979::-;10477:12;10510:18;10521:6;10510:10;:18::i;:::-;10502:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10636:12;10650:23;10677:6;:11;;10697:8;10708:4;10677:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10635:78;;;;10728:7;10724:595;;;10759:10;10752:17;;;;;;10724:595;10893:1;10873:10;:17;:21;10869:439;;;11136:10;11130:17;11197:15;11184:10;11180:2;11176:19;11169:44;11084:148;11279:12;11272:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10347:979;;;;;;;:::o
Swarm Source
ipfs://d74fd2b99c9fe6ca064e833278286a406ab6bacf575c79531b00601eb285d0c9
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.