ETH Price: $3,613.34 (+9.46%)

Token

Pepe De Mayo (ELPEPE)
 

Overview

Max Total Supply

1,000,000,000,000 ELPEPE

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,615,433,975.811490689959055949 ELPEPE

Value
$0.00
0xc41416d2243776C11407773C8CF43C16D01d8f02
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:
PepeDeMayo

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 5: token.sol
/*

Pepe De Mayo

https://t.me/PepeDeMayo
https://www.twitter.com/Pepe_De_Mayo
https://www.pepedemayo.me

*/


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./ERC20.sol";

contract PepeDeMayo is ERC20 {
    uint256 public constant initialToken = 1000000000000;
    uint256 public constant thresholdTimePeriod = 45 minutes;
    uint256 public immutable tempMaxTxnCap = 20000000000 * 10 ** decimals();
    uint256 public immutable thresholdTimeStamp;

    bool public capped = true;
    address public immutable deployer;

    modifier checks(
        address from,
        address to,
        uint256 amount
    ) {
        if (capped) {
            if (from != deployer && to != deployer) {
                if (block.timestamp < thresholdTimeStamp) {
                    require(
                        amount <= tempMaxTxnCap,
                        "CAN'T TRANSACT MORE THAN THE CAP FOR NOW"
                    );
                } else {
                    capped = false;
                }
            }
        }
        _;
    }

    constructor() ERC20("Pepe De Mayo", "ELPEPE") {
        thresholdTimeStamp = block.timestamp + thresholdTimePeriod;
        deployer = msg.sender;
        _mint(msg.sender, initialToken * 10 ** decimals());
    }

    function transfer(
        address to,
        uint256 amount
    ) public override checks(msg.sender, to, amount) returns (bool success) {
        success = super.transfer(to, amount);
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override checks(from, to, amount) returns (bool success) {
        success = super.transferFrom(from, to, amount);
    }

    function removeCap() external {
        require(msg.sender == deployer, "NOT AUTHORIZED");
        capped = false;
    }
}

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.8.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":[{"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":"capped","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tempMaxTxnCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thresholdTimePeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thresholdTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"success","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":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60e0604052620000126012600a62000376565b62000023906404a817c8006200038e565b6080526005805460ff191660011790553480156200004057600080fd5b50604080518082018252600c81526b50657065204465204d61796f60a01b602080830191825283518085019094526006845265454c5045504560d01b9084015281519192916200009391600391620001bb565b508051620000a9906004906020840190620001bb565b505050610a8c42620000bc9190620003b0565b60a0523360c0819052620000ef90620000d86012600a62000376565b620000e99064e8d4a510006200038e565b620000f5565b62000408565b6001600160a01b038216620001505760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001649190620003b0565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b828054620001c990620003cb565b90600052602060002090601f016020900481019282620001ed576000855562000238565b82601f106200020857805160ff191683800117855562000238565b8280016001018555821562000238579182015b82811115620002385782518255916020019190600101906200021b565b50620002469291506200024a565b5090565b5b808211156200024657600081556001016200024b565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002b85781600019048211156200029c576200029c62000261565b80851615620002aa57918102915b93841c93908002906200027c565b509250929050565b600082620002d15750600162000370565b81620002e05750600062000370565b8160018114620002f95760028114620003045762000324565b600191505062000370565b60ff84111562000318576200031862000261565b50506001821b62000370565b5060208310610133831016604e8410600b841016171562000349575081810a62000370565b62000355838362000277565b80600019048211156200036c576200036c62000261565b0290505b92915050565b60006200038760ff841683620002c0565b9392505050565b6000816000190483118215151615620003ab57620003ab62000261565b500290565b60008219821115620003c657620003c662000261565b500190565b600181811c90821680620003e057607f821691505b602082108114156200040257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051610c78620004776000396000818161027901528181610386015281816103c3015281816104c1015281816105d60152610613015260008181610205015281816103ff015261064f01526000818161023f0152818161042701526106770152610c786000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806375aeb226116100a2578063a457c2d711610071578063a457c2d714610227578063a8f1005a1461023a578063a9059cbb14610261578063d5f3948814610274578063dd62ed3e146102b357600080fd5b806375aeb226146101e55780637f39dac3146101ee57806395d89b41146101f8578063a390b6671461020057600080fd5b8063313ce567116100e9578063313ce5671461018157806339509351146101905780633ea97009146101a35780635eb101c3146101af57806370a08231146101bc57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102c6565b6040516101309190610a6d565b60405180910390f35b61014c610147366004610ade565b610358565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610b08565b610370565b60405160128152602001610130565b61014c61019e366004610ade565b610494565b61016064e8d4a5100081565b60055461014c9060ff1681565b6101606101ca366004610b44565b6001600160a01b031660009081526020819052604090205490565b610160610a8c81565b6101f66104b6565b005b61012361052b565b6101607f000000000000000000000000000000000000000000000000000000000000000081565b61014c610235366004610ade565b61053a565b6101607f000000000000000000000000000000000000000000000000000000000000000081565b61014c61026f366004610ade565b6105c0565b61029b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610130565b6101606102c1366004610b66565b6106d9565b6060600380546102d590610b99565b80601f016020809104026020016040519081016040528092919081815260200182805461030190610b99565b801561034e5780601f106103235761010080835404028352916020019161034e565b820191906000526020600020905b81548152906001019060200180831161033157829003601f168201915b5050505050905090565b600033610366818585610704565b5060019392505050565b60055460009084908490849060ff161561047e577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316141580156103f857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561047e577f0000000000000000000000000000000000000000000000000000000000000000421015610473577f000000000000000000000000000000000000000000000000000000000000000081111561046e5760405162461bcd60e51b815260040161046590610bd4565b60405180910390fd5b61047e565b6005805460ff191690555b610489878787610828565b979650505050505050565b6000336103668185856104a783836106d9565b6104b19190610c1c565b610704565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461051f5760405162461bcd60e51b815260206004820152600e60248201526d1393d5081055551213d49256915160921b6044820152606401610465565b6005805460ff19169055565b6060600480546102d590610b99565b6000338161054882866106d9565b9050838110156105a85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610465565b6105b58286868403610704565b506001949350505050565b60055460009033908490849060ff16156106c5577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161415801561064857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156106c5577f00000000000000000000000000000000000000000000000000000000000000004210156106ba577f00000000000000000000000000000000000000000000000000000000000000008111156106b55760405162461bcd60e51b815260040161046590610bd4565b6106c5565b6005805460ff191690555b6106cf8686610841565b9695505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610465565b6001600160a01b0382166107c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610465565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60003361083685828561084f565b6105b58585856108c9565b6000336103668185856108c9565b600061085b84846106d9565b905060001981146108c357818110156108b65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610465565b6108c38484848403610704565b50505050565b6001600160a01b03831661092d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610465565b6001600160a01b03821661098f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610465565b6001600160a01b03831660009081526020819052604090205481811015610a075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610465565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108c3565b600060208083528351808285015260005b81811015610a9a57858101830151858201604001528201610a7e565b81811115610aac576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ad957600080fd5b919050565b60008060408385031215610af157600080fd5b610afa83610ac2565b946020939093013593505050565b600080600060608486031215610b1d57600080fd5b610b2684610ac2565b9250610b3460208501610ac2565b9150604084013590509250925092565b600060208284031215610b5657600080fd5b610b5f82610ac2565b9392505050565b60008060408385031215610b7957600080fd5b610b8283610ac2565b9150610b9060208401610ac2565b90509250929050565b600181811c90821680610bad57607f821691505b60208210811415610bce57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526028908201527f43414e2754205452414e53414354204d4f5245205448414e205448452043415060408201526720464f52204e4f5760c01b606082015260800190565b60008219821115610c3d57634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220331bd947deaed3ccf1d7300724162042350d42e6824cc5a264d49144a6ff9ef064736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806375aeb226116100a2578063a457c2d711610071578063a457c2d714610227578063a8f1005a1461023a578063a9059cbb14610261578063d5f3948814610274578063dd62ed3e146102b357600080fd5b806375aeb226146101e55780637f39dac3146101ee57806395d89b41146101f8578063a390b6671461020057600080fd5b8063313ce567116100e9578063313ce5671461018157806339509351146101905780633ea97009146101a35780635eb101c3146101af57806370a08231146101bc57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102c6565b6040516101309190610a6d565b60405180910390f35b61014c610147366004610ade565b610358565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610b08565b610370565b60405160128152602001610130565b61014c61019e366004610ade565b610494565b61016064e8d4a5100081565b60055461014c9060ff1681565b6101606101ca366004610b44565b6001600160a01b031660009081526020819052604090205490565b610160610a8c81565b6101f66104b6565b005b61012361052b565b6101607f0000000000000000000000000000000000000000000000000000000064555e7781565b61014c610235366004610ade565b61053a565b6101607f0000000000000000000000000000000000000000409f9cbc7c4a04c22000000081565b61014c61026f366004610ade565b6105c0565b61029b7f0000000000000000000000000829082d6af07db15efa9c319d7f37421744a48381565b6040516001600160a01b039091168152602001610130565b6101606102c1366004610b66565b6106d9565b6060600380546102d590610b99565b80601f016020809104026020016040519081016040528092919081815260200182805461030190610b99565b801561034e5780601f106103235761010080835404028352916020019161034e565b820191906000526020600020905b81548152906001019060200180831161033157829003601f168201915b5050505050905090565b600033610366818585610704565b5060019392505050565b60055460009084908490849060ff161561047e577f0000000000000000000000000829082d6af07db15efa9c319d7f37421744a4836001600160a01b0316836001600160a01b0316141580156103f857507f0000000000000000000000000829082d6af07db15efa9c319d7f37421744a4836001600160a01b0316826001600160a01b031614155b1561047e577f0000000000000000000000000000000000000000000000000000000064555e77421015610473577f0000000000000000000000000000000000000000409f9cbc7c4a04c22000000081111561046e5760405162461bcd60e51b815260040161046590610bd4565b60405180910390fd5b61047e565b6005805460ff191690555b610489878787610828565b979650505050505050565b6000336103668185856104a783836106d9565b6104b19190610c1c565b610704565b336001600160a01b037f0000000000000000000000000829082d6af07db15efa9c319d7f37421744a483161461051f5760405162461bcd60e51b815260206004820152600e60248201526d1393d5081055551213d49256915160921b6044820152606401610465565b6005805460ff19169055565b6060600480546102d590610b99565b6000338161054882866106d9565b9050838110156105a85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610465565b6105b58286868403610704565b506001949350505050565b60055460009033908490849060ff16156106c5577f0000000000000000000000000829082d6af07db15efa9c319d7f37421744a4836001600160a01b0316836001600160a01b03161415801561064857507f0000000000000000000000000829082d6af07db15efa9c319d7f37421744a4836001600160a01b0316826001600160a01b031614155b156106c5577f0000000000000000000000000000000000000000000000000000000064555e774210156106ba577f0000000000000000000000000000000000000000409f9cbc7c4a04c2200000008111156106b55760405162461bcd60e51b815260040161046590610bd4565b6106c5565b6005805460ff191690555b6106cf8686610841565b9695505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610465565b6001600160a01b0382166107c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610465565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60003361083685828561084f565b6105b58585856108c9565b6000336103668185856108c9565b600061085b84846106d9565b905060001981146108c357818110156108b65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610465565b6108c38484848403610704565b50505050565b6001600160a01b03831661092d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610465565b6001600160a01b03821661098f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610465565b6001600160a01b03831660009081526020819052604090205481811015610a075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610465565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108c3565b600060208083528351808285015260005b81811015610a9a57858101830151858201604001528201610a7e565b81811115610aac576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ad957600080fd5b919050565b60008060408385031215610af157600080fd5b610afa83610ac2565b946020939093013593505050565b600080600060608486031215610b1d57600080fd5b610b2684610ac2565b9250610b3460208501610ac2565b9150604084013590509250925092565b600060208284031215610b5657600080fd5b610b5f82610ac2565b9392505050565b60008060408385031215610b7957600080fd5b610b8283610ac2565b9150610b9060208401610ac2565b90509250929050565b600181811c90821680610bad57607f821691505b60208210811415610bce57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526028908201527f43414e2754205452414e53414354204d4f5245205448414e205448452043415060408201526720464f52204e4f5760c01b606082015260800190565b60008219821115610c3d57634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220331bd947deaed3ccf1d7300724162042350d42e6824cc5a264d49144a6ff9ef064736f6c63430008090033

Deployed Bytecode Sourcemap

191:1644:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2133:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4410:197;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:5;;1211:22;1193:41;;1181:2;1166:18;4410:197:1;1053:187:5;3221:106:1;3308:12;;3221:106;;;1391:25:5;;;1379:2;1364:18;3221:106:1;1245:177:5;1478:229:4;;;;;;:::i;:::-;;:::i;3070:91:1:-;;;3152:2;1902:36:5;;1890:2;1875:18;3070:91:1;1760:184:5;5850:234:1;;;;;;:::i;:::-;;:::i;226:52:4:-;;265:13;226:52;;473:25;;;;;;;;;3385:125:1;;;;;;:::i;:::-;-1:-1:-1;;;;;3485:18:1;3459:7;3485:18;;;;;;;;;;;;3385:125;284:56:4;;330:10;284:56;;1713:120;;;:::i;:::-;;2344:102:1;;;:::i;423:43:4:-;;;;;6571:427:1;;;;;;:::i;:::-;;:::i;346:71:4:-;;;;;1281:191;;;;;;:::i;:::-;;:::i;504:33::-;;;;;;;;-1:-1:-1;;;;;2304:32:5;;;2286:51;;2274:2;2259:18;504:33:4;2140:203:5;3953:149:1;;;;;;:::i;:::-;;:::i;2133:98::-;2187:13;2219:5;2212:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2133:98;:::o;4410:197::-;4493:4;719:10:0;4547:32:1;719:10:0;4563:7:1;4572:6;4547:8;:32::i;:::-;-1:-1:-1;4596:4:1;;4410:197;-1:-1:-1;;;4410:197:1:o;1478:229:4:-;646:6;;1630:12;;1603:4;;1609:2;;1613:6;;646;;642:398;;;680:8;-1:-1:-1;;;;;672:16:4;:4;-1:-1:-1;;;;;672:16:4;;;:34;;;;;698:8;-1:-1:-1;;;;;692:14:4;:2;-1:-1:-1;;;;;692:14:4;;;672:34;668:362;;;748:18;730:15;:36;726:290;;;833:13;823:6;:23;;790:146;;;;-1:-1:-1;;;790:146:4;;;;;;;:::i;:::-;;;;;;;;;726:290;;;983:6;:14;;-1:-1:-1;;983:14:4;;;726:290;1664:36:::1;1683:4;1689:2;1693:6;1664:18;:36::i;:::-;1654:46:::0;1478:229;-1:-1:-1;;;;;;;1478:229:4:o;5850:234:1:-;5938:4;719:10:0;5992:64:1;719:10:0;6008:7:1;6045:10;6017:25;719:10:0;6008:7:1;6017:9;:25::i;:::-;:38;;;;:::i;:::-;5992:8;:64::i;1713:120:4:-;1761:10;-1:-1:-1;;;;;1775:8:4;1761:22;;1753:49;;;;-1:-1:-1;;;1753:49:4;;3839:2:5;1753:49:4;;;3821:21:5;3878:2;3858:18;;;3851:30;-1:-1:-1;;;3897:18:5;;;3890:44;3951:18;;1753:49:4;3637:338:5;1753:49:4;1812:6;:14;;-1:-1:-1;;1812:14:4;;;1713:120::o;2344:102:1:-;2400:13;2432:7;2425:14;;;;;:::i;6571:427::-;6664:4;719:10:0;6664:4:1;6745:25;719:10:0;6762:7:1;6745:9;:25::i;:::-;6718:52;;6808:15;6788:16;:35;;6780:85;;;;-1:-1:-1;;;6780:85:1;;4182:2:5;6780:85:1;;;4164:21:5;4221:2;4201:18;;;4194:30;4260:34;4240:18;;;4233:62;-1:-1:-1;;;4311:18:5;;;4304:35;4356:19;;6780:85:1;3980:401:5;6780:85:1;6899:60;6908:5;6915:7;6943:15;6924:16;:34;6899:8;:60::i;:::-;-1:-1:-1;6987:4:1;;6571:427;-1:-1:-1;;;;6571:427:1:o;1281:191:4:-;646:6;;1405:12;;1372:10;;1384:2;;1388:6;;646;;642:398;;;680:8;-1:-1:-1;;;;;672:16:4;:4;-1:-1:-1;;;;;672:16:4;;;:34;;;;;698:8;-1:-1:-1;;;;;692:14:4;:2;-1:-1:-1;;;;;692:14:4;;;672:34;668:362;;;748:18;730:15;:36;726:290;;;833:13;823:6;:23;;790:146;;;;-1:-1:-1;;;790:146:4;;;;;;;:::i;:::-;726:290;;;983:6;:14;;-1:-1:-1;;983:14:4;;;726:290;1439:26:::1;1454:2;1458:6;1439:14;:26::i;:::-;1429:36:::0;1281:191;-1:-1:-1;;;;;;1281:191:4:o;3953:149:1:-;-1:-1:-1;;;;;4068:18:1;;;4042:7;4068:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3953:149::o;10483:370::-;-1:-1:-1;;;;;10614:19:1;;10606:68;;;;-1:-1:-1;;;10606:68:1;;4588:2:5;10606:68:1;;;4570:21:5;4627:2;4607:18;;;4600:30;4666:34;4646:18;;;4639:62;-1:-1:-1;;;4717:18:5;;;4710:34;4761:19;;10606:68:1;4386:400:5;10606:68:1;-1:-1:-1;;;;;10692:21:1;;10684:68;;;;-1:-1:-1;;;10684:68:1;;4993:2:5;10684:68:1;;;4975:21:5;5032:2;5012:18;;;5005:30;5071:34;5051:18;;;5044:62;-1:-1:-1;;;5122:18:5;;;5115:32;5164:19;;10684:68:1;4791:398:5;10684:68:1;-1:-1:-1;;;;;10763:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10814:32;;1391:25:5;;;10814:32:1;;1364:18:5;10814:32:1;;;;;;;10483:370;;;:::o;5169:286::-;5296:4;719:10:0;5352:38:1;5368:4;719:10:0;5383:6:1;5352:15;:38::i;:::-;5400:27;5410:4;5416:2;5420:6;5400:9;:27::i;3706:189::-;3785:4;719:10:0;3839:28:1;719:10:0;3856:2:1;3860:6;3839:9;:28::i;11134:441::-;11264:24;11291:25;11301:5;11308:7;11291:9;:25::i;:::-;11264:52;;-1:-1:-1;;11330:16:1;:37;11326:243;;11411:6;11391:16;:26;;11383:68;;;;-1:-1:-1;;;11383:68:1;;5396:2:5;11383:68:1;;;5378:21:5;5435:2;5415:18;;;5408:30;5474:31;5454:18;;;5447:59;5523:18;;11383:68:1;5194:353:5;11383:68:1;11493:51;11502:5;11509:7;11537:6;11518:16;:25;11493:8;:51::i;:::-;11254:321;11134:441;;;:::o;7452:818::-;-1:-1:-1;;;;;7578:18:1;;7570:68;;;;-1:-1:-1;;;7570:68:1;;5754:2:5;7570:68:1;;;5736:21:5;5793:2;5773:18;;;5766:30;5832:34;5812:18;;;5805:62;-1:-1:-1;;;5883:18:5;;;5876:35;5928:19;;7570:68:1;5552:401:5;7570:68:1;-1:-1:-1;;;;;7656:16:1;;7648:64;;;;-1:-1:-1;;;7648:64:1;;6160:2:5;7648:64:1;;;6142:21:5;6199:2;6179:18;;;6172:30;6238:34;6218:18;;;6211:62;-1:-1:-1;;;6289:18:5;;;6282:33;6332:19;;7648:64:1;5958:399:5;7648:64:1;-1:-1:-1;;;;;7794:15:1;;7772:19;7794:15;;;;;;;;;;;7827:21;;;;7819:72;;;;-1:-1:-1;;;7819:72:1;;6564:2:5;7819:72:1;;;6546:21:5;6603:2;6583:18;;;6576:30;6642:34;6622:18;;;6615:62;-1:-1:-1;;;6693:18:5;;;6686:36;6739:19;;7819:72:1;6362:402:5;7819:72:1;-1:-1:-1;;;;;7925:15:1;;;:9;:15;;;;;;;;;;;7943:20;;;7925:38;;8140:13;;;;;;;;;;:23;;;;;;8189:26;;1391:25:5;;;8140:13:1;;8189:26;;1364:18:5;8189:26:1;;;;;;;8226:37;12159:121;14:597:5;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:5;574:15;-1:-1:-1;;570:29:5;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:5:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:5;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:5:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:5:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:404::-;3200:2;3182:21;;;3239:2;3219:18;;;3212:30;3278:34;3273:2;3258:18;;3251:62;-1:-1:-1;;;3344:2:5;3329:18;;3322:38;3392:3;3377:19;;2998:404::o;3407:225::-;3447:3;3478:1;3474:6;3471:1;3468:13;3465:136;;;3523:10;3518:3;3514:20;3511:1;3504:31;3558:4;3555:1;3548:15;3586:4;3583:1;3576:15;3465:136;-1:-1:-1;3617:9:5;;3407:225::o

Swarm Source

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