ETH Price: $2,410.66 (-8.85%)
 

Overview

Max Total Supply

400,000,000,000,000 ORWELL

Holders

1

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
AnimalFarm

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-07-18
*/

/**
 * 
 * Welcome to the Animal Farm
 * Telegram Portal : https://t.me/AnimalFarmCommunity
 * 
 * 
 * 
 * 
 */

// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

    function allPairs(uint256) external view returns (address pair);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

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

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

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

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        _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);
    }

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

        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);
    }

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

    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");

        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);
    }
}

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 1000000000000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 1000000000000 * 10**_decimals;
    bool inSwapAndLiquify;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

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

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

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    _marketingReserves -= _numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }

                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount)
        private
        lockTheSwap
    {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMarketing(uint256 _taxForLiquidity, uint256 _taxForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity+_taxForMarketing) <= 10, "ERC20: total tax must not be greater than 10");
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

610100604052600b60c09081526a416e696d616c204661726d60a81b60e0526006906200002d908262000666565b5060408051808201909152600681526513d495d1531360d21b60208201526007906200005a908262000666565b506008805460ff1916600990811790915566016bcc41e9000081556000600a9081556014600b556200008d919062000847565b620000a09066016bcc41e900006200085f565b600c55600854620000b69060ff16600a62000847565b620000c99066016bcc41e900006200085f565b600d55600e80546001600160a01b031916739a7fb8c4c0253f0a4488bd7a10b2cfdb258505d11790556000600f556008546200010a9060ff16600a62000847565b6200011b9064e8d4a510006200085f565b601155600854620001319060ff16600a62000847565b620001429064e8d4a510006200085f565b6012553480156200015257600080fd5b50600680546200016290620005d7565b80601f01602080910402602001604051908101604052809291908181526020018280546200019090620005d7565b8015620001e15780601f10620001b557610100808354040283529160200191620001e1565b820191906000526020600020905b815481529060010190602001808311620001c357829003601f168201915b505050505060078054620001f590620005d7565b80601f01602080910402602001604051908101604052809291908181526020018280546200022390620005d7565b8015620002745780601f10620002485761010080835404028352916020019162000274565b820191906000526020600020905b8154815290600101906020018083116200025657829003601f168201915b505050505081600390816200028a919062000666565b50600462000299828262000666565b505050620002b6620002b0620004a560201b60201c565b620004a9565b600854620002e5903390620002d09060ff16600a62000847565b600954620002df91906200085f565b620004fb565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000363919062000881565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d7919062000881565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000425573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044b919062000881565b6001600160a01b0390811660a05290811660808190526000908152601060205260408082208054600160ff1991821681179092553384528284208054821683179055600e54909416835291208054909216179055620008c2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005565760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200056a9190620008ac565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005ec57607f821691505b6020821081036200060d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200066157600081815260208120601f850160051c810160208610156200063c5750805b601f850160051c820191505b818110156200065d5782815560010162000648565b5050505b505050565b81516001600160401b03811115620006825762000682620005c1565b6200069a81620006938454620005d7565b8462000613565b602080601f831160018114620006d25760008415620006b95750858301515b600019600386901b1c1916600185901b1785556200065d565b600085815260208120601f198616915b828110156200070357888601518255948401946001909101908401620006e2565b5085821015620007225787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007895781600019048211156200076d576200076d62000732565b808516156200077b57918102915b93841c93908002906200074d565b509250929050565b600082620007a25750600162000841565b81620007b15750600062000841565b8160018114620007ca5760028114620007d557620007f5565b600191505062000841565b60ff841115620007e957620007e962000732565b50506001821b62000841565b5060208310610133831016604e8410600b84101617156200081a575081810a62000841565b62000826838362000748565b80600019048211156200083d576200083d62000732565b0290505b92915050565b60006200085860ff84168362000791565b9392505050565b60008160001904831182151516156200087c576200087c62000732565b500290565b6000602082840312156200089457600080fd5b81516001600160a01b03811681146200085857600080fd5b8082018082111562000841576200084162000732565b60805160a051611651620009276000396000818161028401528181610986015281816109c101528181610a0b0152610bda0152600081816101bd01528181610eee01528181610fa701528181610fd60152818161116b015261119201526116516000f3fe6080604052600436106101445760003560e01c806375f0a874116100b6578063aa4bde281161006f578063aa4bde28146103b2578063af8af690146103c8578063bb85c6d1146103e8578063dd62ed3e14610408578063f2fde38b14610428578063f345bd851461044857600080fd5b806375f0a874146103095780638c0b5e22146103295780638da5cb5b1461033f57806395d89b411461035d578063a457c2d714610372578063a9059cbb1461039257600080fd5b8063313ce56711610108578063313ce56714610236578063395093511461025257806349bd5a5e14610272578063527ffabd146102a657806370a08231146102bc578063715018a6146102f257600080fd5b806306fdde0314610150578063095ea7b31461017b5780631694505e146101ab57806318160ddd146101f757806323b872dd1461021657600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b5061016561045e565b6040516101729190611275565b60405180910390f35b34801561018757600080fd5b5061019b6101963660046112d8565b6104f0565b6040519015158152602001610172565b3480156101b757600080fd5b506101df7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610172565b34801561020357600080fd5b506002545b604051908152602001610172565b34801561022257600080fd5b5061019b610231366004611304565b61050a565b34801561024257600080fd5b5060405160098152602001610172565b34801561025e57600080fd5b5061019b61026d3660046112d8565b61052e565b34801561027e57600080fd5b506101df7f000000000000000000000000000000000000000000000000000000000000000081565b3480156102b257600080fd5b50610208600b5481565b3480156102c857600080fd5b506102086102d7366004611345565b6001600160a01b031660009081526020819052604090205490565b3480156102fe57600080fd5b50610307610550565b005b34801561031557600080fd5b50600e546101df906001600160a01b031681565b34801561033557600080fd5b50610208600c5481565b34801561034b57600080fd5b506005546001600160a01b03166101df565b34801561036957600080fd5b50610165610564565b34801561037e57600080fd5b5061019b61038d3660046112d8565b610573565b34801561039e57600080fd5b5061019b6103ad3660046112d8565b6105f3565b3480156103be57600080fd5b50610208600d5481565b3480156103d457600080fd5b5061019b6103e3366004611369565b610601565b3480156103f457600080fd5b5061019b610403366004611345565b610689565b34801561041457600080fd5b5061020861042336600461138b565b6106b8565b34801561043457600080fd5b50610307610443366004611345565b6106e3565b34801561045457600080fd5b50610208600a5481565b60606003805461046d906113c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610499906113c4565b80156104e65780601f106104bb576101008083540402835291602001916104e6565b820191906000526020600020905b8154815290600101906020018083116104c957829003601f168201915b5050505050905090565b6000336104fe81858561075c565b60019150505b92915050565b600033610518858285610880565b6105238585856108fa565b506001949350505050565b6000336104fe81858561054183836106b8565b61054b9190611414565b61075c565b610558610d40565b6105626000610d9a565b565b60606004805461046d906113c4565b6000338161058182866106b8565b9050838110156105e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610523828686840361075c565b6000336104fe8185856108fa565b600061060b610d40565b600a6106178385611414565b111561067a5760405162461bcd60e51b815260206004820152602c60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526b061746572207468616e2031360a41b60648201526084016105dd565b50600a91909155600b55600190565b6000610693610d40565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106eb610d40565b6001600160a01b0381166107505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105dd565b61075981610d9a565b50565b6001600160a01b0383166107be5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105dd565b6001600160a01b03821661081f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105dd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061088c84846106b8565b905060001981146108f457818110156108e75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105dd565b6108f4848484840361075c565b50505050565b6001600160a01b0383166109205760405162461bcd60e51b81526004016105dd90611427565b6001600160a01b0382166109465760405162461bcd60e51b81526004016105dd9061146c565b80610966846001600160a01b031660009081526020819052604090205490565b10156109845760405162461bcd60e51b81526004016105dd906114af565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614806109f557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015610a04575060135460ff16155b15610d30577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614610b1557600f54306000908152602081905260408120549091610a60916114f5565b90506011548110610a7657610a76601154610dec565b601254600f5410610b1357610a8c601254610e8a565b601254600f6000828254610aa091906114f5565b9091555050600e546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610b115760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b60448201526064016105dd565b505b505b6001600160a01b03831660009081526010602052604081205460ff1680610b5457506001600160a01b03831660009081526010602052604090205460ff165b15610b60575080610d25565b600c54821115610bd85760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e740000000000000060648201526084016105dd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031603610ca457600d546001600160a01b038416600090815260208190526040902054610c379084611414565b1115610ca45760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b60648201526084016105dd565b60006064600b5484610cb69190611508565b610cc09190611527565b905060006064600a5485610cd49190611508565b610cde9190611527565b9050610cea8183611414565b610cf490856114f5565b925081600f6000828254610d089190611414565b90915550610d2290508630610d1d8486611414565b61106c565b50505b6108f484848361106c565b610d3b83838361106c565b505050565b6005546001600160a01b031633146105625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105dd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff191660011790556000610e06600283611527565b90506000610e1482846114f5565b905047610e2083610e8a565b6000610e2c82476114f5565b9050610e388382611158565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506013805460ff19169055505050565b6013805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610ecc57610ecc611549565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6e919061155f565b81600181518110610f8157610f81611549565b60200260200101906001600160a01b031690816001600160a01b031681525050610fcc307f00000000000000000000000000000000000000000000000000000000000000008461075c565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac947836000843061100c4261012c611414565b6040518663ffffffff1660e01b815260040161102c95949392919061157c565b600060405180830381600087803b15801561104657600080fd5b505af115801561105a573d6000803e3d6000fd5b50506013805460ff1916905550505050565b6001600160a01b0383166110925760405162461bcd60e51b81526004016105dd90611427565b6001600160a01b0382166110b85760405162461bcd60e51b81526004016105dd9061146c565b6001600160a01b038316600090815260208190526040902054818110156110f15760405162461bcd60e51b81526004016105dd906114af565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6013805460ff19166001179055611190307f00000000000000000000000000000000000000000000000000000000000000008461075c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806111d76005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561123f573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061126491906115ed565b50506013805460ff19169055505050565b600060208083528351808285015260005b818110156112a257858101830151858201604001528201611286565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461075957600080fd5b600080604083850312156112eb57600080fd5b82356112f6816112c3565b946020939093013593505050565b60008060006060848603121561131957600080fd5b8335611324816112c3565b92506020840135611334816112c3565b929592945050506040919091013590565b60006020828403121561135757600080fd5b8135611362816112c3565b9392505050565b6000806040838503121561137c57600080fd5b50508035926020909101359150565b6000806040838503121561139e57600080fd5b82356113a9816112c3565b915060208301356113b9816112c3565b809150509250929050565b600181811c908216806113d857607f821691505b6020821081036113f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610504576105046113fe565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b81810381811115610504576105046113fe565b6000816000190483118215151615611522576115226113fe565b500290565b60008261154457634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561157157600080fd5b8151611362816112c3565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115cc5784516001600160a01b0316835293830193918301916001016115a7565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561160257600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122009659f59181498ab5e74d3be47904fb7061e635f567ac4f020c2184688a7600064736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101445760003560e01c806375f0a874116100b6578063aa4bde281161006f578063aa4bde28146103b2578063af8af690146103c8578063bb85c6d1146103e8578063dd62ed3e14610408578063f2fde38b14610428578063f345bd851461044857600080fd5b806375f0a874146103095780638c0b5e22146103295780638da5cb5b1461033f57806395d89b411461035d578063a457c2d714610372578063a9059cbb1461039257600080fd5b8063313ce56711610108578063313ce56714610236578063395093511461025257806349bd5a5e14610272578063527ffabd146102a657806370a08231146102bc578063715018a6146102f257600080fd5b806306fdde0314610150578063095ea7b31461017b5780631694505e146101ab57806318160ddd146101f757806323b872dd1461021657600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b5061016561045e565b6040516101729190611275565b60405180910390f35b34801561018757600080fd5b5061019b6101963660046112d8565b6104f0565b6040519015158152602001610172565b3480156101b757600080fd5b506101df7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610172565b34801561020357600080fd5b506002545b604051908152602001610172565b34801561022257600080fd5b5061019b610231366004611304565b61050a565b34801561024257600080fd5b5060405160098152602001610172565b34801561025e57600080fd5b5061019b61026d3660046112d8565b61052e565b34801561027e57600080fd5b506101df7f000000000000000000000000e4fdbc706ad702f073d7b9fdaa804e87de8680d681565b3480156102b257600080fd5b50610208600b5481565b3480156102c857600080fd5b506102086102d7366004611345565b6001600160a01b031660009081526020819052604090205490565b3480156102fe57600080fd5b50610307610550565b005b34801561031557600080fd5b50600e546101df906001600160a01b031681565b34801561033557600080fd5b50610208600c5481565b34801561034b57600080fd5b506005546001600160a01b03166101df565b34801561036957600080fd5b50610165610564565b34801561037e57600080fd5b5061019b61038d3660046112d8565b610573565b34801561039e57600080fd5b5061019b6103ad3660046112d8565b6105f3565b3480156103be57600080fd5b50610208600d5481565b3480156103d457600080fd5b5061019b6103e3366004611369565b610601565b3480156103f457600080fd5b5061019b610403366004611345565b610689565b34801561041457600080fd5b5061020861042336600461138b565b6106b8565b34801561043457600080fd5b50610307610443366004611345565b6106e3565b34801561045457600080fd5b50610208600a5481565b60606003805461046d906113c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610499906113c4565b80156104e65780601f106104bb576101008083540402835291602001916104e6565b820191906000526020600020905b8154815290600101906020018083116104c957829003601f168201915b5050505050905090565b6000336104fe81858561075c565b60019150505b92915050565b600033610518858285610880565b6105238585856108fa565b506001949350505050565b6000336104fe81858561054183836106b8565b61054b9190611414565b61075c565b610558610d40565b6105626000610d9a565b565b60606004805461046d906113c4565b6000338161058182866106b8565b9050838110156105e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610523828686840361075c565b6000336104fe8185856108fa565b600061060b610d40565b600a6106178385611414565b111561067a5760405162461bcd60e51b815260206004820152602c60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526b061746572207468616e2031360a41b60648201526084016105dd565b50600a91909155600b55600190565b6000610693610d40565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106eb610d40565b6001600160a01b0381166107505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105dd565b61075981610d9a565b50565b6001600160a01b0383166107be5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105dd565b6001600160a01b03821661081f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105dd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061088c84846106b8565b905060001981146108f457818110156108e75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105dd565b6108f4848484840361075c565b50505050565b6001600160a01b0383166109205760405162461bcd60e51b81526004016105dd90611427565b6001600160a01b0382166109465760405162461bcd60e51b81526004016105dd9061146c565b80610966846001600160a01b031660009081526020819052604090205490565b10156109845760405162461bcd60e51b81526004016105dd906114af565b7f000000000000000000000000e4fdbc706ad702f073d7b9fdaa804e87de8680d66001600160a01b0316836001600160a01b031614806109f557507f000000000000000000000000e4fdbc706ad702f073d7b9fdaa804e87de8680d66001600160a01b0316826001600160a01b0316145b8015610a04575060135460ff16155b15610d30577f000000000000000000000000e4fdbc706ad702f073d7b9fdaa804e87de8680d66001600160a01b0316836001600160a01b031614610b1557600f54306000908152602081905260408120549091610a60916114f5565b90506011548110610a7657610a76601154610dec565b601254600f5410610b1357610a8c601254610e8a565b601254600f6000828254610aa091906114f5565b9091555050600e546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610b115760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b60448201526064016105dd565b505b505b6001600160a01b03831660009081526010602052604081205460ff1680610b5457506001600160a01b03831660009081526010602052604090205460ff165b15610b60575080610d25565b600c54821115610bd85760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e740000000000000060648201526084016105dd565b7f000000000000000000000000e4fdbc706ad702f073d7b9fdaa804e87de8680d66001600160a01b0316846001600160a01b031603610ca457600d546001600160a01b038416600090815260208190526040902054610c379084611414565b1115610ca45760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b60648201526084016105dd565b60006064600b5484610cb69190611508565b610cc09190611527565b905060006064600a5485610cd49190611508565b610cde9190611527565b9050610cea8183611414565b610cf490856114f5565b925081600f6000828254610d089190611414565b90915550610d2290508630610d1d8486611414565b61106c565b50505b6108f484848361106c565b610d3b83838361106c565b505050565b6005546001600160a01b031633146105625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105dd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff191660011790556000610e06600283611527565b90506000610e1482846114f5565b905047610e2083610e8a565b6000610e2c82476114f5565b9050610e388382611158565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506013805460ff19169055505050565b6013805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610ecc57610ecc611549565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6e919061155f565b81600181518110610f8157610f81611549565b60200260200101906001600160a01b031690816001600160a01b031681525050610fcc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461075c565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac947836000843061100c4261012c611414565b6040518663ffffffff1660e01b815260040161102c95949392919061157c565b600060405180830381600087803b15801561104657600080fd5b505af115801561105a573d6000803e3d6000fd5b50506013805460ff1916905550505050565b6001600160a01b0383166110925760405162461bcd60e51b81526004016105dd90611427565b6001600160a01b0382166110b85760405162461bcd60e51b81526004016105dd9061146c565b6001600160a01b038316600090815260208190526040902054818110156110f15760405162461bcd60e51b81526004016105dd906114af565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6013805460ff19166001179055611190307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461075c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806111d76005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561123f573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061126491906115ed565b50506013805460ff19169055505050565b600060208083528351808285015260005b818110156112a257858101830151858201604001528201611286565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461075957600080fd5b600080604083850312156112eb57600080fd5b82356112f6816112c3565b946020939093013593505050565b60008060006060848603121561131957600080fd5b8335611324816112c3565b92506020840135611334816112c3565b929592945050506040919091013590565b60006020828403121561135757600080fd5b8135611362816112c3565b9392505050565b6000806040838503121561137c57600080fd5b50508035926020909101359150565b6000806040838503121561139e57600080fd5b82356113a9816112c3565b915060208301356113b9816112c3565b809150509250929050565b600181811c908216806113d857607f821691505b6020821081036113f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610504576105046113fe565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b81810381811115610504576105046113fe565b6000816000190483118215151615611522576115226113fe565b500290565b60008261154457634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561157157600080fd5b8151611362816112c3565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115cc5784516001600160a01b0316835293830193918301916001016115a7565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561160257600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122009659f59181498ab5e74d3be47904fb7061e635f567ac4f020c2184688a7600064736f6c63430008100033

Deployed Bytecode Sourcemap

28268:6848:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17986:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20260:244;;;;;;;;;;-1:-1:-1;20260:244:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;20260:244:0;1023:187:1;28953:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1405:32:1;;;1387:51;;1375:2;1360:18;28953:51:0;1215:229:1;19124:110:0;;;;;;;;;;-1:-1:-1;19214:12:0;;19124:110;;;1595:25:1;;;1583:2;1568:18;19124:110:0;1449:177:1;21084:297:0;;;;;;;;;;-1:-1:-1;21084:297:0;;;;;:::i;:::-;;:::i;18967:92::-;;;;;;;;;;-1:-1:-1;18967:92:0;;19050:1;2234:36:1;;2222:2;2207:18;18967:92:0;2092:184:1;22800:272:0;;;;;;;;;;-1:-1:-1;22800:272:0;;;;;:::i;:::-;;:::i;29011:38::-;;;;;;;;;;;;;;;28604:35;;;;;;;;;;;;;;;;18151:177;;;;;;;;;;-1:-1:-1;18151:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;18302:18:0;18270:7;18302:18;;;;;;;;;;;;18151:177;15245:103;;;;;;;;;;;;;:::i;:::-;;28784:75;;;;;;;;;;-1:-1:-1;28784:75:0;;;;-1:-1:-1;;;;;28784:75:0;;;28646:60;;;;;;;;;;;;;;;;14597:87;;;;;;;;;;-1:-1:-1;14670:6:0;;-1:-1:-1;;;;;14670:6:0;14597:87;;17810:106;;;;;;;;;;;;;:::i;21884:507::-;;;;;;;;;;-1:-1:-1;21884:507:0;;;;;:::i;:::-;;:::i;19704:236::-;;;;;;;;;;-1:-1:-1;19704:236:0;;;;;:::i;:::-;;:::i;28713:64::-;;;;;;;;;;;;;;;;34686:390;;;;;;;;;;-1:-1:-1;34686:390:0;;;;;:::i;:::-;;:::i;34496:182::-;;;;;;;;;;-1:-1:-1;34496:182:0;;;;;:::i;:::-;;:::i;19297:201::-;;;;;;;;;;-1:-1:-1;19297:201:0;;;;;:::i;:::-;;:::i;15503:238::-;;;;;;;;;;-1:-1:-1;15503:238:0;;;;;:::i;:::-;;:::i;28563:34::-;;;;;;;;;;;;;;;;17986:102;18042:13;18075:5;18068:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17986:102;:::o;20260:244::-;20381:4;13470:10;20442:32;13470:10;20458:7;20467:6;20442:8;:32::i;:::-;20492:4;20485:11;;;20260:244;;;;;:::o;21084:297::-;21217:4;13470:10;21275:38;21291:4;13470:10;21306:6;21275:15;:38::i;:::-;21324:27;21334:4;21340:2;21344:6;21324:9;:27::i;:::-;-1:-1:-1;21369:4:0;;21084:297;-1:-1:-1;;;;21084:297:0:o;22800:272::-;22917:4;13470:10;22978:64;13470:10;22994:7;23031:10;23003:25;13470:10;22994:7;23003:9;:25::i;:::-;:38;;;;:::i;:::-;22978:8;:64::i;15245:103::-;14483:13;:11;:13::i;:::-;15310:30:::1;15337:1;15310:18;:30::i;:::-;15245:103::o:0;17810:106::-;17868:13;17901:7;17894:14;;;;;:::i;21884:507::-;22006:4;13470:10;22006:4;22094:25;13470:10;22111:7;22094:9;:25::i;:::-;22067:52;;22172:15;22152:16;:35;;22130:122;;;;-1:-1:-1;;;22130:122:0;;4236:2:1;22130:122:0;;;4218:21:1;4275:2;4255:18;;;4248:30;4314:34;4294:18;;;4287:62;-1:-1:-1;;;4365:18:1;;;4358:35;4410:19;;22130:122:0;;;;;;;;;22288:60;22297:5;22304:7;22332:15;22313:16;:34;22288:8;:60::i;19704:236::-;19821:4;13470:10;19882:28;13470:10;19899:2;19903:6;19882:9;:28::i;34686:390::-;34834:4;14483:13;:11;:13::i;:::-;34903:2:::1;34865:33;34882:16:::0;34865;:33:::1;:::i;:::-;34864:41;;34856:98;;;::::0;-1:-1:-1;;;34856:98:0;;4642:2:1;34856:98:0::1;::::0;::::1;4624:21:1::0;4681:2;4661:18;;;4654:30;4720:34;4700:18;;;4693:62;-1:-1:-1;;;4771:18:1;;;4764:42;4823:19;;34856:98:0::1;4440:408:1::0;34856:98:0::1;-1:-1:-1::0;34965:15:0::1;:34:::0;;;;35010:15:::1;:34:::0;35064:4:::1;::::0;34686:390::o;34496:182::-;34599:4;14483:13;:11;:13::i;:::-;-1:-1:-1;34621:15:0::1;:27:::0;;-1:-1:-1;;;;;34621:27:0;::::1;-1:-1:-1::0;;;;;;34621:27:0;;::::1;;::::0;;;34496:182;;;:::o;19297:201::-;-1:-1:-1;;;;;19463:18:0;;;19431:7;19463:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19297:201::o;15503:238::-;14483:13;:11;:13::i;:::-;-1:-1:-1;;;;;15606:22:0;::::1;15584:110;;;::::0;-1:-1:-1;;;15584:110:0;;5055:2:1;15584:110:0::1;::::0;::::1;5037:21:1::0;5094:2;5074:18;;;5067:30;5133:34;5113:18;;;5106:62;-1:-1:-1;;;5184:18:1;;;5177:36;5230:19;;15584:110:0::1;4853:402:1::0;15584:110:0::1;15705:28;15724:8;15705:18;:28::i;:::-;15503:238:::0;:::o;25107:380::-;-1:-1:-1;;;;;25243:19:0;;25235:68;;;;-1:-1:-1;;;25235:68:0;;5462:2:1;25235:68:0;;;5444:21:1;5501:2;5481:18;;;5474:30;5540:34;5520:18;;;5513:62;-1:-1:-1;;;5591:18:1;;;5584:34;5635:19;;25235:68:0;5260:400:1;25235:68:0;-1:-1:-1;;;;;25322:21:0;;25314:68;;;;-1:-1:-1;;;25314:68:0;;5867:2:1;25314:68:0;;;5849:21:1;5906:2;5886:18;;;5879:30;5945:34;5925:18;;;5918:62;-1:-1:-1;;;5996:18:1;;;5989:32;6038:19;;25314:68:0;5665:398:1;25314:68:0;-1:-1:-1;;;;;25395:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25447:32;;1595:25:1;;;25447:32:0;;1568:18:1;25447:32:0;;;;;;;25107:380;;;:::o;25778:502::-;25913:24;25940:25;25950:5;25957:7;25940:9;:25::i;:::-;25913:52;;-1:-1:-1;;25980:16:0;:37;25976:297;;26080:6;26060:16;:26;;26034:117;;;;-1:-1:-1;;;26034:117:0;;6270:2:1;26034:117:0;;;6252:21:1;6309:2;6289:18;;;6282:30;6348:31;6328:18;;;6321:59;6397:18;;26034:117:0;6068:353:1;26034:117:0;26195:51;26204:5;26211:7;26239:6;26220:16;:25;26195:8;:51::i;:::-;25902:378;25778:502;;;:::o;30947:2149::-;-1:-1:-1;;;;;31045:18:0;;31037:68;;;;-1:-1:-1;;;31037:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31124:16:0;;31116:64;;;;-1:-1:-1;;;31116:64:0;;;;;;;:::i;:::-;31218:6;31199:15;31209:4;-1:-1:-1;;;;;18302:18:0;18270:7;18302:18;;;;;;;;;;;;18151:177;31199:15;:25;;31191:76;;;;-1:-1:-1;;;31191:76:0;;;;;;;:::i;:::-;31293:13;-1:-1:-1;;;;;31285:21:0;:4;-1:-1:-1;;;;;31285:21:0;;:44;;;;31316:13;-1:-1:-1;;;;;31310:19:0;:2;-1:-1:-1;;;;;31310:19:0;;31285:44;31284:67;;;;-1:-1:-1;31335:16:0;;;;31334:17;31284:67;31280:1809;;;31380:13;-1:-1:-1;;;;;31372:21:0;:4;-1:-1:-1;;;;;31372:21:0;;31368:686;;31476:18;;31467:4;31414:32;18302:18;;;;;;;;;;;31414:32;;31449:45;;;:::i;:::-;31414:80;;31545:30;;31517:24;:58;31513:154;;31600:47;31616:30;;31600:15;:47::i;:::-;31713:24;;31690:18;;31689:48;31685:354;;31762:43;31780:24;;31762:17;:43::i;:::-;31850:24;;31828:18;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;;31917:15:0;;31909:52;;31897:9;;-1:-1:-1;;;;;31917:15:0;;31939:21;31909:52;;;;;31897:9;31909:52;31897:9;31909:52;31939:21;31917:15;31909:52;;;;;;;31897:64;;31992:4;31984:35;;;;-1:-1:-1;;;31984:35:0;;7978:2:1;31984:35:0;;;7960:21:1;8017:2;7997:18;;;7990:30;-1:-1:-1;;;8036:18:1;;;8029:48;8094:18;;31984:35:0;7776:342:1;31984:35:0;31739:300;31685:354;31395:659;31368:686;-1:-1:-1;;;;;32111:24:0;;32070:22;32111:24;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;32139:22:0;;;;;;:18;:22;;;;;;;;32111:50;32107:839;;;-1:-1:-1;32199:6:0;32107:839;;;32278:11;;32268:6;:21;;32260:91;;;;-1:-1:-1;;;32260:91:0;;8325:2:1;32260:91:0;;;8307:21:1;8364:2;8344:18;;;8337:30;8403:34;8383:18;;;8376:62;8474:27;8454:18;;;8447:55;8519:19;;32260:91:0;8123:421:1;32260:91:0;32381:13;-1:-1:-1;;;;;32373:21:0;:4;-1:-1:-1;;;;;32373:21:0;;32370:178;;32454:15;;-1:-1:-1;;;;;18302:18:0;;18270:7;18302:18;;;;;;;;;;;32427:22;;:6;:22;:::i;:::-;32426:43;;32418:110;;;;-1:-1:-1;;;32418:110:0;;8751:2:1;32418:110:0;;;8733:21:1;8790:2;8770:18;;;8763:30;8829:34;8809:18;;;8802:62;-1:-1:-1;;;8880:18:1;;;8873:52;8942:19;;32418:110:0;8549:418:1;32418:110:0;32568:22;32623:3;32604:15;;32595:6;:24;;;;:::i;:::-;32594:32;;;;:::i;:::-;32568:59;;32646:22;32701:3;32682:15;;32673:6;:24;;;;:::i;:::-;32672:32;;;;:::i;:::-;32646:59;-1:-1:-1;32751:31:0;32646:59;32751:14;:31;:::i;:::-;32741:42;;:6;:42;:::i;:::-;32724:59;;32824:14;32802:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;32859:71:0;;-1:-1:-1;32875:4:0;32889;32897:31;32914:14;32897;:31;:::i;:::-;32859:15;:71::i;:::-;32241:705;;32107:839;32960:41;32976:4;32982:2;32986:14;32960:15;:41::i;31280:1809::-;33044:33;33060:4;33066:2;33070:6;33044:15;:33::i;:::-;30947:2149;;;:::o;14762:132::-;14670:6;;-1:-1:-1;;;;;14670:6:0;13470:10;14826:23;14818:68;;;;-1:-1:-1;;;14818:68:0;;9569:2:1;14818:68:0;;;9551:21:1;;;9588:18;;;9581:30;9647:34;9627:18;;;9620:62;9699:18;;14818:68:0;9367:356:1;15901:191:0;15994:6;;;-1:-1:-1;;;;;16011:17:0;;;-1:-1:-1;;;;;;16011:17:0;;;;;;;16044:40;;15994:6;;;16011:17;15994:6;;16044:40;;15975:16;;16044:40;15964:128;15901:191;:::o;33104:474::-;29524:16;:23;;-1:-1:-1;;29524:23:0;29543:4;29524:23;;;:16;33206:24:::1;33229:1;33206:20:::0;:24:::1;:::i;:::-;33190:41:::0;-1:-1:-1;33242:17:0::1;33263:27;33190:41:::0;33263:20;:27:::1;:::i;:::-;33242:49:::0;-1:-1:-1;33329:21:0::1;33363:23;33381:4:::0;33363:17:::1;:23::i;:::-;33399:18;33421:38;33445:14:::0;33421:21:::1;:38;:::i;:::-;33399:61;;33473:36;33487:9;33498:10;33473:13;:36::i;:::-;33527:43;::::0;;9930:25:1;;;9986:2;9971:18;;9964:34;;;10014:18;;;10007:34;;;33527:43:0::1;::::0;9918:2:1;9903:18;33527:43:0::1;;;;;;;-1:-1:-1::0;;29570:16:0;:24;;-1:-1:-1;;29570:24:0;;;-1:-1:-1;;;33104:474:0:o;33586:496::-;29524:16;:23;;-1:-1:-1;;29524:23:0;29543:4;29524:23;;;33689:16:::1;::::0;;33703:1:::1;33689:16:::0;;;;;::::1;::::0;;-1:-1:-1;;33689:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;33689:16:0::1;33665:40;;33734:4;33716;33721:1;33716:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;33716:23:0::1;;;-1:-1:-1::0;;;;;33716:23:0::1;;;::::0;::::1;33760:15;-1:-1:-1::0;;;;;33760:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33750:4;33755:1;33750:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;33750:32:0::1;;;-1:-1:-1::0;;;;;33750:32:0::1;;;::::0;::::1;33795:62;33812:4;33827:15;33845:11;33795:8;:62::i;:::-;-1:-1:-1::0;;;;;33870:15:0::1;:66;;33951:11:::0;33977:1:::1;33993:4:::0;34020::::1;34041:21;:15;34059:3;34041:21;:::i;:::-;33870:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29570:16:0;:24;;-1:-1:-1;;29570:24:0;;;-1:-1:-1;;;;33586:496:0:o;26288:776::-;-1:-1:-1;;;;;26419:18:0;;26411:68;;;;-1:-1:-1;;;26411:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26498:16:0;;26490:64;;;;-1:-1:-1;;;26490:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26589:15:0;;26567:19;26589:15;;;;;;;;;;;26637:21;;;;26615:109;;;;-1:-1:-1;;;26615:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26760:15:0;;;:9;:15;;;;;;;;;;;26778:20;;;26760:38;;26978:13;;;;;;;;;;:23;;;;;;27030:26;;1595:25:1;;;26978:13:0;;27030:26;;1568:18:1;27030:26:0;;;;;;;26400:664;26288:776;;;:::o;34090:398::-;29524:16;:23;;-1:-1:-1;;29524:23:0;29543:4;29524:23;;;34207:62:::1;34224:4;34239:15;34257:11:::0;34207:8:::1;:62::i;:::-;34282:15;-1:-1:-1::0;;;;;34282:31:0::1;;34321:9;34354:4;34374:11;34400:1;34416::::0;34432:7:::1;14670:6:::0;;-1:-1:-1;;;;;14670:6:0;;14597:87;34432:7:::1;34282:198;::::0;::::1;::::0;;;-1:-1:-1;;;;;;34282:198:0;;;-1:-1:-1;;;;;11916:15:1;;;34282:198:0::1;::::0;::::1;11898:34:1::0;11948:18;;;11941:34;;;;11991:18;;;11984:34;;;;12034:18;;;12027:34;12098:15;;;12077:19;;;12070:44;34454:15:0::1;12130:19:1::0;;;12123:35;11832:19;;34282:198:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29570:16:0;:24;;-1:-1:-1;;29570:24:0;;;-1:-1:-1;;;34090:398:0:o;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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;:::-;2725:5;2489:247;-1:-1:-1;;;2489:247:1:o;2741:248::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;-1:-1:-1;;2909:23:1;;;2979:2;2964:18;;;2951:32;;-1:-1:-1;2741:248:1:o;2994:388::-;3062:6;3070;3123:2;3111:9;3102:7;3098:23;3094:32;3091:52;;;3139:1;3136;3129:12;3091:52;3178:9;3165:23;3197:31;3222:5;3197:31;:::i;:::-;3247:5;-1:-1:-1;3304:2:1;3289:18;;3276:32;3317:33;3276:32;3317:33;:::i;:::-;3369:7;3359:17;;;2994:388;;;;;:::o;3387:380::-;3466:1;3462:12;;;;3509;;;3530:61;;3584:4;3576:6;3572:17;3562:27;;3530:61;3637:2;3629:6;3626:14;3606:18;3603:38;3600:161;;3683:10;3678:3;3674:20;3671:1;3664:31;3718:4;3715:1;3708:15;3746:4;3743:1;3736:15;3600:161;;3387:380;;;:::o;3772:127::-;3833:10;3828:3;3824:20;3821:1;3814:31;3864:4;3861:1;3854:15;3888:4;3885:1;3878:15;3904:125;3969:9;;;3990:10;;;3987:36;;;4003:18;;:::i;6426:401::-;6628:2;6610:21;;;6667:2;6647:18;;;6640:30;6706:34;6701:2;6686:18;;6679:62;-1:-1:-1;;;6772:2:1;6757:18;;6750:35;6817:3;6802:19;;6426:401::o;6832:399::-;7034:2;7016:21;;;7073:2;7053:18;;;7046:30;7112:34;7107:2;7092:18;;7085:62;-1:-1:-1;;;7178:2:1;7163:18;;7156:33;7221:3;7206:19;;6832:399::o;7236:402::-;7438:2;7420:21;;;7477:2;7457:18;;;7450:30;7516:34;7511:2;7496:18;;7489:62;-1:-1:-1;;;7582:2:1;7567:18;;7560:36;7628:3;7613:19;;7236:402::o;7643:128::-;7710:9;;;7731:11;;;7728:37;;;7745:18;;:::i;8972:168::-;9012:7;9078:1;9074;9070:6;9066:14;9063:1;9060:21;9055:1;9048:9;9041:17;9037:45;9034:71;;;9085:18;;:::i;:::-;-1:-1:-1;9125:9:1;;8972:168::o;9145:217::-;9185:1;9211;9201:132;;9255:10;9250:3;9246:20;9243:1;9236:31;9290:4;9287:1;9280:15;9318:4;9315:1;9308:15;9201:132;-1:-1:-1;9347:9:1;;9145:217::o;10184:127::-;10245:10;10240:3;10236:20;10233:1;10226:31;10276:4;10273:1;10266:15;10300:4;10297:1;10290:15;10316:251;10386:6;10439:2;10427:9;10418:7;10414:23;10410:32;10407:52;;;10455:1;10452;10445:12;10407:52;10487:9;10481:16;10506:31;10531:5;10506:31;:::i;10572:980::-;10834:4;10882:3;10871:9;10867:19;10913:6;10902:9;10895:25;10939:2;10977:6;10972:2;10961:9;10957:18;10950:34;11020:3;11015:2;11004:9;11000:18;10993:31;11044:6;11079;11073:13;11110:6;11102;11095:22;11148:3;11137:9;11133:19;11126:26;;11187:2;11179:6;11175:15;11161:29;;11208:1;11218:195;11232:6;11229:1;11226:13;11218:195;;;11297:13;;-1:-1:-1;;;;;11293:39:1;11281:52;;11388:15;;;;11353:12;;;;11329:1;11247:9;11218:195;;;-1:-1:-1;;;;;;;11469:32:1;;;;11464:2;11449:18;;11442:60;-1:-1:-1;;;11533:3:1;11518:19;11511:35;11430:3;10572:980;-1:-1:-1;;;10572:980:1:o;12169:306::-;12257:6;12265;12273;12326:2;12314:9;12305:7;12301:23;12297:32;12294:52;;;12342:1;12339;12332:12;12294:52;12371:9;12365:16;12355:26;;12421:2;12410:9;12406:18;12400:25;12390:35;;12465:2;12454:9;12450:18;12444:25;12434:35;;12169:306;;;;;:::o

Swarm Source

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