ETH Price: $2,978.03 (+2.67%)
Gas: 2 Gwei

Token

PonziToken (PONZI)
 

Overview

Max Total Supply

0 PONZI

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Filtered by Token Holder
covemedic.eth
Balance
22,491,363,154,865 PONZI

Value
$0.00
0x7df76fdeede91d3cb80e4a86158dd9f6d206c98e
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:
PonziToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.7;

import "ERC20.sol";

contract PonziToken is ERC20 {
    constructor() ERC20("PonziToken", "PONZI") {}

    string public constant DISCLAIMER = "DO NOT BUY THIS TOKEN. THIS TOKEN WAS CREATED FOR EDUCATIONAL PURPOSES"; 

    mapping(address => uint256) private negativeBonusBalance;
    mapping(address => uint256) private positiveBonusBalance;
    mapping(address => uint256) private startingBlock;

    function balanceOf(address account) public view override returns (uint256){
        uint256 timeBalance = 0;
        if(startingBlock[account] > 0){
            timeBalance = (block.number - startingBlock[account])**2;
        }
        uint256 balance = timeBalance + positiveBonusBalance[account] - negativeBonusBalance[account];
        return balance;
    }

    function joinPonzi() public {
        require(tx.origin == msg.sender);
        require(startingBlock[msg.sender] == 0);
        startingBlock[msg.sender] = block.number;
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        uint256 fromBalance = balanceOf(from);
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");

        unchecked {
            negativeBonusBalance[from] += amount;
            positiveBonusBalance[to] += amount;
        }

        emit Transfer(from, to, amount);
    }

    function decimals() public pure override returns (uint8){
        return 0;
    }

}

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

pragma solidity ^0.8.0;

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

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

File 2 of 5: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "IERC20.sol";
import "IERC20Metadata.sol";
import "Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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 `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 3 of 5: IERC20.sol
// 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);
}

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

pragma solidity ^0.8.0;

import "IERC20.sol";

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DISCLAIMER","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"joinPonzi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f506f6e7a69546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f504f4e5a49000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620000b8565b508060049080519060200190620000af929190620000b8565b505050620001cd565b828054620000c69062000168565b90600052602060002090601f016020900481019282620000ea576000855562000136565b82601f106200010557805160ff191683800117855562000136565b8280016001018555821562000136579182015b828111156200013557825182559160200191906001019062000118565b5b50905062000145919062000149565b5090565b5b80821115620001645760008160009055506001016200014a565b5090565b600060028204905060018216806200018157607f821691505b602082108114156200019857620001976200019e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61163e80620001dd6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610216578063a9059cbb14610246578063dd62ed3e14610276578063f2216668146102a6576100cf565b806370a08231146101be57806376c16206146101ee57806395d89b41146101f8576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102c4565b6040516100e99190610f07565b60405180910390f35b61010c60048036038101906101079190610d51565b610356565b6040516101199190610eec565b60405180910390f35b61012a610379565b6040516101379190611009565b60405180910390f35b61015a60048036038101906101559190610cfe565b610383565b6040516101679190610eec565b60405180910390f35b6101786103b2565b6040516101859190611024565b60405180910390f35b6101a860048036038101906101a39190610d51565b6103b7565b6040516101b59190610eec565b60405180910390f35b6101d860048036038101906101d39190610c91565b6103ee565b6040516101e59190611009565b60405180910390f35b6101f661053a565b005b610200610604565b60405161020d9190610f07565b60405180910390f35b610230600480360381019061022b9190610d51565b610696565b60405161023d9190610eec565b60405180910390f35b610260600480360381019061025b9190610d51565b61070d565b60405161026d9190610eec565b60405180910390f35b610290600480360381019061028b9190610cbe565b610730565b60405161029d9190611009565b60405180910390f35b6102ae6107b7565b6040516102bb9190610f07565b60405180910390f35b6060600380546102d3906112de565b80601f01602080910402602001604051908101604052809291908181526020018280546102ff906112de565b801561034c5780601f106103215761010080835404028352916020019161034c565b820191906000526020600020905b81548152906001019060200180831161032f57829003601f168201915b5050505050905090565b6000806103616107d3565b905061036e8185856107db565b600191505092915050565b6000600254905090565b60008061038e6107d3565b905061039b8582856109a6565b6103a6858585610a32565b60019150509392505050565b600090565b6000806103c26107d3565b90506103e38185856103d48589610730565b6103de919061105b565b6107db565b600191505092915050565b600080600090506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610497576002600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544361048a9190611222565b6104949190611104565b90505b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483610524919061105b565b61052e9190611222565b90508092505050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461057257600080fd5b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146105be57600080fd5b43600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b606060048054610613906112de565b80601f016020809104026020016040519081016040528092919081815260200182805461063f906112de565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b6000806106a16107d3565b905060006106af8286610730565b9050838110156106f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106eb90610fe9565b60405180910390fd5b61070182868684036107db565b60019250505092915050565b6000806107186107d3565b9050610725818585610a32565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6040518060800160405280604681526020016115c36046913981565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290610fc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b290610f49565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109999190611009565b60405180910390a3505050565b60006109b28484610730565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a2c5781811015610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590610f69565b60405180910390fd5b610a2b84848484036107db565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990610fa9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990610f29565b60405180910390fd5b6000610b1d846103ee565b905081811015610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990610f89565b60405180910390fd5b81600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c599190611009565b60405180910390a350505050565b600081359050610c7681611594565b92915050565b600081359050610c8b816115ab565b92915050565b600060208284031215610ca757610ca661136e565b5b6000610cb584828501610c67565b91505092915050565b60008060408385031215610cd557610cd461136e565b5b6000610ce385828601610c67565b9250506020610cf485828601610c67565b9150509250929050565b600080600060608486031215610d1757610d1661136e565b5b6000610d2586828701610c67565b9350506020610d3686828701610c67565b9250506040610d4786828701610c7c565b9150509250925092565b60008060408385031215610d6857610d6761136e565b5b6000610d7685828601610c67565b9250506020610d8785828601610c7c565b9150509250929050565b610d9a81611268565b82525050565b6000610dab8261103f565b610db5818561104a565b9350610dc58185602086016112ab565b610dce81611373565b840191505092915050565b6000610de660238361104a565b9150610df182611391565b604082019050919050565b6000610e0960228361104a565b9150610e14826113e0565b604082019050919050565b6000610e2c601d8361104a565b9150610e378261142f565b602082019050919050565b6000610e4f60268361104a565b9150610e5a82611458565b604082019050919050565b6000610e7260258361104a565b9150610e7d826114a7565b604082019050919050565b6000610e9560248361104a565b9150610ea0826114f6565b604082019050919050565b6000610eb860258361104a565b9150610ec382611545565b604082019050919050565b610ed781611294565b82525050565b610ee68161129e565b82525050565b6000602082019050610f016000830184610d91565b92915050565b60006020820190508181036000830152610f218184610da0565b905092915050565b60006020820190508181036000830152610f4281610dd9565b9050919050565b60006020820190508181036000830152610f6281610dfc565b9050919050565b60006020820190508181036000830152610f8281610e1f565b9050919050565b60006020820190508181036000830152610fa281610e42565b9050919050565b60006020820190508181036000830152610fc281610e65565b9050919050565b60006020820190508181036000830152610fe281610e88565b9050919050565b6000602082019050818103600083015261100281610eab565b9050919050565b600060208201905061101e6000830184610ece565b92915050565b60006020820190506110396000830184610edd565b92915050565b600081519050919050565b600082825260208201905092915050565b600061106682611294565b915061107183611294565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156110a6576110a5611310565b5b828201905092915050565b6000808291508390505b60018511156110fb578086048111156110d7576110d6611310565b5b60018516156110e65780820291505b80810290506110f485611384565b94506110bb565b94509492505050565b600061110f82611294565b915061111a8361129e565b92506111477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461114f565b905092915050565b60008261115f576001905061121b565b8161116d576000905061121b565b8160018114611183576002811461118d576111bc565b600191505061121b565b60ff84111561119f5761119e611310565b5b8360020a9150848211156111b6576111b5611310565b5b5061121b565b5060208310610133831016604e8410600b84101617156111f15782820a9050838111156111ec576111eb611310565b5b61121b565b6111fe84848460016110b1565b9250905081840481111561121557611214611310565b5b81810290505b9392505050565b600061122d82611294565b915061123883611294565b92508282101561124b5761124a611310565b5b828203905092915050565b600061126182611274565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156112c95780820151818401526020810190506112ae565b838111156112d8576000848401525b50505050565b600060028204905060018216806112f657607f821691505b6020821081141561130a5761130961133f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61159d81611256565b81146115a857600080fd5b50565b6115b481611294565b81146115bf57600080fd5b5056fe444f204e4f5420425559205448495320544f4b454e2e205448495320544f4b454e20574153204352454154454420464f5220454455434154494f4e414c20505552504f534553a26469706673582212205b9d11f55a5ae44bfa505427ae20bdd02f1842c8fc677506c4e14d484ba76b9a64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610216578063a9059cbb14610246578063dd62ed3e14610276578063f2216668146102a6576100cf565b806370a08231146101be57806376c16206146101ee57806395d89b41146101f8576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102c4565b6040516100e99190610f07565b60405180910390f35b61010c60048036038101906101079190610d51565b610356565b6040516101199190610eec565b60405180910390f35b61012a610379565b6040516101379190611009565b60405180910390f35b61015a60048036038101906101559190610cfe565b610383565b6040516101679190610eec565b60405180910390f35b6101786103b2565b6040516101859190611024565b60405180910390f35b6101a860048036038101906101a39190610d51565b6103b7565b6040516101b59190610eec565b60405180910390f35b6101d860048036038101906101d39190610c91565b6103ee565b6040516101e59190611009565b60405180910390f35b6101f661053a565b005b610200610604565b60405161020d9190610f07565b60405180910390f35b610230600480360381019061022b9190610d51565b610696565b60405161023d9190610eec565b60405180910390f35b610260600480360381019061025b9190610d51565b61070d565b60405161026d9190610eec565b60405180910390f35b610290600480360381019061028b9190610cbe565b610730565b60405161029d9190611009565b60405180910390f35b6102ae6107b7565b6040516102bb9190610f07565b60405180910390f35b6060600380546102d3906112de565b80601f01602080910402602001604051908101604052809291908181526020018280546102ff906112de565b801561034c5780601f106103215761010080835404028352916020019161034c565b820191906000526020600020905b81548152906001019060200180831161032f57829003601f168201915b5050505050905090565b6000806103616107d3565b905061036e8185856107db565b600191505092915050565b6000600254905090565b60008061038e6107d3565b905061039b8582856109a6565b6103a6858585610a32565b60019150509392505050565b600090565b6000806103c26107d3565b90506103e38185856103d48589610730565b6103de919061105b565b6107db565b600191505092915050565b600080600090506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610497576002600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544361048a9190611222565b6104949190611104565b90505b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483610524919061105b565b61052e9190611222565b90508092505050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461057257600080fd5b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146105be57600080fd5b43600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b606060048054610613906112de565b80601f016020809104026020016040519081016040528092919081815260200182805461063f906112de565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b6000806106a16107d3565b905060006106af8286610730565b9050838110156106f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106eb90610fe9565b60405180910390fd5b61070182868684036107db565b60019250505092915050565b6000806107186107d3565b9050610725818585610a32565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6040518060800160405280604681526020016115c36046913981565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290610fc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b290610f49565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109999190611009565b60405180910390a3505050565b60006109b28484610730565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a2c5781811015610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590610f69565b60405180910390fd5b610a2b84848484036107db565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990610fa9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990610f29565b60405180910390fd5b6000610b1d846103ee565b905081811015610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990610f89565b60405180910390fd5b81600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c599190611009565b60405180910390a350505050565b600081359050610c7681611594565b92915050565b600081359050610c8b816115ab565b92915050565b600060208284031215610ca757610ca661136e565b5b6000610cb584828501610c67565b91505092915050565b60008060408385031215610cd557610cd461136e565b5b6000610ce385828601610c67565b9250506020610cf485828601610c67565b9150509250929050565b600080600060608486031215610d1757610d1661136e565b5b6000610d2586828701610c67565b9350506020610d3686828701610c67565b9250506040610d4786828701610c7c565b9150509250925092565b60008060408385031215610d6857610d6761136e565b5b6000610d7685828601610c67565b9250506020610d8785828601610c7c565b9150509250929050565b610d9a81611268565b82525050565b6000610dab8261103f565b610db5818561104a565b9350610dc58185602086016112ab565b610dce81611373565b840191505092915050565b6000610de660238361104a565b9150610df182611391565b604082019050919050565b6000610e0960228361104a565b9150610e14826113e0565b604082019050919050565b6000610e2c601d8361104a565b9150610e378261142f565b602082019050919050565b6000610e4f60268361104a565b9150610e5a82611458565b604082019050919050565b6000610e7260258361104a565b9150610e7d826114a7565b604082019050919050565b6000610e9560248361104a565b9150610ea0826114f6565b604082019050919050565b6000610eb860258361104a565b9150610ec382611545565b604082019050919050565b610ed781611294565b82525050565b610ee68161129e565b82525050565b6000602082019050610f016000830184610d91565b92915050565b60006020820190508181036000830152610f218184610da0565b905092915050565b60006020820190508181036000830152610f4281610dd9565b9050919050565b60006020820190508181036000830152610f6281610dfc565b9050919050565b60006020820190508181036000830152610f8281610e1f565b9050919050565b60006020820190508181036000830152610fa281610e42565b9050919050565b60006020820190508181036000830152610fc281610e65565b9050919050565b60006020820190508181036000830152610fe281610e88565b9050919050565b6000602082019050818103600083015261100281610eab565b9050919050565b600060208201905061101e6000830184610ece565b92915050565b60006020820190506110396000830184610edd565b92915050565b600081519050919050565b600082825260208201905092915050565b600061106682611294565b915061107183611294565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156110a6576110a5611310565b5b828201905092915050565b6000808291508390505b60018511156110fb578086048111156110d7576110d6611310565b5b60018516156110e65780820291505b80810290506110f485611384565b94506110bb565b94509492505050565b600061110f82611294565b915061111a8361129e565b92506111477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461114f565b905092915050565b60008261115f576001905061121b565b8161116d576000905061121b565b8160018114611183576002811461118d576111bc565b600191505061121b565b60ff84111561119f5761119e611310565b5b8360020a9150848211156111b6576111b5611310565b5b5061121b565b5060208310610133831016604e8410600b84101617156111f15782820a9050838111156111ec576111eb611310565b5b61121b565b6111fe84848460016110b1565b9250905081840481111561121557611214611310565b5b81810290505b9392505050565b600061122d82611294565b915061123883611294565b92508282101561124b5761124a611310565b5b828203905092915050565b600061126182611274565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156112c95780820151818401526020810190506112ae565b838111156112d8576000848401525b50505050565b600060028204905060018216806112f657607f821691505b6020821081141561130a5761130961133f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61159d81611256565b81146115a857600080fd5b50565b6115b481611294565b81146115bf57600080fd5b5056fe444f204e4f5420425559205448495320544f4b454e2e205448495320544f4b454e20574153204352454154454420464f5220454455434154494f4e414c20505552504f534553a26469706673582212205b9d11f55a5ae44bfa505427ae20bdd02f1842c8fc677506c4e14d484ba76b9a64736f6c63430008070033

Deployed Bytecode Sourcemap

85:1603:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2188:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4539:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3308:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5320:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1600:83:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6024:238:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;476:368:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;852:180;;;:::i;:::-;;2407:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6765:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3812:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4068:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;174:108:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2188:100:1;2242:13;2275:5;2268:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2188:100;:::o;4539:201::-;4622:4;4639:13;4655:12;:10;:12::i;:::-;4639:28;;4678:32;4687:5;4694:7;4703:6;4678:8;:32::i;:::-;4728:4;4721:11;;;4539:201;;;;:::o;3308:108::-;3369:7;3396:12;;3389:19;;3308:108;:::o;5320:295::-;5451:4;5468:15;5486:12;:10;:12::i;:::-;5468:30;;5509:38;5525:4;5531:7;5540:6;5509:15;:38::i;:::-;5558:27;5568:4;5574:2;5578:6;5558:9;:27::i;:::-;5603:4;5596:11;;;5320:295;;;;;:::o;1600:83:4:-;1650:5;1600:83;:::o;6024:238:1:-;6112:4;6129:13;6145:12;:10;:12::i;:::-;6129:28;;6168:64;6177:5;6184:7;6221:10;6193:25;6203:5;6210:7;6193:9;:25::i;:::-;:38;;;;:::i;:::-;6168:8;:64::i;:::-;6250:4;6243:11;;;6024:238;;;;:::o;476:368:4:-;542:7;561:19;583:1;561:23;;623:1;598:13;:22;612:7;598:22;;;;;;;;;;;;;;;;:26;595:113;;;695:1;670:13;:22;684:7;670:22;;;;;;;;;;;;;;;;655:12;:37;;;;:::i;:::-;654:42;;;;:::i;:::-;640:56;;595:113;718:15;782:20;:29;803:7;782:29;;;;;;;;;;;;;;;;750:20;:29;771:7;750:29;;;;;;;;;;;;;;;;736:11;:43;;;;:::i;:::-;:75;;;;:::i;:::-;718:93;;829:7;822:14;;;;476:368;;;:::o;852:180::-;912:10;899:23;;:9;:23;;;891:32;;;;;;971:1;942:13;:25;956:10;942:25;;;;;;;;;;;;;;;;:30;934:39;;;;;;1012:12;984:13;:25;998:10;984:25;;;;;;;;;;;;;;;:40;;;;852:180::o;2407:104:1:-;2463:13;2496:7;2489:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2407:104;:::o;6765:436::-;6858:4;6875:13;6891:12;:10;:12::i;:::-;6875:28;;6914:24;6941:25;6951:5;6958:7;6941:9;:25::i;:::-;6914:52;;7005:15;6985:16;:35;;6977:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7098:60;7107:5;7114:7;7142:15;7123:16;:34;7098:8;:60::i;:::-;7189:4;7182:11;;;;6765:436;;;;:::o;3812:193::-;3891:4;3908:13;3924:12;:10;:12::i;:::-;3908:28;;3947;3957:5;3964:2;3968:6;3947:9;:28::i;:::-;3993:4;3986:11;;;3812:193;;;;:::o;4068:151::-;4157:7;4184:11;:18;4196:5;4184:18;;;;;;;;;;;;;;;:27;4203:7;4184:27;;;;;;;;;;;;;;;;4177:34;;4068:151;;;;:::o;174:108:4:-;;;;;;;;;;;;;;;;;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;10792:380:1:-;10945:1;10928:19;;:5;:19;;;;10920:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11026:1;11007:21;;:7;:21;;;;10999:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11110:6;11080:11;:18;11092:5;11080:18;;;;;;;;;;;;;;;:27;11099:7;11080:27;;;;;;;;;;;;;;;:36;;;;11148:7;11132:32;;11141:5;11132:32;;;11157:6;11132:32;;;;;;:::i;:::-;;;;;;;;10792:380;;;:::o;11463:453::-;11598:24;11625:25;11635:5;11642:7;11625:9;:25::i;:::-;11598:52;;11685:17;11665:16;:37;11661:248;;11747:6;11727:16;:26;;11719:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11831:51;11840:5;11847:7;11875:6;11856:16;:25;11831:8;:51::i;:::-;11661:248;11587:329;11463:453;;;:::o;1040:552:4:-;1154:1;1138:18;;:4;:18;;;;1130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1231:1;1217:16;;:2;:16;;;;1209:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1286:19;1308:15;1318:4;1308:9;:15::i;:::-;1286:37;;1357:6;1342:11;:21;;1334:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;1474:6;1444:20;:26;1465:4;1444:26;;;;;;;;;;;;;;;;:36;;;;;;;;;;;1523:6;1495:20;:24;1516:2;1495:24;;;;;;;;;;;;;;;;:34;;;;;;;;;;;1573:2;1558:26;;1567:4;1558:26;;;1577:6;1558:26;;;;;;:::i;:::-;;;;;;;;1119:473;1040:552;;;:::o;7:139:5:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:109::-;2298:21;2313:5;2298:21;:::i;:::-;2293:3;2286:34;2217:109;;:::o;2332:364::-;2420:3;2448:39;2481:5;2448:39;:::i;:::-;2503:71;2567:6;2562:3;2503:71;:::i;:::-;2496:78;;2583:52;2628:6;2623:3;2616:4;2609:5;2605:16;2583:52;:::i;:::-;2660:29;2682:6;2660:29;:::i;:::-;2655:3;2651:39;2644:46;;2424:272;2332:364;;;;:::o;2702:366::-;2844:3;2865:67;2929:2;2924:3;2865:67;:::i;:::-;2858:74;;2941:93;3030:3;2941:93;:::i;:::-;3059:2;3054:3;3050:12;3043:19;;2702:366;;;:::o;3074:::-;3216:3;3237:67;3301:2;3296:3;3237:67;:::i;:::-;3230:74;;3313:93;3402:3;3313:93;:::i;:::-;3431:2;3426:3;3422:12;3415:19;;3074:366;;;:::o;3446:::-;3588:3;3609:67;3673:2;3668:3;3609:67;:::i;:::-;3602:74;;3685:93;3774:3;3685:93;:::i;:::-;3803:2;3798:3;3794:12;3787:19;;3446:366;;;:::o;3818:::-;3960:3;3981:67;4045:2;4040:3;3981:67;:::i;:::-;3974:74;;4057:93;4146:3;4057:93;:::i;:::-;4175:2;4170:3;4166:12;4159:19;;3818:366;;;:::o;4190:::-;4332:3;4353:67;4417:2;4412:3;4353:67;:::i;:::-;4346:74;;4429:93;4518:3;4429:93;:::i;:::-;4547:2;4542:3;4538:12;4531:19;;4190:366;;;:::o;4562:::-;4704:3;4725:67;4789:2;4784:3;4725:67;:::i;:::-;4718:74;;4801:93;4890:3;4801:93;:::i;:::-;4919:2;4914:3;4910:12;4903:19;;4562:366;;;:::o;4934:::-;5076:3;5097:67;5161:2;5156:3;5097:67;:::i;:::-;5090:74;;5173:93;5262:3;5173:93;:::i;:::-;5291:2;5286:3;5282:12;5275:19;;4934:366;;;:::o;5306:118::-;5393:24;5411:5;5393:24;:::i;:::-;5388:3;5381:37;5306:118;;:::o;5430:112::-;5513:22;5529:5;5513:22;:::i;:::-;5508:3;5501:35;5430:112;;:::o;5548:210::-;5635:4;5673:2;5662:9;5658:18;5650:26;;5686:65;5748:1;5737:9;5733:17;5724:6;5686:65;:::i;:::-;5548:210;;;;:::o;5764:313::-;5877:4;5915:2;5904:9;5900:18;5892:26;;5964:9;5958:4;5954:20;5950:1;5939:9;5935:17;5928:47;5992:78;6065:4;6056:6;5992:78;:::i;:::-;5984:86;;5764:313;;;;:::o;6083:419::-;6249:4;6287:2;6276:9;6272:18;6264:26;;6336:9;6330:4;6326:20;6322:1;6311:9;6307:17;6300:47;6364:131;6490:4;6364:131;:::i;:::-;6356:139;;6083:419;;;:::o;6508:::-;6674:4;6712:2;6701:9;6697:18;6689:26;;6761:9;6755:4;6751:20;6747:1;6736:9;6732:17;6725:47;6789:131;6915:4;6789:131;:::i;:::-;6781:139;;6508:419;;;:::o;6933:::-;7099:4;7137:2;7126:9;7122:18;7114:26;;7186:9;7180:4;7176:20;7172:1;7161:9;7157:17;7150:47;7214:131;7340:4;7214:131;:::i;:::-;7206:139;;6933:419;;;:::o;7358:::-;7524:4;7562:2;7551:9;7547:18;7539:26;;7611:9;7605:4;7601:20;7597:1;7586:9;7582:17;7575:47;7639:131;7765:4;7639:131;:::i;:::-;7631:139;;7358:419;;;:::o;7783:::-;7949:4;7987:2;7976:9;7972:18;7964:26;;8036:9;8030:4;8026:20;8022:1;8011:9;8007:17;8000:47;8064:131;8190:4;8064:131;:::i;:::-;8056:139;;7783:419;;;:::o;8208:::-;8374:4;8412:2;8401:9;8397:18;8389:26;;8461:9;8455:4;8451:20;8447:1;8436:9;8432:17;8425:47;8489:131;8615:4;8489:131;:::i;:::-;8481:139;;8208:419;;;:::o;8633:::-;8799:4;8837:2;8826:9;8822:18;8814:26;;8886:9;8880:4;8876:20;8872:1;8861:9;8857:17;8850:47;8914:131;9040:4;8914:131;:::i;:::-;8906:139;;8633:419;;;:::o;9058:222::-;9151:4;9189:2;9178:9;9174:18;9166:26;;9202:71;9270:1;9259:9;9255:17;9246:6;9202:71;:::i;:::-;9058:222;;;;:::o;9286:214::-;9375:4;9413:2;9402:9;9398:18;9390:26;;9426:67;9490:1;9479:9;9475:17;9466:6;9426:67;:::i;:::-;9286:214;;;;:::o;9587:99::-;9639:6;9673:5;9667:12;9657:22;;9587:99;;;:::o;9692:169::-;9776:11;9810:6;9805:3;9798:19;9850:4;9845:3;9841:14;9826:29;;9692:169;;;;:::o;9867:305::-;9907:3;9926:20;9944:1;9926:20;:::i;:::-;9921:25;;9960:20;9978:1;9960:20;:::i;:::-;9955:25;;10114:1;10046:66;10042:74;10039:1;10036:81;10033:107;;;10120:18;;:::i;:::-;10033:107;10164:1;10161;10157:9;10150:16;;9867:305;;;;:::o;10178:848::-;10239:5;10246:4;10270:6;10261:15;;10294:5;10285:14;;10308:712;10329:1;10319:8;10316:15;10308:712;;;10424:4;10419:3;10415:14;10409:4;10406:24;10403:50;;;10433:18;;:::i;:::-;10403:50;10483:1;10473:8;10469:16;10466:451;;;10898:4;10891:5;10887:16;10878:25;;10466:451;10948:4;10942;10938:15;10930:23;;10978:32;11001:8;10978:32;:::i;:::-;10966:44;;10308:712;;;10178:848;;;;;;;:::o;11032:281::-;11090:5;11114:23;11132:4;11114:23;:::i;:::-;11106:31;;11158:25;11174:8;11158:25;:::i;:::-;11146:37;;11202:104;11239:66;11229:8;11223:4;11202:104;:::i;:::-;11193:113;;11032:281;;;;:::o;11319:1073::-;11373:5;11564:8;11554:40;;11585:1;11576:10;;11587:5;;11554:40;11613:4;11603:36;;11630:1;11621:10;;11632:5;;11603:36;11699:4;11747:1;11742:27;;;;11783:1;11778:191;;;;11692:277;;11742:27;11760:1;11751:10;;11762:5;;;11778:191;11823:3;11813:8;11810:17;11807:43;;;11830:18;;:::i;:::-;11807:43;11879:8;11876:1;11872:16;11863:25;;11914:3;11907:5;11904:14;11901:40;;;11921:18;;:::i;:::-;11901:40;11954:5;;;11692:277;;12078:2;12068:8;12065:16;12059:3;12053:4;12050:13;12046:36;12028:2;12018:8;12015:16;12010:2;12004:4;12001:12;11997:35;11981:111;11978:246;;;12134:8;12128:4;12124:19;12115:28;;12169:3;12162:5;12159:14;12156:40;;;12176:18;;:::i;:::-;12156:40;12209:5;;11978:246;12249:42;12287:3;12277:8;12271:4;12268:1;12249:42;:::i;:::-;12234:57;;;;12323:4;12318:3;12314:14;12307:5;12304:25;12301:51;;;12332:18;;:::i;:::-;12301:51;12381:4;12374:5;12370:16;12361:25;;11319:1073;;;;;;:::o;12398:191::-;12438:4;12458:20;12476:1;12458:20;:::i;:::-;12453:25;;12492:20;12510:1;12492:20;:::i;:::-;12487:25;;12531:1;12528;12525:8;12522:34;;;12536:18;;:::i;:::-;12522:34;12581:1;12578;12574:9;12566:17;;12398:191;;;;:::o;12595:96::-;12632:7;12661:24;12679:5;12661:24;:::i;:::-;12650:35;;12595:96;;;:::o;12697:90::-;12731:7;12774:5;12767:13;12760:21;12749:32;;12697:90;;;:::o;12793:126::-;12830:7;12870:42;12863:5;12859:54;12848:65;;12793:126;;;:::o;12925:77::-;12962:7;12991:5;12980:16;;12925:77;;;:::o;13008:86::-;13043:7;13083:4;13076:5;13072:16;13061:27;;13008:86;;;:::o;13100:307::-;13168:1;13178:113;13192:6;13189:1;13186:13;13178:113;;;13277:1;13272:3;13268:11;13262:18;13258:1;13253:3;13249:11;13242:39;13214:2;13211:1;13207:10;13202:15;;13178:113;;;13309:6;13306:1;13303:13;13300:101;;;13389:1;13380:6;13375:3;13371:16;13364:27;13300:101;13149:258;13100:307;;;:::o;13413:320::-;13457:6;13494:1;13488:4;13484:12;13474:22;;13541:1;13535:4;13531:12;13562:18;13552:81;;13618:4;13610:6;13606:17;13596:27;;13552:81;13680:2;13672:6;13669:14;13649:18;13646:38;13643:84;;;13699:18;;:::i;:::-;13643:84;13464:269;13413:320;;;:::o;13739:180::-;13787:77;13784:1;13777:88;13884:4;13881:1;13874:15;13908:4;13905:1;13898:15;13925:180;13973:77;13970:1;13963:88;14070:4;14067:1;14060:15;14094:4;14091:1;14084:15;14234:117;14343:1;14340;14333:12;14357:102;14398:6;14449:2;14445:7;14440:2;14433:5;14429:14;14425:28;14415:38;;14357:102;;;:::o;14465:::-;14507:8;14554:5;14551:1;14547:13;14526:34;;14465:102;;;:::o;14573:222::-;14713:34;14709:1;14701:6;14697:14;14690:58;14782:5;14777:2;14769:6;14765:15;14758:30;14573:222;:::o;14801:221::-;14941:34;14937:1;14929:6;14925:14;14918:58;15010:4;15005:2;14997:6;14993:15;14986:29;14801:221;:::o;15028:179::-;15168:31;15164:1;15156:6;15152:14;15145:55;15028:179;:::o;15213:225::-;15353:34;15349:1;15341:6;15337:14;15330:58;15422:8;15417:2;15409:6;15405:15;15398:33;15213:225;:::o;15444:224::-;15584:34;15580:1;15572:6;15568:14;15561:58;15653:7;15648:2;15640:6;15636:15;15629:32;15444:224;:::o;15674:223::-;15814:34;15810:1;15802:6;15798:14;15791:58;15883:6;15878:2;15870:6;15866:15;15859:31;15674:223;:::o;15903:224::-;16043:34;16039:1;16031:6;16027:14;16020:58;16112:7;16107:2;16099:6;16095:15;16088:32;15903:224;:::o;16133:122::-;16206:24;16224:5;16206:24;:::i;:::-;16199:5;16196:35;16186:63;;16245:1;16242;16235:12;16186:63;16133:122;:::o;16261:::-;16334:24;16352:5;16334:24;:::i;:::-;16327:5;16324:35;16314:63;;16373:1;16370;16363:12;16314:63;16261:122;:::o

Swarm Source

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