ETH Price: $2,579.71 (-4.31%)

Token

Steak (STEAK)
 

Overview

Max Total Supply

100,000 STEAK

Holders

151

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
33.95 STEAK

Value
$0.00
0x3a88937eec89b8637a96eb74a790b879206274d5
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:
Steak

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-20
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;

/**
 * @dev Interface for the DEX version 2 factory contract
 */
interface IDexV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

/**
 * @dev Interface for the DEX version 2 router contract
 */
interface IDexV2Router {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/**
 * @dev Interface for the DEX version 2 pair contract
 */
interface IDexV2Pair {
    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
}

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

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

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

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 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 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual 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}.
     *
     * 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 `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 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:
     * ```
     * 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);
            }
        }
    }
}

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

/**
 * @dev ERC20 token with taxation and liquidity swap functionalities.
 */
contract Steak is ERC20, Ownable {
    uint8 public buyTaxPercentage = 3;
    uint8 public sellTaxPercentage = 10;
    uint256 public launchTime = 0;
    uint32 private _day = 1 days;
    bool private _inSwapAndLiquify;
    mapping(address => bool) public isExcludedFromTax;
    mapping(address => bool) public dexPairStatus;
    mapping(address => address) public pairToRouter;
    mapping(address => address) public routerToPair;
    address public developmentWallet;

    event TaxExclusionUpdated(address indexed account, bool indexed isExcluded);
    event DevelopmentWalletChanged(address indexed oldWallet, address indexed newWallet);
    event NewRouterAdded(address indexed routerAddress, address indexed pairAddress);
    event DexPairStatusChanged(address indexed pair, bool status);

    modifier lockTheSwap() {
        _inSwapAndLiquify = true;
        _;
        _inSwapAndLiquify = false;
    }

    /**
     * @dev Constructor to initialize the Steak token contract.
     */
    constructor() ERC20("Steak", "STEAK") Ownable(msg.sender) {
        _mint(msg.sender, 100_000 * 10 ** decimals());

        developmentWallet = msg.sender;
        isExcludedFromTax[msg.sender] = true;
    }

    /**
     * @dev Adds a new DEX router to the contract.
     * @param routerAddress The address of the new DEX router.
     * Requirements:
     * - Caller must be the owner of the contract.
     */
    function addNewDexRouter(address routerAddress) public onlyOwner {
        IDexV2Router newRouter = IDexV2Router(routerAddress);
        address newPair;
        try IDexV2Factory(newRouter.factory()).createPair(address(this), newRouter.WETH()){ }
        catch { }
        newPair = IDexV2Factory(newRouter.factory()).getPair(address(this), newRouter.WETH());
        dexPairStatus[newPair] = true;
        pairToRouter[newPair] = routerAddress;
        routerToPair[routerAddress] = newPair;

        emit NewRouterAdded(routerAddress, newPair);
    }

    /**
     * @dev Sets the status of a DEX pair.
     * @param pair The address of the DEX pair.
     * @param status The status to set for the DEX pair.
     * Requirements:
     * - Caller must be the owner of the contract.
     */
    function setDexPairStatus(address pair, bool status) external onlyOwner {
        dexPairStatus[pair] = status;

        emit DexPairStatusChanged(pair, status);
    }

    /**
     * @dev Converts the accumulated tokens to ETH.
     */
    function _swapTokensForEth(uint256 tokenAmount, address pair) private lockTheSwap {
        IDexV2Router dexRouter = IDexV2Router(pairToRouter[pair]);
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

        _approve(address(this), address(dexRouter), tokenAmount);

        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    /**
     * @dev Internal function to update balances and apply taxes on token transfers.
     * @param from Address from which tokens are transferred.
     * @param to Address to which tokens are transferred.
     * @param value Amount of tokens transferred.
     */
    function _update(address from, address to, uint256 value) internal override {
        if (dexPairStatus[to] && launchTime == 0) { launchTime = block.timestamp; }

        if (launchTime != 0) {
            uint256 timePassedSinceLaunch = block.timestamp - launchTime;
            if (timePassedSinceLaunch > (28 * _day)) {
                buyTaxPercentage = sellTaxPercentage = 2;
            } 
            else if (timePassedSinceLaunch >= (14 * _day)) {
                buyTaxPercentage = 2;
                sellTaxPercentage = 3;
            } 
            else if (timePassedSinceLaunch >= (7 * _day)) {
                buyTaxPercentage = 2;
                sellTaxPercentage = 4;
            } 
            else if (timePassedSinceLaunch >= _day) {
                buyTaxPercentage = 3;
                sellTaxPercentage = 5;
            } 
            else {
                buyTaxPercentage = 3;
                sellTaxPercentage = 10;
            }
        }

        if ((dexPairStatus[from] || dexPairStatus[to]) && !(isExcludedFromTax[from] || isExcludedFromTax[to]) && !_inSwapAndLiquify) {
            uint256 taxValue;
            if (dexPairStatus[to] && pairToRouter[to] != address(0)) { // sell
                uint256 contractBalance = balanceOf(address(this));
                uint256 tokenBalanceInPool;
                uint256 ethBalanceInPool;
                (tokenBalanceInPool, ethBalanceInPool, ) = IDexV2Pair(to).getReserves();
                uint256 tokenWorth = (contractBalance * ethBalanceInPool) / tokenBalanceInPool;
                if (tokenWorth >= 50000000000000000) {
                    _swapTokensForEth(contractBalance, to);
                    payable(developmentWallet).transfer(address(this).balance);
                }

                taxValue = (value * sellTaxPercentage) / 100;
            } 
            else {
                taxValue = (value * buyTaxPercentage) / 100;
            }
            value -= taxValue;
            super._update(from, address(this), taxValue);
        }
        super._update(from, to, value);
    }

    /**
     * @dev Sets the address of the new development wallet.
     * @param newWallet The address of the new development wallet.
     * Requirements:
     * `newWallet` cannot be the zero address.
     * Emits a {DevelopmentWalletChanged} event.
     */
    function changeDevelopmentWallet(address newWallet) external onlyOwner {
        require(newWallet != address(0), "ERC20: new wallet is zero address");
        address oldWallet = developmentWallet;
        developmentWallet = newWallet;

        emit DevelopmentWalletChanged(oldWallet, newWallet);
    }

    /**
     * @dev Excludes or includes an account from taxation.
     * @param account The address of the account to be excluded or included.
     * @param status The status to set for tax exclusion (true for exclusion, false for inclusion).
     * Requirements:
     * - The caller must be the contract owner.
     */
    function excludeFromTax(address account, bool status) external onlyOwner {
        isExcludedFromTax[account] = status;

        emit TaxExclusionUpdated(account, status);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"DevelopmentWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"DexPairStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"routerAddress","type":"address"},{"indexed":true,"internalType":"address","name":"pairAddress","type":"address"}],"name":"NewRouterAdded","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":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"TaxExclusionUpdated","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":"routerAddress","type":"address"}],"name":"addNewDexRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"buyTaxPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dexPairStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"pairToRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"routerToPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setDexPairStatus","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"},{"stateMutability":"payable","type":"receive"}]

608060405260058054610a0360a01b61ffff60a01b199091161790555f6006556007805463ffffffff19166201518017905534801561003c575f80fd5b503360405180604001604052806005815260200164537465616b60d81b81525060405180604001604052806005815260200164535445414b60d81b8152508160039081610089919061096d565b506004610096828261096d565b5050506001600160a01b0381166100c757604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100d081610125565b506100f3336100e16012600a610b22565b6100ee90620186a0610b37565b610176565b600c80546001600160a01b031916339081179091555f908152600860205260409020805460ff19166001179055610ccd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661019f5760405163ec442f0560e01b81525f60048201526024016100be565b6101aa5f83836101ae565b5050565b6001600160a01b0382165f9081526009602052604090205460ff1680156101d55750600654155b156101df57426006555b600654156102eb575f600654426101f69190610b4e565b60075490915061020d9063ffffffff16601c610b61565b63ffffffff16811115610234576005805461ffff60a01b191661010160a11b1790556102e9565b6007546102489063ffffffff16600e610b61565b63ffffffff16811061026e576005805461ffff60a01b191661018160a11b1790556102e9565b600780546102849163ffffffff90911690610b61565b63ffffffff1681106102aa576005805461ffff60a01b191661020160a11b1790556102e9565b60075463ffffffff1681106102d3576005805461ffff60a01b191661050360a01b1790556102e9565b6005805461ffff60a01b1916610a0360a01b1790555b505b6001600160a01b0383165f9081526009602052604090205460ff168061032857506001600160a01b0382165f9081526009602052604090205460ff165b801561036e57506001600160a01b0383165f9081526008602052604090205460ff168061036c57506001600160a01b0382165f9081526008602052604090205460ff165b155b80156103855750600754640100000000900460ff16155b15610529576001600160a01b0382165f9081526009602052604081205460ff1680156103c957506001600160a01b038381165f908152600a60205260409020541615155b156104e957305f9081526020819052604081205490505f80856001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801561041d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104419190610ba4565b506001600160701b0391821693501690505f8261045e8386610b37565b6104689190610bf0565b905066b1a2bc2ec5000081106104ba576104828488610539565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156104b8573d5f803e3d5ffd5b505b6005546064906104d490600160a81b900460ff1688610b37565b6104de9190610bf0565b945050505050610510565b60055460649061050390600160a01b900460ff1684610b37565b61050d9190610bf0565b90505b61051a8183610b4e565b91506105278430836106d5565b505b6105348383836106d5565b505050565b6007805464010000000060ff60201b199091161790556001600160a01b038181165f908152600a60205260408082205481516002808252606082019093529316929081602001602082028036833701905050905030815f815181106105a0576105a0610c0f565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106209190610c23565b8160018151811061063357610633610c0f565b6001600160a01b03909216602092830291909101909101526106563083866107fb565b6001600160a01b03821663791ac947855f84306106754261012c610c49565b6040518663ffffffff1660e01b8152600401610695959493929190610c5c565b5f604051808303815f87803b1580156106ac575f80fd5b505af11580156106be573d5f803e3d5ffd5b50506007805460ff60201b19169055505050505050565b6001600160a01b0383166106ff578060025f8282546106f49190610c49565b9091555061076f9050565b6001600160a01b0383165f90815260208190526040902054818110156107515760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100be565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661078b576002805482900390556107a9565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516107ee91815260200190565b60405180910390a3505050565b61053483838360016001600160a01b03841661082c5760405163e602df0560e01b81525f60048201526024016100be565b6001600160a01b03831661085557604051634a1406b160e11b81525f60048201526024016100be565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156108d057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108c791815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806108fe57607f821691505b60208210810361091c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561053457805f5260205f20601f840160051c810160208510156109475750805b601f840160051c820191505b81811015610966575f8155600101610953565b5050505050565b81516001600160401b03811115610986576109866108d6565b61099a8161099484546108ea565b84610922565b602080601f8311600181146109cd575f84156109b65750858301515b5f19600386901b1c1916600185901b178555610a24565b5f85815260208120601f198616915b828110156109fb578886015182559484019460019091019084016109dc565b5085821015610a1857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115610a7a57815f1904821115610a6057610a60610a2c565b80851615610a6d57918102915b93841c9390800290610a45565b509250929050565b5f82610a9057506001610b1c565b81610a9c57505f610b1c565b8160018114610ab25760028114610abc57610ad8565b6001915050610b1c565b60ff841115610acd57610acd610a2c565b50506001821b610b1c565b5060208310610133831016604e8410600b8410161715610afb575081810a610b1c565b610b058383610a40565b805f1904821115610b1857610b18610a2c565b0290505b92915050565b5f610b3060ff841683610a82565b9392505050565b8082028115828204841417610b1c57610b1c610a2c565b81810381811115610b1c57610b1c610a2c565b63ffffffff818116838216028082169190828114610b8157610b81610a2c565b505092915050565b80516001600160701b0381168114610b9f575f80fd5b919050565b5f805f60608486031215610bb6575f80fd5b610bbf84610b89565b9250610bcd60208501610b89565b9150604084015163ffffffff81168114610be5575f80fd5b809150509250925092565b5f82610c0a57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610c33575f80fd5b81516001600160a01b0381168114610b30575f80fd5b80820180821115610b1c57610b1c610a2c565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610cac5784516001600160a01b031683529383019391830191600101610c87565b50506001600160a01b03969096166060850152505050608001529392505050565b61166e80610cda5f395ff3fe60806040526004361061014a575f3560e01c806395d89b41116100b3578063cb4ca6311161006d578063cb4ca631146103c3578063dd62ed3e146103f1578063e5a4a89b14610435578063e76779ba14610463578063f2fde38b14610482578063f7371c24146104a1575f80fd5b806395d89b41146103135780639a679cf6146103275780639e7d8d1d14610346578063a9059cbb14610366578063c04a541414610385578063c6a30647146103a4575f80fd5b8063313ce56711610104578063313ce5671461025857806370a0823114610279578063715018a6146102ad578063760bf186146102c1578063790ca413146102e15780638da5cb5b146102f6575f80fd5b806306fdde0314610155578063095ea7b31461017f5780630ab76f72146101ae578063141b4972146101fa57806318160ddd1461021b57806323b872dd14610239575f80fd5b3661015157005b5f80fd5b348015610160575f80fd5b506101696104d5565b6040516101769190611327565b60405180910390f35b34801561018a575f80fd5b5061019e610199366004611370565b610565565b6040519015158152602001610176565b3480156101b9575f80fd5b506101e26101c836600461139a565b600b6020525f90815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610176565b348015610205575f80fd5b506102196102143660046113bc565b61057e565b005b348015610226575f80fd5b506002545b604051908152602001610176565b348015610244575f80fd5b5061019e6102533660046113f7565b6105e4565b348015610263575f80fd5b5060125b60405160ff9091168152602001610176565b348015610284575f80fd5b5061022b61029336600461139a565b6001600160a01b03165f9081526020819052604090205490565b3480156102b8575f80fd5b50610219610607565b3480156102cc575f80fd5b5060055461026790600160a01b900460ff1681565b3480156102ec575f80fd5b5061022b60065481565b348015610301575f80fd5b506005546001600160a01b03166101e2565b34801561031e575f80fd5b5061016961061a565b348015610332575f80fd5b5061021961034136600461139a565b610629565b348015610351575f80fd5b5060055461026790600160a81b900460ff1681565b348015610371575f80fd5b5061019e610380366004611370565b6106e7565b348015610390575f80fd5b50600c546101e2906001600160a01b031681565b3480156103af575f80fd5b506102196103be3660046113bc565b6106f4565b3480156103ce575f80fd5b5061019e6103dd36600461139a565b60086020525f908152604090205460ff1681565b3480156103fc575f80fd5b5061022b61040b366004611435565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610440575f80fd5b5061019e61044f36600461139a565b60096020525f908152604090205460ff1681565b34801561046e575f80fd5b5061021961047d36600461139a565b61074f565b34801561048d575f80fd5b5061021961049c36600461139a565b610a5e565b3480156104ac575f80fd5b506101e26104bb36600461139a565b600a6020525f90815260409020546001600160a01b031681565b6060600380546104e490611461565b80601f016020809104026020016040519081016040528092919081815260200182805461051090611461565b801561055b5780601f106105325761010080835404028352916020019161055b565b820191905f5260205f20905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b5f33610572818585610a9b565b60019150505b92915050565b610586610aad565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527faccac7931dadca88fa8d45f979e2a896d25d034582069b4d6dea021d9179fc28910160405180910390a25050565b5f336105f1858285610ada565b6105fc858585610b55565b506001949350505050565b61060f610aad565b6106185f610bb2565b565b6060600480546104e490611461565b610631610aad565b6001600160a01b0381166106965760405162461bcd60e51b815260206004820152602160248201527f45524332303a206e65772077616c6c6574206973207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fd81320f087e35dbb474e65a2f1cbbb39d4847d40955b32e095656849410252ce905f90a35050565b5f33610572818585610b55565b6106fc610aad565b6001600160a01b0382165f81815260086020526040808220805460ff191685151590811790915590519092917f057dc60ecf6df48e0f4af40ef0f88074d41e0ce54a1fef20925cd23c6de0386091a35050565b610757610aad565b5f8190505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610798573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107bc9190611499565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610807573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082b9190611499565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1925050508015610893575060408051601f3d908101601f1916820190925261089091810190611499565b60015b1561089a57505b816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108fa9190611499565b6001600160a01b031663e6a4390530846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610945573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109699190611499565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa1580156109b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d69190611499565b6001600160a01b038082165f818152600960209081526040808320805460ff19166001179055600a82528083208054958a166001600160a01b03199687168117909155808452600b90925280832080549095168417909455925193945090927fd54807570472d7b5bc32453ebc95b1efff2caa5857145789dee1fc1658a09d3a9190a3505050565b610a66610aad565b6001600160a01b038116610a8f57604051631e4fbdf760e01b81525f600482015260240161068d565b610a9881610bb2565b50565b610aa88383836001610c03565b505050565b6005546001600160a01b031633146106185760405163118cdaa760e01b815233600482015260240161068d565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610b4f5781811015610b4157604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161068d565b610b4f84848484035f610c03565b50505050565b6001600160a01b038316610b7e57604051634b637e8f60e11b81525f600482015260240161068d565b6001600160a01b038216610ba75760405163ec442f0560e01b81525f600482015260240161068d565b610aa8838383610cd5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610c2c5760405163e602df0560e01b81525f600482015260240161068d565b6001600160a01b038316610c5557604051634a1406b160e11b81525f600482015260240161068d565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610b4f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610cc791815260200190565b60405180910390a350505050565b6001600160a01b0382165f9081526009602052604090205460ff168015610cfc5750600654155b15610d0657426006555b60065415610e12575f60065442610d1d91906114c8565b600754909150610d349063ffffffff16601c6114db565b63ffffffff16811115610d5b576005805461ffff60a01b191661010160a11b179055610e10565b600754610d6f9063ffffffff16600e6114db565b63ffffffff168110610d95576005805461ffff60a01b191661018160a11b179055610e10565b60078054610dab9163ffffffff909116906114db565b63ffffffff168110610dd1576005805461ffff60a01b191661020160a11b179055610e10565b60075463ffffffff168110610dfa576005805461ffff60a01b191661050360a01b179055610e10565b6005805461ffff60a01b1916610a0360a01b1790555b505b6001600160a01b0383165f9081526009602052604090205460ff1680610e4f57506001600160a01b0382165f9081526009602052604090205460ff165b8015610e9557506001600160a01b0383165f9081526008602052604090205460ff1680610e9357506001600160a01b0382165f9081526008602052604090205460ff165b155b8015610eac5750600754640100000000900460ff16155b15611050576001600160a01b0382165f9081526009602052604081205460ff168015610ef057506001600160a01b038381165f908152600a60205260409020541615155b1561101057305f9081526020819052604081205490505f80856001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610f44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f68919061151e565b506001600160701b0391821693501690505f82610f85838661156a565b610f8f9190611581565b905066b1a2bc2ec500008110610fe157610fa9848861105b565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610fdf573d5f803e3d5ffd5b505b600554606490610ffb90600160a81b900460ff168861156a565b6110059190611581565b945050505050611037565b60055460649061102a90600160a01b900460ff168461156a565b6110349190611581565b90505b61104181836114c8565b915061104e843083611201565b505b610aa8838383611201565b6007805464010000000064ff00000000199091161790556001600160a01b038181165f908152600a60205260408082205481516002808252606082019093529316929081602001602082028036833701905050905030815f815181106110c3576110c36115a0565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561111f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111439190611499565b81600181518110611156576111566115a0565b60200260200101906001600160a01b031690816001600160a01b031681525050611181308386610a9b565b6001600160a01b03821663791ac947855f84306111a04261012c6115b4565b6040518663ffffffff1660e01b81526004016111c09594939291906115c7565b5f604051808303815f87803b1580156111d7575f80fd5b505af11580156111e9573d5f803e3d5ffd5b50506007805464ff0000000019169055505050505050565b6001600160a01b03831661122b578060025f82825461122091906115b4565b9091555061129b9050565b6001600160a01b0383165f908152602081905260409020548181101561127d5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161068d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166112b7576002805482900390556112d5565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161131a91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610a98575f80fd5b5f8060408385031215611381575f80fd5b823561138c8161135c565b946020939093013593505050565b5f602082840312156113aa575f80fd5b81356113b58161135c565b9392505050565b5f80604083850312156113cd575f80fd5b82356113d88161135c565b9150602083013580151581146113ec575f80fd5b809150509250929050565b5f805f60608486031215611409575f80fd5b83356114148161135c565b925060208401356114248161135c565b929592945050506040919091013590565b5f8060408385031215611446575f80fd5b82356114518161135c565b915060208301356113ec8161135c565b600181811c9082168061147557607f821691505b60208210810361149357634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156114a9575f80fd5b81516113b58161135c565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610578576105786114b4565b63ffffffff8181168382160280821691908281146114fb576114fb6114b4565b505092915050565b80516001600160701b0381168114611519575f80fd5b919050565b5f805f60608486031215611530575f80fd5b61153984611503565b925061154760208501611503565b9150604084015163ffffffff8116811461155f575f80fd5b809150509250925092565b8082028115828204841417610578576105786114b4565b5f8261159b57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b80820180821115610578576105786114b4565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156116175784516001600160a01b0316835293830193918301916001016115f2565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220dabadd675cb746dfe69a6ec275098281e04536510afe778f08647120bcd0a5f764736f6c63430008190033

Deployed Bytecode

0x60806040526004361061014a575f3560e01c806395d89b41116100b3578063cb4ca6311161006d578063cb4ca631146103c3578063dd62ed3e146103f1578063e5a4a89b14610435578063e76779ba14610463578063f2fde38b14610482578063f7371c24146104a1575f80fd5b806395d89b41146103135780639a679cf6146103275780639e7d8d1d14610346578063a9059cbb14610366578063c04a541414610385578063c6a30647146103a4575f80fd5b8063313ce56711610104578063313ce5671461025857806370a0823114610279578063715018a6146102ad578063760bf186146102c1578063790ca413146102e15780638da5cb5b146102f6575f80fd5b806306fdde0314610155578063095ea7b31461017f5780630ab76f72146101ae578063141b4972146101fa57806318160ddd1461021b57806323b872dd14610239575f80fd5b3661015157005b5f80fd5b348015610160575f80fd5b506101696104d5565b6040516101769190611327565b60405180910390f35b34801561018a575f80fd5b5061019e610199366004611370565b610565565b6040519015158152602001610176565b3480156101b9575f80fd5b506101e26101c836600461139a565b600b6020525f90815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610176565b348015610205575f80fd5b506102196102143660046113bc565b61057e565b005b348015610226575f80fd5b506002545b604051908152602001610176565b348015610244575f80fd5b5061019e6102533660046113f7565b6105e4565b348015610263575f80fd5b5060125b60405160ff9091168152602001610176565b348015610284575f80fd5b5061022b61029336600461139a565b6001600160a01b03165f9081526020819052604090205490565b3480156102b8575f80fd5b50610219610607565b3480156102cc575f80fd5b5060055461026790600160a01b900460ff1681565b3480156102ec575f80fd5b5061022b60065481565b348015610301575f80fd5b506005546001600160a01b03166101e2565b34801561031e575f80fd5b5061016961061a565b348015610332575f80fd5b5061021961034136600461139a565b610629565b348015610351575f80fd5b5060055461026790600160a81b900460ff1681565b348015610371575f80fd5b5061019e610380366004611370565b6106e7565b348015610390575f80fd5b50600c546101e2906001600160a01b031681565b3480156103af575f80fd5b506102196103be3660046113bc565b6106f4565b3480156103ce575f80fd5b5061019e6103dd36600461139a565b60086020525f908152604090205460ff1681565b3480156103fc575f80fd5b5061022b61040b366004611435565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610440575f80fd5b5061019e61044f36600461139a565b60096020525f908152604090205460ff1681565b34801561046e575f80fd5b5061021961047d36600461139a565b61074f565b34801561048d575f80fd5b5061021961049c36600461139a565b610a5e565b3480156104ac575f80fd5b506101e26104bb36600461139a565b600a6020525f90815260409020546001600160a01b031681565b6060600380546104e490611461565b80601f016020809104026020016040519081016040528092919081815260200182805461051090611461565b801561055b5780601f106105325761010080835404028352916020019161055b565b820191905f5260205f20905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b5f33610572818585610a9b565b60019150505b92915050565b610586610aad565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527faccac7931dadca88fa8d45f979e2a896d25d034582069b4d6dea021d9179fc28910160405180910390a25050565b5f336105f1858285610ada565b6105fc858585610b55565b506001949350505050565b61060f610aad565b6106185f610bb2565b565b6060600480546104e490611461565b610631610aad565b6001600160a01b0381166106965760405162461bcd60e51b815260206004820152602160248201527f45524332303a206e65772077616c6c6574206973207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fd81320f087e35dbb474e65a2f1cbbb39d4847d40955b32e095656849410252ce905f90a35050565b5f33610572818585610b55565b6106fc610aad565b6001600160a01b0382165f81815260086020526040808220805460ff191685151590811790915590519092917f057dc60ecf6df48e0f4af40ef0f88074d41e0ce54a1fef20925cd23c6de0386091a35050565b610757610aad565b5f8190505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610798573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107bc9190611499565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610807573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082b9190611499565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1925050508015610893575060408051601f3d908101601f1916820190925261089091810190611499565b60015b1561089a57505b816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108fa9190611499565b6001600160a01b031663e6a4390530846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610945573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109699190611499565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa1580156109b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d69190611499565b6001600160a01b038082165f818152600960209081526040808320805460ff19166001179055600a82528083208054958a166001600160a01b03199687168117909155808452600b90925280832080549095168417909455925193945090927fd54807570472d7b5bc32453ebc95b1efff2caa5857145789dee1fc1658a09d3a9190a3505050565b610a66610aad565b6001600160a01b038116610a8f57604051631e4fbdf760e01b81525f600482015260240161068d565b610a9881610bb2565b50565b610aa88383836001610c03565b505050565b6005546001600160a01b031633146106185760405163118cdaa760e01b815233600482015260240161068d565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610b4f5781811015610b4157604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161068d565b610b4f84848484035f610c03565b50505050565b6001600160a01b038316610b7e57604051634b637e8f60e11b81525f600482015260240161068d565b6001600160a01b038216610ba75760405163ec442f0560e01b81525f600482015260240161068d565b610aa8838383610cd5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610c2c5760405163e602df0560e01b81525f600482015260240161068d565b6001600160a01b038316610c5557604051634a1406b160e11b81525f600482015260240161068d565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610b4f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610cc791815260200190565b60405180910390a350505050565b6001600160a01b0382165f9081526009602052604090205460ff168015610cfc5750600654155b15610d0657426006555b60065415610e12575f60065442610d1d91906114c8565b600754909150610d349063ffffffff16601c6114db565b63ffffffff16811115610d5b576005805461ffff60a01b191661010160a11b179055610e10565b600754610d6f9063ffffffff16600e6114db565b63ffffffff168110610d95576005805461ffff60a01b191661018160a11b179055610e10565b60078054610dab9163ffffffff909116906114db565b63ffffffff168110610dd1576005805461ffff60a01b191661020160a11b179055610e10565b60075463ffffffff168110610dfa576005805461ffff60a01b191661050360a01b179055610e10565b6005805461ffff60a01b1916610a0360a01b1790555b505b6001600160a01b0383165f9081526009602052604090205460ff1680610e4f57506001600160a01b0382165f9081526009602052604090205460ff165b8015610e9557506001600160a01b0383165f9081526008602052604090205460ff1680610e9357506001600160a01b0382165f9081526008602052604090205460ff165b155b8015610eac5750600754640100000000900460ff16155b15611050576001600160a01b0382165f9081526009602052604081205460ff168015610ef057506001600160a01b038381165f908152600a60205260409020541615155b1561101057305f9081526020819052604081205490505f80856001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610f44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f68919061151e565b506001600160701b0391821693501690505f82610f85838661156a565b610f8f9190611581565b905066b1a2bc2ec500008110610fe157610fa9848861105b565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610fdf573d5f803e3d5ffd5b505b600554606490610ffb90600160a81b900460ff168861156a565b6110059190611581565b945050505050611037565b60055460649061102a90600160a01b900460ff168461156a565b6110349190611581565b90505b61104181836114c8565b915061104e843083611201565b505b610aa8838383611201565b6007805464010000000064ff00000000199091161790556001600160a01b038181165f908152600a60205260408082205481516002808252606082019093529316929081602001602082028036833701905050905030815f815181106110c3576110c36115a0565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561111f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111439190611499565b81600181518110611156576111566115a0565b60200260200101906001600160a01b031690816001600160a01b031681525050611181308386610a9b565b6001600160a01b03821663791ac947855f84306111a04261012c6115b4565b6040518663ffffffff1660e01b81526004016111c09594939291906115c7565b5f604051808303815f87803b1580156111d7575f80fd5b505af11580156111e9573d5f803e3d5ffd5b50506007805464ff0000000019169055505050505050565b6001600160a01b03831661122b578060025f82825461122091906115b4565b9091555061129b9050565b6001600160a01b0383165f908152602081905260409020548181101561127d5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161068d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166112b7576002805482900390556112d5565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161131a91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610a98575f80fd5b5f8060408385031215611381575f80fd5b823561138c8161135c565b946020939093013593505050565b5f602082840312156113aa575f80fd5b81356113b58161135c565b9392505050565b5f80604083850312156113cd575f80fd5b82356113d88161135c565b9150602083013580151581146113ec575f80fd5b809150509250929050565b5f805f60608486031215611409575f80fd5b83356114148161135c565b925060208401356114248161135c565b929592945050506040919091013590565b5f8060408385031215611446575f80fd5b82356114518161135c565b915060208301356113ec8161135c565b600181811c9082168061147557607f821691505b60208210810361149357634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156114a9575f80fd5b81516113b58161135c565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610578576105786114b4565b63ffffffff8181168382160280821691908281146114fb576114fb6114b4565b505092915050565b80516001600160701b0381168114611519575f80fd5b919050565b5f805f60608486031215611530575f80fd5b61153984611503565b925061154760208501611503565b9150604084015163ffffffff8116811461155f575f80fd5b809150509250925092565b8082028115828204841417610578576105786114b4565b5f8261159b57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b80820180821115610578576105786114b4565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156116175784516001600160a01b0316835293830193918301916001016115f2565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220dabadd675cb746dfe69a6ec275098281e04536510afe778f08647120bcd0a5f764736f6c63430008190033

Deployed Bytecode Sourcemap

20979:6632:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8817:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11135:215;;;;;;;;;;-1:-1:-1;11135:215:0;;;;;:::i;:::-;;:::i;:::-;;;1058:14:1;;1051:22;1033:41;;1021:2;1006:18;11135:215:0;893:187:1;21371:47:0;;;;;;;;;;-1:-1:-1;21371:47:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;21371:47:0;;;;;;-1:-1:-1;;;;;1501:32:1;;;1483:51;;1471:2;1456:18;21371:47:0;1337:203:1;23244:171:0;;;;;;;;;;-1:-1:-1;23244:171:0;;;;;:::i;:::-;;:::i;:::-;;9919:99;;;;;;;;;;-1:-1:-1;9998:12:0;;9919:99;;;2112:25:1;;;2100:2;2085:18;9919:99:0;1966:177:1;11928:283:0;;;;;;;;;;-1:-1:-1;11928:283:0;;;;;:::i;:::-;;:::i;9770:84::-;;;;;;;;;;-1:-1:-1;9844:2:0;9770:84;;;2781:4:1;2769:17;;;2751:36;;2739:2;2724:18;9770:84:0;2609:184:1;10081:118:0;;;;;;;;;;-1:-1:-1;10081:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;10173:18:0;10146:7;10173:18;;;;;;;;;;;;10081:118;20062:103;;;;;;;;;;;;;:::i;21019:33::-;;;;;;;;;;-1:-1:-1;21019:33:0;;;;-1:-1:-1;;;21019:33:0;;;;;;21101:29;;;;;;;;;;;;;;;;19387:87;;;;;;;;;;-1:-1:-1;19460:6:0;;-1:-1:-1;;;;;19460:6:0;19387:87;;9027:95;;;;;;;;;;;;;:::i;26743:311::-;;;;;;;;;;-1:-1:-1;26743:311:0;;;;;:::i;:::-;;:::i;21059:35::-;;;;;;;;;;-1:-1:-1;21059:35:0;;;;-1:-1:-1;;;21059:35:0;;;;;;10404:182;;;;;;;;;;-1:-1:-1;10404:182:0;;;;;:::i;:::-;;:::i;21425:32::-;;;;;;;;;;-1:-1:-1;21425:32:0;;;;-1:-1:-1;;;;;21425:32:0;;;27390:181;;;;;;;;;;-1:-1:-1;27390:181:0;;;;;:::i;:::-;;:::i;21209:49::-;;;;;;;;;;-1:-1:-1;21209:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10649:167;;;;;;;;;;-1:-1:-1;10649:167:0;;;;;:::i;:::-;-1:-1:-1;;;;;10781:18:0;;;10754:7;10781:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10649:167;21265:45;;;;;;;;;;-1:-1:-1;21265:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22429:564;;;;;;;;;;-1:-1:-1;22429:564:0;;;;;:::i;:::-;;:::i;20320:220::-;;;;;;;;;;-1:-1:-1;20320:220:0;;;;;:::i;:::-;;:::i;21317:47::-;;;;;;;;;;-1:-1:-1;21317:47:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;21317:47:0;;;8817:91;8862:13;8895:5;8888:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8817:91;:::o;11135:215::-;11233:4;1660:10;11289:31;1660:10;11305:7;11314:5;11289:8;:31::i;:::-;11338:4;11331:11;;;11135:215;;;;;:::o;23244:171::-;19273:13;:11;:13::i;:::-;-1:-1:-1;;;;;23327:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;;;;;:28;;-1:-1:-1;;23327:28:0::1;::::0;::::1;;::::0;;::::1;::::0;;;23373:34;;1033:41:1;;;23373:34:0::1;::::0;1006:18:1;23373:34:0::1;;;;;;;23244:171:::0;;:::o;11928:283::-;12049:4;1660:10;12107:37;12123:4;1660:10;12138:5;12107:15;:37::i;:::-;12155:26;12165:4;12171:2;12175:5;12155:9;:26::i;:::-;-1:-1:-1;12199:4:0;;11928:283;-1:-1:-1;;;;11928:283:0:o;20062:103::-;19273:13;:11;:13::i;:::-;20127:30:::1;20154:1;20127:18;:30::i;:::-;20062:103::o:0;9027:95::-;9074:13;9107:7;9100:14;;;;;:::i;26743:311::-;19273:13;:11;:13::i;:::-;-1:-1:-1;;;;;26833:23:0;::::1;26825:69;;;::::0;-1:-1:-1;;;26825:69:0;;3778:2:1;26825:69:0::1;::::0;::::1;3760:21:1::0;3817:2;3797:18;;;3790:30;3856:34;3836:18;;;3829:62;-1:-1:-1;;;3907:18:1;;;3900:31;3948:19;;26825:69:0::1;;;;;;;;;26925:17;::::0;;-1:-1:-1;;;;;26953:29:0;;::::1;-1:-1:-1::0;;;;;;26953:29:0;::::1;::::0;::::1;::::0;;;27000:46:::1;::::0;26925:17;::::1;::::0;26953:29;26925:17;;27000:46:::1;::::0;26905:17:::1;::::0;27000:46:::1;26814:240;26743:311:::0;:::o;10404:182::-;10473:4;1660:10;10529:27;1660:10;10546:2;10550:5;10529:9;:27::i;27390:181::-;19273:13;:11;:13::i;:::-;-1:-1:-1;;;;;27474:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;:35;;-1:-1:-1;;27474:35:0::1;::::0;::::1;;::::0;;::::1;::::0;;;27527:36;;27474:35;;:26;27527:36:::1;::::0;::::1;27390:181:::0;;:::o;22429:564::-;19273:13;:11;:13::i;:::-;22505:22:::1;22543:13;22505:52;;22568:15;22612:9;-1:-1:-1::0;;;;;22612:17:0::1;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22598:45:0::1;;22652:4;22659:9;-1:-1:-1::0;;;;;22659:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22598:78;::::0;-1:-1:-1;;;;;;22598:78:0::1;::::0;;;;;;-1:-1:-1;;;;;4464:15:1;;;22598:78:0::1;::::0;::::1;4446:34:1::0;4516:15;;4496:18;;;4489:43;4381:18;;22598:78:0::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;22598:78:0::1;::::0;;::::1;;::::0;;::::1;-1:-1:-1::0;;22598:78:0::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;;22594:104:::0;::::1;;;;22732:9;-1:-1:-1::0;;;;;22732:17:0::1;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22718:42:0::1;;22769:4;22776:9;-1:-1:-1::0;;;;;22776:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22718:75;::::0;-1:-1:-1;;;;;;22718:75:0::1;::::0;;;;;;-1:-1:-1;;;;;4464:15:1;;;22718:75:0::1;::::0;::::1;4446:34:1::0;4516:15;;4496:18;;;4489:43;4381:18;;22718:75:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22804:22:0;;::::1;;::::0;;;:13:::1;:22;::::0;;;;;;;:29;;-1:-1:-1;;22804:29:0::1;22829:4;22804:29;::::0;;22844:12:::1;:21:::0;;;;;:37;;;;::::1;-1:-1:-1::0;;;;;;22844:37:0;;::::1;::::0;::::1;::::0;;;22892:27;;;:12:::1;:27:::0;;;;;;:37;;;;::::1;::::0;::::1;::::0;;;22947:38;;22708:85;;-1:-1:-1;22804:22:0;;22947:38:::1;::::0;22804:22;22947:38:::1;22494:499;;22429:564:::0;:::o;20320:220::-;19273:13;:11;:13::i;:::-;-1:-1:-1;;;;;20405:22:0;::::1;20401:93;;20451:31;::::0;-1:-1:-1;;;20451:31:0;;20479:1:::1;20451:31;::::0;::::1;1483:51:1::0;1456:18;;20451:31:0::1;1337:203:1::0;20401:93:0::1;20504:28;20523:8;20504:18;:28::i;:::-;20320:220:::0;:::o;15482:130::-;15567:37;15576:5;15583:7;15592:5;15599:4;15567:8;:37::i;:::-;15482:130;;;:::o;19552:166::-;19460:6;;-1:-1:-1;;;;;19460:6:0;1660:10;19612:23;19608:103;;19659:40;;-1:-1:-1;;;19659:40:0;;1660:10;19659:40;;;1483:51:1;1456:18;;19659:40:0;1337:203:1;17241:603:0;-1:-1:-1;;;;;10781:18:0;;;17375:24;10781:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;17442:37:0;;17438:399;;17519:5;17500:16;:24;17496:214;;;17552:142;;-1:-1:-1;;;17552:142:0;;-1:-1:-1;;;;;4763:32:1;;17552:142:0;;;4745:51:1;4812:18;;;4805:34;;;4855:18;;;4848:34;;;4718:18;;17552:142:0;4543:345:1;17496:214:0;17753:57;17762:5;17769:7;17797:5;17778:16;:24;17804:5;17753:8;:57::i;:::-;17364:480;17241:603;;;:::o;12596:308::-;-1:-1:-1;;;;;12680:18:0;;12676:88;;12722:30;;-1:-1:-1;;;12722:30:0;;12749:1;12722:30;;;1483:51:1;1456:18;;12722:30:0;1337:203:1;12676:88:0;-1:-1:-1;;;;;12778:16:0;;12774:88;;12818:32;;-1:-1:-1;;;12818:32:0;;12847:1;12818:32;;;1483:51:1;1456:18;;12818:32:0;1337:203:1;12774:88:0;12872:24;12880:4;12886:2;12890:5;12872:7;:24::i;20700:191::-;20793:6;;;-1:-1:-1;;;;;20810:17:0;;;-1:-1:-1;;;;;;20810:17:0;;;;;;;20843:40;;20793:6;;;20810:17;20793:6;;20843:40;;20774:16;;20843:40;20763:128;20700:191;:::o;16463:486::-;-1:-1:-1;;;;;16619:19:0;;16615:91;;16662:32;;-1:-1:-1;;;16662:32:0;;16691:1;16662:32;;;1483:51:1;1456:18;;16662:32:0;1337:203:1;16615:91:0;-1:-1:-1;;;;;16720:21:0;;16716:92;;16765:31;;-1:-1:-1;;;16765:31:0;;16793:1;16765:31;;;1483:51:1;1456:18;;16765:31:0;1337:203:1;16716:92:0;-1:-1:-1;;;;;16818:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;16864:78;;;;16915:7;-1:-1:-1;;;;;16899:31:0;16908:5;-1:-1:-1;;;;;16899:31:0;;16924:5;16899:31;;;;2112:25:1;;2100:2;2085:18;;1966:177;16899:31:0;;;;;;;;16463:486;;;;:::o;24339:2129::-;-1:-1:-1;;;;;24430:17:0;;;;;;:13;:17;;;;;;;;:36;;;;-1:-1:-1;24451:10:0;;:15;24430:36;24426:75;;;24483:15;24470:10;:28;24426:75;24517:10;;:15;24513:817;;24549:29;24599:10;;24581:15;:28;;;;:::i;:::-;24658:4;;24549:60;;-1:-1:-1;24653:9:0;;24658:4;;24653:2;:9;:::i;:::-;24628:35;;:21;:35;24624:695;;;24703:17;:21;;-1:-1:-1;;;;24684:40:0;-1:-1:-1;;;24684:40:0;;;24624:695;;;24795:4;;24790:9;;24795:4;;24790:2;:9;:::i;:::-;24764:36;;:21;:36;24760:559;;24821:16;:20;;-1:-1:-1;;;;24860:21:0;-1:-1:-1;;;24860:21:0;;;24760:559;;;24951:4;;;24947:8;;24951:4;;;;;24947:8;:::i;:::-;24921:35;;:21;:35;24917:402;;24977:16;:20;;-1:-1:-1;;;;25016:21:0;-1:-1:-1;;;25016:21:0;;;24917:402;;;25102:4;;;;25077:29;;25073:246;;25127:16;:20;;-1:-1:-1;;;;25166:21:0;-1:-1:-1;;;25166:21:0;;;25073:246;;;25242:16;:20;;-1:-1:-1;;;;25281:22:0;-1:-1:-1;;;25281:22:0;;;25073:246;24534:796;24513:817;-1:-1:-1;;;;;25347:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;25370:17:0;;;;;;:13;:17;;;;;;;;25347:40;25346:97;;;;-1:-1:-1;;;;;;25394:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;25421:21:0;;;;;;:17;:21;;;;;;;;25394:48;25392:51;25346:97;:119;;;;-1:-1:-1;25448:17:0;;;;;;;25447:18;25346:119;25342:1078;;;-1:-1:-1;;;;;25517:17:0;;25482:16;25517:17;;;:13;:17;;;;;;;;:51;;;;-1:-1:-1;;;;;;25538:16:0;;;25566:1;25538:16;;;:12;:16;;;;;;;:30;;25517:51;25513:805;;;25641:4;25597:23;10173:18;;;;;;;;;;;25597:50;;25666:26;25711:24;25808:2;-1:-1:-1;;;;;25797:26:0;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25754:71:0;;;;-1:-1:-1;25754:71:0;;-1:-1:-1;25844:18:0;25754:71;25866:34;25754:71;25866:15;:34;:::i;:::-;25865:57;;;;:::i;:::-;25844:78;;25959:17;25945:10;:31;25941:199;;26001:38;26019:15;26036:2;26001:17;:38::i;:::-;26070:17;;26062:58;;-1:-1:-1;;;;;26070:17:0;;;;26098:21;26062:58;;;;;26070:17;26062:58;26070:17;26062:58;26098:21;26070:17;26062:58;;;;;;;;;;;;;;;;;;;;;25941:199;26180:17;;26201:3;;26172:25;;-1:-1:-1;;;26180:17:0;;;;26172:5;:25;:::i;:::-;26171:33;;;;:::i;:::-;26160:44;;25570:650;;;;25513:805;;;26279:16;;26299:3;;26271:24;;-1:-1:-1;;;26279:16:0;;;;26271:5;:24;:::i;:::-;26270:32;;;;:::i;:::-;26259:43;;25513:805;26332:17;26341:8;26332:17;;:::i;:::-;;;26364:44;26378:4;26392;26399:8;26364:13;:44::i;:::-;25467:953;25342:1078;26430:30;26444:4;26450:2;26454:5;26430:13;:30::i;23494:560::-;21830:17;:24;;;-1:-1:-1;;21830:24:0;;;;;;-1:-1:-1;;;;;23625:18:0;;::::1;-1:-1:-1::0;23625:18:0;;;:12:::1;:18;::::0;;;;;;23679:16;;23693:1:::1;23679:16:::0;;;;;::::1;::::0;;;23625:18;::::1;::::0;23679:16;::::1;;;;;;;;;;;::::0;-1:-1:-1;23679:16:0::1;23655:40;;23724:4;23706;23711:1;23706:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;23706:23:0::1;;;-1:-1:-1::0;;;;;23706:23:0::1;;;::::0;::::1;23750:9;-1:-1:-1::0;;;;;23750:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23740:4;23745:1;23740:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1::0;;;;;23740:26:0::1;;;-1:-1:-1::0;;;;;23740:26:0::1;;;::::0;::::1;23779:56;23796:4;23811:9;23823:11;23779:8;:56::i;:::-;-1:-1:-1::0;;;;;23848:60:0;::::1;;23923:11:::0;23949:1:::1;23965:4:::0;23992::::1;24013:21;:15;24031:3;24013:21;:::i;:::-;23848:198;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;21877:17:0;:25;;-1:-1:-1;;21877:25:0;;;-1:-1:-1;;;;;;23494:560:0:o;13228:1135::-;-1:-1:-1;;;;;13318:18:0;;13314:552;;13472:5;13456:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;13314:552:0;;-1:-1:-1;13314:552:0;;-1:-1:-1;;;;;13532:15:0;;13510:19;13532:15;;;;;;;;;;;13566:19;;;13562:117;;;13613:50;;-1:-1:-1;;;13613:50:0;;-1:-1:-1;;;;;4763:32:1;;13613:50:0;;;4745:51:1;4812:18;;;4805:34;;;4855:18;;;4848:34;;;4718:18;;13613:50:0;4543:345:1;13562:117:0;-1:-1:-1;;;;;13802:15:0;;:9;:15;;;;;;;;;;13820:19;;;;13802:37;;13314:552;-1:-1:-1;;;;;13882:16:0;;13878:435;;14048:12;:21;;;;;;;13878:435;;;-1:-1:-1;;;;;14264:13:0;;:9;:13;;;;;;;;;;:22;;;;;;13878:435;14345:2;-1:-1:-1;;;;;14330:25:0;14339:4;-1:-1:-1;;;;;14330:25:0;;14349:5;14330:25;;;;2112::1;;2100:2;2085:18;;1966:177;14330:25:0;;;;;;;;13228:1135;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:315;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;878:2;863:18;;;;850:32;;-1:-1:-1;;;573:315:1:o;1085:247::-;1144:6;1197:2;1185:9;1176:7;1172:23;1168:32;1165:52;;;1213:1;1210;1203:12;1165:52;1252:9;1239:23;1271:31;1296:5;1271:31;:::i;:::-;1321:5;1085:247;-1:-1:-1;;;1085:247:1:o;1545:416::-;1610:6;1618;1671:2;1659:9;1650:7;1646:23;1642:32;1639:52;;;1687:1;1684;1677:12;1639:52;1726:9;1713:23;1745:31;1770:5;1745:31;:::i;:::-;1795:5;-1:-1:-1;1852:2:1;1837:18;;1824:32;1894:15;;1887:23;1875:36;;1865:64;;1925:1;1922;1915:12;1865:64;1948:7;1938:17;;;1545:416;;;;;:::o;2148:456::-;2225:6;2233;2241;2294:2;2282:9;2273:7;2269:23;2265:32;2262:52;;;2310:1;2307;2300:12;2262:52;2349:9;2336:23;2368:31;2393:5;2368:31;:::i;:::-;2418:5;-1:-1:-1;2475:2:1;2460:18;;2447:32;2488:33;2447:32;2488:33;:::i;:::-;2148:456;;2540:7;;-1:-1:-1;;;2594:2:1;2579:18;;;;2566:32;;2148:456::o;2798:388::-;2866:6;2874;2927:2;2915:9;2906:7;2902:23;2898:32;2895:52;;;2943:1;2940;2933:12;2895:52;2982:9;2969:23;3001:31;3026:5;3001:31;:::i;:::-;3051:5;-1:-1:-1;3108:2:1;3093:18;;3080:32;3121:33;3080:32;3121:33;:::i;3191:380::-;3270:1;3266:12;;;;3313;;;3334:61;;3388:4;3380:6;3376:17;3366:27;;3334:61;3441:2;3433:6;3430:14;3410:18;3407:38;3404:161;;3487:10;3482:3;3478:20;3475:1;3468:31;3522:4;3519:1;3512:15;3550:4;3547:1;3540:15;3404:161;;3191:380;;;:::o;3978:251::-;4048:6;4101:2;4089:9;4080:7;4076:23;4072:32;4069:52;;;4117:1;4114;4107:12;4069:52;4149:9;4143:16;4168:31;4193:5;4168:31;:::i;4893:127::-;4954:10;4949:3;4945:20;4942:1;4935:31;4985:4;4982:1;4975:15;5009:4;5006:1;4999:15;5025:128;5092:9;;;5113:11;;;5110:37;;;5127:18;;:::i;5158:249::-;5229:10;5271;;;5283;;;5267:27;5314:20;;;;5229:10;5353:24;;;5343:58;;5381:18;;:::i;:::-;5343:58;;5158:249;;;;:::o;5412:188::-;5491:13;;-1:-1:-1;;;;;5533:42:1;;5523:53;;5513:81;;5590:1;5587;5580:12;5513:81;5412:188;;;:::o;5605:450::-;5692:6;5700;5708;5761:2;5749:9;5740:7;5736:23;5732:32;5729:52;;;5777:1;5774;5767:12;5729:52;5800:40;5830:9;5800:40;:::i;:::-;5790:50;;5859:49;5904:2;5893:9;5889:18;5859:49;:::i;:::-;5849:59;;5951:2;5940:9;5936:18;5930:25;5995:10;5988:5;5984:22;5977:5;5974:33;5964:61;;6021:1;6018;6011:12;5964:61;6044:5;6034:15;;;5605:450;;;;;:::o;6060:168::-;6133:9;;;6164;;6181:15;;;6175:22;;6161:37;6151:71;;6202:18;;:::i;6233:217::-;6273:1;6299;6289:132;;6343:10;6338:3;6334:20;6331:1;6324:31;6378:4;6375:1;6368:15;6406:4;6403:1;6396:15;6289:132;-1:-1:-1;6435:9:1;;6233:217::o;6587:127::-;6648:10;6643:3;6639:20;6636:1;6629:31;6679:4;6676:1;6669:15;6703:4;6700:1;6693:15;6719:125;6784:9;;;6805:10;;;6802:36;;;6818:18;;:::i;6849:980::-;7111:4;7159:3;7148:9;7144:19;7190:6;7179:9;7172:25;7216:2;7254:6;7249:2;7238:9;7234:18;7227:34;7297:3;7292:2;7281:9;7277:18;7270:31;7321:6;7356;7350:13;7387:6;7379;7372:22;7425:3;7414:9;7410:19;7403:26;;7464:2;7456:6;7452:15;7438:29;;7485:1;7495:195;7509:6;7506:1;7503:13;7495:195;;;7574:13;;-1:-1:-1;;;;;7570:39:1;7558:52;;7665:15;;;;7630:12;;;;7606:1;7524:9;7495:195;;;-1:-1:-1;;;;;;;7746:32:1;;;;7741:2;7726:18;;7719:60;-1:-1:-1;;;7810:3:1;7795:19;7788:35;7707:3;6849:980;-1:-1:-1;;;6849:980:1:o

Swarm Source

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