ETH Price: $2,642.25 (-1.27%)

Token

DrPepe (DRPEPE)
 

Overview

Max Total Supply

42,069,000,000,000 DRPEPE

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
therealvictorchaos.eth
Balance
67,361,141,674.200530017259277393 DRPEPE

Value
$0.00
0x248012d5411459bc80c67b97a8f46c436ab6b15c
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:
DrPepe

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-20
*/

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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


// https://t.me/drpepeeth
pragma solidity ^0.8.9;



contract DrPepe is ERC20, Ownable {
    mapping(address => bool) public blacklist;

    event BlacklistedAddress(address indexed account);
    event UnblacklistedAddress(address indexed account);

    constructor() ERC20("DrPepe", "DRPEPE") {
        _mint(msg.sender, 42069000000000 * 10 ** decimals());
    }

    function addToBlacklist(address account) external onlyOwner {
        require(!blacklist[account], "DrPepe: Bot address is already already blacklisted");
        blacklist[account] = true;
        emit BlacklistedAddress(account);
    }

    function removeFromBlacklist(address account) external onlyOwner {
        require(blacklist[account], "DrPepe: Bot address is not blacklisted");
        blacklist[account] = false;
        emit UnblacklistedAddress(account);
    }

    function _mint(address account, uint256 amount) internal override {
        require(!blacklist[account], "DrPepe: Blacklisted bot address cannot mint tokens");
        super._mint(account, amount);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(!blacklist[sender], "DrPepe: Blacklisted bot address cannot send tokens");
        require(!blacklist[recipient], "DrPepe: Blacklisted address bot cannot receive tokens");
        super._transfer(sender, recipient, amount);
    }
}

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":"account","type":"address"}],"name":"BlacklistedAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"UnblacklistedAddress","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020016544725065706560d01b8152506040518060400160405280600681526020016544525045504560d01b8152508160039080519060200190620000689291906200028c565b5080516200007e9060049060208401906200028c565b5050506200009b62000095620000cc60201b60201c565b620000d0565b620000c633620000ae6012600a62000447565b620000c090652642f3cd12006200045f565b62000122565b620004d9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526006602052604090205460ff1615620001ac5760405162461bcd60e51b815260206004820152603260248201527f4472506570653a20426c61636b6c697374656420626f7420616464726573732060448201527163616e6e6f74206d696e7420746f6b656e7360701b60648201526084015b60405180910390fd5b620001c38282620001c760201b620006681760201c565b5050565b6001600160a01b0382166200021f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001a3565b806002600082825462000233919062000481565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620001c3565b8280546200029a906200049c565b90600052602060002090601f016020900481019282620002be576000855562000309565b82601f10620002d957805160ff191683800117855562000309565b8280016001018555821562000309579182015b8281111562000309578251825591602001919060010190620002ec565b50620003179291506200031b565b5090565b5b808211156200031757600081556001016200031c565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003895781600019048211156200036d576200036d62000332565b808516156200037b57918102915b93841c93908002906200034d565b509250929050565b600082620003a25750600162000441565b81620003b15750600062000441565b8160018114620003ca5760028114620003d557620003f5565b600191505062000441565b60ff841115620003e957620003e962000332565b50506001821b62000441565b5060208310610133831016604e8410600b84101617156200041a575081810a62000441565b62000426838362000348565b80600019048211156200043d576200043d62000332565b0290505b92915050565b60006200045860ff84168362000391565b9392505050565b60008160001904831182151516156200047c576200047c62000332565b500290565b6000821982111562000497576200049762000332565b500190565b600181811c90821680620004b157607f821691505b60208210811415620004d357634e487b7160e01b600052602260045260246000fd5b50919050565b610df380620004e96000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610214578063a9059cbb14610227578063dd62ed3e1461023a578063f2fde38b1461024d578063f9f92be41461026057600080fd5b806370a08231146101c0578063715018a6146101e95780638da5cb5b146101f157806395d89b411461020c57600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018557806344337ea114610198578063537df3b6146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610283565b6040516101259190610c30565b60405180910390f35b61014161013c366004610ca1565b610315565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610ccb565b61032d565b60405160128152602001610125565b610141610193366004610ca1565b610351565b6101ab6101a6366004610d07565b610373565b005b6101ab6101bb366004610d07565b610450565b6101556101ce366004610d07565b6001600160a01b031660009081526020819052604090205490565b6101ab610518565b6005546040516001600160a01b039091168152602001610125565b61011861052c565b610141610222366004610ca1565b61053b565b610141610235366004610ca1565b6105b6565b610155610248366004610d29565b6105c4565b6101ab61025b366004610d07565b6105ef565b61014161026e366004610d07565b60066020526000908152604090205460ff1681565b60606003805461029290610d5c565b80601f01602080910402602001604051908101604052809291908181526020018280546102be90610d5c565b801561030b5780601f106102e05761010080835404028352916020019161030b565b820191906000526020600020905b8154815290600101906020018083116102ee57829003601f168201915b5050505050905090565b600033610323818585610727565b5060019392505050565b60003361033b85828561084b565b6103468585856108c5565b506001949350505050565b60003361032381858561036483836105c4565b61036e9190610d97565b610727565b61037b6109e0565b6001600160a01b03811660009081526006602052604090205460ff16156104045760405162461bcd60e51b815260206004820152603260248201527f4472506570653a20426f74206164647265737320697320616c726561647920616044820152711b1c9958591e48189b1858dadb1a5cdd195960721b60648201526084015b60405180910390fd5b6001600160a01b038116600081815260066020526040808220805460ff19166001179055517fd33f19e7fa8232c5bc197847df1059ed61c4ac5deadafb05922b602eb71bcbf59190a250565b6104586109e0565b6001600160a01b03811660009081526006602052604090205460ff166104cf5760405162461bcd60e51b815260206004820152602660248201527f4472506570653a20426f742061646472657373206973206e6f7420626c61636b6044820152651b1a5cdd195960d21b60648201526084016103fb565b6001600160a01b038116600081815260066020526040808220805460ff19169055517f771957299c85ad61656a633095f550e252ac80482f60d672c339d766740d5b8d9190a250565b6105206109e0565b61052a6000610a3a565b565b60606004805461029290610d5c565b6000338161054982866105c4565b9050838110156105a95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fb565b6103468286868403610727565b6000336103238185856108c5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105f76109e0565b6001600160a01b03811661065c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fb565b61066581610a3a565b50565b6001600160a01b0382166106be5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103fb565b80600260008282546106d09190610d97565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166107895760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fb565b6001600160a01b0382166107ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061085784846105c4565b905060001981146108bf57818110156108b25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103fb565b6108bf8484848403610727565b50505050565b6001600160a01b03831660009081526006602052604090205460ff16156109495760405162461bcd60e51b815260206004820152603260248201527f4472506570653a20426c61636b6c697374656420626f7420616464726573732060448201527163616e6e6f742073656e6420746f6b656e7360701b60648201526084016103fb565b6001600160a01b03821660009081526006602052604090205460ff16156109d05760405162461bcd60e51b815260206004820152603560248201527f4472506570653a20426c61636b6c6973746564206164647265737320626f742060448201527463616e6e6f74207265636569766520746f6b656e7360581b60648201526084016103fb565b6109db838383610a8c565b505050565b6005546001600160a01b0316331461052a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103fb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610af05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fb565b6001600160a01b038216610b525760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fb565b6001600160a01b03831660009081526020819052604090205481811015610bca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fb565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108bf565b600060208083528351808285015260005b81811015610c5d57858101830151858201604001528201610c41565b81811115610c6f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c9c57600080fd5b919050565b60008060408385031215610cb457600080fd5b610cbd83610c85565b946020939093013593505050565b600080600060608486031215610ce057600080fd5b610ce984610c85565b9250610cf760208501610c85565b9150604084013590509250925092565b600060208284031215610d1957600080fd5b610d2282610c85565b9392505050565b60008060408385031215610d3c57600080fd5b610d4583610c85565b9150610d5360208401610c85565b90509250929050565b600181811c90821680610d7057607f821691505b60208210811415610d9157634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610db857634e487b7160e01b600052601160045260246000fd5b50019056fea26469706673582212200204ff44fc64f50bc717ef1c4cfdfb727364817fd87f87526a8b5aa9c781956464736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610214578063a9059cbb14610227578063dd62ed3e1461023a578063f2fde38b1461024d578063f9f92be41461026057600080fd5b806370a08231146101c0578063715018a6146101e95780638da5cb5b146101f157806395d89b411461020c57600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018557806344337ea114610198578063537df3b6146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610283565b6040516101259190610c30565b60405180910390f35b61014161013c366004610ca1565b610315565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610ccb565b61032d565b60405160128152602001610125565b610141610193366004610ca1565b610351565b6101ab6101a6366004610d07565b610373565b005b6101ab6101bb366004610d07565b610450565b6101556101ce366004610d07565b6001600160a01b031660009081526020819052604090205490565b6101ab610518565b6005546040516001600160a01b039091168152602001610125565b61011861052c565b610141610222366004610ca1565b61053b565b610141610235366004610ca1565b6105b6565b610155610248366004610d29565b6105c4565b6101ab61025b366004610d07565b6105ef565b61014161026e366004610d07565b60066020526000908152604090205460ff1681565b60606003805461029290610d5c565b80601f01602080910402602001604051908101604052809291908181526020018280546102be90610d5c565b801561030b5780601f106102e05761010080835404028352916020019161030b565b820191906000526020600020905b8154815290600101906020018083116102ee57829003601f168201915b5050505050905090565b600033610323818585610727565b5060019392505050565b60003361033b85828561084b565b6103468585856108c5565b506001949350505050565b60003361032381858561036483836105c4565b61036e9190610d97565b610727565b61037b6109e0565b6001600160a01b03811660009081526006602052604090205460ff16156104045760405162461bcd60e51b815260206004820152603260248201527f4472506570653a20426f74206164647265737320697320616c726561647920616044820152711b1c9958591e48189b1858dadb1a5cdd195960721b60648201526084015b60405180910390fd5b6001600160a01b038116600081815260066020526040808220805460ff19166001179055517fd33f19e7fa8232c5bc197847df1059ed61c4ac5deadafb05922b602eb71bcbf59190a250565b6104586109e0565b6001600160a01b03811660009081526006602052604090205460ff166104cf5760405162461bcd60e51b815260206004820152602660248201527f4472506570653a20426f742061646472657373206973206e6f7420626c61636b6044820152651b1a5cdd195960d21b60648201526084016103fb565b6001600160a01b038116600081815260066020526040808220805460ff19169055517f771957299c85ad61656a633095f550e252ac80482f60d672c339d766740d5b8d9190a250565b6105206109e0565b61052a6000610a3a565b565b60606004805461029290610d5c565b6000338161054982866105c4565b9050838110156105a95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fb565b6103468286868403610727565b6000336103238185856108c5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105f76109e0565b6001600160a01b03811661065c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fb565b61066581610a3a565b50565b6001600160a01b0382166106be5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103fb565b80600260008282546106d09190610d97565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166107895760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fb565b6001600160a01b0382166107ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061085784846105c4565b905060001981146108bf57818110156108b25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103fb565b6108bf8484848403610727565b50505050565b6001600160a01b03831660009081526006602052604090205460ff16156109495760405162461bcd60e51b815260206004820152603260248201527f4472506570653a20426c61636b6c697374656420626f7420616464726573732060448201527163616e6e6f742073656e6420746f6b656e7360701b60648201526084016103fb565b6001600160a01b03821660009081526006602052604090205460ff16156109d05760405162461bcd60e51b815260206004820152603560248201527f4472506570653a20426c61636b6c6973746564206164647265737320626f742060448201527463616e6e6f74207265636569766520746f6b656e7360581b60648201526084016103fb565b6109db838383610a8c565b505050565b6005546001600160a01b0316331461052a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103fb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610af05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fb565b6001600160a01b038216610b525760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fb565b6001600160a01b03831660009081526020819052604090205481811015610bca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fb565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108bf565b600060208083528351808285015260005b81811015610c5d57858101830151858201604001528201610c41565b81811115610c6f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c9c57600080fd5b919050565b60008060408385031215610cb457600080fd5b610cbd83610c85565b946020939093013593505050565b600080600060608486031215610ce057600080fd5b610ce984610c85565b9250610cf760208501610c85565b9150604084013590509250925092565b600060208284031215610d1957600080fd5b610d2282610c85565b9392505050565b60008060408385031215610d3c57600080fd5b610d4583610c85565b9150610d5360208401610c85565b90509250929050565b600181811c90821680610d7057607f821691505b60208210811415610d9157634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610db857634e487b7160e01b600052601160045260246000fd5b50019056fea26469706673582212200204ff44fc64f50bc717ef1c4cfdfb727364817fd87f87526a8b5aa9c781956464736f6c63430008090033

Deployed Bytecode Sourcemap

20632:1373:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11702:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11702:201:0;1053:187:1;10471:108:0;10559:12;;10471:108;;;1391:25:1;;;1379:2;1364:18;10471:108:0;1245:177:1;12483:295:0;;;;;;:::i;:::-;;:::i;10313:93::-;;;10396:2;1902:36:1;;1890:2;1875:18;10313:93:0;1760:184:1;13187:238:0;;;;;;:::i;:::-;;:::i;20958:240::-;;;;;;:::i;:::-;;:::i;:::-;;21206:235;;;;;;:::i;:::-;;:::i;10642:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10743:18:0;10716:7;10743:18;;;;;;;;;;;;10642:127;2776:103;;;:::i;2128:87::-;2201:6;;2128:87;;-1:-1:-1;;;;;2201:6:0;;;2286:51:1;;2274:2;2259:18;2128:87:0;2140:203:1;9570:104:0;;;:::i;13928:436::-;;;;;;:::i;:::-;;:::i;10975:193::-;;;;;;:::i;:::-;;:::i;11231:151::-;;;;;;:::i;:::-;;:::i;3034:201::-;;;;;;:::i;:::-;;:::i;20673:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9351:100;9405:13;9438:5;9431:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;:::o;11702:201::-;11785:4;759:10;11841:32;759:10;11857:7;11866:6;11841:8;:32::i;:::-;-1:-1:-1;11891:4:0;;11702:201;-1:-1:-1;;;11702:201:0:o;12483:295::-;12614:4;759:10;12672:38;12688:4;759:10;12703:6;12672:15;:38::i;:::-;12721:27;12731:4;12737:2;12741:6;12721:9;:27::i;:::-;-1:-1:-1;12766:4:0;;12483:295;-1:-1:-1;;;;12483:295:0:o;13187:238::-;13275:4;759:10;13331:64;759:10;13347:7;13384:10;13356:25;759:10;13347:7;13356:9;:25::i;:::-;:38;;;;:::i;:::-;13331:8;:64::i;20958:240::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;21038:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;21037:19;21029:82;;;::::0;-1:-1:-1;;;21029:82:0;;3430:2:1;21029:82:0::1;::::0;::::1;3412:21:1::0;3469:2;3449:18;;;3442:30;3508:34;3488:18;;;3481:62;-1:-1:-1;;;3559:18:1;;;3552:48;3617:19;;21029:82:0::1;;;;;;;;;-1:-1:-1::0;;;;;21122:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;:25;;-1:-1:-1;;21122:25:0::1;21143:4;21122:25;::::0;;21163:27;::::1;::::0;21122:18;21163:27:::1;20958:240:::0;:::o;21206:235::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;21290:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;21282:69;;;::::0;-1:-1:-1;;;21282:69:0;;3849:2:1;21282:69:0::1;::::0;::::1;3831:21:1::0;3888:2;3868:18;;;3861:30;3927:34;3907:18;;;3900:62;-1:-1:-1;;;3978:18:1;;;3971:36;4024:19;;21282:69:0::1;3647:402:1::0;21282:69:0::1;-1:-1:-1::0;;;;;21362:18:0;::::1;21383:5;21362:18:::0;;;:9:::1;:18;::::0;;;;;:26;;-1:-1:-1;;21362:26:0::1;::::0;;21404:29;::::1;::::0;21383:5;21404:29:::1;21206:235:::0;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;9570:104::-;9626:13;9659:7;9652:14;;;;;:::i;13928:436::-;14021:4;759:10;14021:4;14104:25;759:10;14121:7;14104:9;:25::i;:::-;14077:52;;14168:15;14148:16;:35;;14140:85;;;;-1:-1:-1;;;14140:85:0;;4256:2:1;14140:85:0;;;4238:21:1;4295:2;4275:18;;;4268:30;4334:34;4314:18;;;4307:62;-1:-1:-1;;;4385:18:1;;;4378:35;4430:19;;14140:85:0;4054:401:1;14140:85:0;14261:60;14270:5;14277:7;14305:15;14286:16;:34;14261:8;:60::i;10975:193::-;11054:4;759:10;11110:28;759:10;11127:2;11131:6;11110:9;:28::i;11231:151::-;-1:-1:-1;;;;;11347:18:0;;;11320:7;11347:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11231:151::o;3034:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3123:22:0;::::1;3115:73;;;::::0;-1:-1:-1;;;3115:73:0;;4662:2:1;3115:73:0::1;::::0;::::1;4644:21:1::0;4701:2;4681:18;;;4674:30;4740:34;4720:18;;;4713:62;-1:-1:-1;;;4791:18:1;;;4784:36;4837:19;;3115:73:0::1;4460:402:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;15961:548::-;-1:-1:-1;;;;;16045:21:0;;16037:65;;;;-1:-1:-1;;;16037:65:0;;5069:2:1;16037:65:0;;;5051:21:1;5108:2;5088:18;;;5081:30;5147:33;5127:18;;;5120:61;5198:18;;16037:65:0;4867:355:1;16037:65:0;16193:6;16177:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16348:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;16403:37;1391:25:1;;;16403:37:0;;1364:18:1;16403:37:0;;;;;;;15961:548;;:::o;17955:380::-;-1:-1:-1;;;;;18091:19:0;;18083:68;;;;-1:-1:-1;;;18083:68:0;;5429:2:1;18083:68:0;;;5411:21:1;5468:2;5448:18;;;5441:30;5507:34;5487:18;;;5480:62;-1:-1:-1;;;5558:18:1;;;5551:34;5602:19;;18083:68:0;5227:400:1;18083:68:0;-1:-1:-1;;;;;18170:21:0;;18162:68;;;;-1:-1:-1;;;18162:68:0;;5834:2:1;18162:68:0;;;5816:21:1;5873:2;5853:18;;;5846:30;5912:34;5892:18;;;5885:62;-1:-1:-1;;;5963:18:1;;;5956:32;6005:19;;18162:68:0;5632:398:1;18162:68:0;-1:-1:-1;;;;;18243:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18295:32;;1391:25:1;;;18295:32:0;;1364:18:1;18295:32:0;;;;;;;17955:380;;;:::o;18626:453::-;18761:24;18788:25;18798:5;18805:7;18788:9;:25::i;:::-;18761:52;;-1:-1:-1;;18828:16:0;:37;18824:248;;18910:6;18890:16;:26;;18882:68;;;;-1:-1:-1;;;18882:68:0;;6237:2:1;18882:68:0;;;6219:21:1;6276:2;6256:18;;;6249:30;6315:31;6295:18;;;6288:59;6364:18;;18882:68:0;6035:353:1;18882:68:0;18994:51;19003:5;19010:7;19038:6;19019:16;:25;18994:8;:51::i;:::-;18750:329;18626:453;;;:::o;21663:339::-;-1:-1:-1;;;;;21771:17:0;;;;;;:9;:17;;;;;;;;21770:18;21762:81;;;;-1:-1:-1;;;21762:81:0;;6595:2:1;21762:81:0;;;6577:21:1;6634:2;6614:18;;;6607:30;6673:34;6653:18;;;6646:62;-1:-1:-1;;;6724:18:1;;;6717:48;6782:19;;21762:81:0;6393:414:1;21762:81:0;-1:-1:-1;;;;;21863:20:0;;;;;;:9;:20;;;;;;;;21862:21;21854:87;;;;-1:-1:-1;;;21854:87:0;;7014:2:1;21854:87:0;;;6996:21:1;7053:2;7033:18;;;7026:30;7092:34;7072:18;;;7065:62;-1:-1:-1;;;7143:18:1;;;7136:51;7204:19;;21854:87:0;6812:417:1;21854:87:0;21952:42;21968:6;21976:9;21987:6;21952:15;:42::i;:::-;21663:339;;;:::o;2293:132::-;2201:6;;-1:-1:-1;;;;;2201:6:0;759:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;7436:2:1;2349:68:0;;;7418:21:1;;;7455:18;;;7448:30;7514:34;7494:18;;;7487:62;7566:18;;2349:68:0;7234:356:1;3395:191:0;3488:6;;;-1:-1:-1;;;;;3505:17:0;;;-1:-1:-1;;;;;;3505:17:0;;;;;;;3538:40;;3488:6;;;3505:17;3488:6;;3538:40;;3469:16;;3538:40;3458:128;3395:191;:::o;14834:840::-;-1:-1:-1;;;;;14965:18:0;;14957:68;;;;-1:-1:-1;;;14957:68:0;;7797:2:1;14957:68:0;;;7779:21:1;7836:2;7816:18;;;7809:30;7875:34;7855:18;;;7848:62;-1:-1:-1;;;7926:18:1;;;7919:35;7971:19;;14957:68:0;7595:401:1;14957:68:0;-1:-1:-1;;;;;15044:16:0;;15036:64;;;;-1:-1:-1;;;15036:64:0;;8203:2:1;15036:64:0;;;8185:21:1;8242:2;8222:18;;;8215:30;8281:34;8261:18;;;8254:62;-1:-1:-1;;;8332:18:1;;;8325:33;8375:19;;15036:64:0;8001:399:1;15036:64:0;-1:-1:-1;;;;;15186:15:0;;15164:19;15186:15;;;;;;;;;;;15220:21;;;;15212:72;;;;-1:-1:-1;;;15212:72:0;;8607:2:1;15212:72:0;;;8589:21:1;8646:2;8626:18;;;8619:30;8685:34;8665:18;;;8658:62;-1:-1:-1;;;8736:18:1;;;8729:36;8782:19;;15212:72:0;8405:402:1;15212:72:0;-1:-1:-1;;;;;15320:15:0;;;:9;:15;;;;;;;;;;;15338:20;;;15320:38;;15538:13;;;;;;;;;;:23;;;;;;15590:26;;1391:25:1;;;15538:13:0;;15590:26;;1364:18:1;15590:26:0;;;;;;;15629:37;21663:339;14:597:1;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:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;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:1: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:1: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:225::-;3038:3;3069:1;3065:6;3062:1;3059:13;3056:136;;;3114:10;3109:3;3105:20;3102:1;3095:31;3149:4;3146:1;3139:15;3177:4;3174:1;3167:15;3056:136;-1:-1:-1;3208:9:1;;2998:225::o

Swarm Source

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