This nametag was submitted by Kleros Curate.
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 13,690 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 60542513 | 4 days ago | IN | 0 AVAX | 0.00004646 | ||||
Approve | 60148968 | 11 days ago | IN | 0 AVAX | 0.0000467 | ||||
Approve | 59961960 | 14 days ago | IN | 0 AVAX | 0.00002933 | ||||
Approve | 59893080 | 15 days ago | IN | 0 AVAX | 0.00013962 | ||||
Approve | 59876502 | 15 days ago | IN | 0 AVAX | 0.00005781 | ||||
Approve | 59875992 | 15 days ago | IN | 0 AVAX | 0.0000363 | ||||
Approve | 59808832 | 16 days ago | IN | 0 AVAX | 0.00004716 | ||||
Approve | 59774825 | 17 days ago | IN | 0 AVAX | 0.00009303 | ||||
Approve | 59774665 | 17 days ago | IN | 0 AVAX | 0.00011554 | ||||
Approve | 59766375 | 17 days ago | IN | 0 AVAX | 0.00005595 | ||||
Approve | 59761927 | 17 days ago | IN | 0 AVAX | 0.00011632 | ||||
Approve | 59718796 | 18 days ago | IN | 0 AVAX | 0.0001156 | ||||
Approve | 59688450 | 19 days ago | IN | 0 AVAX | 0.0001156 | ||||
Approve | 59636048 | 20 days ago | IN | 0 AVAX | 0.00016894 | ||||
Approve | 59623704 | 20 days ago | IN | 0 AVAX | 0.00014042 | ||||
Approve | 59623609 | 20 days ago | IN | 0 AVAX | 0.00013958 | ||||
Approve | 59593499 | 21 days ago | IN | 0 AVAX | 0.0001618 | ||||
Approve | 59368124 | 26 days ago | IN | 0 AVAX | 0.00009245 | ||||
Approve | 59236208 | 28 days ago | IN | 0 AVAX | 0.00007268 | ||||
Approve | 59236130 | 28 days ago | IN | 0 AVAX | 0.00007845 | ||||
Transfer | 59145461 | 30 days ago | IN | 0 AVAX | 0.00005171 | ||||
Approve | 59112713 | 31 days ago | IN | 0 AVAX | 0.00003053 | ||||
Approve | 59092296 | 31 days ago | IN | 0 AVAX | 0.00003774 | ||||
Approve | 59092290 | 31 days ago | IN | 0 AVAX | 0.00003658 | ||||
Approve | 59035091 | 33 days ago | IN | 0 AVAX | 0.0000363 |
Loading...
Loading
Contract Name:
crosschainMai
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2021-11-07 */ // Sources flattened with hardhat v2.4.3 https://hardhat.org // File @openzeppelin/contracts/GSN/[email protected] pragma solidity ^0.5.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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); } // File @openzeppelin/contracts/math/[email protected] pragma solidity ^0.5.0; /** * @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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.5.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.5.0; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.5.5; /** * @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 Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @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]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.5.0; /** * @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 ERC20;` 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)); } 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. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "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"); } } } // File @openzeppelin/contracts/ownership/[email protected] pragma solidity ^0.5.0; /** * @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. * * 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 is Context { 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 = _msgSender(); _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(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _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 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File contracts/crosschainMai.sol // contracts/crosschainMai.sol // SPDX-License-Identifier: MIT pragma solidity 0.5.17; /* crosschainMai: Use a central minter with pre-approved contracts for each bridge. Now you can swap 1:1 between AnySwap or AllBridge, or whatever bridge, into a token controlled by our system. This lets us add/remove bridges and all participate in the same liquidity. */ interface DEC { function decimals() external view returns (uint8); } contract crosschainMai is ERC20, ERC20Detailed, Ownable { using SafeERC20 for IERC20; constructor(string memory name, string memory symbol, uint8 decimals) ERC20Detailed(name, symbol, decimals) public {} struct list { bool allowed; bool paused; uint256 limit; } mapping(address => list) public _able; modifier able(address _token) { require(_able[_token].allowed, "not a whitelisted asset."); require(!_able[_token].paused, "this asset's swaps have been paused."); _; } string public _name; string public _symbol; function name() public view returns (string memory){ return _name; } function symbol() public view returns (string memory){ return _symbol; } function setName(string memory name_) public onlyOwner() { _name=name_; } function setSymbol(string memory symbol_) public onlyOwner() { _symbol=symbol_; } function pauseAsset(address _token) public onlyOwner() { require(_able[_token].allowed,"pauseAsset: token not added yet."); require(!_able[_token].paused,"pauseAsset: token already paused."); _able[_token].paused = true; } function unPauseAsset(address _token) public onlyOwner() { require(_able[_token].allowed,"pauseAsset: token not added yet."); require(_able[_token].paused,"pauseAsset: token already running."); _able[_token].paused = false; } function mint(address _receiver, uint256 _amount) public onlyOwner() { _mint(_receiver, _amount); } function setLimit(address _token, uint256 _limit) public onlyOwner() { require(_able[_token].allowed,"pauseAsset: token not added yet."); // set limit for balance to be held by contract // allowances protect the system from suffering greatly from a hack. _able[_token].limit = _limit; } // accepted assets function addAsset(address _token) public onlyOwner() { require(!_able[_token].allowed,"addAsset: _token already added."); IERC20(_token).balanceOf( address(this) ); // require it wasn't added yet // check if it has 18 decimals (at the very least!) require(DEC(_token).decimals() == decimals(), "addAsset: decimal mismatch."); //after all then we add it _able[_token].allowed = true; } function removeAsset(address _token) public onlyOwner() { // require asset balance of this == 0; require(IERC20(_token).balanceOf( address(this) ) == 0, "removeAsset: Cannot remove an asset if we're still holding it."); _able[_token].allowed = false; } function swapIn(address _token, uint256 _amount) public able(_token) { require(_able[_token].limit > 0 && (IERC20(_token).balanceOf(address(this))).add(_amount) <= _able[_token].limit, "swapIn: bridge limit has been reached for now."); IERC20(_token).safeTransferFrom(msg.sender, address(this), _amount); _mint(msg.sender, _amount); } function swapOut(address _token, uint256 _amount) public able(_token) { IERC20(_token).safeTransferFrom(address(this), msg.sender, _amount); _burn(msg.sender, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_able","outputs":[{"internalType":"bool","name":"allowed","type":"bool"},{"internalType":"bool","name":"paused","type":"bool"},{"internalType":"uint256","name":"limit","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"addAsset","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"pauseAsset","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"removeAsset","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"name_","type":"string"}],"name":"setName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"symbol_","type":"string"}],"name":"setSymbol","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"swapIn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"swapOut","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"unPauseAsset","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200265238038062002652833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604052602090810151855190935085925084918491620001c091600391908601906200025e565b508151620001d69060049060208501906200025e565b506005805460ff191660ff929092169190911790555060009050620001fa62000259565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050505062000300565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002a157805160ff1916838001178555620002d1565b82800160010185558215620002d1579182015b82811115620002d1578251825591602001919060010190620002b4565b50620002df929150620002e3565b5090565b6200025b91905b80821115620002df5760008155600101620002ea565b61234280620003106000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063b09f126611610097578063d28d885211610071578063d28d885214610678578063dd62ed3e14610680578063e948d561146106ae578063f2fde38b146106f4576101c4565b8063b09f126614610524578063b84c82461461052c578063c47f0027146105d2576101c4565b80638f32d59b116100d35780638f32d59b146104bc57806395d89b41146104c4578063a457c2d7146104cc578063a9059cbb146104f8576101c4565b806370a082311461046a578063715018a6146104905780638da5cb5b14610498576101c4565b8063313ce56711610166578063395093511161014057806339509351146103c057806340c10f19146103ec5780634a5e42b11461041857806356e7170c1461043e576101c4565b8063313ce5671461035057806336db43b51461036e5780633753b14a1461039a576101c4565b806318160ddd116101a257806318160ddd146102b457806323b872dd146102ce578063298410e5146103045780632f6b71181461032a576101c4565b806306fdde03146101c9578063095ea7b31461024657806310d974ae14610286575b600080fd5b6101d161071a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102726004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356107b1565b604080519115158252519081900360200190f35b6102b26004803603604081101561029c57600080fd5b506001600160a01b0381351690602001356107ce565b005b6102bc6108c4565b60408051918252519081900360200190f35b610272600480360360608110156102e457600080fd5b506001600160a01b038135811691602081013590911690604001356108ca565b6102b26004803603602081101561031a57600080fd5b50356001600160a01b0316610957565b6102b26004803603602081101561034057600080fd5b50356001600160a01b0316610b7a565b610358610cbe565b6040805160ff9092168252519081900360200190f35b6102b26004803603604081101561038457600080fd5b506001600160a01b038135169060200135610cc7565b6102b2600480360360208110156103b057600080fd5b50356001600160a01b0316610dac565b610272600480360360408110156103d657600080fd5b506001600160a01b038135169060200135610ef5565b6102b26004803603604081101561040257600080fd5b506001600160a01b038135169060200135610f49565b6102b26004803603602081101561042e57600080fd5b50356001600160a01b0316610fb0565b6102b26004803603604081101561045457600080fd5b506001600160a01b0381351690602001356110d8565b6102bc6004803603602081101561048057600080fd5b50356001600160a01b03166112c5565b6102b26112e0565b6104a06113a0565b604080516001600160a01b039092168252519081900360200190f35b6102726113b4565b6101d16113df565b610272600480360360408110156104e257600080fd5b506001600160a01b038135169060200135611440565b6102726004803603604081101561050e57600080fd5b506001600160a01b0381351690602001356114ae565b6101d16114c2565b6102b26004803603602081101561054257600080fd5b81019060208101813564010000000081111561055d57600080fd5b82018360208201111561056f57600080fd5b8035906020019184600183028401116401000000008311171561059157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611550945050505050565b6102b2600480360360208110156105e857600080fd5b81019060208101813564010000000081111561060357600080fd5b82018360208201111561061557600080fd5b8035906020019184600183028401116401000000008311171561063757600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506115bc945050505050565b6101d1611628565b6102bc6004803603604081101561069657600080fd5b506001600160a01b0381358116916020013516611683565b6106d4600480360360208110156106c457600080fd5b50356001600160a01b03166116ae565b604080519315158452911515602084015282820152519081900360600190f35b6102b26004803603602081101561070a57600080fd5b50356001600160a01b03166116d4565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b505050505090505b90565b60006107c56107be611739565b848461173d565b50600192915050565b6001600160a01b038216600090815260066020526040902054829060ff1661083d576040805162461bcd60e51b815260206004820152601860248201527f6e6f7420612077686974656c69737465642061737365742e0000000000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260066020526040902054610100900460ff161561089a5760405162461bcd60e51b81526004018080602001828103825260248152602001806120ec6024913960400191505060405180910390fd5b6108b56001600160a01b03841630338563ffffffff61182916565b6108bf33836118b7565b505050565b60025490565b60006108d78484846119b3565b61094d846108e3611739565b610948856040518060600160405280602881526020016121ea602891396001600160a01b038a16600090815260016020526040812090610921611739565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611b0f16565b61173d565b5060019392505050565b61095f6113b4565b6109b0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff1615610a1e576040805162461bcd60e51b815260206004820152601f60248201527f61646441737365743a205f746f6b656e20616c72656164792061646465642e00604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516001600160a01b038316916370a08231916024808301926020929190829003018186803b158015610a6457600080fd5b505afa158015610a78573d6000803e3d6000fd5b505050506040513d6020811015610a8e57600080fd5b50610a999050610cbe565b60ff16816001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015610ad557600080fd5b505afa158015610ae9573d6000803e3d6000fd5b505050506040513d6020811015610aff57600080fd5b505160ff1614610b56576040805162461bcd60e51b815260206004820152601b60248201527f61646441737365743a20646563696d616c206d69736d617463682e0000000000604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b610b826113b4565b610bd3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff16610c40576040805162461bcd60e51b815260206004820181905260248201527f706175736541737365743a20746f6b656e206e6f74206164646564207965742e604482015290519081900360640190fd5b6001600160a01b038116600090815260066020526040902054610100900460ff16610c9c5760405162461bcd60e51b81526004018080602001828103825260228152602001806122126022913960400191505060405180910390fd5b6001600160a01b03166000908152600660205260409020805461ff0019169055565b60055460ff1690565b610ccf6113b4565b610d20576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03821660009081526006602052604090205460ff16610d8d576040805162461bcd60e51b815260206004820181905260248201527f706175736541737365743a20746f6b656e206e6f74206164646564207965742e604482015290519081900360640190fd5b6001600160a01b03909116600090815260066020526040902060010155565b610db46113b4565b610e05576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff16610e72576040805162461bcd60e51b815260206004820181905260248201527f706175736541737365743a20746f6b656e206e6f74206164646564207965742e604482015290519081900360640190fd5b6001600160a01b038116600090815260066020526040902054610100900460ff1615610ecf5760405162461bcd60e51b815260040180806020018281038252602181526020018061229e6021913960400191505060405180910390fd5b6001600160a01b03166000908152600660205260409020805461ff001916610100179055565b60006107c5610f02611739565b846109488560016000610f13611739565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff611ba616565b610f516113b4565b610fa2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610fac8282611c07565b5050565b610fb86113b4565b611009576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516001600160a01b038316916370a08231916024808301926020929190829003018186803b15801561104f57600080fd5b505afa158015611063573d6000803e3d6000fd5b505050506040513d602081101561107957600080fd5b5051156110b75760405162461bcd60e51b815260040180806020018281038252603e8152602001806121ac603e913960400191505060405180910390fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6001600160a01b038216600090815260066020526040902054829060ff16611147576040805162461bcd60e51b815260206004820152601860248201527f6e6f7420612077686974656c69737465642061737365742e0000000000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260066020526040902054610100900460ff16156111a45760405162461bcd60e51b81526004018080602001828103825260248152602001806120ec6024913960400191505060405180910390fd5b6001600160a01b0383166000908152600660205260409020600101541580159061126557506001600160a01b0383166000818152600660209081526040918290206001015482516370a0823160e01b81523060048201529251909361126293879391926370a0823192602480840193919291829003018186803b15801561122a57600080fd5b505afa15801561123e573d6000803e3d6000fd5b505050506040513d602081101561125457600080fd5b50519063ffffffff611ba616565b11155b6112a05760405162461bcd60e51b815260040180806020018281038252602e81526020018061217e602e913960400191505060405180910390fd5b6112bb6001600160a01b03841633308563ffffffff61182916565b6108bf3383611c07565b6001600160a01b031660009081526020819052604090205490565b6112e86113b4565b611339576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60055461010090046001600160a01b031690565b60055460009061010090046001600160a01b03166113d0611739565b6001600160a01b031614905090565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107a65780601f1061077b576101008083540402835291602001916107a6565b60006107c561144d611739565b84610948856040518060600160405280602581526020016122e96025913960016000611477611739565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611b0f16565b60006107c56114bb611739565b84846119b3565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156115485780601f1061151d57610100808354040283529160200191611548565b820191906000526020600020905b81548152906001019060200180831161152b57829003601f168201915b505050505081565b6115586113b4565b6115a9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8051610fac90600890602084019061200e565b6115c46113b4565b611615576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8051610fac90600790602084019061200e565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156115485780601f1061151d57610100808354040283529160200191611548565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006602052600090815260409020805460019091015460ff808316926101009004169083565b6116dc6113b4565b61172d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61173681611cf7565b50565b3390565b6001600160a01b0383166117825760405162461bcd60e51b815260040180806020018281038252602481526020018061227a6024913960400191505060405180910390fd5b6001600160a01b0382166117c75760405162461bcd60e51b81526004018080602001828103825260228152602001806121366022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526118b1908590611dba565b50505050565b6001600160a01b0382166118fc5760405162461bcd60e51b81526004018080602001828103825260218152602001806122346021913960400191505060405180910390fd5b61193f816040518060600160405280602281526020016120ca602291396001600160a01b038516600090815260208190526040902054919063ffffffff611b0f16565b6001600160a01b03831660009081526020819052604090205560025461196b908263ffffffff611f9016565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0383166119f85760405162461bcd60e51b81526004018080602001828103825260258152602001806122556025913960400191505060405180910390fd5b6001600160a01b038216611a3d5760405162461bcd60e51b81526004018080602001828103825260238152602001806120a76023913960400191505060405180910390fd5b611a8081604051806060016040528060268152602001612158602691396001600160a01b038616600090815260208190526040902054919063ffffffff611b0f16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611ab5908263ffffffff611ba616565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611b9e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b63578181015183820152602001611b4b565b50505050905090810190601f168015611b905780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611c00576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611c62576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611c75908263ffffffff611ba616565b6002556001600160a01b038216600090815260208190526040902054611ca1908263ffffffff611ba616565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038116611d3c5760405162461bcd60e51b81526004018080602001828103825260268152602001806121106026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b611dcc826001600160a01b0316611fd2565b611e1d576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611e7957805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611e3c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611edb576040519150601f19603f3d011682016040523d82523d6000602084013e611ee0565b606091505b509150915081611f37576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156118b157808060200190516020811015611f5357600080fd5b50516118b15760405162461bcd60e51b815260040180806020018281038252602a8152602001806122bf602a913960400191505060405180910390fd5b6000611c0083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b0f565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061200657508115155b949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061204f57805160ff191683800117855561207c565b8280016001018555821561207c579182015b8281111561207c578251825591602001919060010190612061565b5061208892915061208c565b5090565b6107ae91905b80821115612088576000815560010161209256fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63657468697320617373657427732073776170732068617665206265656e207061757365642e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636573776170496e3a20627269646765206c696d697420686173206265656e207265616368656420666f72206e6f772e72656d6f766541737365743a2043616e6e6f742072656d6f766520616e206173736574206966207765277265207374696c6c20686f6c64696e672069742e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365706175736541737365743a20746f6b656e20616c72656164792072756e6e696e672e45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373706175736541737365743a20746f6b656e20616c7265616479207061757365642e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820874099ad7d979dfd086cf9265aa9d475fca7de2b0b54d9d87ae34ee9e044dad564736f6c63430005110032000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000e4d616920537461626c65636f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d41490000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063b09f126611610097578063d28d885211610071578063d28d885214610678578063dd62ed3e14610680578063e948d561146106ae578063f2fde38b146106f4576101c4565b8063b09f126614610524578063b84c82461461052c578063c47f0027146105d2576101c4565b80638f32d59b116100d35780638f32d59b146104bc57806395d89b41146104c4578063a457c2d7146104cc578063a9059cbb146104f8576101c4565b806370a082311461046a578063715018a6146104905780638da5cb5b14610498576101c4565b8063313ce56711610166578063395093511161014057806339509351146103c057806340c10f19146103ec5780634a5e42b11461041857806356e7170c1461043e576101c4565b8063313ce5671461035057806336db43b51461036e5780633753b14a1461039a576101c4565b806318160ddd116101a257806318160ddd146102b457806323b872dd146102ce578063298410e5146103045780632f6b71181461032a576101c4565b806306fdde03146101c9578063095ea7b31461024657806310d974ae14610286575b600080fd5b6101d161071a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102726004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356107b1565b604080519115158252519081900360200190f35b6102b26004803603604081101561029c57600080fd5b506001600160a01b0381351690602001356107ce565b005b6102bc6108c4565b60408051918252519081900360200190f35b610272600480360360608110156102e457600080fd5b506001600160a01b038135811691602081013590911690604001356108ca565b6102b26004803603602081101561031a57600080fd5b50356001600160a01b0316610957565b6102b26004803603602081101561034057600080fd5b50356001600160a01b0316610b7a565b610358610cbe565b6040805160ff9092168252519081900360200190f35b6102b26004803603604081101561038457600080fd5b506001600160a01b038135169060200135610cc7565b6102b2600480360360208110156103b057600080fd5b50356001600160a01b0316610dac565b610272600480360360408110156103d657600080fd5b506001600160a01b038135169060200135610ef5565b6102b26004803603604081101561040257600080fd5b506001600160a01b038135169060200135610f49565b6102b26004803603602081101561042e57600080fd5b50356001600160a01b0316610fb0565b6102b26004803603604081101561045457600080fd5b506001600160a01b0381351690602001356110d8565b6102bc6004803603602081101561048057600080fd5b50356001600160a01b03166112c5565b6102b26112e0565b6104a06113a0565b604080516001600160a01b039092168252519081900360200190f35b6102726113b4565b6101d16113df565b610272600480360360408110156104e257600080fd5b506001600160a01b038135169060200135611440565b6102726004803603604081101561050e57600080fd5b506001600160a01b0381351690602001356114ae565b6101d16114c2565b6102b26004803603602081101561054257600080fd5b81019060208101813564010000000081111561055d57600080fd5b82018360208201111561056f57600080fd5b8035906020019184600183028401116401000000008311171561059157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611550945050505050565b6102b2600480360360208110156105e857600080fd5b81019060208101813564010000000081111561060357600080fd5b82018360208201111561061557600080fd5b8035906020019184600183028401116401000000008311171561063757600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506115bc945050505050565b6101d1611628565b6102bc6004803603604081101561069657600080fd5b506001600160a01b0381358116916020013516611683565b6106d4600480360360208110156106c457600080fd5b50356001600160a01b03166116ae565b604080519315158452911515602084015282820152519081900360600190f35b6102b26004803603602081101561070a57600080fd5b50356001600160a01b03166116d4565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b505050505090505b90565b60006107c56107be611739565b848461173d565b50600192915050565b6001600160a01b038216600090815260066020526040902054829060ff1661083d576040805162461bcd60e51b815260206004820152601860248201527f6e6f7420612077686974656c69737465642061737365742e0000000000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260066020526040902054610100900460ff161561089a5760405162461bcd60e51b81526004018080602001828103825260248152602001806120ec6024913960400191505060405180910390fd5b6108b56001600160a01b03841630338563ffffffff61182916565b6108bf33836118b7565b505050565b60025490565b60006108d78484846119b3565b61094d846108e3611739565b610948856040518060600160405280602881526020016121ea602891396001600160a01b038a16600090815260016020526040812090610921611739565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611b0f16565b61173d565b5060019392505050565b61095f6113b4565b6109b0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff1615610a1e576040805162461bcd60e51b815260206004820152601f60248201527f61646441737365743a205f746f6b656e20616c72656164792061646465642e00604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516001600160a01b038316916370a08231916024808301926020929190829003018186803b158015610a6457600080fd5b505afa158015610a78573d6000803e3d6000fd5b505050506040513d6020811015610a8e57600080fd5b50610a999050610cbe565b60ff16816001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015610ad557600080fd5b505afa158015610ae9573d6000803e3d6000fd5b505050506040513d6020811015610aff57600080fd5b505160ff1614610b56576040805162461bcd60e51b815260206004820152601b60248201527f61646441737365743a20646563696d616c206d69736d617463682e0000000000604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b610b826113b4565b610bd3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff16610c40576040805162461bcd60e51b815260206004820181905260248201527f706175736541737365743a20746f6b656e206e6f74206164646564207965742e604482015290519081900360640190fd5b6001600160a01b038116600090815260066020526040902054610100900460ff16610c9c5760405162461bcd60e51b81526004018080602001828103825260228152602001806122126022913960400191505060405180910390fd5b6001600160a01b03166000908152600660205260409020805461ff0019169055565b60055460ff1690565b610ccf6113b4565b610d20576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03821660009081526006602052604090205460ff16610d8d576040805162461bcd60e51b815260206004820181905260248201527f706175736541737365743a20746f6b656e206e6f74206164646564207965742e604482015290519081900360640190fd5b6001600160a01b03909116600090815260066020526040902060010155565b610db46113b4565b610e05576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff16610e72576040805162461bcd60e51b815260206004820181905260248201527f706175736541737365743a20746f6b656e206e6f74206164646564207965742e604482015290519081900360640190fd5b6001600160a01b038116600090815260066020526040902054610100900460ff1615610ecf5760405162461bcd60e51b815260040180806020018281038252602181526020018061229e6021913960400191505060405180910390fd5b6001600160a01b03166000908152600660205260409020805461ff001916610100179055565b60006107c5610f02611739565b846109488560016000610f13611739565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff611ba616565b610f516113b4565b610fa2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610fac8282611c07565b5050565b610fb86113b4565b611009576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516001600160a01b038316916370a08231916024808301926020929190829003018186803b15801561104f57600080fd5b505afa158015611063573d6000803e3d6000fd5b505050506040513d602081101561107957600080fd5b5051156110b75760405162461bcd60e51b815260040180806020018281038252603e8152602001806121ac603e913960400191505060405180910390fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6001600160a01b038216600090815260066020526040902054829060ff16611147576040805162461bcd60e51b815260206004820152601860248201527f6e6f7420612077686974656c69737465642061737365742e0000000000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260066020526040902054610100900460ff16156111a45760405162461bcd60e51b81526004018080602001828103825260248152602001806120ec6024913960400191505060405180910390fd5b6001600160a01b0383166000908152600660205260409020600101541580159061126557506001600160a01b0383166000818152600660209081526040918290206001015482516370a0823160e01b81523060048201529251909361126293879391926370a0823192602480840193919291829003018186803b15801561122a57600080fd5b505afa15801561123e573d6000803e3d6000fd5b505050506040513d602081101561125457600080fd5b50519063ffffffff611ba616565b11155b6112a05760405162461bcd60e51b815260040180806020018281038252602e81526020018061217e602e913960400191505060405180910390fd5b6112bb6001600160a01b03841633308563ffffffff61182916565b6108bf3383611c07565b6001600160a01b031660009081526020819052604090205490565b6112e86113b4565b611339576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60055461010090046001600160a01b031690565b60055460009061010090046001600160a01b03166113d0611739565b6001600160a01b031614905090565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107a65780601f1061077b576101008083540402835291602001916107a6565b60006107c561144d611739565b84610948856040518060600160405280602581526020016122e96025913960016000611477611739565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611b0f16565b60006107c56114bb611739565b84846119b3565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156115485780601f1061151d57610100808354040283529160200191611548565b820191906000526020600020905b81548152906001019060200180831161152b57829003601f168201915b505050505081565b6115586113b4565b6115a9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8051610fac90600890602084019061200e565b6115c46113b4565b611615576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8051610fac90600790602084019061200e565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156115485780601f1061151d57610100808354040283529160200191611548565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006602052600090815260409020805460019091015460ff808316926101009004169083565b6116dc6113b4565b61172d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61173681611cf7565b50565b3390565b6001600160a01b0383166117825760405162461bcd60e51b815260040180806020018281038252602481526020018061227a6024913960400191505060405180910390fd5b6001600160a01b0382166117c75760405162461bcd60e51b81526004018080602001828103825260228152602001806121366022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526118b1908590611dba565b50505050565b6001600160a01b0382166118fc5760405162461bcd60e51b81526004018080602001828103825260218152602001806122346021913960400191505060405180910390fd5b61193f816040518060600160405280602281526020016120ca602291396001600160a01b038516600090815260208190526040902054919063ffffffff611b0f16565b6001600160a01b03831660009081526020819052604090205560025461196b908263ffffffff611f9016565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0383166119f85760405162461bcd60e51b81526004018080602001828103825260258152602001806122556025913960400191505060405180910390fd5b6001600160a01b038216611a3d5760405162461bcd60e51b81526004018080602001828103825260238152602001806120a76023913960400191505060405180910390fd5b611a8081604051806060016040528060268152602001612158602691396001600160a01b038616600090815260208190526040902054919063ffffffff611b0f16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611ab5908263ffffffff611ba616565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611b9e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b63578181015183820152602001611b4b565b50505050905090810190601f168015611b905780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611c00576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611c62576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611c75908263ffffffff611ba616565b6002556001600160a01b038216600090815260208190526040902054611ca1908263ffffffff611ba616565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038116611d3c5760405162461bcd60e51b81526004018080602001828103825260268152602001806121106026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b611dcc826001600160a01b0316611fd2565b611e1d576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611e7957805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611e3c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611edb576040519150601f19603f3d011682016040523d82523d6000602084013e611ee0565b606091505b509150915081611f37576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156118b157808060200190516020811015611f5357600080fd5b50516118b15760405162461bcd60e51b815260040180806020018281038252602a8152602001806122bf602a913960400191505060405180910390fd5b6000611c0083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b0f565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061200657508115155b949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061204f57805160ff191683800117855561207c565b8280016001018555821561207c579182015b8281111561207c578251825591602001919060010190612061565b5061208892915061208c565b5090565b6107ae91905b80821115612088576000815560010161209256fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63657468697320617373657427732073776170732068617665206265656e207061757365642e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636573776170496e3a20627269646765206c696d697420686173206265656e207265616368656420666f72206e6f772e72656d6f766541737365743a2043616e6e6f742072656d6f766520616e206173736574206966207765277265207374696c6c20686f6c64696e672069742e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365706175736541737365743a20746f6b656e20616c72656164792072756e6e696e672e45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373706175736541737365743a20746f6b656e20616c7265616479207061757365642e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820874099ad7d979dfd086cf9265aa9d475fca7de2b0b54d9d87ae34ee9e044dad564736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000e4d616920537461626c65636f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d41490000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Mai Stablecoin
Arg [1] : symbol (string): MAI
Arg [2] : decimals (uint8): 18
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 4d616920537461626c65636f696e000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d41490000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
29567:3285:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29567:3285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30199:80;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;30199:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12228:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12228:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32660:189;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32660:189:0;;;;;;;;:::i;:::-;;11249:91;;;:::i;:::-;;;;;;;;;;;;;;;;12852:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12852:304:0;;;;;;;;;;;;;;;;;:::i;31558:440::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31558:440:0;-1:-1:-1;;;;;31558:440:0;;:::i;30829:251::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30829:251:0;-1:-1:-1;;;;;30829:251:0;;:::i;19542:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31207:319;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31207:319:0;;;;;;;;:::i;30573:248::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30573:248:0;-1:-1:-1;;;;;30573:248:0;;:::i;13565:210::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13565:210:0;;;;;;;;:::i;31088:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31088:111:0;;;;;;;;:::i;32006:278::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32006:278:0;-1:-1:-1;;;;;32006:278:0;;:::i;32292:360::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32292:360:0;;;;;;;;:::i;11403:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11403:110:0;-1:-1:-1;;;;;11403:110:0;;:::i;28315:140::-;;;:::i;27504:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;27504:79:0;;;;;;;;;;;;;;27870:94;;;:::i;30287:84::-;;;:::i;14278:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14278:261:0;;;;;;;;:::i;11726:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11726:158:0;;;;;;;;:::i;30169:21::-;;;:::i;30472:93::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30472:93:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;30472:93:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;30472:93:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;30472:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;30472:93:0;;-1:-1:-1;30472:93:0;;-1:-1:-1;;;;;30472:93:0:i;30379:85::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30379:85:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;30379:85:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;30379:85:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;30379:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;30379:85:0;;-1:-1:-1;30379:85:0;;-1:-1:-1;;;;;30379:85:0:i;30143:19::-;;;:::i;11947:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11947:134:0;;;;;;;;;;:::i;29895:37::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29895:37:0;-1:-1:-1;;;;;29895:37:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28610:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28610:109:0;-1:-1:-1;;;;;28610:109:0;;:::i;30199:80::-;30266:5;30259:12;;;;;;;;-1:-1:-1;;30259:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30236:13;;30259:12;;30266:5;;30259:12;;30266:5;30259:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30199:80;;:::o;12228:152::-;12294:4;12311:39;12320:12;:10;:12::i;:::-;12334:7;12343:6;12311:8;:39::i;:::-;-1:-1:-1;12368:4:0;12228:152;;;;:::o;32660:189::-;-1:-1:-1;;;;;29988:13:0;;;;;;:5;:13;;;;;:21;32722:6;;29988:21;;29980:58;;;;;-1:-1:-1;;;29980:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30056:13:0;;;;;;:5;:13;;;;;:20;;;;;;30055:21;30047:70;;;;-1:-1:-1;;;30047:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32739:67;-1:-1:-1;;;;;32739:31:0;;32779:4;32786:10;32798:7;32739:67;:31;:67;:::i;:::-;32815:26;32821:10;32833:7;32815:5;:26::i;:::-;32660:189;;;:::o;11249:91::-;11320:12;;11249:91;:::o;12852:304::-;12941:4;12958:36;12968:6;12976:9;12987:6;12958:9;:36::i;:::-;13005:121;13014:6;13022:12;:10;:12::i;:::-;13036:89;13074:6;13036:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13036:19:0;;;;;;:11;:19;;;;;;13056:12;:10;:12::i;:::-;-1:-1:-1;;;;;13036:33:0;;;;;;;;;;;;-1:-1:-1;13036:33:0;;;:89;;:37;:89;:::i;:::-;13005:8;:121::i;:::-;-1:-1:-1;13144:4:0;12852:304;;;;;:::o;31558:440::-;27716:9;:7;:9::i;:::-;27708:54;;;;;-1:-1:-1;;;27708:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31629:13:0;;;;;;:5;:13;;;;;:21;;;31628:22;31620:65;;;;;-1:-1:-1;;;31620:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31694:41;;;-1:-1:-1;;;31694:41:0;;31728:4;31694:41;;;;;;-1:-1:-1;;;;;31694:24:0;;;;;:41;;;;;;;;;;;;;;:24;:41;;;5:2:-1;;;;30:1;27;20:12;5:2;31694:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31694:41:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31875:10:0;;-1:-1:-1;31875:8:0;:10::i;:::-;31849:36;;31853:6;-1:-1:-1;;;;;31849:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31849:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31849:22:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31849:22:0;:36;;;31841:76;;;;;-1:-1:-1;;;31841:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31962:13:0;;;;;:5;:13;;;;;:28;;-1:-1:-1;;31962:28:0;31986:4;31962:28;;;31558:440::o;30829:251::-;27716:9;:7;:9::i;:::-;27708:54;;;;;-1:-1:-1;;;27708:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30903:13:0;;;;;;:5;:13;;;;;:21;;;30895:65;;;;;-1:-1:-1;;;30895:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30977:13:0;;;;;;:5;:13;;;;;:20;;;;;;30969:66;;;;-1:-1:-1;;;30969:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31044:13:0;31067:5;31044:13;;;:5;:13;;;;;:28;;-1:-1:-1;;31044:28:0;;;30829:251::o;19542:83::-;19608:9;;;;19542:83;:::o;31207:319::-;27716:9;:7;:9::i;:::-;27708:54;;;;;-1:-1:-1;;;27708:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31293:13:0;;;;;;:5;:13;;;;;:21;;;31285:65;;;;;-1:-1:-1;;;31285:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31490:13:0;;;;;;;:5;:13;;;;;:19;;:28;31207:319::o;30573:248::-;27716:9;:7;:9::i;:::-;27708:54;;;;;-1:-1:-1;;;27708:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30645:13:0;;;;;;:5;:13;;;;;:21;;;30637:65;;;;;-1:-1:-1;;;30637:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30720:13:0;;;;;;:5;:13;;;;;:20;;;;;;30719:21;30711:66;;;;-1:-1:-1;;;30711:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30786:13:0;;;;;:5;:13;;;;;:27;;-1:-1:-1;;30786:27:0;;;;;30573:248::o;13565:210::-;13645:4;13662:83;13671:12;:10;:12::i;:::-;13685:7;13694:50;13733:10;13694:11;:25;13706:12;:10;:12::i;:::-;-1:-1:-1;;;;;13694:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13694:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;31088:111::-;27716:9;:7;:9::i;:::-;27708:54;;;;;-1:-1:-1;;;27708:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31166:25;31172:9;31183:7;31166:5;:25::i;:::-;31088:111;;:::o;32006:278::-;27716:9;:7;:9::i;:::-;27708:54;;;;;-1:-1:-1;;;27708:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32125:41;;;-1:-1:-1;;;32125:41:0;;32159:4;32125:41;;;;;;-1:-1:-1;;;;;32125:24:0;;;;;:41;;;;;;;;;;;;;;:24;:41;;;5:2:-1;;;;30:1;27;20:12;5:2;32125:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32125:41:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32125:41:0;:46;32117:121;;;;-1:-1:-1;;;32117:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32247:13:0;32271:5;32247:13;;;:5;:13;;;;;:29;;-1:-1:-1;;32247:29:0;;;32006:278::o;32292:360::-;-1:-1:-1;;;;;29988:13:0;;;;;;:5;:13;;;;;:21;32353:6;;29988:21;;29980:58;;;;;-1:-1:-1;;;29980:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30056:13:0;;;;;;:5;:13;;;;;:20;;;;;;30055:21;30047:70;;;;-1:-1:-1;;;30047:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32378:13:0;;32400:1;32378:13;;;:5;:13;;;;;:19;;;:23;;;;:104;;-1:-1:-1;;;;;;32463:13:0;;;;;;:5;:13;;;;;;;;;:19;;;32406:39;;-1:-1:-1;;;32406:39:0;;32439:4;32406:39;;;;;;32463:19;;32405:54;;32451:7;;32463:13;;32406:24;;:39;;;;;32463:13;;32406:39;;;;;;32463:13;32406:39;;;5:2:-1;;;;30:1;27;20:12;5:2;32406:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32406:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32406:39:0;;32405:54;:45;:54;:::i;:::-;:77;;32378:104;32370:163;;;;-1:-1:-1;;;32370:163:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32542:67;-1:-1:-1;;;;;32542:31:0;;32574:10;32594:4;32601:7;32542:67;:31;:67;:::i;:::-;32618:26;32624:10;32636:7;32618:5;:26::i;11403:110::-;-1:-1:-1;;;;;11487:18:0;11460:7;11487:18;;;;;;;;;;;;11403:110::o;28315:140::-;27716:9;:7;:9::i;:::-;27708:54;;;;;-1:-1:-1;;;27708:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28398:6;;28377:40;;28414:1;;28398:6;;;-1:-1:-1;;;;;28398:6:0;;28377:40;;28414:1;;28377:40;28428:6;:19;;;;;;28315:140::o;27504:79::-;27569:6;;;;;-1:-1:-1;;;;;27569:6:0;;27504:79::o;27870:94::-;27950:6;;27910:4;;27950:6;;;-1:-1:-1;;;;;27950:6:0;27934:12;:10;:12::i;:::-;-1:-1:-1;;;;;27934:22:0;;27927:29;;27870:94;:::o;30287:84::-;30356:7;30349:14;;;;;;;;-1:-1:-1;;30349:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30326:13;;30349:14;;30356:7;;30349:14;;30356:7;30349:14;;;;;;;;;;;;;;;;;;;;;;;;14278:261;14363:4;14380:129;14389:12;:10;:12::i;:::-;14403:7;14412:96;14451:15;14412:96;;;;;;;;;;;;;;;;;:11;:25;14424:12;:10;:12::i;:::-;-1:-1:-1;;;;;14412:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14412:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;11726:158::-;11795:4;11812:42;11822:12;:10;:12::i;:::-;11836:9;11847:6;11812:9;:42::i;30169:21::-;;;;;;;;;;;;;;;-1:-1:-1;;30169:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30472:93::-;27716:9;:7;:9::i;:::-;27708:54;;;;;-1:-1:-1;;;27708:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30542:15;;;;:7;;:15;;;;;:::i;30379:85::-;27716:9;:7;:9::i;:::-;27708:54;;;;;-1:-1:-1;;;27708:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30445:11;;;;:5;;:11;;;;;:::i;30143:19::-;;;;;;;;;;;;;;;-1:-1:-1;;30143:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11947:134;-1:-1:-1;;;;;12046:18:0;;;12019:7;12046:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11947:134::o;29895:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28610:109::-;27716:9;:7;:9::i;:::-;27708:54;;;;;-1:-1:-1;;;27708:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28683:28;28702:8;28683:18;:28::i;:::-;28610:109;:::o;928:98::-;1008:10;928:98;:::o;17209:338::-;-1:-1:-1;;;;;17303:19:0;;17295:68;;;;-1:-1:-1;;;17295:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17382:21:0;;17374:68;;;;-1:-1:-1;;;17374:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17455:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17507:32;;;;;;;;;;;;;;;;;17209:338;;;:::o;23564:204::-;23691:68;;;-1:-1:-1;;;;;23691:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;23691:68:0;;;;;;;;25:18:-1;;61:17;;23691:68:0;182:15:-1;23714:27:0;179:29:-1;160:49;;23665:95:0;;23684:5;;23665:18;:95::i;:::-;23564:204;;;;:::o;16421:348::-;-1:-1:-1;;;;;16497:21:0;;16489:67;;;;-1:-1:-1;;;16489:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16590:68;16613:6;16590:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16590:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;16569:18:0;;:9;:18;;;;;;;;;;:89;16684:12;;:24;;16701:6;16684:24;:16;:24;:::i;:::-;16669:12;:39;16724:37;;;;;;;;16750:1;;-1:-1:-1;;;;;16724:37:0;;;;;;;;;;;;16421:348;;:::o;15029:471::-;-1:-1:-1;;;;;15127:20:0;;15119:70;;;;-1:-1:-1;;;15119:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15208:23:0;;15200:71;;;;-1:-1:-1;;;15200:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15304;15326:6;15304:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15304:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;15284:17:0;;;:9;:17;;;;;;;;;;;:91;;;;15409:20;;;;;;;:32;;15434:6;15409:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;15386:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15457:35;;;;;;;15386:20;;15457:35;;;;;;;;;;;;;15029:471;;;:::o;6004:192::-;6090:7;6126:12;6118:6;;;;6110:29;;;;-1:-1:-1;;;6110:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6110:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6162:5:0;;;6004:192::o;5075:181::-;5133:7;5165:5;;;5189:6;;;;5181:46;;;;;-1:-1:-1;;;5181:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5247:1;5075:181;-1:-1:-1;;;5075:181:0:o;15781:308::-;-1:-1:-1;;;;;15857:21:0;;15849:65;;;;;-1:-1:-1;;;15849:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15942:12;;:24;;15959:6;15942:24;:16;:24;:::i;:::-;15927:12;:39;-1:-1:-1;;;;;15998:18:0;;:9;:18;;;;;;;;;;;:30;;16021:6;15998:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;15977:18:0;;:9;:18;;;;;;;;;;;:51;;;;16044:37;;;;;;;15977:18;;:9;;16044:37;;;;;;;;;;15781:308;;:::o;28825:229::-;-1:-1:-1;;;;;28899:22:0;;28891:73;;;;-1:-1:-1;;;28891:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29001:6;;28980:38;;-1:-1:-1;;;;;28980:38:0;;;;29001:6;;;;;28980:38;;;;;29029:6;:17;;-1:-1:-1;;;;;29029:17:0;;;;;;;;;;;;;;;28825:229::o;25419:1114::-;26023:27;26031:5;-1:-1:-1;;;;;26023:25:0;;:27::i;:::-;26015:71;;;;;-1:-1:-1;;;26015:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26160:12;26174:23;26209:5;-1:-1:-1;;;;;26201:19:0;26221:4;26201:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;139:12;;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;26201:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;26159:67:0;;;;26245:7;26237:52;;;;;-1:-1:-1;;;26237:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26306:17;;:21;26302:224;;26448:10;26437:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26437:30:0;26429:85;;;;-1:-1:-1;;;26429:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5531:136;5589:7;5616:43;5620:1;5623;5616:43;;;;;;;;;;;;;;;;;:3;:43::i;20403:619::-;20463:4;20931:20;;20774:66;20971:23;;;;;;:42;;-1:-1:-1;20998:15:0;;;20971:42;20963:51;20403:619;-1:-1:-1;;;;20403:619:0:o;29567:3285::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29567:3285:0;;;-1:-1:-1;29567:3285:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://874099ad7d979dfd086cf9265aa9d475fca7de2b0b54d9d87ae34ee9e044dad5
Loading...
Loading
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.