ETH Price: $2,288.15 (+1.06%)

Token

Wagmi Bot (WAGMI)
 

Overview

Max Total Supply

1,000,000 WAGMI

Holders

184

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,188.471341845805945605 WAGMI

Value
$0.00
0x37f9ead9c630103a0a0cd61196604c6b788f7114
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:
WAGMI

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-22
*/

/**

website : https://www.wagmi-bot.com
twitter : https://twitter.com/wagmibot
Telegram: https://t.me/WagmiBotOfficial

*/
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual 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 {}
}

//SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

interface DexFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

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

    function WETH() external pure returns (address);

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

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

contract WAGMI is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 1_000_000 * 1e18;

    //Router
    DexRouter public immutable uniswapRouter;
    address public immutable pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(2);
    Tax public sellTaxes = Tax(4);
    Tax public transferTaxes = Tax(40);



    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 10_000; //after 0.01% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;
    bool public transferDelayEnabled = true;
    bool public launchTax;
    bool public limitsRemoved = false;


    //Wallets
    address public marketingWallet = 0x3d901767DfFb5A36acC28c848A4Dd9fF2E0e11BA ;

    uint256 public maxWalletPercentage = 4;


    //Events
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event marketingWalletChanged(address indexed _trWallet);
    event SwapThresholdUpdated(uint256 indexed _newThreshold);
    event InternalSwapStatusUpdated(bool indexed _status);
    event TransferFailed(address recipient, uint256 amount);
    event Whitelist(address indexed _target, bool indexed _status);
    event MaxWChanged(uint256 percentage);

    constructor() ERC20("Wagmi Bot", "WAGMI") {

        uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;       
        _mint(msg.sender, _totalSupply);
        launchTax = false;
    }

    function setmarketingWallet(address _newmarketing) external onlyOwner {
        require(
            _newmarketing != address(0),
            "can not set marketing to dead wallet"
        );
        marketingWallet = _newmarketing;
        emit marketingWalletChanged(_newmarketing);
    }


    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        launchTax=true;
        startTradingBlock = block.number;
    }

    function setBuyTaxes(uint256 _marketingTax) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit BuyFeesUpdated(_marketingTax);
    }

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }
    function removeLimits() internal { 
    maxWalletPercentage = 100;
    transferDelayEnabled = false;
    transferTaxes.marketingTax = 0;
    limitsRemoved = true;    // Set limitsRemoved to true
    }
    function NormalizeTaxes() external onlyOwner{
        launchTax=false;
    }


    // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations
function _takeTax(
    address _from,
    address _to,
    uint256 _amount
) internal returns (uint256) {
    if (whitelisted[_from] || whitelisted[_to]) {
        return _amount;
    }

    uint256 totalTax = transferTaxes.marketingTax;
    // Check if within the first 100 blocks
    if (launchTax) {
        if (block.number > startTradingBlock + 100) {
            buyTaxes.marketingTax = 2;
            sellTaxes.marketingTax = 4;
            launchTax = false;

        } else if (block.number <= startTradingBlock + 6) {
            buyTaxes.marketingTax = 40;
            sellTaxes.marketingTax = 40;
        } else if (block.number <= startTradingBlock + 25) {
            buyTaxes.marketingTax = 15;
            sellTaxes.marketingTax = 30;
        } else if (block.number <= startTradingBlock + 50) {
            buyTaxes.marketingTax = 10;
            sellTaxes.marketingTax = 25;
        } else if (block.number <= startTradingBlock + 75) {
            buyTaxes.marketingTax = 5;
            sellTaxes.marketingTax = 20;
        } else if (block.number <= startTradingBlock + 100) {
            buyTaxes.marketingTax = 2;
            sellTaxes.marketingTax = 10;
        }
        
    }
    if (_to == pairAddress) {
        totalTax = sellTaxes.marketingTax;
    } else if (_from == pairAddress) {
        totalTax = buyTaxes.marketingTax;
    }

    uint256 tax = 0;
    if (totalTax > 0) {
        tax = (_amount * totalTax) / 100;
        super._transfer(_from, address(this), tax);
    }
    return (_amount - tax);
}

function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {
    // Check if 5 blocks have passed since the start of trading and if limits have not been removed
    if(block.number >= startTradingBlock + 5 && !limitsRemoved && tradingEnabled) {
    removeLimits();
    }

     if (transferDelayEnabled) {
        if (_to != address(pairAddress) && _to != address(pairAddress)) {
            require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one transfer per block allowed.");
            _holderLastTransferTimestamp[tx.origin] = block.number;
        }
    }   

    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");

    // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage
    uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100;

    // Check if the transaction is within the maximum wallet limit
    if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) {
        require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount");
    }

    uint256 toTransfer = _takeTax(_from, _to, _amount);

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (!whitelisted[_from] && !whitelisted[_to]) {
        require(tradingEnabled, "Trading not active");
        if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) {
            internalSwap();
        }
    }
    super._transfer(_from, _to, toTransfer);
}

function internalSwap() internal {
    isSwapping = true;
    uint256 taxAmount = balanceOf(address(this)); 
    if (taxAmount == 0) {
        return;
    }
    swapToETH(balanceOf(address(this)));
    (bool success, ) = marketingWallet.call{value: address(this).balance}("");
    if (!success) {
        // Log the failure rather than reverting the transaction
        emit TransferFailed(marketingWallet, address(this).balance);
    } else {
        // Only set isSwapping to false if the transfer succeeded
        isSwapping = false;
    }
}


    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }

    function setMaxWalletPercentage(uint256 _percentage) external onlyOwner {
    require(_percentage > 1, "Percentage must be greater than 1%");
    require(_percentage <= 100, "Percentage must be less than or equal to 100");
    maxWalletPercentage = _percentage;
    emit MaxWChanged(_percentage);
}
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWChanged","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[],"name":"NormalizeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsRemoved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600260c0819052600655600460e081905260075561012060405260286101008190526008556200003c61271069d3c21bcecceda100000062000406565b600b55600c805462ffffff19166001179055600e8054763d901767dffb5a36acc28c848a4dd9ff2e0e11ba00000161ff01600160b81b03199091161790556004600f553480156200008c57600080fd5b506040518060400160405280600981526020016815d859db5a48109bdd60ba1b815250604051806040016040528060058152602001645741474d4960d81b8152508160039081620000de9190620004cd565b506004620000ed8282620004cd565b5050506200010a62000104620002e560201b60201c565b620002e9565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000160573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000186919062000599565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fc919062000599565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000270919062000599565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002d49069d3c21bcecceda10000006200033b565b600e805461ff0019169055620005f3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003965760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003aa9190620005cb565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200042457634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200045457607f821691505b6020821081036200047557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040157600081815260208120601f850160051c81016020861015620004a45750805b601f850160051c820191505b81811015620004c557828155600101620004b0565b505050505050565b81516001600160401b03811115620004e957620004e962000429565b6200050181620004fa84546200043f565b846200047b565b602080601f831160018114620005395760008415620005205750858301515b600019600386901b1c1916600185901b178555620004c5565b600085815260208120601f198616915b828110156200056a5788860151825594840194600190910190840162000549565b5085821015620005895787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005ac57600080fd5b81516001600160a01b0381168114620005c457600080fd5b9392505050565b80820180821115620005ed57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051611f9f62000658600039600081816106110152818161115901528181611196015281816113f8015281816115790152818161178601526117c801526000818161049501528181611b4301528181611bfc0152611c380152611f9f6000f3fe6080604052600436106102345760003560e01c806376be96f31161012e578063a8b08982116100ab578063dd62ed3e1161006f578063dd62ed3e146106ac578063e2f45605146106f2578063ef586f7114610708578063f2fde38b1461071d578063f66895a31461073d57600080fd5b8063a8b08982146105ff578063a9059cbb14610633578063afa4f3b214610653578063b886311514610673578063c876d0b91461069257600080fd5b80638d456754116100f25780638d456754146105775780638da5cb5b1461058c57806395d89b41146105aa578063a3ca847d146105bf578063a457c2d7146105df57600080fd5b806376be96f3146104f65780637a845ece1461050c578063830351ff1461052c578063864701a51461054b5780638a8c523c1461056257600080fd5b8063313ce567116101bc578063599ca39711610180578063599ca3971461042257806370a0823114610438578063715018a61461046e578063735de9f71461048357806375f0a874146104cf57600080fd5b8063313ce5671461039557806339509351146103b15780634a74bb02146103d15780634ada218b146103eb5780635331803c1461040b57600080fd5b806318160ddd1161020357806318160ddd146102dd5780631950c218146102fc5780631d6f965514610335578063224611731461035557806323b872dd1461037557600080fd5b806306fdde03146102405780630940bbc71461026b578063095ea7b31461028d5780630c424284146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610754565b6040516102629190611ca4565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611cf2565b6107e6565b005b34801561029957600080fd5b506102ad6102a8366004611d20565b610883565b6040519015158152602001610262565b3480156102c957600080fd5b5061028b6102d8366004611d4c565b61089d565b3480156102e957600080fd5b506002545b604051908152602001610262565b34801561030857600080fd5b506102ad610317366004611d8a565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561034157600080fd5b50600e546102ad9062010000900460ff1681565b34801561036157600080fd5b5061028b610370366004611d8a565b6108f9565b34801561038157600080fd5b506102ad610390366004611da7565b6109c6565b3480156103a157600080fd5b5060405160128152602001610262565b3480156103bd57600080fd5b506102ad6103cc366004611d20565b6109ec565b3480156103dd57600080fd5b50600c546102ad9060ff1681565b3480156103f757600080fd5b50600c546102ad9062010000900460ff1681565b34801561041757600080fd5b506008546102ee9081565b34801561042e57600080fd5b506102ee600f5481565b34801561044457600080fd5b506102ee610453366004611d8a565b6001600160a01b031660009081526020819052604090205490565b34801561047a57600080fd5b5061028b610a2b565b34801561048f57600080fd5b506104b77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610262565b3480156104db57600080fd5b50600e546104b790630100000090046001600160a01b031681565b34801561050257600080fd5b506102ee600d5481565b34801561051857600080fd5b5061028b610527366004611cf2565b610a3f565b34801561053857600080fd5b50600e546102ad90610100900460ff1681565b34801561055757600080fd5b506006546102ee9081565b34801561056e57600080fd5b5061028b610b43565b34801561058357600080fd5b5061028b610bca565b34801561059857600080fd5b506005546001600160a01b03166104b7565b3480156105b657600080fd5b50610255610bdf565b3480156105cb57600080fd5b5061028b6105da366004611cf2565b610bee565b3480156105eb57600080fd5b506102ad6105fa366004611d20565b610c86565b34801561060b57600080fd5b506104b77f000000000000000000000000000000000000000000000000000000000000000081565b34801561063f57600080fd5b506102ad61064e366004611d20565b610d23565b34801561065f57600080fd5b5061028b61066e366004611cf2565b610d31565b34801561067f57600080fd5b50600c546102ad90610100900460ff1681565b34801561069e57600080fd5b50600e546102ad9060ff1681565b3480156106b857600080fd5b506102ee6106c7366004611de8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106fe57600080fd5b506102ee600b5481565b34801561071457600080fd5b5061028b610e35565b34801561072957600080fd5b5061028b610738366004611d8a565b610e64565b34801561074957600080fd5b506007546102ee9081565b60606003805461076390611e16565b80601f016020809104026020016040519081016040528092919081815260200182805461078f90611e16565b80156107dc5780601f106107b1576101008083540402835291602001916107dc565b820191906000526020600020905b8154815290600101906020018083116107bf57829003601f168201915b5050505050905090565b6107ee610edd565b6007819055601e8111156108555760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632033302560e01b60648201526084015b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610891818585610f37565b60019150505b92915050565b6108a5610edd565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b610901610edd565b6001600160a01b0381166109635760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b606482015260840161084c565b600e805476ffffffffffffffffffffffffffffffffffffffff000000191663010000006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b6000336109d485828561105b565b6109df8585856110ed565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108919082908690610a26908790611e66565b610f37565b610a33610edd565b610a3d60006115ed565b565b610a47610edd565b60018111610aa25760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b606482015260840161084c565b6064811115610b085760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b606482015260840161084c565b600f8190556040518181527f35d0d65816d2618c40bb72544c0686674a06ef8d669a0819ecba314be8292df09060200160405180910390a150565b610b4b610edd565b600c5462010000900460ff1615610ba45760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c6564000000000000604482015260640161084c565b600c805462ff0000191662010000179055600e805461ff00191661010017905543600d55565b610bd2610edd565b600e805461ff0019169055565b60606004805461076390611e16565b610bf6610edd565b6006819055601e811115610c585760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632033302560e01b606482015260840161084c565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610d0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161084c565b610d188286868403610f37565b506001949350505050565b6000336108918185856110ed565b610d39610edd565b600081118015610d6a57506103e8610d5c69d3c21bcecceda10000006005611e79565b610d669190611e90565b8111155b610e025760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201527f20746f74616c20737570706c7921000000000000000000000000000000000000608482015260a40161084c565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b610e3d610edd565b600c5460ff16610e4e576001610e51565b60005b600c805460ff1916911515919091179055565b610e6c610edd565b6001600160a01b038116610ed15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084c565b610eda816115ed565b50565b6005546001600160a01b03163314610a3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084c565b6001600160a01b038316610f995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084c565b6001600160a01b038216610ffa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146110e757818110156110da5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161084c565b6110e78484848403610f37565b50505050565b600d546110fb906005611e66565b43101580156111135750600e5462010000900460ff16155b80156111275750600c5462010000900460ff165b1561114c5761114c6064600f55600e8054600060085562ff00ff191662010000179055565b600e5460ff161561124d577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141580156111cb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561124d57326000908152600a6020526040902054431161123a5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b606482015260840161084c565b326000908152600a602052604090204390555b6001600160a01b0383166112a35760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f000000000000604482015260640161084c565b6001600160a01b0382166112f95760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f0000000000000000604482015260640161084c565b6000811161135b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161084c565b60006064600f5469d3c21bcecceda10000006113779190611e79565b6113819190611e90565b6001600160a01b03851660009081526009602052604090205490915060ff161580156113c657506001600160a01b03831660009081526009602052604090205460ff16155b80156113da57506001600160a01b03831615155b80156113ef57506001600160a01b0383163014155b801561142d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b156114ab578082611453856001600160a01b031660009081526020819052604090205490565b61145d9190611e66565b11156114ab5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161084c565b60006114b885858561164c565b600b5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff1615801561151057506001600160a01b03851660009081526009602052604090205460ff16155b156115da57600c5462010000900460ff1661156d5760405162461bcd60e51b815260206004820152601260248201527f54726164696e67206e6f74206163746976650000000000000000000000000000604482015260640161084c565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156115b05750600c5460ff165b80156115b95750805b80156115cd5750600c54610100900460ff16155b156115da576115da611843565b6115e5868684611948565b505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061168b57506001600160a01b03831660009081526009602052604090205460ff165b156116975750806109e5565b600854600e54610100900460ff161561178457600d546116b8906064611e66565b4311156116d95760026006556004600755600e805461ff0019169055611784565b600d546116e7906006611e66565b43116116fc5760286006819055600755611784565b600d5461170a906019611e66565b431161171f57600f600655601e600755611784565b600d5461172d906032611e66565b431161174257600a6006556019600755611784565b600d5461175090604b611e66565b43116117655760056006556014600755611784565b600d54611773906064611e66565b4311611784576002600655600a6007555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036117c65750600754611804565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03160361180457506006545b6000811561182f5760646118188386611e79565b6118229190611e90565b905061182f863083611948565b6118398185611eb2565b9695505050505050565b600c805461ff0019166101001790553060009081526020819052604081205490508060000361186f5750565b3060009081526020819052604090205461188890611aec565b600e54604051600091630100000090046001600160a01b03169047908381818185875af1925050503d80600081146118dc576040519150601f19603f3d011682016040523d82523d6000602084013e6118e1565b606091505b505090508061193957600e546040805163010000009092046001600160a01b031682524760208301527f1c43b9761b3fba5321ca8212bfc231945f668ccc0c446f333999eea9ce8fda81910160405180910390a15050565b600c805461ff00191690555050565b6001600160a01b0383166119ac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161084c565b6001600160a01b038216611a0e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161084c565b6001600160a01b03831660009081526020819052604090205481811015611a865760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161084c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36110e7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b2157611b21611ec5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc39190611edb565b81600181518110611bd657611bd6611ec5565b60200260200101906001600160a01b031690816001600160a01b031681525050611c21307f000000000000000000000000000000000000000000000000000000000000000084610f37565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c76908590600090869030904290600401611ef8565b600060405180830381600087803b158015611c9057600080fd5b505af11580156115e5573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611cd157858101830151858201604001528201611cb5565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611d0457600080fd5b5035919050565b6001600160a01b0381168114610eda57600080fd5b60008060408385031215611d3357600080fd5b8235611d3e81611d0b565b946020939093013593505050565b60008060408385031215611d5f57600080fd5b8235611d6a81611d0b565b915060208301358015158114611d7f57600080fd5b809150509250929050565b600060208284031215611d9c57600080fd5b81356109e581611d0b565b600080600060608486031215611dbc57600080fd5b8335611dc781611d0b565b92506020840135611dd781611d0b565b929592945050506040919091013590565b60008060408385031215611dfb57600080fd5b8235611e0681611d0b565b91506020830135611d7f81611d0b565b600181811c90821680611e2a57607f821691505b602082108103611e4a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561089757610897611e50565b808202811582820484141761089757610897611e50565b600082611ead57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561089757610897611e50565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611eed57600080fd5b81516109e581611d0b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f485784516001600160a01b031683529383019391830191600101611f23565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a8da5cce5c044b65cd431f33296925bfffbba8e53ffa01bdca42c06016ad69a964736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102345760003560e01c806376be96f31161012e578063a8b08982116100ab578063dd62ed3e1161006f578063dd62ed3e146106ac578063e2f45605146106f2578063ef586f7114610708578063f2fde38b1461071d578063f66895a31461073d57600080fd5b8063a8b08982146105ff578063a9059cbb14610633578063afa4f3b214610653578063b886311514610673578063c876d0b91461069257600080fd5b80638d456754116100f25780638d456754146105775780638da5cb5b1461058c57806395d89b41146105aa578063a3ca847d146105bf578063a457c2d7146105df57600080fd5b806376be96f3146104f65780637a845ece1461050c578063830351ff1461052c578063864701a51461054b5780638a8c523c1461056257600080fd5b8063313ce567116101bc578063599ca39711610180578063599ca3971461042257806370a0823114610438578063715018a61461046e578063735de9f71461048357806375f0a874146104cf57600080fd5b8063313ce5671461039557806339509351146103b15780634a74bb02146103d15780634ada218b146103eb5780635331803c1461040b57600080fd5b806318160ddd1161020357806318160ddd146102dd5780631950c218146102fc5780631d6f965514610335578063224611731461035557806323b872dd1461037557600080fd5b806306fdde03146102405780630940bbc71461026b578063095ea7b31461028d5780630c424284146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610754565b6040516102629190611ca4565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611cf2565b6107e6565b005b34801561029957600080fd5b506102ad6102a8366004611d20565b610883565b6040519015158152602001610262565b3480156102c957600080fd5b5061028b6102d8366004611d4c565b61089d565b3480156102e957600080fd5b506002545b604051908152602001610262565b34801561030857600080fd5b506102ad610317366004611d8a565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561034157600080fd5b50600e546102ad9062010000900460ff1681565b34801561036157600080fd5b5061028b610370366004611d8a565b6108f9565b34801561038157600080fd5b506102ad610390366004611da7565b6109c6565b3480156103a157600080fd5b5060405160128152602001610262565b3480156103bd57600080fd5b506102ad6103cc366004611d20565b6109ec565b3480156103dd57600080fd5b50600c546102ad9060ff1681565b3480156103f757600080fd5b50600c546102ad9062010000900460ff1681565b34801561041757600080fd5b506008546102ee9081565b34801561042e57600080fd5b506102ee600f5481565b34801561044457600080fd5b506102ee610453366004611d8a565b6001600160a01b031660009081526020819052604090205490565b34801561047a57600080fd5b5061028b610a2b565b34801561048f57600080fd5b506104b77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610262565b3480156104db57600080fd5b50600e546104b790630100000090046001600160a01b031681565b34801561050257600080fd5b506102ee600d5481565b34801561051857600080fd5b5061028b610527366004611cf2565b610a3f565b34801561053857600080fd5b50600e546102ad90610100900460ff1681565b34801561055757600080fd5b506006546102ee9081565b34801561056e57600080fd5b5061028b610b43565b34801561058357600080fd5b5061028b610bca565b34801561059857600080fd5b506005546001600160a01b03166104b7565b3480156105b657600080fd5b50610255610bdf565b3480156105cb57600080fd5b5061028b6105da366004611cf2565b610bee565b3480156105eb57600080fd5b506102ad6105fa366004611d20565b610c86565b34801561060b57600080fd5b506104b77f000000000000000000000000cb4e97a74947d513ef552e2d596cb8d2edb051fe81565b34801561063f57600080fd5b506102ad61064e366004611d20565b610d23565b34801561065f57600080fd5b5061028b61066e366004611cf2565b610d31565b34801561067f57600080fd5b50600c546102ad90610100900460ff1681565b34801561069e57600080fd5b50600e546102ad9060ff1681565b3480156106b857600080fd5b506102ee6106c7366004611de8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106fe57600080fd5b506102ee600b5481565b34801561071457600080fd5b5061028b610e35565b34801561072957600080fd5b5061028b610738366004611d8a565b610e64565b34801561074957600080fd5b506007546102ee9081565b60606003805461076390611e16565b80601f016020809104026020016040519081016040528092919081815260200182805461078f90611e16565b80156107dc5780601f106107b1576101008083540402835291602001916107dc565b820191906000526020600020905b8154815290600101906020018083116107bf57829003601f168201915b5050505050905090565b6107ee610edd565b6007819055601e8111156108555760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632033302560e01b60648201526084015b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610891818585610f37565b60019150505b92915050565b6108a5610edd565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b610901610edd565b6001600160a01b0381166109635760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b606482015260840161084c565b600e805476ffffffffffffffffffffffffffffffffffffffff000000191663010000006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b6000336109d485828561105b565b6109df8585856110ed565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108919082908690610a26908790611e66565b610f37565b610a33610edd565b610a3d60006115ed565b565b610a47610edd565b60018111610aa25760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b606482015260840161084c565b6064811115610b085760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b606482015260840161084c565b600f8190556040518181527f35d0d65816d2618c40bb72544c0686674a06ef8d669a0819ecba314be8292df09060200160405180910390a150565b610b4b610edd565b600c5462010000900460ff1615610ba45760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c6564000000000000604482015260640161084c565b600c805462ff0000191662010000179055600e805461ff00191661010017905543600d55565b610bd2610edd565b600e805461ff0019169055565b60606004805461076390611e16565b610bf6610edd565b6006819055601e811115610c585760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632033302560e01b606482015260840161084c565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610d0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161084c565b610d188286868403610f37565b506001949350505050565b6000336108918185856110ed565b610d39610edd565b600081118015610d6a57506103e8610d5c69d3c21bcecceda10000006005611e79565b610d669190611e90565b8111155b610e025760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201527f20746f74616c20737570706c7921000000000000000000000000000000000000608482015260a40161084c565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b610e3d610edd565b600c5460ff16610e4e576001610e51565b60005b600c805460ff1916911515919091179055565b610e6c610edd565b6001600160a01b038116610ed15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084c565b610eda816115ed565b50565b6005546001600160a01b03163314610a3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084c565b6001600160a01b038316610f995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084c565b6001600160a01b038216610ffa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146110e757818110156110da5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161084c565b6110e78484848403610f37565b50505050565b600d546110fb906005611e66565b43101580156111135750600e5462010000900460ff16155b80156111275750600c5462010000900460ff165b1561114c5761114c6064600f55600e8054600060085562ff00ff191662010000179055565b600e5460ff161561124d577f000000000000000000000000cb4e97a74947d513ef552e2d596cb8d2edb051fe6001600160a01b0316826001600160a01b0316141580156111cb57507f000000000000000000000000cb4e97a74947d513ef552e2d596cb8d2edb051fe6001600160a01b0316826001600160a01b031614155b1561124d57326000908152600a6020526040902054431161123a5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b606482015260840161084c565b326000908152600a602052604090204390555b6001600160a01b0383166112a35760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f000000000000604482015260640161084c565b6001600160a01b0382166112f95760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f0000000000000000604482015260640161084c565b6000811161135b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161084c565b60006064600f5469d3c21bcecceda10000006113779190611e79565b6113819190611e90565b6001600160a01b03851660009081526009602052604090205490915060ff161580156113c657506001600160a01b03831660009081526009602052604090205460ff16155b80156113da57506001600160a01b03831615155b80156113ef57506001600160a01b0383163014155b801561142d57507f000000000000000000000000cb4e97a74947d513ef552e2d596cb8d2edb051fe6001600160a01b0316836001600160a01b031614155b156114ab578082611453856001600160a01b031660009081526020819052604090205490565b61145d9190611e66565b11156114ab5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161084c565b60006114b885858561164c565b600b5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff1615801561151057506001600160a01b03851660009081526009602052604090205460ff16155b156115da57600c5462010000900460ff1661156d5760405162461bcd60e51b815260206004820152601260248201527f54726164696e67206e6f74206163746976650000000000000000000000000000604482015260640161084c565b846001600160a01b03167f000000000000000000000000cb4e97a74947d513ef552e2d596cb8d2edb051fe6001600160a01b03161480156115b05750600c5460ff165b80156115b95750805b80156115cd5750600c54610100900460ff16155b156115da576115da611843565b6115e5868684611948565b505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061168b57506001600160a01b03831660009081526009602052604090205460ff165b156116975750806109e5565b600854600e54610100900460ff161561178457600d546116b8906064611e66565b4311156116d95760026006556004600755600e805461ff0019169055611784565b600d546116e7906006611e66565b43116116fc5760286006819055600755611784565b600d5461170a906019611e66565b431161171f57600f600655601e600755611784565b600d5461172d906032611e66565b431161174257600a6006556019600755611784565b600d5461175090604b611e66565b43116117655760056006556014600755611784565b600d54611773906064611e66565b4311611784576002600655600a6007555b7f000000000000000000000000cb4e97a74947d513ef552e2d596cb8d2edb051fe6001600160a01b0316846001600160a01b0316036117c65750600754611804565b7f000000000000000000000000cb4e97a74947d513ef552e2d596cb8d2edb051fe6001600160a01b0316856001600160a01b03160361180457506006545b6000811561182f5760646118188386611e79565b6118229190611e90565b905061182f863083611948565b6118398185611eb2565b9695505050505050565b600c805461ff0019166101001790553060009081526020819052604081205490508060000361186f5750565b3060009081526020819052604090205461188890611aec565b600e54604051600091630100000090046001600160a01b03169047908381818185875af1925050503d80600081146118dc576040519150601f19603f3d011682016040523d82523d6000602084013e6118e1565b606091505b505090508061193957600e546040805163010000009092046001600160a01b031682524760208301527f1c43b9761b3fba5321ca8212bfc231945f668ccc0c446f333999eea9ce8fda81910160405180910390a15050565b600c805461ff00191690555050565b6001600160a01b0383166119ac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161084c565b6001600160a01b038216611a0e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161084c565b6001600160a01b03831660009081526020819052604090205481811015611a865760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161084c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36110e7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b2157611b21611ec5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc39190611edb565b81600181518110611bd657611bd6611ec5565b60200260200101906001600160a01b031690816001600160a01b031681525050611c21307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f37565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c76908590600090869030904290600401611ef8565b600060405180830381600087803b158015611c9057600080fd5b505af11580156115e5573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611cd157858101830151858201604001528201611cb5565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611d0457600080fd5b5035919050565b6001600160a01b0381168114610eda57600080fd5b60008060408385031215611d3357600080fd5b8235611d3e81611d0b565b946020939093013593505050565b60008060408385031215611d5f57600080fd5b8235611d6a81611d0b565b915060208301358015158114611d7f57600080fd5b809150509250929050565b600060208284031215611d9c57600080fd5b81356109e581611d0b565b600080600060608486031215611dbc57600080fd5b8335611dc781611d0b565b92506020840135611dd781611d0b565b929592945050506040919091013590565b60008060408385031215611dfb57600080fd5b8235611e0681611d0b565b91506020830135611d7f81611d0b565b600181811c90821680611e2a57607f821691505b602082108103611e4a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561089757610897611e50565b808202811582820484141761089757610897611e50565b600082611ead57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561089757610897611e50565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611eed57600080fd5b81516109e581611d0b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f485784516001600160a01b031683529383019391830191600101611f23565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a8da5cce5c044b65cd431f33296925bfffbba8e53ffa01bdca42c06016ad69a964736f6c63430008130033

Deployed Bytecode Sourcemap

21333:9119:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9445:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24235:246;;;;;;;;;;-1:-1:-1;24235:246:0;;;;;:::i;:::-;;:::i;:::-;;11805:201;;;;;;;;;;-1:-1:-1;11805:201:0;;;;;:::i;:::-;;:::i;:::-;;;1396:14:1;;1389:22;1371:41;;1359:2;1344:18;11805:201:0;1231:187:1;25003:195:0;;;;;;;;;;-1:-1:-1;25003:195:0;;;;;:::i;:::-;;:::i;10574:108::-;;;;;;;;;;-1:-1:-1;10662:12:0;;10574:108;;;1990:25:1;;;1978:2;1963:18;10574:108:0;1844:177:1;29987:116:0;;;;;;;;;;-1:-1:-1;29987:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;30075:20:0;30051:4;30075:20;;;:11;:20;;;;;;;;;29987:116;22269:33;;;;;;;;;;-1:-1:-1;22269:33:0;;;;;;;;;;;23452:297;;;;;;;;;;-1:-1:-1;23452:297:0;;;;;:::i;:::-;;:::i;12586:261::-;;;;;;;;;;-1:-1:-1;12586:261:0;;;;;:::i;:::-;;:::i;10416:93::-;;;;;;;;;;-1:-1:-1;10416:93:0;;10499:2;2881:36:1;;2869:2;2854:18;10416:93:0;2739:184:1;13256:238:0;;;;;;;;;;-1:-1:-1;13256:238:0;;;;;:::i;:::-;;:::i;22031:40::-;;;;;;;;;;-1:-1:-1;22031:40:0;;;;;;;;22115:34;;;;;;;;;;-1:-1:-1;22115:34:0;;;;;;;;;;;21686;;;;;;;;;;-1:-1:-1;21686:34:0;;;;;;22413:38;;;;;;;;;;;;;;;;10745:127;;;;;;;;;;-1:-1:-1;10745:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10846:18:0;10819:7;10846:18;;;;;;;;;;;;10745:127;2900:103;;;;;;;;;;;;;:::i;21510:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3109:55:1;;;3091:74;;3079:2;3064:18;21510:40:0;2928:243:1;22328:75:0;;;;;;;;;;-1:-1:-1;22328:75:0;;;;;;;-1:-1:-1;;;;;22328:75:0;;;22156:32;;;;;;;;;;;;;;;;30111:303;;;;;;;;;;-1:-1:-1;30111:303:0;;;;;:::i;:::-;;:::i;22241:21::-;;;;;;;;;;-1:-1:-1;22241:21:0;;;;;;;;;;;21615:28;;;;;;;;;;-1:-1:-1;21615:28:0;;;;;;23759:217;;;;;;;;;;;;;:::i;25415:78::-;;;;;;;;;;;;;:::i;2259:87::-;;;;;;;;;;-1:-1:-1;2332:6:0;;-1:-1:-1;;;;;2332:6:0;2259:87;;9664:104;;;;;;;;;;;;;:::i;23984:243::-;;;;;;;;;;-1:-1:-1;23984:243:0;;;;;:::i;:::-;;:::i;13997:436::-;;;;;;;;;;-1:-1:-1;13997:436:0;;;;;:::i;:::-;;:::i;21557:36::-;;;;;;;;;;;;;;;11078:193;;;;;;;;;;-1:-1:-1;11078:193:0;;;;;:::i;:::-;;:::i;24489:372::-;;;;;;;;;;-1:-1:-1;24489:372:0;;;;;:::i;:::-;;:::i;22078:30::-;;;;;;;;;;-1:-1:-1;22078:30:0;;;;;;;;;;;22195:39;;;;;;;;;;-1:-1:-1;22195:39:0;;;;;;;;11334:151;;;;;;;;;;-1:-1:-1;11334:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11450:18:0;;;11423:7;11450:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11334:151;21926:57;;;;;;;;;;;;;;;;24869:126;;;;;;;;;;;;;:::i;3158:201::-;;;;;;;;;;-1:-1:-1;3158:201:0;;;;;:::i;:::-;;:::i;21650:29::-;;;;;;;;;;-1:-1:-1;21650:29:0;;;;;;9445:100;9499:13;9532:5;9525:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9445:100;:::o;24235:246::-;2145:13;:11;:13::i;:::-;24310:9:::1;:38:::0;;;24384:2:::1;24367:19:::0;::::1;;24359:68;;;::::0;-1:-1:-1;;;24359:68:0;;4387:2:1;24359:68:0::1;::::0;::::1;4369:21:1::0;4426:2;4406:18;;;4399:30;4465:34;4445:18;;;4438:62;-1:-1:-1;;;4516:18:1;;;4509:34;4560:19;;24359:68:0::1;;;;;;;;;24443:30;::::0;24459:13;;24443:30:::1;::::0;;;::::1;24235:246:::0;:::o;11805:201::-;11888:4;890:10;11944:32;890:10;11960:7;11969:6;11944:8;:32::i;:::-;11994:4;11987:11;;;11805:201;;;;;:::o;25003:195::-;2145:13;:11;:13::i;:::-;-1:-1:-1;;;;;25117:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;25117:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;25163:27;;25117:30;;:20;25163:27:::1;::::0;::::1;25003:195:::0;;:::o;23452:297::-;2145:13;:11;:13::i;:::-;-1:-1:-1;;;;;23555:27:0;::::1;23533:113;;;::::0;-1:-1:-1;;;23533:113:0;;4792:2:1;23533:113:0::1;::::0;::::1;4774:21:1::0;4831:2;4811:18;;;4804:30;4870:34;4850:18;;;4843:62;-1:-1:-1;;;4921:18:1;;;4914:34;4965:19;;23533:113:0::1;4590:400:1::0;23533:113:0::1;23657:15;:31:::0;;-1:-1:-1;;23657:31:0::1;::::0;-1:-1:-1;;;;;23657:31:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;23704:37:::1;::::0;::::1;::::0;-1:-1:-1;;23704:37:0::1;23452:297:::0;:::o;12586:261::-;12683:4;890:10;12741:38;12757:4;890:10;12772:6;12741:15;:38::i;:::-;12790:27;12800:4;12806:2;12810:6;12790:9;:27::i;:::-;12835:4;12828:11;;;12586:261;;;;;;:::o;13256:238::-;890:10;13344:4;11450:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11450:27:0;;;;;;;;;;13344:4;;890:10;13400:64;;890:10;;11450:27;;13425:38;;13453:10;;13425:38;:::i;:::-;13400:8;:64::i;2900:103::-;2145:13;:11;:13::i;:::-;2965:30:::1;2992:1;2965:18;:30::i;:::-;2900:103::o:0;30111:303::-;2145:13;:11;:13::i;:::-;30212:1:::1;30198:11;:15;30190:62;;;::::0;-1:-1:-1;;;30190:62:0;;5459:2:1;30190:62:0::1;::::0;::::1;5441:21:1::0;5498:2;5478:18;;;5471:30;5537:34;5517:18;;;5510:62;-1:-1:-1;;;5588:18:1;;;5581:32;5630:19;;30190:62:0::1;5257:398:1::0;30190:62:0::1;30282:3;30267:11;:18;;30259:75;;;::::0;-1:-1:-1;;;30259:75:0;;5862:2:1;30259:75:0::1;::::0;::::1;5844:21:1::0;5901:2;5881:18;;;5874:30;5940:34;5920:18;;;5913:62;-1:-1:-1;;;5991:18:1;;;5984:42;6043:19;;30259:75:0::1;5660:408:1::0;30259:75:0::1;30341:19;:33:::0;;;30386:24:::1;::::0;1990:25:1;;;30386:24:0::1;::::0;1978:2:1;1963:18;30386:24:0::1;;;;;;;30111:303:::0;:::o;23759:217::-;2145:13;:11;:13::i;:::-;23823:14:::1;::::0;;;::::1;;;23822:15;23814:54;;;::::0;-1:-1:-1;;;23814:54:0;;6275:2:1;23814:54:0::1;::::0;::::1;6257:21:1::0;6314:2;6294:18;;;6287:30;6353:28;6333:18;;;6326:56;6399:18;;23814:54:0::1;6073:350:1::0;23814:54:0::1;23879:14;:21:::0;;-1:-1:-1;;23879:21:0::1;::::0;::::1;::::0;;23911:9:::1;:14:::0;;-1:-1:-1;;23911:14:0::1;23879:21;23911:14;::::0;;23956:12:::1;23936:17;:32:::0;23759:217::o;25415:78::-;2145:13;:11;:13::i;:::-;25470:9:::1;:15:::0;;-1:-1:-1;;25470:15:0::1;::::0;;25415:78::o;9664:104::-;9720:13;9753:7;9746:14;;;;;:::i;23984:243::-;2145:13;:11;:13::i;:::-;24058:8:::1;:37:::0;;;24131:2:::1;24114:19:::0;::::1;;24106:68;;;::::0;-1:-1:-1;;;24106:68:0;;4387:2:1;24106:68:0::1;::::0;::::1;4369:21:1::0;4426:2;4406:18;;;4399:30;4465:34;4445:18;;;4438:62;-1:-1:-1;;;4516:18:1;;;4509:34;4560:19;;24106:68:0::1;4185:400:1::0;24106:68:0::1;24190:29;::::0;24205:13;;24190:29:::1;::::0;;;::::1;23984:243:::0;:::o;13997:436::-;890:10;14090:4;11450:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11450:27:0;;;;;;;;;;14090:4;;890:10;14237:15;14217:16;:35;;14209:85;;;;-1:-1:-1;;;14209:85:0;;6630:2:1;14209:85:0;;;6612:21:1;6669:2;6649:18;;;6642:30;6708:34;6688:18;;;6681:62;-1:-1:-1;;;6759:18:1;;;6752:35;6804:19;;14209:85:0;6428:401:1;14209:85:0;14330:60;14339:5;14346:7;14374:15;14355:16;:34;14330:8;:60::i;:::-;-1:-1:-1;14421:4:0;;13997:436;-1:-1:-1;;;;13997:436:0:o;11078:193::-;11157:4;890:10;11213:28;890:10;11230:2;11234:6;11213:9;:28::i;24489:372::-;2145:13;:11;:13::i;:::-;24605:1:::1;24592:10;:14;:57;;;;-1:-1:-1::0;24645:4:0::1;24625:16;21471;24640:1;24625:16;:::i;:::-;24624:25;;;;:::i;:::-;24610:10;:39;;24592:57;24570:185;;;::::0;-1:-1:-1;;;24570:185:0;;7431:2:1;24570:185:0::1;::::0;::::1;7413:21:1::0;7470:2;7450:18;;;7443:30;7509:34;7489:18;;;7482:62;7580:34;7560:18;;;7553:62;7652:16;7631:19;;;7624:45;7686:19;;24570:185:0::1;7229:482:1::0;24570:185:0::1;24766:18;:31:::0;;;24813:40:::1;::::0;24787:10;;24813:40:::1;::::0;;;::::1;24489:372:::0;:::o;24869:126::-;2145:13;:11;:13::i;:::-;24950:21:::1;::::0;::::1;;24949:38;;24983:4;24949:38;;;24975:5;24949:38;24925:21;:62:::0;;-1:-1:-1;;24925:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24869:126::o;3158:201::-;2145:13;:11;:13::i;:::-;-1:-1:-1;;;;;3247:22:0;::::1;3239:73;;;::::0;-1:-1:-1;;;3239:73:0;;7918:2:1;3239:73:0::1;::::0;::::1;7900:21:1::0;7957:2;7937:18;;;7930:30;7996:34;7976:18;;;7969:62;-1:-1:-1;;;8047:18:1;;;8040:36;8093:19;;3239:73:0::1;7716:402:1::0;3239:73:0::1;3323:28;3342:8;3323:18;:28::i;:::-;3158:201:::0;:::o;2424:132::-;2332:6;;-1:-1:-1;;;;;2332:6:0;890:10;2488:23;2480:68;;;;-1:-1:-1;;;2480:68:0;;8325:2:1;2480:68:0;;;8307:21:1;;;8344:18;;;8337:30;8403:34;8383:18;;;8376:62;8455:18;;2480:68:0;8123:356:1;17990:346:0;-1:-1:-1;;;;;18092:19:0;;18084:68;;;;-1:-1:-1;;;18084:68:0;;8686:2:1;18084:68:0;;;8668:21:1;8725:2;8705:18;;;8698:30;8764:34;8744:18;;;8737:62;-1:-1:-1;;;8815:18:1;;;8808:34;8859:19;;18084:68:0;8484:400:1;18084:68:0;-1:-1:-1;;;;;18171:21:0;;18163:68;;;;-1:-1:-1;;;18163:68:0;;9091:2:1;18163:68:0;;;9073:21:1;9130:2;9110:18;;;9103:30;9169:34;9149:18;;;9142:62;-1:-1:-1;;;9220:18:1;;;9213:32;9262:19;;18163:68:0;8889:398:1;18163:68:0;-1:-1:-1;;;;;18244:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18296:32;;1990:25:1;;;18296:32:0;;1963:18:1;18296:32:0;;;;;;;17990:346;;;:::o;18627:419::-;-1:-1:-1;;;;;11450:18:0;;;18728:24;11450:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;18795:37:0;;18791:248;;18877:6;18857:16;:26;;18849:68;;;;-1:-1:-1;;;18849:68:0;;9494:2:1;18849:68:0;;;9476:21:1;9533:2;9513:18;;;9506:30;9572:31;9552:18;;;9545:59;9621:18;;18849:68:0;9292:353:1;18849:68:0;18961:51;18970:5;18977:7;19005:6;18986:16;:25;18961:8;:51::i;:::-;18717:329;18627:419;;;:::o;27226:1734::-;27461:17;;:21;;27481:1;27461:21;:::i;:::-;27445:12;:37;;:55;;;;-1:-1:-1;27487:13:0;;;;;;;27486:14;27445:55;:73;;;;-1:-1:-1;27504:14:0;;;;;;;27445:73;27442:107;;;27527:14;25267:3;25245:19;:25;25277:20;:28;;25300:5;25312:13;:30;-1:-1:-1;;25349:20:0;;;;;25204:205;27527:14;27562:20;;;;27558:307;;;27614:11;-1:-1:-1;;;;;27599:27:0;:3;-1:-1:-1;;;;;27599:27:0;;;:58;;;;;27645:11;-1:-1:-1;;;;;27630:27:0;:3;-1:-1:-1;;;;;27630:27:0;;;27599:58;27595:263;;;27711:9;27682:39;;;;:28;:39;;;;;;27724:12;-1:-1:-1;27674:103:0;;;;-1:-1:-1;;;27674:103:0;;9852:2:1;27674:103:0;;;9834:21:1;9891:2;9871:18;;;9864:30;9930:34;9910:18;;;9903:62;-1:-1:-1;;;9981:18:1;;;9974:34;10025:19;;27674:103:0;9650:400:1;27674:103:0;27821:9;27792:39;;;;:28;:39;;;;;27834:12;27792:54;;27595:263;-1:-1:-1;;;;;27884:19:0;;27876:58;;;;-1:-1:-1;;;27876:58:0;;10257:2:1;27876:58:0;;;10239:21:1;10296:2;10276:18;;;10269:30;10335:28;10315:18;;;10308:56;10381:18;;27876:58:0;10055:350:1;27876:58:0;-1:-1:-1;;;;;27949:17:0;;27941:54;;;;-1:-1:-1;;;27941:54:0;;10612:2:1;27941:54:0;;;10594:21:1;10651:2;10631:18;;;10624:30;10690:26;10670:18;;;10663:54;10734:18;;27941:54:0;10410:348:1;27941:54:0;28020:1;28010:7;:11;28002:65;;;;-1:-1:-1;;;28002:65:0;;10965:2:1;28002:65:0;;;10947:21:1;11004:2;10984:18;;;10977:30;11043:34;11023:18;;;11016:62;-1:-1:-1;;;11094:18:1;;;11087:39;11143:19;;28002:65:0;10763:405:1;28002:65:0;28180:23;28243:3;28221:19;;21471:16;28206:34;;;;:::i;:::-;:40;;;;:::i;:::-;-1:-1:-1;;;;;28328:18:0;;;;;;:11;:18;;;;;;28180:66;;-1:-1:-1;28328:18:0;;28327:19;:40;;;;-1:-1:-1;;;;;;28351:16:0;;;;;;:11;:16;;;;;;;;28350:17;28327:40;:61;;;;-1:-1:-1;;;;;;28371:17:0;;;;28327:61;:85;;;;-1:-1:-1;;;;;;28392:20:0;;28407:4;28392:20;;28327:85;:107;;;;;28423:11;-1:-1:-1;;;;;28416:18:0;:3;-1:-1:-1;;;;;28416:18:0;;;28327:107;28323:217;;;28483:15;28472:7;28455:14;28465:3;-1:-1:-1;;;;;10846:18:0;10819:7;10846:18;;;;;;;;;;;;10745:127;28455:14;:24;;;;:::i;:::-;:43;;28447:85;;;;-1:-1:-1;;;28447:85:0;;11375:2:1;28447:85:0;;;11357:21:1;11414:2;11394:18;;;11387:30;11453:31;11433:18;;;11426:59;11502:18;;28447:85:0;11173:353:1;28447:85:0;28548:18;28569:29;28578:5;28585:3;28590:7;28569:8;:29::i;:::-;28650:18;;28640:4;28607:12;10846:18;;;;;;;;;;;;-1:-1:-1;;;;;28680:18:0;;;;:11;:18;;;;;;;28548:50;;-1:-1:-1;;28622:46:0;;28680:18;;28679:19;:40;;;;-1:-1:-1;;;;;;28703:16:0;;;;;;:11;:16;;;;;;;;28702:17;28679:40;28675:236;;;28740:14;;;;;;;28732:45;;;;-1:-1:-1;;;28732:45:0;;11733:2:1;28732:45:0;;;11715:21:1;11772:2;11752:18;;;11745:30;11811:20;11791:18;;;11784:48;11849:18;;28732:45:0;11531:342:1;28732:45:0;28807:3;-1:-1:-1;;;;;28792:18:0;:11;-1:-1:-1;;;;;28792:18:0;;:43;;;;-1:-1:-1;28814:21:0;;;;28792:43;:54;;;;;28839:7;28792:54;:69;;;;-1:-1:-1;28851:10:0;;;;;;;28850:11;28792:69;28788:116;;;28878:14;:12;:14::i;:::-;28917:39;28933:5;28940:3;28945:10;28917:15;:39::i;:::-;27334:1626;;;27226:1734;;;:::o;3519:191::-;3612:6;;;-1:-1:-1;;;;;3629:17:0;;;-1:-1:-1;;3629:17:0;;;;;;;3662:40;;3612:6;;;3629:17;3612:6;;3662:40;;3593:16;;3662:40;3582:128;3519:191;:::o;25639:1583::-;-1:-1:-1;;;;;25758:18:0;;25738:7;25758:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;25780:16:0;;;;;;:11;:16;;;;;;;;25758:38;25754:77;;;-1:-1:-1;25816:7:0;25809:14;;25754:77;25858:13;:26;25940:9;;;;;;;25936:937;;;25981:17;;:23;;26001:3;25981:23;:::i;:::-;25966:12;:38;25962:894;;;26045:1;26021:8;:25;26086:1;26061:9;:26;26102:9;:17;;-1:-1:-1;;26102:17:0;;;25962:894;;;26159:17;;:21;;26179:1;26159:21;:::i;:::-;26143:12;:37;26139:717;;26221:2;26197:8;:26;;;26238:9;:27;26139:717;;;26303:17;;:22;;26323:2;26303:22;:::i;:::-;26287:12;:38;26283:573;;26366:2;26342:8;:26;26408:2;26383:9;:27;26283:573;;;26448:17;;:22;;26468:2;26448:22;:::i;:::-;26432:12;:38;26428:428;;26511:2;26487:8;:26;26553:2;26528:9;:27;26428:428;;;26593:17;;:22;;26613:2;26593:22;:::i;:::-;26577:12;:38;26573:283;;26656:1;26632:8;:25;26697:2;26672:9;:27;26573:283;;;26737:17;;:23;;26757:3;26737:23;:::i;:::-;26721:12;:39;26717:139;;26801:1;26777:8;:25;26842:2;26817:9;:27;26717:139;26890:11;-1:-1:-1;;;;;26883:18:0;:3;-1:-1:-1;;;;;26883:18:0;;26879:159;;-1:-1:-1;26925:9:0;:22;26879:159;;;26974:11;-1:-1:-1;;;;;26965:20:0;:5;-1:-1:-1;;;;;26965:20:0;;26961:77;;-1:-1:-1;27009:8:0;:21;26961:77;27046:11;27072:12;;27068:122;;27126:3;27104:18;27114:8;27104:7;:18;:::i;:::-;27103:26;;;;:::i;:::-;27097:32;;27140:42;27156:5;27171:4;27178:3;27140:15;:42::i;:::-;27204:13;27214:3;27204:7;:13;:::i;:::-;27196:22;25639:1583;-1:-1:-1;;;;;;25639:1583:0:o;28964:560::-;29004:10;:17;;-1:-1:-1;;29004:17:0;;;;;29066:4;-1:-1:-1;10846:18:0;;;;;;;;;;;29028:44;;29084:9;29097:1;29084:14;29080:45;;29111:7;28964:560::o;29080:45::-;29159:4;10819:7;10846:18;;;;;;;;;;;29131:35;;:9;:35::i;:::-;29192:15;;:54;;29174:12;;29192:15;;;-1:-1:-1;;;;;29192:15:0;;29220:21;;29174:12;29192:54;29174:12;29192:54;29220:21;29192:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29173:73;;;29258:7;29253:268;;29364:15;;29349:54;;;29364:15;;;;-1:-1:-1;;;;;29364:15:0;12395:74:1;;29381:21:0;12500:2:1;12485:18;;12478:34;29349:54:0;;12368:18:1;29349:54:0;;;;;;;28997:527;;28964:560::o;29253:268::-;29495:10;:18;;-1:-1:-1;;29495:18:0;;;28997:527;;28964:560::o;14903:806::-;-1:-1:-1;;;;;15000:18:0;;14992:68;;;;-1:-1:-1;;;14992:68:0;;12725:2:1;14992:68:0;;;12707:21:1;12764:2;12744:18;;;12737:30;12803:34;12783:18;;;12776:62;-1:-1:-1;;;12854:18:1;;;12847:35;12899:19;;14992:68:0;12523:401:1;14992:68:0;-1:-1:-1;;;;;15079:16:0;;15071:64;;;;-1:-1:-1;;;15071:64:0;;13131:2:1;15071:64:0;;;13113:21:1;13170:2;13150:18;;;13143:30;13209:34;13189:18;;;13182:62;-1:-1:-1;;;13260:18:1;;;13253:33;13303:19;;15071:64:0;12929:399:1;15071:64:0;-1:-1:-1;;;;;15221:15:0;;15199:19;15221:15;;;;;;;;;;;15255:21;;;;15247:72;;;;-1:-1:-1;;;15247:72:0;;13535:2:1;15247:72:0;;;13517:21:1;13574:2;13554:18;;;13547:30;13613:34;13593:18;;;13586:62;-1:-1:-1;;;13664:18:1;;;13657:36;13710:19;;15247:72:0;13333:402:1;15247:72:0;-1:-1:-1;;;;;15355:15:0;;;:9;:15;;;;;;;;;;;15373:20;;;15355:38;;15573:13;;;;;;;;;;:23;;;;;;15625:26;;1990:25:1;;;15573:13:0;;15625:26;;1963:18:1;15625:26:0;;;;;;;15664:37;19646:91;29534:447;29614:16;;;29628:1;29614:16;;;;;;;;29590:21;;29614:16;;;;;;;;;;-1:-1:-1;29614:16:0;29590:40;;29659:4;29641;29646:1;29641:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;29641:23:0;;;-1:-1:-1;;;;;29641:23:0;;;;;29685:13;-1:-1:-1;;;;;29685:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29675:4;29680:1;29675:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;29675:30:0;;;-1:-1:-1;;;;;29675:30:0;;;;;29716:56;29733:4;29748:13;29764:7;29716:8;:56::i;:::-;29783:190;;-1:-1:-1;;;29783:190:0;;-1:-1:-1;;;;;29783:13:0;:64;;;;:190;;29862:7;;29884:1;;29900:4;;29927;;29947:15;;29783:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:154::-;-1:-1:-1;;;;;831:5:1;827:54;820:5;817:65;807:93;;896:1;893;886:12;911:315;979:6;987;1040:2;1028:9;1019:7;1015:23;1011:32;1008:52;;;1056:1;1053;1046:12;1008:52;1095:9;1082:23;1114:31;1139:5;1114:31;:::i;:::-;1164:5;1216:2;1201:18;;;;1188:32;;-1:-1:-1;;;911:315:1:o;1423:416::-;1488:6;1496;1549:2;1537:9;1528:7;1524:23;1520:32;1517:52;;;1565:1;1562;1555:12;1517:52;1604:9;1591:23;1623:31;1648:5;1623:31;:::i;:::-;1673:5;-1:-1:-1;1730:2:1;1715:18;;1702:32;1772:15;;1765:23;1753:36;;1743:64;;1803:1;1800;1793:12;1743:64;1826:7;1816:17;;;1423:416;;;;;:::o;2026:247::-;2085:6;2138:2;2126:9;2117:7;2113:23;2109:32;2106:52;;;2154:1;2151;2144:12;2106:52;2193:9;2180:23;2212:31;2237:5;2212:31;:::i;2278:456::-;2355:6;2363;2371;2424:2;2412:9;2403:7;2399:23;2395:32;2392:52;;;2440:1;2437;2430:12;2392:52;2479:9;2466:23;2498:31;2523:5;2498:31;:::i;:::-;2548:5;-1:-1:-1;2605:2:1;2590:18;;2577:32;2618:33;2577:32;2618:33;:::i;:::-;2278:456;;2670:7;;-1:-1:-1;;;2724:2:1;2709:18;;;;2696:32;;2278:456::o;3407:388::-;3475:6;3483;3536:2;3524:9;3515:7;3511:23;3507:32;3504:52;;;3552:1;3549;3542:12;3504:52;3591:9;3578:23;3610:31;3635:5;3610:31;:::i;:::-;3660:5;-1:-1:-1;3717:2:1;3702:18;;3689:32;3730:33;3689:32;3730:33;:::i;3800:380::-;3879:1;3875:12;;;;3922;;;3943:61;;3997:4;3989:6;3985:17;3975:27;;3943:61;4050:2;4042:6;4039:14;4019:18;4016:38;4013:161;;4096:10;4091:3;4087:20;4084:1;4077:31;4131:4;4128:1;4121:15;4159:4;4156:1;4149:15;4013:161;;3800:380;;;:::o;4995:127::-;5056:10;5051:3;5047:20;5044:1;5037:31;5087:4;5084:1;5077:15;5111:4;5108:1;5101:15;5127:125;5192:9;;;5213:10;;;5210:36;;;5226:18;;:::i;6834:168::-;6907:9;;;6938;;6955:15;;;6949:22;;6935:37;6925:71;;6976:18;;:::i;7007:217::-;7047:1;7073;7063:132;;7117:10;7112:3;7108:20;7105:1;7098:31;7152:4;7149:1;7142:15;7180:4;7177:1;7170:15;7063:132;-1:-1:-1;7209:9:1;;7007:217::o;11878:128::-;11945:9;;;11966:11;;;11963:37;;;11980:18;;:::i;13872:127::-;13933:10;13928:3;13924:20;13921:1;13914:31;13964:4;13961:1;13954:15;13988:4;13985:1;13978:15;14004:251;14074:6;14127:2;14115:9;14106:7;14102:23;14098:32;14095:52;;;14143:1;14140;14133:12;14095:52;14175:9;14169:16;14194:31;14219:5;14194:31;:::i;14260:1026::-;14522:4;14570:3;14559:9;14555:19;14601:6;14590:9;14583:25;14627:2;14665:6;14660:2;14649:9;14645:18;14638:34;14708:3;14703:2;14692:9;14688:18;14681:31;14732:6;14767;14761:13;14798:6;14790;14783:22;14836:3;14825:9;14821:19;14814:26;;14875:2;14867:6;14863:15;14849:29;;14896:1;14906:218;14920:6;14917:1;14914:13;14906:218;;;14985:13;;-1:-1:-1;;;;;14981:62:1;14969:75;;15099:15;;;;15064:12;;;;14942:1;14935:9;14906:218;;;-1:-1:-1;;;;;;;15180:55:1;;;;15175:2;15160:18;;15153:83;-1:-1:-1;;;15267:3:1;15252:19;15245:35;15141:3;14260:1026;-1:-1:-1;;;14260:1026:1:o

Swarm Source

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