ETH Price: $2,281.33 (+2.19%)

Token

Crash Test Dummy Token (CTDT)
 

Overview

Max Total Supply

7,777,777,902 CTDT

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
rsync-builder.eth
Balance
25 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.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-27
*/

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {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 {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;


/**
 * @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: crash/crashtest/crash-token/contracts/crashtestdummytoken.sol

// contracts/crashtestdummytoken.sol


pragma solidity >=0.8.19;




contract CrashTestDummyToken is ERC20Capped, ERC20Burnable {
    address payable public owner; 
    uint256 public blockReward;
    
    constructor(uint256 cap, uint256 reward) ERC20("Crash Test Dummy Token", "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");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"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"}]

60a060405234801562000010575f80fd5b5060405162002a8938038062002a898339818101604052810190620000369190620005d6565b620000466200021c60201b60201c565b600a620000549190620007a4565b82620000619190620007f4565b6040518060400160405280601681526020017f437261736820546573742044756d6d7920546f6b656e000000000000000000008152506040518060400160405280600481526020017f43544454000000000000000000000000000000000000000000000000000000008152508160039081620000de919062000a99565b508060049081620000f0919062000a99565b5050505f811162000138576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012f9062000bdb565b60405180910390fd5b8060808181525050503360055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e360055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620001b76200021c60201b60201c565b600a620001c59190620007a4565b6401cf977871620001d79190620007f4565b6200022460201b60201c565b620001f36200021c60201b60201c565b600a620002019190620007a4565b816200020e9190620007f4565b600681905550505062000d3d565b5f6012905090565b62000234620002ab60201b60201c565b8162000245620002b460201b60201c565b62000251919062000bfb565b111562000295576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028c9062000c83565b60405180910390fd5b620002a78282620002bd60201b60201c565b5050565b5f608051905090565b5f600254905090565b620002cd620002ab60201b60201c565b81620002de620002b460201b60201c565b620002ea919062000bfb565b11156200032e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003259062000c83565b60405180910390fd5b6200034082826200034460201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ac9062000cf1565b60405180910390fd5b620003c85f8383620004a960201b60201c565b8060025f828254620003db919062000bfb565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200048a919062000d22565b60405180910390a3620004a55f83836200057a60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200051257504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200054b57505f73ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156200056257620005616200057f60201b60201c565b5b620005758383836200059560201b60201c565b505050565b505050565b62000593416006546200022460201b60201c565b565b505050565b5f80fd5b5f819050919050565b620005b2816200059e565b8114620005bd575f80fd5b50565b5f81519050620005d081620005a7565b92915050565b5f8060408385031215620005ef57620005ee6200059a565b5b5f620005fe85828601620005c0565b92505060206200061185828601620005c0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620006a5578086048111156200067d576200067c6200061b565b5b60018516156200068d5780820291505b80810290506200069d8562000648565b94506200065d565b94509492505050565b5f82620006bf576001905062000791565b81620006ce575f905062000791565b8160018114620006e75760028114620006f25762000728565b600191505062000791565b60ff8411156200070757620007066200061b565b5b8360020a9150848211156200072157620007206200061b565b5b5062000791565b5060208310610133831016604e8410600b8410161715620007625782820a9050838111156200075c576200075b6200061b565b5b62000791565b62000771848484600162000654565b925090508184048111156200078b576200078a6200061b565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620007b0826200059e565b9150620007bd8362000798565b9250620007ec7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006ae565b905092915050565b5f62000800826200059e565b91506200080d836200059e565b92508282026200081d816200059e565b915082820484148315176200083757620008366200061b565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620008ba57607f821691505b602082108103620008d057620008cf62000875565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008f7565b620009408683620008f7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620009816200097b62000975846200059e565b62000958565b6200059e565b9050919050565b5f819050919050565b6200099c8362000961565b620009b4620009ab8262000988565b84845462000903565b825550505050565b5f90565b620009ca620009bc565b620009d781848462000991565b505050565b5b81811015620009fe57620009f25f82620009c0565b600181019050620009dd565b5050565b601f82111562000a4d5762000a1781620008d6565b62000a2284620008e8565b8101602085101562000a32578190505b62000a4a62000a4185620008e8565b830182620009dc565b50505b505050565b5f82821c905092915050565b5f62000a6f5f198460080262000a52565b1980831691505092915050565b5f62000a89838362000a5e565b9150826002028217905092915050565b62000aa4826200083e565b67ffffffffffffffff81111562000ac05762000abf62000848565b5b62000acc8254620008a2565b62000ad982828562000a02565b5f60209050601f83116001811462000b0f575f841562000afa578287015190505b62000b06858262000a7c565b86555062000b75565b601f19841662000b1f86620008d6565b5f5b8281101562000b485784890151825560018201915060208501945060208101905062000b21565b8683101562000b68578489015162000b64601f89168262000a5e565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332304361707065643a20636170206973203000000000000000000000005f82015250565b5f62000bc360158362000b7d565b915062000bd08262000b8d565b602082019050919050565b5f6020820190508181035f83015262000bf48162000bb5565b9050919050565b5f62000c07826200059e565b915062000c14836200059e565b925082820190508082111562000c2f5762000c2e6200061b565b5b92915050565b7f45524332304361707065643a20636170206578636565646564000000000000005f82015250565b5f62000c6b60198362000b7d565b915062000c788262000c35565b602082019050919050565b5f6020820190508181035f83015262000c9c8162000c5d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000cd9601f8362000b7d565b915062000ce68262000ca3565b602082019050919050565b5f6020820190508181035f83015262000d0a8162000ccb565b9050919050565b62000d1c816200059e565b82525050565b5f60208201905062000d375f83018462000d11565b92915050565b608051611d3362000d565f395f6105340152611d335ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c806339509351116100a05780638da5cb5b1161006f5780638da5cb5b146102b757806395d89b41146102d5578063a457c2d7146102f3578063a9059cbb14610323578063dd62ed3e1461035357610109565b8063395093511461021f57806342966c681461024f57806370a082311461026b57806379cc67901461029b57610109565b80631a18e707116100dc5780631a18e7071461019757806323b872dd146101b3578063313ce567146101e3578063355274ea1461020157610109565b806306fdde031461010d578063095ea7b31461012b5780630ac168a11461015b57806318160ddd14610179575b5f80fd5b610115610383565b60405161012291906111db565b60405180910390f35b6101456004803603810190610140919061128c565b610413565b60405161015291906112e4565b60405180910390f35b610163610435565b604051610170919061130c565b60405180910390f35b61018161043b565b60405161018e919061130c565b60405180910390f35b6101b160048036038101906101ac9190611325565b610444565b005b6101cd60048036038101906101c89190611350565b6104fb565b6040516101da91906112e4565b60405180910390f35b6101eb610529565b6040516101f891906113bb565b60405180910390f35b610209610531565b604051610216919061130c565b60405180910390f35b6102396004803603810190610234919061128c565b610558565b60405161024691906112e4565b60405180910390f35b61026960048036038101906102649190611325565b61058e565b005b610285600480360381019061028091906113d4565b6105a2565b604051610292919061130c565b60405180910390f35b6102b560048036038101906102b0919061128c565b6105e7565b005b6102bf610607565b6040516102cc919061141f565b60405180910390f35b6102dd61062c565b6040516102ea91906111db565b60405180910390f35b61030d6004803603810190610308919061128c565b6106bc565b60405161031a91906112e4565b60405180910390f35b61033d6004803603810190610338919061128c565b610731565b60405161034a91906112e4565b60405180910390f35b61036d60048036038101906103689190611438565b610753565b60405161037a919061130c565b60405180910390f35b606060038054610392906114a3565b80601f01602080910402602001604051908101604052809291908181526020018280546103be906114a3565b80156104095780601f106103e057610100808354040283529160200191610409565b820191905f5260205f20905b8154815290600101906020018083116103ec57829003601f168201915b5050505050905090565b5f8061041d6107d5565b905061042a8185856107dc565b600191505092915050565b60065481565b5f600254905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ca9061151d565b60405180910390fd5b6104db610529565b600a6104e79190611697565b816104f291906116e1565b60068190555050565b5f806105056107d5565b905061051285828561099f565b61051d858585610a2a565b60019150509392505050565b5f6012905090565b5f7f0000000000000000000000000000000000000000000000000000000000000000905090565b5f806105626107d5565b90506105838185856105748589610753565b61057e9190611722565b6107dc565b600191505092915050565b61059f6105996107d5565b82610c96565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105f9826105f36107d5565b8361099f565b6106038282610c96565b5050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461063b906114a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610667906114a3565b80156106b25780601f10610689576101008083540402835291602001916106b2565b820191905f5260205f20905b81548152906001019060200180831161069557829003601f168201915b5050505050905090565b5f806106c66107d5565b90505f6106d38286610753565b905083811015610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f906117c5565b60405180910390fd5b61072582868684036107dc565b60019250505092915050565b5f8061073b6107d5565b9050610748818585610a2a565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084190611853565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af906118e1565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610992919061130c565b60405180910390a3505050565b5f6109aa8484610753565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a245781811015610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90611949565b60405180910390fd5b610a2384848484036107dc565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906119d7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd90611a65565b60405180910390fd5b610b11838383610e59565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90611af3565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c7d919061130c565b60405180910390a3610c90848484610f17565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90611b81565b60405180910390fd5b610d0f825f83610e59565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990611c0f565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e41919061130c565b60405180910390a3610e54835f84610f17565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ec157504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610ef957505f73ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15610f0757610f06610f1c565b5b610f12838383610f2a565b505050565b505050565b610f2841600654610f2f565b565b505050565b610f37610531565b81610f4061043b565b610f4a9190611722565b1115610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290611c77565b60405180910390fd5b610f958282610f99565b5050565b610fa1610531565b81610faa61043b565b610fb49190611722565b1115610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90611c77565b60405180910390fd5b610fff8282611003565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890611cdf565b60405180910390fd5b61107c5f8383610e59565b8060025f82825461108d9190611722565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161113a919061130c565b60405180910390a361114d5f8383610f17565b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561118857808201518184015260208101905061116d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6111ad82611151565b6111b7818561115b565b93506111c781856020860161116b565b6111d081611193565b840191505092915050565b5f6020820190508181035f8301526111f381846111a3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611228826111ff565b9050919050565b6112388161121e565b8114611242575f80fd5b50565b5f813590506112538161122f565b92915050565b5f819050919050565b61126b81611259565b8114611275575f80fd5b50565b5f8135905061128681611262565b92915050565b5f80604083850312156112a2576112a16111fb565b5b5f6112af85828601611245565b92505060206112c085828601611278565b9150509250929050565b5f8115159050919050565b6112de816112ca565b82525050565b5f6020820190506112f75f8301846112d5565b92915050565b61130681611259565b82525050565b5f60208201905061131f5f8301846112fd565b92915050565b5f6020828403121561133a576113396111fb565b5b5f61134784828501611278565b91505092915050565b5f805f60608486031215611367576113666111fb565b5b5f61137486828701611245565b935050602061138586828701611245565b925050604061139686828701611278565b9150509250925092565b5f60ff82169050919050565b6113b5816113a0565b82525050565b5f6020820190506113ce5f8301846113ac565b92915050565b5f602082840312156113e9576113e86111fb565b5b5f6113f684828501611245565b91505092915050565b5f611409826111ff565b9050919050565b611419816113ff565b82525050565b5f6020820190506114325f830184611410565b92915050565b5f806040838503121561144e5761144d6111fb565b5b5f61145b85828601611245565b925050602061146c85828601611245565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806114ba57607f821691505b6020821081036114cd576114cc611476565b5b50919050565b7f4f6e6c79206f776e65722063616e2073657420526577617264730000000000005f82015250565b5f611507601a8361115b565b9150611512826114d3565b602082019050919050565b5f6020820190508181035f830152611534816114fb565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156115bd578086048111156115995761159861153b565b5b60018516156115a85780820291505b80810290506115b685611568565b945061157d565b94509492505050565b5f826115d55760019050611690565b816115e2575f9050611690565b81600181146115f8576002811461160257611631565b6001915050611690565b60ff8411156116145761161361153b565b5b8360020a91508482111561162b5761162a61153b565b5b50611690565b5060208310610133831016604e8410600b84101617156116665782820a9050838111156116615761166061153b565b5b611690565b6116738484846001611574565b9250905081840481111561168a5761168961153b565b5b81810290505b9392505050565b5f6116a182611259565b91506116ac836113a0565b92506116d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115c6565b905092915050565b5f6116eb82611259565b91506116f683611259565b925082820261170481611259565b9150828204841483151761171b5761171a61153b565b5b5092915050565b5f61172c82611259565b915061173783611259565b925082820190508082111561174f5761174e61153b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6117af60258361115b565b91506117ba82611755565b604082019050919050565b5f6020820190508181035f8301526117dc816117a3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61183d60248361115b565b9150611848826117e3565b604082019050919050565b5f6020820190508181035f83015261186a81611831565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6118cb60228361115b565b91506118d682611871565b604082019050919050565b5f6020820190508181035f8301526118f8816118bf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611933601d8361115b565b915061193e826118ff565b602082019050919050565b5f6020820190508181035f83015261196081611927565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6119c160258361115b565b91506119cc82611967565b604082019050919050565b5f6020820190508181035f8301526119ee816119b5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611a4f60238361115b565b9150611a5a826119f5565b604082019050919050565b5f6020820190508181035f830152611a7c81611a43565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611add60268361115b565b9150611ae882611a83565b604082019050919050565b5f6020820190508181035f830152611b0a81611ad1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b6b60218361115b565b9150611b7682611b11565b604082019050919050565b5f6020820190508181035f830152611b9881611b5f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611bf960228361115b565b9150611c0482611b9f565b604082019050919050565b5f6020820190508181035f830152611c2681611bed565b9050919050565b7f45524332304361707065643a20636170206578636565646564000000000000005f82015250565b5f611c6160198361115b565b9150611c6c82611c2d565b602082019050919050565b5f6020820190508181035f830152611c8e81611c55565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611cc9601f8361115b565b9150611cd482611c95565b602082019050919050565b5f6020820190508181035f830152611cf681611cbd565b905091905056fea2646970667358221220e46c63e13c5dd5843bcb540f9a15b51bd1859e5b014abe27a274406a614c4d9c64736f6c6343000817003300000000000000000000000000000000000000000000000000000002540be4000000000000000000000000000000000000000000000000000000000000000019

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c806339509351116100a05780638da5cb5b1161006f5780638da5cb5b146102b757806395d89b41146102d5578063a457c2d7146102f3578063a9059cbb14610323578063dd62ed3e1461035357610109565b8063395093511461021f57806342966c681461024f57806370a082311461026b57806379cc67901461029b57610109565b80631a18e707116100dc5780631a18e7071461019757806323b872dd146101b3578063313ce567146101e3578063355274ea1461020157610109565b806306fdde031461010d578063095ea7b31461012b5780630ac168a11461015b57806318160ddd14610179575b5f80fd5b610115610383565b60405161012291906111db565b60405180910390f35b6101456004803603810190610140919061128c565b610413565b60405161015291906112e4565b60405180910390f35b610163610435565b604051610170919061130c565b60405180910390f35b61018161043b565b60405161018e919061130c565b60405180910390f35b6101b160048036038101906101ac9190611325565b610444565b005b6101cd60048036038101906101c89190611350565b6104fb565b6040516101da91906112e4565b60405180910390f35b6101eb610529565b6040516101f891906113bb565b60405180910390f35b610209610531565b604051610216919061130c565b60405180910390f35b6102396004803603810190610234919061128c565b610558565b60405161024691906112e4565b60405180910390f35b61026960048036038101906102649190611325565b61058e565b005b610285600480360381019061028091906113d4565b6105a2565b604051610292919061130c565b60405180910390f35b6102b560048036038101906102b0919061128c565b6105e7565b005b6102bf610607565b6040516102cc919061141f565b60405180910390f35b6102dd61062c565b6040516102ea91906111db565b60405180910390f35b61030d6004803603810190610308919061128c565b6106bc565b60405161031a91906112e4565b60405180910390f35b61033d6004803603810190610338919061128c565b610731565b60405161034a91906112e4565b60405180910390f35b61036d60048036038101906103689190611438565b610753565b60405161037a919061130c565b60405180910390f35b606060038054610392906114a3565b80601f01602080910402602001604051908101604052809291908181526020018280546103be906114a3565b80156104095780601f106103e057610100808354040283529160200191610409565b820191905f5260205f20905b8154815290600101906020018083116103ec57829003601f168201915b5050505050905090565b5f8061041d6107d5565b905061042a8185856107dc565b600191505092915050565b60065481565b5f600254905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ca9061151d565b60405180910390fd5b6104db610529565b600a6104e79190611697565b816104f291906116e1565b60068190555050565b5f806105056107d5565b905061051285828561099f565b61051d858585610a2a565b60019150509392505050565b5f6012905090565b5f7f0000000000000000000000000000000000000000204fce5e3e25026110000000905090565b5f806105626107d5565b90506105838185856105748589610753565b61057e9190611722565b6107dc565b600191505092915050565b61059f6105996107d5565b82610c96565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105f9826105f36107d5565b8361099f565b6106038282610c96565b5050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461063b906114a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610667906114a3565b80156106b25780601f10610689576101008083540402835291602001916106b2565b820191905f5260205f20905b81548152906001019060200180831161069557829003601f168201915b5050505050905090565b5f806106c66107d5565b90505f6106d38286610753565b905083811015610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f906117c5565b60405180910390fd5b61072582868684036107dc565b60019250505092915050565b5f8061073b6107d5565b9050610748818585610a2a565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084190611853565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af906118e1565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610992919061130c565b60405180910390a3505050565b5f6109aa8484610753565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a245781811015610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90611949565b60405180910390fd5b610a2384848484036107dc565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906119d7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd90611a65565b60405180910390fd5b610b11838383610e59565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90611af3565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c7d919061130c565b60405180910390a3610c90848484610f17565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90611b81565b60405180910390fd5b610d0f825f83610e59565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990611c0f565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e41919061130c565b60405180910390a3610e54835f84610f17565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ec157504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610ef957505f73ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15610f0757610f06610f1c565b5b610f12838383610f2a565b505050565b505050565b610f2841600654610f2f565b565b505050565b610f37610531565b81610f4061043b565b610f4a9190611722565b1115610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290611c77565b60405180910390fd5b610f958282610f99565b5050565b610fa1610531565b81610faa61043b565b610fb49190611722565b1115610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90611c77565b60405180910390fd5b610fff8282611003565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890611cdf565b60405180910390fd5b61107c5f8383610e59565b8060025f82825461108d9190611722565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161113a919061130c565b60405180910390a361114d5f8383610f17565b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561118857808201518184015260208101905061116d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6111ad82611151565b6111b7818561115b565b93506111c781856020860161116b565b6111d081611193565b840191505092915050565b5f6020820190508181035f8301526111f381846111a3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611228826111ff565b9050919050565b6112388161121e565b8114611242575f80fd5b50565b5f813590506112538161122f565b92915050565b5f819050919050565b61126b81611259565b8114611275575f80fd5b50565b5f8135905061128681611262565b92915050565b5f80604083850312156112a2576112a16111fb565b5b5f6112af85828601611245565b92505060206112c085828601611278565b9150509250929050565b5f8115159050919050565b6112de816112ca565b82525050565b5f6020820190506112f75f8301846112d5565b92915050565b61130681611259565b82525050565b5f60208201905061131f5f8301846112fd565b92915050565b5f6020828403121561133a576113396111fb565b5b5f61134784828501611278565b91505092915050565b5f805f60608486031215611367576113666111fb565b5b5f61137486828701611245565b935050602061138586828701611245565b925050604061139686828701611278565b9150509250925092565b5f60ff82169050919050565b6113b5816113a0565b82525050565b5f6020820190506113ce5f8301846113ac565b92915050565b5f602082840312156113e9576113e86111fb565b5b5f6113f684828501611245565b91505092915050565b5f611409826111ff565b9050919050565b611419816113ff565b82525050565b5f6020820190506114325f830184611410565b92915050565b5f806040838503121561144e5761144d6111fb565b5b5f61145b85828601611245565b925050602061146c85828601611245565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806114ba57607f821691505b6020821081036114cd576114cc611476565b5b50919050565b7f4f6e6c79206f776e65722063616e2073657420526577617264730000000000005f82015250565b5f611507601a8361115b565b9150611512826114d3565b602082019050919050565b5f6020820190508181035f830152611534816114fb565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156115bd578086048111156115995761159861153b565b5b60018516156115a85780820291505b80810290506115b685611568565b945061157d565b94509492505050565b5f826115d55760019050611690565b816115e2575f9050611690565b81600181146115f8576002811461160257611631565b6001915050611690565b60ff8411156116145761161361153b565b5b8360020a91508482111561162b5761162a61153b565b5b50611690565b5060208310610133831016604e8410600b84101617156116665782820a9050838111156116615761166061153b565b5b611690565b6116738484846001611574565b9250905081840481111561168a5761168961153b565b5b81810290505b9392505050565b5f6116a182611259565b91506116ac836113a0565b92506116d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115c6565b905092915050565b5f6116eb82611259565b91506116f683611259565b925082820261170481611259565b9150828204841483151761171b5761171a61153b565b5b5092915050565b5f61172c82611259565b915061173783611259565b925082820190508082111561174f5761174e61153b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6117af60258361115b565b91506117ba82611755565b604082019050919050565b5f6020820190508181035f8301526117dc816117a3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61183d60248361115b565b9150611848826117e3565b604082019050919050565b5f6020820190508181035f83015261186a81611831565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6118cb60228361115b565b91506118d682611871565b604082019050919050565b5f6020820190508181035f8301526118f8816118bf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611933601d8361115b565b915061193e826118ff565b602082019050919050565b5f6020820190508181035f83015261196081611927565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6119c160258361115b565b91506119cc82611967565b604082019050919050565b5f6020820190508181035f8301526119ee816119b5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611a4f60238361115b565b9150611a5a826119f5565b604082019050919050565b5f6020820190508181035f830152611a7c81611a43565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611add60268361115b565b9150611ae882611a83565b604082019050919050565b5f6020820190508181035f830152611b0a81611ad1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b6b60218361115b565b9150611b7682611b11565b604082019050919050565b5f6020820190508181035f830152611b9881611b5f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611bf960228361115b565b9150611c0482611b9f565b604082019050919050565b5f6020820190508181035f830152611c2681611bed565b9050919050565b7f45524332304361707065643a20636170206578636565646564000000000000005f82015250565b5f611c6160198361115b565b9150611c6c82611c2d565b602082019050919050565b5f6020820190508181035f830152611c8e81611c55565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611cc9601f8361115b565b9150611cd482611c95565b602082019050919050565b5f6020820190508181035f830152611cf681611cbd565b905091905056fea2646970667358221220e46c63e13c5dd5843bcb540f9a15b51bd1859e5b014abe27a274406a614c4d9c64736f6c63430008170033

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

00000000000000000000000000000000000000000000000000000002540be4000000000000000000000000000000000000000000000000000000000000000019

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

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


Deployed Bytecode Sourcemap

19964:1292:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6621:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8981:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20066:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7750:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21019:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9762:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7592:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19458:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10432:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18197:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7921:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18607:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20030:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6840:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11173:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8254:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8510:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6621:100;6675:13;6708:5;6701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6621:100;:::o;8981:201::-;9064:4;9081:13;9097:12;:10;:12::i;:::-;9081:28;;9120:32;9129:5;9136:7;9145:6;9120:8;:32::i;:::-;9170:4;9163:11;;;8981:201;;;;:::o;20066:26::-;;;;:::o;7750:108::-;7811:7;7838:12;;7831:19;;7750:108;:::o;21019:118::-;21197:5;;;;;;;;;;;21183:19;;:10;:19;;;21175:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;21117:10:::1;:8;:10::i;:::-;21111:2;:16;;;;:::i;:::-;21101:6;:27;;;;:::i;:::-;21087:11;:41;;;;21019:118:::0;:::o;9762:261::-;9859:4;9876:15;9894:12;:10;:12::i;:::-;9876:30;;9917:38;9933:4;9939:7;9948:6;9917:15;:38::i;:::-;9966:27;9976:4;9982:2;9986:6;9966:9;:27::i;:::-;10011:4;10004:11;;;9762:261;;;;;:::o;7592:93::-;7650:5;7675:2;7668:9;;7592:93;:::o;19458:83::-;19502:7;19529:4;19522:11;;19458:83;:::o;10432:238::-;10520:4;10537:13;10553:12;:10;:12::i;:::-;10537:28;;10576:64;10585:5;10592:7;10629:10;10601:25;10611:5;10618:7;10601:9;:25::i;:::-;:38;;;;:::i;:::-;10576:8;:64::i;:::-;10658:4;10651:11;;;10432:238;;;;:::o;18197:91::-;18253:27;18259:12;:10;:12::i;:::-;18273:6;18253:5;:27::i;:::-;18197:91;:::o;7921:127::-;7995:7;8022:9;:18;8032:7;8022:18;;;;;;;;;;;;;;;;8015:25;;7921:127;;;:::o;18607:164::-;18684:46;18700:7;18709:12;:10;:12::i;:::-;18723:6;18684:15;:46::i;:::-;18741:22;18747:7;18756:6;18741:5;:22::i;:::-;18607:164;;:::o;20030:28::-;;;;;;;;;;;;;:::o;6840:104::-;6896:13;6929:7;6922:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6840:104;:::o;11173:436::-;11266:4;11283:13;11299:12;:10;:12::i;:::-;11283:28;;11322:24;11349:25;11359:5;11366:7;11349:9;:25::i;:::-;11322:52;;11413:15;11393:16;:35;;11385:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11506:60;11515:5;11522:7;11550:15;11531:16;:34;11506:8;:60::i;:::-;11597:4;11590:11;;;;11173:436;;;;:::o;8254:193::-;8333:4;8350:13;8366:12;:10;:12::i;:::-;8350:28;;8389;8399:5;8406:2;8410:6;8389:9;:28::i;:::-;8435:4;8428:11;;;8254:193;;;;:::o;8510:151::-;8599:7;8626:11;:18;8638:5;8626:18;;;;;;;;;;;;;;;:27;8645:7;8626:27;;;;;;;;;;;;;;;;8619:34;;8510:151;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;15166:346::-;15285:1;15268:19;;:5;:19;;;15260:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15366:1;15347:21;;:7;:21;;;15339:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15450:6;15420:11;:18;15432:5;15420:18;;;;;;;;;;;;;;;:27;15439:7;15420:27;;;;;;;;;;;;;;;:36;;;;15488:7;15472:32;;15481:5;15472:32;;;15497:6;15472:32;;;;;;:::i;:::-;;;;;;;;15166:346;;;:::o;15803:419::-;15904:24;15931:25;15941:5;15948:7;15931:9;:25::i;:::-;15904:52;;15991:17;15971:16;:37;15967:248;;16053:6;16033:16;:26;;16025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16137:51;16146:5;16153:7;16181:6;16162:16;:25;16137:8;:51::i;:::-;15967:248;15893:329;15803:419;;;:::o;12079:806::-;12192:1;12176:18;;:4;:18;;;12168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12269:1;12255:16;;:2;:16;;;12247:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12324:38;12345:4;12351:2;12355:6;12324:20;:38::i;:::-;12375:19;12397:9;:15;12407:4;12397:15;;;;;;;;;;;;;;;;12375:37;;12446:6;12431:11;:21;;12423:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12563:6;12549:11;:20;12531:9;:15;12541:4;12531:15;;;;;;;;;;;;;;;:38;;;;12766:6;12749:9;:13;12759:2;12749:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12816:2;12801:26;;12810:4;12801:26;;;12820:6;12801:26;;;;;;:::i;:::-;;;;;;;;12840:37;12860:4;12866:2;12870:6;12840:19;:37::i;:::-;12157:728;12079:806;;;:::o;14053:675::-;14156:1;14137:21;;:7;:21;;;14129:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14209:49;14230:7;14247:1;14251:6;14209:20;:49::i;:::-;14271:22;14296:9;:18;14306:7;14296:18;;;;;;;;;;;;;;;;14271:43;;14351:6;14333:14;:24;;14325:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14470:6;14453:14;:23;14432:9;:18;14442:7;14432:18;;;;;;;;;;;;;;;:44;;;;14587:6;14571:12;;:22;;;;;;;;;;;14648:1;14622:37;;14631:7;14622:37;;;14652:6;14622:37;;;;;;:::i;:::-;;;;;;;;14672:48;14692:7;14709:1;14713:6;14672:19;:48::i;:::-;14118:610;14053:675;;:::o;20715:296::-;20842:1;20826:18;;:4;:18;;;;:42;;;;;20854:14;20848:20;;:2;:20;;;;20826:42;:75;;;;;20899:1;20872:29;;:14;:29;;;;20826:75;20823:125;;;20918:18;:16;:18::i;:::-;20823:125;20958:45;20987:4;20993:2;20997:5;20958:27;:45::i;:::-;20715:296;;;:::o;17517:90::-;;;;:::o;20616:91::-;20665:34;20671:14;20687:11;;20665:5;:34::i;:::-;20616:91::o;16822:::-;;;;:::o;20389:219::-;20526:5;:3;:5::i;:::-;20516:6;20494:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;20486:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;20572:28;20584:7;20593:6;20572:11;:28::i;:::-;20389:219;;:::o;19599:207::-;19724:5;:3;:5::i;:::-;19714:6;19692:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;19684:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;19770:28;19782:7;19791:6;19770:11;:28::i;:::-;19599:207;;:::o;13172:548::-;13275:1;13256:21;;:7;:21;;;13248:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13326:49;13355:1;13359:7;13368:6;13326:20;:49::i;:::-;13404:6;13388:12;;:22;;;;;;;:::i;:::-;;;;;;;;13581:6;13559:9;:18;13569:7;13559:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;13635:7;13614:37;;13631:1;13614:37;;;13644:6;13614:37;;;;;;:::i;:::-;;;;;;;;13664:48;13692:1;13696:7;13705:6;13664:19;:48::i;:::-;13172:548;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:104::-;5568:7;5597:24;5615:5;5597:24;:::i;:::-;5586:35;;5523:104;;;:::o;5633:142::-;5736:32;5762:5;5736:32;:::i;:::-;5731:3;5724:45;5633:142;;:::o;5781:254::-;5890:4;5928:2;5917:9;5913:18;5905:26;;5941:87;6025:1;6014:9;6010:17;6001:6;5941:87;:::i;:::-;5781:254;;;;:::o;6041:474::-;6109:6;6117;6166:2;6154:9;6145:7;6141:23;6137:32;6134:119;;;6172:79;;:::i;:::-;6134:119;6292:1;6317:53;6362:7;6353:6;6342:9;6338:22;6317:53;:::i;:::-;6307:63;;6263:117;6419:2;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6390:118;6041:474;;;;;:::o;6521:180::-;6569:77;6566:1;6559:88;6666:4;6663:1;6656:15;6690:4;6687:1;6680:15;6707:320;6751:6;6788:1;6782:4;6778:12;6768:22;;6835:1;6829:4;6825:12;6856:18;6846:81;;6912:4;6904:6;6900:17;6890:27;;6846:81;6974:2;6966:6;6963:14;6943:18;6940:38;6937:84;;6993:18;;:::i;:::-;6937:84;6758:269;6707:320;;;:::o;7033:176::-;7173:28;7169:1;7161:6;7157:14;7150:52;7033:176;:::o;7215:366::-;7357:3;7378:67;7442:2;7437:3;7378:67;:::i;:::-;7371:74;;7454:93;7543:3;7454:93;:::i;:::-;7572:2;7567:3;7563:12;7556:19;;7215:366;;;:::o;7587:419::-;7753:4;7791:2;7780:9;7776:18;7768:26;;7840:9;7834:4;7830:20;7826:1;7815:9;7811:17;7804:47;7868:131;7994:4;7868:131;:::i;:::-;7860:139;;7587:419;;;:::o;8012:180::-;8060:77;8057:1;8050:88;8157:4;8154:1;8147:15;8181:4;8178:1;8171:15;8198:102;8240:8;8287:5;8284:1;8280:13;8259:34;;8198:102;;;:::o;8306:848::-;8367:5;8374:4;8398:6;8389:15;;8422:5;8413:14;;8436:712;8457:1;8447:8;8444:15;8436:712;;;8552:4;8547:3;8543:14;8537:4;8534:24;8531:50;;;8561:18;;:::i;:::-;8531:50;8611:1;8601:8;8597:16;8594:451;;;9026:4;9019:5;9015:16;9006:25;;8594:451;9076:4;9070;9066:15;9058:23;;9106:32;9129:8;9106:32;:::i;:::-;9094:44;;8436:712;;;8306:848;;;;;;;:::o;9160:1073::-;9214:5;9405:8;9395:40;;9426:1;9417:10;;9428:5;;9395:40;9454:4;9444:36;;9471:1;9462:10;;9473:5;;9444:36;9540:4;9588:1;9583:27;;;;9624:1;9619:191;;;;9533:277;;9583:27;9601:1;9592:10;;9603:5;;;9619:191;9664:3;9654:8;9651:17;9648:43;;;9671:18;;:::i;:::-;9648:43;9720:8;9717:1;9713:16;9704:25;;9755:3;9748:5;9745:14;9742:40;;;9762:18;;:::i;:::-;9742:40;9795:5;;;9533:277;;9919:2;9909:8;9906:16;9900:3;9894:4;9891:13;9887:36;9869:2;9859:8;9856:16;9851:2;9845:4;9842:12;9838:35;9822:111;9819:246;;;9975:8;9969:4;9965:19;9956:28;;10010:3;10003:5;10000:14;9997:40;;;10017:18;;:::i;:::-;9997:40;10050:5;;9819:246;10090:42;10128:3;10118:8;10112:4;10109:1;10090:42;:::i;:::-;10075:57;;;;10164:4;10159:3;10155:14;10148:5;10145:25;10142:51;;;10173:18;;:::i;:::-;10142:51;10222:4;10215:5;10211:16;10202:25;;9160:1073;;;;;;:::o;10239:281::-;10297:5;10321:23;10339:4;10321:23;:::i;:::-;10313:31;;10365:25;10381:8;10365:25;:::i;:::-;10353:37;;10409:104;10446:66;10436:8;10430:4;10409:104;:::i;:::-;10400:113;;10239:281;;;;:::o;10526:410::-;10566:7;10589:20;10607:1;10589:20;:::i;:::-;10584:25;;10623:20;10641:1;10623:20;:::i;:::-;10618:25;;10678:1;10675;10671:9;10700:30;10718:11;10700:30;:::i;:::-;10689:41;;10879:1;10870:7;10866:15;10863:1;10860:22;10840:1;10833:9;10813:83;10790:139;;10909:18;;:::i;:::-;10790:139;10574:362;10526:410;;;;:::o;10942:191::-;10982:3;11001:20;11019:1;11001:20;:::i;:::-;10996:25;;11035:20;11053:1;11035:20;:::i;:::-;11030:25;;11078:1;11075;11071:9;11064:16;;11099:3;11096:1;11093:10;11090:36;;;11106:18;;:::i;:::-;11090:36;10942:191;;;;:::o;11139:224::-;11279:34;11275:1;11267:6;11263:14;11256:58;11348:7;11343:2;11335:6;11331:15;11324:32;11139:224;:::o;11369:366::-;11511:3;11532:67;11596:2;11591:3;11532:67;:::i;:::-;11525:74;;11608:93;11697:3;11608:93;:::i;:::-;11726:2;11721:3;11717:12;11710:19;;11369:366;;;:::o;11741:419::-;11907:4;11945:2;11934:9;11930:18;11922:26;;11994:9;11988:4;11984:20;11980:1;11969:9;11965:17;11958:47;12022:131;12148:4;12022:131;:::i;:::-;12014:139;;11741:419;;;:::o;12166:223::-;12306:34;12302:1;12294:6;12290:14;12283:58;12375:6;12370:2;12362:6;12358:15;12351:31;12166:223;:::o;12395:366::-;12537:3;12558:67;12622:2;12617:3;12558:67;:::i;:::-;12551:74;;12634:93;12723:3;12634:93;:::i;:::-;12752:2;12747:3;12743:12;12736:19;;12395:366;;;:::o;12767:419::-;12933:4;12971:2;12960:9;12956:18;12948:26;;13020:9;13014:4;13010:20;13006:1;12995:9;12991:17;12984:47;13048:131;13174:4;13048:131;:::i;:::-;13040:139;;12767:419;;;:::o;13192:221::-;13332:34;13328:1;13320:6;13316:14;13309:58;13401:4;13396:2;13388:6;13384:15;13377:29;13192:221;:::o;13419:366::-;13561:3;13582:67;13646:2;13641:3;13582:67;:::i;:::-;13575:74;;13658:93;13747:3;13658:93;:::i;:::-;13776:2;13771:3;13767:12;13760:19;;13419:366;;;:::o;13791:419::-;13957:4;13995:2;13984:9;13980:18;13972:26;;14044:9;14038:4;14034:20;14030:1;14019:9;14015:17;14008:47;14072:131;14198:4;14072:131;:::i;:::-;14064:139;;13791:419;;;:::o;14216:179::-;14356:31;14352:1;14344:6;14340:14;14333:55;14216:179;:::o;14401:366::-;14543:3;14564:67;14628:2;14623:3;14564:67;:::i;:::-;14557:74;;14640:93;14729:3;14640:93;:::i;:::-;14758:2;14753:3;14749:12;14742:19;;14401:366;;;:::o;14773:419::-;14939:4;14977:2;14966:9;14962:18;14954:26;;15026:9;15020:4;15016:20;15012:1;15001:9;14997:17;14990:47;15054:131;15180:4;15054:131;:::i;:::-;15046:139;;14773:419;;;:::o;15198:224::-;15338:34;15334:1;15326:6;15322:14;15315:58;15407:7;15402:2;15394:6;15390:15;15383:32;15198:224;:::o;15428:366::-;15570:3;15591:67;15655:2;15650:3;15591:67;:::i;:::-;15584:74;;15667:93;15756:3;15667:93;:::i;:::-;15785:2;15780:3;15776:12;15769:19;;15428:366;;;:::o;15800:419::-;15966:4;16004:2;15993:9;15989:18;15981:26;;16053:9;16047:4;16043:20;16039:1;16028:9;16024:17;16017:47;16081:131;16207:4;16081:131;:::i;:::-;16073:139;;15800:419;;;:::o;16225:222::-;16365:34;16361:1;16353:6;16349:14;16342:58;16434:5;16429:2;16421:6;16417:15;16410:30;16225:222;:::o;16453:366::-;16595:3;16616:67;16680:2;16675:3;16616:67;:::i;:::-;16609:74;;16692:93;16781:3;16692:93;:::i;:::-;16810:2;16805:3;16801:12;16794:19;;16453:366;;;:::o;16825:419::-;16991:4;17029:2;17018:9;17014:18;17006:26;;17078:9;17072:4;17068:20;17064:1;17053:9;17049:17;17042:47;17106:131;17232:4;17106:131;:::i;:::-;17098:139;;16825:419;;;:::o;17250:225::-;17390:34;17386:1;17378:6;17374:14;17367:58;17459:8;17454:2;17446:6;17442:15;17435:33;17250:225;:::o;17481:366::-;17623:3;17644:67;17708:2;17703:3;17644:67;:::i;:::-;17637:74;;17720:93;17809:3;17720:93;:::i;:::-;17838:2;17833:3;17829:12;17822:19;;17481:366;;;:::o;17853:419::-;18019:4;18057:2;18046:9;18042:18;18034:26;;18106:9;18100:4;18096:20;18092:1;18081:9;18077:17;18070:47;18134:131;18260:4;18134:131;:::i;:::-;18126:139;;17853:419;;;:::o;18278:220::-;18418:34;18414:1;18406:6;18402:14;18395:58;18487:3;18482:2;18474:6;18470:15;18463:28;18278:220;:::o;18504:366::-;18646:3;18667:67;18731:2;18726:3;18667:67;:::i;:::-;18660:74;;18743:93;18832:3;18743:93;:::i;:::-;18861:2;18856:3;18852:12;18845:19;;18504:366;;;:::o;18876:419::-;19042:4;19080:2;19069:9;19065:18;19057:26;;19129:9;19123:4;19119:20;19115:1;19104:9;19100:17;19093:47;19157:131;19283:4;19157:131;:::i;:::-;19149:139;;18876:419;;;:::o;19301:221::-;19441:34;19437:1;19429:6;19425:14;19418:58;19510:4;19505:2;19497:6;19493:15;19486:29;19301:221;:::o;19528:366::-;19670:3;19691:67;19755:2;19750:3;19691:67;:::i;:::-;19684:74;;19767:93;19856:3;19767:93;:::i;:::-;19885:2;19880:3;19876:12;19869:19;;19528:366;;;:::o;19900:419::-;20066:4;20104:2;20093:9;20089:18;20081:26;;20153:9;20147:4;20143:20;20139:1;20128:9;20124:17;20117:47;20181:131;20307:4;20181:131;:::i;:::-;20173:139;;19900:419;;;:::o;20325:175::-;20465:27;20461:1;20453:6;20449:14;20442:51;20325:175;:::o;20506:366::-;20648:3;20669:67;20733:2;20728:3;20669:67;:::i;:::-;20662:74;;20745:93;20834:3;20745:93;:::i;:::-;20863:2;20858:3;20854:12;20847:19;;20506:366;;;:::o;20878:419::-;21044:4;21082:2;21071:9;21067:18;21059:26;;21131:9;21125:4;21121:20;21117:1;21106:9;21102:17;21095:47;21159:131;21285:4;21159:131;:::i;:::-;21151:139;;20878:419;;;:::o;21303:181::-;21443:33;21439:1;21431:6;21427:14;21420:57;21303:181;:::o;21490:366::-;21632:3;21653:67;21717:2;21712:3;21653:67;:::i;:::-;21646:74;;21729:93;21818:3;21729:93;:::i;:::-;21847:2;21842:3;21838:12;21831:19;;21490:366;;;:::o;21862:419::-;22028:4;22066:2;22055:9;22051:18;22043:26;;22115:9;22109:4;22105:20;22101:1;22090:9;22086:17;22079:47;22143:131;22269:4;22143:131;:::i;:::-;22135:139;;21862:419;;;:::o

Swarm Source

ipfs://e46c63e13c5dd5843bcb540f9a15b51bd1859e5b014abe27a274406a614c4d9c
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.