ETH Price: $3,140.43 (+1.01%)
Gas: 5 Gwei

Token

MarvelCoin (MARV)
 

Overview

Max Total Supply

30,100,050 MARV

Holders

3

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
beaverbuild
Balance
50 MARV

Value
$0.00
0x95222290dd7278aa3ddd389cc1e1d165cc4bafe5
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:
MarvelCoin

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-03
*/

// This is the official version of MarvelCoin
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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



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



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



// OpenZeppelin Contracts (last updated v4.6.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

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

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

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

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

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



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



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



// contracts/MarvelCoin.sol

pragma solidity ^0.8.17;

contract MarvelCoin is ERC20Capped, ERC20Burnable {
    address payable public owner;
    uint256 public blockReward;
    
    constructor(uint256 cap, uint256 reward) ERC20("MarvelCoin", "MARV") ERC20Capped(cap * (10 ** decimals())) {
        owner = payable(msg.sender);
        _mint(owner, 30100000 * (10 ** decimals()));
        blockReward = reward * (10 ** decimals());
    }

    function _mint(address account, uint256 amount) internal virtual override(ERC20Capped, ERC20) {
        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());
    }

    function destroy() public onlyOwner {
        selfdestruct(owner);
    }

    modifier onlyOwner {
        require(msg.sender == owner, "Only the owner can call this function");
        _;
    }
}

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":[],"name":"destroy","outputs":[],"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"}]

60a06040523480156200001157600080fd5b5060405162002cee38038062002cee83398181016040528101906200003791906200060e565b620000476200021f60201b60201c565b600a620000559190620007e5565b8262000062919062000836565b6040518060400160405280600a81526020017f4d617276656c436f696e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d415256000000000000000000000000000000000000000000000000000000008152508160039081620000df919062000af1565b508060049081620000f1919062000af1565b505050600081116200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000c39565b60405180910390fd5b80608081815250505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e6600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620001bb6200021f60201b60201c565b600a620001c99190620007e5565b6301cb4a20620001da919062000836565b6200022860201b60201c565b620001f66200021f60201b60201c565b600a620002049190620007e5565b8162000211919062000836565b600681905550505062000da8565b60006012905090565b62000238620002b960201b60201c565b816200024e620002c360201b620004561760201c565b6200025a919062000c5b565b11156200029e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002959062000ce6565b60405180910390fd5b620002b58282620002cd60201b620008cf1760201c565b5050565b6000608051905090565b6000600254905090565b620002dd620002b960201b60201c565b81620002f3620002c360201b620004561760201c565b620002ff919062000c5b565b111562000343576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033a9062000ce6565b60405180910390fd5b6200035a82826200035e60201b620009391760201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c79062000d58565b60405180910390fd5b620003e460008383620004d660201b60201c565b8060026000828254620003f8919062000c5b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200044f919062000c5b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004b6919062000d8b565b60405180910390a3620004d260008383620005ae60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200054057504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200057a5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15620005915762000590620005b360201b60201c565b5b620005a9838383620005c960201b62000a981760201c565b505050565b505050565b620005c7416006546200022860201b60201c565b565b505050565b600080fd5b6000819050919050565b620005e881620005d3565b8114620005f457600080fd5b50565b6000815190506200060881620005dd565b92915050565b60008060408385031215620006285762000627620005ce565b5b60006200063885828601620005f7565b92505060206200064b85828601620005f7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006e357808604811115620006bb57620006ba62000655565b5b6001851615620006cb5780820291505b8081029050620006db8562000684565b94506200069b565b94509492505050565b600082620006fe5760019050620007d1565b816200070e5760009050620007d1565b8160018114620007275760028114620007325762000768565b6001915050620007d1565b60ff84111562000747576200074662000655565b5b8360020a91508482111562000761576200076062000655565b5b50620007d1565b5060208310610133831016604e8410600b8410161715620007a25782820a9050838111156200079c576200079b62000655565b5b620007d1565b620007b1848484600162000691565b92509050818404811115620007cb57620007ca62000655565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007f282620005d3565b9150620007ff83620007d8565b92506200082e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006ec565b905092915050565b60006200084382620005d3565b91506200085083620005d3565b92508282026200086081620005d3565b915082820484148315176200087a576200087962000655565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200090357607f821691505b602082108103620009195762000918620008bb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000944565b6200098f868362000944565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009d2620009cc620009c684620005d3565b620009a7565b620005d3565b9050919050565b6000819050919050565b620009ee83620009b1565b62000a06620009fd82620009d9565b84845462000951565b825550505050565b600090565b62000a1d62000a0e565b62000a2a818484620009e3565b505050565b5b8181101562000a525762000a4660008262000a13565b60018101905062000a30565b5050565b601f82111562000aa15762000a6b816200091f565b62000a768462000934565b8101602085101562000a86578190505b62000a9e62000a958562000934565b83018262000a2f565b50505b505050565b600082821c905092915050565b600062000ac66000198460080262000aa6565b1980831691505092915050565b600062000ae1838362000ab3565b9150826002028217905092915050565b62000afc8262000881565b67ffffffffffffffff81111562000b185762000b176200088c565b5b62000b248254620008ea565b62000b3182828562000a56565b600060209050601f83116001811462000b69576000841562000b54578287015190505b62000b60858262000ad3565b86555062000bd0565b601f19841662000b79866200091f565b60005b8281101562000ba35784890151825560018201915060208501945060208101905062000b7c565b8683101562000bc3578489015162000bbf601f89168262000ab3565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000c2160158362000bd8565b915062000c2e8262000be9565b602082019050919050565b6000602082019050818103600083015262000c548162000c12565b9050919050565b600062000c6882620005d3565b915062000c7583620005d3565b925082820190508082111562000c905762000c8f62000655565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000cce60198362000bd8565b915062000cdb8262000c96565b602082019050919050565b6000602082019050818103600083015262000d018162000cbf565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d40601f8362000bd8565b915062000d4d8262000d08565b602082019050919050565b6000602082019050818103600083015262000d738162000d31565b9050919050565b62000d8581620005d3565b82525050565b600060208201905062000da2600083018462000d7a565b92915050565b608051611f2a62000dc460003960006105540152611f2a6000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806342966c68116100a25780638da5cb5b116100715780638da5cb5b146102cf57806395d89b41146102ed578063a457c2d71461030b578063a9059cbb1461033b578063dd62ed3e1461036b57610116565b806342966c681461025d57806370a082311461027957806379cc6790146102a957806383197ef0146102c557610116565b80631a18e707116100e95780631a18e707146101a557806323b872dd146101c1578063313ce567146101f1578063355274ea1461020f578063395093511461022d57610116565b806306fdde031461011b578063095ea7b3146101395780630ac168a11461016957806318160ddd14610187575b600080fd5b61012361039b565b604051610130919061131c565b60405180910390f35b610153600480360381019061014e91906113d7565b61042d565b6040516101609190611432565b60405180910390f35b610171610450565b60405161017e919061145c565b60405180910390f35b61018f610456565b60405161019c919061145c565b60405180910390f35b6101bf60048036038101906101ba9190611477565b610460565b005b6101db60048036038101906101d691906114a4565b610518565b6040516101e89190611432565b60405180910390f35b6101f9610547565b6040516102069190611513565b60405180910390f35b610217610550565b604051610224919061145c565b60405180910390f35b610247600480360381019061024291906113d7565b610578565b6040516102549190611432565b60405180910390f35b61027760048036038101906102729190611477565b6105af565b005b610293600480360381019061028e919061152e565b6105c3565b6040516102a0919061145c565b60405180910390f35b6102c360048036038101906102be91906113d7565b61060b565b005b6102cd61062b565b005b6102d76106f6565b6040516102e4919061157c565b60405180910390f35b6102f561071c565b604051610302919061131c565b60405180910390f35b610325600480360381019061032091906113d7565b6107ae565b6040516103329190611432565b60405180910390f35b610355600480360381019061035091906113d7565b610825565b6040516103629190611432565b60405180910390f35b61038560048036038101906103809190611597565b610848565b604051610392919061145c565b60405180910390f35b6060600380546103aa90611606565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611606565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600080610438610a9d565b9050610445818585610aa5565b600191505092915050565b60065481565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e7906116a9565b60405180910390fd5b6104f8610547565b600a610504919061182b565b8161050f9190611876565b60068190555050565b600080610523610a9d565b9050610530858285610c6e565b61053b858585610cfa565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600080610583610a9d565b90506105a48185856105958589610848565b61059f91906118b8565b610aa5565b600191505092915050565b6105c06105ba610a9d565b82610f79565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61061d82610617610a9d565b83610c6e565b6106278282610f79565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b2906116a9565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461072b90611606565b80601f016020809104026020016040519081016040528092919081815260200182805461075790611606565b80156107a45780601f10610779576101008083540402835291602001916107a4565b820191906000526020600020905b81548152906001019060200180831161078757829003601f168201915b5050505050905090565b6000806107b9610a9d565b905060006107c78286610848565b90508381101561080c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108039061195e565b60405180910390fd5b6108198286868403610aa5565b60019250505092915050565b600080610830610a9d565b905061083d818585610cfa565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108d7610550565b816108e0610456565b6108ea91906118b8565b111561092b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610922906119ca565b60405180910390fd5b6109358282610939565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611a36565b60405180910390fd5b6109b46000838361114f565b80600260008282546109c691906118b8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a1b91906118b8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a80919061145c565b60405180910390a3610a946000838361120f565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90611ac8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611b5a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c61919061145c565b60405180910390a3505050565b6000610c7a8484610848565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cf45781811015610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90611bc6565b60405180910390fd5b610cf38484848403610aa5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090611c58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90611cea565b60405180910390fd5b610de383838361114f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090611d7c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610efc91906118b8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f60919061145c565b60405180910390a3610f7384848461120f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90611e0e565b60405180910390fd5b610ff48260008361114f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190611ea0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110d19190611ec0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611136919061145c565b60405180910390a361114a8360008461120f565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156111b857504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156111f15750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156111ff576111fe611214565b5b61120a838383610a98565b505050565b505050565b61122041600654611222565b565b61122a610550565b81611233610456565b61123d91906118b8565b111561127e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611275906119ca565b60405180910390fd5b61128882826108cf565b5050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112c65780820151818401526020810190506112ab565b60008484015250505050565b6000601f19601f8301169050919050565b60006112ee8261128c565b6112f88185611297565b93506113088185602086016112a8565b611311816112d2565b840191505092915050565b6000602082019050818103600083015261133681846112e3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061136e82611343565b9050919050565b61137e81611363565b811461138957600080fd5b50565b60008135905061139b81611375565b92915050565b6000819050919050565b6113b4816113a1565b81146113bf57600080fd5b50565b6000813590506113d1816113ab565b92915050565b600080604083850312156113ee576113ed61133e565b5b60006113fc8582860161138c565b925050602061140d858286016113c2565b9150509250929050565b60008115159050919050565b61142c81611417565b82525050565b60006020820190506114476000830184611423565b92915050565b611456816113a1565b82525050565b6000602082019050611471600083018461144d565b92915050565b60006020828403121561148d5761148c61133e565b5b600061149b848285016113c2565b91505092915050565b6000806000606084860312156114bd576114bc61133e565b5b60006114cb8682870161138c565b93505060206114dc8682870161138c565b92505060406114ed868287016113c2565b9150509250925092565b600060ff82169050919050565b61150d816114f7565b82525050565b60006020820190506115286000830184611504565b92915050565b6000602082840312156115445761154361133e565b5b60006115528482850161138c565b91505092915050565b600061156682611343565b9050919050565b6115768161155b565b82525050565b6000602082019050611591600083018461156d565b92915050565b600080604083850312156115ae576115ad61133e565b5b60006115bc8582860161138c565b92505060206115cd8582860161138c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061161e57607f821691505b602082108103611631576116306115d7565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b6000611693602583611297565b915061169e82611637565b604082019050919050565b600060208201905081810360008301526116c281611686565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561174f5780860481111561172b5761172a6116c9565b5b600185161561173a5780820291505b8081029050611748856116f8565b945061170f565b94509492505050565b6000826117685760019050611824565b816117765760009050611824565b816001811461178c5760028114611796576117c5565b6001915050611824565b60ff8411156117a8576117a76116c9565b5b8360020a9150848211156117bf576117be6116c9565b5b50611824565b5060208310610133831016604e8410600b84101617156117fa5782820a9050838111156117f5576117f46116c9565b5b611824565b6118078484846001611705565b9250905081840481111561181e5761181d6116c9565b5b81810290505b9392505050565b6000611836826113a1565b9150611841836114f7565b925061186e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611758565b905092915050565b6000611881826113a1565b915061188c836113a1565b925082820261189a816113a1565b915082820484148315176118b1576118b06116c9565b5b5092915050565b60006118c3826113a1565b91506118ce836113a1565b92508282019050808211156118e6576118e56116c9565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611948602583611297565b9150611953826118ec565b604082019050919050565b600060208201905081810360008301526119778161193b565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b60006119b4601983611297565b91506119bf8261197e565b602082019050919050565b600060208201905081810360008301526119e3816119a7565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a20601f83611297565b9150611a2b826119ea565b602082019050919050565b60006020820190508181036000830152611a4f81611a13565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab2602483611297565b9150611abd82611a56565b604082019050919050565b60006020820190508181036000830152611ae181611aa5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b44602283611297565b9150611b4f82611ae8565b604082019050919050565b60006020820190508181036000830152611b7381611b37565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bb0601d83611297565b9150611bbb82611b7a565b602082019050919050565b60006020820190508181036000830152611bdf81611ba3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c42602583611297565b9150611c4d82611be6565b604082019050919050565b60006020820190508181036000830152611c7181611c35565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cd4602383611297565b9150611cdf82611c78565b604082019050919050565b60006020820190508181036000830152611d0381611cc7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d66602683611297565b9150611d7182611d0a565b604082019050919050565b60006020820190508181036000830152611d9581611d59565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df8602183611297565b9150611e0382611d9c565b604082019050919050565b60006020820190508181036000830152611e2781611deb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e8a602283611297565b9150611e9582611e2e565b604082019050919050565b60006020820190508181036000830152611eb981611e7d565b9050919050565b6000611ecb826113a1565b9150611ed6836113a1565b9250828203905081811115611eee57611eed6116c9565b5b9291505056fea2646970667358221220c2caec1330c4636d0bf9ac3d744ec2204f17e92d136bdfa5cb1944cb60453d9464736f6c634300081100330000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000000032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806342966c68116100a25780638da5cb5b116100715780638da5cb5b146102cf57806395d89b41146102ed578063a457c2d71461030b578063a9059cbb1461033b578063dd62ed3e1461036b57610116565b806342966c681461025d57806370a082311461027957806379cc6790146102a957806383197ef0146102c557610116565b80631a18e707116100e95780631a18e707146101a557806323b872dd146101c1578063313ce567146101f1578063355274ea1461020f578063395093511461022d57610116565b806306fdde031461011b578063095ea7b3146101395780630ac168a11461016957806318160ddd14610187575b600080fd5b61012361039b565b604051610130919061131c565b60405180910390f35b610153600480360381019061014e91906113d7565b61042d565b6040516101609190611432565b60405180910390f35b610171610450565b60405161017e919061145c565b60405180910390f35b61018f610456565b60405161019c919061145c565b60405180910390f35b6101bf60048036038101906101ba9190611477565b610460565b005b6101db60048036038101906101d691906114a4565b610518565b6040516101e89190611432565b60405180910390f35b6101f9610547565b6040516102069190611513565b60405180910390f35b610217610550565b604051610224919061145c565b60405180910390f35b610247600480360381019061024291906113d7565b610578565b6040516102549190611432565b60405180910390f35b61027760048036038101906102729190611477565b6105af565b005b610293600480360381019061028e919061152e565b6105c3565b6040516102a0919061145c565b60405180910390f35b6102c360048036038101906102be91906113d7565b61060b565b005b6102cd61062b565b005b6102d76106f6565b6040516102e4919061157c565b60405180910390f35b6102f561071c565b604051610302919061131c565b60405180910390f35b610325600480360381019061032091906113d7565b6107ae565b6040516103329190611432565b60405180910390f35b610355600480360381019061035091906113d7565b610825565b6040516103629190611432565b60405180910390f35b61038560048036038101906103809190611597565b610848565b604051610392919061145c565b60405180910390f35b6060600380546103aa90611606565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611606565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600080610438610a9d565b9050610445818585610aa5565b600191505092915050565b60065481565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e7906116a9565b60405180910390fd5b6104f8610547565b600a610504919061182b565b8161050f9190611876565b60068190555050565b600080610523610a9d565b9050610530858285610c6e565b61053b858585610cfa565b60019150509392505050565b60006012905090565b60007f00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000905090565b600080610583610a9d565b90506105a48185856105958589610848565b61059f91906118b8565b610aa5565b600191505092915050565b6105c06105ba610a9d565b82610f79565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61061d82610617610a9d565b83610c6e565b6106278282610f79565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b2906116a9565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461072b90611606565b80601f016020809104026020016040519081016040528092919081815260200182805461075790611606565b80156107a45780601f10610779576101008083540402835291602001916107a4565b820191906000526020600020905b81548152906001019060200180831161078757829003601f168201915b5050505050905090565b6000806107b9610a9d565b905060006107c78286610848565b90508381101561080c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108039061195e565b60405180910390fd5b6108198286868403610aa5565b60019250505092915050565b600080610830610a9d565b905061083d818585610cfa565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108d7610550565b816108e0610456565b6108ea91906118b8565b111561092b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610922906119ca565b60405180910390fd5b6109358282610939565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611a36565b60405180910390fd5b6109b46000838361114f565b80600260008282546109c691906118b8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a1b91906118b8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a80919061145c565b60405180910390a3610a946000838361120f565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90611ac8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611b5a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c61919061145c565b60405180910390a3505050565b6000610c7a8484610848565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cf45781811015610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90611bc6565b60405180910390fd5b610cf38484848403610aa5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090611c58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90611cea565b60405180910390fd5b610de383838361114f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090611d7c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610efc91906118b8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f60919061145c565b60405180910390a3610f7384848461120f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90611e0e565b60405180910390fd5b610ff48260008361114f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190611ea0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110d19190611ec0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611136919061145c565b60405180910390a361114a8360008461120f565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156111b857504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156111f15750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156111ff576111fe611214565b5b61120a838383610a98565b505050565b505050565b61122041600654611222565b565b61122a610550565b81611233610456565b61123d91906118b8565b111561127e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611275906119ca565b60405180910390fd5b61128882826108cf565b5050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112c65780820151818401526020810190506112ab565b60008484015250505050565b6000601f19601f8301169050919050565b60006112ee8261128c565b6112f88185611297565b93506113088185602086016112a8565b611311816112d2565b840191505092915050565b6000602082019050818103600083015261133681846112e3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061136e82611343565b9050919050565b61137e81611363565b811461138957600080fd5b50565b60008135905061139b81611375565b92915050565b6000819050919050565b6113b4816113a1565b81146113bf57600080fd5b50565b6000813590506113d1816113ab565b92915050565b600080604083850312156113ee576113ed61133e565b5b60006113fc8582860161138c565b925050602061140d858286016113c2565b9150509250929050565b60008115159050919050565b61142c81611417565b82525050565b60006020820190506114476000830184611423565b92915050565b611456816113a1565b82525050565b6000602082019050611471600083018461144d565b92915050565b60006020828403121561148d5761148c61133e565b5b600061149b848285016113c2565b91505092915050565b6000806000606084860312156114bd576114bc61133e565b5b60006114cb8682870161138c565b93505060206114dc8682870161138c565b92505060406114ed868287016113c2565b9150509250925092565b600060ff82169050919050565b61150d816114f7565b82525050565b60006020820190506115286000830184611504565b92915050565b6000602082840312156115445761154361133e565b5b60006115528482850161138c565b91505092915050565b600061156682611343565b9050919050565b6115768161155b565b82525050565b6000602082019050611591600083018461156d565b92915050565b600080604083850312156115ae576115ad61133e565b5b60006115bc8582860161138c565b92505060206115cd8582860161138c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061161e57607f821691505b602082108103611631576116306115d7565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b6000611693602583611297565b915061169e82611637565b604082019050919050565b600060208201905081810360008301526116c281611686565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561174f5780860481111561172b5761172a6116c9565b5b600185161561173a5780820291505b8081029050611748856116f8565b945061170f565b94509492505050565b6000826117685760019050611824565b816117765760009050611824565b816001811461178c5760028114611796576117c5565b6001915050611824565b60ff8411156117a8576117a76116c9565b5b8360020a9150848211156117bf576117be6116c9565b5b50611824565b5060208310610133831016604e8410600b84101617156117fa5782820a9050838111156117f5576117f46116c9565b5b611824565b6118078484846001611705565b9250905081840481111561181e5761181d6116c9565b5b81810290505b9392505050565b6000611836826113a1565b9150611841836114f7565b925061186e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611758565b905092915050565b6000611881826113a1565b915061188c836113a1565b925082820261189a816113a1565b915082820484148315176118b1576118b06116c9565b5b5092915050565b60006118c3826113a1565b91506118ce836113a1565b92508282019050808211156118e6576118e56116c9565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611948602583611297565b9150611953826118ec565b604082019050919050565b600060208201905081810360008301526119778161193b565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b60006119b4601983611297565b91506119bf8261197e565b602082019050919050565b600060208201905081810360008301526119e3816119a7565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a20601f83611297565b9150611a2b826119ea565b602082019050919050565b60006020820190508181036000830152611a4f81611a13565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab2602483611297565b9150611abd82611a56565b604082019050919050565b60006020820190508181036000830152611ae181611aa5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b44602283611297565b9150611b4f82611ae8565b604082019050919050565b60006020820190508181036000830152611b7381611b37565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bb0601d83611297565b9150611bbb82611b7a565b602082019050919050565b60006020820190508181036000830152611bdf81611ba3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c42602583611297565b9150611c4d82611be6565b604082019050919050565b60006020820190508181036000830152611c7181611c35565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cd4602383611297565b9150611cdf82611c78565b604082019050919050565b60006020820190508181036000830152611d0381611cc7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d66602683611297565b9150611d7182611d0a565b604082019050919050565b60006020820190508181036000830152611d9581611d59565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df8602183611297565b9150611e0382611d9c565b604082019050919050565b60006020820190508181036000830152611e2781611deb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e8a602283611297565b9150611e9582611e2e565b604082019050919050565b60006020820190508181036000830152611eb981611e7d565b9050919050565b6000611ecb826113a1565b9150611ed6836113a1565b9250828203905081811115611eee57611eed6116c9565b5b9291505056fea2646970667358221220c2caec1330c4636d0bf9ac3d744ec2204f17e92d136bdfa5cb1944cb60453d9464736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000000032

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

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032


Deployed Bytecode Sourcemap

19383:1361:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6480:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8831:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19475:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7600:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20415:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9612:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7442:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17880:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10316:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18739:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7771:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19149:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20540:74;;;:::i;:::-;;19440:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6699:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11057:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8104:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8360:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6480:100;6534:13;6567:5;6560:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6480:100;:::o;8831:201::-;8914:4;8931:13;8947:12;:10;:12::i;:::-;8931:28;;8970:32;8979:5;8986:7;8995:6;8970:8;:32::i;:::-;9020:4;9013:11;;;8831:201;;;;:::o;19475:26::-;;;;:::o;7600:108::-;7661:7;7688:12;;7681:19;;7600:108;:::o;20415:117::-;20674:5;;;;;;;;;;;20660:19;;:10;:19;;;20652:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;20513:10:::1;:8;:10::i;:::-;20507:2;:16;;;;:::i;:::-;20497:6;:27;;;;:::i;:::-;20483:11;:41;;;;20415:117:::0;:::o;9612:295::-;9743:4;9760:15;9778:12;:10;:12::i;:::-;9760:30;;9801:38;9817:4;9823:7;9832:6;9801:15;:38::i;:::-;9850:27;9860:4;9866:2;9870:6;9850:9;:27::i;:::-;9895:4;9888:11;;;9612:295;;;;;:::o;7442:93::-;7500:5;7525:2;7518:9;;7442:93;:::o;17880:83::-;17924:7;17951:4;17944:11;;17880:83;:::o;10316:238::-;10404:4;10421:13;10437:12;:10;:12::i;:::-;10421:28;;10460:64;10469:5;10476:7;10513:10;10485:25;10495:5;10502:7;10485:9;:25::i;:::-;:38;;;;:::i;:::-;10460:8;:64::i;:::-;10542:4;10535:11;;;10316:238;;;;:::o;18739:91::-;18795:27;18801:12;:10;:12::i;:::-;18815:6;18795:5;:27::i;:::-;18739:91;:::o;7771:127::-;7845:7;7872:9;:18;7882:7;7872:18;;;;;;;;;;;;;;;;7865:25;;7771:127;;;:::o;19149:164::-;19226:46;19242:7;19251:12;:10;:12::i;:::-;19265:6;19226:15;:46::i;:::-;19283:22;19289:7;19298:6;19283:5;:22::i;:::-;19149:164;;:::o;20540:74::-;20674:5;;;;;;;;;;;20660:19;;:10;:19;;;20652:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;20600:5:::1;;;;;;;;;;;20587:19;;;19440:28:::0;;;;;;;;;;;;;:::o;6699:104::-;6755:13;6788:7;6781:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6699:104;:::o;11057:436::-;11150:4;11167:13;11183:12;:10;:12::i;:::-;11167:28;;11206:24;11233:25;11243:5;11250:7;11233:9;:25::i;:::-;11206:52;;11297:15;11277:16;:35;;11269:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11390:60;11399:5;11406:7;11434:15;11415:16;:34;11390:8;:60::i;:::-;11481:4;11474:11;;;;11057:436;;;;:::o;8104:193::-;8183:4;8200:13;8216:12;:10;:12::i;:::-;8200:28;;8239;8249:5;8256:2;8260:6;8239:9;:28::i;:::-;8285:4;8278:11;;;8104:193;;;;:::o;8360:151::-;8449:7;8476:11;:18;8488:5;8476:18;;;;;;;;;;;;;;;:27;8495:7;8476:27;;;;;;;;;;;;;;;;8469:34;;8360:151;;;;:::o;18021:207::-;18146:5;:3;:5::i;:::-;18136:6;18114:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;18106:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;18192:28;18204:7;18213:6;18192:11;:28::i;:::-;18021:207;;:::o;12930:399::-;13033:1;13014:21;;:7;:21;;;13006:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13084:49;13113:1;13117:7;13126:6;13084:20;:49::i;:::-;13162:6;13146:12;;:22;;;;;;;:::i;:::-;;;;;;;;13201:6;13179:9;:18;13189:7;13179:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13244:7;13223:37;;13240:1;13223:37;;;13253:6;13223:37;;;;;;:::i;:::-;;;;;;;;13273:48;13301:1;13305:7;13314:6;13273:19;:48::i;:::-;12930:399;;:::o;16415:125::-;;;;:::o;4182:98::-;4235:7;4262:10;4255:17;;4182:98;:::o;14691:380::-;14844:1;14827:19;;:5;:19;;;14819:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14925:1;14906:21;;:7;:21;;;14898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15009:6;14979:11;:18;14991:5;14979:18;;;;;;;;;;;;;;;:27;14998:7;14979:27;;;;;;;;;;;;;;;:36;;;;15047:7;15031:32;;15040:5;15031:32;;;15056:6;15031:32;;;;;;:::i;:::-;;;;;;;;14691:380;;;:::o;15362:453::-;15497:24;15524:25;15534:5;15541:7;15524:9;:25::i;:::-;15497:52;;15584:17;15564:16;:37;15560:248;;15646:6;15626:16;:26;;15618:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15730:51;15739:5;15746:7;15774:6;15755:16;:25;15730:8;:51::i;:::-;15560:248;15486:329;15362:453;;;:::o;11972:671::-;12119:1;12103:18;;:4;:18;;;12095:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12196:1;12182:16;;:2;:16;;;12174:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12251:38;12272:4;12278:2;12282:6;12251:20;:38::i;:::-;12302:19;12324:9;:15;12334:4;12324:15;;;;;;;;;;;;;;;;12302:37;;12373:6;12358:11;:21;;12350:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12490:6;12476:11;:20;12458:9;:15;12468:4;12458:15;;;;;;;;;;;;;;;:38;;;;12535:6;12518:9;:13;12528:2;12518:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12574:2;12559:26;;12568:4;12559:26;;;12578:6;12559:26;;;;;;:::i;:::-;;;;;;;;12598:37;12618:4;12624:2;12628:6;12598:19;:37::i;:::-;12084:559;11972:671;;;:::o;13662:591::-;13765:1;13746:21;;:7;:21;;;13738:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13818:49;13839:7;13856:1;13860:6;13818:20;:49::i;:::-;13880:22;13905:9;:18;13915:7;13905:18;;;;;;;;;;;;;;;;13880:43;;13960:6;13942:14;:24;;13934:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14079:6;14062:14;:23;14041:9;:18;14051:7;14041:18;;;;;;;;;;;;;;;:44;;;;14123:6;14107:12;;:22;;;;;;;:::i;:::-;;;;;;;;14173:1;14147:37;;14156:7;14147:37;;;14177:6;14147:37;;;;;;:::i;:::-;;;;;;;;14197:48;14217:7;14234:1;14238:6;14197:19;:48::i;:::-;13727:526;13662:591;;:::o;20114:293::-;20241:1;20225:18;;:4;:18;;;;:42;;;;;20253:14;20247:20;;:2;:20;;;;20225:42;:74;;;;;20297:1;20271:28;;:14;:28;;;;20225:74;20222:124;;;20316:18;:16;:18::i;:::-;20222:124;20356:43;20383:4;20389:2;20393:5;20356:26;:43::i;:::-;20114:293;;;:::o;17144:124::-;;;;:::o;20016:90::-;20064:34;20070:14;20086:11;;20064:5;:34::i;:::-;20016:90::o;19781:227::-;19926:5;:3;:5::i;:::-;19916:6;19894:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;19886:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;19972:28;19984:7;19993:6;19972:11;:28::i;:::-;19781:227;;:::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:224::-;7173:34;7169:1;7161:6;7157:14;7150:58;7242:7;7237:2;7229:6;7225:15;7218:32;7033:224;:::o;7263:366::-;7405:3;7426:67;7490:2;7485:3;7426:67;:::i;:::-;7419:74;;7502:93;7591:3;7502:93;:::i;:::-;7620:2;7615:3;7611:12;7604:19;;7263:366;;;:::o;7635:419::-;7801:4;7839:2;7828:9;7824:18;7816:26;;7888:9;7882:4;7878:20;7874:1;7863:9;7859:17;7852:47;7916:131;8042:4;7916:131;:::i;:::-;7908:139;;7635:419;;;:::o;8060:180::-;8108:77;8105:1;8098:88;8205:4;8202:1;8195:15;8229:4;8226:1;8219:15;8246:102;8288:8;8335:5;8332:1;8328:13;8307:34;;8246:102;;;:::o;8354:848::-;8415:5;8422:4;8446:6;8437:15;;8470:5;8461:14;;8484:712;8505:1;8495:8;8492:15;8484:712;;;8600:4;8595:3;8591:14;8585:4;8582:24;8579:50;;;8609:18;;:::i;:::-;8579:50;8659:1;8649:8;8645:16;8642:451;;;9074:4;9067:5;9063:16;9054:25;;8642:451;9124:4;9118;9114:15;9106:23;;9154:32;9177:8;9154:32;:::i;:::-;9142:44;;8484:712;;;8354:848;;;;;;;:::o;9208:1073::-;9262:5;9453:8;9443:40;;9474:1;9465:10;;9476:5;;9443:40;9502:4;9492:36;;9519:1;9510:10;;9521:5;;9492:36;9588:4;9636:1;9631:27;;;;9672:1;9667:191;;;;9581:277;;9631:27;9649:1;9640:10;;9651:5;;;9667:191;9712:3;9702:8;9699:17;9696:43;;;9719:18;;:::i;:::-;9696:43;9768:8;9765:1;9761:16;9752:25;;9803:3;9796:5;9793:14;9790:40;;;9810:18;;:::i;:::-;9790:40;9843:5;;;9581:277;;9967:2;9957:8;9954:16;9948:3;9942:4;9939:13;9935:36;9917:2;9907:8;9904:16;9899:2;9893:4;9890:12;9886:35;9870:111;9867:246;;;10023:8;10017:4;10013:19;10004:28;;10058:3;10051:5;10048:14;10045:40;;;10065:18;;:::i;:::-;10045:40;10098:5;;9867:246;10138:42;10176:3;10166:8;10160:4;10157:1;10138:42;:::i;:::-;10123:57;;;;10212:4;10207:3;10203:14;10196:5;10193:25;10190:51;;;10221:18;;:::i;:::-;10190:51;10270:4;10263:5;10259:16;10250:25;;9208:1073;;;;;;:::o;10287:281::-;10345:5;10369:23;10387:4;10369:23;:::i;:::-;10361:31;;10413:25;10429:8;10413:25;:::i;:::-;10401:37;;10457:104;10494:66;10484:8;10478:4;10457:104;:::i;:::-;10448:113;;10287:281;;;;:::o;10574:410::-;10614:7;10637:20;10655:1;10637:20;:::i;:::-;10632:25;;10671:20;10689:1;10671:20;:::i;:::-;10666:25;;10726:1;10723;10719:9;10748:30;10766:11;10748:30;:::i;:::-;10737:41;;10927:1;10918:7;10914:15;10911:1;10908:22;10888:1;10881:9;10861:83;10838:139;;10957:18;;:::i;:::-;10838:139;10622:362;10574:410;;;;:::o;10990:191::-;11030:3;11049:20;11067:1;11049:20;:::i;:::-;11044:25;;11083:20;11101:1;11083:20;:::i;:::-;11078:25;;11126:1;11123;11119:9;11112:16;;11147:3;11144:1;11141:10;11138:36;;;11154:18;;:::i;:::-;11138:36;10990:191;;;;:::o;11187:224::-;11327:34;11323:1;11315:6;11311:14;11304:58;11396:7;11391:2;11383:6;11379:15;11372:32;11187:224;:::o;11417:366::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:419::-;11955:4;11993:2;11982:9;11978:18;11970:26;;12042:9;12036:4;12032:20;12028:1;12017:9;12013:17;12006:47;12070:131;12196:4;12070:131;:::i;:::-;12062:139;;11789:419;;;:::o;12214:175::-;12354:27;12350:1;12342:6;12338:14;12331:51;12214:175;:::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:181::-;13332:33;13328:1;13320:6;13316:14;13309:57;13192:181;:::o;13379:366::-;13521:3;13542:67;13606:2;13601:3;13542:67;:::i;:::-;13535:74;;13618:93;13707:3;13618:93;:::i;:::-;13736:2;13731:3;13727:12;13720:19;;13379:366;;;:::o;13751:419::-;13917:4;13955:2;13944:9;13940:18;13932:26;;14004:9;13998:4;13994:20;13990:1;13979:9;13975:17;13968:47;14032:131;14158:4;14032:131;:::i;:::-;14024:139;;13751:419;;;:::o;14176:223::-;14316:34;14312:1;14304:6;14300:14;14293:58;14385:6;14380:2;14372:6;14368:15;14361:31;14176:223;:::o;14405:366::-;14547:3;14568:67;14632:2;14627:3;14568:67;:::i;:::-;14561:74;;14644:93;14733:3;14644:93;:::i;:::-;14762:2;14757:3;14753:12;14746:19;;14405:366;;;:::o;14777:419::-;14943:4;14981:2;14970:9;14966:18;14958:26;;15030:9;15024:4;15020:20;15016:1;15005:9;15001:17;14994:47;15058:131;15184:4;15058:131;:::i;:::-;15050:139;;14777:419;;;:::o;15202:221::-;15342:34;15338:1;15330:6;15326:14;15319:58;15411:4;15406:2;15398:6;15394:15;15387:29;15202:221;:::o;15429:366::-;15571:3;15592:67;15656:2;15651:3;15592:67;:::i;:::-;15585:74;;15668:93;15757:3;15668:93;:::i;:::-;15786:2;15781:3;15777:12;15770:19;;15429:366;;;:::o;15801:419::-;15967:4;16005:2;15994:9;15990:18;15982:26;;16054:9;16048:4;16044:20;16040:1;16029:9;16025:17;16018:47;16082:131;16208:4;16082:131;:::i;:::-;16074:139;;15801:419;;;:::o;16226:179::-;16366:31;16362:1;16354:6;16350:14;16343:55;16226:179;:::o;16411:366::-;16553:3;16574:67;16638:2;16633:3;16574:67;:::i;:::-;16567:74;;16650:93;16739:3;16650:93;:::i;:::-;16768:2;16763:3;16759:12;16752:19;;16411:366;;;:::o;16783:419::-;16949:4;16987:2;16976:9;16972:18;16964:26;;17036:9;17030:4;17026:20;17022:1;17011:9;17007:17;17000:47;17064:131;17190:4;17064:131;:::i;:::-;17056:139;;16783:419;;;:::o;17208:224::-;17348:34;17344:1;17336:6;17332:14;17325:58;17417:7;17412:2;17404:6;17400:15;17393:32;17208:224;:::o;17438:366::-;17580:3;17601:67;17665:2;17660:3;17601:67;:::i;:::-;17594:74;;17677:93;17766:3;17677:93;:::i;:::-;17795:2;17790:3;17786:12;17779:19;;17438:366;;;:::o;17810:419::-;17976:4;18014:2;18003:9;17999:18;17991:26;;18063:9;18057:4;18053:20;18049:1;18038:9;18034:17;18027:47;18091:131;18217:4;18091:131;:::i;:::-;18083:139;;17810:419;;;:::o;18235:222::-;18375:34;18371:1;18363:6;18359:14;18352:58;18444:5;18439:2;18431:6;18427:15;18420:30;18235:222;:::o;18463:366::-;18605:3;18626:67;18690:2;18685:3;18626:67;:::i;:::-;18619:74;;18702:93;18791:3;18702:93;:::i;:::-;18820:2;18815:3;18811:12;18804:19;;18463:366;;;:::o;18835:419::-;19001:4;19039:2;19028:9;19024:18;19016:26;;19088:9;19082:4;19078:20;19074:1;19063:9;19059:17;19052:47;19116:131;19242:4;19116:131;:::i;:::-;19108:139;;18835:419;;;:::o;19260:225::-;19400:34;19396:1;19388:6;19384:14;19377:58;19469:8;19464:2;19456:6;19452:15;19445:33;19260:225;:::o;19491:366::-;19633:3;19654:67;19718:2;19713:3;19654:67;:::i;:::-;19647:74;;19730:93;19819:3;19730:93;:::i;:::-;19848:2;19843:3;19839:12;19832:19;;19491:366;;;:::o;19863:419::-;20029:4;20067:2;20056:9;20052:18;20044:26;;20116:9;20110:4;20106:20;20102:1;20091:9;20087:17;20080:47;20144:131;20270:4;20144:131;:::i;:::-;20136:139;;19863:419;;;:::o;20288:220::-;20428:34;20424:1;20416:6;20412:14;20405:58;20497:3;20492:2;20484:6;20480:15;20473:28;20288:220;:::o;20514:366::-;20656:3;20677:67;20741:2;20736:3;20677:67;:::i;:::-;20670:74;;20753:93;20842:3;20753:93;:::i;:::-;20871:2;20866:3;20862:12;20855:19;;20514:366;;;:::o;20886:419::-;21052:4;21090:2;21079:9;21075:18;21067:26;;21139:9;21133:4;21129:20;21125:1;21114:9;21110:17;21103:47;21167:131;21293:4;21167:131;:::i;:::-;21159:139;;20886:419;;;:::o;21311:221::-;21451:34;21447:1;21439:6;21435:14;21428:58;21520:4;21515:2;21507:6;21503:15;21496:29;21311:221;:::o;21538:366::-;21680:3;21701:67;21765:2;21760:3;21701:67;:::i;:::-;21694:74;;21777:93;21866:3;21777:93;:::i;:::-;21895:2;21890:3;21886:12;21879:19;;21538:366;;;:::o;21910:419::-;22076:4;22114:2;22103:9;22099:18;22091:26;;22163:9;22157:4;22153:20;22149:1;22138:9;22134:17;22127:47;22191:131;22317:4;22191:131;:::i;:::-;22183:139;;21910:419;;;:::o;22335:194::-;22375:4;22395:20;22413:1;22395:20;:::i;:::-;22390:25;;22429:20;22447:1;22429:20;:::i;:::-;22424:25;;22473:1;22470;22466:9;22458:17;;22497:1;22491:4;22488:11;22485:37;;;22502:18;;:::i;:::-;22485:37;22335:194;;;;:::o

Swarm Source

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