ETH Price: $2,767.52 (+1.36%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer197117892024-04-22 15:19:11289 days ago1713799151IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0010604422.64507571
Transfer Ownersh...197117852024-04-22 15:18:23289 days ago1713799103IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0007595926.39514279
Transfer150566012022-07-01 12:24:58950 days ago1656678298IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0004748413.77130058
Transfer150559572022-07-01 10:01:53950 days ago1656669713IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0004647713.47921151
Transfer150559552022-07-01 10:01:12950 days ago1656669672IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0004581313.28651399
Transfer150499042022-06-30 10:29:36951 days ago1656584976IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0008493629.44579887
Transfer150497632022-06-30 9:53:54951 days ago1656582834IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0033201464.39764486
Transfer150497412022-06-30 9:45:43951 days ago1656582343IN
0x9cc2eE94...e1bcCbdA1
1 wei0.0010767449.81011187
Transfer150495402022-06-30 8:49:44951 days ago1656578984IN
0x9cc2eE94...e1bcCbdA1
1 wei0.0006327529.27133984
Transfer150446052022-06-29 10:39:12952 days ago1656499152IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0009681428.0775038
Transfer150389142022-06-28 9:03:05953 days ago1656406985IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0016841332.64272884
Transfer150344442022-06-27 12:50:48954 days ago1656334248IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.002005538.87159776
Approve149966782022-06-20 12:56:48961 days ago1655729808IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0008836718.96372382
Transfer146541982022-04-25 13:58:521017 days ago1650895132IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0023294445.15034431
Approve144616042022-03-26 11:38:201047 days ago1648294700IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0006279823.52161798
Approve144615982022-03-26 11:37:021047 days ago1648294622IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0005920822.17706073
Approve144615972022-03-26 11:36:321047 days ago1648294592IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0009510920.41074529
Approve144548722022-03-25 10:23:071048 days ago1648203787IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0010533822.60577081
Approve144509772022-03-24 19:53:281049 days ago1648151608IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0032000368.67317775
Approve144493462022-03-24 13:51:471049 days ago1648129907IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0018028138.97985755
Approve144482842022-03-24 9:57:581049 days ago1648115878IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0006637224.86048111
Approve144482842022-03-24 9:57:581049 days ago1648115878IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0007463125.30048111
Approve144481992022-03-24 9:40:031049 days ago1648114803IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0011922925.58676018
Transfer144429572022-03-23 13:57:341050 days ago1648043854IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0014038940.68659708
Transfer144429532022-03-23 13:56:221050 days ago1648043782IN
0x9cc2eE94...e1bcCbdA1
0 ETH0.0013499439.12319483
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
144428492022-03-23 13:32:471050 days ago1648042367
0x9cc2eE94...e1bcCbdA1
0.125 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Metacrypt_B_TR_MB_X

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Metacrypt_B_TR_MB_X.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "./helpers/ERC20.sol";
import "./helpers/ERC20Capped.sol";
import "./helpers/ERC20Burnable.sol";
import "./helpers/ERC20Decimals.sol";
import "./helpers/ERC20Mintable.sol";
import "./helpers/ERC20Ownable.sol";

import "../service/MetacryptHelper.sol";
import "../service/MetacryptGeneratorInfo.sol";
import "./helpers/TokenRecover.sol";

contract Metacrypt_B_TR_MB_X is
    ERC20Decimals,
    ERC20Capped,
    ERC20Mintable,
    ERC20Burnable,
    ERC20Ownable,
    TokenRecover,
    MetacryptHelper,
    MetacryptGeneratorInfo
{
    constructor(
        address __metacrypt_target,
        string memory __metacrypt_name,
        string memory __metacrypt_symbol,
        uint8 __metacrypt_decimals,
        uint256 __metacrypt_cap,
        uint256 __metacrypt_initial
    )
        payable
        ERC20(__metacrypt_name, __metacrypt_symbol)
        ERC20Decimals(__metacrypt_decimals)
        ERC20Capped(__metacrypt_cap)
        MetacryptHelper("Metacrypt_B_TR_MB_X", __metacrypt_target)
    {
        require(__metacrypt_initial <= __metacrypt_cap, "ERC20Capped: cap exceeded");
        ERC20._mint(_msgSender(), __metacrypt_initial);
    }

    function decimals() public view virtual override(ERC20, ERC20Decimals) returns (uint8) {
        return super.decimals();
    }

    function _mint(address account, uint256 amount) internal override(ERC20, ERC20Capped) onlyOwner {
        super._mint(account, amount);
    }

    function _finishMinting() internal override onlyOwner {
        super._finishMinting();
    }
}

File 2 of 12 : MetacryptGeneratorInfo.sol
// SPDX-License-Identifier: UNLICENSED
/*
  __  __      _                              _   
 |  \/  |    | |                            | |  
 | \  / | ___| |_ __ _  ___ _ __ _   _ _ __ | |_ 
 | |\/| |/ _ \ __/ _` |/ __| '__| | | | '_ \| __|
 | |  | |  __/ || (_| | (__| |  | |_| | |_) | |_ 
 |_|  |_|\___|\__\__,_|\___|_|   \__, | .__/ \__|
                                  __/ | |        
                                 |___/|_|        

Create your own token @ https://www.createmytoken.com
Additional Blockchain Services @ https://www.metacrypt.org
*/
pragma solidity ^0.8.0;

contract MetacryptGeneratorInfo {
    string public constant _GENERATOR = "https://www.metacrypt.org";
    string public constant _VERSION = "v3.0.5";

    function generator() public pure returns (string memory) {
        return _GENERATOR;
    }

    function version() public pure returns (string memory) {
        return _VERSION;
    }
}

File 3 of 12 : MetacryptHelper.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

abstract contract MetacryptHelper {
    address private __target;
    string private __identifier;

    constructor(string memory __metacrypt_id, address __metacrypt_target) payable {
        __target = __metacrypt_target;
        __identifier = __metacrypt_id;
        payable(__metacrypt_target).transfer(msg.value);
    }

    function createdByMetacrypt() public pure returns (bool) {
        return true;
    }

    function getIdentifier() public view returns (string memory) {
        return __identifier;
    }
}

File 4 of 12 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@uniswap/v2-periphery/contracts/interfaces/IERC20.sol";
import "@openzeppelin/contracts/utils/Context.sol";

contract ERC20 is Context, IERC20 {
    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 defaut 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");
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal 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");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal 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);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 to 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 {}
}

File 5 of 12 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "@openzeppelin/contracts/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");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

File 6 of 12 : 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 7 of 12 : ERC20Decimals.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "./ERC20.sol";

abstract contract ERC20Decimals is ERC20 {
    uint8 private immutable _decimals;

    constructor(uint8 decimals_) {
        _decimals = decimals_;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
}

File 8 of 12 : ERC20Mintable.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "./ERC20.sol";

abstract contract ERC20Mintable is ERC20 {
    bool private _mintingFinished = false;

    event MintFinished();
    modifier canMint() {
        require(!_mintingFinished, "ERC20Mintable: minting is finished");
        _;
    }

    function mintingFinished() external view returns (bool) {
        return _mintingFinished;
    }

    function mint(address account, uint256 amount) external canMint {
        _mint(account, amount);
    }

    function finishMinting() external canMint {
        _finishMinting();
    }

    function _finishMinting() internal virtual {
        _mintingFinished = true;

        emit MintFinished();
    }
}

File 9 of 12 : ERC20Ownable.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Context.sol";

abstract contract ERC20Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), "ERC20Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "ERC20Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 10 of 12 : TokenRecover.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "@uniswap/v2-periphery/contracts/interfaces/IERC20.sol";

import "./ERC20Ownable.sol";

contract TokenRecover is ERC20Ownable {
    function recoverToken(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner {
        IERC20(tokenAddress).transfer(owner(), tokenAmount);
    }
}

File 11 of 12 : 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 12 of 12 : IERC20.sol
pragma solidity >=0.5.0;

interface IERC20 {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"__metacrypt_target","type":"address"},{"internalType":"string","name":"__metacrypt_name","type":"string"},{"internalType":"string","name":"__metacrypt_symbol","type":"string"},{"internalType":"uint8","name":"__metacrypt_decimals","type":"uint8"},{"internalType":"uint256","name":"__metacrypt_cap","type":"uint256"},{"internalType":"uint256","name":"__metacrypt_initial","type":"uint256"}],"stateMutability":"payable","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":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_GENERATOR","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"createdByMetacrypt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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":[],"name":"finishMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"generator","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getIdentifier","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingFinished","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"}]

60c060408190526005805460ff19169055620018db388190039081908339810160408190526200002f9162000478565b6040518060400160405280601381526020017f4d65746163727970745f425f54525f4d425f5800000000000000000000000000815250868385888881600390805190602001906200008292919062000305565b5080516200009890600490602084019062000305565b50505060ff1660805280620000f45760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a206361702069732030000000000000000000000060448201526064015b60405180910390fd5b60a05260058054610100600160a81b0319163361010081029190911790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600680546001600160a01b0319166001600160a01b03831617905581516200017190600790602085019062000305565b506040516001600160a01b038216903480156108fc02916000818181858888f19350505050158015620001a8573d6000803e3d6000fd5b50505081811115620001fd5760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401620000eb565b6200021433826200022060201b62000a141760201c565b50505050505062000594565b6001600160a01b038216620002785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000eb565b80600260008282546200028c919062000530565b90915550506001600160a01b03821660009081526020819052604081208054839290620002bb90849062000530565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620003139062000557565b90600052602060002090601f01602090048101928262000337576000855562000382565b82601f106200035257805160ff191683800117855562000382565b8280016001018555821562000382579182015b828111156200038257825182559160200191906001019062000365565b506200039092915062000394565b5090565b5b8082111562000390576000815560010162000395565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003d357600080fd5b81516001600160401b0380821115620003f057620003f0620003ab565b604051601f8301601f19908116603f011681019082821181831017156200041b576200041b620003ab565b816040528381526020925086838588010111156200043857600080fd5b600091505b838210156200045c57858201830151818301840152908201906200043d565b838211156200046e5760008385830101525b9695505050505050565b60008060008060008060c087890312156200049257600080fd5b86516001600160a01b0381168114620004aa57600080fd5b60208801519096506001600160401b0380821115620004c857600080fd5b620004d68a838b01620003c1565b96506040890151915080821115620004ed57600080fd5b50620004fc89828a01620003c1565b945050606087015160ff811681146200051457600080fd5b809350506080870151915060a087015190509295509295509295565b600082198211156200055257634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200056c57607f821691505b602082108114156200058e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161131a620005c1600039600081816102820152610fb30152600061021e015261131a6000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063b29a814011610071578063b29a814014610408578063c2e7d95c1461041b578063dd62ed3e14610422578063f2fde38b1461045b57600080fd5b8063a457c2d7146103da578063a9059cbb146103ed578063aa23e03d1461040057600080fd5b80637afa1eed116100d35780637afa1eed1461036c5780637d64bcb4146103a15780638da5cb5b146103a957806395d89b41146103d257600080fd5b806370a0823114610328578063715018a61461035157806379cc67901461035957600080fd5b806334b1a50c1161016657806340c10f191161014057806340c10f19146102b957806342966c68146102ce57806349b0db14146102e157806354fd4d501461030657600080fd5b806334b1a50c14610248578063355274ea1461028057806339509351146102a657600080fd5b806305d2035b146101ae57806306fdde03146101ca578063095ea7b3146101df57806318160ddd146101f257806323b872dd14610204578063313ce56714610217575b600080fd5b60055460ff165b60405190151581526020015b60405180910390f35b6101d261046e565b6040516101c19190611076565b6101b56101ed3660046110e7565b610500565b6002545b6040519081526020016101c1565b6101b5610212366004611111565b610516565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101c1565b6101d26040518060400160405280601981526020017868747470733a2f2f7777772e6d65746163727970742e6f726760381b81525081565b7f00000000000000000000000000000000000000000000000000000000000000006101f6565b6101b56102b43660046110e7565b6105cc565b6102cc6102c73660046110e7565b610603565b005b6102cc6102dc36600461114d565b610634565b6101d26040518060400160405280600681526020016576332e302e3560d01b81525081565b60408051808201909152600681526576332e302e3560d01b60208201526101d2565b6101f6610336366004611166565b6001600160a01b031660009081526020819052604090205490565b6102cc610641565b6102cc6103673660046110e7565b6106c1565b60408051808201909152601981527868747470733a2f2f7777772e6d65746163727970742e6f726760381b60208201526101d2565b6102cc610749565b60055461010090046001600160a01b03166040516001600160a01b0390911681526020016101c1565b6101d2610776565b6101b56103e83660046110e7565b610785565b6101b56103fb3660046110e7565b610820565b6101d261082d565b6102cc6104163660046110e7565b61083c565b60016101b5565b6101f6610430366004611188565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102cc610469366004611166565b610913565b60606003805461047d906111bb565b80601f01602080910402602001604051908101604052809291908181526020018280546104a9906111bb565b80156104f65780601f106104cb576101008083540402835291602001916104f6565b820191906000526020600020905b8154815290600101906020018083116104d957829003601f168201915b5050505050905090565b600061050d338484610af3565b50600192915050565b6000610523848484610c18565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105ad5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105c185336105bc868561120c565b610af3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161050d9185906105bc908690611223565b60055460ff16156106265760405162461bcd60e51b81526004016105a49061123b565b6106308282610df0565b5050565b61063e3382610e2a565b50565b6005546001600160a01b036101009091041633146106715760405162461bcd60e51b81526004016105a49061127d565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60006106cd8333610430565b90508181101561072b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105a4565b61073a83336105bc858561120c565b6107448383610e2a565b505050565b60055460ff161561076c5760405162461bcd60e51b81526004016105a49061123b565b610774610f79565b565b60606004805461047d906111bb565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108075760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105a4565b61081633856105bc868561120c565b5060019392505050565b600061050d338484610c18565b60606007805461047d906111bb565b6005546001600160a01b0361010090910416331461086c5760405162461bcd60e51b81526004016105a49061127d565b816001600160a01b031663a9059cbb6108936005546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b1580156108db57600080fd5b505af11580156108ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074491906112c2565b6005546001600160a01b036101009091041633146109435760405162461bcd60e51b81526004016105a49061127d565b6001600160a01b0381166109ad5760405162461bcd60e51b815260206004820152602b60248201527f45524332304f776e61626c653a206e6577206f776e657220697320746865207a60448201526a65726f206164647265737360a81b60648201526084016105a4565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b038216610a6a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105a4565b8060026000828254610a7c9190611223565b90915550506001600160a01b03821660009081526020819052604081208054839290610aa9908490611223565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610b555760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105a4565b6001600160a01b038216610bb65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105a4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610c7c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105a4565b6001600160a01b038216610cde5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105a4565b6001600160a01b03831660009081526020819052604090205481811015610d565760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105a4565b610d60828261120c565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610d96908490611223565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610de291815260200190565b60405180910390a350505050565b6005546001600160a01b03610100909104163314610e205760405162461bcd60e51b81526004016105a49061127d565b6106308282610fb1565b6001600160a01b038216610e8a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105a4565b6001600160a01b03821660009081526020819052604090205481811015610efe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105a4565b610f08828261120c565b6001600160a01b03841660009081526020819052604081209190915560028054849290610f3690849061120c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c0b565b6005546001600160a01b03610100909104163314610fa95760405162461bcd60e51b81526004016105a49061127d565b61077461103e565b7f000000000000000000000000000000000000000000000000000000000000000081610fdc60025490565b610fe69190611223565b11156110345760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016105a4565b6106308282610a14565b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a1565b600060208083528351808285015260005b818110156110a357858101830151858201604001528201611087565b818111156110b5576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146110e257600080fd5b919050565b600080604083850312156110fa57600080fd5b611103836110cb565b946020939093013593505050565b60008060006060848603121561112657600080fd5b61112f846110cb565b925061113d602085016110cb565b9150604084013590509250925092565b60006020828403121561115f57600080fd5b5035919050565b60006020828403121561117857600080fd5b611181826110cb565b9392505050565b6000806040838503121561119b57600080fd5b6111a4836110cb565b91506111b2602084016110cb565b90509250929050565b600181811c908216806111cf57607f821691505b602082108114156111f057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561121e5761121e6111f6565b500390565b60008219821115611236576112366111f6565b500190565b60208082526022908201527f45524332304d696e7461626c653a206d696e74696e672069732066696e697368604082015261195960f21b606082015260800190565b60208082526025908201527f45524332304f776e61626c653a2063616c6c6572206973206e6f74207468652060408201526437bbb732b960d91b606082015260800190565b6000602082840312156112d457600080fd5b8151801515811461118157600080fdfea264697066735822122065e551711bb1886611551aaa207cdfa95d6ec7870f7d8d5043e3fd9db6ffb85a64736f6c634300080900330000000000000000000000003980a73f4159f867e6eec7555d26622e53d356b900000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000232bff5f46c000000000000000000000000000000000000000000000000000000000000000000953544152532046414e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055354415258000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063b29a814011610071578063b29a814014610408578063c2e7d95c1461041b578063dd62ed3e14610422578063f2fde38b1461045b57600080fd5b8063a457c2d7146103da578063a9059cbb146103ed578063aa23e03d1461040057600080fd5b80637afa1eed116100d35780637afa1eed1461036c5780637d64bcb4146103a15780638da5cb5b146103a957806395d89b41146103d257600080fd5b806370a0823114610328578063715018a61461035157806379cc67901461035957600080fd5b806334b1a50c1161016657806340c10f191161014057806340c10f19146102b957806342966c68146102ce57806349b0db14146102e157806354fd4d501461030657600080fd5b806334b1a50c14610248578063355274ea1461028057806339509351146102a657600080fd5b806305d2035b146101ae57806306fdde03146101ca578063095ea7b3146101df57806318160ddd146101f257806323b872dd14610204578063313ce56714610217575b600080fd5b60055460ff165b60405190151581526020015b60405180910390f35b6101d261046e565b6040516101c19190611076565b6101b56101ed3660046110e7565b610500565b6002545b6040519081526020016101c1565b6101b5610212366004611111565b610516565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000081681526020016101c1565b6101d26040518060400160405280601981526020017868747470733a2f2f7777772e6d65746163727970742e6f726760381b81525081565b7f000000000000000000000000000000000000000000000000002386f26fc100006101f6565b6101b56102b43660046110e7565b6105cc565b6102cc6102c73660046110e7565b610603565b005b6102cc6102dc36600461114d565b610634565b6101d26040518060400160405280600681526020016576332e302e3560d01b81525081565b60408051808201909152600681526576332e302e3560d01b60208201526101d2565b6101f6610336366004611166565b6001600160a01b031660009081526020819052604090205490565b6102cc610641565b6102cc6103673660046110e7565b6106c1565b60408051808201909152601981527868747470733a2f2f7777772e6d65746163727970742e6f726760381b60208201526101d2565b6102cc610749565b60055461010090046001600160a01b03166040516001600160a01b0390911681526020016101c1565b6101d2610776565b6101b56103e83660046110e7565b610785565b6101b56103fb3660046110e7565b610820565b6101d261082d565b6102cc6104163660046110e7565b61083c565b60016101b5565b6101f6610430366004611188565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102cc610469366004611166565b610913565b60606003805461047d906111bb565b80601f01602080910402602001604051908101604052809291908181526020018280546104a9906111bb565b80156104f65780601f106104cb576101008083540402835291602001916104f6565b820191906000526020600020905b8154815290600101906020018083116104d957829003601f168201915b5050505050905090565b600061050d338484610af3565b50600192915050565b6000610523848484610c18565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105ad5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105c185336105bc868561120c565b610af3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161050d9185906105bc908690611223565b60055460ff16156106265760405162461bcd60e51b81526004016105a49061123b565b6106308282610df0565b5050565b61063e3382610e2a565b50565b6005546001600160a01b036101009091041633146106715760405162461bcd60e51b81526004016105a49061127d565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60006106cd8333610430565b90508181101561072b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105a4565b61073a83336105bc858561120c565b6107448383610e2a565b505050565b60055460ff161561076c5760405162461bcd60e51b81526004016105a49061123b565b610774610f79565b565b60606004805461047d906111bb565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108075760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105a4565b61081633856105bc868561120c565b5060019392505050565b600061050d338484610c18565b60606007805461047d906111bb565b6005546001600160a01b0361010090910416331461086c5760405162461bcd60e51b81526004016105a49061127d565b816001600160a01b031663a9059cbb6108936005546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b1580156108db57600080fd5b505af11580156108ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074491906112c2565b6005546001600160a01b036101009091041633146109435760405162461bcd60e51b81526004016105a49061127d565b6001600160a01b0381166109ad5760405162461bcd60e51b815260206004820152602b60248201527f45524332304f776e61626c653a206e6577206f776e657220697320746865207a60448201526a65726f206164647265737360a81b60648201526084016105a4565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b038216610a6a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105a4565b8060026000828254610a7c9190611223565b90915550506001600160a01b03821660009081526020819052604081208054839290610aa9908490611223565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610b555760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105a4565b6001600160a01b038216610bb65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105a4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610c7c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105a4565b6001600160a01b038216610cde5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105a4565b6001600160a01b03831660009081526020819052604090205481811015610d565760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105a4565b610d60828261120c565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610d96908490611223565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610de291815260200190565b60405180910390a350505050565b6005546001600160a01b03610100909104163314610e205760405162461bcd60e51b81526004016105a49061127d565b6106308282610fb1565b6001600160a01b038216610e8a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105a4565b6001600160a01b03821660009081526020819052604090205481811015610efe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105a4565b610f08828261120c565b6001600160a01b03841660009081526020819052604081209190915560028054849290610f3690849061120c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c0b565b6005546001600160a01b03610100909104163314610fa95760405162461bcd60e51b81526004016105a49061127d565b61077461103e565b7f000000000000000000000000000000000000000000000000002386f26fc1000081610fdc60025490565b610fe69190611223565b11156110345760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016105a4565b6106308282610a14565b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a1565b600060208083528351808285015260005b818110156110a357858101830151858201604001528201611087565b818111156110b5576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146110e257600080fd5b919050565b600080604083850312156110fa57600080fd5b611103836110cb565b946020939093013593505050565b60008060006060848603121561112657600080fd5b61112f846110cb565b925061113d602085016110cb565b9150604084013590509250925092565b60006020828403121561115f57600080fd5b5035919050565b60006020828403121561117857600080fd5b611181826110cb565b9392505050565b6000806040838503121561119b57600080fd5b6111a4836110cb565b91506111b2602084016110cb565b90509250929050565b600181811c908216806111cf57607f821691505b602082108114156111f057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561121e5761121e6111f6565b500390565b60008219821115611236576112366111f6565b500190565b60208082526022908201527f45524332304d696e7461626c653a206d696e74696e672069732066696e697368604082015261195960f21b606082015260800190565b60208082526025908201527f45524332304f776e61626c653a2063616c6c6572206973206e6f74207468652060408201526437bbb732b960d91b606082015260800190565b6000602082840312156112d457600080fd5b8151801515811461118157600080fdfea264697066735822122065e551711bb1886611551aaa207cdfa95d6ec7870f7d8d5043e3fd9db6ffb85a64736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000003980a73f4159f867e6eec7555d26622e53d356b900000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000232bff5f46c000000000000000000000000000000000000000000000000000000000000000000953544152532046414e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055354415258000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : __metacrypt_target (address): 0x3980A73f4159f867E6EEC7555D26622e53d356B9
Arg [1] : __metacrypt_name (string): STARS FAN
Arg [2] : __metacrypt_symbol (string): STARX
Arg [3] : __metacrypt_decimals (uint8): 8
Arg [4] : __metacrypt_cap (uint256): 10000000000000000
Arg [5] : __metacrypt_initial (uint256): 9900000000000000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000003980a73f4159f867e6eec7555d26622e53d356b9
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [5] : 00000000000000000000000000000000000000000000000000232bff5f46c000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 53544152532046414e0000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 5354415258000000000000000000000000000000000000000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.