ETH Price: $2,690.48 (+3.35%)

Token

Mintopoly Money (MM)
 

Overview

Max Total Supply

100,000,000 MM

Holders

626 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
tjark.eth
Balance
17,702.67036034 MM

Value
$0.00
0x9F36A6bB398118bdCD5B1bC3343D8FEB6d7d02B9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mintopoly! is a blockchain simulation game powered by NFT Mintopoly! Cards with free airdrops of Mintopoly Money (MM) – our in-game currency that can be used to mint new Mintopoly Cards – to top players in each round.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MintopolyMoney

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : MintopolyMoney.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.5;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";

contract MintopolyMoney is ERC20, ERC20Capped, ERC20Burnable {

    uint8 private constant DECIMALS = 8;
    
    constructor() ERC20("Mintopoly Money", "MM") ERC20Capped(100000000 * (10 ** DECIMALS)) {
        ERC20._mint(msg.sender, 100000000 * (10 ** DECIMALS));
    }
    
    
    function decimals() public view virtual override returns (uint8) {
        return DECIMALS;
    }
    
    
    function _mint(address account, uint256 amount) internal virtual override(ERC20, ERC20Capped) {
        super._mint(account, amount);
    }

    
    function airdrop(address[] memory _recipients, uint[] memory _values) external returns (bool)  {
        require(_recipients.length == _values.length);
        for (uint i = 0; i < _values.length; i++) {
            require(transfer(_recipients[i], _values[i]));
        }
        return true;
    }

}

File 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT

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 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, 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override 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 virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `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 virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `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 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 3 of 7 : ERC20Capped.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

File 4 of 7 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 5 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

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 7 of 7 : Context.sol
// SPDX-License-Identifier: MIT

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;
    }
}

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

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"airdrop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b506008600a6200002291906200051b565b6305f5e10062000033919062000658565b6040518060400160405280600f81526020017f4d696e746f706f6c79204d6f6e657900000000000000000000000000000000008152506040518060400160405280600281526020017f4d4d0000000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b7929190620002e2565b508060049080519060200190620000d0929190620002e2565b5050506000811162000119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011090620003f1565b60405180910390fd5b80608081815250505062000159336008600a6200013791906200051b565b6305f5e10062000148919062000658565b6200015f60201b620009511760201c565b620007c3565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001c99062000413565b60405180910390fd5b620001e660008383620002d860201b60201c565b8060026000828254620001fa919062000463565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000251919062000463565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002b8919062000435565b60405180910390a3620002d460008383620002dd60201b60201c565b5050565b505050565b505050565b828054620002f090620006d0565b90600052602060002090601f01602090048101928262000314576000855562000360565b82601f106200032f57805160ff191683800117855562000360565b8280016001018555821562000360579182015b828111156200035f57825182559160200191906001019062000342565b5b5090506200036f919062000373565b5090565b5b808211156200038e57600081600090555060010162000374565b5090565b6000620003a160158362000452565b9150620003ae8262000771565b602082019050919050565b6000620003c8601f8362000452565b9150620003d5826200079a565b602082019050919050565b620003eb81620006b9565b82525050565b600060208201905081810360008301526200040c8162000392565b9050919050565b600060208201905081810360008301526200042e81620003b9565b9050919050565b60006020820190506200044c6000830184620003e0565b92915050565b600082825260208201905092915050565b60006200047082620006b9565b91506200047d83620006b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004b557620004b462000706565b5b828201905092915050565b6000808291508390505b60018511156200051257808604811115620004ea57620004e962000706565b5b6001851615620004fa5780820291505b80810290506200050a8562000764565b9450620004ca565b94509492505050565b60006200052882620006b9565b91506200053583620006c3565b9250620005647fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200056c565b905092915050565b6000826200057e576001905062000651565b816200058e576000905062000651565b8160018114620005a75760028114620005b257620005e8565b600191505062000651565b60ff841115620005c757620005c662000706565b5b8360020a915084821115620005e157620005e062000706565b5b5062000651565b5060208310610133831016604e8410600b8410161715620006225782820a9050838111156200061c576200061b62000706565b5b62000651565b620006318484846001620004c0565b925090508184048111156200064b576200064a62000706565b5b81810290505b9392505050565b60006200066582620006b9565b91506200067283620006b9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006ae57620006ad62000706565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620006e957607f821691505b602082108114156200070057620006ff62000735565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b608051611e86620007df60003960006105070152611e866000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806342966c681161009757806395d89b411161006657806395d89b411461029a578063a457c2d7146102b8578063a9059cbb146102e8578063dd62ed3e14610318576100f5565b806342966c6814610202578063672434821461021e57806370a082311461024e57806379cc67901461027e576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce56714610196578063355274ea146101b457806339509351146101d2576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610348565b60405161010f91906115f3565b60405180910390f35b610132600480360381019061012d919061130c565b6103da565b60405161013f91906115d8565b60405180910390f35b6101506103f8565b60405161015d9190611775565b60405180910390f35b610180600480360381019061017b91906112b9565b610402565b60405161018d91906115d8565b60405180910390f35b61019e6104fa565b6040516101ab9190611790565b60405180910390f35b6101bc610503565b6040516101c99190611775565b60405180910390f35b6101ec60048036038101906101e7919061130c565b61052b565b6040516101f991906115d8565b60405180910390f35b61021c600480360381019061021791906113c4565b6105d7565b005b6102386004803603810190610233919061134c565b6105eb565b60405161024591906115d8565b60405180910390f35b6102686004803603810190610263919061124c565b61066c565b6040516102759190611775565b60405180910390f35b6102986004803603810190610293919061130c565b6106b4565b005b6102a261072f565b6040516102af91906115f3565b60405180910390f35b6102d260048036038101906102cd919061130c565b6107c1565b6040516102df91906115d8565b60405180910390f35b61030260048036038101906102fd919061130c565b6108ac565b60405161030f91906115d8565b60405180910390f35b610332600480360381019061032d9190611279565b6108ca565b60405161033f9190611775565b60405180910390f35b60606003805461035790611956565b80601f016020809104026020016040519081016040528092919081815260200182805461038390611956565b80156103d05780601f106103a5576101008083540402835291602001916103d0565b820191906000526020600020905b8154815290600101906020018083116103b357829003601f168201915b5050505050905090565b60006103ee6103e7610ab1565b8484610ab9565b6001905092915050565b6000600254905090565b600061040f848484610c84565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045a610ab1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d190611695565b60405180910390fd5b6104ee856104e6610ab1565b858403610ab9565b60019150509392505050565b60006008905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60006105cd610538610ab1565b848460016000610546610ab1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105c89190611844565b610ab9565b6001905092915050565b6105e86105e2610ab1565b82610f05565b50565b600081518351146105fb57600080fd5b60005b82518110156106615761064584828151811061061d5761061c611a60565b5b602002602001015184838151811061063857610637611a60565b5b60200260200101516108ac565b61064e57600080fd5b8080610659906119b9565b9150506105fe565b506001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006106c7836106c2610ab1565b6108ca565b90508181101561070c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610703906116b5565b60405180910390fd5b61072083610718610ab1565b848403610ab9565b61072a8383610f05565b505050565b60606004805461073e90611956565b80601f016020809104026020016040519081016040528092919081815260200182805461076a90611956565b80156107b75780601f1061078c576101008083540402835291602001916107b7565b820191906000526020600020905b81548152906001019060200180831161079a57829003601f168201915b5050505050905090565b600080600160006107d0610ab1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561088d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088490611735565b60405180910390fd5b6108a1610898610ab1565b85858403610ab9565b600191505092915050565b60006108c06108b9610ab1565b8484610c84565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890611755565b60405180910390fd5b6109cd600083836110dc565b80600260008282546109df9190611844565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a349190611844565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a999190611775565b60405180910390a3610aad600083836110e1565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090611715565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9090611655565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c779190611775565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb906116f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90611615565b60405180910390fd5b610d6f8383836110dc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90611675565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e889190611844565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eec9190611775565b60405180910390a3610eff8484846110e1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c906116d5565b60405180910390fd5b610f81826000836110dc565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90611635565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461105e919061189a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110c39190611775565b60405180910390a36110d7836000846110e1565b505050565b505050565b505050565b60006110f96110f4846117d0565b6117ab565b9050808382526020820190508285602086028201111561111c5761111b611ac3565b5b60005b8581101561114c578161113288826111c6565b84526020840193506020830192505060018101905061111f565b5050509392505050565b6000611169611164846117fc565b6117ab565b9050808382526020820190508285602086028201111561118c5761118b611ac3565b5b60005b858110156111bc57816111a28882611237565b84526020840193506020830192505060018101905061118f565b5050509392505050565b6000813590506111d581611e22565b92915050565b600082601f8301126111f0576111ef611abe565b5b81356112008482602086016110e6565b91505092915050565b600082601f83011261121e5761121d611abe565b5b813561122e848260208601611156565b91505092915050565b60008135905061124681611e39565b92915050565b60006020828403121561126257611261611acd565b5b6000611270848285016111c6565b91505092915050565b600080604083850312156112905761128f611acd565b5b600061129e858286016111c6565b92505060206112af858286016111c6565b9150509250929050565b6000806000606084860312156112d2576112d1611acd565b5b60006112e0868287016111c6565b93505060206112f1868287016111c6565b925050604061130286828701611237565b9150509250925092565b6000806040838503121561132357611322611acd565b5b6000611331858286016111c6565b925050602061134285828601611237565b9150509250929050565b6000806040838503121561136357611362611acd565b5b600083013567ffffffffffffffff81111561138157611380611ac8565b5b61138d858286016111db565b925050602083013567ffffffffffffffff8111156113ae576113ad611ac8565b5b6113ba85828601611209565b9150509250929050565b6000602082840312156113da576113d9611acd565b5b60006113e884828501611237565b91505092915050565b6113fa816118e0565b82525050565b600061140b82611828565b6114158185611833565b9350611425818560208601611923565b61142e81611ad2565b840191505092915050565b6000611446602383611833565b915061145182611ae3565b604082019050919050565b6000611469602283611833565b915061147482611b32565b604082019050919050565b600061148c602283611833565b915061149782611b81565b604082019050919050565b60006114af602683611833565b91506114ba82611bd0565b604082019050919050565b60006114d2602883611833565b91506114dd82611c1f565b604082019050919050565b60006114f5602483611833565b915061150082611c6e565b604082019050919050565b6000611518602183611833565b915061152382611cbd565b604082019050919050565b600061153b602583611833565b915061154682611d0c565b604082019050919050565b600061155e602483611833565b915061156982611d5b565b604082019050919050565b6000611581602583611833565b915061158c82611daa565b604082019050919050565b60006115a4601f83611833565b91506115af82611df9565b602082019050919050565b6115c38161190c565b82525050565b6115d281611916565b82525050565b60006020820190506115ed60008301846113f1565b92915050565b6000602082019050818103600083015261160d8184611400565b905092915050565b6000602082019050818103600083015261162e81611439565b9050919050565b6000602082019050818103600083015261164e8161145c565b9050919050565b6000602082019050818103600083015261166e8161147f565b9050919050565b6000602082019050818103600083015261168e816114a2565b9050919050565b600060208201905081810360008301526116ae816114c5565b9050919050565b600060208201905081810360008301526116ce816114e8565b9050919050565b600060208201905081810360008301526116ee8161150b565b9050919050565b6000602082019050818103600083015261170e8161152e565b9050919050565b6000602082019050818103600083015261172e81611551565b9050919050565b6000602082019050818103600083015261174e81611574565b9050919050565b6000602082019050818103600083015261176e81611597565b9050919050565b600060208201905061178a60008301846115ba565b92915050565b60006020820190506117a560008301846115c9565b92915050565b60006117b56117c6565b90506117c18282611988565b919050565b6000604051905090565b600067ffffffffffffffff8211156117eb576117ea611a8f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561181757611816611a8f565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061184f8261190c565b915061185a8361190c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561188f5761188e611a02565b5b828201905092915050565b60006118a58261190c565b91506118b08361190c565b9250828210156118c3576118c2611a02565b5b828203905092915050565b60006118d9826118ec565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611941578082015181840152602081019050611926565b83811115611950576000848401525b50505050565b6000600282049050600182168061196e57607f821691505b6020821081141561198257611981611a31565b5b50919050565b61199182611ad2565b810181811067ffffffffffffffff821117156119b0576119af611a8f565b5b80604052505050565b60006119c48261190c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156119f7576119f6611a02565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e2b816118ce565b8114611e3657600080fd5b50565b611e428161190c565b8114611e4d57600080fd5b5056fea2646970667358221220f3c35c896b22a3f58b24d68152cd7954139451521c6fd6d650da8f7a144a109064736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806342966c681161009757806395d89b411161006657806395d89b411461029a578063a457c2d7146102b8578063a9059cbb146102e8578063dd62ed3e14610318576100f5565b806342966c6814610202578063672434821461021e57806370a082311461024e57806379cc67901461027e576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce56714610196578063355274ea146101b457806339509351146101d2576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610348565b60405161010f91906115f3565b60405180910390f35b610132600480360381019061012d919061130c565b6103da565b60405161013f91906115d8565b60405180910390f35b6101506103f8565b60405161015d9190611775565b60405180910390f35b610180600480360381019061017b91906112b9565b610402565b60405161018d91906115d8565b60405180910390f35b61019e6104fa565b6040516101ab9190611790565b60405180910390f35b6101bc610503565b6040516101c99190611775565b60405180910390f35b6101ec60048036038101906101e7919061130c565b61052b565b6040516101f991906115d8565b60405180910390f35b61021c600480360381019061021791906113c4565b6105d7565b005b6102386004803603810190610233919061134c565b6105eb565b60405161024591906115d8565b60405180910390f35b6102686004803603810190610263919061124c565b61066c565b6040516102759190611775565b60405180910390f35b6102986004803603810190610293919061130c565b6106b4565b005b6102a261072f565b6040516102af91906115f3565b60405180910390f35b6102d260048036038101906102cd919061130c565b6107c1565b6040516102df91906115d8565b60405180910390f35b61030260048036038101906102fd919061130c565b6108ac565b60405161030f91906115d8565b60405180910390f35b610332600480360381019061032d9190611279565b6108ca565b60405161033f9190611775565b60405180910390f35b60606003805461035790611956565b80601f016020809104026020016040519081016040528092919081815260200182805461038390611956565b80156103d05780601f106103a5576101008083540402835291602001916103d0565b820191906000526020600020905b8154815290600101906020018083116103b357829003601f168201915b5050505050905090565b60006103ee6103e7610ab1565b8484610ab9565b6001905092915050565b6000600254905090565b600061040f848484610c84565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045a610ab1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d190611695565b60405180910390fd5b6104ee856104e6610ab1565b858403610ab9565b60019150509392505050565b60006008905090565b60007f000000000000000000000000000000000000000000000000002386f26fc10000905090565b60006105cd610538610ab1565b848460016000610546610ab1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105c89190611844565b610ab9565b6001905092915050565b6105e86105e2610ab1565b82610f05565b50565b600081518351146105fb57600080fd5b60005b82518110156106615761064584828151811061061d5761061c611a60565b5b602002602001015184838151811061063857610637611a60565b5b60200260200101516108ac565b61064e57600080fd5b8080610659906119b9565b9150506105fe565b506001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006106c7836106c2610ab1565b6108ca565b90508181101561070c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610703906116b5565b60405180910390fd5b61072083610718610ab1565b848403610ab9565b61072a8383610f05565b505050565b60606004805461073e90611956565b80601f016020809104026020016040519081016040528092919081815260200182805461076a90611956565b80156107b75780601f1061078c576101008083540402835291602001916107b7565b820191906000526020600020905b81548152906001019060200180831161079a57829003601f168201915b5050505050905090565b600080600160006107d0610ab1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561088d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088490611735565b60405180910390fd5b6108a1610898610ab1565b85858403610ab9565b600191505092915050565b60006108c06108b9610ab1565b8484610c84565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890611755565b60405180910390fd5b6109cd600083836110dc565b80600260008282546109df9190611844565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a349190611844565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a999190611775565b60405180910390a3610aad600083836110e1565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090611715565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9090611655565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c779190611775565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb906116f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90611615565b60405180910390fd5b610d6f8383836110dc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90611675565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e889190611844565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eec9190611775565b60405180910390a3610eff8484846110e1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c906116d5565b60405180910390fd5b610f81826000836110dc565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90611635565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461105e919061189a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110c39190611775565b60405180910390a36110d7836000846110e1565b505050565b505050565b505050565b60006110f96110f4846117d0565b6117ab565b9050808382526020820190508285602086028201111561111c5761111b611ac3565b5b60005b8581101561114c578161113288826111c6565b84526020840193506020830192505060018101905061111f565b5050509392505050565b6000611169611164846117fc565b6117ab565b9050808382526020820190508285602086028201111561118c5761118b611ac3565b5b60005b858110156111bc57816111a28882611237565b84526020840193506020830192505060018101905061118f565b5050509392505050565b6000813590506111d581611e22565b92915050565b600082601f8301126111f0576111ef611abe565b5b81356112008482602086016110e6565b91505092915050565b600082601f83011261121e5761121d611abe565b5b813561122e848260208601611156565b91505092915050565b60008135905061124681611e39565b92915050565b60006020828403121561126257611261611acd565b5b6000611270848285016111c6565b91505092915050565b600080604083850312156112905761128f611acd565b5b600061129e858286016111c6565b92505060206112af858286016111c6565b9150509250929050565b6000806000606084860312156112d2576112d1611acd565b5b60006112e0868287016111c6565b93505060206112f1868287016111c6565b925050604061130286828701611237565b9150509250925092565b6000806040838503121561132357611322611acd565b5b6000611331858286016111c6565b925050602061134285828601611237565b9150509250929050565b6000806040838503121561136357611362611acd565b5b600083013567ffffffffffffffff81111561138157611380611ac8565b5b61138d858286016111db565b925050602083013567ffffffffffffffff8111156113ae576113ad611ac8565b5b6113ba85828601611209565b9150509250929050565b6000602082840312156113da576113d9611acd565b5b60006113e884828501611237565b91505092915050565b6113fa816118e0565b82525050565b600061140b82611828565b6114158185611833565b9350611425818560208601611923565b61142e81611ad2565b840191505092915050565b6000611446602383611833565b915061145182611ae3565b604082019050919050565b6000611469602283611833565b915061147482611b32565b604082019050919050565b600061148c602283611833565b915061149782611b81565b604082019050919050565b60006114af602683611833565b91506114ba82611bd0565b604082019050919050565b60006114d2602883611833565b91506114dd82611c1f565b604082019050919050565b60006114f5602483611833565b915061150082611c6e565b604082019050919050565b6000611518602183611833565b915061152382611cbd565b604082019050919050565b600061153b602583611833565b915061154682611d0c565b604082019050919050565b600061155e602483611833565b915061156982611d5b565b604082019050919050565b6000611581602583611833565b915061158c82611daa565b604082019050919050565b60006115a4601f83611833565b91506115af82611df9565b602082019050919050565b6115c38161190c565b82525050565b6115d281611916565b82525050565b60006020820190506115ed60008301846113f1565b92915050565b6000602082019050818103600083015261160d8184611400565b905092915050565b6000602082019050818103600083015261162e81611439565b9050919050565b6000602082019050818103600083015261164e8161145c565b9050919050565b6000602082019050818103600083015261166e8161147f565b9050919050565b6000602082019050818103600083015261168e816114a2565b9050919050565b600060208201905081810360008301526116ae816114c5565b9050919050565b600060208201905081810360008301526116ce816114e8565b9050919050565b600060208201905081810360008301526116ee8161150b565b9050919050565b6000602082019050818103600083015261170e8161152e565b9050919050565b6000602082019050818103600083015261172e81611551565b9050919050565b6000602082019050818103600083015261174e81611574565b9050919050565b6000602082019050818103600083015261176e81611597565b9050919050565b600060208201905061178a60008301846115ba565b92915050565b60006020820190506117a560008301846115c9565b92915050565b60006117b56117c6565b90506117c18282611988565b919050565b6000604051905090565b600067ffffffffffffffff8211156117eb576117ea611a8f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561181757611816611a8f565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061184f8261190c565b915061185a8361190c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561188f5761188e611a02565b5b828201905092915050565b60006118a58261190c565b91506118b08361190c565b9250828210156118c3576118c2611a02565b5b828203905092915050565b60006118d9826118ec565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611941578082015181840152602081019050611926565b83811115611950576000848401525b50505050565b6000600282049050600182168061196e57607f821691505b6020821081141561198257611981611a31565b5b50919050565b61199182611ad2565b810181811067ffffffffffffffff821117156119b0576119af611a8f565b5b80604052505050565b60006119c48261190c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156119f7576119f6611a02565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e2b816118ce565b8114611e3657600080fd5b50565b611e428161190c565b8114611e4d57600080fd5b5056fea2646970667358221220f3c35c896b22a3f58b24d68152cd7954139451521c6fd6d650da8f7a144a109064736f6c63430008060033

Loading...
Loading
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.