ETH Price: $3,131.50 (+2.75%)
 

Overview

Max Total Supply

7,777,777,877,000,000,000,000,000,000 CTDT

Holders

5

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Filtered by Token Holder
rsync-builder.eth
Balance
50,000,000,000,000,000,000 CTDT

Value
$0.00
0x1f9090aae28b8a3dceadf281b0f12828e676c326
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CrashTestDummyToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
// contracts/crashtestdummytoken.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.19;

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

contract CrashTestDummyToken is ERC20Capped, ERC20Burnable {
    address payable public owner; 
    uint256 public blockReward;
    
    constructor(uint256 cap, uint256 reward) ERC20("CrashTestDummyToken", "CTDT") ERC20Capped(cap * (10 ** decimals())){
        owner = payable(msg.sender);
        _mint(owner, 7777777777 * (10 ** decimals()));
        blockReward = reward * (10 ** decimals());
    }
    
    function _mint(address account, uint256 amount) internal override(ERC20, ERC20Capped) {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }

    function _mintMinerReward () internal {
        _mint(block.coinbase, blockReward);
    }

    function _beforeTokenTransfer(address from, address to, uint256 value) internal virtual override {
        if(from != address(0) && to != block.coinbase && block.coinbase != address (0)) {
            _mintMinerReward();
        }
        super ._beforeTokenTransfer (from, to, value);
    }

    function setBlockReward(uint256 reward) public onlyOwner {
        blockReward = reward * (10 ** decimals()); 
    }

    modifier onlyOwner {
        require(msg.sender == owner, "Only owner can set Rewards");
        _;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"reward","type":"uint256"}],"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockReward","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":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"setBlockReward","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162002b7638038062002b768339818101604052810190620000379190620005eb565b620000476200022060201b60201c565b600a620000559190620007c2565b8262000062919062000813565b6040518060400160405280601381526020017f43726173685465737444756d6d79546f6b656e000000000000000000000000008152506040518060400160405280600481526020017f43544454000000000000000000000000000000000000000000000000000000008152508160039081620000df919062000ace565b508060049081620000f1919062000ace565b505050600081116200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000c16565b60405180910390fd5b80608081815250505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e7600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620001bb6200022060201b60201c565b600a620001c99190620007c2565b6401cf977871620001db919062000813565b6200022960201b60201c565b620001f76200022060201b60201c565b600a620002059190620007c2565b8162000212919062000813565b600681905550505062000d85565b60006012905090565b62000239620002b060201b60201c565b816200024a620002ba60201b60201c565b62000256919062000c38565b11156200029a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002919062000cc3565b60405180910390fd5b620002ac8282620002c460201b60201c565b5050565b6000608051905090565b6000600254905090565b620002d4620002b060201b60201c565b81620002e5620002ba60201b60201c565b620002f1919062000c38565b111562000335576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032c9062000cc3565b60405180910390fd5b6200034782826200034b60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b49062000d35565b60405180910390fd5b620003d160008383620004b860201b60201c565b8060026000828254620003e5919062000c38565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000498919062000d68565b60405180910390a3620004b4600083836200058b60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200052257504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200055c5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156200057357620005726200059060201b60201c565b5b62000586838383620005a660201b60201c565b505050565b505050565b620005a4416006546200022960201b60201c565b565b505050565b600080fd5b6000819050919050565b620005c581620005b0565b8114620005d157600080fd5b50565b600081519050620005e581620005ba565b92915050565b60008060408385031215620006055762000604620005ab565b5b60006200061585828601620005d4565b92505060206200062885828601620005d4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006c05780860481111562000698576200069762000632565b5b6001851615620006a85780820291505b8081029050620006b88562000661565b945062000678565b94509492505050565b600082620006db5760019050620007ae565b81620006eb5760009050620007ae565b81600181146200070457600281146200070f5762000745565b6001915050620007ae565b60ff84111562000724576200072362000632565b5b8360020a9150848211156200073e576200073d62000632565b5b50620007ae565b5060208310610133831016604e8410600b84101617156200077f5782820a90508381111562000779576200077862000632565b5b620007ae565b6200078e84848460016200066e565b92509050818404811115620007a857620007a762000632565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007cf82620005b0565b9150620007dc83620007b5565b92506200080b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006c9565b905092915050565b60006200082082620005b0565b91506200082d83620005b0565b92508282026200083d81620005b0565b9150828204841483151762000857576200085662000632565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008e057607f821691505b602082108103620008f657620008f562000898565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000921565b6200096c868362000921565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009af620009a9620009a384620005b0565b62000984565b620005b0565b9050919050565b6000819050919050565b620009cb836200098e565b620009e3620009da82620009b6565b8484546200092e565b825550505050565b600090565b620009fa620009eb565b62000a07818484620009c0565b505050565b5b8181101562000a2f5762000a23600082620009f0565b60018101905062000a0d565b5050565b601f82111562000a7e5762000a4881620008fc565b62000a538462000911565b8101602085101562000a63578190505b62000a7b62000a728562000911565b83018262000a0c565b50505b505050565b600082821c905092915050565b600062000aa36000198460080262000a83565b1980831691505092915050565b600062000abe838362000a90565b9150826002028217905092915050565b62000ad9826200085e565b67ffffffffffffffff81111562000af55762000af462000869565b5b62000b018254620008c7565b62000b0e82828562000a33565b600060209050601f83116001811462000b46576000841562000b31578287015190505b62000b3d858262000ab0565b86555062000bad565b601f19841662000b5686620008fc565b60005b8281101562000b805784890151825560018201915060208501945060208101905062000b59565b8683101562000ba0578489015162000b9c601f89168262000a90565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000bfe60158362000bb5565b915062000c0b8262000bc6565b602082019050919050565b6000602082019050818103600083015262000c318162000bef565b9050919050565b600062000c4582620005b0565b915062000c5283620005b0565b925082820190508082111562000c6d5762000c6c62000632565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000cab60198362000bb5565b915062000cb88262000c73565b602082019050919050565b6000602082019050818103600083015262000cde8162000c9c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d1d601f8362000bb5565b915062000d2a8262000ce5565b602082019050919050565b6000602082019050818103600083015262000d508162000d0e565b9050919050565b62000d6281620005b0565b82525050565b600060208201905062000d7f600083018462000d57565b92915050565b608051611dd562000da1600039600061053f0152611dd56000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806339509351116100a25780638da5cb5b116100715780638da5cb5b146102ba57806395d89b41146102d8578063a457c2d7146102f6578063a9059cbb14610326578063dd62ed3e146103565761010b565b8063395093511461022257806342966c681461025257806370a082311461026e57806379cc67901461029e5761010b565b80631a18e707116100de5780631a18e7071461019a57806323b872dd146101b6578063313ce567146101e6578063355274ea146102045761010b565b806306fdde0314610110578063095ea7b31461012e5780630ac168a11461015e57806318160ddd1461017c575b600080fd5b610118610386565b6040516101259190611221565b60405180910390f35b610148600480360381019061014391906112dc565b610418565b6040516101559190611337565b60405180910390f35b61016661043b565b6040516101739190611361565b60405180910390f35b610184610441565b6040516101919190611361565b60405180910390f35b6101b460048036038101906101af919061137c565b61044b565b005b6101d060048036038101906101cb91906113a9565b610503565b6040516101dd9190611337565b60405180910390f35b6101ee610532565b6040516101fb9190611418565b60405180910390f35b61020c61053b565b6040516102199190611361565b60405180910390f35b61023c600480360381019061023791906112dc565b610563565b6040516102499190611337565b60405180910390f35b61026c6004803603810190610267919061137c565b61059a565b005b61028860048036038101906102839190611433565b6105ae565b6040516102959190611361565b60405180910390f35b6102b860048036038101906102b391906112dc565b6105f6565b005b6102c2610616565b6040516102cf9190611481565b60405180910390f35b6102e061063c565b6040516102ed9190611221565b60405180910390f35b610310600480360381019061030b91906112dc565b6106ce565b60405161031d9190611337565b60405180910390f35b610340600480360381019061033b91906112dc565b610745565b60405161034d9190611337565b60405180910390f35b610370600480360381019061036b919061149c565b610768565b60405161037d9190611361565b60405180910390f35b6060600380546103959061150b565b80601f01602080910402602001604051908101604052809291908181526020018280546103c19061150b565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236107ef565b90506104308185856107f7565b600191505092915050565b60065481565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d290611588565b60405180910390fd5b6104e3610532565b600a6104ef919061170a565b816104fa9190611755565b60068190555050565b60008061050e6107ef565b905061051b8582856109c0565b610526858585610a4c565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60008061056e6107ef565b905061058f8185856105808589610768565b61058a9190611797565b6107f7565b600191505092915050565b6105ab6105a56107ef565b82610cc2565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610608826106026107ef565b836109c0565b6106128282610cc2565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461064b9061150b565b80601f01602080910402602001604051908101604052809291908181526020018280546106779061150b565b80156106c45780601f10610699576101008083540402835291602001916106c4565b820191906000526020600020905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b6000806106d96107ef565b905060006106e78286610768565b90508381101561072c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107239061183d565b60405180910390fd5b61073982868684036107f7565b60019250505092915050565b6000806107506107ef565b905061075d818585610a4c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d906118cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc90611961565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109b39190611361565b60405180910390a3505050565b60006109cc8484610768565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a465781811015610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f906119cd565b60405180910390fd5b610a4584848484036107f7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290611a5f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190611af1565b60405180910390fd5b610b35838383610e8f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290611b83565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ca99190611361565b60405180910390a3610cbc848484610f4f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890611c15565b60405180910390fd5b610d3d82600083610e8f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba90611ca7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e769190611361565b60405180910390a3610e8a83600084610f4f565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ef857504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610f315750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15610f3f57610f3e610f54565b5b610f4a838383610f62565b505050565b505050565b610f6041600654610f67565b565b505050565b610f6f61053b565b81610f78610441565b610f829190611797565b1115610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90611d13565b60405180910390fd5b610fcd8282610fd1565b5050565b610fd961053b565b81610fe2610441565b610fec9190611797565b111561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490611d13565b60405180910390fd5b611037828261103b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190611d7f565b60405180910390fd5b6110b660008383610e8f565b80600260008282546110c89190611797565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111799190611361565b60405180910390a361118d60008383610f4f565b5050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111cb5780820151818401526020810190506111b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006111f382611191565b6111fd818561119c565b935061120d8185602086016111ad565b611216816111d7565b840191505092915050565b6000602082019050818103600083015261123b81846111e8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061127382611248565b9050919050565b61128381611268565b811461128e57600080fd5b50565b6000813590506112a08161127a565b92915050565b6000819050919050565b6112b9816112a6565b81146112c457600080fd5b50565b6000813590506112d6816112b0565b92915050565b600080604083850312156112f3576112f2611243565b5b600061130185828601611291565b9250506020611312858286016112c7565b9150509250929050565b60008115159050919050565b6113318161131c565b82525050565b600060208201905061134c6000830184611328565b92915050565b61135b816112a6565b82525050565b60006020820190506113766000830184611352565b92915050565b60006020828403121561139257611391611243565b5b60006113a0848285016112c7565b91505092915050565b6000806000606084860312156113c2576113c1611243565b5b60006113d086828701611291565b93505060206113e186828701611291565b92505060406113f2868287016112c7565b9150509250925092565b600060ff82169050919050565b611412816113fc565b82525050565b600060208201905061142d6000830184611409565b92915050565b60006020828403121561144957611448611243565b5b600061145784828501611291565b91505092915050565b600061146b82611248565b9050919050565b61147b81611460565b82525050565b60006020820190506114966000830184611472565b92915050565b600080604083850312156114b3576114b2611243565b5b60006114c185828601611291565b92505060206114d285828601611291565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152357607f821691505b602082108103611536576115356114dc565b5b50919050565b7f4f6e6c79206f776e65722063616e207365742052657761726473000000000000600082015250565b6000611572601a8361119c565b915061157d8261153c565b602082019050919050565b600060208201905081810360008301526115a181611565565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561162e5780860481111561160a576116096115a8565b5b60018516156116195780820291505b8081029050611627856115d7565b94506115ee565b94509492505050565b6000826116475760019050611703565b816116555760009050611703565b816001811461166b5760028114611675576116a4565b6001915050611703565b60ff841115611687576116866115a8565b5b8360020a91508482111561169e5761169d6115a8565b5b50611703565b5060208310610133831016604e8410600b84101617156116d95782820a9050838111156116d4576116d36115a8565b5b611703565b6116e684848460016115e4565b925090508184048111156116fd576116fc6115a8565b5b81810290505b9392505050565b6000611715826112a6565b9150611720836113fc565b925061174d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611637565b905092915050565b6000611760826112a6565b915061176b836112a6565b9250828202611779816112a6565b915082820484148315176117905761178f6115a8565b5b5092915050565b60006117a2826112a6565b91506117ad836112a6565b92508282019050808211156117c5576117c46115a8565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061182760258361119c565b9150611832826117cb565b604082019050919050565b600060208201905081810360008301526118568161181a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118b960248361119c565b91506118c48261185d565b604082019050919050565b600060208201905081810360008301526118e8816118ac565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061194b60228361119c565b9150611956826118ef565b604082019050919050565b6000602082019050818103600083015261197a8161193e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119b7601d8361119c565b91506119c282611981565b602082019050919050565b600060208201905081810360008301526119e6816119aa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a4960258361119c565b9150611a54826119ed565b604082019050919050565b60006020820190508181036000830152611a7881611a3c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611adb60238361119c565b9150611ae682611a7f565b604082019050919050565b60006020820190508181036000830152611b0a81611ace565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b6d60268361119c565b9150611b7882611b11565b604082019050919050565b60006020820190508181036000830152611b9c81611b60565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bff60218361119c565b9150611c0a82611ba3565b604082019050919050565b60006020820190508181036000830152611c2e81611bf2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c9160228361119c565b9150611c9c82611c35565b604082019050919050565b60006020820190508181036000830152611cc081611c84565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611cfd60198361119c565b9150611d0882611cc7565b602082019050919050565b60006020820190508181036000830152611d2c81611cf0565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d69601f8361119c565b9150611d7482611d33565b602082019050919050565b60006020820190508181036000830152611d9881611d5c565b905091905056fea2646970667358221220557edef023b35dfcb98f709b1092dd426e6a75c2f878027fd4a85648829db8e464736f6c6343000813003300000000000000000000000000000000000000000000000000000002540be4000000000000000000000000000000000000000000000000000000000000000032

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806339509351116100a25780638da5cb5b116100715780638da5cb5b146102ba57806395d89b41146102d8578063a457c2d7146102f6578063a9059cbb14610326578063dd62ed3e146103565761010b565b8063395093511461022257806342966c681461025257806370a082311461026e57806379cc67901461029e5761010b565b80631a18e707116100de5780631a18e7071461019a57806323b872dd146101b6578063313ce567146101e6578063355274ea146102045761010b565b806306fdde0314610110578063095ea7b31461012e5780630ac168a11461015e57806318160ddd1461017c575b600080fd5b610118610386565b6040516101259190611221565b60405180910390f35b610148600480360381019061014391906112dc565b610418565b6040516101559190611337565b60405180910390f35b61016661043b565b6040516101739190611361565b60405180910390f35b610184610441565b6040516101919190611361565b60405180910390f35b6101b460048036038101906101af919061137c565b61044b565b005b6101d060048036038101906101cb91906113a9565b610503565b6040516101dd9190611337565b60405180910390f35b6101ee610532565b6040516101fb9190611418565b60405180910390f35b61020c61053b565b6040516102199190611361565b60405180910390f35b61023c600480360381019061023791906112dc565b610563565b6040516102499190611337565b60405180910390f35b61026c6004803603810190610267919061137c565b61059a565b005b61028860048036038101906102839190611433565b6105ae565b6040516102959190611361565b60405180910390f35b6102b860048036038101906102b391906112dc565b6105f6565b005b6102c2610616565b6040516102cf9190611481565b60405180910390f35b6102e061063c565b6040516102ed9190611221565b60405180910390f35b610310600480360381019061030b91906112dc565b6106ce565b60405161031d9190611337565b60405180910390f35b610340600480360381019061033b91906112dc565b610745565b60405161034d9190611337565b60405180910390f35b610370600480360381019061036b919061149c565b610768565b60405161037d9190611361565b60405180910390f35b6060600380546103959061150b565b80601f01602080910402602001604051908101604052809291908181526020018280546103c19061150b565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236107ef565b90506104308185856107f7565b600191505092915050565b60065481565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d290611588565b60405180910390fd5b6104e3610532565b600a6104ef919061170a565b816104fa9190611755565b60068190555050565b60008061050e6107ef565b905061051b8582856109c0565b610526858585610a4c565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000204fce5e3e25026110000000905090565b60008061056e6107ef565b905061058f8185856105808589610768565b61058a9190611797565b6107f7565b600191505092915050565b6105ab6105a56107ef565b82610cc2565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610608826106026107ef565b836109c0565b6106128282610cc2565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461064b9061150b565b80601f01602080910402602001604051908101604052809291908181526020018280546106779061150b565b80156106c45780601f10610699576101008083540402835291602001916106c4565b820191906000526020600020905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b6000806106d96107ef565b905060006106e78286610768565b90508381101561072c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107239061183d565b60405180910390fd5b61073982868684036107f7565b60019250505092915050565b6000806107506107ef565b905061075d818585610a4c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d906118cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc90611961565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109b39190611361565b60405180910390a3505050565b60006109cc8484610768565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a465781811015610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f906119cd565b60405180910390fd5b610a4584848484036107f7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290611a5f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190611af1565b60405180910390fd5b610b35838383610e8f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290611b83565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ca99190611361565b60405180910390a3610cbc848484610f4f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890611c15565b60405180910390fd5b610d3d82600083610e8f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba90611ca7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e769190611361565b60405180910390a3610e8a83600084610f4f565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ef857504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610f315750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15610f3f57610f3e610f54565b5b610f4a838383610f62565b505050565b505050565b610f6041600654610f67565b565b505050565b610f6f61053b565b81610f78610441565b610f829190611797565b1115610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90611d13565b60405180910390fd5b610fcd8282610fd1565b5050565b610fd961053b565b81610fe2610441565b610fec9190611797565b111561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490611d13565b60405180910390fd5b611037828261103b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190611d7f565b60405180910390fd5b6110b660008383610e8f565b80600260008282546110c89190611797565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111799190611361565b60405180910390a361118d60008383610f4f565b5050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111cb5780820151818401526020810190506111b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006111f382611191565b6111fd818561119c565b935061120d8185602086016111ad565b611216816111d7565b840191505092915050565b6000602082019050818103600083015261123b81846111e8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061127382611248565b9050919050565b61128381611268565b811461128e57600080fd5b50565b6000813590506112a08161127a565b92915050565b6000819050919050565b6112b9816112a6565b81146112c457600080fd5b50565b6000813590506112d6816112b0565b92915050565b600080604083850312156112f3576112f2611243565b5b600061130185828601611291565b9250506020611312858286016112c7565b9150509250929050565b60008115159050919050565b6113318161131c565b82525050565b600060208201905061134c6000830184611328565b92915050565b61135b816112a6565b82525050565b60006020820190506113766000830184611352565b92915050565b60006020828403121561139257611391611243565b5b60006113a0848285016112c7565b91505092915050565b6000806000606084860312156113c2576113c1611243565b5b60006113d086828701611291565b93505060206113e186828701611291565b92505060406113f2868287016112c7565b9150509250925092565b600060ff82169050919050565b611412816113fc565b82525050565b600060208201905061142d6000830184611409565b92915050565b60006020828403121561144957611448611243565b5b600061145784828501611291565b91505092915050565b600061146b82611248565b9050919050565b61147b81611460565b82525050565b60006020820190506114966000830184611472565b92915050565b600080604083850312156114b3576114b2611243565b5b60006114c185828601611291565b92505060206114d285828601611291565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152357607f821691505b602082108103611536576115356114dc565b5b50919050565b7f4f6e6c79206f776e65722063616e207365742052657761726473000000000000600082015250565b6000611572601a8361119c565b915061157d8261153c565b602082019050919050565b600060208201905081810360008301526115a181611565565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561162e5780860481111561160a576116096115a8565b5b60018516156116195780820291505b8081029050611627856115d7565b94506115ee565b94509492505050565b6000826116475760019050611703565b816116555760009050611703565b816001811461166b5760028114611675576116a4565b6001915050611703565b60ff841115611687576116866115a8565b5b8360020a91508482111561169e5761169d6115a8565b5b50611703565b5060208310610133831016604e8410600b84101617156116d95782820a9050838111156116d4576116d36115a8565b5b611703565b6116e684848460016115e4565b925090508184048111156116fd576116fc6115a8565b5b81810290505b9392505050565b6000611715826112a6565b9150611720836113fc565b925061174d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611637565b905092915050565b6000611760826112a6565b915061176b836112a6565b9250828202611779816112a6565b915082820484148315176117905761178f6115a8565b5b5092915050565b60006117a2826112a6565b91506117ad836112a6565b92508282019050808211156117c5576117c46115a8565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061182760258361119c565b9150611832826117cb565b604082019050919050565b600060208201905081810360008301526118568161181a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118b960248361119c565b91506118c48261185d565b604082019050919050565b600060208201905081810360008301526118e8816118ac565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061194b60228361119c565b9150611956826118ef565b604082019050919050565b6000602082019050818103600083015261197a8161193e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119b7601d8361119c565b91506119c282611981565b602082019050919050565b600060208201905081810360008301526119e6816119aa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a4960258361119c565b9150611a54826119ed565b604082019050919050565b60006020820190508181036000830152611a7881611a3c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611adb60238361119c565b9150611ae682611a7f565b604082019050919050565b60006020820190508181036000830152611b0a81611ace565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b6d60268361119c565b9150611b7882611b11565b604082019050919050565b60006020820190508181036000830152611b9c81611b60565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bff60218361119c565b9150611c0a82611ba3565b604082019050919050565b60006020820190508181036000830152611c2e81611bf2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c9160228361119c565b9150611c9c82611c35565b604082019050919050565b60006020820190508181036000830152611cc081611c84565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611cfd60198361119c565b9150611d0882611cc7565b602082019050919050565b60006020820190508181036000830152611d2c81611cf0565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d69601f8361119c565b9150611d7482611d33565b602082019050919050565b60006020820190508181036000830152611d9881611d5c565b905091905056fea2646970667358221220557edef023b35dfcb98f709b1092dd426e6a75c2f878027fd4a85648829db8e464736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000002540be4000000000000000000000000000000000000000000000000000000000000000032

-----Decoded View---------------
Arg [0] : cap (uint256): 10000000000
Arg [1] : reward (uint256): 50

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032


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.