ETH Price: $3,083.85 (-0.82%)
Gas: 4 Gwei

Token

Kekya (Kekya)
 

Overview

Max Total Supply

10,000,000,000 Kekya

Holders

884

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
632,974.856306544039053138 Kekya

Value
$0.00
0xe1d86a7088d05398a2b9ba566be0b3c5ffa5d9af
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:
Kekya

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-18
*/

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/KekyaToken.sol


pragma solidity ^0.8.0;




contract Kekya is ERC20, ERC20Burnable, Ownable {
    uint256 private constant INITIAL_SUPPLY = 10000000000 * 10**18;

    constructor() ERC20("Kekya", "Kekya") {
        _mint(msg.sender, INITIAL_SUPPLY);
    }

    function distributeTokens(address distributionWallet) external onlyOwner {
        uint256 supply = balanceOf(msg.sender);
        require(supply == INITIAL_SUPPLY, "Tokens already distributed");

        _transfer(msg.sender, distributionWallet, supply);
    }
}

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":"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"},{"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"distributionWallet","type":"address"}],"name":"distributeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"}]

60806040523480156200001157600080fd5b506040805180820182526005808252644b656b796160d81b6020808401828152855180870190965292855284015281519192916200005291600391620001c0565b50805162000068906004906020840190620001c0565b505050620000856200007f620000a360201b60201c565b620000a7565b6200009d336b204fce5e3e25026110000000620000f9565b62000308565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200012b5760405162461bcd60e51b8152600401620001229062000266565b60405180910390fd5b6200013960008383620001bb565b80600260008282546200014d9190620002a6565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001a19085906200029d565b60405180910390a3620001b760008383620001bb565b5050565b505050565b828054620001ce90620002cb565b90600052602060002090601f016020900481019282620001f257600085556200023d565b82601f106200020d57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023d57825182559160200191906001019062000220565b506200024b9291506200024f565b5090565b5b808211156200024b576000815560010162000250565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002c657634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620002e057607f821691505b602082108114156200030257634e487b7160e01b600052602260045260246000fd5b50919050565b610d8680620003186000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146101fe578063a9059cbb14610211578063b1d17c9814610224578063dd62ed3e14610237578063f2fde38b1461024a5761010b565b8063715018a6146101c657806379cc6790146101ce5780638da5cb5b146101e157806395d89b41146101f65761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861025d565b6040516101259190610982565b60405180910390f35b61014161013c366004610922565b6102ef565b6040516101259190610977565b610156610311565b6040516101259190610cda565b6101416101713660046108e7565b610317565b61017e610345565b6040516101259190610ce3565b610141610199366004610922565b61034a565b6101b16101ac36600461094b565b610376565b005b6101566101c1366004610894565b61038a565b6101b16103a9565b6101b16101dc366004610922565b6103bd565b6101e96103dd565b6040516101259190610963565b6101186103ec565b61014161020c366004610922565b6103fb565b61014161021f366004610922565b61044c565b6101b1610232366004610894565b610464565b6101566102453660046108b5565b6104af565b6101b1610258366004610894565b6104da565b60606003805461026c90610d15565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610d15565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b6000806102fa610511565b9050610307818585610515565b5060019392505050565b60025490565b600080610322610511565b905061032f8582856105c9565b61033a858585610613565b506001949350505050565b601290565b600080610355610511565b905061030781858561036785896104af565b6103719190610cf1565b610515565b610387610381610511565b82610714565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b6103b16107ec565b6103bb600061082b565b565b6103cf826103c9610511565b836105c9565b6103d98282610714565b5050565b6005546001600160a01b031690565b60606004805461026c90610d15565b600080610406610511565b9050600061041482866104af565b90508381101561043f5760405162461bcd60e51b815260040161043690610c95565b60405180910390fd5b61033a8286868403610515565b600080610457610511565b9050610307818585610613565b61046c6107ec565b60006104773361038a565b90506b204fce5e3e2502611000000081146104a45760405162461bcd60e51b815260040161043690610b19565b6103d9338383610613565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104e26107ec565b6001600160a01b0381166105085760405162461bcd60e51b815260040161043690610a5a565b6103878161082b565b3390565b6001600160a01b03831661053b5760405162461bcd60e51b815260040161043690610c51565b6001600160a01b0382166105615760405162461bcd60e51b815260040161043690610aa0565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105bc908590610cda565b60405180910390a3505050565b60006105d584846104af565b9050600019811461060d57818110156106005760405162461bcd60e51b815260040161043690610ae2565b61060d8484848403610515565b50505050565b6001600160a01b0383166106395760405162461bcd60e51b815260040161043690610c0c565b6001600160a01b03821661065f5760405162461bcd60e51b8152600401610436906109d5565b61066a8383836107e7565b6001600160a01b038316600090815260208190526040902054818110156106a35760405162461bcd60e51b815260040161043690610b50565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610701908690610cda565b60405180910390a361060d8484846107e7565b6001600160a01b03821661073a5760405162461bcd60e51b815260040161043690610bcb565b610746826000836107e7565b6001600160a01b0382166000908152602081905260409020548181101561077f5760405162461bcd60e51b815260040161043690610a18565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107d7908690610cda565b60405180910390a36107e7836000845b505050565b6107f4610511565b6001600160a01b03166108056103dd565b6001600160a01b0316146103bb5760405162461bcd60e51b815260040161043690610b96565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b03811681146103a457600080fd5b6000602082840312156108a5578081fd5b6108ae8261087d565b9392505050565b600080604083850312156108c7578081fd5b6108d08361087d565b91506108de6020840161087d565b90509250929050565b6000806000606084860312156108fb578081fd5b6109048461087d565b92506109126020850161087d565b9150604084013590509250925092565b60008060408385031215610934578182fd5b61093d8361087d565b946020939093013593505050565b60006020828403121561095c578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109ae57858101830151858201604001528201610992565b818111156109bf5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601a908201527f546f6b656e7320616c7265616479206469737472696275746564000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d1057634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610d2957607f821691505b60208210811415610d4a57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212208123f80c218d4dc79949b24a045d347a70cafce4ead6744b450ccc9c76023d9664736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146101fe578063a9059cbb14610211578063b1d17c9814610224578063dd62ed3e14610237578063f2fde38b1461024a5761010b565b8063715018a6146101c657806379cc6790146101ce5780638da5cb5b146101e157806395d89b41146101f65761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861025d565b6040516101259190610982565b60405180910390f35b61014161013c366004610922565b6102ef565b6040516101259190610977565b610156610311565b6040516101259190610cda565b6101416101713660046108e7565b610317565b61017e610345565b6040516101259190610ce3565b610141610199366004610922565b61034a565b6101b16101ac36600461094b565b610376565b005b6101566101c1366004610894565b61038a565b6101b16103a9565b6101b16101dc366004610922565b6103bd565b6101e96103dd565b6040516101259190610963565b6101186103ec565b61014161020c366004610922565b6103fb565b61014161021f366004610922565b61044c565b6101b1610232366004610894565b610464565b6101566102453660046108b5565b6104af565b6101b1610258366004610894565b6104da565b60606003805461026c90610d15565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610d15565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b6000806102fa610511565b9050610307818585610515565b5060019392505050565b60025490565b600080610322610511565b905061032f8582856105c9565b61033a858585610613565b506001949350505050565b601290565b600080610355610511565b905061030781858561036785896104af565b6103719190610cf1565b610515565b610387610381610511565b82610714565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b6103b16107ec565b6103bb600061082b565b565b6103cf826103c9610511565b836105c9565b6103d98282610714565b5050565b6005546001600160a01b031690565b60606004805461026c90610d15565b600080610406610511565b9050600061041482866104af565b90508381101561043f5760405162461bcd60e51b815260040161043690610c95565b60405180910390fd5b61033a8286868403610515565b600080610457610511565b9050610307818585610613565b61046c6107ec565b60006104773361038a565b90506b204fce5e3e2502611000000081146104a45760405162461bcd60e51b815260040161043690610b19565b6103d9338383610613565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104e26107ec565b6001600160a01b0381166105085760405162461bcd60e51b815260040161043690610a5a565b6103878161082b565b3390565b6001600160a01b03831661053b5760405162461bcd60e51b815260040161043690610c51565b6001600160a01b0382166105615760405162461bcd60e51b815260040161043690610aa0565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105bc908590610cda565b60405180910390a3505050565b60006105d584846104af565b9050600019811461060d57818110156106005760405162461bcd60e51b815260040161043690610ae2565b61060d8484848403610515565b50505050565b6001600160a01b0383166106395760405162461bcd60e51b815260040161043690610c0c565b6001600160a01b03821661065f5760405162461bcd60e51b8152600401610436906109d5565b61066a8383836107e7565b6001600160a01b038316600090815260208190526040902054818110156106a35760405162461bcd60e51b815260040161043690610b50565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610701908690610cda565b60405180910390a361060d8484846107e7565b6001600160a01b03821661073a5760405162461bcd60e51b815260040161043690610bcb565b610746826000836107e7565b6001600160a01b0382166000908152602081905260409020548181101561077f5760405162461bcd60e51b815260040161043690610a18565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107d7908690610cda565b60405180910390a36107e7836000845b505050565b6107f4610511565b6001600160a01b03166108056103dd565b6001600160a01b0316146103bb5760405162461bcd60e51b815260040161043690610b96565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b03811681146103a457600080fd5b6000602082840312156108a5578081fd5b6108ae8261087d565b9392505050565b600080604083850312156108c7578081fd5b6108d08361087d565b91506108de6020840161087d565b90509250929050565b6000806000606084860312156108fb578081fd5b6109048461087d565b92506109126020850161087d565b9150604084013590509250925092565b60008060408385031215610934578182fd5b61093d8361087d565b946020939093013593505050565b60006020828403121561095c578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109ae57858101830151858201604001528201610992565b818111156109bf5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601a908201527f546f6b656e7320616c7265616479206469737472696275746564000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d1057634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610d2957607f821691505b60208210811415610d4a57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212208123f80c218d4dc79949b24a045d347a70cafce4ead6744b450ccc9c76023d9664736f6c63430008000033

Deployed Bytecode Sourcemap

21846:493:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9422:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11773:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10542:108::-;;;:::i;:::-;;;;;;;:::i;12554:295::-;;;;;;:::i;:::-;;:::i;10384:93::-;;;:::i;:::-;;;;;;;:::i;13258:238::-;;;;;;:::i;:::-;;:::i;21193:91::-;;;;;;:::i;:::-;;:::i;:::-;;10713:127;;;;;;:::i;:::-;;:::i;2847:103::-;;;:::i;21603:164::-;;;;;;:::i;:::-;;:::i;2199:87::-;;;:::i;:::-;;;;;;;:::i;9641:104::-;;;:::i;13999:436::-;;;;;;:::i;:::-;;:::i;11046:193::-;;;;;;:::i;:::-;;:::i;22070:266::-;;;;;;:::i;:::-;;:::i;11302:151::-;;;;;;:::i;:::-;;:::i;3105:201::-;;;;;;:::i;:::-;;:::i;9422:100::-;9476:13;9509:5;9502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9422:100;:::o;11773:201::-;11856:4;11873:13;11889:12;:10;:12::i;:::-;11873:28;;11912:32;11921:5;11928:7;11937:6;11912:8;:32::i;:::-;-1:-1:-1;11962:4:0;;11773:201;-1:-1:-1;;;11773:201:0:o;10542:108::-;10630:12;;10542:108;:::o;12554:295::-;12685:4;12702:15;12720:12;:10;:12::i;:::-;12702:30;;12743:38;12759:4;12765:7;12774:6;12743:15;:38::i;:::-;12792:27;12802:4;12808:2;12812:6;12792:9;:27::i;:::-;-1:-1:-1;12837:4:0;;12554:295;-1:-1:-1;;;;12554:295:0:o;10384:93::-;10467:2;10384:93;:::o;13258:238::-;13346:4;13363:13;13379:12;:10;:12::i;:::-;13363:28;;13402:64;13411:5;13418:7;13455:10;13427:25;13437:5;13444:7;13427:9;:25::i;:::-;:38;;;;:::i;:::-;13402:8;:64::i;21193:91::-;21249:27;21255:12;:10;:12::i;:::-;21269:6;21249:5;:27::i;:::-;21193:91;:::o;10713:127::-;-1:-1:-1;;;;;10814:18:0;;10787:7;10814:18;;;;;;;;;;;10713:127;;;;:::o;2847:103::-;2085:13;:11;:13::i;:::-;2912:30:::1;2939:1;2912:18;:30::i;:::-;2847:103::o:0;21603:164::-;21680:46;21696:7;21705:12;:10;:12::i;:::-;21719:6;21680:15;:46::i;:::-;21737:22;21743:7;21752:6;21737:5;:22::i;:::-;21603:164;;:::o;2199:87::-;2272:6;;-1:-1:-1;;;;;2272:6:0;2199:87;:::o;9641:104::-;9697:13;9730:7;9723:14;;;;;:::i;13999:436::-;14092:4;14109:13;14125:12;:10;:12::i;:::-;14109:28;;14148:24;14175:25;14185:5;14192:7;14175:9;:25::i;:::-;14148:52;;14239:15;14219:16;:35;;14211:85;;;;-1:-1:-1;;;14211:85:0;;;;;;;:::i;:::-;;;;;;;;;14332:60;14341:5;14348:7;14376:15;14357:16;:34;14332:8;:60::i;11046:193::-;11125:4;11142:13;11158:12;:10;:12::i;:::-;11142:28;;11181;11191:5;11198:2;11202:6;11181:9;:28::i;22070:266::-;2085:13;:11;:13::i;:::-;22154:14:::1;22171:21;22181:10;22171:9;:21::i;:::-;22154:38;;21943:20;22211:6;:24;22203:63;;;;-1:-1:-1::0;;;22203:63:0::1;;;;;;;:::i;:::-;22279:49;22289:10;22301:18;22321:6;22279:9;:49::i;11302:151::-:0;-1:-1:-1;;;;;11418:18:0;;;11391:7;11418:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11302:151::o;3105:201::-;2085:13;:11;:13::i;:::-;-1:-1:-1;;;;;3194:22:0;::::1;3186:73;;;;-1:-1:-1::0;;;3186:73:0::1;;;;;;;:::i;:::-;3270:28;3289:8;3270:18;:28::i;750:98::-:0;830:10;750:98;:::o;18026:380::-;-1:-1:-1;;;;;18162:19:0;;18154:68;;;;-1:-1:-1;;;18154:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18241:21:0;;18233:68;;;;-1:-1:-1;;;18233:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18314:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;18366:32;;;;;18344:6;;18366:32;:::i;:::-;;;;;;;;18026:380;;;:::o;18697:453::-;18832:24;18859:25;18869:5;18876:7;18859:9;:25::i;:::-;18832:52;;-1:-1:-1;;18899:16:0;:37;18895:248;;18981:6;18961:16;:26;;18953:68;;;;-1:-1:-1;;;18953:68:0;;;;;;;:::i;:::-;19065:51;19074:5;19081:7;19109:6;19090:16;:25;19065:8;:51::i;:::-;18697:453;;;;:::o;14905:840::-;-1:-1:-1;;;;;15036:18:0;;15028:68;;;;-1:-1:-1;;;15028:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15115:16:0;;15107:64;;;;-1:-1:-1;;;15107:64:0;;;;;;;:::i;:::-;15184:38;15205:4;15211:2;15215:6;15184:20;:38::i;:::-;-1:-1:-1;;;;;15257:15:0;;15235:19;15257:15;;;;;;;;;;;15291:21;;;;15283:72;;;;-1:-1:-1;;;15283:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15391:15:0;;;:9;:15;;;;;;;;;;;15409:20;;;15391:38;;15609:13;;;;;;;;;;:23;;;;;;15661:26;;;;;;15423:6;;15661:26;:::i;:::-;;;;;;;;15700:37;15720:4;15726:2;15730:6;15700:19;:37::i;16913:675::-;-1:-1:-1;;;;;16997:21:0;;16989:67;;;;-1:-1:-1;;;16989:67:0;;;;;;;:::i;:::-;17069:49;17090:7;17107:1;17111:6;17069:20;:49::i;:::-;-1:-1:-1;;;;;17156:18:0;;17131:22;17156:18;;;;;;;;;;;17193:24;;;;17185:71;;;;-1:-1:-1;;;17185:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17292:18:0;;:9;:18;;;;;;;;;;;17313:23;;;17292:44;;17431:12;:22;;;;;;;17482:37;17292:9;;:18;17482:37;;;;17330:6;;17482:37;:::i;:::-;;;;;;;;17532:48;17552:7;17569:1;17573:6;17532:48;16913:675;;;:::o;2364:132::-;2439:12;:10;:12::i;:::-;-1:-1:-1;;;;;2428:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2428:23:0;;2420:68;;;;-1:-1:-1;;;2420:68:0;;;;;;;:::i;3466:191::-;3559:6;;;-1:-1:-1;;;;;3576:17:0;;;-1:-1:-1;;;;;;3576:17:0;;;;;;;3609:40;;3559:6;;;3576:17;3559:6;;3609:40;;3540:16;;3609:40;3466:191;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:398::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:1;3232:18;;3225:32;3289:3;3274:19;;3075:224::o;3304:402::-;3506:2;3488:21;;;3545:2;3525:18;;;3518:30;3584:34;3579:2;3564:18;;3557:62;-1:-1:-1;;;3650:2:1;3635:18;;3628:36;3696:3;3681:19;;3478:228::o;3711:398::-;3913:2;3895:21;;;3952:2;3932:18;;;3925:30;3991:34;3986:2;3971:18;;3964:62;-1:-1:-1;;;4057:2:1;4042:18;;4035:32;4099:3;4084:19;;3885:224::o;4114:353::-;4316:2;4298:21;;;4355:2;4335:18;;;4328:30;4394:31;4389:2;4374:18;;4367:59;4458:2;4443:18;;4288:179::o;4472:350::-;4674:2;4656:21;;;4713:2;4693:18;;;4686:30;4752:28;4747:2;4732:18;;4725:56;4813:2;4798:18;;4646:176::o;4827:402::-;5029:2;5011:21;;;5068:2;5048:18;;;5041:30;5107:34;5102:2;5087:18;;5080:62;-1:-1:-1;;;5173:2:1;5158:18;;5151:36;5219:3;5204:19;;5001:228::o;5234:356::-;5436:2;5418:21;;;5455:18;;;5448:30;5514:34;5509:2;5494:18;;5487:62;5581:2;5566:18;;5408:182::o;5595:397::-;5797:2;5779:21;;;5836:2;5816:18;;;5809:30;5875:34;5870:2;5855:18;;5848:62;-1:-1:-1;;;5941:2:1;5926:18;;5919:31;5982:3;5967:19;;5769:223::o;5997:401::-;6199:2;6181:21;;;6238:2;6218:18;;;6211:30;6277:34;6272:2;6257:18;;6250:62;-1:-1:-1;;;6343:2:1;6328:18;;6321:35;6388:3;6373:19;;6171:227::o;6403:400::-;6605:2;6587:21;;;6644:2;6624:18;;;6617:30;6683:34;6678:2;6663:18;;6656:62;-1:-1:-1;;;6749:2:1;6734:18;;6727:34;6793:3;6778:19;;6577:226::o;6808:401::-;7010:2;6992:21;;;7049:2;7029:18;;;7022:30;7088:34;7083:2;7068:18;;7061:62;-1:-1:-1;;;7154:2:1;7139:18;;7132:35;7199:3;7184:19;;6982:227::o;7214:177::-;7360:25;;;7348:2;7333:18;;7315:76::o;7396:184::-;7568:4;7556:17;;;;7538:36;;7526:2;7511:18;;7493:87::o;7585:229::-;;7656:1;7652:6;7649:1;7646:13;7643:2;;;-1:-1:-1;;;7682:33:1;;7738:4;7735:1;7728:15;7768:4;7689:3;7756:17;7643:2;-1:-1:-1;7799:9:1;;7633:181::o;7819:380::-;7904:1;7894:12;;7951:1;7941:12;;;7962:2;;8016:4;8008:6;8004:17;7994:27;;7962:2;8069;8061:6;8058:14;8038:18;8035:38;8032:2;;;8115:10;8110:3;8106:20;8103:1;8096:31;8150:4;8147:1;8140:15;8178:4;8175:1;8168:15;8032:2;;7874:325;;;:::o

Swarm Source

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