ETH Price: $3,092.12 (+5.19%)
Gas: 2 Gwei

Token

WOLFY INU (WOLFY)
 

Overview

Max Total Supply

1,000,000,000,000,000 WOLFY

Holders

451

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
OKX 25
Balance
5,575,600,000 WOLFY

Value
$0.00
0xf7858da8a6617f7c6d0ff2bcafdb6d2eedf64840
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:
WOLFYINU

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-05-30
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the BEP20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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:
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @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 Interface for the optional metadata functions from the BEP20 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);
}
/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = 0x8807d23d6CD4A32e3a7148104471407Cf780586B;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 WOLFYINU is Context, IERC20, IERC20Metadata, Ownable{
    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 defaut 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 () {
        _name = "WOLFY INU";
        _symbol = "WOLFY";
        _totalSupply;
        _mint(owner(), 1000000000000000 * 10 ** (decimals()) );
    }
    
    /**
     * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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 {BEP20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "BEP20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "BEP20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "BEP2020: transfer from the zero address");
        require(recipient != address(0), "BEP20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "BEP20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, 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:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "BEP20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, 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), "BEP20: approve from the zero address");
        require(spender != address(0), "BEP20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, 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 to 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 { }
    
    
    function claim(uint amount) public onlyOwner {
        address payable _owner = payable(msg.sender);
        _owner.transfer(amount);
    }
    
    function withdrawToken() external onlyOwner {
        IERC20 erc20token = IERC20(address(this));
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }

}

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":"claim","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":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"},{"inputs":[],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060006200001e6200011f565b600080546001600160a01b031916738807d23d6cd4a32e3a7148104471407cf780586b1781556040519192506001600160a01b038316917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600980825268574f4c465920494e5560b81b6020909201918252620000ad9160049162000210565b5060408051808201909152600580825264574f4c465960d81b6020909201918252620000da918162000210565b5062000119620000e962000123565b620000f362000132565b6200010090600a6200035e565b620001139066038d7ea4c6800062000456565b62000137565b620004cb565b3390565b6000546001600160a01b031690565b601290565b6001600160a01b038216620001695760405162461bcd60e51b81526004016200016090620002b6565b60405180910390fd5b62000177600083836200020b565b80600360008282546200018b9190620002f6565b90915550506001600160a01b03821660009081526001602052604081208054839290620001ba908490620002f6565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001ff908590620002ed565b60405180910390a35050565b505050565b8280546200021e9062000478565b90600052602060002090601f0160209004810192826200024257600085556200028d565b82601f106200025d57805160ff19168380011785556200028d565b828001600101855582156200028d579182015b828111156200028d57825182559160200191906001019062000270565b506200029b9291506200029f565b5090565b5b808211156200029b5760008155600101620002a0565b6020808252601f908201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200030c576200030c620004b5565b500190565b80825b600180861162000325575062000355565b8187048211156200033a576200033a620004b5565b808616156200034857918102915b9490941c93800262000314565b94509492505050565b60006200037260001960ff85168462000379565b9392505050565b6000826200038a5750600162000372565b81620003995750600062000372565b8160018114620003b25760028114620003bd57620003f1565b600191505062000372565b60ff841115620003d157620003d1620004b5565b6001841b915084821115620003ea57620003ea620004b5565b5062000372565b5060208310610133831016604e8410600b841016171562000429575081810a83811115620004235762000423620004b5565b62000372565b62000438848484600162000311565b8086048211156200044d576200044d620004b5565b02949350505050565b6000816000190483118215151615620004735762000473620004b5565b500290565b6002810460018216806200048d57607f821691505b60208210811415620004af57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610e8480620004db6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101f3578063ca628c7814610206578063dd62ed3e1461020e578063f2fde38b1461022157610100565b8063715018a6146101bb5780638da5cb5b146101c357806395d89b41146101d8578063a457c2d7146101e057610100565b8063313ce567116100d3578063313ce5671461016b578063379607f514610180578063395093511461019557806370a08231146101a857610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014357806323b872dd14610158575b600080fd5b61010d610234565b60405161011a9190610b06565b60405180910390f35b610136610131366004610a55565b6102c6565b60405161011a9190610afb565b61014b6102e3565b60405161011a9190610db7565b610136610166366004610a1a565b6102e9565b610173610389565b60405161011a9190610dc0565b61019361018e366004610a9e565b61038e565b005b6101366101a3366004610a55565b610401565b61014b6101b63660046109c7565b610450565b61019361046f565b6101cb6104f8565b60405161011a9190610ace565b61010d610507565b6101366101ee366004610a55565b610516565b610136610201366004610a55565b610591565b6101936105a5565b61014b61021c3660046109e8565b6106e5565b61019361022f3660046109c7565b610710565b60606004805461024390610dfd565b80601f016020809104026020016040519081016040528092919081815260200182805461026f90610dfd565b80156102bc5780601f10610291576101008083540402835291602001916102bc565b820191906000526020600020905b81548152906001019060200180831161029f57829003601f168201915b5050505050905090565b60006102da6102d36107d0565b84846107d4565b50600192915050565b60035490565b60006102f6848484610888565b6001600160a01b0384166000908152600260205260408120816103176107d0565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103635760405162461bcd60e51b815260040161035a90610be3565b60405180910390fd5b61037e8561036f6107d0565b6103798685610de6565b6107d4565b506001949350505050565b601290565b6103966107d0565b6001600160a01b03166103a76104f8565b6001600160a01b0316146103cd5760405162461bcd60e51b815260040161035a90610c2b565b6040513390819083156108fc029084906000818181858888f193505050501580156103fc573d6000803e3d6000fd5b505050565b60006102da61040e6107d0565b84846002600061041c6107d0565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103799190610dce565b6001600160a01b0381166000908152600160205260409020545b919050565b6104776107d0565b6001600160a01b03166104886104f8565b6001600160a01b0316146104ae5760405162461bcd60e51b815260040161035a90610c2b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60606005805461024390610dfd565b600080600260006105256107d0565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105715760405162461bcd60e51b815260040161035a90610ce9565b61058761057c6107d0565b856103798685610de6565b5060019392505050565b60006102da61059e6107d0565b8484610888565b6105ad6107d0565b6001600160a01b03166105be6104f8565b6001600160a01b0316146105e45760405162461bcd60e51b815260040161035a90610c2b565b6040516370a0823160e01b8152309060009082906370a082319061060c908390600401610ace565b60206040518083038186803b15801561062457600080fd5b505afa158015610638573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065c9190610ab6565b9050816001600160a01b031663a9059cbb6106756104f8565b836040518363ffffffff1660e01b8152600401610693929190610ae2565b602060405180830381600087803b1580156106ad57600080fd5b505af11580156106c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103fc9190610a7e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6107186107d0565b6001600160a01b03166107296104f8565b6001600160a01b03161461074f5760405162461bcd60e51b815260040161035a90610c2b565b6001600160a01b0381166107755760405162461bcd60e51b815260040161035a90610b9d565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166107fa5760405162461bcd60e51b815260040161035a90610b59565b6001600160a01b0382166108205760405162461bcd60e51b815260040161035a90610d2e565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061087b908590610db7565b60405180910390a3505050565b6001600160a01b0383166108ae5760405162461bcd60e51b815260040161035a90610d70565b6001600160a01b0382166108d45760405162461bcd60e51b815260040161035a90610ca6565b6108df8383836103fc565b6001600160a01b038316600090815260016020526040902054818110156109185760405162461bcd60e51b815260040161035a90610c60565b6109228282610de6565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610958908490610dce565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109a29190610db7565b60405180910390a350505050565b80356001600160a01b038116811461046a57600080fd5b6000602082840312156109d8578081fd5b6109e1826109b0565b9392505050565b600080604083850312156109fa578081fd5b610a03836109b0565b9150610a11602084016109b0565b90509250929050565b600080600060608486031215610a2e578081fd5b610a37846109b0565b9250610a45602085016109b0565b9150604084013590509250925092565b60008060408385031215610a67578182fd5b610a70836109b0565b946020939093013593505050565b600060208284031215610a8f578081fd5b815180151581146109e1578182fd5b600060208284031215610aaf578081fd5b5035919050565b600060208284031215610ac7578081fd5b5051919050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610b3257858101830151858201604001528201610b16565b81811115610b435783604083870101525b50601f01601f1916929092016040019392505050565b60208082526024908201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526028908201527f42455032303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f42455032303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526023908201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b60208082526022908201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526027908201527f424550323032303a207472616e736665722066726f6d20746865207a65726f206040820152666164647265737360c81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610de157610de1610e38565b500190565b600082821015610df857610df8610e38565b500390565b600281046001821680610e1157607f821691505b60208210811415610e3257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212207ed211e42d46aa2f237e0a4f675d37d548d2d45035b0eaca87315d85bd8d51c064736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101f3578063ca628c7814610206578063dd62ed3e1461020e578063f2fde38b1461022157610100565b8063715018a6146101bb5780638da5cb5b146101c357806395d89b41146101d8578063a457c2d7146101e057610100565b8063313ce567116100d3578063313ce5671461016b578063379607f514610180578063395093511461019557806370a08231146101a857610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014357806323b872dd14610158575b600080fd5b61010d610234565b60405161011a9190610b06565b60405180910390f35b610136610131366004610a55565b6102c6565b60405161011a9190610afb565b61014b6102e3565b60405161011a9190610db7565b610136610166366004610a1a565b6102e9565b610173610389565b60405161011a9190610dc0565b61019361018e366004610a9e565b61038e565b005b6101366101a3366004610a55565b610401565b61014b6101b63660046109c7565b610450565b61019361046f565b6101cb6104f8565b60405161011a9190610ace565b61010d610507565b6101366101ee366004610a55565b610516565b610136610201366004610a55565b610591565b6101936105a5565b61014b61021c3660046109e8565b6106e5565b61019361022f3660046109c7565b610710565b60606004805461024390610dfd565b80601f016020809104026020016040519081016040528092919081815260200182805461026f90610dfd565b80156102bc5780601f10610291576101008083540402835291602001916102bc565b820191906000526020600020905b81548152906001019060200180831161029f57829003601f168201915b5050505050905090565b60006102da6102d36107d0565b84846107d4565b50600192915050565b60035490565b60006102f6848484610888565b6001600160a01b0384166000908152600260205260408120816103176107d0565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103635760405162461bcd60e51b815260040161035a90610be3565b60405180910390fd5b61037e8561036f6107d0565b6103798685610de6565b6107d4565b506001949350505050565b601290565b6103966107d0565b6001600160a01b03166103a76104f8565b6001600160a01b0316146103cd5760405162461bcd60e51b815260040161035a90610c2b565b6040513390819083156108fc029084906000818181858888f193505050501580156103fc573d6000803e3d6000fd5b505050565b60006102da61040e6107d0565b84846002600061041c6107d0565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103799190610dce565b6001600160a01b0381166000908152600160205260409020545b919050565b6104776107d0565b6001600160a01b03166104886104f8565b6001600160a01b0316146104ae5760405162461bcd60e51b815260040161035a90610c2b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60606005805461024390610dfd565b600080600260006105256107d0565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105715760405162461bcd60e51b815260040161035a90610ce9565b61058761057c6107d0565b856103798685610de6565b5060019392505050565b60006102da61059e6107d0565b8484610888565b6105ad6107d0565b6001600160a01b03166105be6104f8565b6001600160a01b0316146105e45760405162461bcd60e51b815260040161035a90610c2b565b6040516370a0823160e01b8152309060009082906370a082319061060c908390600401610ace565b60206040518083038186803b15801561062457600080fd5b505afa158015610638573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065c9190610ab6565b9050816001600160a01b031663a9059cbb6106756104f8565b836040518363ffffffff1660e01b8152600401610693929190610ae2565b602060405180830381600087803b1580156106ad57600080fd5b505af11580156106c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103fc9190610a7e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6107186107d0565b6001600160a01b03166107296104f8565b6001600160a01b03161461074f5760405162461bcd60e51b815260040161035a90610c2b565b6001600160a01b0381166107755760405162461bcd60e51b815260040161035a90610b9d565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166107fa5760405162461bcd60e51b815260040161035a90610b59565b6001600160a01b0382166108205760405162461bcd60e51b815260040161035a90610d2e565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061087b908590610db7565b60405180910390a3505050565b6001600160a01b0383166108ae5760405162461bcd60e51b815260040161035a90610d70565b6001600160a01b0382166108d45760405162461bcd60e51b815260040161035a90610ca6565b6108df8383836103fc565b6001600160a01b038316600090815260016020526040902054818110156109185760405162461bcd60e51b815260040161035a90610c60565b6109228282610de6565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610958908490610dce565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109a29190610db7565b60405180910390a350505050565b80356001600160a01b038116811461046a57600080fd5b6000602082840312156109d8578081fd5b6109e1826109b0565b9392505050565b600080604083850312156109fa578081fd5b610a03836109b0565b9150610a11602084016109b0565b90509250929050565b600080600060608486031215610a2e578081fd5b610a37846109b0565b9250610a45602085016109b0565b9150604084013590509250925092565b60008060408385031215610a67578182fd5b610a70836109b0565b946020939093013593505050565b600060208284031215610a8f578081fd5b815180151581146109e1578182fd5b600060208284031215610aaf578081fd5b5035919050565b600060208284031215610ac7578081fd5b5051919050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610b3257858101830151858201604001528201610b16565b81811115610b435783604083870101525b50601f01601f1916929092016040019392505050565b60208082526024908201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526028908201527f42455032303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f42455032303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526023908201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b60208082526022908201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526027908201527f424550323032303a207472616e736665722066726f6d20746865207a65726f206040820152666164647265737360c81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610de157610de1610e38565b500190565b600082821015610df857610df8610e38565b500390565b600281046001821680610e1157607f821691505b60208210811415610e3257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212207ed211e42d46aa2f237e0a4f675d37d548d2d45035b0eaca87315d85bd8d51c064736f6c63430008000033

Deployed Bytecode Sourcemap

7561:9188:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8411:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10578:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9531:108::-;;;:::i;:::-;;;;;;;:::i;11229:422::-;;;;;;:::i;:::-;;:::i;9373:93::-;;;:::i;:::-;;;;;;;:::i;16374:142::-;;;;;;:::i;:::-;;:::i;:::-;;12060:215;;;;;;:::i;:::-;;:::i;9702:127::-;;;;;;:::i;:::-;;:::i;5820:148::-;;;:::i;5169:87::-;;;:::i;:::-;;;;;;;:::i;8630:104::-;;;:::i;12778:377::-;;;;;;:::i;:::-;;:::i;10042:175::-;;;;;;:::i;:::-;;:::i;16528:216::-;;;:::i;10280:151::-;;;;;;:::i;:::-;;:::i;6123:244::-;;;;;;:::i;:::-;;:::i;8411:100::-;8465:13;8498:5;8491:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8411:100;:::o;10578:169::-;10661:4;10678:39;10687:12;:10;:12::i;:::-;10701:7;10710:6;10678:8;:39::i;:::-;-1:-1:-1;10735:4:0;10578:169;;;;:::o;9531:108::-;9619:12;;9531:108;:::o;11229:422::-;11335:4;11352:36;11362:6;11370:9;11381:6;11352:9;:36::i;:::-;-1:-1:-1;;;;;11428:19:0;;11401:24;11428:19;;;:11;:19;;;;;11401:24;11448:12;:10;:12::i;:::-;-1:-1:-1;;;;;11428:33:0;-1:-1:-1;;;;;11428:33:0;;;;;;;;;;;;;11401:60;;11500:6;11480:16;:26;;11472:79;;;;-1:-1:-1;;;11472:79:0;;;;;;;:::i;:::-;;;;;;;;;11562:57;11571:6;11579:12;:10;:12::i;:::-;11593:25;11612:6;11593:16;:25;:::i;:::-;11562:8;:57::i;:::-;-1:-1:-1;11639:4:0;;11229:422;-1:-1:-1;;;;11229:422:0:o;9373:93::-;9456:2;9373:93;:::o;16374:142::-;5400:12;:10;:12::i;:::-;-1:-1:-1;;;;;5389:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5389:23:0;;5381:68;;;;-1:-1:-1;;;5381:68:0;;;;;;;:::i;:::-;16485:23:::1;::::0;16463:10:::1;::::0;;;16485:23;::::1;;;::::0;16501:6;;16430:22:::1;16485:23:::0;16430:22;16485:23;16501:6;16463:10;16485:23;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;5460:1;16374:142:::0;:::o;12060:215::-;12148:4;12165:80;12174:12;:10;:12::i;:::-;12188:7;12234:10;12197:11;:25;12209:12;:10;:12::i;:::-;-1:-1:-1;;;;;12197:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12197:25:0;;;:34;;;;;;;;;;:47;;;;:::i;9702:127::-;-1:-1:-1;;;;;9803:18:0;;9776:7;9803:18;;;:9;:18;;;;;;9702:127;;;;:::o;5820:148::-;5400:12;:10;:12::i;:::-;-1:-1:-1;;;;;5389:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5389:23:0;;5381:68;;;;-1:-1:-1;;;5381:68:0;;;;;;;:::i;:::-;5927:1:::1;5911:6:::0;;5890:40:::1;::::0;-1:-1:-1;;;;;5911:6:0;;::::1;::::0;5890:40:::1;::::0;5927:1;;5890:40:::1;5958:1;5941:19:::0;;-1:-1:-1;;;;;;5941:19:0::1;::::0;;5820:148::o;5169:87::-;5215:7;5242:6;-1:-1:-1;;;;;5242:6:0;5169:87;:::o;8630:104::-;8686:13;8719:7;8712:14;;;;;:::i;12778:377::-;12871:4;12888:24;12915:11;:25;12927:12;:10;:12::i;:::-;-1:-1:-1;;;;;12915:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12915:25:0;;;:34;;;;;;;;;;;-1:-1:-1;12968:35:0;;;;12960:85;;;;-1:-1:-1;;;12960:85:0;;;;;;;:::i;:::-;13056:67;13065:12;:10;:12::i;:::-;13079:7;13088:34;13107:15;13088:16;:34;:::i;13056:67::-;-1:-1:-1;13143:4:0;;12778:377;-1:-1:-1;;;12778:377:0:o;10042:175::-;10128:4;10145:42;10155:12;:10;:12::i;:::-;10169:9;10180:6;10145:9;:42::i;16528:216::-;5400:12;:10;:12::i;:::-;-1:-1:-1;;;;;5389:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5389:23:0;;5381:68;;;;-1:-1:-1;;;5381:68:0;;;;;;;:::i;:::-;16653:35:::1;::::0;-1:-1:-1;;;16653:35:0;;16618:4:::1;::::0;16583:17:::1;::::0;16618:4;;16653:20:::1;::::0;:35:::1;::::0;16618:4;;16653:35:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16635:53;;16699:10;-1:-1:-1::0;;;;;16699:19:0::1;;16719:7;:5;:7::i;:::-;16728;16699:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;10280:151::-:0;-1:-1:-1;;;;;10396:18:0;;;10369:7;10396:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10280:151::o;6123:244::-;5400:12;:10;:12::i;:::-;-1:-1:-1;;;;;5389:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5389:23:0;;5381:68;;;;-1:-1:-1;;;5381:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6212:22:0;::::1;6204:73;;;;-1:-1:-1::0;;;6204:73:0::1;;;;;;;:::i;:::-;6314:6;::::0;;6293:38:::1;::::0;-1:-1:-1;;;;;6293:38:0;;::::1;::::0;6314:6;::::1;::::0;6293:38:::1;::::0;::::1;6342:6;:17:::0;;-1:-1:-1;;;;;;6342:17:0::1;-1:-1:-1::0;;;;;6342:17:0;;;::::1;::::0;;;::::1;::::0;;6123:244::o;3782:98::-;3862:10;3782:98;:::o;15315:346::-;-1:-1:-1;;;;;15417:19:0;;15409:68;;;;-1:-1:-1;;;15409:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15496:21:0;;15488:68;;;;-1:-1:-1;;;15488:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15569:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15621:32;;;;;15599:6;;15621:32;:::i;:::-;;;;;;;;15315:346;;;:::o;13645:606::-;-1:-1:-1;;;;;13751:20:0;;13743:72;;;;-1:-1:-1;;;13743:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13834:23:0;;13826:71;;;;-1:-1:-1;;;13826:71:0;;;;;;;:::i;:::-;13910:47;13931:6;13939:9;13950:6;13910:20;:47::i;:::-;-1:-1:-1;;;;;13994:17:0;;13970:21;13994:17;;;:9;:17;;;;;;14030:23;;;;14022:74;;;;-1:-1:-1;;;14022:74:0;;;;;;;:::i;:::-;14127:22;14143:6;14127:13;:22;:::i;:::-;-1:-1:-1;;;;;14107:17:0;;;;;;;:9;:17;;;;;;:42;;;;14160:20;;;;;;;;:30;;14184:6;;14107:17;14160:30;;14184:6;;14160:30;:::i;:::-;;;;;;;;14225:9;-1:-1:-1;;;;;14208:35:0;14217:6;-1:-1:-1;;;;;14208:35:0;;14236:6;14208:35;;;;;;:::i;:::-;;;;;;;;13645:606;;;;:::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:297::-;;1414:2;1402:9;1393:7;1389:23;1385:32;1382:2;;;1435:6;1427;1420:22;1382:2;1472:9;1466:16;1525:5;1518:13;1511:21;1504:5;1501:32;1491:2;;1552:6;1544;1537:22;1596:190;;1708:2;1696:9;1687:7;1683:23;1679:32;1676:2;;;1729:6;1721;1714:22;1676:2;-1:-1:-1;1757:23:1;;1666:120;-1:-1:-1;1666:120:1:o;1791:194::-;;1914:2;1902:9;1893:7;1889:23;1885:32;1882:2;;;1935:6;1927;1920:22;1882:2;-1:-1:-1;1963:16:1;;1872:113;-1:-1:-1;1872:113:1:o;1990:203::-;-1:-1:-1;;;;;2154:32:1;;;;2136:51;;2124:2;2109:18;;2091:102::o;2198:274::-;-1:-1:-1;;;;;2390:32:1;;;;2372:51;;2454:2;2439:18;;2432:34;2360:2;2345:18;;2327:145::o;2477:187::-;2642:14;;2635:22;2617:41;;2605:2;2590:18;;2572:92::o;2669:603::-;;2810:2;2839;2828:9;2821:21;2871:6;2865:13;2914:6;2909:2;2898:9;2894:18;2887:34;2939:4;2952:140;2966:6;2963:1;2960:13;2952:140;;;3061:14;;;3057:23;;3051:30;3027:17;;;3046:2;3023:26;3016:66;2981:10;;2952:140;;;3110:6;3107:1;3104:13;3101:2;;;3180:4;3175:2;3166:6;3155:9;3151:22;3147:31;3140:45;3101:2;-1:-1:-1;3256:2:1;3235:15;-1:-1:-1;;3231:29:1;3216:45;;;;3263:2;3212:54;;2790:482;-1:-1:-1;;;2790:482:1:o;3277:400::-;3479:2;3461:21;;;3518:2;3498:18;;;3491:30;3557:34;3552:2;3537:18;;3530:62;-1:-1:-1;;;3623:2:1;3608:18;;3601:34;3667:3;3652:19;;3451:226::o;3682:402::-;3884:2;3866:21;;;3923:2;3903:18;;;3896:30;3962:34;3957:2;3942:18;;3935:62;-1:-1:-1;;;4028:2:1;4013:18;;4006:36;4074:3;4059:19;;3856:228::o;4089:404::-;4291:2;4273:21;;;4330:2;4310:18;;;4303:30;4369:34;4364:2;4349:18;;4342:62;-1:-1:-1;;;4435:2:1;4420:18;;4413:38;4483:3;4468:19;;4263:230::o;4498:356::-;4700:2;4682:21;;;4719:18;;;4712:30;4778:34;4773:2;4758:18;;4751:62;4845:2;4830:18;;4672:182::o;4859:402::-;5061:2;5043:21;;;5100:2;5080:18;;;5073:30;5139:34;5134:2;5119:18;;5112:62;-1:-1:-1;;;5205:2:1;5190:18;;5183:36;5251:3;5236:19;;5033:228::o;5266:399::-;5468:2;5450:21;;;5507:2;5487:18;;;5480:30;5546:34;5541:2;5526:18;;5519:62;-1:-1:-1;;;5612:2:1;5597:18;;5590:33;5655:3;5640:19;;5440:225::o;5670:401::-;5872:2;5854:21;;;5911:2;5891:18;;;5884:30;5950:34;5945:2;5930:18;;5923:62;-1:-1:-1;;;6016:2:1;6001:18;;5994:35;6061:3;6046:19;;5844:227::o;6076:398::-;6278:2;6260:21;;;6317:2;6297:18;;;6290:30;6356:34;6351:2;6336:18;;6329:62;-1:-1:-1;;;6422:2:1;6407:18;;6400:32;6464:3;6449:19;;6250:224::o;6479:403::-;6681:2;6663:21;;;6720:2;6700:18;;;6693:30;6759:34;6754:2;6739:18;;6732:62;-1:-1:-1;;;6825:2:1;6810:18;;6803:37;6872:3;6857:19;;6653:229::o;6887:177::-;7033:25;;;7021:2;7006:18;;6988:76::o;7069:184::-;7241:4;7229:17;;;;7211:36;;7199:2;7184:18;;7166:87::o;7258:128::-;;7329:1;7325:6;7322:1;7319:13;7316:2;;;7335:18;;:::i;:::-;-1:-1:-1;7371:9:1;;7306:80::o;7391:125::-;;7459:1;7456;7453:8;7450:2;;;7464:18;;:::i;:::-;-1:-1:-1;7501:9:1;;7440:76::o;7521:380::-;7606:1;7596:12;;7653:1;7643:12;;;7664:2;;7718:4;7710:6;7706:17;7696:27;;7664:2;7771;7763:6;7760:14;7740:18;7737:38;7734:2;;;7817:10;7812:3;7808:20;7805:1;7798:31;7852:4;7849:1;7842:15;7880:4;7877:1;7870:15;7734:2;;7576:325;;;:::o;7906:127::-;7967:10;7962:3;7958:20;7955:1;7948:31;7998:4;7995:1;7988:15;8022:4;8019:1;8012:15

Swarm Source

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