ETH Price: $3,040.28 (-4.24%)
 

Overview

Max Total Supply

100,000,000 Pythia

Holders

3,338

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
PythiaToken

Compiler Version
v0.8.30+commit.73712a01

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
// SPDX-License-Identifier: MIT
pragma solidity 0.8.30;

import "@openzeppelin/[email protected]/access/Ownable.sol";
import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";


contract PythiaToken is ERC20, Ownable {
    mapping(address => bool) public isExcludeFee;
    mapping(address => bool) public isBlackList;

    uint256 public sellFee;
    uint256 public buyFee;

    event SetWL(address user, bool flag);
    event SetBL(address user, bool flag);

    event Launch();

    constructor(address foundation) ERC20("Pythia", "Pythia")Ownable(msg.sender)
    {

        sellFee = 100;
        buyFee = 100;
        isExcludeFee[msg.sender] = true;
        isExcludeFee[foundation] = true;
        isExcludeFee[address(0xDead)] = true;
    }

    function mint(address to,uint256 amount) external onlyOwner{
        _mint(to,amount);
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (isExcludeFee[from] || isExcludeFee[to]) {
            return super._update(from, to, amount);
        }

        require(!isBlackList[from] && !isBlackList[to], "BFToken:is blacklist");

        (bool isSell, bool isBuy) = isSwap(from, to);

        if (isBuy) {
            uint256 fees = (amount * buyFee) / 10000;
            super._update(from, address(0xDead), fees);
            return super._update(from, to, amount - fees);
        }

        if (isSell) {
            uint256 fees = (amount * sellFee) / 10000;
            super._update(from, address(0xDead), fees);
            return super._update(from, to, amount - fees);
        }

        super._update(from, to, amount);
    }

    function isSwap(address from, address to)
        public
        view
        returns (bool isSell, bool isBuy)
    {
        if (isContract(from)) {
            try ISwapPair(from).token0() {
                if (
                    ISwapPair(from).token0() == address(this) ||
                    ISwapPair(from).token1() == address(this)
                ) {
                    return (false, true);
                } else {
                    return (true, false);
                }
            } catch {}
        }

        if (isContract(to)) {
            try ISwapPair(to).token0() {
                if (
                    ISwapPair(to).token0() == address(this) ||
                    ISwapPair(to).token1() == address(this)
                ) {
                    return (true, false);
                } else {
                    return (false, true);
                }
            } catch {}
        }
    }

    function multisetBlackList(address[] memory users, bool flag)
        external
        onlyOwner
    {
        for (uint256 i; i < users.length; i++) {
            isBlackList[users[i]] = flag;
            emit SetBL(users[i], flag);
        }
    }

    function isContract(address addr) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(addr)
        }
        return size > 0;
    }

    function multiSetExcludeFee(address[] memory users, bool isExclude)
        external
        onlyOwner
    {
        for (uint256 i; i < users.length; i++) {
            isExcludeFee[users[i]] = isExclude;
            emit SetWL(users[i], isExclude);
        }
    }

    function setFees(uint256 _sellFee, uint256 _buyFee) external onlyOwner {
        require(_sellFee + _buyFee < 10000, "BFToken: err value");
        sellFee = _sellFee;
        buyFee = _buyFee;
    }
}

interface ISwapRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IFund {
    function fund(uint256 amount) external;
}

interface ISwapPair is IERC20 {
    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function sync() external;
}

interface ISwapFactory {
    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function WETH() external view returns (address);
}

interface ITokenDistributor {
    function fund(uint256 amount) external;
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @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}.
 *
 * 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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * Both 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner`'s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`��s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`��s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`��s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"foundation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":[],"name":"Launch","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":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"SetBL","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"SetWL","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":"value","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":"buyFee","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":"","type":"address"}],"name":"isBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludeFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"isSwap","outputs":[{"internalType":"bool","name":"isSell","type":"bool"},{"internalType":"bool","name":"isBuy","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool","name":"isExclude","type":"bool"}],"name":"multiSetExcludeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"multisetBlackList","outputs":[],"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":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setFees","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":"value","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":"value","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"}]

608060405234801561000f575f5ffd5b506040516114a93803806114a983398101604081905261002e91610178565b60408051808201825260068082526550797468696160d01b60208084018290528451808601909552918452908301523391600361006b838261023d565b506004610078828261023d565b5050506001600160a01b0381166100a857604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100b181610127565b5060646008819055600955335f908152600660205260408082208054600160ff1991821681179092556001600160a01b03949094168352908220805484168217905561dead9091527f1aecba4ebe7a4e0673e4891b2b092b2228e4322380b579fb494fad3da8586e2280549092161790556102f7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f60208284031215610188575f5ffd5b81516001600160a01b038116811461019e575f5ffd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806101cd57607f821691505b6020821081036101eb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561023857805f5260205f20601f840160051c810160208510156102165750805b601f840160051c820191505b81811015610235575f8155600101610222565b50505b505050565b81516001600160401b03811115610256576102566101a5565b61026a8161026484546101b9565b846101f1565b6020601f82116001811461029c575f83156102855750848201515b5f19600385901b1c1916600184901b178455610235565b5f84815260208120601f198516915b828110156102cb57878501518255602094850194600190920191016102ab565b50848210156102e857868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6111a5806103045f395ff3fe608060405234801561000f575f5ffd5b5060043610610132575f3560e01c806347062402116100b4578063a9059cbb11610079578063a9059cbb1461025e578063b36d691914610271578063d8891faa14610293578063dcace9ab146102bd578063dd62ed3e146102df578063f2fde38b14610317575f5ffd5b8063470624021461020257806370a082311461020b578063715018a6146102335780638da5cb5b1461023b57806395d89b4114610256575f5ffd5b80631953d524116100fa5780631953d524146101b157806323b872dd146101c45780632b14ca56146101d7578063313ce567146101e057806340c10f19146101ef575f5ffd5b806306fdde0314610136578063070ba19014610154578063095ea7b3146101695780630b78f9c01461018c57806318160ddd1461019f575b5f5ffd5b61013e61032a565b60405161014b9190610e5e565b60405180910390f35b610167610162366004610eda565b6103ba565b005b61017c610177366004610fb7565b610495565b604051901515815260200161014b565b61016761019a366004610fe1565b6104ae565b6002545b60405190815260200161014b565b6101676101bf366004610eda565b610515565b61017c6101d2366004611001565b6105eb565b6101a360085481565b6040516012815260200161014b565b6101676101fd366004610fb7565b61060e565b6101a360095481565b6101a361021936600461103f565b6001600160a01b03165f9081526020819052604090205490565b610167610624565b6005546040516001600160a01b03909116815260200161014b565b61013e610637565b61017c61026c366004610fb7565b610646565b61017c61027f36600461103f565b60076020525f908152604090205460ff1681565b6102a66102a1366004611061565b610653565b60408051921515835290151560208301520161014b565b61017c6102cb36600461103f565b60066020525f908152604090205460ff1681565b6101a36102ed366004611061565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61016761032536600461103f565b61093a565b60606003805461033990611098565b80601f016020809104026020016040519081016040528092919081815260200182805461036590611098565b80156103b05780601f10610387576101008083540402835291602001916103b0565b820191905f5260205f20905b81548152906001019060200180831161039357829003601f168201915b5050505050905090565b6103c2610977565b5f5b8251811015610490578160065f8584815181106103e3576103e36110d0565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f8278de8ed1ceede64cb0ebd95cea223667acd90324e209fb2273715225dcf1d8838281518110610453576104536110d0565b6020026020010151836040516104809291906001600160a01b039290921682521515602082015260400190565b60405180910390a16001016103c4565b505050565b5f336104a28185856109a4565b60019150505b92915050565b6104b6610977565b6127106104c382846110f8565b1061050a5760405162461bcd60e51b81526020600482015260126024820152714246546f6b656e3a206572722076616c756560701b60448201526064015b60405180910390fd5b600891909155600955565b61051d610977565b5f5b8251811015610490578160075f85848151811061053e5761053e6110d0565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055507fb162442f24fca622e06f9e4bb36c005d06f23cd1af40024e80e50df0e73404f58382815181106105ae576105ae6110d0565b6020026020010151836040516105db9291906001600160a01b039290921682521515602082015260400190565b60405180910390a160010161051f565b5f336105f88582856109b1565b610603858585610a2d565b506001949350505050565b610616610977565b6106208282610a8a565b5050565b61062c610977565b6106355f610abe565b565b60606004805461033990611098565b5f336104a2818585610a2d565b5f80833b156107c657836001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156106b6575060408051601f3d908101601f191682019092526106b39181019061110b565b60015b156107c65750306001600160a01b0316846001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610702573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610726919061110b565b6001600160a01b031614806107ab5750306001600160a01b0316846001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561077c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a0919061110b565b6001600160a01b0316145b156107bb57505f90506001610933565b50600190505f610933565b823b1561093357826001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610827575060408051601f3d908101601f191682019092526108249181019061110b565b60015b156109335750306001600160a01b0316836001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610873573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610897919061110b565b6001600160a01b0316148061091c5750306001600160a01b0316836001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ed573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610911919061110b565b6001600160a01b0316145b1561092c5750600190505f610933565b505f905060015b9250929050565b610942610977565b6001600160a01b03811661096b57604051631e4fbdf760e01b81525f6004820152602401610501565b61097481610abe565b50565b6005546001600160a01b031633146106355760405163118cdaa760e01b8152336004820152602401610501565b6104908383836001610b0f565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610a275781811015610a1957604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610501565b610a2784848484035f610b0f565b50505050565b6001600160a01b038316610a5657604051634b637e8f60e11b81525f6004820152602401610501565b6001600160a01b038216610a7f5760405163ec442f0560e01b81525f6004820152602401610501565b610490838383610be1565b6001600160a01b038216610ab35760405163ec442f0560e01b81525f6004820152602401610501565b6106205f8383610be1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610b385760405163e602df0560e01b81525f6004820152602401610501565b6001600160a01b038316610b6157604051634a1406b160e11b81525f6004820152602401610501565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a2757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bd391815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526006602052604090205460ff1680610c1e57506001600160a01b0382165f9081526006602052604090205460ff165b15610c2e57610490838383610d38565b6001600160a01b0383165f9081526007602052604090205460ff16158015610c6e57506001600160a01b0382165f9081526007602052604090205460ff16155b610cb15760405162461bcd60e51b81526020600482015260146024820152731091951bdad95b8e9a5cc8189b1858dadb1a5cdd60621b6044820152606401610501565b5f5f610cbd8585610653565b915091508015610d0e575f61271060095485610cd99190611126565b610ce3919061113d565b9050610cf28661dead83610d38565b610d068686610d01848861115c565b610d38565b505050505050565b8115610d26575f61271060085485610cd99190611126565b610d31858585610d38565b5050505050565b6001600160a01b038316610d62578060025f828254610d5791906110f8565b90915550610dd29050565b6001600160a01b0383165f9081526020819052604090205481811015610db45760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610501565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610dee57600280548290039055610e0c565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e5191815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b634e487b7160e01b5f52604160045260245ffd5b6001600160a01b0381168114610974575f5ffd5b8035610ec681610ea7565b919050565b80358015158114610ec6575f5ffd5b5f5f60408385031215610eeb575f5ffd5b823567ffffffffffffffff811115610f01575f5ffd5b8301601f81018513610f11575f5ffd5b803567ffffffffffffffff811115610f2b57610f2b610e93565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715610f5857610f58610e93565b604052918252602081840181019290810188841115610f75575f5ffd5b6020850194505b83851015610f9b57610f8d85610ebb565b815260209485019401610f7c565b509450610fae9250505060208401610ecb565b90509250929050565b5f5f60408385031215610fc8575f5ffd5b8235610fd381610ea7565b946020939093013593505050565b5f5f60408385031215610ff2575f5ffd5b50508035926020909101359150565b5f5f5f60608486031215611013575f5ffd5b833561101e81610ea7565b9250602084013561102e81610ea7565b929592945050506040919091013590565b5f6020828403121561104f575f5ffd5b813561105a81610ea7565b9392505050565b5f5f60408385031215611072575f5ffd5b823561107d81610ea7565b9150602083013561108d81610ea7565b809150509250929050565b600181811c908216806110ac57607f821691505b6020821081036110ca57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156104a8576104a86110e4565b5f6020828403121561111b575f5ffd5b815161105a81610ea7565b80820281158282048414176104a8576104a86110e4565b5f8261115757634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104a8576104a86110e456fea2646970667358221220000df90f0d5876957fe8ee2b7bac2391baa3ea7bc4f5307646605eb6d20b1acc64736f6c634300081e0033000000000000000000000000eb4f1685aadcf4075d03602c5f24fb4bf781305d

Deployed Bytecode

0x608060405234801561000f575f5ffd5b5060043610610132575f3560e01c806347062402116100b4578063a9059cbb11610079578063a9059cbb1461025e578063b36d691914610271578063d8891faa14610293578063dcace9ab146102bd578063dd62ed3e146102df578063f2fde38b14610317575f5ffd5b8063470624021461020257806370a082311461020b578063715018a6146102335780638da5cb5b1461023b57806395d89b4114610256575f5ffd5b80631953d524116100fa5780631953d524146101b157806323b872dd146101c45780632b14ca56146101d7578063313ce567146101e057806340c10f19146101ef575f5ffd5b806306fdde0314610136578063070ba19014610154578063095ea7b3146101695780630b78f9c01461018c57806318160ddd1461019f575b5f5ffd5b61013e61032a565b60405161014b9190610e5e565b60405180910390f35b610167610162366004610eda565b6103ba565b005b61017c610177366004610fb7565b610495565b604051901515815260200161014b565b61016761019a366004610fe1565b6104ae565b6002545b60405190815260200161014b565b6101676101bf366004610eda565b610515565b61017c6101d2366004611001565b6105eb565b6101a360085481565b6040516012815260200161014b565b6101676101fd366004610fb7565b61060e565b6101a360095481565b6101a361021936600461103f565b6001600160a01b03165f9081526020819052604090205490565b610167610624565b6005546040516001600160a01b03909116815260200161014b565b61013e610637565b61017c61026c366004610fb7565b610646565b61017c61027f36600461103f565b60076020525f908152604090205460ff1681565b6102a66102a1366004611061565b610653565b60408051921515835290151560208301520161014b565b61017c6102cb36600461103f565b60066020525f908152604090205460ff1681565b6101a36102ed366004611061565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61016761032536600461103f565b61093a565b60606003805461033990611098565b80601f016020809104026020016040519081016040528092919081815260200182805461036590611098565b80156103b05780601f10610387576101008083540402835291602001916103b0565b820191905f5260205f20905b81548152906001019060200180831161039357829003601f168201915b5050505050905090565b6103c2610977565b5f5b8251811015610490578160065f8584815181106103e3576103e36110d0565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f8278de8ed1ceede64cb0ebd95cea223667acd90324e209fb2273715225dcf1d8838281518110610453576104536110d0565b6020026020010151836040516104809291906001600160a01b039290921682521515602082015260400190565b60405180910390a16001016103c4565b505050565b5f336104a28185856109a4565b60019150505b92915050565b6104b6610977565b6127106104c382846110f8565b1061050a5760405162461bcd60e51b81526020600482015260126024820152714246546f6b656e3a206572722076616c756560701b60448201526064015b60405180910390fd5b600891909155600955565b61051d610977565b5f5b8251811015610490578160075f85848151811061053e5761053e6110d0565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055507fb162442f24fca622e06f9e4bb36c005d06f23cd1af40024e80e50df0e73404f58382815181106105ae576105ae6110d0565b6020026020010151836040516105db9291906001600160a01b039290921682521515602082015260400190565b60405180910390a160010161051f565b5f336105f88582856109b1565b610603858585610a2d565b506001949350505050565b610616610977565b6106208282610a8a565b5050565b61062c610977565b6106355f610abe565b565b60606004805461033990611098565b5f336104a2818585610a2d565b5f80833b156107c657836001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156106b6575060408051601f3d908101601f191682019092526106b39181019061110b565b60015b156107c65750306001600160a01b0316846001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610702573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610726919061110b565b6001600160a01b031614806107ab5750306001600160a01b0316846001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561077c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a0919061110b565b6001600160a01b0316145b156107bb57505f90506001610933565b50600190505f610933565b823b1561093357826001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610827575060408051601f3d908101601f191682019092526108249181019061110b565b60015b156109335750306001600160a01b0316836001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610873573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610897919061110b565b6001600160a01b0316148061091c5750306001600160a01b0316836001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ed573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610911919061110b565b6001600160a01b0316145b1561092c5750600190505f610933565b505f905060015b9250929050565b610942610977565b6001600160a01b03811661096b57604051631e4fbdf760e01b81525f6004820152602401610501565b61097481610abe565b50565b6005546001600160a01b031633146106355760405163118cdaa760e01b8152336004820152602401610501565b6104908383836001610b0f565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610a275781811015610a1957604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610501565b610a2784848484035f610b0f565b50505050565b6001600160a01b038316610a5657604051634b637e8f60e11b81525f6004820152602401610501565b6001600160a01b038216610a7f5760405163ec442f0560e01b81525f6004820152602401610501565b610490838383610be1565b6001600160a01b038216610ab35760405163ec442f0560e01b81525f6004820152602401610501565b6106205f8383610be1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610b385760405163e602df0560e01b81525f6004820152602401610501565b6001600160a01b038316610b6157604051634a1406b160e11b81525f6004820152602401610501565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a2757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bd391815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526006602052604090205460ff1680610c1e57506001600160a01b0382165f9081526006602052604090205460ff165b15610c2e57610490838383610d38565b6001600160a01b0383165f9081526007602052604090205460ff16158015610c6e57506001600160a01b0382165f9081526007602052604090205460ff16155b610cb15760405162461bcd60e51b81526020600482015260146024820152731091951bdad95b8e9a5cc8189b1858dadb1a5cdd60621b6044820152606401610501565b5f5f610cbd8585610653565b915091508015610d0e575f61271060095485610cd99190611126565b610ce3919061113d565b9050610cf28661dead83610d38565b610d068686610d01848861115c565b610d38565b505050505050565b8115610d26575f61271060085485610cd99190611126565b610d31858585610d38565b5050505050565b6001600160a01b038316610d62578060025f828254610d5791906110f8565b90915550610dd29050565b6001600160a01b0383165f9081526020819052604090205481811015610db45760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610501565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610dee57600280548290039055610e0c565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e5191815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b634e487b7160e01b5f52604160045260245ffd5b6001600160a01b0381168114610974575f5ffd5b8035610ec681610ea7565b919050565b80358015158114610ec6575f5ffd5b5f5f60408385031215610eeb575f5ffd5b823567ffffffffffffffff811115610f01575f5ffd5b8301601f81018513610f11575f5ffd5b803567ffffffffffffffff811115610f2b57610f2b610e93565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715610f5857610f58610e93565b604052918252602081840181019290810188841115610f75575f5ffd5b6020850194505b83851015610f9b57610f8d85610ebb565b815260209485019401610f7c565b509450610fae9250505060208401610ecb565b90509250929050565b5f5f60408385031215610fc8575f5ffd5b8235610fd381610ea7565b946020939093013593505050565b5f5f60408385031215610ff2575f5ffd5b50508035926020909101359150565b5f5f5f60608486031215611013575f5ffd5b833561101e81610ea7565b9250602084013561102e81610ea7565b929592945050506040919091013590565b5f6020828403121561104f575f5ffd5b813561105a81610ea7565b9392505050565b5f5f60408385031215611072575f5ffd5b823561107d81610ea7565b9150602083013561108d81610ea7565b809150509250929050565b600181811c908216806110ac57607f821691505b6020821081036110ca57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156104a8576104a86110e4565b5f6020828403121561111b575f5ffd5b815161105a81610ea7565b80820281158282048414176104a8576104a86110e4565b5f8261115757634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104a8576104a86110e456fea2646970667358221220000df90f0d5876957fe8ee2b7bac2391baa3ea7bc4f5307646605eb6d20b1acc64736f6c634300081e0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000eb4f1685aadcf4075d03602c5f24fb4bf781305d

-----Decoded View---------------
Arg [0] : foundation (address): 0xeB4F1685aadcF4075d03602C5F24Fb4bF781305D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000eb4f1685aadcf4075d03602c5f24fb4bf781305d


Deployed Bytecode Sourcemap

180:3338:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1744:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3045:266:6;;;;;;:::i;:::-;;:::i;:::-;;3963:186:2;;;;;;:::i;:::-;;:::i;:::-;;;2758:14:7;;2751:22;2733:41;;2721:2;2706:18;3963:186:2;2593:187:7;3317:199:6;;;;;;:::i;:::-;;:::i;2814:97:2:-;2892:12;;2814:97;;;3282:25:7;;;3270:2;3255:18;2814:97:2;3136:177:7;2600:249:6;;;;;;:::i;:::-;;:::i;4741:244:2:-;;;;;;:::i;:::-;;:::i;325:22:6:-;;;;;;2672:82:2;;;2745:2;3973:36:7;;3961:2;3946:18;2672:82:2;3831:184:7;755:92:6;;;;;;:::i;:::-;;:::i;353:21::-;;;;;;2969:116:2;;;;;;:::i;:::-;-1:-1:-1;;;;;3060:18:2;3034:7;3060:18;;;;;;;;;;;;2969:116;2293:101:0;;;:::i;1638:85::-;1710:6;;1638:85;;-1:-1:-1;;;;;1710:6:0;;;4418:51:7;;4406:2;4391:18;1638:85:0;4272:203:7;1946:93:2;;;:::i;3280:178::-;;;;;;:::i;:::-;;:::i;275:43:6:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;1672:922;;;;;;:::i;:::-;;:::i;:::-;;;;5060:14:7;;5053:22;5035:41;;5119:14;;5112:22;5107:2;5092:18;;5085:50;5008:18;1672:922:6;4873:268:7;225:44:6;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3516:140:2;;;;;;:::i;:::-;-1:-1:-1;;;;;3622:18:2;;;3596:7;3622:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3516:140;2543:215:0;;;;;;:::i;:::-;;:::i;1744:89:2:-;1789:13;1821:5;1814:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1744:89;:::o;3045:266:6:-;1531:13:0;:11;:13::i;:::-;3167:9:6::1;3162:143;3182:5;:12;3178:1;:16;3162:143;;;3240:9;3215:12;:22;3228:5;3234:1;3228:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3215:22:6::1;-1:-1:-1::0;;;;;3215:22:6::1;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;3268:26;3274:5;3280:1;3274:8;;;;;;;;:::i;:::-;;;;;;;3284:9;3268:26;;;;;;-1:-1:-1::0;;;;;5849:32:7;;;;5831:51;;5925:14;5918:22;5913:2;5898:18;;5891:50;5819:2;5804:18;;5663:284;3268:26:6::1;;;;;;;;3196:3;;3162:143;;;;3045:266:::0;;:::o;3963:186:2:-;4036:4;735:10:5;4090:31:2;735:10:5;4106:7:2;4115:5;4090:8;:31::i;:::-;4138:4;4131:11;;;3963:186;;;;;:::o;3317:199:6:-;1531:13:0;:11;:13::i;:::-;3427:5:6::1;3406:18;3417:7:::0;3406:8;:18:::1;:::i;:::-;:26;3398:57;;;::::0;-1:-1:-1;;;3398:57:6;;6416:2:7;3398:57:6::1;::::0;::::1;6398:21:7::0;6455:2;6435:18;;;6428:30;-1:-1:-1;;;6474:18:7;;;6467:48;6532:18;;3398:57:6::1;;;;;;;;;3465:7;:18:::0;;;;3493:6:::1;:16:::0;3317:199::o;2600:249::-;1531:13:0;:11;:13::i;:::-;2716:9:6::1;2711:132;2731:5;:12;2727:1;:16;2711:132;;;2788:4;2764:11;:21;2776:5;2782:1;2776:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;2764:21:6::1;-1:-1:-1::0;;;;;2764:21:6::1;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;2811:21;2817:5;2823:1;2817:8;;;;;;;;:::i;:::-;;;;;;;2827:4;2811:21;;;;;;-1:-1:-1::0;;;;;5849:32:7;;;;5831:51;;5925:14;5918:22;5913:2;5898:18;;5891:50;5819:2;5804:18;;5663:284;2811:21:6::1;;;;;;;;2745:3;;2711:132;;4741:244:2::0;4828:4;735:10:5;4884:37:2;4900:4;735:10:5;4915:5:2;4884:15;:37::i;:::-;4931:26;4941:4;4947:2;4951:5;4931:9;:26::i;:::-;-1:-1:-1;4974:4:2;;4741:244;-1:-1:-1;;;;4741:244:2:o;755:92:6:-;1531:13:0;:11;:13::i;:::-;824:16:6::1;830:2;833:6;824:5;:16::i;:::-;755:92:::0;;:::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;1946:93:2:-;1993:13;2025:7;2018:14;;;;;:::i;3280:178::-;3349:4;735:10:5;3403:27:2;735:10:5;3420:2:2;3424:5;3403:9;:27::i;1672:922:6:-;1759:11;;2981:17;;3024:8;1798:394;;1848:4;-1:-1:-1;;;;;1838:22:6;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1838:24:6;;;;;;;;-1:-1:-1;;1838:24:6;;;;;;;;;;;;:::i;:::-;;;1834:348;;;;1942:4;-1:-1:-1;;;;;1906:41:6;1916:4;-1:-1:-1;;;;;1906:22:6;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1906:41:6;;:106;;;;2007:4;-1:-1:-1;;;;;1971:41:6;1981:4;-1:-1:-1;;;;;1971:22:6;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1971:41:6;;1906:106;1881:278;;;-1:-1:-1;2061:5:6;;-1:-1:-1;2068:4:6;2053:20;;1881:278;-1:-1:-1;2128:4:6;;-1:-1:-1;2134:5:6;2120:20;;1881:278;2981:17;;3024:8;2202:386;;2250:2;-1:-1:-1;;;;;2240:20:6;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2240:22:6;;;;;;;;-1:-1:-1;;2240:22:6;;;;;;;;;;;;:::i;:::-;;;2236:342;;;;2340:4;-1:-1:-1;;;;;2306:39:6;2316:2;-1:-1:-1;;;;;2306:20:6;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2306:39:6;;:102;;;;2403:4;-1:-1:-1;;;;;2369:39:6;2379:2;-1:-1:-1;;;;;2369:20:6;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2369:39:6;;2306:102;2281:274;;;-1:-1:-1;2457:4:6;;-1:-1:-1;2463:5:6;2449:20;;2281:274;-1:-1:-1;2524:5:6;;-1:-1:-1;2531:4:6;2281:274;1672:922;;;;;:::o;2543:215:0:-;1531:13;:11;:13::i;:::-;-1:-1:-1;;;;;2627:22:0;::::1;2623:91;;2672:31;::::0;-1:-1:-1;;;2672:31:0;;2700:1:::1;2672:31;::::0;::::1;4418:51:7::0;4391:18;;2672:31:0::1;4272:203:7::0;2623:91:0::1;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;1796:162::-;1710:6;;-1:-1:-1;;;;;1710:6:0;735:10:5;1855:23:0;1851:101;;1901:40;;-1:-1:-1;;;1901:40:0;;735:10:5;1901:40:0;;;4418:51:7;4391:18;;1901:40:0;4272:203:7;8691:128:2;8775:37;8784:5;8791:7;8800:5;8807:4;8775:8;:37::i;10380:476::-;-1:-1:-1;;;;;3622:18:2;;;10479:24;3622:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10545:36:2;;10541:309;;;10620:5;10601:16;:24;10597:130;;;10652:60;;-1:-1:-1;;;10652:60:2;;-1:-1:-1;;;;;7037:32:7;;10652:60:2;;;7019:51:7;7086:18;;;7079:34;;;7129:18;;;7122:34;;;6992:18;;10652:60:2;6817:345:7;10597:130:2;10768:57;10777:5;10784:7;10812:5;10793:16;:24;10819:5;10768:8;:57::i;:::-;10469:387;10380:476;;;:::o;5358:300::-;-1:-1:-1;;;;;5441:18:2;;5437:86;;5482:30;;-1:-1:-1;;;5482:30:2;;5509:1;5482:30;;;4418:51:7;4391:18;;5482:30:2;4272:203:7;5437:86:2;-1:-1:-1;;;;;5536:16:2;;5532:86;;5575:32;;-1:-1:-1;;;5575:32:2;;5604:1;5575:32;;;4418:51:7;4391:18;;5575:32:2;4272:203:7;5532:86:2;5627:24;5635:4;5641:2;5645:5;5627:7;:24::i;7423:208::-;-1:-1:-1;;;;;7493:21:2;;7489:91;;7537:32;;-1:-1:-1;;;7537:32:2;;7566:1;7537:32;;;4418:51:7;4391:18;;7537:32:2;4272:203:7;7489:91:2;7589:35;7605:1;7609:7;7618:5;7589:7;:35::i;2912:187:0:-;3004:6;;;-1:-1:-1;;;;;3020:17:0;;;-1:-1:-1;;;;;;3020:17:0;;;;;;;3052:40;;3004:6;;;3020:17;3004:6;;3052:40;;2985:16;;3052:40;2975:124;2912:187;:::o;9666:432:2:-;-1:-1:-1;;;;;9778:19:2;;9774:89;;9820:32;;-1:-1:-1;;;9820:32:2;;9849:1;9820:32;;;4418:51:7;4391:18;;9820:32:2;4272:203:7;9774:89:2;-1:-1:-1;;;;;9876:21:2;;9872:90;;9920:31;;-1:-1:-1;;;9920:31:2;;9948:1;9920:31;;;4418:51:7;4391:18;;9920:31:2;4272:203:7;9872:90:2;-1:-1:-1;;;;;9971:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10016:76;;;;10066:7;-1:-1:-1;;;;;10050:31:2;10059:5;-1:-1:-1;;;;;10050:31:2;;10075:5;10050:31;;;;3282:25:7;;3270:2;3255:18;;3136:177;10050:31:2;;;;;;;;9666:432;;;;:::o;853:813:6:-;-1:-1:-1;;;;;974:18:6;;;;;;:12;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;996:16:6;;;;;;:12;:16;;;;;;;;974:38;970:107;;;1035:31;1049:4;1055:2;1059:6;1035:13;:31::i;970:107::-;-1:-1:-1;;;;;1096:17:6;;;;;;:11;:17;;;;;;;;1095:18;:38;;;;-1:-1:-1;;;;;;1118:15:6;;;;;;:11;:15;;;;;;;;1117:16;1095:38;1087:71;;;;-1:-1:-1;;;1087:71:6;;7369:2:7;1087:71:6;;;7351:21:7;7408:2;7388:18;;;7381:30;-1:-1:-1;;;7427:18:7;;;7420:50;7487:18;;1087:71:6;7167:344:7;1087:71:6;1170:11;1183:10;1197:16;1204:4;1210:2;1197:6;:16::i;:::-;1169:44;;;;1228:5;1224:191;;;1249:12;1284:5;1274:6;;1265;:15;;;;:::i;:::-;1264:25;;;;:::i;:::-;1249:40;;1303:42;1317:4;1331:6;1340:4;1303:13;:42::i;:::-;1366:38;1380:4;1386:2;1390:13;1399:4;1390:6;:13;:::i;:::-;1366;:38::i;:::-;1359:45;;;853:813;;;:::o;1224:191::-;1429:6;1425:193;;;1451:12;1487:5;1476:7;;1467:6;:16;;;;:::i;1425:193::-;1628:31;1642:4;1648:2;1652:6;1628:13;:31::i;:::-;960:706;;853:813;;;:::o;5973:1107:2:-;-1:-1:-1;;;;;6062:18:2;;6058:540;;6214:5;6198:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6058:540:2;;-1:-1:-1;6058:540:2;;-1:-1:-1;;;;;6272:15:2;;6250:19;6272:15;;;;;;;;;;;6305:19;;;6301:115;;;6351:50;;-1:-1:-1;;;6351:50:2;;-1:-1:-1;;;;;7037:32:7;;6351:50:2;;;7019:51:7;7086:18;;;7079:34;;;7129:18;;;7122:34;;;6992:18;;6351:50:2;6817:345:7;6301:115:2;-1:-1:-1;;;;;6536:15:2;;:9;:15;;;;;;;;;;6554:19;;;;6536:37;;6058:540;-1:-1:-1;;;;;6612:16:2;;6608:425;;6775:12;:21;;;;;;;6608:425;;;-1:-1:-1;;;;;6986:13:2;;:9;:13;;;;;;;;;;:22;;;;;;6608:425;7063:2;-1:-1:-1;;;;;7048:25:2;7057:4;-1:-1:-1;;;;;7048:25:2;;7067:5;7048:25;;;;3282::7;;3270:2;3255:18;;3136:177;7048:25:2;;;;;;;;5973:1107;;;:::o;14:418:7:-;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:127::-;498:10;493:3;489:20;486:1;479:31;529:4;526:1;519:15;553:4;550:1;543:15;569:131;-1:-1:-1;;;;;644:31:7;;634:42;;624:70;;690:1;687;680:12;705:134;773:20;;802:31;773:20;802:31;:::i;:::-;705:134;;;:::o;844:160::-;909:20;;965:13;;958:21;948:32;;938:60;;994:1;991;984:12;1009:1207;1099:6;1107;1160:2;1148:9;1139:7;1135:23;1131:32;1128:52;;;1176:1;1173;1166:12;1128:52;1216:9;1203:23;1249:18;1241:6;1238:30;1235:50;;;1281:1;1278;1271:12;1235:50;1304:22;;1357:4;1349:13;;1345:27;-1:-1:-1;1335:55:7;;1386:1;1383;1376:12;1335:55;1426:2;1413:16;1452:18;1444:6;1441:30;1438:56;;;1474:18;;:::i;:::-;1520:6;1517:1;1513:14;1556:2;1550:9;1619:2;1615:7;1610:2;1606;1602:11;1598:25;1590:6;1586:38;1690:6;1678:10;1675:22;1654:18;1642:10;1639:34;1636:62;1633:88;;;1701:18;;:::i;:::-;1737:2;1730:22;1787;;;1837:4;1869:11;;;1865:22;;;1787;1825:17;;1899:19;;;1896:39;;;1931:1;1928;1921:12;1896:39;1963:4;1959:2;1955:13;1944:24;;1977:152;1993:6;1988:3;1985:15;1977:152;;;2061:23;2080:3;2061:23;:::i;:::-;2049:36;;2114:4;2010:14;;;;2105;1977:152;;;-1:-1:-1;2148:6:7;-1:-1:-1;2173:37:7;;-1:-1:-1;;;2204:4:7;2189:20;;2173:37;:::i;:::-;2163:47;;1009:1207;;;;;:::o;2221:367::-;2289:6;2297;2350:2;2338:9;2329:7;2325:23;2321:32;2318:52;;;2366:1;2363;2356:12;2318:52;2405:9;2392:23;2424:31;2449:5;2424:31;:::i;:::-;2474:5;2552:2;2537:18;;;;2524:32;;-1:-1:-1;;;2221:367:7:o;2785:346::-;2853:6;2861;2914:2;2902:9;2893:7;2889:23;2885:32;2882:52;;;2930:1;2927;2920:12;2882:52;-1:-1:-1;;2975:23:7;;;3095:2;3080:18;;;3067:32;;-1:-1:-1;2785:346:7:o;3318:508::-;3395:6;3403;3411;3464:2;3452:9;3443:7;3439:23;3435:32;3432:52;;;3480:1;3477;3470:12;3432:52;3519:9;3506:23;3538:31;3563:5;3538:31;:::i;:::-;3588:5;-1:-1:-1;3645:2:7;3630:18;;3617:32;3658:33;3617:32;3658:33;:::i;:::-;3318:508;;3710:7;;-1:-1:-1;;;3790:2:7;3775:18;;;;3762:32;;3318:508::o;4020:247::-;4079:6;4132:2;4120:9;4111:7;4107:23;4103:32;4100:52;;;4148:1;4145;4138:12;4100:52;4187:9;4174:23;4206:31;4231:5;4206:31;:::i;:::-;4256:5;4020:247;-1:-1:-1;;;4020:247:7:o;4480:388::-;4548:6;4556;4609:2;4597:9;4588:7;4584:23;4580:32;4577:52;;;4625:1;4622;4615:12;4577:52;4664:9;4651:23;4683:31;4708:5;4683:31;:::i;:::-;4733:5;-1:-1:-1;4790:2:7;4775:18;;4762:32;4803:33;4762:32;4803:33;:::i;:::-;4855:7;4845:17;;;4480:388;;;;;:::o;5146:380::-;5225:1;5221:12;;;;5268;;;5289:61;;5343:4;5335:6;5331:17;5321:27;;5289:61;5396:2;5388:6;5385:14;5365:18;5362:38;5359:161;;5442:10;5437:3;5433:20;5430:1;5423:31;5477:4;5474:1;5467:15;5505:4;5502:1;5495:15;5359:161;;5146:380;;;:::o;5531:127::-;5592:10;5587:3;5583:20;5580:1;5573:31;5623:4;5620:1;5613:15;5647:4;5644:1;5637:15;5952:127;6013:10;6008:3;6004:20;6001:1;5994:31;6044:4;6041:1;6034:15;6068:4;6065:1;6058:15;6084:125;6149:9;;;6170:10;;;6167:36;;;6183:18;;:::i;6561:251::-;6631:6;6684:2;6672:9;6663:7;6659:23;6655:32;6652:52;;;6700:1;6697;6690:12;6652:52;6732:9;6726:16;6751:31;6776:5;6751:31;:::i;7516:168::-;7589:9;;;7620;;7637:15;;;7631:22;;7617:37;7607:71;;7658:18;;:::i;7689:217::-;7729:1;7755;7745:132;;7799:10;7794:3;7790:20;7787:1;7780:31;7834:4;7831:1;7824:15;7862:4;7859:1;7852:15;7745:132;-1:-1:-1;7891:9:7;;7689:217::o;7911:128::-;7978:9;;;7999:11;;;7996:37;;;8013:18;;:::i

Swarm Source

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