ETH Price: $3,115.42 (+0.94%)
Gas: 3 Gwei

Token

Wrapped MistCoin (WMC)
 

Overview

Max Total Supply

539,907 WMC

Holders

1,802 ( -0.277%)

Market

Price

$12.27 @ 0.003938 ETH (-6.66%)

Onchain Market Cap

$6,624,658.89

Circulating Supply Market Cap

$12,266,175.00

Other Info

Token Contract (WITH 2 Decimals)

Filtered by Token Holder
1inch v5: Aggregation Router
Balance
0.01 WMC

Value
$0.12 ( ~3.85180438224477E-05 Eth) [0.0000%]
0x1111111254eeb25477b68fb85ed929f73a960582
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MistCoin is the prototype or manuscript for ERC-20. Its launch on November 3rd, 2015, coincided with the introduction of a custom token system for the Ethereum Mist Wallet. Ethereum pioneers Fabian Vogelsteller and Alex Van de Sande both lead the project.

# Exchange Pair Price  24H Volume % Volume
1
Uniswap V2 (Ethereum)
0X7FD4D7737597E7B4EE22ACBF8D94362343AE0A79-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$12.27
0.0039376 Eth
$27,265.00
2,084.780 0X7FD4D7737597E7B4EE22ACBF8D94362343AE0A79
99.9521%
2
Uniswap V3 (Ethereum)
0X7FD4D7737597E7B4EE22ACBF8D94362343AE0A79-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$19.02
0.0065740 Eth
$5,752.00
301.470 0X7FD4D7737597E7B4EE22ACBF8D94362343AE0A79
14.4536%
3
Uniswap V3 (Base)
0X3D2EBA645C44BBD32A34B7C017667711EB5B173C-0X4200000000000000000000000000000000000006$10.66
0.0034249 Eth
$10.66
1.000 0X3D2EBA645C44BBD32A34B7C017667711EB5B173C
0.0479%

Contract Source Code Verified (Exact Match)

Contract Name:
WrappedMistCoin

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : WrappedMistCoin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";


interface MistCoin {
    function balanceOf(address owner) external returns (uint256);
    function transfer(address to, uint256 value) external;
}

contract DropBox is Ownable {
    function collect(uint256 value, MistCoin mcInt) public onlyOwner {
        mcInt.transfer(owner(), value);
    }
}

contract WrappedMistCoin is ERC20 {

    event DropBoxCreated(address indexed owner);
    event Wrapped(uint256 indexed value, address indexed owner);
    event Unwrapped(uint256 indexed value, address indexed owner);

    MistCoin mcInt = MistCoin(0xf4eCEd2f682CE333f96f2D8966C613DeD8fC95DD);

    mapping(address => address) public dropBoxes;

    constructor() ERC20("Wrapped MistCoin", "WMC") {}

    function createDropBox() public {
        require(dropBoxes[msg.sender] == address(0), "Drop box already exists.");

        dropBoxes[msg.sender] = address(new DropBox());
        
        emit DropBoxCreated(msg.sender);
    }

    function wrap(uint256 value) public {
        address dropBox = dropBoxes[msg.sender];

        require(dropBox != address(0), "You must create a drop box first."); 
        require(mcInt.balanceOf(dropBox) >= value, "Not enough MistCoin in drop box.");

        DropBox(dropBox).collect(value, mcInt);
        _mint(msg.sender, value);
        
        emit Wrapped(value, msg.sender);
    }

    function unwrap(uint256 value) public {
        require(balanceOf(msg.sender) >= value, "Not enough MistCoin to unwrap.");

        mcInt.transfer(msg.sender, value);
        _burn(msg.sender, value);

        emit Unwrapped(value, msg.sender);
    }

    function decimals() public pure override returns (uint8) {
        return 2;
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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.
 */
abstract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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 {ERC20PresetMinterPauser}.
 *
 * 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 Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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 virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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 virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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 virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 virtual {
        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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.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 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"owner","type":"address"}],"name":"DropBoxCreated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"Unwrapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"Wrapped","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createDropBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dropBoxes","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"wrap","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273f4eced2f682ce333f96f2d8966c613ded8fc95dd600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280601081526020017f57726170706564204d697374436f696e000000000000000000000000000000008152506040518060400160405280600381526020017f574d4300000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000eb9291906200010d565b508060049080519060200190620001049291906200010d565b50505062000222565b8280546200011b90620001bd565b90600052602060002090601f0160209004810192826200013f57600085556200018b565b82601f106200015a57805160ff19168380011785556200018b565b828001600101855582156200018b579182015b828111156200018a5782518255916020019190600101906200016d565b5b5090506200019a91906200019e565b5090565b5b80821115620001b95760008160009055506001016200019f565b5090565b60006002820490506001821680620001d657607f821691505b60208210811415620001ed57620001ec620001f3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61299080620002326000396000f3fe60806040523480156200001157600080fd5b50600436106200010c5760003560e01c806395d89b4111620000a5578063d6d2bb98116200006f578063d6d2bb9814620002e9578063dd62ed3e146200031f578063de0e9a3e1462000355578063ea598cb01462000375576200010c565b806395d89b41146200024f578063a457c2d71462000271578063a9059cbb14620002a7578063b8bdd4b214620002dd576200010c565b806323b872dd11620000e757806323b872dd146200018b578063313ce56714620001c15780633950935114620001e357806370a082311462000219576200010c565b806306fdde031462000111578063095ea7b3146200013357806318160ddd1462000169575b600080fd5b6200011b62000395565b6040516200012a9190620019f6565b60405180910390f35b6200015160048036038101906200014b91906200163e565b6200042f565b604051620001609190620019d9565b60405180910390f35b6200017362000456565b60405162000182919062001bf6565b60405180910390f35b620001a96004803603810190620001a39190620015e8565b62000460565b604051620001b89190620019d9565b60405180910390f35b620001cb62000495565b604051620001da919062001c40565b60405180910390f35b620002016004803603810190620001fb91906200163e565b6200049e565b604051620002109190620019d9565b60405180910390f35b6200023760048036038101906200023191906200157b565b620004dd565b60405162000246919062001bf6565b60405180910390f35b6200025962000525565b604051620002689190620019f6565b60405180910390f35b6200028f60048036038101906200028991906200163e565b620005bf565b6040516200029e9190620019d9565b60405180910390f35b620002c56004803603810190620002bf91906200163e565b6200063f565b604051620002d49190620019d9565b60405180910390f35b620002e762000666565b005b6200030760048036038101906200030191906200157b565b62000825565b6040516200031691906200198f565b60405180910390f35b6200033d6004803603810190620003379190620015a7565b62000858565b6040516200034c919062001bf6565b60405180910390f35b6200037360048036038101906200036d91906200167f565b620008df565b005b6200039360048036038101906200038d91906200167f565b62000a15565b005b606060038054620003a69062001dc6565b80601f0160208091040260200160405190810160405280929190818152602001828054620003d49062001dc6565b8015620004255780601f10620003f95761010080835404028352916020019162000425565b820191906000526020600020905b8154815290600101906020018083116200040757829003601f168201915b5050505050905090565b6000806200043c62000ccb565b90506200044b81858562000cd3565b600191505092915050565b6000600254905090565b6000806200046d62000ccb565b90506200047c85828562000ea6565b6200048985858562000f3a565b60019150509392505050565b60006002905090565b600080620004ab62000ccb565b9050620004d2818585620004c0858962000858565b620004cc919062001c79565b62000cd3565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054620005369062001dc6565b80601f0160208091040260200160405190810160405280929190818152602001828054620005649062001dc6565b8015620005b55780601f106200058957610100808354040283529160200191620005b5565b820191906000526020600020905b8154815290600101906020018083116200059757829003601f168201915b5050505050905090565b600080620005cc62000ccb565b90506000620005dc828662000858565b90508381101562000624576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061b9062001bb2565b60405180910390fd5b62000633828686840362000cd3565b60019250505092915050565b6000806200064c62000ccb565b90506200065b81858562000f3a565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff16600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000737576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072e9062001ae6565b60405180910390fd5b604051620007459062001528565b604051809103906000f08015801562000762573d6000803e3d6000fd5b50600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167f2c601b1355d1a6cd1373df5a1e2460c77aedfbb5c16c66b47bb96b35462808e260405160405180910390a2565b60066020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b80620008eb33620004dd565b10156200092f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009269062001b2a565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016200098e929190620019ac565b600060405180830381600087803b158015620009a957600080fd5b505af1158015620009be573d6000803e3d6000fd5b50505050620009ce3382620011cc565b3373ffffffffffffffffffffffffffffffffffffffff16817f1d27d1c62712f590d53fa9eb8bbf3a75d09503deae319bb9d99644339cb312e160405160405180910390a350565b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000aec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ae39062001b08565b60405180910390fd5b81600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b815260040162000b4a91906200198f565b602060405180830381600087803b15801562000b6557600080fd5b505af115801562000b7a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ba09190620016ab565b101562000be4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bdb9062001a80565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16638d3c100a83600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000c4392919062001c13565b600060405180830381600087803b15801562000c5e57600080fd5b505af115801562000c73573d6000803e3d6000fd5b5050505062000c833383620013b1565b3373ffffffffffffffffffffffffffffffffffffffff16827f9c307a39a47fdf1a019642a4e8a585ffe9894b5018226029887fe6d4241611bb60405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000d46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d3d9062001b90565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000db9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000db09062001a5e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000e99919062001bf6565b60405180910390a3505050565b600062000eb4848462000858565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811462000f34578181101562000f24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f1b9062001aa2565b60405180910390fd5b62000f33848484840362000cd3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000fad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000fa49062001b6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010179062001a1a565b60405180910390fd5b6200102d8383836200151e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620010b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010ad9062001ac4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200114b919062001c79565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051620011b1919062001bf6565b60405180910390a3620011c684848462001523565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200123f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620012369062001b4c565b60405180910390fd5b6200124d826000836200151e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620012d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620012cd9062001a3c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546200132f919062001cd6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162001396919062001bf6565b60405180910390a3620013ac8360008462001523565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001424576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200141b9062001bd4565b60405180910390fd5b62001432600083836200151e565b806002600082825462001446919062001c79565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200149d919062001c79565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001504919062001bf6565b60405180910390a36200151a6000838362001523565b5050565b505050565b505050565b610727806200223483390190565b6000813590506200154781620021ff565b92915050565b6000813590506200155e8162002219565b92915050565b600081519050620015758162002219565b92915050565b6000602082840312156200158e57600080fd5b60006200159e8482850162001536565b91505092915050565b60008060408385031215620015bb57600080fd5b6000620015cb8582860162001536565b9250506020620015de8582860162001536565b9150509250929050565b600080600060608486031215620015fe57600080fd5b60006200160e8682870162001536565b9350506020620016218682870162001536565b925050604062001634868287016200154d565b9150509250925092565b600080604083850312156200165257600080fd5b6000620016628582860162001536565b925050602062001675858286016200154d565b9150509250929050565b6000602082840312156200169257600080fd5b6000620016a2848285016200154d565b91505092915050565b600060208284031215620016be57600080fd5b6000620016ce8482850162001564565b91505092915050565b620016e28162001d11565b82525050565b620016f38162001d25565b82525050565b620017048162001d68565b82525050565b6000620017178262001c5d565b62001723818562001c68565b93506200173581856020860162001d90565b620017408162001e5a565b840191505092915050565b60006200175a60238362001c68565b9150620017678262001e6b565b604082019050919050565b60006200178160228362001c68565b91506200178e8262001eba565b604082019050919050565b6000620017a860228362001c68565b9150620017b58262001f09565b604082019050919050565b6000620017cf60208362001c68565b9150620017dc8262001f58565b602082019050919050565b6000620017f6601d8362001c68565b9150620018038262001f81565b602082019050919050565b60006200181d60268362001c68565b91506200182a8262001faa565b604082019050919050565b60006200184460188362001c68565b9150620018518262001ff9565b602082019050919050565b60006200186b60218362001c68565b9150620018788262002022565b604082019050919050565b600062001892601e8362001c68565b91506200189f8262002071565b602082019050919050565b6000620018b960218362001c68565b9150620018c6826200209a565b604082019050919050565b6000620018e060258362001c68565b9150620018ed82620020e9565b604082019050919050565b60006200190760248362001c68565b9150620019148262002138565b604082019050919050565b60006200192e60258362001c68565b91506200193b8262002187565b604082019050919050565b600062001955601f8362001c68565b91506200196282620021d6565b602082019050919050565b620019788162001d51565b82525050565b620019898162001d5b565b82525050565b6000602082019050620019a66000830184620016d7565b92915050565b6000604082019050620019c36000830185620016d7565b620019d260208301846200196d565b9392505050565b6000602082019050620019f06000830184620016e8565b92915050565b6000602082019050818103600083015262001a1281846200170a565b905092915050565b6000602082019050818103600083015262001a35816200174b565b9050919050565b6000602082019050818103600083015262001a578162001772565b9050919050565b6000602082019050818103600083015262001a798162001799565b9050919050565b6000602082019050818103600083015262001a9b81620017c0565b9050919050565b6000602082019050818103600083015262001abd81620017e7565b9050919050565b6000602082019050818103600083015262001adf816200180e565b9050919050565b6000602082019050818103600083015262001b018162001835565b9050919050565b6000602082019050818103600083015262001b23816200185c565b9050919050565b6000602082019050818103600083015262001b458162001883565b9050919050565b6000602082019050818103600083015262001b6781620018aa565b9050919050565b6000602082019050818103600083015262001b8981620018d1565b9050919050565b6000602082019050818103600083015262001bab81620018f8565b9050919050565b6000602082019050818103600083015262001bcd816200191f565b9050919050565b6000602082019050818103600083015262001bef8162001946565b9050919050565b600060208201905062001c0d60008301846200196d565b92915050565b600060408201905062001c2a60008301856200196d565b62001c396020830184620016f9565b9392505050565b600060208201905062001c5760008301846200197e565b92915050565b600081519050919050565b600082825260208201905092915050565b600062001c868262001d51565b915062001c938362001d51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001ccb5762001cca62001dfc565b5b828201905092915050565b600062001ce38262001d51565b915062001cf08362001d51565b92508282101562001d065762001d0562001dfc565b5b828203905092915050565b600062001d1e8262001d31565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600062001d758262001d7c565b9050919050565b600062001d898262001d31565b9050919050565b60005b8381101562001db057808201518184015260208101905062001d93565b8381111562001dc0576000848401525b50505050565b6000600282049050600182168062001ddf57607f821691505b6020821081141562001df65762001df562001e2b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204d697374436f696e20696e2064726f7020626f782e600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f44726f7020626f7820616c7265616479206578697374732e0000000000000000600082015250565b7f596f75206d7573742063726561746520612064726f7020626f7820666972737460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204d697374436f696e20746f20756e777261702e0000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200220a8162001d11565b81146200221657600080fd5b50565b620022248162001d51565b81146200223057600080fd5b5056fe608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61061a8061010d6000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063715018a6146100515780638d3c100a1461005b5780638da5cb5b14610077578063f2fde38b14610095575b600080fd5b6100596100b1565b005b610075600480360381019061007091906103a4565b6100c5565b005b61007f610145565b60405161008c9190610444565b60405180910390f35b6100af60048036038101906100aa919061037b565b61016e565b005b6100b96101f2565b6100c36000610270565b565b6100cd6101f2565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6100f1610145565b846040518363ffffffff1660e01b815260040161010f92919061045f565b600060405180830381600087803b15801561012957600080fd5b505af115801561013d573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101766101f2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156101e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101dd90610488565b60405180910390fd5b6101ef81610270565b50565b6101fa610334565b73ffffffffffffffffffffffffffffffffffffffff16610218610145565b73ffffffffffffffffffffffffffffffffffffffff161461026e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610265906104a8565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60008135905061034b8161059f565b92915050565b600081359050610360816105b6565b92915050565b600081359050610375816105cd565b92915050565b60006020828403121561038d57600080fd5b600061039b8482850161033c565b91505092915050565b600080604083850312156103b757600080fd5b60006103c585828601610366565b92505060206103d685828601610351565b9150509250929050565b6103e9816104d9565b82525050565b60006103fc6026836104c8565b915061040782610527565b604082019050919050565b600061041f6020836104c8565b915061042a82610576565b602082019050919050565b61043e8161051d565b82525050565b600060208201905061045960008301846103e0565b92915050565b600060408201905061047460008301856103e0565b6104816020830184610435565b9392505050565b600060208201905081810360008301526104a1816103ef565b9050919050565b600060208201905081810360008301526104c181610412565b9050919050565b600082825260208201905092915050565b60006104e4826104fd565b9050919050565b60006104f6826104d9565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6105a8816104d9565b81146105b357600080fd5b50565b6105bf816104eb565b81146105ca57600080fd5b50565b6105d68161051d565b81146105e157600080fd5b5056fea264697066735822122004ac284856e0fb23ddd4a29c155531fce1216c6ae11f7996ad636e59c289f33f64736f6c63430008040033a2646970667358221220a964cd453020d81bf936f511e8b44c505f05ad262bd1c003095491c8aa070c8f64736f6c63430008040033

Deployed Bytecode

0x60806040523480156200001157600080fd5b50600436106200010c5760003560e01c806395d89b4111620000a5578063d6d2bb98116200006f578063d6d2bb9814620002e9578063dd62ed3e146200031f578063de0e9a3e1462000355578063ea598cb01462000375576200010c565b806395d89b41146200024f578063a457c2d71462000271578063a9059cbb14620002a7578063b8bdd4b214620002dd576200010c565b806323b872dd11620000e757806323b872dd146200018b578063313ce56714620001c15780633950935114620001e357806370a082311462000219576200010c565b806306fdde031462000111578063095ea7b3146200013357806318160ddd1462000169575b600080fd5b6200011b62000395565b6040516200012a9190620019f6565b60405180910390f35b6200015160048036038101906200014b91906200163e565b6200042f565b604051620001609190620019d9565b60405180910390f35b6200017362000456565b60405162000182919062001bf6565b60405180910390f35b620001a96004803603810190620001a39190620015e8565b62000460565b604051620001b89190620019d9565b60405180910390f35b620001cb62000495565b604051620001da919062001c40565b60405180910390f35b620002016004803603810190620001fb91906200163e565b6200049e565b604051620002109190620019d9565b60405180910390f35b6200023760048036038101906200023191906200157b565b620004dd565b60405162000246919062001bf6565b60405180910390f35b6200025962000525565b604051620002689190620019f6565b60405180910390f35b6200028f60048036038101906200028991906200163e565b620005bf565b6040516200029e9190620019d9565b60405180910390f35b620002c56004803603810190620002bf91906200163e565b6200063f565b604051620002d49190620019d9565b60405180910390f35b620002e762000666565b005b6200030760048036038101906200030191906200157b565b62000825565b6040516200031691906200198f565b60405180910390f35b6200033d6004803603810190620003379190620015a7565b62000858565b6040516200034c919062001bf6565b60405180910390f35b6200037360048036038101906200036d91906200167f565b620008df565b005b6200039360048036038101906200038d91906200167f565b62000a15565b005b606060038054620003a69062001dc6565b80601f0160208091040260200160405190810160405280929190818152602001828054620003d49062001dc6565b8015620004255780601f10620003f95761010080835404028352916020019162000425565b820191906000526020600020905b8154815290600101906020018083116200040757829003601f168201915b5050505050905090565b6000806200043c62000ccb565b90506200044b81858562000cd3565b600191505092915050565b6000600254905090565b6000806200046d62000ccb565b90506200047c85828562000ea6565b6200048985858562000f3a565b60019150509392505050565b60006002905090565b600080620004ab62000ccb565b9050620004d2818585620004c0858962000858565b620004cc919062001c79565b62000cd3565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054620005369062001dc6565b80601f0160208091040260200160405190810160405280929190818152602001828054620005649062001dc6565b8015620005b55780601f106200058957610100808354040283529160200191620005b5565b820191906000526020600020905b8154815290600101906020018083116200059757829003601f168201915b5050505050905090565b600080620005cc62000ccb565b90506000620005dc828662000858565b90508381101562000624576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061b9062001bb2565b60405180910390fd5b62000633828686840362000cd3565b60019250505092915050565b6000806200064c62000ccb565b90506200065b81858562000f3a565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff16600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000737576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072e9062001ae6565b60405180910390fd5b604051620007459062001528565b604051809103906000f08015801562000762573d6000803e3d6000fd5b50600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167f2c601b1355d1a6cd1373df5a1e2460c77aedfbb5c16c66b47bb96b35462808e260405160405180910390a2565b60066020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b80620008eb33620004dd565b10156200092f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009269062001b2a565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016200098e929190620019ac565b600060405180830381600087803b158015620009a957600080fd5b505af1158015620009be573d6000803e3d6000fd5b50505050620009ce3382620011cc565b3373ffffffffffffffffffffffffffffffffffffffff16817f1d27d1c62712f590d53fa9eb8bbf3a75d09503deae319bb9d99644339cb312e160405160405180910390a350565b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000aec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ae39062001b08565b60405180910390fd5b81600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b815260040162000b4a91906200198f565b602060405180830381600087803b15801562000b6557600080fd5b505af115801562000b7a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ba09190620016ab565b101562000be4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bdb9062001a80565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16638d3c100a83600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000c4392919062001c13565b600060405180830381600087803b15801562000c5e57600080fd5b505af115801562000c73573d6000803e3d6000fd5b5050505062000c833383620013b1565b3373ffffffffffffffffffffffffffffffffffffffff16827f9c307a39a47fdf1a019642a4e8a585ffe9894b5018226029887fe6d4241611bb60405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000d46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d3d9062001b90565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000db9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000db09062001a5e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000e99919062001bf6565b60405180910390a3505050565b600062000eb4848462000858565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811462000f34578181101562000f24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f1b9062001aa2565b60405180910390fd5b62000f33848484840362000cd3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000fad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000fa49062001b6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010179062001a1a565b60405180910390fd5b6200102d8383836200151e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620010b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010ad9062001ac4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200114b919062001c79565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051620011b1919062001bf6565b60405180910390a3620011c684848462001523565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200123f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620012369062001b4c565b60405180910390fd5b6200124d826000836200151e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620012d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620012cd9062001a3c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546200132f919062001cd6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162001396919062001bf6565b60405180910390a3620013ac8360008462001523565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001424576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200141b9062001bd4565b60405180910390fd5b62001432600083836200151e565b806002600082825462001446919062001c79565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200149d919062001c79565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001504919062001bf6565b60405180910390a36200151a6000838362001523565b5050565b505050565b505050565b610727806200223483390190565b6000813590506200154781620021ff565b92915050565b6000813590506200155e8162002219565b92915050565b600081519050620015758162002219565b92915050565b6000602082840312156200158e57600080fd5b60006200159e8482850162001536565b91505092915050565b60008060408385031215620015bb57600080fd5b6000620015cb8582860162001536565b9250506020620015de8582860162001536565b9150509250929050565b600080600060608486031215620015fe57600080fd5b60006200160e8682870162001536565b9350506020620016218682870162001536565b925050604062001634868287016200154d565b9150509250925092565b600080604083850312156200165257600080fd5b6000620016628582860162001536565b925050602062001675858286016200154d565b9150509250929050565b6000602082840312156200169257600080fd5b6000620016a2848285016200154d565b91505092915050565b600060208284031215620016be57600080fd5b6000620016ce8482850162001564565b91505092915050565b620016e28162001d11565b82525050565b620016f38162001d25565b82525050565b620017048162001d68565b82525050565b6000620017178262001c5d565b62001723818562001c68565b93506200173581856020860162001d90565b620017408162001e5a565b840191505092915050565b60006200175a60238362001c68565b9150620017678262001e6b565b604082019050919050565b60006200178160228362001c68565b91506200178e8262001eba565b604082019050919050565b6000620017a860228362001c68565b9150620017b58262001f09565b604082019050919050565b6000620017cf60208362001c68565b9150620017dc8262001f58565b602082019050919050565b6000620017f6601d8362001c68565b9150620018038262001f81565b602082019050919050565b60006200181d60268362001c68565b91506200182a8262001faa565b604082019050919050565b60006200184460188362001c68565b9150620018518262001ff9565b602082019050919050565b60006200186b60218362001c68565b9150620018788262002022565b604082019050919050565b600062001892601e8362001c68565b91506200189f8262002071565b602082019050919050565b6000620018b960218362001c68565b9150620018c6826200209a565b604082019050919050565b6000620018e060258362001c68565b9150620018ed82620020e9565b604082019050919050565b60006200190760248362001c68565b9150620019148262002138565b604082019050919050565b60006200192e60258362001c68565b91506200193b8262002187565b604082019050919050565b600062001955601f8362001c68565b91506200196282620021d6565b602082019050919050565b620019788162001d51565b82525050565b620019898162001d5b565b82525050565b6000602082019050620019a66000830184620016d7565b92915050565b6000604082019050620019c36000830185620016d7565b620019d260208301846200196d565b9392505050565b6000602082019050620019f06000830184620016e8565b92915050565b6000602082019050818103600083015262001a1281846200170a565b905092915050565b6000602082019050818103600083015262001a35816200174b565b9050919050565b6000602082019050818103600083015262001a578162001772565b9050919050565b6000602082019050818103600083015262001a798162001799565b9050919050565b6000602082019050818103600083015262001a9b81620017c0565b9050919050565b6000602082019050818103600083015262001abd81620017e7565b9050919050565b6000602082019050818103600083015262001adf816200180e565b9050919050565b6000602082019050818103600083015262001b018162001835565b9050919050565b6000602082019050818103600083015262001b23816200185c565b9050919050565b6000602082019050818103600083015262001b458162001883565b9050919050565b6000602082019050818103600083015262001b6781620018aa565b9050919050565b6000602082019050818103600083015262001b8981620018d1565b9050919050565b6000602082019050818103600083015262001bab81620018f8565b9050919050565b6000602082019050818103600083015262001bcd816200191f565b9050919050565b6000602082019050818103600083015262001bef8162001946565b9050919050565b600060208201905062001c0d60008301846200196d565b92915050565b600060408201905062001c2a60008301856200196d565b62001c396020830184620016f9565b9392505050565b600060208201905062001c5760008301846200197e565b92915050565b600081519050919050565b600082825260208201905092915050565b600062001c868262001d51565b915062001c938362001d51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001ccb5762001cca62001dfc565b5b828201905092915050565b600062001ce38262001d51565b915062001cf08362001d51565b92508282101562001d065762001d0562001dfc565b5b828203905092915050565b600062001d1e8262001d31565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600062001d758262001d7c565b9050919050565b600062001d898262001d31565b9050919050565b60005b8381101562001db057808201518184015260208101905062001d93565b8381111562001dc0576000848401525b50505050565b6000600282049050600182168062001ddf57607f821691505b6020821081141562001df65762001df562001e2b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204d697374436f696e20696e2064726f7020626f782e600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f44726f7020626f7820616c7265616479206578697374732e0000000000000000600082015250565b7f596f75206d7573742063726561746520612064726f7020626f7820666972737460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204d697374436f696e20746f20756e777261702e0000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200220a8162001d11565b81146200221657600080fd5b50565b620022248162001d51565b81146200223057600080fd5b5056fe608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61061a8061010d6000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063715018a6146100515780638d3c100a1461005b5780638da5cb5b14610077578063f2fde38b14610095575b600080fd5b6100596100b1565b005b610075600480360381019061007091906103a4565b6100c5565b005b61007f610145565b60405161008c9190610444565b60405180910390f35b6100af60048036038101906100aa919061037b565b61016e565b005b6100b96101f2565b6100c36000610270565b565b6100cd6101f2565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6100f1610145565b846040518363ffffffff1660e01b815260040161010f92919061045f565b600060405180830381600087803b15801561012957600080fd5b505af115801561013d573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101766101f2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156101e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101dd90610488565b60405180910390fd5b6101ef81610270565b50565b6101fa610334565b73ffffffffffffffffffffffffffffffffffffffff16610218610145565b73ffffffffffffffffffffffffffffffffffffffff161461026e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610265906104a8565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60008135905061034b8161059f565b92915050565b600081359050610360816105b6565b92915050565b600081359050610375816105cd565b92915050565b60006020828403121561038d57600080fd5b600061039b8482850161033c565b91505092915050565b600080604083850312156103b757600080fd5b60006103c585828601610366565b92505060206103d685828601610351565b9150509250929050565b6103e9816104d9565b82525050565b60006103fc6026836104c8565b915061040782610527565b604082019050919050565b600061041f6020836104c8565b915061042a82610576565b602082019050919050565b61043e8161051d565b82525050565b600060208201905061045960008301846103e0565b92915050565b600060408201905061047460008301856103e0565b6104816020830184610435565b9392505050565b600060208201905081810360008301526104a1816103ef565b9050919050565b600060208201905081810360008301526104c181610412565b9050919050565b600082825260208201905092915050565b60006104e4826104fd565b9050919050565b60006104f6826104d9565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6105a8816104d9565b81146105b357600080fd5b50565b6105bf816104eb565b81146105ca57600080fd5b50565b6105d68161051d565b81146105e157600080fd5b5056fea264697066735822122004ac284856e0fb23ddd4a29c155531fce1216c6ae11f7996ad636e59c289f33f64736f6c63430008040033a2646970667358221220a964cd453020d81bf936f511e8b44c505f05ad262bd1c003095491c8aa070c8f64736f6c63430008040033

Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.