ETH Price: $3,100.78 (+1.12%)
Gas: 2 Gwei

Token

LYNX (LYNX)
 

Overview

Max Total Supply

5,000,000 LYNX

Holders

514 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.446102553647844679 LYNX

Value
$0.00
0x3ace72757f247cf9a331d12e4e93f71809aec1e1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Lynx Tech aims to streamline cryptocurrency trading through its Deadshot platform. Operating on Ethereum, it features a native $LYNX token with a 5M capped supply. Deadshot offers tools for trading optimization and risk management. $LYNX token holders can also participate in governance.

# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xCdE2621C...8989Dcc4a
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Lynx

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-27
*/

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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);
    }
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

    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, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    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 (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

error LYNX__MaxWalletReached(address wallet, uint triedBalance);
error LYNX__Blacklisted();
error LYNX__InvalidThreshold();
error LYNX__TradingNotEnabled();
error LYNX__NotAllowed();
error LYNX__InvalidTaxAmount();
error LYNX__InvalidMaxWallet();

contract Lynx is Ownable, ERC20 {
    //---------------------------------------------------------------------------------
    // Structs
    //---------------------------------------------------------------------------------
    struct SnapshotInfo {
        uint tier1Total; // Tier 1 eligible balance
        uint tier2Total; // Tier 2 eligible balance
        uint snapshotTakenTimestamp; // Timestamp of the snapshot
    }
    //---------------------------------------------------------------------------------
    // State Variables
    //---------------------------------------------------------------------------------
    mapping(address user => mapping(uint snapId => uint amount))
        public snapshotInfo;
    mapping(address user => uint lastSnapshotId) public lastSnapshotId;
    mapping(uint snapId => SnapshotInfo) public snapshots;
    mapping(address wallet => bool excludedStatus) public isExcludedFromTax;
    mapping(address wallet => bool excludedStatus)
        public isExcludedFromMaxWallet;
    mapping(address wallet => bool blacklistedStatus) public isBlacklisted;
    mapping(address wallet => bool dividendExcepmtionStatus)
        public isDividendExempt;
    mapping(address lpAddress => bool) public isLpAddress;
    mapping(address executor => bool isExecutor) public isSnapshotter;

    uint private constant MAX_SUPPLY = 5_000_000 ether;
    uint private constant TIER_1 = 50_000 ether; // TIER 1 is top TIER
    uint private constant TIER_2 = 1_000 ether; // TIER 2 is middle TIER
    uint private constant TAX_PERCENT = 100;
    IUniswapV2Router02 public router;

    address public blacklister;
    address public mainPair;
    address private immutable WETH;
    address payable public immutable ADMIN_WALLET;
    uint public currentSnapId = 0;
    uint public taxThreshold;

    uint public maxWallet;
    uint public buyTax = 5;
    uint public sellTax = 5;

    bool private isSwapping = false;
    bool public tradingEnabled = false;

    //---------------------------------------------------------------------------------
    // Events
    //---------------------------------------------------------------------------------

    event WalletExcludedFromTax(address indexed _user, bool excluded);
    event WalletExcludedFromMax(address indexed _user, bool excluded);
    event BlacklistWalletUpdate(address indexed _user, bool blacklisted);
    event BlacklistWalletsUpdate(address[] _users, bool blacklisted);
    event SetAddressAsLp(address indexed _lpAddress, bool isLpAddress);
    event SnapshotTaken(uint indexed snapId, uint timestamp);
    event TradingEnabled(bool isEnabled);
    event UpdateBlacklister(address indexed _blacklister);
    event SetSnapshotterStatus(address indexed _snapshotter, bool status);
    event EditMaxWalletAmount(uint newAmount);
    event EditTax(uint newTax, bool buyTax, bool sellTax);

    //---------------------------------------------------------------------------------
    // Modifiers
    //---------------------------------------------------------------------------------
    modifier adminOrBlacklister() {
        if (msg.sender != owner() && msg.sender != blacklister)
            revert LYNX__NotAllowed();
        _;
    }

    modifier onlySnapshotter() {
        if (!isSnapshotter[msg.sender]) revert LYNX__NotAllowed();
        _;
    }

    //---------------------------------------------------------------------------------
    // Constructor
    //---------------------------------------------------------------------------------
    constructor(address _admin, address _newOwner) ERC20("LYNX", "LYNX") {
        _transferOwnership(_newOwner);
        blacklister = 0x89a022f3983Fa81Ae5B02b5A7d471AB1AC0BcC64;
        _mint(_newOwner, MAX_SUPPLY);

        maxWallet = (MAX_SUPPLY * 1_5) / 100_0; // 1.5% of total supply
        taxThreshold = MAX_SUPPLY / 100_00; // 0.01% of total supply

        // Ethereum Mainnet UniswapV2 Router
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        WETH = router.WETH();
        // Create the Pair for this token with WETH
        mainPair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            WETH
        );
        isLpAddress[mainPair] = true;

        isExcludedFromMaxWallet[address(this)] = true;
        isExcludedFromMaxWallet[owner()] = true;
        isExcludedFromMaxWallet[address(router)] = true;
        isExcludedFromMaxWallet[address(mainPair)] = true;

        isExcludedFromTax[owner()] = true;
        isExcludedFromTax[address(this)] = true;
        isExcludedFromTax[address(router)] = true;

        isDividendExempt[owner()] = true;
        isDividendExempt[address(this)] = true;
        isDividendExempt[address(router)] = true;
        isDividendExempt[address(mainPair)] = true;

        isSnapshotter[owner()] = true;
        ADMIN_WALLET = payable(_admin);
        _approve(address(this), address(router), type(uint).max);
    }

    //---------------------------------------------------------------------------------
    // External & Public Functions
    //---------------------------------------------------------------------------------

    /**
     * Set wether an address is excluded from taxes or NOT.
     * @param _user User which status will be updated
     * @param _excluded The new excluded status. True is Excluded, False is NOT excluded
     */
    function setExcludeFromTax(
        address _user,
        bool _excluded
    ) external onlyOwner {
        isExcludedFromTax[_user] = _excluded;
        emit WalletExcludedFromTax(_user, _excluded);
    }

    /**
     * Exclude or include a wallet of MAX wallet limit (AntiWhale)
     * @param _user Address which status will be updated
     * @param _excluded The new excluded status. True is Excluded, False is NOT excluded
     */
    function setExcludedFromMaxWallet(
        address _user,
        bool _excluded
    ) external onlyOwner {
        isExcludedFromMaxWallet[_user] = _excluded;
        emit WalletExcludedFromMax(_user, _excluded);
    }

    /**
     * @notice Set the address as Blacklisted
     * @param _user Address which status will be updated
     */
    function blacklistAddress(address _user) external adminOrBlacklister {
        isBlacklisted[_user] = true;
        isDividendExempt[_user] = true;
        _updateSnapDecrease(_user, balanceOf(_user));
        emit BlacklistWalletUpdate(_user, true);
    }

    /**
     * @notice Set the addresses as Blacklisted
     * @param _users Addresses which status will be updated
     */
    function blacklistAddresses(
        address[] calldata _users
    ) external adminOrBlacklister {
        for (uint i = 0; i < _users.length; i++) {
            isBlacklisted[_users[i]] = true;
            isDividendExempt[_users[i]] = true;
            _updateSnapDecrease(_users[i], balanceOf(_users[i]));
        }
        emit BlacklistWalletsUpdate(_users, true);
    }

    /**
     * @notice Remove the address as Blacklisted
     * @param _user Addresses which status will be updated
     */
    function unblacklistAddress(address _user) external adminOrBlacklister {
        isBlacklisted[_user] = false;
        isDividendExempt[_user] = false;
        _updateSnapIncrease(_user, balanceOf(_user));
        emit BlacklistWalletUpdate(_user, false);
    }

    /**
     * @notice Remove the addresses as Blacklisted
     * @param _users Addresses which status will be updated
     */
    function unblacklistAddresses(
        address[] calldata _users
    ) external adminOrBlacklister {
        for (uint i = 0; i < _users.length; i++) {
            isBlacklisted[_users[i]] = false;
            isDividendExempt[_users[i]] = false;
            _updateSnapIncrease(_users[i], balanceOf(_users[i]));
        }
        emit BlacklistWalletsUpdate(_users, false);
    }

    /**
     * @notice Set an Address as LP
     * @param _lpAddress Address to set as LP
     * @param _isLpAddress enable or disable address as an LP
     */
    function setLpAddress(
        address _lpAddress,
        bool _isLpAddress
    ) external onlyOwner {
        isLpAddress[_lpAddress] = _isLpAddress;
        isDividendExempt[_lpAddress] = _isLpAddress;
        emit SetAddressAsLp(_lpAddress, _isLpAddress);
    }

    /**
     * @notice Create a snapshot of the current balances
     */
    function takeSnapshot() external onlySnapshotter {
        uint currentSnap = currentSnapId;
        currentSnapId++;

        SnapshotInfo storage snap = snapshots[currentSnap];
        snap.snapshotTakenTimestamp = block.timestamp;
        // roll over total amounts
        snapshots[currentSnapId] = SnapshotInfo({
            tier1Total: snap.tier1Total,
            tier2Total: snap.tier2Total,
            snapshotTakenTimestamp: 0
        });

        emit SnapshotTaken(currentSnap, block.timestamp);
    }

    /**
     * @notice Set the new Tax swap threshold
     * @param _taxThreshold New tax threshold
     */
    function setTaxThreshold(uint _taxThreshold) external onlyOwner {
        if (_taxThreshold > MAX_SUPPLY) revert LYNX__InvalidThreshold();
        taxThreshold = _taxThreshold;
    }

    function setMaxWallet(uint _maxWallet) external onlyOwner {
        if (_maxWallet < MAX_SUPPLY / 100_00) revert LYNX__InvalidMaxWallet();
        maxWallet = _maxWallet;
        emit EditMaxWalletAmount(_maxWallet);
    }

    /**
     * @notice set trading as enabled
     */
    function enableTrading() external onlyOwner {
        tradingEnabled = true;
        emit TradingEnabled(true);
    }

    /**
     * @notice set trading as disabled
     */
    function pauseTrading() external onlyOwner {
        tradingEnabled = false;
        emit TradingEnabled(false);
    }

    /**
     * @notice Update the blacklister address
     * @param _blacklister New blacklister address
     */
    function setBlacklister(address _blacklister) external onlyOwner {
        blacklister = _blacklister;
        emit UpdateBlacklister(_blacklister);
    }

    /**
     * @notice Set the Snapshotter status to an address. These addresses can take snapshots at any time
     * @param _snapshotter Address to set snapshotter status
     * @param _isSnapshotter True to set as snapshotter, false to remove
     */
    function setSnapshotterAddress(
        address _snapshotter,
        bool _isSnapshotter
    ) external onlyOwner {
        isSnapshotter[_snapshotter] = _isSnapshotter;
        emit SetSnapshotterStatus(_snapshotter, _isSnapshotter);
    }

    /**
     * @notice set the Buy tax to a new value
     * @param _buyTax New buy tax
     * @dev buyTax is a maximimum of 10% so the max acceptable _buyTax is 10
     */
    function setBuyTax(uint _buyTax) external onlyOwner {
        if (_buyTax > 10) revert LYNX__InvalidTaxAmount();
        buyTax = _buyTax;
        emit EditTax(_buyTax, true, false);
    }

    /**
     * @notice set the Sell tax to a new value
     * @param _sellTax New sell tax
     * @dev sellTax is a maximimum of 10% so the max acceptable _sellTax is 10
     */
    function setSellTax(uint _sellTax) external onlyOwner {
        if (_sellTax > 10) revert LYNX__InvalidTaxAmount();
        sellTax = _sellTax;
        emit EditTax(_sellTax, false, true);
    }

    //---------------------------------------------------------------------------------
    // Internal & Private Functions
    //---------------------------------------------------------------------------------

    /**
     * @notice Underlying transfer of tokens used by `transfer` and `transferFrom` in ERC20 which are public
     * @param from Address that holds the funds
     * @param to Address that receives the funds
     * @param amount Amount of funds to send
     */
    function _transfer(
        address from,
        address to,
        uint amount
    ) internal override {
        if (isBlacklisted[from] || isBlacklisted[to])
            revert LYNX__Blacklisted();

        bool taxExclusion = isExcludedFromTax[from] || isExcludedFromTax[to];

        if (!tradingEnabled && !taxExclusion) {
            revert LYNX__TradingNotEnabled();
        }

        _updateSnapDecrease(from, amount);

        uint currentBalance = balanceOf(address(this));

        if (
            !isSwapping &&
            currentBalance >= taxThreshold &&
            !taxExclusion &&
            !isLpAddress[from] // Cant do this on buys
        ) {
            _swapTokens();
        }

        // Check that sender is free of tax or receiver is free of tax
        if (!taxExclusion) {
            uint tax;
            // if not free of tax, check if is buy or sell
            if (isLpAddress[to]) {
                // IS SELL
                tax = (amount * sellTax) / TAX_PERCENT;
            } else if (isLpAddress[from]) {
                // IS BUY
                tax = (amount * buyTax) / TAX_PERCENT;
            }
            if (tax > 0) {
                super._transfer(from, address(this), tax);
                amount -= tax;
            }
        }

        // check if receiver is free of max wallet
        uint toNEWBalance = balanceOf(to) + amount;
        if (!isExcludedFromMaxWallet[to] && toNEWBalance > maxWallet) {
            revert LYNX__MaxWalletReached(to, toNEWBalance);
        }
        _updateSnapIncrease(to, amount);
        super._transfer(from, to, amount);
    }

    /**
     * @notice Swap any tokens the contract has for ETH and send the ETH directly to the Admin Wallet
     */
    function _swapTokens() private {
        isSwapping = true;
        // Get the current amount of tokens stored in the contract
        uint256 contractTokenBalance = balanceOf(address(this));
        // If the contract has tokens
        if (contractTokenBalance > 0) {
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = WETH;
            // Swap all for ETH and send to Admin Wallet
            router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                contractTokenBalance,
                0, // Accept any amount of ETH
                path,
                ADMIN_WALLET,
                block.timestamp
            );
        }
        isSwapping = false;
    }

    /**
     * @notice Decrease a wallet's current snapshot balance
     * @param user Wallet to update snapshot info
     * @param amount the difference amount in snapshot
     */
    function _updateSnapDecrease(address user, uint amount) private {
        uint currentSnap = currentSnapId;
        uint currentSnapBalance = snapshotInfo[user][currentSnap];
        uint currentBalance = balanceOf(user);
        uint newBalance = currentBalance - amount;
        SnapshotInfo storage snap = snapshots[currentSnap];
        lastSnapshotId[user] = currentSnap;
        // If user is exempt from dividends, we need to set the snapshot value to 0
        if (isDividendExempt[user]) {
            snapshotInfo[user][currentSnap] = 0;
            // if user is now exempt but used to have funds, we need to decrease the total
            if (currentSnapBalance > 0) {
                if (currentSnapBalance >= TIER_1)
                    snap.tier1Total -= currentSnapBalance;
                else if (currentSnapBalance >= TIER_2)
                    snap.tier2Total -= currentSnapBalance;
            }
        } else {
            snapshotInfo[user][currentSnap] = newBalance;

            /// FROM TIER 1
            if (currentBalance >= TIER_1) {
                // Decrease TIER 1
                snap.tier1Total -= currentBalance;
                // TO SAME TIER
                if (newBalance >= TIER_1) snap.tier1Total += newBalance;
                // TO TIER 2
                if (newBalance < TIER_1 && newBalance >= TIER_2)
                    snap.tier2Total += newBalance;
                // if to NO tier, just decrease is fine
            }
            // FROM TIER 2
            else if (currentBalance >= TIER_2) {
                snap.tier2Total -= currentBalance;
                // TO SAME TIER
                if (newBalance >= TIER_2) snap.tier2Total += newBalance;
                // TO NO TIER JUST DO NOTHING
            }
        }
    }

    /**
     * @notice Increase a wallet's current snapshot balance
     * @param user Wallet to update snapshot info
     * @param amount Difference amount
     */
    function _updateSnapIncrease(address user, uint amount) private {
        uint currentSnap = currentSnapId;
        uint currentBalance = balanceOf(user);
        uint currentSnapBalance = snapshotInfo[user][currentSnap];
        SnapshotInfo storage snap = snapshots[currentSnap];
        lastSnapshotId[user] = currentSnap;
        // If user is exempt from dividends, we need to set the snapshot value to 0
        if (isDividendExempt[user]) {
            snapshotInfo[user][currentSnap] = 0;
            // if user is now exempt but used to have funds, we need to decrease the total
            if (currentSnapBalance > 0) {
                if (currentSnapBalance >= TIER_1)
                    snap.tier1Total -= currentSnapBalance;
                else if (currentSnapBalance >= TIER_2)
                    snap.tier2Total -= currentSnapBalance;
            }
        } else {
            snapshotInfo[user][currentSnap] = currentBalance + amount;
            uint newBalance = currentBalance + amount;
            // Check if there is any tier advancement

            // FROM NO TIER
            if (currentBalance < TIER_2) {
                // TO TIER 1
                if (newBalance >= TIER_1)
                    snap.tier1Total += newBalance;
                    // TO TIER 2
                else if (newBalance >= TIER_2) snap.tier2Total += newBalance;
                // TO NO TIER DO NOTHING
            }
            // FROM TIER 2
            else if (currentBalance >= TIER_2 && currentBalance < TIER_1) {
                // TO TIER 1
                if (newBalance >= TIER_1)
                    snap.tier1Total += newBalance;

                    // TO SAME TIER
                else if (newBalance >= TIER_2) snap.tier2Total += newBalance;
                snap.tier2Total -= currentBalance;
            }
            // FROM TIER 1
            else if (currentBalance >= TIER_1) {
                // Stay in same tier
                snap.tier1Total += newBalance;
                snap.tier1Total -= currentBalance;
            }
        }
    }

    //---------------------------------------------------------------------------------
    // External & Public VIEW | PURE Functions
    //---------------------------------------------------------------------------------

    function getUserSnapshotAt(
        address user,
        uint snapId
    ) external view returns (uint) {
        // If snapshot ID hasn't been taken, return 0
        if (snapId > currentSnapId) return 0;
        uint lastUserSnap = lastSnapshotId[user];
        // if last snapshot is before the requested snapshot, return current balance of the user
        if (snapId > lastUserSnap) return balanceOf(user);
        // else return the snapshot balance
        return snapshotInfo[user][snapId];
    }

    //---------------------------------------------------------------------------------
    // Internal & Private VIEW | PURE Functions
    //---------------------------------------------------------------------------------
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_admin","type":"address"},{"internalType":"address","name":"_newOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"LYNX__Blacklisted","type":"error"},{"inputs":[],"name":"LYNX__InvalidMaxWallet","type":"error"},{"inputs":[],"name":"LYNX__InvalidTaxAmount","type":"error"},{"inputs":[],"name":"LYNX__InvalidThreshold","type":"error"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"triedBalance","type":"uint256"}],"name":"LYNX__MaxWalletReached","type":"error"},{"inputs":[],"name":"LYNX__NotAllowed","type":"error"},{"inputs":[],"name":"LYNX__TradingNotEnabled","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"BlacklistWalletUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"_users","type":"address[]"},{"indexed":false,"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"BlacklistWalletsUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"EditMaxWalletAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTax","type":"uint256"},{"indexed":false,"internalType":"bool","name":"buyTax","type":"bool"},{"indexed":false,"internalType":"bool","name":"sellTax","type":"bool"}],"name":"EditTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_lpAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"isLpAddress","type":"bool"}],"name":"SetAddressAsLp","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_snapshotter","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetSnapshotterStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"snapId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"SnapshotTaken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"TradingEnabled","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":true,"internalType":"address","name":"_blacklister","type":"address"}],"name":"UpdateBlacklister","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"WalletExcludedFromMax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"WalletExcludedFromTax","type":"event"},{"inputs":[],"name":"ADMIN_WALLET","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"blacklistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklister","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSnapId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"snapId","type":"uint256"}],"name":"getUserSnapshotAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"blacklistedStatus","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isDividendExempt","outputs":[{"internalType":"bool","name":"dividendExcepmtionStatus","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"excludedStatus","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"excludedStatus","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"isLpAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"executor","type":"address"}],"name":"isSnapshotter","outputs":[{"internalType":"bool","name":"isExecutor","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"lastSnapshotId","outputs":[{"internalType":"uint256","name":"lastSnapshotId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"pauseTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_blacklister","type":"address"}],"name":"setBlacklister","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"setExcludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"setExcludedFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lpAddress","type":"address"},{"internalType":"bool","name":"_isLpAddress","type":"bool"}],"name":"setLpAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_snapshotter","type":"address"},{"internalType":"bool","name":"_isSnapshotter","type":"bool"}],"name":"setSnapshotterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxThreshold","type":"uint256"}],"name":"setTaxThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"snapId","type":"uint256"}],"name":"snapshotInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"snapId","type":"uint256"}],"name":"snapshots","outputs":[{"internalType":"uint256","name":"tier1Total","type":"uint256"},{"internalType":"uint256","name":"tier2Total","type":"uint256"},{"internalType":"uint256","name":"snapshotTakenTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"takeSnapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"taxThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"unblacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"unblacklistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040525f601255600560158190556016556017805461ffff1916905534801562000029575f80fd5b5060405162002c7b38038062002c7b8339810160408190526200004c916200073c565b60405180604001604052806004815260200163098b29cb60e31b81525060405180604001604052806004815260200163098b29cb60e31b815250620000a06200009a620004da60201b60201c565b620004de565b6004620000ae838262000811565b506005620000bd828262000811565b505050620000d181620004de60201b60201c565b601080546001600160a01b0319167389a022f3983fa81ae5b02b5a7d471ab1ac0bcc641790556200010e816a0422ca8b0a00a4250000006200052d565b6103e8620001296a0422ca8b0a00a425000000600f620008ed565b6200013591906200090d565b601455620001516127106a0422ca8b0a00a4250000006200090d565b601355600f80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155604080516315ab88c960e31b8152905163ad5c4648916004818101926020929091908290030181865afa158015620001b7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001dd91906200092d565b6001600160a01b03908116608052600f546040805163c45a015560e01b81529051919092169163c45a01559160048083019260209291908290030181865afa1580156200022c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200025291906200092d565b6080516040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303815f875af1158015620002a1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002c791906200092d565b601180546001600160a01b0319166001600160a01b039290921691821790555f908152600d60209081526040808320805460ff199081166001908117909255308552600a9384905291842080549092168117909155916200032f5f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055600f5482168152600a909352818320805485166001908117909155601154909116835290822080549093168117909255600990620003a15f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff199687161790553081526009909352818320805485166001908117909155600f54909116835290822080549093168117909255600c906200040f5f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055308152600c909352818320805485166001908117909155600f54821684528284208054861682179055601154909116835290822080549093168117909255600e906200048f5f546001600160a01b031690565b6001600160a01b03908116825260208201929092526040015f20805460ff19169215159290921790915582811660a052600f54620004d2913091165f19620005f4565b505062000966565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620005895760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060035f8282546200059c919062000950565b90915550506001600160a01b0382165f818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620006585760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000580565b6001600160a01b038216620006bb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000580565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b80516001600160a01b038116811462000737575f80fd5b919050565b5f80604083850312156200074e575f80fd5b620007598362000720565b9150620007696020840162000720565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200079b57607f821691505b602082108103620007ba57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200071b575f81815260208120601f850160051c81016020861015620007e85750805b601f850160051c820191505b818110156200080957828155600101620007f4565b505050505050565b81516001600160401b038111156200082d576200082d62000772565b62000845816200083e845462000786565b84620007c0565b602080601f8311600181146200087b575f8415620008635750858301515b5f19600386901b1c1916600185901b17855562000809565b5f85815260208120601f198616915b82811015620008ab578886015182559484019460019091019084016200088a565b5085821015620008c957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620009075762000907620008d9565b92915050565b5f826200092857634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156200093e575f80fd5b620009498262000720565b9392505050565b80820180821115620009075762000907620008d9565b60805160a0516122ec6200098f5f395f81816105c10152611d3701525f611cca01526122ec5ff3fe608060405234801561000f575f80fd5b50600436106102cb575f3560e01c806377d1440d1161017b578063c2cd4a07116100e4578063dd62ed3e1161009e578063f3290d7511610079578063f3290d75146106c2578063f887ea40146106d5578063f8b45b05146106e8578063fe575a87146106f1575f80fd5b8063dd62ed3e14610689578063e42a206e1461069c578063f2fde38b146106af575f80fd5b8063c2cd4a07146105bc578063cb4ca631146105e3578063cc1776d314610605578063cd9a0d461461060e578063d6565a2d1461062d578063dc1052e214610676575f80fd5b8063a457c2d711610135578063a457c2d71461053e578063a9059cbb14610551578063b16b04a714610564578063b20161db1461058e578063b3d3d37e146105a1578063bd102430146105a9575f80fd5b806377d1440d146104d757806385af30c5146104e05780638a8c523c1461050b5780638cd09d50146105135780638da5cb5b1461052657806395d89b4114610536575f80fd5b806339509351116102375780634f7041a5116101f15780636dd3d39f116101cc5780636dd3d39f1461048757806370a08231146104a9578063715018a6146104bc57806377a54eb8146104c4575f80fd5b80634f7041a5146104585780635d0044ca1461046157806362771d3314610474575f80fd5b806339509351146103d857806339fb86c5146103eb57806341220104146103fe5780634355855a1461041157806345e34949146104335780634ada218b14610446575f80fd5b80631031e36e116102885780631031e36e1461036257806315c9aca11461036a57806318160ddd1461038c57806323b872dd146103945780632f7c5980146103a7578063313ce567146103c9575f80fd5b806306fdde03146102cf57806307a212be146102ed578063095ea7b3146103025780630da7caa3146103255780630ee0a113146103385780630f7715471461034f575b5f80fd5b6102d7610713565b6040516102e49190611f46565b60405180910390f35b6103006102fb366004611f91565b6107a3565b005b610315610310366004611fc3565b6107dc565b60405190151581526020016102e4565b610300610333366004611feb565b6107f5565b61034160125481565b6040519081526020016102e4565b61030061035d366004612024565b61085c565b6103006108ad565b610315610378366004612024565b600e6020525f908152604090205460ff1681565b600354610341565b6103156103a2366004612044565b6108f6565b6103156103b5366004612024565b600d6020525f908152604090205460ff1681565b604051601281526020016102e4565b6103156103e6366004611fc3565b610919565b6103006103f9366004611feb565b61093a565b61030061040c366004611feb565b610999565b61031561041f366004612024565b600c6020525f908152604090205460ff1681565b610300610441366004612024565b6109f8565b60175461031590610100900460ff1681565b61034160155481565b61030061046f366004611f91565b610ac3565b610300610482366004611feb565b610b3e565b610315610495366004612024565b600a6020525f908152604090205460ff1681565b6103416104b7366004612024565b610bae565b610300610bc8565b6103006104d236600461207d565b610bdb565b61034160135481565b6011546104f3906001600160a01b031681565b6040516001600160a01b0390911681526020016102e4565b610300610d88565b610300610521366004611f91565b610dd0565b5f546001600160a01b03166104f3565b6102d7610e3f565b61031561054c366004611fc3565b610e4e565b61031561055f366004611fc3565b610ecd565b610341610572366004611fc3565b600660209081525f928352604080842090915290825290205481565b61034161059c366004611fc3565b610eda565b610300610f46565b6010546104f3906001600160a01b031681565b6104f37f000000000000000000000000000000000000000000000000000000000000000081565b6103156105f1366004612024565b60096020525f908152604090205460ff1681565b61034160165481565b61034161061c366004612024565b60076020525f908152604090205481565b61065b61063b366004611f91565b60086020525f908152604090208054600182015460029092015490919083565b604080519384526020840192909252908201526060016102e4565b610300610684366004611f91565b611013565b6103416106973660046120ec565b611082565b6103006106aa36600461207d565b6110ac565b6103006106bd366004612024565b611224565b6103006106d0366004612024565b61129d565b600f546104f3906001600160a01b031681565b61034160145481565b6103156106ff366004612024565b600b6020525f908152604090205460ff1681565b6060600480546107229061211d565b80601f016020809104026020016040519081016040528092919081815260200182805461074e9061211d565b80156107995780601f1061077057610100808354040283529160200191610799565b820191905f5260205f20905b81548152906001019060200180831161077c57829003601f168201915b5050505050905090565b6107ab611363565b6a0422ca8b0a00a4250000008111156107d75760405163463cee1360e11b815260040160405180910390fd5b601355565b5f336107e98185856113bc565b60019150505b92915050565b6107fd611363565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f0d148a5c1704d9c0c8a1669e9b7ae29b729fa7fd357765342510c19a81a985d991015b60405180910390a25050565b610864611363565b601080546001600160a01b0319166001600160a01b0383169081179091556040517fe8664da1df8c2e0e7db672a6bc790622f4319232858030580d4ab1008328a46e905f90a250565b6108b5611363565b6017805461ff00191690556040515f81527fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a906020015b60405180910390a1565b5f336109038582856114df565b61090e858585611557565b506001949350505050565b5f336107e981858561092b8383611082565b6109359190612169565b6113bc565b610942611363565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f2633ad3ef534c4bddda523fae274ccb4e47bb324c2eca411a9377d01529e2ffe9101610850565b6109a1611363565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527ff40f85f17edc8eb36b286100bde23545ec4fac647f64dd7214a897af944fcb309101610850565b5f546001600160a01b03163314801590610a1d57506010546001600160a01b03163314155b15610a3b576040516355f8071960e11b815260040160405180910390fd5b6001600160a01b0381165f908152600b60209081526040808320805460ff19908116909155600c90925290912080549091169055610a8181610a7c81610bae565b6117be565b6040515f81526001600160a01b038216907f982106060efa4173730dde070a97e893c9c9e39554360d154c153077c2f74e4b906020015b60405180910390a250565b610acb611363565b610ae26127106a0422ca8b0a00a42500000061217c565b811015610b0257604051639eb596c360e01b815260040160405180910390fd5b60148190556040518181527fcb6a4e25e6070c228470cc0df60e64d9c48337dd39b32c47376eef2b366454b7906020015b60405180910390a150565b610b46611363565b6001600160a01b0382165f818152600d60209081526040808320805486151560ff199182168117909255600c84529382902080549094168117909355519182527f242e47ed17a9f432e4242bab4c34941ac33603481cb8319ed8dd8df34ae005119101610850565b6001600160a01b03165f9081526001602052604090205490565b610bd0611363565b610bd95f611a1a565b565b5f546001600160a01b03163314801590610c0057506010546001600160a01b03163314155b15610c1e576040516355f8071960e11b815260040160405180910390fd5b5f5b81811015610d47576001600b5f858585818110610c3f57610c3f61219b565b9050602002016020810190610c549190612024565b6001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f858585818110610ca057610ca061219b565b9050602002016020810190610cb59190612024565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055610d35838383818110610cf157610cf161219b565b9050602002016020810190610d069190612024565b610d30858585818110610d1b57610d1b61219b565b90506020020160208101906104b79190612024565b611a69565b80610d3f816121af565b915050610c20565b507fcfdde0e7cb67d776825b06fcc4412cc5586b5cd0396edf8c4ce6c2b238e29d8082826001604051610d7c939291906121c7565b60405180910390a15050565b610d90611363565b6017805461ff001916610100179055604051600181527fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a906020016108ec565b610dd8611363565b600a811115610dfa57604051630ac4c90160e11b815260040160405180910390fd5b6016819055604080518281525f60208201526001918101919091527f78cd946ea54440e5e0457ca142c8592fd7a7d34388c8a82328c57e39cc67f04d90606001610b33565b6060600580546107229061211d565b5f3381610e5b8286611082565b905083811015610ec05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61090e82868684036113bc565b5f336107e9818585611557565b5f601254821115610eec57505f6107ef565b6001600160a01b0383165f9081526007602052604090205480831115610f1d57610f1584610bae565b9150506107ef565b50506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b335f908152600e602052604090205460ff16610f75576040516355f8071960e11b815260040160405180910390fd5b601280549081905f610f86836121af565b90915550505f8181526008602081815260408084204260028083018290558351606081018552835481526001808501548288019081528287018a81526012548b529888529886902091518255975197810197909755945195909401949094555191825283917f3b5ce8b2d475067181f949f668899c93f26f0b25c5f8712ebca6b4b93d92989d9101610850565b61101b611363565b600a81111561103d57604051630ac4c90160e11b815260040160405180910390fd5b601581905560408051828152600160208201525f918101919091527f78cd946ea54440e5e0457ca142c8592fd7a7d34388c8a82328c57e39cc67f04d90606001610b33565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f546001600160a01b031633148015906110d157506010546001600160a01b03163314155b156110ef576040516355f8071960e11b815260040160405180910390fd5b5f5b818110156111f0575f600b5f85858581811061110f5761110f61219b565b90506020020160208101906111249190612024565b6001600160a01b0316815260208101919091526040015f908120805460ff191692151592909217909155600c818585858181106111635761116361219b565b90506020020160208101906111789190612024565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790556111de8383838181106111b4576111b461219b565b90506020020160208101906111c99190612024565b610a7c858585818110610d1b57610d1b61219b565b806111e8816121af565b9150506110f1565b507fcfdde0e7cb67d776825b06fcc4412cc5586b5cd0396edf8c4ce6c2b238e29d8082825f604051610d7c939291906121c7565b61122c611363565b6001600160a01b0381166112915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610eb7565b61129a81611a1a565b50565b5f546001600160a01b031633148015906112c257506010546001600160a01b03163314155b156112e0576040516355f8071960e11b815260040160405180910390fd5b6001600160a01b0381165f908152600b602090815260408083208054600160ff199182168117909255600c90935292208054909116909117905561132781610d3081610bae565b604051600181526001600160a01b038216907f982106060efa4173730dde070a97e893c9c9e39554360d154c153077c2f74e4b90602001610ab8565b5f546001600160a01b03163314610bd95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb7565b6001600160a01b03831661141e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610eb7565b6001600160a01b03821661147f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610eb7565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6114ea8484611082565b90505f19811461155157818110156115445760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610eb7565b61155184848484036113bc565b50505050565b6001600160a01b0383165f908152600b602052604090205460ff168061159457506001600160a01b0382165f908152600b602052604090205460ff165b156115b2576040516304a2e87360e21b815260040160405180910390fd5b6001600160a01b0383165f9081526009602052604081205460ff16806115ef57506001600160a01b0383165f9081526009602052604090205460ff165b601754909150610100900460ff16158015611608575080155b1561162657604051632735b01b60e11b815260040160405180910390fd5b6116308483611a69565b5f61163a30610bae565b60175490915060ff1615801561165257506013548110155b801561165c575081155b801561168057506001600160a01b0385165f908152600d602052604090205460ff16155b1561168d5761168d611c56565b81611730576001600160a01b0384165f908152600d602052604081205460ff16156116d3576064601654856116c2919061221d565b6116cc919061217c565b9050611710565b6001600160a01b0386165f908152600d602052604090205460ff161561171057606460155485611703919061221d565b61170d919061217c565b90505b801561172e57611721863083611d9d565b61172b8185612234565b93505b505b5f8361173b86610bae565b6117459190612169565b6001600160a01b0386165f908152600a602052604090205490915060ff16158015611771575060145481115b156117a1576040516331a30b9360e01b81526001600160a01b038616600482015260248101829052604401610eb7565b6117ab85856117be565b6117b6868686611d9d565b505050505050565b6012545f6117cb84610bae565b6001600160a01b0385165f8181526006602090815260408083208784528252808320546008835281842094845260078352818420889055600c909252909120549293509160ff161561189c576001600160a01b0386165f908152600660209081526040808320878452909152812055811561189757690a968163f0a57b400000821061186e5781815f015f8282546118639190612234565b909155506118979050565b683635c9adc5dea0000082106118975781816001015f8282546118919190612234565b90915550505b6117b6565b6118a68584612169565b6001600160a01b0387165f9081526006602090815260408083208884529091528120919091556118d68685612169565b9050683635c9adc5dea0000084101561193f57690a968163f0a57b40000081106119175780825f015f82825461190c9190612169565b90915550611a119050565b683635c9adc5dea00000811061193a5780826001015f82825461190c9190612169565b611a11565b683635c9adc5dea0000084101580156119615750690a968163f0a57b40000084105b156119d057690a968163f0a57b40000081106119945780825f015f8282546119899190612169565b909155506119bd9050565b683635c9adc5dea0000081106119bd5780826001015f8282546119b79190612169565b90915550505b83826001015f82825461190c9190612234565b690a968163f0a57b4000008410611a115780825f015f8282546119f39190612169565b90915550508154849083905f90611a0b908490612234565b90915550505b50505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6012546001600160a01b0383165f90815260066020908152604080832084845290915281205490611a9985610bae565b90505f611aa68583612234565b5f8581526008602090815260408083206001600160a01b038b16845260078352818420899055600c909252909120549192509060ff1615611b5b576001600160a01b0387165f908152600660209081526040808320888452909152812055831561193a57690a968163f0a57b4000008410611b385783815f015f828254611b2d9190612234565b9091555061193a9050565b683635c9adc5dea00000841061193a5783816001015f82825461190c9190612234565b6001600160a01b0387165f9081526006602090815260408083208884529091529020829055690a968163f0a57b4000008310611c0b5782815f015f828254611ba39190612234565b9091555050690a968163f0a57b4000008210611bd15781815f015f828254611bcb9190612169565b90915550505b690a968163f0a57b40000082108015611bf35750683635c9adc5dea000008210155b1561193a5781816001015f82825461190c9190612169565b683635c9adc5dea000008310611a115782816001015f828254611c2e9190612234565b9091555050683635c9adc5dea000008210611a115781816001015f828254611a0b9190612169565b6017805460ff191660011790555f611c6d30610bae565b90508015611d90576040805160028082526060820183525f9260208301908036833701905050905030815f81518110611ca857611ca861219b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110611cfc57611cfc61219b565b6001600160a01b039283166020918202929092010152600f5460405163791ac94760e01b815291169063791ac94790611d619085905f9086907f0000000000000000000000000000000000000000000000000000000000000000904290600401612247565b5f604051808303815f87803b158015611d78575f80fd5b505af1158015611d8a573d5f803e3d5ffd5b50505050505b506017805460ff19169055565b6001600160a01b038316611e015760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610eb7565b6001600160a01b038216611e635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610eb7565b6001600160a01b0383165f9081526001602052604090205481811015611eda5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610eb7565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611f399086815260200190565b60405180910390a3611551565b5f6020808352835180828501525f5b81811015611f7157858101830151858201604001528201611f55565b505f604082860101526040601f19601f8301168501019250505092915050565b5f60208284031215611fa1575f80fd5b5035919050565b80356001600160a01b0381168114611fbe575f80fd5b919050565b5f8060408385031215611fd4575f80fd5b611fdd83611fa8565b946020939093013593505050565b5f8060408385031215611ffc575f80fd5b61200583611fa8565b915060208301358015158114612019575f80fd5b809150509250929050565b5f60208284031215612034575f80fd5b61203d82611fa8565b9392505050565b5f805f60608486031215612056575f80fd5b61205f84611fa8565b925061206d60208501611fa8565b9150604084013590509250925092565b5f806020838503121561208e575f80fd5b823567ffffffffffffffff808211156120a5575f80fd5b818501915085601f8301126120b8575f80fd5b8135818111156120c6575f80fd5b8660208260051b85010111156120da575f80fd5b60209290920196919550909350505050565b5f80604083850312156120fd575f80fd5b61210683611fa8565b915061211460208401611fa8565b90509250929050565b600181811c9082168061213157607f821691505b60208210810361214f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156107ef576107ef612155565b5f8261219657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f600182016121c0576121c0612155565b5060010190565b604080825281018390525f8460608301825b86811015612207576001600160a01b036121f284611fa8565b168252602092830192909101906001016121d9565b5080925050508215156020830152949350505050565b80820281158282048414176107ef576107ef612155565b818103818111156107ef576107ef612155565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156122955784516001600160a01b031683529383019391830191600101612270565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206013a253850af0bc5f0413345c258f0b15cbd1b877c8275d5fa7aece0257a4ff64736f6c63430008150033000000000000000000000000a3fd551884d62d6fd6d95d4900beff89cbe45a8d000000000000000000000000d6f758ba6c169f50a6a6eff1e74559b134647b51

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106102cb575f3560e01c806377d1440d1161017b578063c2cd4a07116100e4578063dd62ed3e1161009e578063f3290d7511610079578063f3290d75146106c2578063f887ea40146106d5578063f8b45b05146106e8578063fe575a87146106f1575f80fd5b8063dd62ed3e14610689578063e42a206e1461069c578063f2fde38b146106af575f80fd5b8063c2cd4a07146105bc578063cb4ca631146105e3578063cc1776d314610605578063cd9a0d461461060e578063d6565a2d1461062d578063dc1052e214610676575f80fd5b8063a457c2d711610135578063a457c2d71461053e578063a9059cbb14610551578063b16b04a714610564578063b20161db1461058e578063b3d3d37e146105a1578063bd102430146105a9575f80fd5b806377d1440d146104d757806385af30c5146104e05780638a8c523c1461050b5780638cd09d50146105135780638da5cb5b1461052657806395d89b4114610536575f80fd5b806339509351116102375780634f7041a5116101f15780636dd3d39f116101cc5780636dd3d39f1461048757806370a08231146104a9578063715018a6146104bc57806377a54eb8146104c4575f80fd5b80634f7041a5146104585780635d0044ca1461046157806362771d3314610474575f80fd5b806339509351146103d857806339fb86c5146103eb57806341220104146103fe5780634355855a1461041157806345e34949146104335780634ada218b14610446575f80fd5b80631031e36e116102885780631031e36e1461036257806315c9aca11461036a57806318160ddd1461038c57806323b872dd146103945780632f7c5980146103a7578063313ce567146103c9575f80fd5b806306fdde03146102cf57806307a212be146102ed578063095ea7b3146103025780630da7caa3146103255780630ee0a113146103385780630f7715471461034f575b5f80fd5b6102d7610713565b6040516102e49190611f46565b60405180910390f35b6103006102fb366004611f91565b6107a3565b005b610315610310366004611fc3565b6107dc565b60405190151581526020016102e4565b610300610333366004611feb565b6107f5565b61034160125481565b6040519081526020016102e4565b61030061035d366004612024565b61085c565b6103006108ad565b610315610378366004612024565b600e6020525f908152604090205460ff1681565b600354610341565b6103156103a2366004612044565b6108f6565b6103156103b5366004612024565b600d6020525f908152604090205460ff1681565b604051601281526020016102e4565b6103156103e6366004611fc3565b610919565b6103006103f9366004611feb565b61093a565b61030061040c366004611feb565b610999565b61031561041f366004612024565b600c6020525f908152604090205460ff1681565b610300610441366004612024565b6109f8565b60175461031590610100900460ff1681565b61034160155481565b61030061046f366004611f91565b610ac3565b610300610482366004611feb565b610b3e565b610315610495366004612024565b600a6020525f908152604090205460ff1681565b6103416104b7366004612024565b610bae565b610300610bc8565b6103006104d236600461207d565b610bdb565b61034160135481565b6011546104f3906001600160a01b031681565b6040516001600160a01b0390911681526020016102e4565b610300610d88565b610300610521366004611f91565b610dd0565b5f546001600160a01b03166104f3565b6102d7610e3f565b61031561054c366004611fc3565b610e4e565b61031561055f366004611fc3565b610ecd565b610341610572366004611fc3565b600660209081525f928352604080842090915290825290205481565b61034161059c366004611fc3565b610eda565b610300610f46565b6010546104f3906001600160a01b031681565b6104f37f000000000000000000000000a3fd551884d62d6fd6d95d4900beff89cbe45a8d81565b6103156105f1366004612024565b60096020525f908152604090205460ff1681565b61034160165481565b61034161061c366004612024565b60076020525f908152604090205481565b61065b61063b366004611f91565b60086020525f908152604090208054600182015460029092015490919083565b604080519384526020840192909252908201526060016102e4565b610300610684366004611f91565b611013565b6103416106973660046120ec565b611082565b6103006106aa36600461207d565b6110ac565b6103006106bd366004612024565b611224565b6103006106d0366004612024565b61129d565b600f546104f3906001600160a01b031681565b61034160145481565b6103156106ff366004612024565b600b6020525f908152604090205460ff1681565b6060600480546107229061211d565b80601f016020809104026020016040519081016040528092919081815260200182805461074e9061211d565b80156107995780601f1061077057610100808354040283529160200191610799565b820191905f5260205f20905b81548152906001019060200180831161077c57829003601f168201915b5050505050905090565b6107ab611363565b6a0422ca8b0a00a4250000008111156107d75760405163463cee1360e11b815260040160405180910390fd5b601355565b5f336107e98185856113bc565b60019150505b92915050565b6107fd611363565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f0d148a5c1704d9c0c8a1669e9b7ae29b729fa7fd357765342510c19a81a985d991015b60405180910390a25050565b610864611363565b601080546001600160a01b0319166001600160a01b0383169081179091556040517fe8664da1df8c2e0e7db672a6bc790622f4319232858030580d4ab1008328a46e905f90a250565b6108b5611363565b6017805461ff00191690556040515f81527fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a906020015b60405180910390a1565b5f336109038582856114df565b61090e858585611557565b506001949350505050565b5f336107e981858561092b8383611082565b6109359190612169565b6113bc565b610942611363565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f2633ad3ef534c4bddda523fae274ccb4e47bb324c2eca411a9377d01529e2ffe9101610850565b6109a1611363565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527ff40f85f17edc8eb36b286100bde23545ec4fac647f64dd7214a897af944fcb309101610850565b5f546001600160a01b03163314801590610a1d57506010546001600160a01b03163314155b15610a3b576040516355f8071960e11b815260040160405180910390fd5b6001600160a01b0381165f908152600b60209081526040808320805460ff19908116909155600c90925290912080549091169055610a8181610a7c81610bae565b6117be565b6040515f81526001600160a01b038216907f982106060efa4173730dde070a97e893c9c9e39554360d154c153077c2f74e4b906020015b60405180910390a250565b610acb611363565b610ae26127106a0422ca8b0a00a42500000061217c565b811015610b0257604051639eb596c360e01b815260040160405180910390fd5b60148190556040518181527fcb6a4e25e6070c228470cc0df60e64d9c48337dd39b32c47376eef2b366454b7906020015b60405180910390a150565b610b46611363565b6001600160a01b0382165f818152600d60209081526040808320805486151560ff199182168117909255600c84529382902080549094168117909355519182527f242e47ed17a9f432e4242bab4c34941ac33603481cb8319ed8dd8df34ae005119101610850565b6001600160a01b03165f9081526001602052604090205490565b610bd0611363565b610bd95f611a1a565b565b5f546001600160a01b03163314801590610c0057506010546001600160a01b03163314155b15610c1e576040516355f8071960e11b815260040160405180910390fd5b5f5b81811015610d47576001600b5f858585818110610c3f57610c3f61219b565b9050602002016020810190610c549190612024565b6001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f858585818110610ca057610ca061219b565b9050602002016020810190610cb59190612024565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055610d35838383818110610cf157610cf161219b565b9050602002016020810190610d069190612024565b610d30858585818110610d1b57610d1b61219b565b90506020020160208101906104b79190612024565b611a69565b80610d3f816121af565b915050610c20565b507fcfdde0e7cb67d776825b06fcc4412cc5586b5cd0396edf8c4ce6c2b238e29d8082826001604051610d7c939291906121c7565b60405180910390a15050565b610d90611363565b6017805461ff001916610100179055604051600181527fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a906020016108ec565b610dd8611363565b600a811115610dfa57604051630ac4c90160e11b815260040160405180910390fd5b6016819055604080518281525f60208201526001918101919091527f78cd946ea54440e5e0457ca142c8592fd7a7d34388c8a82328c57e39cc67f04d90606001610b33565b6060600580546107229061211d565b5f3381610e5b8286611082565b905083811015610ec05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61090e82868684036113bc565b5f336107e9818585611557565b5f601254821115610eec57505f6107ef565b6001600160a01b0383165f9081526007602052604090205480831115610f1d57610f1584610bae565b9150506107ef565b50506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b335f908152600e602052604090205460ff16610f75576040516355f8071960e11b815260040160405180910390fd5b601280549081905f610f86836121af565b90915550505f8181526008602081815260408084204260028083018290558351606081018552835481526001808501548288019081528287018a81526012548b529888529886902091518255975197810197909755945195909401949094555191825283917f3b5ce8b2d475067181f949f668899c93f26f0b25c5f8712ebca6b4b93d92989d9101610850565b61101b611363565b600a81111561103d57604051630ac4c90160e11b815260040160405180910390fd5b601581905560408051828152600160208201525f918101919091527f78cd946ea54440e5e0457ca142c8592fd7a7d34388c8a82328c57e39cc67f04d90606001610b33565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f546001600160a01b031633148015906110d157506010546001600160a01b03163314155b156110ef576040516355f8071960e11b815260040160405180910390fd5b5f5b818110156111f0575f600b5f85858581811061110f5761110f61219b565b90506020020160208101906111249190612024565b6001600160a01b0316815260208101919091526040015f908120805460ff191692151592909217909155600c818585858181106111635761116361219b565b90506020020160208101906111789190612024565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790556111de8383838181106111b4576111b461219b565b90506020020160208101906111c99190612024565b610a7c858585818110610d1b57610d1b61219b565b806111e8816121af565b9150506110f1565b507fcfdde0e7cb67d776825b06fcc4412cc5586b5cd0396edf8c4ce6c2b238e29d8082825f604051610d7c939291906121c7565b61122c611363565b6001600160a01b0381166112915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610eb7565b61129a81611a1a565b50565b5f546001600160a01b031633148015906112c257506010546001600160a01b03163314155b156112e0576040516355f8071960e11b815260040160405180910390fd5b6001600160a01b0381165f908152600b602090815260408083208054600160ff199182168117909255600c90935292208054909116909117905561132781610d3081610bae565b604051600181526001600160a01b038216907f982106060efa4173730dde070a97e893c9c9e39554360d154c153077c2f74e4b90602001610ab8565b5f546001600160a01b03163314610bd95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb7565b6001600160a01b03831661141e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610eb7565b6001600160a01b03821661147f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610eb7565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6114ea8484611082565b90505f19811461155157818110156115445760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610eb7565b61155184848484036113bc565b50505050565b6001600160a01b0383165f908152600b602052604090205460ff168061159457506001600160a01b0382165f908152600b602052604090205460ff165b156115b2576040516304a2e87360e21b815260040160405180910390fd5b6001600160a01b0383165f9081526009602052604081205460ff16806115ef57506001600160a01b0383165f9081526009602052604090205460ff165b601754909150610100900460ff16158015611608575080155b1561162657604051632735b01b60e11b815260040160405180910390fd5b6116308483611a69565b5f61163a30610bae565b60175490915060ff1615801561165257506013548110155b801561165c575081155b801561168057506001600160a01b0385165f908152600d602052604090205460ff16155b1561168d5761168d611c56565b81611730576001600160a01b0384165f908152600d602052604081205460ff16156116d3576064601654856116c2919061221d565b6116cc919061217c565b9050611710565b6001600160a01b0386165f908152600d602052604090205460ff161561171057606460155485611703919061221d565b61170d919061217c565b90505b801561172e57611721863083611d9d565b61172b8185612234565b93505b505b5f8361173b86610bae565b6117459190612169565b6001600160a01b0386165f908152600a602052604090205490915060ff16158015611771575060145481115b156117a1576040516331a30b9360e01b81526001600160a01b038616600482015260248101829052604401610eb7565b6117ab85856117be565b6117b6868686611d9d565b505050505050565b6012545f6117cb84610bae565b6001600160a01b0385165f8181526006602090815260408083208784528252808320546008835281842094845260078352818420889055600c909252909120549293509160ff161561189c576001600160a01b0386165f908152600660209081526040808320878452909152812055811561189757690a968163f0a57b400000821061186e5781815f015f8282546118639190612234565b909155506118979050565b683635c9adc5dea0000082106118975781816001015f8282546118919190612234565b90915550505b6117b6565b6118a68584612169565b6001600160a01b0387165f9081526006602090815260408083208884529091528120919091556118d68685612169565b9050683635c9adc5dea0000084101561193f57690a968163f0a57b40000081106119175780825f015f82825461190c9190612169565b90915550611a119050565b683635c9adc5dea00000811061193a5780826001015f82825461190c9190612169565b611a11565b683635c9adc5dea0000084101580156119615750690a968163f0a57b40000084105b156119d057690a968163f0a57b40000081106119945780825f015f8282546119899190612169565b909155506119bd9050565b683635c9adc5dea0000081106119bd5780826001015f8282546119b79190612169565b90915550505b83826001015f82825461190c9190612234565b690a968163f0a57b4000008410611a115780825f015f8282546119f39190612169565b90915550508154849083905f90611a0b908490612234565b90915550505b50505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6012546001600160a01b0383165f90815260066020908152604080832084845290915281205490611a9985610bae565b90505f611aa68583612234565b5f8581526008602090815260408083206001600160a01b038b16845260078352818420899055600c909252909120549192509060ff1615611b5b576001600160a01b0387165f908152600660209081526040808320888452909152812055831561193a57690a968163f0a57b4000008410611b385783815f015f828254611b2d9190612234565b9091555061193a9050565b683635c9adc5dea00000841061193a5783816001015f82825461190c9190612234565b6001600160a01b0387165f9081526006602090815260408083208884529091529020829055690a968163f0a57b4000008310611c0b5782815f015f828254611ba39190612234565b9091555050690a968163f0a57b4000008210611bd15781815f015f828254611bcb9190612169565b90915550505b690a968163f0a57b40000082108015611bf35750683635c9adc5dea000008210155b1561193a5781816001015f82825461190c9190612169565b683635c9adc5dea000008310611a115782816001015f828254611c2e9190612234565b9091555050683635c9adc5dea000008210611a115781816001015f828254611a0b9190612169565b6017805460ff191660011790555f611c6d30610bae565b90508015611d90576040805160028082526060820183525f9260208301908036833701905050905030815f81518110611ca857611ca861219b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110611cfc57611cfc61219b565b6001600160a01b039283166020918202929092010152600f5460405163791ac94760e01b815291169063791ac94790611d619085905f9086907f000000000000000000000000a3fd551884d62d6fd6d95d4900beff89cbe45a8d904290600401612247565b5f604051808303815f87803b158015611d78575f80fd5b505af1158015611d8a573d5f803e3d5ffd5b50505050505b506017805460ff19169055565b6001600160a01b038316611e015760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610eb7565b6001600160a01b038216611e635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610eb7565b6001600160a01b0383165f9081526001602052604090205481811015611eda5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610eb7565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611f399086815260200190565b60405180910390a3611551565b5f6020808352835180828501525f5b81811015611f7157858101830151858201604001528201611f55565b505f604082860101526040601f19601f8301168501019250505092915050565b5f60208284031215611fa1575f80fd5b5035919050565b80356001600160a01b0381168114611fbe575f80fd5b919050565b5f8060408385031215611fd4575f80fd5b611fdd83611fa8565b946020939093013593505050565b5f8060408385031215611ffc575f80fd5b61200583611fa8565b915060208301358015158114612019575f80fd5b809150509250929050565b5f60208284031215612034575f80fd5b61203d82611fa8565b9392505050565b5f805f60608486031215612056575f80fd5b61205f84611fa8565b925061206d60208501611fa8565b9150604084013590509250925092565b5f806020838503121561208e575f80fd5b823567ffffffffffffffff808211156120a5575f80fd5b818501915085601f8301126120b8575f80fd5b8135818111156120c6575f80fd5b8660208260051b85010111156120da575f80fd5b60209290920196919550909350505050565b5f80604083850312156120fd575f80fd5b61210683611fa8565b915061211460208401611fa8565b90509250929050565b600181811c9082168061213157607f821691505b60208210810361214f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156107ef576107ef612155565b5f8261219657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f600182016121c0576121c0612155565b5060010190565b604080825281018390525f8460608301825b86811015612207576001600160a01b036121f284611fa8565b168252602092830192909101906001016121d9565b5080925050508215156020830152949350505050565b80820281158282048414176107ef576107ef612155565b818103818111156107ef576107ef612155565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156122955784516001600160a01b031683529383019391830191600101612270565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206013a253850af0bc5f0413345c258f0b15cbd1b877c8275d5fa7aece0257a4ff64736f6c63430008150033

Deployed Bytecode Sourcemap

28840:19944:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6308:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38076:185;;;;;;:::i;:::-;;:::i;:::-;;8668:201;;;;;;:::i;:::-;;:::i;:::-;;;1354:14:1;;1347:22;1329:41;;1317:2;1302:18;8668:201:0;1189:187:1;39416:247:0;;;;;;:::i;:::-;;:::i;30631:29::-;;;;;;;;;1879:25:1;;;1867:2;1852:18;30631:29:0;1733:177:1;38992:157:0;;;;;;:::i;:::-;;:::i;38746:121::-;;;:::i;30115:65::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;7437:108;7525:12;;7437:108;;9449:261;;;;;;:::i;:::-;;:::i;30055:53::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;7279:93;;;7362:2;2581:36:1;;2569:2;2554:18;7279:93:0;2439:184:1;10119:238:0;;;;;;:::i;:::-;;:::i;34377:212::-;;;;;;:::i;:::-;;:::i;34831:225::-;;;;;;:::i;:::-;;:::i;29959:89::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;36104:266;;;;;;:::i;:::-;;:::i;30827:34::-;;;;;;;;;;;;30728:22;;;;;;38269:226;;;;;;:::i;:::-;;:::i;37071:272::-;;;;;;:::i;:::-;;:::i;29789:86::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;7608:127;;;;;;:::i;:::-;;:::i;19091:103::-;;;:::i;35584:384::-;;;;;;:::i;:::-;;:::i;30667:24::-;;;;;;30512:23;;;;;-1:-1:-1;;;;;30512:23:0;;;;;;-1:-1:-1;;;;;3412:32:1;;;3394:51;;3382:2;3367:18;30512:23:0;3248:203:1;38560:120:0;;;:::i;40232:198::-;;;;;;:::i;:::-;;:::i;18450:87::-;18496:7;18523:6;-1:-1:-1;;;;;18523:6:0;18450:87;;6527:104;;;:::i;10860:436::-;;;;;;:::i;:::-;;:::i;7941:193::-;;;;;;:::i;:::-;;:::i;29482:89::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;48036:516;;;;;;:::i;:::-;;:::i;37427:529::-;;;:::i;30479:26::-;;;;;-1:-1:-1;;;;;30479:26:0;;;30579:45;;;;;29711:71;;;;;;:::i;:::-;;;;;;;;;;;;;;;;30757:23;;;;;;29578:66;;;;;;:::i;:::-;;;;;;;;;;;;;;29651:53;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3882:25:1;;;3938:2;3923:18;;3916:34;;;;3966:18;;;3959:34;3870:2;3855:18;29651:53:0;3680:319:1;39849:192:0;;;;;;:::i;:::-;;:::i;8197:151::-;;;;;;:::i;:::-;;:::i;36509:389::-;;;;;;:::i;:::-;;:::i;19349:201::-;;;;;;:::i;:::-;;:::i;35187:261::-;;;;;;:::i;:::-;;:::i;30438:32::-;;;;;-1:-1:-1;;;;;30438:32:0;;;30700:21;;;;;;29882:70;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6308:100;6362:13;6395:5;6388:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6308:100;:::o;38076:185::-;18336:13;:11;:13::i;:::-;30224:15:::1;38155:13;:26;38151:63;;;38190:24;;-1:-1:-1::0;;;38190:24:0::1;;;;;;;;;;;38151:63;38225:12;:28:::0;38076:185::o;8668:201::-;8751:4;4194:10;8807:32;4194:10;8823:7;8832:6;8807:8;:32::i;:::-;8857:4;8850:11;;;8668:201;;;;;:::o;39416:247::-;18336:13;:11;:13::i;:::-;-1:-1:-1;;;;;39545:27:0;::::1;;::::0;;;:13:::1;:27;::::0;;;;;;;;:44;;-1:-1:-1;;39545:44:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39605:50;;1329:41:1;;;39605:50:0::1;::::0;1302:18:1;39605:50:0::1;;;;;;;;39416:247:::0;;:::o;38992:157::-;18336:13;:11;:13::i;:::-;39068:11:::1;:26:::0;;-1:-1:-1;;;;;;39068:26:0::1;-1:-1:-1::0;;;;;39068:26:0;::::1;::::0;;::::1;::::0;;;39110:31:::1;::::0;::::1;::::0;-1:-1:-1;;39110:31:0::1;38992:157:::0;:::o;38746:121::-;18336:13;:11;:13::i;:::-;38800:14:::1;:22:::0;;-1:-1:-1;;38800:22:0::1;::::0;;38838:21:::1;::::0;-1:-1:-1;1329:41:1;;38838:21:0::1;::::0;1317:2:1;1302:18;38838:21:0::1;;;;;;;;38746:121::o:0;9449:261::-;9546:4;4194:10;9604:38;9620:4;4194:10;9635:6;9604:15;:38::i;:::-;9653:27;9663:4;9669:2;9673:6;9653:9;:27::i;:::-;-1:-1:-1;9698:4:0;;9449:261;-1:-1:-1;;;;9449:261:0:o;10119:238::-;10207:4;4194:10;10263:64;4194:10;10279:7;10316:10;10288:25;4194:10;10279:7;10288:9;:25::i;:::-;:38;;;;:::i;:::-;10263:8;:64::i;34377:212::-;18336:13;:11;:13::i;:::-;-1:-1:-1;;;;;34490:24:0;::::1;;::::0;;;:17:::1;:24;::::0;;;;;;;;:36;;-1:-1:-1;;34490:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34542:39;;1329:41:1;;;34542:39:0::1;::::0;1302:18:1;34542:39:0::1;1189:187:1::0;34831:225:0;18336:13;:11;:13::i;:::-;-1:-1:-1;;;;;34951:30:0;::::1;;::::0;;;:23:::1;:30;::::0;;;;;;;;:42;;-1:-1:-1;;34951:42:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35009:39;;1329:41:1;;;35009:39:0::1;::::0;1302:18:1;35009:39:0::1;1189:187:1::0;36104:266:0;18496:7;18523:6;-1:-1:-1;;;;;18523:6:0;32021:10;:21;;;;:50;;-1:-1:-1;32060:11:0;;-1:-1:-1;;;;;32060:11:0;32046:10;:25;;32021:50;32017:94;;;32093:18;;-1:-1:-1;;;32093:18:0;;;;;;;;;;;32017:94;-1:-1:-1;;;;;36186:20:0;::::1;36209:5;36186:20:::0;;;:13:::1;:20;::::0;;;;;;;:28;;-1:-1:-1;;36186:28:0;;::::1;::::0;;;36225:16:::1;:23:::0;;;;;;:31;;;;::::1;::::0;;36267:44:::1;36200:5:::0;36294:16:::1;36200:5:::0;36294:9:::1;:16::i;:::-;36267:19;:44::i;:::-;36327:35;::::0;36356:5:::1;1329:41:1::0;;-1:-1:-1;;;;;36327:35:0;::::1;::::0;::::1;::::0;1317:2:1;1302:18;36327:35:0::1;;;;;;;;36104:266:::0;:::o;38269:226::-;18336:13;:11;:13::i;:::-;38355:19:::1;38368:6;30224:15;38355:19;:::i;:::-;38342:10;:32;38338:69;;;38383:24;;-1:-1:-1::0;;;38383:24:0::1;;;;;;;;;;;38338:69;38418:9;:22:::0;;;38456:31:::1;::::0;1879:25:1;;;38456:31:0::1;::::0;1867:2:1;1852:18;38456:31:0::1;;;;;;;;38269:226:::0;:::o;37071:272::-;18336:13;:11;:13::i;:::-;-1:-1:-1;;;;;37187:23:0;::::1;;::::0;;;:11:::1;:23;::::0;;;;;;;:38;;;::::1;;-1:-1:-1::0;;37187:38:0;;::::1;::::0;::::1;::::0;;;37236:16:::1;:28:::0;;;;;;:43;;;;::::1;::::0;::::1;::::0;;;37295:40;1329:41:1;;;37295:40:0::1;::::0;1302:18:1;37295:40:0::1;1189:187:1::0;7608:127:0;-1:-1:-1;;;;;7709:18:0;7682:7;7709:18;;;:9;:18;;;;;;;7608:127::o;19091:103::-;18336:13;:11;:13::i;:::-;19156:30:::1;19183:1;19156:18;:30::i;:::-;19091:103::o:0;35584:384::-;18496:7;18523:6;-1:-1:-1;;;;;18523:6:0;32021:10;:21;;;;:50;;-1:-1:-1;32060:11:0;;-1:-1:-1;;;;;32060:11:0;32046:10;:25;;32021:50;32017:94;;;32093:18;;-1:-1:-1;;;32093:18:0;;;;;;;;;;;32017:94;35699:6:::1;35694:215;35711:17:::0;;::::1;35694:215;;;35777:4;35750:13;:24;35764:6;;35771:1;35764:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35750:24:0::1;-1:-1:-1::0;;;;;35750:24:0::1;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;35826:4;35796:16;:27;35813:6;;35820:1;35813:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35796:27:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35796:27:0;:34;;-1:-1:-1;;35796:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35845:52:::1;35865:6:::0;;35872:1;35865:9;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;35876:20;35886:6;;35893:1;35886:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;35876:20::-;35845:19;:52::i;:::-;35730:3:::0;::::1;::::0;::::1;:::i;:::-;;;;35694:215;;;;35924:36;35947:6;;35955:4;35924:36;;;;;;;;:::i;:::-;;;;;;;;35584:384:::0;;:::o;38560:120::-;18336:13;:11;:13::i;:::-;38615:14:::1;:21:::0;;-1:-1:-1;;38615:21:0::1;;;::::0;;38652:20:::1;::::0;-1:-1:-1;1329:41:1;;38652:20:0::1;::::0;1317:2:1;1302:18;38652:20:0::1;1189:187:1::0;40232:198:0;18336:13;:11;:13::i;:::-;40312:2:::1;40301:8;:13;40297:50;;;40323:24;;-1:-1:-1::0;;;40323:24:0::1;;;;;;;;;;;40297:50;40358:7;:18:::0;;;40392:30:::1;::::0;;6565:25:1;;;40410:5:0::1;6621:2:1::0;6606:18;;6599:50;40417:4:0::1;6665:18:1::0;;;6658:50;;;;40392:30:0::1;::::0;6553:2:1;6538:18;40392:30:0::1;6375:339:1::0;6527:104:0;6583:13;6616:7;6609:14;;;;;:::i;10860:436::-;10953:4;4194:10;10953:4;11036:25;4194:10;11053:7;11036:9;:25::i;:::-;11009:52;;11100:15;11080:16;:35;;11072:85;;;;-1:-1:-1;;;11072:85:0;;6921:2:1;11072:85:0;;;6903:21:1;6960:2;6940:18;;;6933:30;6999:34;6979:18;;;6972:62;-1:-1:-1;;;7050:18:1;;;7043:35;7095:19;;11072:85:0;;;;;;;;;11193:60;11202:5;11209:7;11237:15;11218:16;:34;11193:8;:60::i;7941:193::-;8020:4;4194:10;8076:28;4194:10;8093:2;8097:6;8076:9;:28::i;48036:516::-;48138:4;48223:13;;48214:6;:22;48210:36;;;-1:-1:-1;48245:1:0;48238:8;;48210:36;-1:-1:-1;;;;;48277:20:0;;48257:17;48277:20;;;:14;:20;;;;;;48410:21;;;48406:49;;;48440:15;48450:4;48440:9;:15::i;:::-;48433:22;;;;;48406:49;-1:-1:-1;;;;;;;48518:18:0;;;;;;;;:12;:18;;;;;;;;:26;;;;;;;;;48036:516::o;37427:529::-;32196:10;32182:25;;;;:13;:25;;;;;;;;32177:57;;32216:18;;-1:-1:-1;;;32216:18:0;;;;;;;;;;;32177:57;37506:13:::1;::::0;;;;;37487:16:::1;37530:15;37506:13:::0;37530:15:::1;:::i;:::-;::::0;;;-1:-1:-1;;37558:25:0::1;37586:22:::0;;;:9:::1;:22;::::0;;;;;;;37649:15:::1;37619:27;::::0;;::::1;:45:::0;;;37738:149;;::::1;::::0;::::1;::::0;;37778:15;;37738:149;;37820:15:::1;::::0;;::::1;::::0;37738:149;;::::1;::::0;;;;;;;;;37721:13:::1;::::0;37711:24;;;;;;;;;:176;;;;;;;;::::1;::::0;;;;;;;;;::::1;::::0;;;;37905:43;1879:25:1;;;37586:22:0;;37905:43:::1;::::0;1852:18:1;37905:43:0::1;1733:177:1::0;39849:192:0;18336:13;:11;:13::i;:::-;39926:2:::1;39916:7;:12;39912:49;;;39937:24;;-1:-1:-1::0;;;39937:24:0::1;;;;;;;;;;;39912:49;39972:6;:16:::0;;;40004:29:::1;::::0;;6565:25:1;;;40021:4:0::1;6621:2:1::0;6606:18;;6599:50;40027:5:0::1;6665:18:1::0;;;6658:50;;;;40004:29:0::1;::::0;6553:2:1;6538:18;40004:29:0::1;6375:339:1::0;8197:151:0;-1:-1:-1;;;;;8313:18:0;;;8286:7;8313:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8197:151::o;36509:389::-;18496:7;18523:6;-1:-1:-1;;;;;18523:6:0;32021:10;:21;;;;:50;;-1:-1:-1;32060:11:0;;-1:-1:-1;;;;;32060:11:0;32046:10;:25;;32021:50;32017:94;;;32093:18;;-1:-1:-1;;;32093:18:0;;;;;;;;;;;32017:94;36626:6:::1;36621:217;36638:17:::0;;::::1;36621:217;;;36704:5;36677:13;:24;36691:6;;36698:1;36691:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36677:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;36677:24:0;;;:32;;-1:-1:-1;;36677:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;36724:16:::1;-1:-1:-1::0;36741:6:0;;36748:1;36741:9;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36724:27:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;36724:27:0;:35;;-1:-1:-1;;36724:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36774:52:::1;36794:6:::0;;36801:1;36794:9;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;36805:20;36815:6;;36822:1;36815:9;;;;;;;:::i;36774:52::-;36657:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36621:217;;;;36853:37;36876:6;;36884:5;36853:37;;;;;;;;:::i;19349:201::-:0;18336:13;:11;:13::i;:::-;-1:-1:-1;;;;;19438:22:0;::::1;19430:73;;;::::0;-1:-1:-1;;;19430:73:0;;7327:2:1;19430:73:0::1;::::0;::::1;7309:21:1::0;7366:2;7346:18;;;7339:30;7405:34;7385:18;;;7378:62;-1:-1:-1;;;7456:18:1;;;7449:36;7502:19;;19430:73:0::1;7125:402:1::0;19430:73:0::1;19514:28;19533:8;19514:18;:28::i;:::-;19349:201:::0;:::o;35187:261::-;18496:7;18523:6;-1:-1:-1;;;;;18523:6:0;32021:10;:21;;;;:50;;-1:-1:-1;32060:11:0;;-1:-1:-1;;;;;32060:11:0;32046:10;:25;;32021:50;32017:94;;;32093:18;;-1:-1:-1;;;32093:18:0;;;;;;;;;;;32017:94;-1:-1:-1;;;;;35267:20:0;::::1;;::::0;;;:13:::1;:20;::::0;;;;;;;:27;;35290:4:::1;-1:-1:-1::0;;35267:27:0;;::::1;::::0;::::1;::::0;;;35305:16:::1;:23:::0;;;;;:30;;;;::::1;::::0;;::::1;::::0;;35346:44:::1;35267:20:::0;35373:16:::1;35267:20:::0;35373:9:::1;:16::i;35346:44::-;35406:34;::::0;35435:4:::1;1329:41:1::0;;-1:-1:-1;;;;;35406:34:0;::::1;::::0;::::1;::::0;1317:2:1;1302:18;35406:34:0::1;1189:187:1::0;18615:132:0;18496:7;18523:6;-1:-1:-1;;;;;18523:6:0;4194:10;18679:23;18671:68;;;;-1:-1:-1;;;18671:68:0;;7734:2:1;18671:68:0;;;7716:21:1;;;7753:18;;;7746:30;7812:34;7792:18;;;7785:62;7864:18;;18671:68:0;7532:356:1;14853:346:0;-1:-1:-1;;;;;14955:19:0;;14947:68;;;;-1:-1:-1;;;14947:68:0;;8095:2:1;14947:68:0;;;8077:21:1;8134:2;8114:18;;;8107:30;8173:34;8153:18;;;8146:62;-1:-1:-1;;;8224:18:1;;;8217:34;8268:19;;14947:68:0;7893:400:1;14947:68:0;-1:-1:-1;;;;;15034:21:0;;15026:68;;;;-1:-1:-1;;;15026:68:0;;8500:2:1;15026:68:0;;;8482:21:1;8539:2;8519:18;;;8512:30;8578:34;8558:18;;;8551:62;-1:-1:-1;;;8629:18:1;;;8622:32;8671:19;;15026:68:0;8298:398:1;15026:68:0;-1:-1:-1;;;;;15107:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15159:32;;1879:25:1;;;15159:32:0;;1852:18:1;15159:32:0;;;;;;;14853:346;;;:::o;15490:419::-;15591:24;15618:25;15628:5;15635:7;15618:9;:25::i;:::-;15591:52;;-1:-1:-1;;15658:16:0;:37;15654:248;;15740:6;15720:16;:26;;15712:68;;;;-1:-1:-1;;;15712:68:0;;8903:2:1;15712:68:0;;;8885:21:1;8942:2;8922:18;;;8915:30;8981:31;8961:18;;;8954:59;9030:18;;15712:68:0;8701:353:1;15712:68:0;15824:51;15833:5;15840:7;15868:6;15849:16;:25;15824:8;:51::i;:::-;15580:329;15490:419;;;:::o;40928:1674::-;-1:-1:-1;;;;;41053:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;41076:17:0;;;;;;:13;:17;;;;;;;;41053:40;41049:85;;;41115:19;;-1:-1:-1;;;41115:19:0;;;;;;;;;;;41049:85;-1:-1:-1;;;;;41167:23:0;;41147:17;41167:23;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;41194:21:0;;;;;;:17;:21;;;;;;;;41167:48;41233:14;;41147:68;;-1:-1:-1;41233:14:0;;;;;41232:15;:32;;;;;41252:12;41251:13;41232:32;41228:97;;;41288:25;;-1:-1:-1;;;41288:25:0;;;;;;;;;;;41228:97;41337:33;41357:4;41363:6;41337:19;:33::i;:::-;41383:19;41405:24;41423:4;41405:9;:24::i;:::-;41461:10;;41383:46;;-1:-1:-1;41461:10:0;;41460:11;:58;;;;;41506:12;;41488:14;:30;;41460:58;:88;;;;;41536:12;41535:13;41460:88;:123;;;;-1:-1:-1;;;;;;41566:17:0;;;;;;:11;:17;;;;;;;;41565:18;41460:123;41442:217;;;41634:13;:11;:13::i;:::-;41748:12;41743:513;;-1:-1:-1;;;;;41864:15:0;;41777:8;41864:15;;;:11;:15;;;;;;;;41860:250;;;30428:3;41944:7;;41935:6;:16;;;;:::i;:::-;41934:32;;;;:::i;:::-;41928:38;;41860:250;;;-1:-1:-1;;;;;41992:17:0;;;;;;:11;:17;;;;;;;;41988:122;;;30428:3;42073:6;;42064;:15;;;;:::i;:::-;42063:31;;;;:::i;:::-;42057:37;;41988:122;42128:7;;42124:121;;42156:41;42172:4;42186;42193:3;42156:15;:41::i;:::-;42216:13;42226:3;42216:13;;:::i;:::-;;;42124:121;41762:494;41743:513;42320:17;42356:6;42340:13;42350:2;42340:9;:13::i;:::-;:22;;;;:::i;:::-;-1:-1:-1;;;;;42378:27:0;;;;;;:23;:27;;;;;;42320:42;;-1:-1:-1;42378:27:0;;42377:28;:56;;;;;42424:9;;42409:12;:24;42377:56;42373:136;;;42457:40;;-1:-1:-1;;;42457:40:0;;-1:-1:-1;;;;;9557:32:1;;42457:40:0;;;9539:51:1;9606:18;;;9599:34;;;9512:18;;42457:40:0;9365:274:1;42373:136:0;42519:31;42539:2;42543:6;42519:19;:31::i;:::-;42561:33;42577:4;42583:2;42587:6;42561:15;:33::i;:::-;41038:1564;;;40928:1674;;;:::o;45684:2116::-;45778:13;;45759:16;45824:15;45834:4;45824:9;:15::i;:::-;-1:-1:-1;;;;;45876:18:0;;45850:23;45876:18;;;:12;:18;;;;;;;;:31;;;;;;;;;45946:9;:22;;;;;45979:20;;;:14;:20;;;;;:34;;;46113:16;:22;;;;;;;45802:37;;-1:-1:-1;45876:31:0;46113:22;;46109:1684;;;-1:-1:-1;;;;;46152:18:0;;46186:1;46152:18;;;:12;:18;;;;;;;;:31;;;;;;;;:35;46298:22;;46294:271;;30277:12;46345:18;:28;46341:208;;46415:18;46396:4;:15;;;:37;;;;;;;:::i;:::-;;;;-1:-1:-1;46341:208:0;;-1:-1:-1;46341:208:0;;30349:11;46461:18;:28;46457:92;;46531:18;46512:4;:15;;;:37;;;;;;;:::i;:::-;;;;-1:-1:-1;;46457:92:0;46109:1684;;;46631:23;46648:6;46631:14;:23;:::i;:::-;-1:-1:-1;;;;;46597:18:0;;;;;;:12;:18;;;;;;;;:31;;;;;;;;:57;;;;46687:23;46704:6;46687:14;:23;:::i;:::-;46669:41;;30349:11;46815:14;:23;46811:971;;;30277:12;46893:10;:20;46889:189;;46955:10;46936:4;:15;;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;46811:971:0;;-1:-1:-1;46811:971:0;46889:189;30349:11;47027:10;:20;47023:55;;47068:10;47049:4;:15;;;:29;;;;;;;:::i;47023:55::-;46811:971;;;30349:11;47187:14;:24;;:51;;;;;30277:12;47215:14;:23;47187:51;47183:599;;;30277:12;47293:10;:20;47289:194;;47355:10;47336:4;:15;;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;47289:194:0;;-1:-1:-1;47289:194:0;;30349:11;47432:10;:20;47428:55;;47473:10;47454:4;:15;;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;;47428:55:0;47521:14;47502:4;:15;;;:33;;;;;;;:::i;47183:599::-;30277:12;47602:14;:24;47598:184;;47704:10;47685:4;:15;;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;;47733:33:0;;47752:14;;47733:4;;:15;;:33;;47752:14;;47733:33;:::i;:::-;;;;-1:-1:-1;;47598:184:0;46582:1211;45748:2052;;;;45684:2116;;:::o;19710:191::-;19784:16;19803:6;;-1:-1:-1;;;;;19820:17:0;;;-1:-1:-1;;;;;;19820:17:0;;;;;;19853:40;;19803:6;;;;;;;19853:40;;19784:16;19853:40;19773:128;19710:191;:::o;43688:1818::-;43782:13;;-1:-1:-1;;;;;43832:18:0;;43763:16;43832:18;;;:12;:18;;;;;;;;:31;;;;;;;;;;43896:15;43845:4;43896:9;:15::i;:::-;43874:37;-1:-1:-1;43922:15:0;43940:23;43957:6;43874:37;43940:23;:::i;:::-;43974:25;44002:22;;;:9;:22;;;;;;;;-1:-1:-1;;;;;44035:20:0;;;;:14;:20;;;;;:34;;;44169:16;:22;;;;;;;43922:41;;-1:-1:-1;44002:22:0;44169;;44165:1334;;;-1:-1:-1;;;;;44208:18:0;;44242:1;44208:18;;;:12;:18;;;;;;;;:31;;;;;;;;:35;44354:22;;44350:271;;30277:12;44401:18;:28;44397:208;;44471:18;44452:4;:15;;;:37;;;;;;;:::i;:::-;;;;-1:-1:-1;44397:208:0;;-1:-1:-1;44397:208:0;;30349:11;44517:18;:28;44513:92;;44587:18;44568:4;:15;;;:37;;;;;;;:::i;44165:1334::-;-1:-1:-1;;;;;44653:18:0;;;;;;:12;:18;;;;;;;;:31;;;;;;;;:44;;;30277:12;44747:24;;44743:745;;44847:14;44828:4;:15;;;:33;;;;;;;:::i;:::-;;;;-1:-1:-1;;30277:12:0;44917:20;;44913:55;;44958:10;44939:4;:15;;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;;44913:55:0;30277:12;45021:10;:19;:43;;;;;30349:11;45044:10;:20;;45021:43;45017:99;;;45106:10;45087:4;:15;;;:29;;;;;;;:::i;44743:745::-;30349:11;45240:14;:24;45236:252;;45304:14;45285:4;:15;;;:33;;;;;;;:::i;:::-;;;;-1:-1:-1;;30349:11:0;45374:20;;45370:55;;45415:10;45396:4;:15;;;:29;;;;;;;:::i;42731:763::-;42773:10;:17;;-1:-1:-1;;42773:17:0;42786:4;42773:17;;;:10;42900:24;42918:4;42900:9;:24::i;:::-;42869:55;-1:-1:-1;42978:24:0;;42974:484;;43043:16;;;43057:1;43043:16;;;;;;;;43019:21;;43043:16;;;;;;;;;;-1:-1:-1;43043:16:0;43019:40;;43092:4;43074;43079:1;43074:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43074:23:0;;;-1:-1:-1;;;;;43074:23:0;;;;;43122:4;43112;43117:1;43112:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43112:14:0;;;:7;;;;;;;;;:14;43199:6;;:247;;-1:-1:-1;;;43199:247:0;;:6;;;:57;;:247;;43275:20;;43199:6;;43362:4;;43385:12;;43416:15;;43199:247;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43004:454;42974:484;-1:-1:-1;43468:10:0;:18;;-1:-1:-1;;43468:18:0;;;42731:763::o;11766:806::-;-1:-1:-1;;;;;11863:18:0;;11855:68;;;;-1:-1:-1;;;11855:68:0;;10971:2:1;11855:68:0;;;10953:21:1;11010:2;10990:18;;;10983:30;11049:34;11029:18;;;11022:62;-1:-1:-1;;;11100:18:1;;;11093:35;11145:19;;11855:68:0;10769:401:1;11855:68:0;-1:-1:-1;;;;;11942:16:0;;11934:64;;;;-1:-1:-1;;;11934:64:0;;11377:2:1;11934:64:0;;;11359:21:1;11416:2;11396:18;;;11389:30;11455:34;11435:18;;;11428:62;-1:-1:-1;;;11506:18:1;;;11499:33;11549:19;;11934:64:0;11175:399:1;11934:64:0;-1:-1:-1;;;;;12084:15:0;;12062:19;12084:15;;;:9;:15;;;;;;12118:21;;;;12110:72;;;;-1:-1:-1;;;12110:72:0;;11781:2:1;12110:72:0;;;11763:21:1;11820:2;11800:18;;;11793:30;11859:34;11839:18;;;11832:62;-1:-1:-1;;;11910:18:1;;;11903:36;11956:19;;12110:72:0;11579:402:1;12110:72:0;-1:-1:-1;;;;;12218:15:0;;;;;;;:9;:15;;;;;;12236:20;;;12218:38;;12436:13;;;;;;;;;;:23;;;;;;12488:26;;;;;;12250:6;1879:25:1;;1867:2;1852:18;;1733:177;12488:26:0;;;;;;;;12527:37;16509:91;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:173::-;820:20;;-1:-1:-1;;;;;869:31:1;;859:42;;849:70;;915:1;912;905:12;849:70;752:173;;;:::o;930:254::-;998:6;1006;1059:2;1047:9;1038:7;1034:23;1030:32;1027:52;;;1075:1;1072;1065:12;1027:52;1098:29;1117:9;1098:29;:::i;:::-;1088:39;1174:2;1159:18;;;;1146:32;;-1:-1:-1;;;930:254:1:o;1381:347::-;1446:6;1454;1507:2;1495:9;1486:7;1482:23;1478:32;1475:52;;;1523:1;1520;1513:12;1475:52;1546:29;1565:9;1546:29;:::i;:::-;1536:39;;1625:2;1614:9;1610:18;1597:32;1672:5;1665:13;1658:21;1651:5;1648:32;1638:60;;1694:1;1691;1684:12;1638:60;1717:5;1707:15;;;1381:347;;;;;:::o;1915:186::-;1974:6;2027:2;2015:9;2006:7;2002:23;1998:32;1995:52;;;2043:1;2040;2033:12;1995:52;2066:29;2085:9;2066:29;:::i;:::-;2056:39;1915:186;-1:-1:-1;;;1915:186:1:o;2106:328::-;2183:6;2191;2199;2252:2;2240:9;2231:7;2227:23;2223:32;2220:52;;;2268:1;2265;2258:12;2220:52;2291:29;2310:9;2291:29;:::i;:::-;2281:39;;2339:38;2373:2;2362:9;2358:18;2339:38;:::i;:::-;2329:48;;2424:2;2413:9;2409:18;2396:32;2386:42;;2106:328;;;;;:::o;2628:615::-;2714:6;2722;2775:2;2763:9;2754:7;2750:23;2746:32;2743:52;;;2791:1;2788;2781:12;2743:52;2831:9;2818:23;2860:18;2901:2;2893:6;2890:14;2887:34;;;2917:1;2914;2907:12;2887:34;2955:6;2944:9;2940:22;2930:32;;3000:7;2993:4;2989:2;2985:13;2981:27;2971:55;;3022:1;3019;3012:12;2971:55;3062:2;3049:16;3088:2;3080:6;3077:14;3074:34;;;3104:1;3101;3094:12;3074:34;3157:7;3152:2;3142:6;3139:1;3135:14;3131:2;3127:23;3123:32;3120:45;3117:65;;;3178:1;3175;3168:12;3117:65;3209:2;3201:11;;;;;3231:6;;-1:-1:-1;2628:615:1;;-1:-1:-1;;;;2628:615:1:o;4004:260::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4220:38;4254:2;4243:9;4239:18;4220:38;:::i;:::-;4210:48;;4004:260;;;;;:::o;4504:380::-;4583:1;4579:12;;;;4626;;;4647:61;;4701:4;4693:6;4689:17;4679:27;;4647:61;4754:2;4746:6;4743:14;4723:18;4720:38;4717:161;;4800:10;4795:3;4791:20;4788:1;4781:31;4835:4;4832:1;4825:15;4863:4;4860:1;4853:15;4717:161;;4504:380;;;:::o;4889:127::-;4950:10;4945:3;4941:20;4938:1;4931:31;4981:4;4978:1;4971:15;5005:4;5002:1;4995:15;5021:125;5086:9;;;5107:10;;;5104:36;;;5120:18;;:::i;5151:217::-;5191:1;5217;5207:132;;5261:10;5256:3;5252:20;5249:1;5242:31;5296:4;5293:1;5286:15;5324:4;5321:1;5314:15;5207:132;-1:-1:-1;5353:9:1;;5151:217::o;5373:127::-;5434:10;5429:3;5425:20;5422:1;5415:31;5465:4;5462:1;5455:15;5489:4;5486:1;5479:15;5505:135;5544:3;5565:17;;;5562:43;;5585:18;;:::i;:::-;-1:-1:-1;5632:1:1;5621:13;;5505:135::o;5645:725::-;5867:2;5879:21;;;5852:18;;5935:22;;;5819:4;6014:6;5988:2;5973:18;;5819:4;6048:235;6062:6;6059:1;6056:13;6048:235;;;-1:-1:-1;;;;;6127:26:1;6146:6;6127:26;:::i;:::-;6123:52;6111:65;;6199:4;6258:15;;;;6223:12;;;;6084:1;6077:9;6048:235;;;6052:3;6300;6292:11;;;;6355:6;6348:14;6341:22;6334:4;6323:9;6319:20;6312:52;5645:725;;;;;;:::o;9059:168::-;9132:9;;;9163;;9180:15;;;9174:22;;9160:37;9150:71;;9201:18;;:::i;9232:128::-;9299:9;;;9320:11;;;9317:37;;;9334:18;;:::i;9776:988::-;10046:4;10094:3;10083:9;10079:19;10125:6;10114:9;10107:25;10151:2;10189:6;10184:2;10173:9;10169:18;10162:34;10232:3;10227:2;10216:9;10212:18;10205:31;10256:6;10291;10285:13;10322:6;10314;10307:22;10360:3;10349:9;10345:19;10338:26;;10399:2;10391:6;10387:15;10373:29;;10420:1;10430:195;10444:6;10441:1;10438:13;10430:195;;;10509:13;;-1:-1:-1;;;;;10505:39:1;10493:52;;10600:15;;;;10565:12;;;;10541:1;10459:9;10430:195;;;-1:-1:-1;;;;;;;10681:32:1;;;;10676:2;10661:18;;10654:60;-1:-1:-1;;;10745:3:1;10730:19;10723:35;10642:3;9776:988;-1:-1:-1;;;9776:988:1:o

Swarm Source

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