APE Price: $0.70 (-3.43%)

Token

Jimmy (JIMMY)

Overview

Max Total Supply

100,000,000 JIMMY

Holders

4

Market

Price

$0.00 @ 0.000000 APE

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 JIMMY

Value
$0.00
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Jimmy

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-10-25
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.28;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Interface of the ERC20 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.
     *
     * 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 `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
    );
}

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

contract 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:
     *
     * - `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 {ERC20}.
     *
     * 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,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _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,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `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), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `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;
        _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;
        }
        _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 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 {}
}

abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

contract Jimmy is ERC20, Ownable, Pausable {
    constructor() ERC20("Jimmy", "JIMMY") {
        _mint(msg.sender, 100000000000000000000000000);
    }

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override whenNotPaused {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f5ffd5b50604051806040016040528060058152602001644a696d6d7960d81b815250604051806040016040528060058152602001644a494d4d5960d81b815250816003908161005b91906102ea565b50600461006882826102ea565b50505061008161007c6100a860201b60201c565b6100ac565b6005805460ff60a01b191690556100a3336a52b7d2dcc80cd2e40000006100fd565b6103c9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166101585760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6101635f83836101e9565b8060025f82825461017491906103a4565b90915550506001600160a01b0382165f90815260208190526040812080548392906101a09084906103a4565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6101fc600554600160a01b900460ff1690565b1561023c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161014f565b61024e8383836001600160e01b038416565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061027b57607f821691505b60208210810361029957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561024e57805f5260205f20601f840160051c810160208510156102c45750805b601f840160051c820191505b818110156102e3575f81556001016102d0565b5050505050565b81516001600160401b0381111561030357610303610253565b610317816103118454610267565b8461029f565b6020601f821160018114610349575f83156103325750848201515b5f19600385901b1c1916600184901b1784556102e3565b5f84815260208120601f198516915b828110156103785787850151825560209485019460019092019101610358565b508482101561039557868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b808201808211156103c357634e487b7160e01b5f52601160045260245ffd5b92915050565b610e20806103d65f395ff3fe608060405234801561000f575f5ffd5b5060043610610111575f3560e01c806370a082311161009e57806395d89b411161006e57806395d89b411461021f578063a457c2d714610227578063a9059cbb1461023a578063dd62ed3e1461024d578063f2fde38b14610285575f5ffd5b806370a08231146101cc578063715018a6146101f45780638456cb59146101fc5780638da5cb5b14610204575f5ffd5b8063313ce567116100e4578063313ce5671461017b578063395093511461018a5780633f4ba83a1461019d57806342966c68146101a75780635c975abb146101ba575f5ffd5b806306fdde0314610115578063095ea7b31461013357806318160ddd1461015657806323b872dd14610168575b5f5ffd5b61011d610298565b60405161012a9190610c29565b60405180910390f35b610146610141366004610c79565b610328565b604051901515815260200161012a565b6002545b60405190815260200161012a565b610146610176366004610ca1565b61033e565b6040516012815260200161012a565b610146610198366004610c79565b6103eb565b6101a5610426565b005b6101a56101b5366004610cdb565b61045a565b600554600160a01b900460ff16610146565b61015a6101da366004610cf2565b6001600160a01b03165f9081526020819052604090205490565b6101a5610467565b6101a561049a565b6005546040516001600160a01b03909116815260200161012a565b61011d6104cc565b610146610235366004610c79565b6104db565b610146610248366004610c79565b610573565b61015a61025b366004610d12565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101a5610293366004610cf2565b61057f565b6060600380546102a790610d43565b80601f01602080910402602001604051908101604052809291908181526020018280546102d390610d43565b801561031e5780601f106102f55761010080835404028352916020019161031e565b820191905f5260205f20905b81548152906001019060200180831161030157829003601f168201915b5050505050905090565b5f610334338484610617565b5060015b92915050565b5f61034a84848461073b565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156103d35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103e08533858403610617565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610334918590610421908690610d8f565b610617565b6005546001600160a01b031633146104505760405162461bcd60e51b81526004016103ca90610da2565b610458610913565b565b61046433826109b0565b50565b6005546001600160a01b031633146104915760405162461bcd60e51b81526004016103ca90610da2565b6104585f610afe565b6005546001600160a01b031633146104c45760405162461bcd60e51b81526004016103ca90610da2565b610458610b4f565b6060600480546102a790610d43565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561055c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ca565b6105693385858403610617565b5060019392505050565b5f61033433848461073b565b6005546001600160a01b031633146105a95760405162461bcd60e51b81526004016103ca90610da2565b6001600160a01b03811661060e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ca565b61046481610afe565b6001600160a01b0383166106795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ca565b6001600160a01b0382166106da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ca565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661079f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ca565b6001600160a01b0382166108015760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ca565b61080c838383610bd7565b6001600160a01b0383165f90815260208190526040902054818110156108835760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ca565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906108b9908490610d8f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161090591815260200190565b60405180910390a350505050565b600554600160a01b900460ff166109635760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103ca565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610a105760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103ca565b610a1b825f83610bd7565b6001600160a01b0382165f9081526020819052604090205481811015610a8e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103ca565b6001600160a01b0383165f908152602081905260408120838303905560028054849290610abc908490610dd7565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161072e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600554600160a01b900460ff1615610b9c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103ca565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586109933390565b600554600160a01b900460ff1615610c245760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103ca565b505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610c74575f5ffd5b919050565b5f5f60408385031215610c8a575f5ffd5b610c9383610c5e565b946020939093013593505050565b5f5f5f60608486031215610cb3575f5ffd5b610cbc84610c5e565b9250610cca60208501610c5e565b929592945050506040919091013590565b5f60208284031215610ceb575f5ffd5b5035919050565b5f60208284031215610d02575f5ffd5b610d0b82610c5e565b9392505050565b5f5f60408385031215610d23575f5ffd5b610d2c83610c5e565b9150610d3a60208401610c5e565b90509250929050565b600181811c90821680610d5757607f821691505b602082108103610d7557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561033857610338610d7b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8181038181111561033857610338610d7b56fea26469706673582212201a3617e316bfc85d3b9d74bf64b597a31cc4a2164558e154e1a5ccdb4b68b73864736f6c634300081c0033

Deployed Bytecode

0x608060405234801561000f575f5ffd5b5060043610610111575f3560e01c806370a082311161009e57806395d89b411161006e57806395d89b411461021f578063a457c2d714610227578063a9059cbb1461023a578063dd62ed3e1461024d578063f2fde38b14610285575f5ffd5b806370a08231146101cc578063715018a6146101f45780638456cb59146101fc5780638da5cb5b14610204575f5ffd5b8063313ce567116100e4578063313ce5671461017b578063395093511461018a5780633f4ba83a1461019d57806342966c68146101a75780635c975abb146101ba575f5ffd5b806306fdde0314610115578063095ea7b31461013357806318160ddd1461015657806323b872dd14610168575b5f5ffd5b61011d610298565b60405161012a9190610c29565b60405180910390f35b610146610141366004610c79565b610328565b604051901515815260200161012a565b6002545b60405190815260200161012a565b610146610176366004610ca1565b61033e565b6040516012815260200161012a565b610146610198366004610c79565b6103eb565b6101a5610426565b005b6101a56101b5366004610cdb565b61045a565b600554600160a01b900460ff16610146565b61015a6101da366004610cf2565b6001600160a01b03165f9081526020819052604090205490565b6101a5610467565b6101a561049a565b6005546040516001600160a01b03909116815260200161012a565b61011d6104cc565b610146610235366004610c79565b6104db565b610146610248366004610c79565b610573565b61015a61025b366004610d12565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101a5610293366004610cf2565b61057f565b6060600380546102a790610d43565b80601f01602080910402602001604051908101604052809291908181526020018280546102d390610d43565b801561031e5780601f106102f55761010080835404028352916020019161031e565b820191905f5260205f20905b81548152906001019060200180831161030157829003601f168201915b5050505050905090565b5f610334338484610617565b5060015b92915050565b5f61034a84848461073b565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156103d35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103e08533858403610617565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610334918590610421908690610d8f565b610617565b6005546001600160a01b031633146104505760405162461bcd60e51b81526004016103ca90610da2565b610458610913565b565b61046433826109b0565b50565b6005546001600160a01b031633146104915760405162461bcd60e51b81526004016103ca90610da2565b6104585f610afe565b6005546001600160a01b031633146104c45760405162461bcd60e51b81526004016103ca90610da2565b610458610b4f565b6060600480546102a790610d43565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561055c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ca565b6105693385858403610617565b5060019392505050565b5f61033433848461073b565b6005546001600160a01b031633146105a95760405162461bcd60e51b81526004016103ca90610da2565b6001600160a01b03811661060e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ca565b61046481610afe565b6001600160a01b0383166106795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ca565b6001600160a01b0382166106da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ca565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661079f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ca565b6001600160a01b0382166108015760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ca565b61080c838383610bd7565b6001600160a01b0383165f90815260208190526040902054818110156108835760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ca565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906108b9908490610d8f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161090591815260200190565b60405180910390a350505050565b600554600160a01b900460ff166109635760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103ca565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610a105760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103ca565b610a1b825f83610bd7565b6001600160a01b0382165f9081526020819052604090205481811015610a8e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103ca565b6001600160a01b0383165f908152602081905260408120838303905560028054849290610abc908490610dd7565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161072e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600554600160a01b900460ff1615610b9c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103ca565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586109933390565b600554600160a01b900460ff1615610c245760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103ca565b505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610c74575f5ffd5b919050565b5f5f60408385031215610c8a575f5ffd5b610c9383610c5e565b946020939093013593505050565b5f5f5f60608486031215610cb3575f5ffd5b610cbc84610c5e565b9250610cca60208501610c5e565b929592945050506040919091013590565b5f60208284031215610ceb575f5ffd5b5035919050565b5f60208284031215610d02575f5ffd5b610d0b82610c5e565b9392505050565b5f5f60408385031215610d23575f5ffd5b610d2c83610c5e565b9150610d3a60208401610c5e565b90509250929050565b600181811c90821680610d5757607f821691505b602082108103610d7557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561033857610338610d7b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8181038181111561033857610338610d7b56fea26469706673582212201a3617e316bfc85d3b9d74bf64b597a31cc4a2164558e154e1a5ccdb4b68b73864736f6c634300081c0033

Deployed Bytecode Sourcemap

17986:602:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6003:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8236:194;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;8236:194:0;920:187:1;7123:108:0;7211:12;;7123:108;;;1258:25:1;;;1246:2;1231:18;7123:108:0;1112:177:1;8912:529:0;;;;;;:::i;:::-;;:::i;6965:93::-;;;7048:2;1815:36:1;;1803:2;1788:18;6965:93:0;1673:184:1;9850:290:0;;;;;;:::i;:::-;;:::i;18309:67::-;;;:::i;:::-;;18147:83;;;;;;:::i;:::-;;:::i;16800:86::-;16871:7;;-1:-1:-1;;;16871:7:0;;;;16800:86;;7294:143;;;;;;:::i;:::-;-1:-1:-1;;;;;7411:18:0;7384:7;7411:18;;;;;;;;;;;;7294:143;1388:94;;;:::i;18238:63::-;;;:::i;737:87::-;810:6;;737:87;;-1:-1:-1;;;;;810:6:0;;;2430:51:1;;2418:2;2403:18;737:87:0;2284:203:1;6222:104:0;;;:::i;10643:475::-;;;;;;:::i;:::-;;:::i;7650:200::-;;;;;;:::i;:::-;;:::i;7913:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8054:18:0;;;8027:7;8054:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7913:176;1637:229;;;;;;:::i;:::-;;:::i;6003:100::-;6057:13;6090:5;6083:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6003:100;:::o;8236:194::-;8344:4;8361:39;175:10;8384:7;8393:6;8361:8;:39::i;:::-;-1:-1:-1;8418:4:0;8236:194;;;;;:::o;8912:529::-;9052:4;9069:36;9079:6;9087:9;9098:6;9069:9;:36::i;:::-;-1:-1:-1;;;;;9145:19:0;;9118:24;9145:19;;;:11;:19;;;;;;;;175:10;9145:33;;;;;;;;9211:26;;;;9189:116;;;;-1:-1:-1;;;9189:116:0;;3344:2:1;9189:116:0;;;3326:21:1;3383:2;3363:18;;;3356:30;3422:34;3402:18;;;3395:62;-1:-1:-1;;;3473:18:1;;;3466:38;3521:19;;9189:116:0;;;;;;;;;9341:57;9350:6;175:10;9391:6;9372:16;:25;9341:8;:57::i;:::-;-1:-1:-1;9429:4:0;;8912:529;-1:-1:-1;;;;8912:529:0:o;9850:290::-;175:10;9963:4;10052:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10052:34:0;;;;;;;;;;9963:4;;9980:130;;10030:7;;10052:47;;10089:10;;10052:47;:::i;:::-;9980:8;:130::i;18309:67::-;810:6;;-1:-1:-1;;;;;810:6:0;175:10;957:23;949:68;;;;-1:-1:-1;;;949:68:0;;;;;;;:::i;:::-;18358:10:::1;:8;:10::i;:::-;18309:67::o:0;18147:83::-;18197:25;18203:10;18215:6;18197:5;:25::i;:::-;18147:83;:::o;1388:94::-;810:6;;-1:-1:-1;;;;;810:6:0;175:10;957:23;949:68;;;;-1:-1:-1;;;949:68:0;;;;;;;:::i;:::-;1453:21:::1;1471:1;1453:9;:21::i;18238:63::-:0;810:6;;-1:-1:-1;;;;;810:6:0;175:10;957:23;949:68;;;;-1:-1:-1;;;949:68:0;;;;;;;:::i;:::-;18285:8:::1;:6;:8::i;6222:104::-:0;6278:13;6311:7;6304:14;;;;;:::i;10643:475::-;175:10;10761:4;10805:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10805:34:0;;;;;;;;;;10872:35;;;;10850:122;;;;-1:-1:-1;;;10850:122:0;;4376:2:1;10850:122:0;;;4358:21:1;4415:2;4395:18;;;4388:30;4454:34;4434:18;;;4427:62;-1:-1:-1;;;4505:18:1;;;4498:35;4550:19;;10850:122:0;4174:401:1;10850:122:0;11008:67;175:10;11031:7;11059:15;11040:16;:34;11008:8;:67::i;:::-;-1:-1:-1;11106:4:0;;10643:475;-1:-1:-1;;;10643:475:0:o;7650:200::-;7761:4;7778:42;175:10;7802:9;7813:6;7778:9;:42::i;1637:229::-;810:6;;-1:-1:-1;;;;;810:6:0;175:10;957:23;949:68;;;;-1:-1:-1;;;949:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1740:22:0;::::1;1718:110;;;::::0;-1:-1:-1;;;1718:110:0;;4782:2:1;1718:110:0::1;::::0;::::1;4764:21:1::0;4821:2;4801:18;;;4794:30;4860:34;4840:18;;;4833:62;-1:-1:-1;;;4911:18:1;;;4904:36;4957:19;;1718:110:0::1;4580:402:1::0;1718:110:0::1;1839:19;1849:8;1839:9;:19::i;14426:380::-:0;-1:-1:-1;;;;;14562:19:0;;14554:68;;;;-1:-1:-1;;;14554:68:0;;5189:2:1;14554:68:0;;;5171:21:1;5228:2;5208:18;;;5201:30;5267:34;5247:18;;;5240:62;-1:-1:-1;;;5318:18:1;;;5311:34;5362:19;;14554:68:0;4987:400:1;14554:68:0;-1:-1:-1;;;;;14641:21:0;;14633:68;;;;-1:-1:-1;;;14633:68:0;;5594:2:1;14633:68:0;;;5576:21:1;5633:2;5613:18;;;5606:30;5672:34;5652:18;;;5645:62;-1:-1:-1;;;5723:18:1;;;5716:32;5765:19;;14633:68:0;5392:398:1;14633:68:0;-1:-1:-1;;;;;14714:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14766:32;;1258:25:1;;;14766:32:0;;1231:18:1;14766:32:0;;;;;;;;14426:380;;;:::o;11608:770::-;-1:-1:-1;;;;;11748:20:0;;11740:70;;;;-1:-1:-1;;;11740:70:0;;5997:2:1;11740:70:0;;;5979:21:1;6036:2;6016:18;;;6009:30;6075:34;6055:18;;;6048:62;-1:-1:-1;;;6126:18:1;;;6119:35;6171:19;;11740:70:0;5795:401:1;11740:70:0;-1:-1:-1;;;;;11829:23:0;;11821:71;;;;-1:-1:-1;;;11821:71:0;;6403:2:1;11821:71:0;;;6385:21:1;6442:2;6422:18;;;6415:30;6481:34;6461:18;;;6454:62;-1:-1:-1;;;6532:18:1;;;6525:33;6575:19;;11821:71:0;6201:399:1;11821:71:0;11905:47;11926:6;11934:9;11945:6;11905:20;:47::i;:::-;-1:-1:-1;;;;;11989:17:0;;11965:21;11989:17;;;;;;;;;;;12039:23;;;;12017:111;;;;-1:-1:-1;;;12017:111:0;;6807:2:1;12017:111:0;;;6789:21:1;6846:2;6826:18;;;6819:30;6885:34;6865:18;;;6858:62;-1:-1:-1;;;6936:18:1;;;6929:36;6982:19;;12017:111:0;6605:402:1;12017:111:0;-1:-1:-1;;;;;12164:17:0;;;:9;:17;;;;;;;;;;;12184:22;;;12164:42;;12228:20;;;;;;;;:30;;12200:6;;12164:9;12228:30;;12200:6;;12228:30;:::i;:::-;;;;;;;;12293:9;-1:-1:-1;;;;;12276:35:0;12285:6;-1:-1:-1;;;;;12276:35:0;;12304:6;12276:35;;;;1258:25:1;;1246:2;1231:18;;1112:177;12276:35:0;;;;;;;;11729:649;11608:770;;;:::o;17859:120::-;16871:7;;-1:-1:-1;;;16871:7:0;;;;17395:41;;;;-1:-1:-1;;;17395:41:0;;7214:2:1;17395:41:0;;;7196:21:1;7253:2;7233:18;;;7226:30;-1:-1:-1;;;7272:18:1;;;7265:50;7332:18;;17395:41:0;7012:344:1;17395:41:0;17918:7:::1;:15:::0;;-1:-1:-1;;;;17918:15:0::1;::::0;;17949:22:::1;175:10:::0;17958:12:::1;17949:22;::::0;-1:-1:-1;;;;;2448:32:1;;;2430:51;;2418:2;2403:18;17949:22:0::1;;;;;;;17859:120::o:0;13397:591::-;-1:-1:-1;;;;;13481:21:0;;13473:67;;;;-1:-1:-1;;;13473:67:0;;7563:2:1;13473:67:0;;;7545:21:1;7602:2;7582:18;;;7575:30;7641:34;7621:18;;;7614:62;-1:-1:-1;;;7692:18:1;;;7685:31;7733:19;;13473:67:0;7361:397:1;13473:67:0;13553:49;13574:7;13591:1;13595:6;13553:20;:49::i;:::-;-1:-1:-1;;;;;13640:18:0;;13615:22;13640:18;;;;;;;;;;;13677:24;;;;13669:71;;;;-1:-1:-1;;;13669:71:0;;7965:2:1;13669:71:0;;;7947:21:1;8004:2;7984:18;;;7977:30;8043:34;8023:18;;;8016:62;-1:-1:-1;;;8094:18:1;;;8087:32;8136:19;;13669:71:0;7763:398:1;13669:71:0;-1:-1:-1;;;;;13776:18:0;;:9;:18;;;;;;;;;;13797:23;;;13776:44;;13842:12;:22;;13814:6;;13776:9;13842:22;;13814:6;;13842:22;:::i;:::-;;;;-1:-1:-1;;13882:37:0;;1258:25:1;;;13908:1:0;;-1:-1:-1;;;;;13882:37:0;;;;;1246:2:1;1231:18;13882:37:0;1112:177:1;1874:173:0;1949:6;;;-1:-1:-1;;;;;1966:17:0;;;-1:-1:-1;;;;;;1966:17:0;;;;;;;1999:40;;1949:6;;;1966:17;1949:6;;1999:40;;1930:16;;1999:40;1919:128;1874:173;:::o;17600:118::-;16871:7;;-1:-1:-1;;;16871:7:0;;;;17125:9;17117:38;;;;-1:-1:-1;;;17117:38:0;;8501:2:1;17117:38:0;;;8483:21:1;8540:2;8520:18;;;8513:30;-1:-1:-1;;;8559:18:1;;;8552:46;8615:18;;17117:38:0;8299:340:1;17117:38:0;17660:7:::1;:14:::0;;-1:-1:-1;;;;17660:14:0::1;-1:-1:-1::0;;;17660:14:0::1;::::0;;17690:20:::1;17697:12;175:10:::0;;95:98;18384:201;16871:7;;-1:-1:-1;;;16871:7:0;;;;17125:9;17117:38;;;;-1:-1:-1;;;17117:38:0;;8501:2:1;17117:38:0;;;8483:21:1;8540:2;8520:18;;;8513:30;-1:-1:-1;;;8559:18:1;;;8552:46;8615:18;;17117:38:0;8299:340:1;17117:38:0;13462:526;13397:591;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:226::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;-1:-1:-1;2035:23:1;;1862:226;-1:-1:-1;1862:226:1:o;2093:186::-;2152:6;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2244:29;2263:9;2244:29;:::i;:::-;2234:39;2093:186;-1:-1:-1;;;2093:186:1:o;2492:260::-;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;2660:29;2679:9;2660:29;:::i;:::-;2650:39;;2708:38;2742:2;2731:9;2727:18;2708:38;:::i;:::-;2698:48;;2492:260;;;;;:::o;2757:380::-;2836:1;2832:12;;;;2879;;;2900:61;;2954:4;2946:6;2942:17;2932:27;;2900:61;3007:2;2999:6;2996:14;2976:18;2973:38;2970:161;;3053:10;3048:3;3044:20;3041:1;3034:31;3088:4;3085:1;3078:15;3116:4;3113:1;3106:15;2970:161;;2757:380;;;:::o;3551:127::-;3612:10;3607:3;3603:20;3600:1;3593:31;3643:4;3640:1;3633:15;3667:4;3664:1;3657:15;3683:125;3748:9;;;3769:10;;;3766:36;;;3782:18;;:::i;3813:356::-;4015:2;3997:21;;;4034:18;;;4027:30;4093:34;4088:2;4073:18;;4066:62;4160:2;4145:18;;3813:356::o;8166:128::-;8233:9;;;8254:11;;;8251:37;;;8268:18;;:::i

Swarm Source

ipfs://1a3617e316bfc85d3b9d74bf64b597a31cc4a2164558e154e1a5ccdb4b68b738
[ 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.