ETH Price: $2,442.78 (-8.88%)

Token

HarryPotterPowellMrBeast1000Inu (USD)
 

Overview

Max Total Supply

1,000,000 USD

Holders

93

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,611.301292244183542986 USD

Value
$0.00
0x2b9ab79Bbfb25D1fA2af74ed08A75850B7085915
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:
HarryPotterPowellMrBeast1000InuToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

/*

HarryPotterPowellMrBeast1000Inu (USD)
Telegram: https://t.me/hppmb1000i
Website:  https://hppmb1000i.com
Twitter:  https://twitter.com/hppmb1000i

"We live in a world defined by the rapid pace of technological change."
    - Jerome Powell

"The things you own, end up owning you"
    - Tyler Durden (Fight Club)

"It's a whazy. It's a woozie.
It's fairy dust. It doesn't exist.
It's never landed.
It is no matter.
It's not on the elemental chart.
It's not fucking real."
    - Mark Hanna (The Wolf of Wallstreet)

"Last To Take Hand Off Jet, Keeps It!"
    - Mr. Beast

*/

interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

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

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

}

interface IV2Factory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

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

contract HarryPotterPowellMrBeast1000InuToken is ERC20, Ownable {

    mapping(address => bool) public noFee;
    mapping(address => bool) public noWalletLimit;
    mapping(address => bool) public noTransactionLimit;

    // While limits are enabled, an EOA can have exactly one transaction per block
    mapping(address => mapping(uint256 => uint256)) public blockTransferCount;
 
    bool public launched                    = false;
    bool public limitsEnabled               = true;
    bool public feesEnabled                 = true;

    // Denominator
    uint256 public feeDenominator           = 10000;
    uint256 public initialBuyFeeNumerator   =  1500;
    uint256 public initialSellFeeNumerator  =  1500;
    uint256 public finalBuyFeeNumerator     =   200;
    uint256 public finalSellFeeNumerator    =   200;
    uint256 public buyFeeNumerator;
    uint256 public sellFeeNumerator;

    uint256 public supply                   = 1_000_000 * 10**decimals();
    
    // Limits will be disabled prior to ownership renounce
    uint256 public maxTxnAmount             = supply / 100;
    uint256 public maxWalletAmount          = supply / 100;

    uint256 public swapFeeTokensAtAmount    = supply / 10000;

    // https://app.safe.global/home?safe=eth:0x7Ef6ebbC306400521C29362d684B74777F2F3126
    address public feeRecipient             = address(0x7Ef6ebbC306400521C29362d684B74777F2F3126);
    
    // https://app.safe.global/home?safe=eth:0x999B55bA095dE43b18DB6f43F89a2b54aAAB31a2
    address public reserveWallet            = address(0x999B55bA095dE43b18DB6f43F89a2b54aAAB31a2);

    address public liquidationAMM;
    address public weth;
    IRouter public router;
 
    uint256 private startTradingBlockNumber;
    bool private inFeeLiquidation = false;
    bytes4 private constant TRANSFERSELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));
 
    receive() external payable {}
 
    constructor(
        address routerAddress
    ) Ownable() ERC20(
        unicode"HarryPotterPowellMrBeast1000Inu",
        unicode"USD"
    ) {
        _mint(address(this), supply);

        // 5% of supply held in a multi-signature wallet for liquidity.
        // Any "promotional" token supply will bought on the open market.
        uint256 reserveSupply = supply * 5 / 100;
        _transfer(address(this), reserveWallet, reserveSupply);

        router = IRouter(routerAddress);
        weth = router.WETH();

        liquidationAMM = IV2Factory(
            router.factory()
        ).createPair(
            address(this),
            weth
        );

        // Pre-approve contract sells for gas savings
        _approve(address(this), address(router), type(uint256).max);

        noWalletLimit[liquidationAMM] = true;
        noWalletLimit[reserveWallet] = true;
        noWalletLimit[feeRecipient] = true;
        noWalletLimit[msg.sender] = true;

        noTransactionLimit[liquidationAMM] = true;
        noTransactionLimit[reserveWallet] = true;
        noTransactionLimit[feeRecipient] = true;
        noTransactionLimit[msg.sender] = true;

        noFee[msg.sender] = true;
        noFee[reserveWallet] = true;
        noFee[feeRecipient] = true;
    }

    function setNoWalletLimit(address account, bool hasNoLimit) external onlyOwner {
        require(noWalletLimit[account] != hasNoLimit, "No limit address state already set");
        noWalletLimit[account] = hasNoLimit;
    }

    function setNoTransactionLimit(address account, bool hasNoLimit) external onlyOwner {
        require(noTransactionLimit[account] != hasNoLimit, "No limit address state already set");
        noWalletLimit[account] = hasNoLimit;
    }

    function setNoFee(address account, bool hasNoFee) external onlyOwner {
        require(noFee[account] != hasNoFee, "No fee address state already set");
        noFee[account] = hasNoFee;
    }

    function setFeeRecipient(address feeRecipient_) external onlyOwner {
        feeRecipient = feeRecipient_;
    }
 
    function disableLimits() public onlyOwner {
        require(limitsEnabled);
        limitsEnabled = false;
    }

    function setFees(uint256 _buyFeeNumerator, uint256 _sellFeeNumerator) public onlyOwner {
        require(_buyFeeNumerator <= buyFeeNumerator && _sellFeeNumerator <= sellFeeNumerator);
        buyFeeNumerator = _buyFeeNumerator;
        sellFeeNumerator = _sellFeeNumerator;
        if (buyFeeNumerator + sellFeeNumerator == 0) {
            feesEnabled = false;
        }
    }

    function withdrawStuckTokens(address tokenAddress, uint256 amount) external {
        require(tokenAddress != address(this));
        uint256 tokenBalance = IERC20(tokenAddress).balanceOf(address(this));
        uint256 amountToTransfer = amount == 0 ? tokenBalance : amount;
        _safeTransfer(tokenAddress, feeRecipient, amountToTransfer);
    }

    function withdrawStuckETH() external {
        (bool success,) = feeRecipient.call{value: address(this).balance}("");
        require(success);
    }

    function renounceOwnership() public override onlyOwner {
        setFees(finalBuyFeeNumerator, finalSellFeeNumerator);
        
        if (limitsEnabled) {
            disableLimits();
        }

        super.renounceOwnership();
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        if (amount == 0 || inFeeLiquidation || !launched || noFee[from] || noFee[to]) {
            super._transfer(from, to, amount);
            return;
        }

        // Sell
        if (to == liquidationAMM) {
            uint256 contractBalance = balanceOf(address(this));
            if (contractBalance > swapFeeTokensAtAmount) {
                inFeeLiquidation = true;
                swapTokensForEth(contractBalance);
                inFeeLiquidation = false;
            }

            if (address(this).balance > 0) {
                // Will not revert on failure to prevent accidental honeypot
                (bool success,) = feeRecipient.call{value: address(this).balance}("");
            }
 
            if (feesEnabled) {
                uint256 feeAmount = amount * sellFeeNumerator / feeDenominator;
                if (feeAmount > 0) {
                    amount = amount - feeAmount;
                    super._transfer(from, address(this), feeAmount);
                }
            }
        }

        // Buy
        if (from == liquidationAMM && feesEnabled) {
            uint256 feeAmount = amount * buyFeeNumerator / feeDenominator;
            if (feeAmount > 0) {
                amount = amount - feeAmount;
                super._transfer(from, address(this), feeAmount);
            }
        }

        if (limitsEnabled) {
            require(blockTransferCount[tx.origin][block.number] == 0);
            blockTransferCount[tx.origin][block.number] = 1;

            if (!noTransactionLimit[from]) {
                require(amount <= maxTxnAmount);
            }

            if (!noWalletLimit[to]) {
                require(amount + balanceOf(to) <= maxWalletAmount);
            }
            
            require(block.number >= startTradingBlockNumber);
        }
 
        super._transfer(from, to, amount);
    }

    function steadyLadsDeployingMoreCapital(
        uint256 blockDelay
    ) external payable onlyOwner { 
        addInitialLiquidity();
        startTradingBlockNumber = block.number + blockDelay;
        buyFeeNumerator = initialBuyFeeNumerator;
        sellFeeNumerator = initialSellFeeNumerator;
        launched = true;
    }

    function launch() external payable onlyOwner {}

    function swapTokensForEth(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = weth;
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addInitialLiquidity() internal {
        // 4.5% of liquidity held in a reserve wallet, 95.5% of liquidity to be sent to fee recipient and locked in https://team.finance
        router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            feeRecipient,
            block.timestamp
        );
    }

    function _safeTransfer(address token, address to, uint256 value) private {
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(TRANSFERSELECTOR, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'TRANSFER_FAILED');
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"blockTransferCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalBuyFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalSellFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialBuyFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSellFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"launched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidationAMM","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"noFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"noTransactionLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"noWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"reserveWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"feeRecipient_","type":"address"}],"name":"setFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFeeNumerator","type":"uint256"},{"internalType":"uint256","name":"_sellFeeNumerator","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"hasNoFee","type":"bool"}],"name":"setNoFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"hasNoLimit","type":"bool"}],"name":"setNoTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"hasNoLimit","type":"bool"}],"name":"setNoWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockDelay","type":"uint256"}],"name":"steadyLadsDeployingMoreCapital","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapFeeTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600a805462ffffff191662010100179055612710600b556105dc600c819055600d5560c8600e819055600f5562000039601290565b6200004690600a62000d7b565b6200005590620f424062000d93565b601255606460125462000069919062000dad565b60135560646012546200007d919062000dad565b60145561271060125462000092919062000dad565b601555601680546001600160a01b0319908116737ef6ebbc306400521c29362d684b74777f2f3126179091556017805490911673999b55ba095de43b18db6f43f89a2b54aaab31a2179055601c805460ff19169055348015620000f457600080fd5b5060405162002e0d38038062002e0d833981016040819052620001179162000dd0565b6040518060400160405280601f81526020017f4861727279506f74746572506f77656c6c4d72426561737431303030496e7500815250604051806040016040528060038152602001621554d160ea1b81525081600390816200017a919062000e97565b50600462000189828262000e97565b505050620001a6620001a06200048b60201b60201c565b6200048f565b620001ba30601254620004e160201b60201c565b600060646012546005620001cf919062000d93565b620001db919062000dad565b601754909150620001f89030906001600160a01b03168362000597565b601a80546001600160a01b0319166001600160a01b038416908117909155604080516315ab88c960e31b8152905163ad5c4648916004808201926020929091908290030181865afa15801562000252573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000278919062000dd0565b601980546001600160a01b0319166001600160a01b03928316179055601a546040805163c45a015560e01b81529051919092169163c45a01559160048083019260209291908290030181865afa158015620002d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002fd919062000dd0565b6019546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af11580156200034f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000375919062000dd0565b601880546001600160a01b0319166001600160a01b03928316179055601a54620003a591309116600019620008b8565b5050601880546001600160a01b0390811660009081526007602090815260408083208054600160ff1991821681179092556017805487168652838620805483168417905560168054881687528487208054841685179055338088528588208054851686179055985488168752600886528487208054841685179055815488168752848720805484168517905580548816875284872080548416851790559786528386208054831684179055600690945282852080548216831790559254851684528184208054841682179055945490931682529190208054909116909117905562001018565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200053d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b806002600082825462000551919062000f63565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602062002ded833981519152910160405180910390a35050565b801580620005a75750601c5460ff165b80620005b65750600a5460ff16155b80620005da57506001600160a01b03831660009081526006602052604090205460ff165b80620005fe57506001600160a01b03821660009081526006602052604090205460ff165b1562000621576200061c838383620009e060201b62000f781760201c565b505050565b6018546001600160a01b03908116908316036200073c57306000908152602081905260409020546015548111156200067657601c805460ff191660011790556200066b8162000b7a565b601c805460ff191690555b4715620006d6576016546040516000916001600160a01b03169047908381818185875af1925050503d8060008114620006cc576040519150601f19603f3d011682016040523d82523d6000602084013e620006d1565b606091505b505050505b600a5462010000900460ff16156200073a576000600b5460115484620006fd919062000d93565b62000709919062000dad565b9050801562000738576200071e818462000f79565b925062000738853083620009e060201b62000f781760201c565b505b505b6018546001600160a01b038481169116148015620007625750600a5462010000900460ff165b15620007ba576000600b54601054836200077d919062000d93565b62000789919062000dad565b90508015620007b8576200079e818362000f79565b9150620007b8843083620009e060201b62000f781760201c565b505b600a54610100900460ff1615620008a05732600090815260096020908152604080832043845290915290205415620007f157600080fd5b3260009081526009602090815260408083204384528252808320600190556001600160a01b0386168352600890915290205460ff166200083b576013548111156200083b57600080fd5b6001600160a01b03821660009081526007602052604090205460ff1662000890576014546001600160a01b03831660009081526020819052604090205462000884908362000f63565b11156200089057600080fd5b601b54431015620008a057600080fd5b6200061c838383620009e060201b62000f781760201c565b6001600160a01b0383166200091c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000534565b6001600160a01b0382166200097f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000534565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831662000a465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840162000534565b6001600160a01b03821662000aaa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840162000534565b6001600160a01b0383166000908152602081905260409020548181101562000b245760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840162000534565b6001600160a01b038481166000818152602081815260408083208787039055938716808352918490208054870190559251858152909260008051602062002ded833981519152910160405180910390a350505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811062000bb25762000bb262000f8f565b6001600160a01b03928316602091820292909201015260195482519116908290600190811062000be65762000be662000f8f565b6001600160a01b039283166020918202929092010152601a5460405163791ac94760e01b815291169063791ac9479062000c2e90859060009086903090429060040162000fa5565b600060405180830381600087803b15801562000c4957600080fd5b505af115801562000c5e573d6000803e3d6000fd5b505050505050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000cbd57816000190482111562000ca15762000ca162000c66565b8085161562000caf57918102915b93841c939080029062000c81565b509250929050565b60008262000cd65750600162000d75565b8162000ce55750600062000d75565b816001811462000cfe576002811462000d095762000d29565b600191505062000d75565b60ff84111562000d1d5762000d1d62000c66565b50506001821b62000d75565b5060208310610133831016604e8410600b841016171562000d4e575081810a62000d75565b62000d5a838362000c7c565b806000190482111562000d715762000d7162000c66565b0290505b92915050565b600062000d8c60ff84168362000cc5565b9392505050565b808202811582820484141762000d755762000d7562000c66565b60008262000dcb57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121562000de357600080fd5b81516001600160a01b038116811462000d8c57600080fd5b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000e2657607f821691505b60208210810362000e4757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200061c57600081815260208120601f850160051c8101602086101562000e765750805b601f850160051c820191505b8181101562000c5e5782815560010162000e82565b81516001600160401b0381111562000eb35762000eb362000dfb565b62000ecb8162000ec4845462000e11565b8462000e4d565b602080601f83116001811462000f03576000841562000eea5750858301515b600019600386901b1c1916600185901b17855562000c5e565b600085815260208120601f198616915b8281101562000f345788860151825594840194600190910190840162000f13565b508582101562000f535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111562000d755762000d7562000c66565b8181038181111562000d755762000d7562000c66565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101562000ff75784516001600160a01b03168352938301939183019160010162000fd0565b50506001600160a01b03969096166060850152505050608001529392505050565b611dc580620010286000396000f3fe60806040526004361061030b5760003560e01c80638da5cb5b1161019a578063d72b11bd116100e1578063f2fde38b1161008a578063f928364c11610064578063f928364c1461087e578063fd15172614610893578063fe2c62ce146108c357600080fd5b8063f2fde38b14610829578063f5648a4f14610849578063f887ea401461085e57600080fd5b8063e1671339116100bb578063e1671339146107d3578063e74b981b146107e9578063e7ea0a1f1461080957600080fd5b8063d72b11bd14610757578063dca69d2114610777578063dd62ed3e1461078d57600080fd5b8063a9059cbb11610143578063bb9f64271161011d578063bb9f64271461070e578063bd61f0a614610721578063cf46f24c1461074157600080fd5b8063a9059cbb146106b8578063aa4bde28146106d8578063ac38693e146106ee57600080fd5b80639df4b65e116101745780639df4b65e14610640578063a457c2d714610678578063a64e4f8a1461069857600080fd5b80638da5cb5b146105dd57806395d89b41146105fb578063962adf4e1461061057600080fd5b8063395093511161025e578063715018a61161020757806386b072c4116101e157806386b072c41461059b5780638bdc2f2b146105b15780638cdc3a00146105c757600080fd5b8063715018a6146105565780637b24ab321461056b5780638091f3bf1461058157600080fd5b8063469048401161023857806346904840146104ea5780636ee2a9b21461050a57806370a082311461052057600080fd5b806339509351146104725780633fc8cef31461049257806342701a8e146104ca57600080fd5b80630b78f9c0116102c057806323b872dd1161029a57806323b872dd14610417578063313ce567146104375780633582ad231461045357600080fd5b80630b78f9c0146103cc578063180b0d7e146103ec57806318160ddd1461040257600080fd5b8063047fc9aa116102f1578063047fc9aa1461036657806306fdde031461038a578063095ea7b3146103ac57600080fd5b80622a20501461031757806301339c211461035c57600080fd5b3661031257005b600080fd5b34801561032357600080fd5b50610347610332366004611a47565b60066020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b6103646108e3565b005b34801561037257600080fd5b5061037c60125481565b604051908152602001610353565b34801561039657600080fd5b5061039f6108ed565b6040516103539190611a8d565b3480156103b857600080fd5b506103476103c7366004611ac0565b61097f565b3480156103d857600080fd5b506103646103e7366004611aea565b610999565b3480156103f857600080fd5b5061037c600b5481565b34801561040e57600080fd5b5060025461037c565b34801561042357600080fd5b50610347610432366004611b0c565b6109ea565b34801561044357600080fd5b5060405160128152602001610353565b34801561045f57600080fd5b50600a5461034790610100900460ff1681565b34801561047e57600080fd5b5061034761048d366004611ac0565b610a0e565b34801561049e57600080fd5b506019546104b2906001600160a01b031681565b6040516001600160a01b039091168152602001610353565b3480156104d657600080fd5b506103646104e5366004611b56565b610a4d565b3480156104f657600080fd5b506016546104b2906001600160a01b031681565b34801561051657600080fd5b5061037c60155481565b34801561052c57600080fd5b5061037c61053b366004611a47565b6001600160a01b031660009081526020819052604090205490565b34801561056257600080fd5b50610364610af5565b34801561057757600080fd5b5061037c60105481565b34801561058d57600080fd5b50600a546103479060ff1681565b3480156105a757600080fd5b5061037c600f5481565b3480156105bd57600080fd5b5061037c600e5481565b3480156105d357600080fd5b5061037c600c5481565b3480156105e957600080fd5b506005546001600160a01b03166104b2565b34801561060757600080fd5b5061039f610b2b565b34801561061c57600080fd5b5061034761062b366004611a47565b60086020526000908152604090205460ff1681565b34801561064c57600080fd5b5061037c61065b366004611ac0565b600960209081526000928352604080842090915290825290205481565b34801561068457600080fd5b50610347610693366004611ac0565b610b3a565b3480156106a457600080fd5b50600a546103479062010000900460ff1681565b3480156106c457600080fd5b506103476106d3366004611ac0565b610be4565b3480156106e457600080fd5b5061037c60145481565b3480156106fa57600080fd5b506018546104b2906001600160a01b031681565b61036461071c366004611b8d565b610bf2565b34801561072d57600080fd5b5061036461073c366004611ac0565b610c2b565b34801561074d57600080fd5b5061037c60135481565b34801561076357600080fd5b506017546104b2906001600160a01b031681565b34801561078357600080fd5b5061037c60115481565b34801561079957600080fd5b5061037c6107a8366004611ba6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107df57600080fd5b5061037c600d5481565b3480156107f557600080fd5b50610364610804366004611a47565b610cf7565b34801561081557600080fd5b50610364610824366004611b56565b610d2e565b34801561083557600080fd5b50610364610844366004611a47565b610ddc565b34801561085557600080fd5b50610364610e6c565b34801561086a57600080fd5b50601a546104b2906001600160a01b031681565b34801561088a57600080fd5b50610364610ecc565b34801561089f57600080fd5b506103476108ae366004611a47565b60076020526000908152604090205460ff1681565b3480156108cf57600080fd5b506103646108de366004611b56565b610ef5565b6108eb611165565b565b6060600380546108fc90611bd9565b80601f016020809104026020016040519081016040528092919081815260200182805461092890611bd9565b80156109755780601f1061094a57610100808354040283529160200191610975565b820191906000526020600020905b81548152906001019060200180831161095857829003601f168201915b5050505050905090565b60003361098d8185856111bf565b60019150505b92915050565b6109a1611165565b60105482111580156109b557506011548111155b6109be57600080fd5b601082905560118190556109d28183611c29565b6000036109e657600a805462ff0000191690555b5050565b6000336109f8858285611317565b610a038585856113a3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061098d9082908690610a48908790611c29565b6111bf565b610a55611165565b6001600160a01b03821660009081526006602052604090205481151560ff909116151503610aca5760405162461bcd60e51b815260206004820181905260248201527f4e6f20666565206164647265737320737461746520616c72656164792073657460448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b610afd611165565b610b0b600e54600f54610999565b600a54610100900460ff1615610b2357610b23610ecc565b6108eb61166a565b6060600480546108fc90611bd9565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610bd75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610ac1565b610a0382868684036111bf565b60003361098d8185856113a3565b610bfa611165565b610c0261167c565b610c0c8143611c29565b601b5550600c54601055600d54601155600a805460ff19166001179055565b306001600160a01b03831603610c4057600080fd5b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610ca0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc49190611c3c565b905060008215610cd45782610cd6565b815b601654909150610cf19085906001600160a01b031683611758565b50505050565b610cff611165565b6016805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610d36611165565b6001600160a01b03821660009081526007602052604090205481151560ff909116151503610db15760405162461bcd60e51b815260206004820152602260248201527f4e6f206c696d6974206164647265737320737461746520616c72656164792073604482015261195d60f21b6064820152608401610ac1565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b610de4611165565b6001600160a01b038116610e605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ac1565b610e69816118d1565b50565b6016546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610eb9576040519150601f19603f3d011682016040523d82523d6000602084013e610ebe565b606091505b5050905080610e6957600080fd5b610ed4611165565b600a54610100900460ff16610ee857600080fd5b600a805461ff0019169055565b610efd611165565b6001600160a01b03821660009081526008602052604090205481151560ff909116151503610db15760405162461bcd60e51b815260206004820152602260248201527f4e6f206c696d6974206164647265737320737461746520616c72656164792073604482015261195d60f21b6064820152608401610ac1565b6001600160a01b038316610ff45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610ac1565b6001600160a01b0382166110705760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610ac1565b6001600160a01b038316600090815260208190526040902054818110156110ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610ac1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610cf1565b6005546001600160a01b031633146108eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ac1565b6001600160a01b03831661123a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ac1565b6001600160a01b0382166112b65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610ac1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610cf157818110156113965760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ac1565b610cf184848484036111bf565b8015806113b25750601c5460ff165b806113c05750600a5460ff16155b806113e357506001600160a01b03831660009081526006602052604090205460ff165b8061140657506001600160a01b03821660009081526006602052604090205460ff165b1561141b57611416838383610f78565b505050565b6018546001600160a01b039081169083160361151a573060009081526020819052604090205460155481111561146c57601c805460ff1916600117905561146181611930565b601c805460ff191690555b47156114c9576016546040516000916001600160a01b03169047908381818185875af1925050503d80600081146114bf576040519150601f19603f3d011682016040523d82523d6000602084013e6114c4565b606091505b505050505b600a5462010000900460ff1615611518576000600b54601154846114ed9190611c55565b6114f79190611c6c565b90508015611516576115098184611c8e565b9250611516853083610f78565b505b505b6018546001600160a01b03848116911614801561153f5750600a5462010000900460ff165b15611582576000600b54601054836115579190611c55565b6115619190611c6c565b90508015611580576115738183611c8e565b9150611580843083610f78565b505b600a54610100900460ff161561165f57326000908152600960209081526040808320438452909152902054156115b757600080fd5b3260009081526009602090815260408083204384528252808320600190556001600160a01b0386168352600890915290205460ff166115ff576013548111156115ff57600080fd5b6001600160a01b03821660009081526007602052604090205460ff16611650576014546001600160a01b0383166000908152602081905260409020546116459083611c29565b111561165057600080fd5b601b5443101561165f57600080fd5b611416838383610f78565b611672611165565b6108eb60006118d1565b601a546001600160a01b031663f305d71947306116ae816001600160a01b031660009081526020819052604090205490565b60165460405160e086901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b039384166004820152602481019290925260006044830181905260648301529190911660848201524260a482015260c40160606040518083038185885af1158015611733573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114169190611ca1565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052915160009283928716916118129190611ccf565b6000604051808303816000865af19150503d806000811461184f576040519150601f19603f3d011682016040523d82523d6000602084013e611854565b606091505b509150915081801561187e57508051158061187e57508080602001905181019061187e9190611ceb565b6118ca5760405162461bcd60e51b815260206004820152600f60248201527f5452414e534645525f4641494c454400000000000000000000000000000000006044820152606401610ac1565b5050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061196557611965611d08565b6001600160a01b03928316602091820292909201015260195482519116908290600190811061199657611996611d08565b6001600160a01b039283166020918202929092010152601a546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906119f5908590600090869030904290600401611d1e565b600060405180830381600087803b158015611a0f57600080fd5b505af1158015611a23573d6000803e3d6000fd5b505050505050565b80356001600160a01b0381168114611a4257600080fd5b919050565b600060208284031215611a5957600080fd5b611a6282611a2b565b9392505050565b60005b83811015611a84578181015183820152602001611a6c565b50506000910152565b6020815260008251806020840152611aac816040850160208701611a69565b601f01601f19169190910160400192915050565b60008060408385031215611ad357600080fd5b611adc83611a2b565b946020939093013593505050565b60008060408385031215611afd57600080fd5b50508035926020909101359150565b600080600060608486031215611b2157600080fd5b611b2a84611a2b565b9250611b3860208501611a2b565b9150604084013590509250925092565b8015158114610e6957600080fd5b60008060408385031215611b6957600080fd5b611b7283611a2b565b91506020830135611b8281611b48565b809150509250929050565b600060208284031215611b9f57600080fd5b5035919050565b60008060408385031215611bb957600080fd5b611bc283611a2b565b9150611bd060208401611a2b565b90509250929050565b600181811c90821680611bed57607f821691505b602082108103611c0d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561099357610993611c13565b600060208284031215611c4e57600080fd5b5051919050565b808202811582820484141761099357610993611c13565b600082611c8957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561099357610993611c13565b600080600060608486031215611cb657600080fd5b8351925060208401519150604084015190509250925092565b60008251611ce1818460208701611a69565b9190910192915050565b600060208284031215611cfd57600080fd5b8151611a6281611b48565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d6e5784516001600160a01b031683529383019391830191600101611d49565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205fda594cf5aeadab15dc32342344eb5c89251a99a83fc7bef02185b142934d2d64736f6c63430008120033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x60806040526004361061030b5760003560e01c80638da5cb5b1161019a578063d72b11bd116100e1578063f2fde38b1161008a578063f928364c11610064578063f928364c1461087e578063fd15172614610893578063fe2c62ce146108c357600080fd5b8063f2fde38b14610829578063f5648a4f14610849578063f887ea401461085e57600080fd5b8063e1671339116100bb578063e1671339146107d3578063e74b981b146107e9578063e7ea0a1f1461080957600080fd5b8063d72b11bd14610757578063dca69d2114610777578063dd62ed3e1461078d57600080fd5b8063a9059cbb11610143578063bb9f64271161011d578063bb9f64271461070e578063bd61f0a614610721578063cf46f24c1461074157600080fd5b8063a9059cbb146106b8578063aa4bde28146106d8578063ac38693e146106ee57600080fd5b80639df4b65e116101745780639df4b65e14610640578063a457c2d714610678578063a64e4f8a1461069857600080fd5b80638da5cb5b146105dd57806395d89b41146105fb578063962adf4e1461061057600080fd5b8063395093511161025e578063715018a61161020757806386b072c4116101e157806386b072c41461059b5780638bdc2f2b146105b15780638cdc3a00146105c757600080fd5b8063715018a6146105565780637b24ab321461056b5780638091f3bf1461058157600080fd5b8063469048401161023857806346904840146104ea5780636ee2a9b21461050a57806370a082311461052057600080fd5b806339509351146104725780633fc8cef31461049257806342701a8e146104ca57600080fd5b80630b78f9c0116102c057806323b872dd1161029a57806323b872dd14610417578063313ce567146104375780633582ad231461045357600080fd5b80630b78f9c0146103cc578063180b0d7e146103ec57806318160ddd1461040257600080fd5b8063047fc9aa116102f1578063047fc9aa1461036657806306fdde031461038a578063095ea7b3146103ac57600080fd5b80622a20501461031757806301339c211461035c57600080fd5b3661031257005b600080fd5b34801561032357600080fd5b50610347610332366004611a47565b60066020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b6103646108e3565b005b34801561037257600080fd5b5061037c60125481565b604051908152602001610353565b34801561039657600080fd5b5061039f6108ed565b6040516103539190611a8d565b3480156103b857600080fd5b506103476103c7366004611ac0565b61097f565b3480156103d857600080fd5b506103646103e7366004611aea565b610999565b3480156103f857600080fd5b5061037c600b5481565b34801561040e57600080fd5b5060025461037c565b34801561042357600080fd5b50610347610432366004611b0c565b6109ea565b34801561044357600080fd5b5060405160128152602001610353565b34801561045f57600080fd5b50600a5461034790610100900460ff1681565b34801561047e57600080fd5b5061034761048d366004611ac0565b610a0e565b34801561049e57600080fd5b506019546104b2906001600160a01b031681565b6040516001600160a01b039091168152602001610353565b3480156104d657600080fd5b506103646104e5366004611b56565b610a4d565b3480156104f657600080fd5b506016546104b2906001600160a01b031681565b34801561051657600080fd5b5061037c60155481565b34801561052c57600080fd5b5061037c61053b366004611a47565b6001600160a01b031660009081526020819052604090205490565b34801561056257600080fd5b50610364610af5565b34801561057757600080fd5b5061037c60105481565b34801561058d57600080fd5b50600a546103479060ff1681565b3480156105a757600080fd5b5061037c600f5481565b3480156105bd57600080fd5b5061037c600e5481565b3480156105d357600080fd5b5061037c600c5481565b3480156105e957600080fd5b506005546001600160a01b03166104b2565b34801561060757600080fd5b5061039f610b2b565b34801561061c57600080fd5b5061034761062b366004611a47565b60086020526000908152604090205460ff1681565b34801561064c57600080fd5b5061037c61065b366004611ac0565b600960209081526000928352604080842090915290825290205481565b34801561068457600080fd5b50610347610693366004611ac0565b610b3a565b3480156106a457600080fd5b50600a546103479062010000900460ff1681565b3480156106c457600080fd5b506103476106d3366004611ac0565b610be4565b3480156106e457600080fd5b5061037c60145481565b3480156106fa57600080fd5b506018546104b2906001600160a01b031681565b61036461071c366004611b8d565b610bf2565b34801561072d57600080fd5b5061036461073c366004611ac0565b610c2b565b34801561074d57600080fd5b5061037c60135481565b34801561076357600080fd5b506017546104b2906001600160a01b031681565b34801561078357600080fd5b5061037c60115481565b34801561079957600080fd5b5061037c6107a8366004611ba6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107df57600080fd5b5061037c600d5481565b3480156107f557600080fd5b50610364610804366004611a47565b610cf7565b34801561081557600080fd5b50610364610824366004611b56565b610d2e565b34801561083557600080fd5b50610364610844366004611a47565b610ddc565b34801561085557600080fd5b50610364610e6c565b34801561086a57600080fd5b50601a546104b2906001600160a01b031681565b34801561088a57600080fd5b50610364610ecc565b34801561089f57600080fd5b506103476108ae366004611a47565b60076020526000908152604090205460ff1681565b3480156108cf57600080fd5b506103646108de366004611b56565b610ef5565b6108eb611165565b565b6060600380546108fc90611bd9565b80601f016020809104026020016040519081016040528092919081815260200182805461092890611bd9565b80156109755780601f1061094a57610100808354040283529160200191610975565b820191906000526020600020905b81548152906001019060200180831161095857829003601f168201915b5050505050905090565b60003361098d8185856111bf565b60019150505b92915050565b6109a1611165565b60105482111580156109b557506011548111155b6109be57600080fd5b601082905560118190556109d28183611c29565b6000036109e657600a805462ff0000191690555b5050565b6000336109f8858285611317565b610a038585856113a3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061098d9082908690610a48908790611c29565b6111bf565b610a55611165565b6001600160a01b03821660009081526006602052604090205481151560ff909116151503610aca5760405162461bcd60e51b815260206004820181905260248201527f4e6f20666565206164647265737320737461746520616c72656164792073657460448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b610afd611165565b610b0b600e54600f54610999565b600a54610100900460ff1615610b2357610b23610ecc565b6108eb61166a565b6060600480546108fc90611bd9565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610bd75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610ac1565b610a0382868684036111bf565b60003361098d8185856113a3565b610bfa611165565b610c0261167c565b610c0c8143611c29565b601b5550600c54601055600d54601155600a805460ff19166001179055565b306001600160a01b03831603610c4057600080fd5b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610ca0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc49190611c3c565b905060008215610cd45782610cd6565b815b601654909150610cf19085906001600160a01b031683611758565b50505050565b610cff611165565b6016805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610d36611165565b6001600160a01b03821660009081526007602052604090205481151560ff909116151503610db15760405162461bcd60e51b815260206004820152602260248201527f4e6f206c696d6974206164647265737320737461746520616c72656164792073604482015261195d60f21b6064820152608401610ac1565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b610de4611165565b6001600160a01b038116610e605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ac1565b610e69816118d1565b50565b6016546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610eb9576040519150601f19603f3d011682016040523d82523d6000602084013e610ebe565b606091505b5050905080610e6957600080fd5b610ed4611165565b600a54610100900460ff16610ee857600080fd5b600a805461ff0019169055565b610efd611165565b6001600160a01b03821660009081526008602052604090205481151560ff909116151503610db15760405162461bcd60e51b815260206004820152602260248201527f4e6f206c696d6974206164647265737320737461746520616c72656164792073604482015261195d60f21b6064820152608401610ac1565b6001600160a01b038316610ff45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610ac1565b6001600160a01b0382166110705760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610ac1565b6001600160a01b038316600090815260208190526040902054818110156110ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610ac1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610cf1565b6005546001600160a01b031633146108eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ac1565b6001600160a01b03831661123a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ac1565b6001600160a01b0382166112b65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610ac1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610cf157818110156113965760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ac1565b610cf184848484036111bf565b8015806113b25750601c5460ff165b806113c05750600a5460ff16155b806113e357506001600160a01b03831660009081526006602052604090205460ff165b8061140657506001600160a01b03821660009081526006602052604090205460ff165b1561141b57611416838383610f78565b505050565b6018546001600160a01b039081169083160361151a573060009081526020819052604090205460155481111561146c57601c805460ff1916600117905561146181611930565b601c805460ff191690555b47156114c9576016546040516000916001600160a01b03169047908381818185875af1925050503d80600081146114bf576040519150601f19603f3d011682016040523d82523d6000602084013e6114c4565b606091505b505050505b600a5462010000900460ff1615611518576000600b54601154846114ed9190611c55565b6114f79190611c6c565b90508015611516576115098184611c8e565b9250611516853083610f78565b505b505b6018546001600160a01b03848116911614801561153f5750600a5462010000900460ff165b15611582576000600b54601054836115579190611c55565b6115619190611c6c565b90508015611580576115738183611c8e565b9150611580843083610f78565b505b600a54610100900460ff161561165f57326000908152600960209081526040808320438452909152902054156115b757600080fd5b3260009081526009602090815260408083204384528252808320600190556001600160a01b0386168352600890915290205460ff166115ff576013548111156115ff57600080fd5b6001600160a01b03821660009081526007602052604090205460ff16611650576014546001600160a01b0383166000908152602081905260409020546116459083611c29565b111561165057600080fd5b601b5443101561165f57600080fd5b611416838383610f78565b611672611165565b6108eb60006118d1565b601a546001600160a01b031663f305d71947306116ae816001600160a01b031660009081526020819052604090205490565b60165460405160e086901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b039384166004820152602481019290925260006044830181905260648301529190911660848201524260a482015260c40160606040518083038185885af1158015611733573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114169190611ca1565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052915160009283928716916118129190611ccf565b6000604051808303816000865af19150503d806000811461184f576040519150601f19603f3d011682016040523d82523d6000602084013e611854565b606091505b509150915081801561187e57508051158061187e57508080602001905181019061187e9190611ceb565b6118ca5760405162461bcd60e51b815260206004820152600f60248201527f5452414e534645525f4641494c454400000000000000000000000000000000006044820152606401610ac1565b5050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061196557611965611d08565b6001600160a01b03928316602091820292909201015260195482519116908290600190811061199657611996611d08565b6001600160a01b039283166020918202929092010152601a546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906119f5908590600090869030904290600401611d1e565b600060405180830381600087803b158015611a0f57600080fd5b505af1158015611a23573d6000803e3d6000fd5b505050505050565b80356001600160a01b0381168114611a4257600080fd5b919050565b600060208284031215611a5957600080fd5b611a6282611a2b565b9392505050565b60005b83811015611a84578181015183820152602001611a6c565b50506000910152565b6020815260008251806020840152611aac816040850160208701611a69565b601f01601f19169190910160400192915050565b60008060408385031215611ad357600080fd5b611adc83611a2b565b946020939093013593505050565b60008060408385031215611afd57600080fd5b50508035926020909101359150565b600080600060608486031215611b2157600080fd5b611b2a84611a2b565b9250611b3860208501611a2b565b9150604084013590509250925092565b8015158114610e6957600080fd5b60008060408385031215611b6957600080fd5b611b7283611a2b565b91506020830135611b8281611b48565b809150509250929050565b600060208284031215611b9f57600080fd5b5035919050565b60008060408385031215611bb957600080fd5b611bc283611a2b565b9150611bd060208401611a2b565b90509250929050565b600181811c90821680611bed57607f821691505b602082108103611c0d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561099357610993611c13565b600060208284031215611c4e57600080fd5b5051919050565b808202811582820484141761099357610993611c13565b600082611c8957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561099357610993611c13565b600080600060608486031215611cb657600080fd5b8351925060208401519150604084015190509250925092565b60008251611ce1818460208701611a69565b9190910192915050565b600060208284031215611cfd57600080fd5b8151611a6281611b48565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d6e5784516001600160a01b031683529383019391830191600101611d49565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205fda594cf5aeadab15dc32342344eb5c89251a99a83fc7bef02185b142934d2d64736f6c63430008120033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

21228:8881:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21301:37;;;;;;;;;;-1:-1:-1;21301:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;571:14:1;;564:22;546:41;;534:2;519:18;21301:37:0;;;;;;;;28960:47;;;:::i;:::-;;22152:68;;;;;;;;;;;;;;;;;;;744:25:1;;;732:2;717:18;22152:68:0;598:177:1;10040:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12391:201::-;;;;;;;;;;-1:-1:-1;12391:201:0;;;;;:::i;:::-;;:::i;25444:384::-;;;;;;;;;;-1:-1:-1;25444:384:0;;;;;:::i;:::-;;:::i;21805:47::-;;;;;;;;;;;;;;;;11160:108;;;;;;;;;;-1:-1:-1;11248:12:0;;11160:108;;13172:295;;;;;;;;;;-1:-1:-1;13172:295:0;;;;;:::i;:::-;;:::i;11002:93::-;;;;;;;;;;-1:-1:-1;11002:93:0;;11085:2;2423:36:1;;2411:2;2396:18;11002:93:0;2281:184:1;21677:46:0;;;;;;;;;;-1:-1:-1;21677:46:0;;;;;;;;;;;13876:238;;;;;;;;;;-1:-1:-1;13876:238:0;;;;;:::i;:::-;;:::i;22904:19::-;;;;;;;;;;-1:-1:-1;22904:19:0;;;;-1:-1:-1;;;;;22904:19:0;;;;;;-1:-1:-1;;;;;2634:55:1;;;2616:74;;2604:2;2589:18;22904:19:0;2470:226:1;24995:195:0;;;;;;;;;;-1:-1:-1;24995:195:0;;;;;:::i;:::-;;:::i;22571:93::-;;;;;;;;;;-1:-1:-1;22571:93:0;;;;-1:-1:-1;;;;;22571:93:0;;;22417:56;;;;;;;;;;;;;;;;11331:127;;;;;;;;;;-1:-1:-1;11331:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11432:18:0;11405:7;11432:18;;;;;;;;;;;;11331:127;26359:245;;;;;;;;;;;;;:::i;22075:30::-;;;;;;;;;;;;;;;;21623:47;;;;;;;;;;-1:-1:-1;21623:47:0;;;;;;;;22021;;;;;;;;;;;;;;;;21967;;;;;;;;;;;;;;;;21859;;;;;;;;;;;;;;;;6599:87;;;;;;;;;;-1:-1:-1;6672:6:0;;-1:-1:-1;;;;;6672:6:0;6599:87;;10259:104;;;;;;;;;;;;;:::i;21397:50::-;;;;;;;;;;-1:-1:-1;21397:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21540:73;;;;;;;;;;-1:-1:-1;21540:73:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;14617:436;;;;;;;;;;-1:-1:-1;14617:436:0;;;;;:::i;:::-;;:::i;21730:46::-;;;;;;;;;;-1:-1:-1;21730:46:0;;;;;;;;;;;11664:193;;;;;;;;;;-1:-1:-1;11664:193:0;;;;;:::i;:::-;;:::i;22354:54::-;;;;;;;;;;;;;;;;22868:29;;;;;;;;;;-1:-1:-1;22868:29:0;;;;-1:-1:-1;;;;;22868:29:0;;;28616:336;;;;;;:::i;:::-;;:::i;25836:355::-;;;;;;;;;;-1:-1:-1;25836:355:0;;;;;:::i;:::-;;:::i;22293:54::-;;;;;;;;;;;;;;;;22766:93;;;;;;;;;;-1:-1:-1;22766:93:0;;;;-1:-1:-1;;;;;22766:93:0;;;22112:31;;;;;;;;;;;;;;;;11920:151;;;;;;;;;;-1:-1:-1;11920:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;12036:18:0;;;12009:7;12036:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11920:151;21913:47;;;;;;;;;;;;;;;;25198:114;;;;;;;;;;-1:-1:-1;25198:114:0;;;;;:::i;:::-;;:::i;24515:227::-;;;;;;;;;;-1:-1:-1;24515:227:0;;;;;:::i;:::-;;:::i;7505:201::-;;;;;;;;;;-1:-1:-1;7505:201:0;;;;;:::i;:::-;;:::i;26199:152::-;;;;;;;;;;;;;:::i;22930:21::-;;;;;;;;;;-1:-1:-1;22930:21:0;;;;-1:-1:-1;;;;;22930:21:0;;;25321:115;;;;;;;;;;;;;:::i;21345:45::-;;;;;;;;;;-1:-1:-1;21345:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24750:237;;;;;;;;;;-1:-1:-1;24750:237:0;;;;;:::i;:::-;;:::i;28960:47::-;6485:13;:11;:13::i;:::-;28960:47::o;10040:100::-;10094:13;10127:5;10120:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10040:100;:::o;12391:201::-;12474:4;5388:10;12530:32;5388:10;12546:7;12555:6;12530:8;:32::i;:::-;12580:4;12573:11;;;12391:201;;;;;:::o;25444:384::-;6485:13;:11;:13::i;:::-;25570:15:::1;;25550:16;:35;;:76;;;;;25610:16;;25589:17;:37;;25550:76;25542:85;;;::::0;::::1;;25638:15;:34:::0;;;25683:16:::1;:36:::0;;;25734:34:::1;25702:17:::0;25656:16;25734:34:::1;:::i;:::-;25772:1;25734:39:::0;25730:91:::1;;25790:11;:19:::0;;-1:-1:-1;;25790:19:0::1;::::0;;25730:91:::1;25444:384:::0;;:::o;13172:295::-;13303:4;5388:10;13361:38;13377:4;5388:10;13392:6;13361:15;:38::i;:::-;13410:27;13420:4;13426:2;13430:6;13410:9;:27::i;:::-;-1:-1:-1;13455:4:0;;13172:295;-1:-1:-1;;;;13172:295:0:o;13876:238::-;5388:10;13964:4;12036:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;12036:27:0;;;;;;;;;;13964:4;;5388:10;14020:64;;5388:10;;12036:27;;14045:38;;14073:10;;14045:38;:::i;:::-;14020:8;:64::i;24995:195::-;6485:13;:11;:13::i;:::-;-1:-1:-1;;;;;25083:14:0;::::1;;::::0;;;:5:::1;:14;::::0;;;;;:26;::::1;;:14;::::0;;::::1;:26;;::::0;25075:71:::1;;;::::0;-1:-1:-1;;;25075:71:0;;4802:2:1;25075:71:0::1;::::0;::::1;4784:21:1::0;;;4821:18;;;4814:30;4880:34;4860:18;;;4853:62;4932:18;;25075:71:0::1;;;;;;;;;-1:-1:-1::0;;;;;25157:14:0;;;::::1;;::::0;;;:5:::1;:14;::::0;;;;:25;;-1:-1:-1;;25157:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24995:195::o;26359:245::-;6485:13;:11;:13::i;:::-;26425:52:::1;26433:20;;26455:21;;26425:7;:52::i;:::-;26502:13;::::0;::::1;::::0;::::1;;;26498:61;;;26532:15;:13;:15::i;:::-;26571:25;:23;:25::i;10259:104::-:0;10315:13;10348:7;10341:14;;;;;:::i;14617:436::-;5388:10;14710:4;12036:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;12036:27:0;;;;;;;;;;14710:4;;5388:10;14857:15;14837:16;:35;;14829:85;;;;-1:-1:-1;;;14829:85:0;;5163:2:1;14829:85:0;;;5145:21:1;5202:2;5182:18;;;5175:30;5241:34;5221:18;;;5214:62;5312:7;5292:18;;;5285:35;5337:19;;14829:85:0;4961:401:1;14829:85:0;14950:60;14959:5;14966:7;14994:15;14975:16;:34;14950:8;:60::i;11664:193::-;11743:4;5388:10;11799:28;5388:10;11816:2;11820:6;11799:9;:28::i;28616:336::-;6485:13;:11;:13::i;:::-;28731:21:::1;:19;:21::i;:::-;28789:25;28804:10:::0;28789:12:::1;:25;:::i;:::-;28763:23;:51:::0;-1:-1:-1;28843:22:0::1;::::0;28825:15:::1;:40:::0;28895:23:::1;::::0;28876:16:::1;:42:::0;-1:-1:-1;28929:15:0;;-1:-1:-1;;28929:15:0::1;28940:4;28929:15;::::0;;28616:336::o;25836:355::-;25955:4;-1:-1:-1;;;;;25931:29:0;;;25923:38;;;;;;25995:45;;;;;26034:4;25995:45;;;2616:74:1;25972:20:0;;-1:-1:-1;;;;;25995:30:0;;;;;2589:18:1;;25995:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25972:68;-1:-1:-1;26051:24:0;26078:11;;:35;;26107:6;26078:35;;;26092:12;26078:35;26152:12;;26051:62;;-1:-1:-1;26124:59:0;;26138:12;;-1:-1:-1;;;;;26152:12:0;26051:62;26124:13;:59::i;:::-;25912:279;;25836:355;;:::o;25198:114::-;6485:13;:11;:13::i;:::-;25276:12:::1;:28:::0;;-1:-1:-1;;25276:28:0::1;-1:-1:-1::0;;;;;25276:28:0;;;::::1;::::0;;;::::1;::::0;;25198:114::o;24515:227::-;6485:13;:11;:13::i;:::-;-1:-1:-1;;;;;24613:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;;:36;::::1;;:22;::::0;;::::1;:36;;::::0;24605:83:::1;;;::::0;-1:-1:-1;;;24605:83:0;;5758:2:1;24605:83:0::1;::::0;::::1;5740:21:1::0;5797:2;5777:18;;;5770:30;5836:34;5816:18;;;5809:62;-1:-1:-1;;;5887:18:1;;;5880:32;5929:19;;24605:83:0::1;5556:398:1::0;24605:83:0::1;-1:-1:-1::0;;;;;24699:22:0;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:35;;-1:-1:-1;;24699:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24515:227::o;7505:201::-;6485:13;:11;:13::i;:::-;-1:-1:-1;;;;;7594:22:0;::::1;7586:73;;;::::0;-1:-1:-1;;;7586:73:0;;6161:2:1;7586:73:0::1;::::0;::::1;6143:21:1::0;6200:2;6180:18;;;6173:30;6239:34;6219:18;;;6212:62;6310:8;6290:18;;;6283:36;6336:19;;7586:73:0::1;5959:402:1::0;7586:73:0::1;7670:28;7689:8;7670:18;:28::i;:::-;7505:201:::0;:::o;26199:152::-;26265:12;;:51;;26248:12;;-1:-1:-1;;;;;26265:12:0;;26290:21;;26248:12;26265:51;26248:12;26265:51;26290:21;26265:12;:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26247:69;;;26335:7;26327:16;;;;;25321:115;6485:13;:11;:13::i;:::-;25382::::1;::::0;::::1;::::0;::::1;;;25374:22;;;::::0;::::1;;25407:13;:21:::0;;-1:-1:-1;;25407:21:0::1;::::0;;25321:115::o;24750:237::-;6485:13;:11;:13::i;:::-;-1:-1:-1;;;;;24853:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;:41;::::1;;:27;::::0;;::::1;:41;;::::0;24845:88:::1;;;::::0;-1:-1:-1;;;24845:88:0;;5758:2:1;24845:88:0::1;::::0;::::1;5740:21:1::0;5797:2;5777:18;;;5770:30;5836:34;5816:18;;;5809:62;-1:-1:-1;;;5887:18:1;;;5880:32;5929:19;;24845:88:0::1;5556:398:1::0;15523:840:0;-1:-1:-1;;;;;15654:18:0;;15646:68;;;;-1:-1:-1;;;15646:68:0;;6778:2:1;15646:68:0;;;6760:21:1;6817:2;6797:18;;;6790:30;6856:34;6836:18;;;6829:62;6927:7;6907:18;;;6900:35;6952:19;;15646:68:0;6576:401:1;15646:68:0;-1:-1:-1;;;;;15733:16:0;;15725:64;;;;-1:-1:-1;;;15725:64:0;;7184:2:1;15725:64:0;;;7166:21:1;7223:2;7203:18;;;7196:30;7262:34;7242:18;;;7235:62;7333:5;7313:18;;;7306:33;7356:19;;15725:64:0;6982:399:1;15725:64:0;-1:-1:-1;;;;;15875:15:0;;15853:19;15875:15;;;;;;;;;;;15909:21;;;;15901:72;;;;-1:-1:-1;;;15901:72:0;;7588:2:1;15901:72:0;;;7570:21:1;7627:2;7607:18;;;7600:30;7666:34;7646:18;;;7639:62;7737:8;7717:18;;;7710:36;7763:19;;15901:72:0;7386:402:1;15901:72:0;-1:-1:-1;;;;;16009:15:0;;;:9;:15;;;;;;;;;;;16027:20;;;16009:38;;16227:13;;;;;;;;;;:23;;;;;;16279:26;;744:25:1;;;16227:13:0;;16279:26;;717:18:1;16279:26:0;;;;;;;16318:37;26612:1996;6764:132;6672:6;;-1:-1:-1;;;;;6672:6:0;5388:10;6828:23;6820:68;;;;-1:-1:-1;;;6820:68:0;;7995:2:1;6820:68:0;;;7977:21:1;;;8014:18;;;8007:30;8073:34;8053:18;;;8046:62;8125:18;;6820:68:0;7793:356:1;18644:380:0;-1:-1:-1;;;;;18780:19:0;;18772:68;;;;-1:-1:-1;;;18772:68:0;;8356:2:1;18772:68:0;;;8338:21:1;8395:2;8375:18;;;8368:30;8434:34;8414:18;;;8407:62;8505:6;8485:18;;;8478:34;8529:19;;18772:68:0;8154:400:1;18772:68:0;-1:-1:-1;;;;;18859:21:0;;18851:68;;;;-1:-1:-1;;;18851:68:0;;8761:2:1;18851:68:0;;;8743:21:1;8800:2;8780:18;;;8773:30;8839:34;8819:18;;;8812:62;8910:4;8890:18;;;8883:32;8932:19;;18851:68:0;8559:398:1;18851:68:0;-1:-1:-1;;;;;18932:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18984:32;;744:25:1;;;18984:32:0;;717:18:1;18984:32:0;;;;;;;18644:380;;;:::o;19315:453::-;-1:-1:-1;;;;;12036:18:0;;;19450:24;12036:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;19517:37:0;;19513:248;;19599:6;19579:16;:26;;19571:68;;;;-1:-1:-1;;;19571:68:0;;9164:2:1;19571:68:0;;;9146:21:1;9203:2;9183:18;;;9176:30;9242:31;9222:18;;;9215:59;9291:18;;19571:68:0;8962:353:1;19571:68:0;19683:51;19692:5;19699:7;19727:6;19708:16;:25;19683:8;:51::i;26612:1996::-;26706:11;;;:31;;-1:-1:-1;26721:16:0;;;;26706:31;:44;;;-1:-1:-1;26742:8:0;;;;26741:9;26706:44;:59;;;-1:-1:-1;;;;;;26754:11:0;;;;;;:5;:11;;;;;;;;26706:59;:72;;;-1:-1:-1;;;;;;26769:9:0;;;;;;:5;:9;;;;;;;;26706:72;26702:159;;;26795:33;26811:4;26817:2;26821:6;26795:15;:33::i;:::-;26612:1996;;;:::o;26702:159::-;26900:14;;-1:-1:-1;;;;;26900:14:0;;;26894:20;;;;26890:852;;26975:4;26931:23;11432:18;;;;;;;;;;;27018:21;;27000:39;;26996:198;;;27060:16;:23;;-1:-1:-1;;27060:23:0;27079:4;27060:23;;;27102:33;27119:15;27102:16;:33::i;:::-;27154:16;:24;;-1:-1:-1;;27154:24:0;;;26996:198;27214:21;:25;27210:213;;27356:12;;:51;;27339:12;;-1:-1:-1;;;;;27356:12:0;;27381:21;;27339:12;27356:51;27339:12;27356:51;27381:21;27356:12;:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;27210:213:0;27444:11;;;;;;;27440:291;;;27476:17;27524:14;;27505:16;;27496:6;:25;;;;:::i;:::-;:42;;;;:::i;:::-;27476:62;-1:-1:-1;27561:13:0;;27557:159;;27608:18;27617:9;27608:6;:18;:::i;:::-;27599:27;;27649:47;27665:4;27679;27686:9;27649:15;:47::i;:::-;27457:274;27440:291;26916:826;26890:852;27782:14;;-1:-1:-1;;;;;27774:22:0;;;27782:14;;27774:22;:37;;;;-1:-1:-1;27800:11:0;;;;;;;27774:37;27770:292;;;27828:17;27875:14;;27857:15;;27848:6;:24;;;;:::i;:::-;:41;;;;:::i;:::-;27828:61;-1:-1:-1;27908:13:0;;27904:147;;27951:18;27960:9;27951:6;:18;:::i;:::-;27942:27;;27988:47;28004:4;28018;28025:9;27988:15;:47::i;:::-;27813:249;27770:292;28078:13;;;;;;;28074:480;;;28135:9;28116:29;;;;:18;:29;;;;;;;;28146:12;28116:43;;;;;;;;:48;28108:57;;;;;;28199:9;28180:29;;;;:18;:29;;;;;;;;28210:12;28180:43;;;;;;;28226:1;28180:47;;-1:-1:-1;;;;;28249:24:0;;;;:18;:24;;;;;;;;28244:97;;28312:12;;28302:6;:22;;28294:31;;;;;;-1:-1:-1;;;;;28362:17:0;;;;;;:13;:17;;;;;;;;28357:109;;28434:15;;-1:-1:-1;;;;;11432:18:0;;11405:7;11432:18;;;;;;;;;;;28408:22;;:6;:22;:::i;:::-;:41;;28400:50;;;;;;28518:23;;28502:12;:39;;28494:48;;;;;;28567:33;28583:4;28589:2;28593:6;28567:15;:33::i;7247:103::-;6485:13;:11;:13::i;:::-;7312:30:::1;7339:1;7312:18;:30::i;29395:416::-:0;29584:6;;-1:-1:-1;;;;;29584:6:0;:22;29614:21;29659:4;29679:24;29659:4;-1:-1:-1;;;;;11432:18:0;11405:7;11432:18;;;;;;;;;;;;11331:127;29679:24;29750:12;;29584:219;;;;;;;;;;-1:-1:-1;;;;;10287:15:1;;;29584:219:0;;;10269:34:1;10319:18;;;10312:34;;;;29718:1:0;10362:18:1;;;10355:34;;;10405:18;;;10398:34;29750:12:0;;;;10448:19:1;;;10441:44;29777:15:0;10501:19:1;;;10494:35;10180:19;;29584:219:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;29819:287::-;23111:34;;;;;;;;;;;;;;;;;29950:51;;-1:-1:-1;;;;;11043:55:1;;;29950:51:0;;;11025:74:1;11115:18;;;;11108:34;;;29950:51:0;;;;;;;;;;10998:18:1;;;;29950:51:0;;;;;;;;;;;;;29939:63;;-1:-1:-1;;;;29939:10:0;;;:63;;29950:51;29939:63;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29903:99;;;;30021:7;:57;;;;-1:-1:-1;30033:11:0;;:16;;:44;;;30064:4;30053:24;;;;;;;;;;;;:::i;:::-;30013:85;;;;-1:-1:-1;;;30013:85:0;;11897:2:1;30013:85:0;;;11879:21:1;11936:2;11916:18;;;11909:30;11975:17;11955:18;;;11948:45;12010:18;;30013:85:0;11695:339:1;30013:85:0;29892:214;;29819:287;;;:::o;7866:191::-;7959:6;;;-1:-1:-1;;;;;7976:17:0;;;-1:-1:-1;;7976:17:0;;;;;;;8009:40;;7959:6;;;7976:17;7959:6;;8009:40;;7940:16;;8009:40;7929:128;7866:191;:::o;29015:372::-;29106:16;;;29120:1;29106:16;;;;;;;;29082:21;;29106:16;;;;;;;;;;-1:-1:-1;29106:16:0;29082:40;;29151:4;29133;29138:1;29133:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;29133:23:0;;;:7;;;;;;;;;:23;29177:4;;29167:7;;29177:4;;;29167;;29177;;29167:7;;;;;;:::i;:::-;-1:-1:-1;;;;;29167:14:0;;;:7;;;;;;;;;:14;29192:6;;:187;;;;;:6;;;:57;;:187;;29264:11;;29192:6;;29306:4;;29333;;29353:15;;29192:187;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29071:316;29015:372;:::o;14:196:1:-;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;:::-;356:39;215:186;-1:-1:-1;;;215:186:1:o;780:250::-;865:1;875:113;889:6;886:1;883:13;875:113;;;965:11;;;959:18;946:11;;;939:39;911:2;904:10;875:113;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;780:250::o;1035:396::-;1184:2;1173:9;1166:21;1147:4;1216:6;1210:13;1259:6;1254:2;1243:9;1239:18;1232:34;1275:79;1347:6;1342:2;1331:9;1327:18;1322:2;1314:6;1310:15;1275:79;:::i;:::-;1415:2;1394:15;-1:-1:-1;;1390:29:1;1375:45;;;;1422:2;1371:54;;1035:396;-1:-1:-1;;1035:396:1:o;1436:254::-;1504:6;1512;1565:2;1553:9;1544:7;1540:23;1536:32;1533:52;;;1581:1;1578;1571:12;1533:52;1604:29;1623:9;1604:29;:::i;:::-;1594:39;1680:2;1665:18;;;;1652:32;;-1:-1:-1;;;1436:254:1:o;1695:248::-;1763:6;1771;1824:2;1812:9;1803:7;1799:23;1795:32;1792:52;;;1840:1;1837;1830:12;1792:52;-1:-1:-1;;1863:23:1;;;1933:2;1918:18;;;1905:32;;-1:-1:-1;1695:248:1:o;1948:328::-;2025:6;2033;2041;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;2133:29;2152:9;2133:29;:::i;:::-;2123:39;;2181:38;2215:2;2204:9;2200:18;2181:38;:::i;:::-;2171:48;;2266:2;2255:9;2251:18;2238:32;2228:42;;1948:328;;;;;:::o;2701:118::-;2787:5;2780:13;2773:21;2766:5;2763:32;2753:60;;2809:1;2806;2799:12;2824:315;2889:6;2897;2950:2;2938:9;2929:7;2925:23;2921:32;2918:52;;;2966:1;2963;2956:12;2918:52;2989:29;3008:9;2989:29;:::i;:::-;2979:39;;3068:2;3057:9;3053:18;3040:32;3081:28;3103:5;3081:28;:::i;:::-;3128:5;3118:15;;;2824:315;;;;;:::o;3144:180::-;3203:6;3256:2;3244:9;3235:7;3231:23;3227:32;3224:52;;;3272:1;3269;3262:12;3224:52;-1:-1:-1;3295:23:1;;3144:180;-1:-1:-1;3144:180:1:o;3329:260::-;3397:6;3405;3458:2;3446:9;3437:7;3433:23;3429:32;3426:52;;;3474:1;3471;3464:12;3426:52;3497:29;3516:9;3497:29;:::i;:::-;3487:39;;3545:38;3579:2;3568:9;3564:18;3545:38;:::i;:::-;3535:48;;3329:260;;;;;:::o;3839:437::-;3918:1;3914:12;;;;3961;;;3982:61;;4036:4;4028:6;4024:17;4014:27;;3982:61;4089:2;4081:6;4078:14;4058:18;4055:38;4052:218;;-1:-1:-1;;;4123:1:1;4116:88;4227:4;4224:1;4217:15;4255:4;4252:1;4245:15;4052:218;;3839:437;;;:::o;4281:184::-;-1:-1:-1;;;4330:1:1;4323:88;4430:4;4427:1;4420:15;4454:4;4451:1;4444:15;4470:125;4535:9;;;4556:10;;;4553:36;;;4569:18;;:::i;5367:184::-;5437:6;5490:2;5478:9;5469:7;5465:23;5461:32;5458:52;;;5506:1;5503;5496:12;5458:52;-1:-1:-1;5529:16:1;;5367:184;-1:-1:-1;5367:184:1:o;9320:168::-;9393:9;;;9424;;9441:15;;;9435:22;;9421:37;9411:71;;9462:18;;:::i;9493:274::-;9533:1;9559;9549:189;;-1:-1:-1;;;9591:1:1;9584:88;9695:4;9692:1;9685:15;9723:4;9720:1;9713:15;9549:189;-1:-1:-1;9752:9:1;;9493:274::o;9772:128::-;9839:9;;;9860:11;;;9857:37;;;9874:18;;:::i;10540:306::-;10628:6;10636;10644;10697:2;10685:9;10676:7;10672:23;10668:32;10665:52;;;10713:1;10710;10703:12;10665:52;10742:9;10736:16;10726:26;;10792:2;10781:9;10777:18;10771:25;10761:35;;10836:2;10825:9;10821:18;10815:25;10805:35;;10540:306;;;;;:::o;11153:287::-;11282:3;11320:6;11314:13;11336:66;11395:6;11390:3;11383:4;11375:6;11371:17;11336:66;:::i;:::-;11418:16;;;;;11153:287;-1:-1:-1;;11153:287:1:o;11445:245::-;11512:6;11565:2;11553:9;11544:7;11540:23;11536:32;11533:52;;;11581:1;11578;11571:12;11533:52;11613:9;11607:16;11632:28;11654:5;11632:28;:::i;12228:184::-;-1:-1:-1;;;12277:1:1;12270:88;12377:4;12374:1;12367:15;12401:4;12398:1;12391:15;12417:1026;12679:4;12727:3;12716:9;12712:19;12758:6;12747:9;12740:25;12784:2;12822:6;12817:2;12806:9;12802:18;12795:34;12865:3;12860:2;12849:9;12845:18;12838:31;12889:6;12924;12918:13;12955:6;12947;12940:22;12993:3;12982:9;12978:19;12971:26;;13032:2;13024:6;13020:15;13006:29;;13053:1;13063:218;13077:6;13074:1;13071:13;13063:218;;;13142:13;;-1:-1:-1;;;;;13138:62:1;13126:75;;13256:15;;;;13221:12;;;;13099:1;13092:9;13063:218;;;-1:-1:-1;;;;;;;13337:55:1;;;;13332:2;13317:18;;13310:83;-1:-1:-1;;;13424:3:1;13409:19;13402:35;13298:3;12417:1026;-1:-1:-1;;;12417:1026:1:o

Swarm Source

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