ETH Price: $2,543.11 (-0.04%)

Token

LordWolf (Lord Wolf)
 

Overview

Max Total Supply

100,000,000 Lord Wolf

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,640,939.942634722067546178 Lord Wolf

Value
$0.00
0xA6ecE244e4483d85B6123e083F692E3f9FD8ACc0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LordWolf

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-23
*/

// SPDX-License-Identifier: MIT


pragma solidity 0.8.23;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev 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 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 Mint(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 mint(address to) external returns (uint liquidity);
    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;
}

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

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 */
abstract contract Initializable {

    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }
}

/**
 * @dev Contract module which provides 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} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}


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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

contract LordWolf is ERC20, ERC20Burnable, Ownable2Step, Initializable {
    
    uint16 public swapThresholdRatio;
    
    uint256 private _treasuryPending;

    address public treasuryAddress;
    uint16[3] public treasuryFees;

    mapping (address => bool) public isExcludedFromFees;

    uint16[3] public totalFees;
    bool private _swapping;

    IUniswapV2Router02 public routerV2;
    address public pairV2;
    mapping (address => bool) public AMMPairs;
 
    event SwapThresholdUpdated(uint16 swapThresholdRatio);

    event treasuryAddressUpdated(address treasuryAddress);
    event treasuryFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event treasuryFeeSent(address recipient, uint256 amount);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event RouterV2Updated(address indexed routerV2);
    event AMMPairsUpdated(address indexed AMMPair, bool isPair);
 
    constructor()
        ERC20(unicode"LordWolf", unicode"Lord Wolf") 
    {
        address supplyRecipient = 0xE1a1E919733AC5f692Da25EFF948d3A405f88c68;
        
        updateSwapThreshold(50);

        treasuryAddressSetup(0xE1a1E919733AC5f692Da25EFF948d3A405f88c68);
        treasuryFeesSetup(0, 300, 0);

        excludeFromFees(supplyRecipient, true);
        excludeFromFees(address(this), true); 

        _mint(supplyRecipient, 1000000000 * (10 ** decimals()) / 10);
        _transferOwnership(0xE1a1E919733AC5f692Da25EFF948d3A405f88c68);
    }
    
    /*
        This token is not upgradeable, but uses both the constructor and initializer for post-deployment setup.
    */
    function initialize(address _router) initializer external {
        _updateRouterV2(_router);
    }

    receive() external payable {}

    function decimals() public pure override returns (uint8) {
        return 18;
    }
    
    function _swapTokensForCoin(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = routerV2.WETH();

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

        routerV2.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);
    }

    function updateSwapThreshold(uint16 _swapThresholdRatio) public onlyOwner {
        require(_swapThresholdRatio > 0 && _swapThresholdRatio <= 500, "SwapThreshold: Cannot exceed limits from 0.01% to 5% for new swap threshold");
        swapThresholdRatio = _swapThresholdRatio;
        
        emit SwapThresholdUpdated(_swapThresholdRatio);
    }

    function getSwapThresholdAmount() public view returns (uint256) {
        return balanceOf(pairV2) * swapThresholdRatio / 10000;
    }

    function getAllPending() public view returns (uint256) {
        return 0 + _treasuryPending;
    }

    function treasuryAddressSetup(address _newAddress) public onlyOwner {
        require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address");

        treasuryAddress = _newAddress;
        excludeFromFees(_newAddress, true);

        emit treasuryAddressUpdated(_newAddress);
    }

    function treasuryFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        totalFees[0] = totalFees[0] - treasuryFees[0] + _buyFee;
        totalFees[1] = totalFees[1] - treasuryFees[1] + _sellFee;
        totalFees[2] = totalFees[2] - treasuryFees[2] + _transferFee;
        require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");

        treasuryFees = [_buyFee, _sellFee, _transferFee];

        emit treasuryFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

    function excludeFromFees(address account, bool isExcluded) public onlyOwner {
        isExcludedFromFees[account] = isExcluded;
        
        emit ExcludeFromFees(account, isExcluded);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!_swapping && amount > 0 && to != address(routerV2) && !isExcludedFromFees[from] && !isExcludedFromFees[to]) {
            uint256 fees = 0;
            uint8 txType = 3;
            
            if (AMMPairs[from]) {
                if (totalFees[0] > 0) txType = 0;
            }
            else if (AMMPairs[to]) {
                if (totalFees[1] > 0) txType = 1;
            }
            else if (totalFees[2] > 0) txType = 2;
            
            if (txType < 3) {
                
                fees = amount * totalFees[txType] / 10000;
                amount -= fees;
                
                _treasuryPending += fees * treasuryFees[txType] / totalFees[txType];

                
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }
        }
        
        bool canSwap = getAllPending() >= getSwapThresholdAmount() && balanceOf(pairV2) > 0;
        
        if (!_swapping && !AMMPairs[from] && from != address(routerV2) && canSwap) {
            _swapping = true;
            
            if (false || _treasuryPending > 0) {
                uint256 token2Swap = 0 + _treasuryPending;
                bool success = false;

                _swapTokensForCoin(token2Swap);
                uint256 coinsReceived = address(this).balance;
                
                uint256 treasuryPortion = coinsReceived * _treasuryPending / token2Swap;
                if (treasuryPortion > 0) {
                    success = payable(treasuryAddress).send(treasuryPortion);
                    if (success) {
                        emit treasuryFeeSent(treasuryAddress, treasuryPortion);
                    }
                }
                _treasuryPending = 0;

            }

            _swapping = false;
        }

        super._transfer(from, to, amount);
        
    }

    function _updateRouterV2(address router) private {
        routerV2 = IUniswapV2Router02(router);
        pairV2 = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH());
        
        _setAMMPair(pairV2, true);

        emit RouterV2Updated(router);
    }

    function setAMMPair(address pair, bool isPair) external onlyOwner {
        require(pair != pairV2, "DefaultRouter: Cannot remove initial pair from list");

        _setAMMPair(pair, isPair);
    }

    function _setAMMPair(address pair, bool isPair) private {
        AMMPairs[pair] = isPair;

        if (isPair) { 
        }

        emit AMMPairsUpdated(pair, isPair);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }

    function _afterTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        super._afterTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"AMMPair","type":"address"},{"indexed":false,"internalType":"bool","name":"isPair","type":"bool"}],"name":"AMMPairsUpdated","type":"event"},{"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"swapThresholdRatio","type":"uint16"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"treasuryAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"treasuryFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"treasuryFeesUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AMMPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllPending","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSwapThresholdAmount","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":"_router","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isPair","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThresholdRatio","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"treasuryAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"treasuryFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"treasuryFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_swapThresholdRatio","type":"uint16"}],"name":"updateSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801562000010575f80fd5b50604051806040016040528060088152602001672637b9322bb7b63360c11b815250604051806040016040528060098152602001682637b932102bb7b63360b91b8152508160039081620000659190620008e0565b506004620000748282620008e0565b505050620000916200008b6200015660201b60201c565b6200015a565b73e1a1e919733ac5f692da25eff948d3a405f88c68620000b2603262000178565b620000d173e1a1e919733ac5f692da25eff948d3a405f88c686200027f565b620000e05f61012c8162000378565b620000ed81600162000587565b620000fa30600162000587565b6200013081600a6200010e60128262000abb565b6200011e90633b9aca0062000ad2565b6200012a919062000aec565b620005ef565b6200014f73e1a1e919733ac5f692da25eff948d3a405f88c686200015a565b5062000b65565b3390565b600680546001600160a01b03191690556200017581620006ca565b50565b620001826200071b565b5f8161ffff161180156200019c57506101f48161ffff1611155b620002285760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b6006805461ffff60b01b1916600160b01b61ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b620002896200071b565b6001600160a01b038116620003165760405162461bcd60e51b815260206004820152604660248201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460448201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160648201526564647265737360d01b608482015260a4016200021f565b600880546001600160a01b0319166001600160a01b0383161790556200033e81600162000587565b6040516001600160a01b03821681527fe4ed70c3d76616a0a0abd9a0dd9a70e8a5ce46146e1e644575e111330e365ce79060200162000274565b620003826200071b565b600954600b5484916200039d9161ffff918216911662000b0c565b620003a9919062000b31565b600b805461ffff191661ffff92831617908190556009548492620003db92620100009283900482169290041662000b0c565b620003e7919062000b31565b600b805463ffff000019166201000061ffff938416021790819055600954839262000422926401000000009283900482169290041662000b0c565b6200042e919062000b31565b600b805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620004765750600b546109c46201000090910461ffff1611155b8015620004945750600b546109c464010000000090910461ffff1611155b620005085760405162461bcd60e51b815260206004820152603660248201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560448201527f64206d617820746f74616c20666565206f66203235250000000000000000000060648201526084016200021f565b6040805160608101825261ffff808616825284811660208301528316918101919091526200053b90600990600362000791565b506040805161ffff8581168252848116602083015283168183015290517faaf77301c7ddcd55669cb55da207bf87362c0fa18fb623452c4401900c9418919181900360600190a1505050565b620005916200071b565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006475760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200021f565b620006545f838362000779565b8060025f82825462000667919062000b4f565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620006c65f838362000779565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620007775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200021f565b565b6200078c8383836001600160e01b038416565b505050565b6001830191839082156200081b579160200282015f5b83821115620007e957835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302620007a7565b8015620008195782816101000a81549061ffff0219169055600201602081600101049283019260010302620007e9565b505b50620008299291506200082d565b5090565b5b8082111562000829575f81556001016200082e565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200086c57607f821691505b6020821081036200088b57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200078c57805f5260205f20601f840160051c81016020851015620008b85750805b601f840160051c820191505b81811015620008d9575f8155600101620008c4565b5050505050565b81516001600160401b03811115620008fc57620008fc62000843565b62000914816200090d845462000857565b8462000891565b602080601f8311600181146200094a575f8415620009325750858301515b5f19600386901b1c1916600185901b178555620009a4565b5f85815260208120601f198616915b828110156200097a5788860151825594840194600190910190840162000959565b50858210156200099857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111562000a0057815f1904821115620009e457620009e4620009ac565b80851615620009f257918102915b93841c9390800290620009c5565b509250929050565b5f8262000a185750600162000ab5565b8162000a2657505f62000ab5565b816001811462000a3f576002811462000a4a5762000a6a565b600191505062000ab5565b60ff84111562000a5e5762000a5e620009ac565b50506001821b62000ab5565b5060208310610133831016604e8410600b841016171562000a8f575081810a62000ab5565b62000a9b8383620009c0565b805f190482111562000ab15762000ab1620009ac565b0290505b92915050565b5f62000acb60ff84168362000a08565b9392505050565b808202811582820484141762000ab55762000ab5620009ac565b5f8262000b0757634e487b7160e01b5f52601260045260245ffd5b500490565b61ffff82811682821603908082111562000b2a5762000b2a620009ac565b5092915050565b61ffff81811683821601908082111562000b2a5762000b2a620009ac565b8082018082111562000ab55762000ab5620009ac565b6120218062000b735f395ff3fe6080604052600436106101f4575f3560e01c806379cc679011610108578063c02466681161009d578063d94775261161006d578063d9477526146105dc578063dd62ed3e146105f0578063e30c39781461060f578063f112ba721461062c578063f2fde38b14610640575f80fd5b8063c024666814610560578063c4d66de81461057f578063c5f956af1461059e578063d54f3ce1146105bd575f80fd5b806395d89b41116100d857806395d89b41146104ef5780639adad3b114610503578063a457c2d714610522578063a9059cbb14610541575f80fd5b806379cc6790146104755780637d7a9573146104945780638da5cb5b146104b35780638fffabed146104d0575f80fd5b8063408ccbdf11610189578063502f744611610159578063502f7446146103af57806370a08231146103eb578063715018a61461041f578063768565571461043357806379ba509714610461575f80fd5b8063408ccbdf1461030f57806342966c68146103415780634f011b83146103605780634fbee19314610381575f80fd5b806323b872dd116101c457806323b872dd146102975780632d99d32e146102b6578063313ce567146102d557806339509351146102f0575f80fd5b806306fdde03146101ff578063095ea7b31461022957806318160ddd146102585780631a0e718c14610276575f80fd5b366101fb57005b5f80fd5b34801561020a575f80fd5b5061021361065f565b6040516102209190611c8f565b60405180910390f35b348015610234575f80fd5b50610248610243366004611cef565b6106ef565b6040519015158152602001610220565b348015610263575f80fd5b506002545b604051908152602001610220565b348015610281575f80fd5b50610295610290366004611d2f565b610708565b005b3480156102a2575f80fd5b506102486102b1366004611d4f565b61080b565b3480156102c1575f80fd5b506102956102d0366004611d8d565b61082e565b3480156102e0575f80fd5b5060405160128152602001610220565b3480156102fb575f80fd5b5061024861030a366004611cef565b6108be565b34801561031a575f80fd5b5061032e610329366004611dc8565b6108df565b60405161ffff9091168152602001610220565b34801561034c575f80fd5b5061029561035b366004611dc8565b61090c565b34801561036b575f80fd5b5060065461032e90600160b01b900461ffff1681565b34801561038c575f80fd5b5061024861039b366004611ddf565b600a6020525f908152604090205460ff1681565b3480156103ba575f80fd5b50600c546103d39061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610220565b3480156103f6575f80fd5b50610268610405366004611ddf565b6001600160a01b03165f9081526020819052604090205490565b34801561042a575f80fd5b50610295610919565b34801561043e575f80fd5b5061024861044d366004611ddf565b600e6020525f908152604090205460ff1681565b34801561046c575f80fd5b5061029561092c565b348015610480575f80fd5b5061029561048f366004611cef565b6109a3565b34801561049f575f80fd5b506102956104ae366004611ddf565b6109b8565b3480156104be575f80fd5b506005546001600160a01b03166103d3565b3480156104db575f80fd5b50600d546103d3906001600160a01b031681565b3480156104fa575f80fd5b50610213610aaa565b34801561050e575f80fd5b5061032e61051d366004611dc8565b610ab9565b34801561052d575f80fd5b5061024861053c366004611cef565b610ac8565b34801561054c575f80fd5b5061024861055b366004611cef565b610b42565b34801561056b575f80fd5b5061029561057a366004611d8d565b610b4f565b34801561058a575f80fd5b50610295610599366004611ddf565b610bb6565b3480156105a9575f80fd5b506008546103d3906001600160a01b031681565b3480156105c8575f80fd5b506102956105d7366004611dfa565b610c85565b3480156105e7575f80fd5b50610268610e7a565b3480156105fb575f80fd5b5061026861060a366004611e3a565b610ec1565b34801561061a575f80fd5b506006546001600160a01b03166103d3565b348015610637575f80fd5b50610268610eeb565b34801561064b575f80fd5b5061029561065a366004611ddf565b610efa565b60606003805461066e90611e66565b80601f016020809104026020016040519081016040528092919081815260200182805461069a90611e66565b80156106e55780601f106106bc576101008083540402835291602001916106e5565b820191905f5260205f20905b8154815290600101906020018083116106c857829003601f168201915b5050505050905090565b5f336106fc818585610f6b565b60019150505b92915050565b61071061108e565b5f8161ffff1611801561072957506101f48161ffff1611155b6107b45760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b6006805461ffff60b01b1916600160b01b61ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b5f336108188582856110e8565b610823858585611160565b506001949350505050565b61083661108e565b600d546001600160a01b03908116908316036108b05760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b60648201526084016107ab565b6108ba82826114f2565b5050565b5f336106fc8185856108d08383610ec1565b6108da9190611eb2565b610f6b565b600b81600381106108ee575f80fd5b60109182820401919006600202915054906101000a900461ffff1681565b6109163382611549565b50565b61092161108e565b61092a5f611679565b565b60065433906001600160a01b0316811461099a5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b60648201526084016107ab565b61091681611679565b6109ae8233836110e8565b6108ba8282611549565b6109c061108e565b6001600160a01b038116610a4b5760405162461bcd60e51b815260206004820152604660248201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460448201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160648201526564647265737360d01b608482015260a4016107ab565b600880546001600160a01b0319166001600160a01b038316179055610a71816001610b4f565b6040516001600160a01b03821681527fe4ed70c3d76616a0a0abd9a0dd9a70e8a5ce46146e1e644575e111330e365ce790602001610800565b60606004805461066e90611e66565b600981600381106108ee575f80fd5b5f3381610ad58286610ec1565b905083811015610b355760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ab565b6108238286868403610f6b565b5f336106fc818585611160565b610b5761108e565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b600654600160a81b900460ff1680610bd85750600654600160a01b900460ff16155b610c3b5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016107ab565b600654600160a81b900460ff16158015610c65576006805461ffff60a01b191661010160a01b1790555b610c6e82611692565b80156108ba576006805460ff60a81b191690555050565b610c8d61108e565b600954600b548491610ca69161ffff9182169116611ed9565b610cb09190611efb565b600b805461ffff191661ffff92831617908190556009548492610ce0926201000092839004821692900416611ed9565b610cea9190611efb565b600b805463ffff000019166201000061ffff9384160217908190556009548392610d239264010000000092839004821692900416611ed9565b610d2d9190611efb565b600b805461ffff9283166401000000000265ffff0000000019821681179092556109c4908316919092161711801590610d755750600b546109c46201000090910461ffff1611155b8015610d925750600b546109c464010000000090910461ffff1611155b610dfd5760405162461bcd60e51b815260206004820152603660248201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560448201527564206d617820746f74616c20666565206f662032352560501b60648201526084016107ab565b6040805160608101825261ffff80861682528481166020830152831691810191909152610e2e906009906003611be6565b506040805161ffff8581168252848116602083015283168183015290517faaf77301c7ddcd55669cb55da207bf87362c0fa18fb623452c4401900c9418919181900360600190a1505050565b600654600d546001600160a01b03165f90815260208190526040812054909161271091610eb291600160b01b900461ffff1690611f16565b610ebc9190611f2d565b905090565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f6007545f610ebc9190611eb2565b610f0261108e565b600680546001600160a01b0383166001600160a01b03199091168117909155610f336005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b038316610fcd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ab565b6001600160a01b03821661102e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ab565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461092a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ab565b5f6110f38484610ec1565b90505f19811461115a578181101561114d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107ab565b61115a8484848403610f6b565b50505050565b600c5460ff1615801561117257505f81115b80156111915750600c546001600160a01b038381166101009092041614155b80156111b557506001600160a01b0383165f908152600a602052604090205460ff16155b80156111d957506001600160a01b0382165f908152600a602052604090205460ff16155b15611374576001600160a01b0383165f908152600e602052604081205460039060ff161561121557600b5461ffff161561121057505f5b611267565b6001600160a01b0384165f908152600e602052604090205460ff161561124f57600b5462010000900461ffff161561121057506001611267565b600b54640100000000900461ffff1615611267575060025b60038160ff16101561136057612710600b8260ff166003811061128c5761128c611ec5565b601091828204019190066002029054906101000a900461ffff1661ffff16846112b59190611f16565b6112bf9190611f2d565b91506112cb8284611f4c565b9250600b8160ff16600381106112e3576112e3611ec5565b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff166003811061131757611317611ec5565b601091828204019190066002029054906101000a900461ffff1661ffff16836113409190611f16565b61134a9190611f2d565b60075f82825461135a9190611eb2565b90915550505b811561137157611371853084611880565b50505b5f61137d610e7a565b611385610eeb565b101580156113aa5750600d546001600160a01b03165f90815260208190526040812054115b600c5490915060ff161580156113d857506001600160a01b0384165f908152600e602052604090205460ff16155b80156113f75750600c546001600160a01b038581166101009092041614155b80156114005750805b156114e757600c805460ff191660011790555f60075411156114dc575f6007545f61142b9190611eb2565b90505f61143782611a22565b60075447905f90849061144a9084611f16565b6114549190611f2d565b905080156114d3576008546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050925082156114d357600854604080516001600160a01b039092168252602082018390527f275b50a8bd0736a42e895274e138875e86a8845329afc71e033e4d414aea8733910160405180910390a15b50505f60075550505b600c805460ff191690555b61115a848484611880565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a84559101610baa565b6001600160a01b0382166115a95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016107ab565b6001600160a01b0382165f908152602081905260409020548181101561161c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016107ab565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600680546001600160a01b031916905561091681611b95565b80600c60016101000a8154816001600160a01b0302191690836001600160a01b03160217905550600c60019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561170a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061172e9190611f5f565b6001600160a01b031663c9c6539630600c60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561178e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117b29190611f5f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156117fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118209190611f5f565b600d80546001600160a01b0319166001600160a01b0392909216918217905561184a9060016114f2565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b602905f90a250565b6001600160a01b0383166118e45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107ab565b6001600160a01b0382166119465760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107ab565b6001600160a01b0383165f90815260208190526040902054818110156119bd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ab565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361115a565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611a5557611a55611ec5565b60200260200101906001600160a01b031690816001600160a01b031681525050600c60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ac6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aea9190611f5f565b81600181518110611afd57611afd611ec5565b6001600160a01b039283166020918202929092010152600c54611b2891309161010090041684610f6b565b600c5460405163791ac94760e01b81526101009091046001600160a01b03169063791ac94790611b649085905f90869030904290600401611f7a565b5f604051808303815f87803b158015611b7b575f80fd5b505af1158015611b8d573d5f803e3d5ffd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600183019183908215611c6b579160200282015f5b83821115611c3b57835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302611bfb565b8015611c695782816101000a81549061ffff0219169055600201602081600101049283019260010302611c3b565b505b50611c77929150611c7b565b5090565b5b80821115611c77575f8155600101611c7c565b5f602080835283518060208501525f5b81811015611cbb57858101830151858201604001528201611c9f565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610916575f80fd5b5f8060408385031215611d00575f80fd5b8235611d0b81611cdb565b946020939093013593505050565b803561ffff81168114611d2a575f80fd5b919050565b5f60208284031215611d3f575f80fd5b611d4882611d19565b9392505050565b5f805f60608486031215611d61575f80fd5b8335611d6c81611cdb565b92506020840135611d7c81611cdb565b929592945050506040919091013590565b5f8060408385031215611d9e575f80fd5b8235611da981611cdb565b915060208301358015158114611dbd575f80fd5b809150509250929050565b5f60208284031215611dd8575f80fd5b5035919050565b5f60208284031215611def575f80fd5b8135611d4881611cdb565b5f805f60608486031215611e0c575f80fd5b611e1584611d19565b9250611e2360208501611d19565b9150611e3160408501611d19565b90509250925092565b5f8060408385031215611e4b575f80fd5b8235611e5681611cdb565b91506020830135611dbd81611cdb565b600181811c90821680611e7a57607f821691505b602082108103611e9857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561070257610702611e9e565b634e487b7160e01b5f52603260045260245ffd5b61ffff828116828216039080821115611ef457611ef4611e9e565b5092915050565b61ffff818116838216019080821115611ef457611ef4611e9e565b808202811582820484141761070257610702611e9e565b5f82611f4757634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561070257610702611e9e565b5f60208284031215611f6f575f80fd5b8151611d4881611cdb565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611fca5784516001600160a01b031683529383019391830191600101611fa5565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212202263797c84033151826e8e2fae978a755ba52ba46312bb24e1defd08112bebbd64736f6c63430008170033

Deployed Bytecode

0x6080604052600436106101f4575f3560e01c806379cc679011610108578063c02466681161009d578063d94775261161006d578063d9477526146105dc578063dd62ed3e146105f0578063e30c39781461060f578063f112ba721461062c578063f2fde38b14610640575f80fd5b8063c024666814610560578063c4d66de81461057f578063c5f956af1461059e578063d54f3ce1146105bd575f80fd5b806395d89b41116100d857806395d89b41146104ef5780639adad3b114610503578063a457c2d714610522578063a9059cbb14610541575f80fd5b806379cc6790146104755780637d7a9573146104945780638da5cb5b146104b35780638fffabed146104d0575f80fd5b8063408ccbdf11610189578063502f744611610159578063502f7446146103af57806370a08231146103eb578063715018a61461041f578063768565571461043357806379ba509714610461575f80fd5b8063408ccbdf1461030f57806342966c68146103415780634f011b83146103605780634fbee19314610381575f80fd5b806323b872dd116101c457806323b872dd146102975780632d99d32e146102b6578063313ce567146102d557806339509351146102f0575f80fd5b806306fdde03146101ff578063095ea7b31461022957806318160ddd146102585780631a0e718c14610276575f80fd5b366101fb57005b5f80fd5b34801561020a575f80fd5b5061021361065f565b6040516102209190611c8f565b60405180910390f35b348015610234575f80fd5b50610248610243366004611cef565b6106ef565b6040519015158152602001610220565b348015610263575f80fd5b506002545b604051908152602001610220565b348015610281575f80fd5b50610295610290366004611d2f565b610708565b005b3480156102a2575f80fd5b506102486102b1366004611d4f565b61080b565b3480156102c1575f80fd5b506102956102d0366004611d8d565b61082e565b3480156102e0575f80fd5b5060405160128152602001610220565b3480156102fb575f80fd5b5061024861030a366004611cef565b6108be565b34801561031a575f80fd5b5061032e610329366004611dc8565b6108df565b60405161ffff9091168152602001610220565b34801561034c575f80fd5b5061029561035b366004611dc8565b61090c565b34801561036b575f80fd5b5060065461032e90600160b01b900461ffff1681565b34801561038c575f80fd5b5061024861039b366004611ddf565b600a6020525f908152604090205460ff1681565b3480156103ba575f80fd5b50600c546103d39061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610220565b3480156103f6575f80fd5b50610268610405366004611ddf565b6001600160a01b03165f9081526020819052604090205490565b34801561042a575f80fd5b50610295610919565b34801561043e575f80fd5b5061024861044d366004611ddf565b600e6020525f908152604090205460ff1681565b34801561046c575f80fd5b5061029561092c565b348015610480575f80fd5b5061029561048f366004611cef565b6109a3565b34801561049f575f80fd5b506102956104ae366004611ddf565b6109b8565b3480156104be575f80fd5b506005546001600160a01b03166103d3565b3480156104db575f80fd5b50600d546103d3906001600160a01b031681565b3480156104fa575f80fd5b50610213610aaa565b34801561050e575f80fd5b5061032e61051d366004611dc8565b610ab9565b34801561052d575f80fd5b5061024861053c366004611cef565b610ac8565b34801561054c575f80fd5b5061024861055b366004611cef565b610b42565b34801561056b575f80fd5b5061029561057a366004611d8d565b610b4f565b34801561058a575f80fd5b50610295610599366004611ddf565b610bb6565b3480156105a9575f80fd5b506008546103d3906001600160a01b031681565b3480156105c8575f80fd5b506102956105d7366004611dfa565b610c85565b3480156105e7575f80fd5b50610268610e7a565b3480156105fb575f80fd5b5061026861060a366004611e3a565b610ec1565b34801561061a575f80fd5b506006546001600160a01b03166103d3565b348015610637575f80fd5b50610268610eeb565b34801561064b575f80fd5b5061029561065a366004611ddf565b610efa565b60606003805461066e90611e66565b80601f016020809104026020016040519081016040528092919081815260200182805461069a90611e66565b80156106e55780601f106106bc576101008083540402835291602001916106e5565b820191905f5260205f20905b8154815290600101906020018083116106c857829003601f168201915b5050505050905090565b5f336106fc818585610f6b565b60019150505b92915050565b61071061108e565b5f8161ffff1611801561072957506101f48161ffff1611155b6107b45760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b6006805461ffff60b01b1916600160b01b61ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b5f336108188582856110e8565b610823858585611160565b506001949350505050565b61083661108e565b600d546001600160a01b03908116908316036108b05760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b60648201526084016107ab565b6108ba82826114f2565b5050565b5f336106fc8185856108d08383610ec1565b6108da9190611eb2565b610f6b565b600b81600381106108ee575f80fd5b60109182820401919006600202915054906101000a900461ffff1681565b6109163382611549565b50565b61092161108e565b61092a5f611679565b565b60065433906001600160a01b0316811461099a5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b60648201526084016107ab565b61091681611679565b6109ae8233836110e8565b6108ba8282611549565b6109c061108e565b6001600160a01b038116610a4b5760405162461bcd60e51b815260206004820152604660248201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460448201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160648201526564647265737360d01b608482015260a4016107ab565b600880546001600160a01b0319166001600160a01b038316179055610a71816001610b4f565b6040516001600160a01b03821681527fe4ed70c3d76616a0a0abd9a0dd9a70e8a5ce46146e1e644575e111330e365ce790602001610800565b60606004805461066e90611e66565b600981600381106108ee575f80fd5b5f3381610ad58286610ec1565b905083811015610b355760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ab565b6108238286868403610f6b565b5f336106fc818585611160565b610b5761108e565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b600654600160a81b900460ff1680610bd85750600654600160a01b900460ff16155b610c3b5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016107ab565b600654600160a81b900460ff16158015610c65576006805461ffff60a01b191661010160a01b1790555b610c6e82611692565b80156108ba576006805460ff60a81b191690555050565b610c8d61108e565b600954600b548491610ca69161ffff9182169116611ed9565b610cb09190611efb565b600b805461ffff191661ffff92831617908190556009548492610ce0926201000092839004821692900416611ed9565b610cea9190611efb565b600b805463ffff000019166201000061ffff9384160217908190556009548392610d239264010000000092839004821692900416611ed9565b610d2d9190611efb565b600b805461ffff9283166401000000000265ffff0000000019821681179092556109c4908316919092161711801590610d755750600b546109c46201000090910461ffff1611155b8015610d925750600b546109c464010000000090910461ffff1611155b610dfd5760405162461bcd60e51b815260206004820152603660248201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560448201527564206d617820746f74616c20666565206f662032352560501b60648201526084016107ab565b6040805160608101825261ffff80861682528481166020830152831691810191909152610e2e906009906003611be6565b506040805161ffff8581168252848116602083015283168183015290517faaf77301c7ddcd55669cb55da207bf87362c0fa18fb623452c4401900c9418919181900360600190a1505050565b600654600d546001600160a01b03165f90815260208190526040812054909161271091610eb291600160b01b900461ffff1690611f16565b610ebc9190611f2d565b905090565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f6007545f610ebc9190611eb2565b610f0261108e565b600680546001600160a01b0383166001600160a01b03199091168117909155610f336005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b038316610fcd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ab565b6001600160a01b03821661102e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ab565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461092a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ab565b5f6110f38484610ec1565b90505f19811461115a578181101561114d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107ab565b61115a8484848403610f6b565b50505050565b600c5460ff1615801561117257505f81115b80156111915750600c546001600160a01b038381166101009092041614155b80156111b557506001600160a01b0383165f908152600a602052604090205460ff16155b80156111d957506001600160a01b0382165f908152600a602052604090205460ff16155b15611374576001600160a01b0383165f908152600e602052604081205460039060ff161561121557600b5461ffff161561121057505f5b611267565b6001600160a01b0384165f908152600e602052604090205460ff161561124f57600b5462010000900461ffff161561121057506001611267565b600b54640100000000900461ffff1615611267575060025b60038160ff16101561136057612710600b8260ff166003811061128c5761128c611ec5565b601091828204019190066002029054906101000a900461ffff1661ffff16846112b59190611f16565b6112bf9190611f2d565b91506112cb8284611f4c565b9250600b8160ff16600381106112e3576112e3611ec5565b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff166003811061131757611317611ec5565b601091828204019190066002029054906101000a900461ffff1661ffff16836113409190611f16565b61134a9190611f2d565b60075f82825461135a9190611eb2565b90915550505b811561137157611371853084611880565b50505b5f61137d610e7a565b611385610eeb565b101580156113aa5750600d546001600160a01b03165f90815260208190526040812054115b600c5490915060ff161580156113d857506001600160a01b0384165f908152600e602052604090205460ff16155b80156113f75750600c546001600160a01b038581166101009092041614155b80156114005750805b156114e757600c805460ff191660011790555f60075411156114dc575f6007545f61142b9190611eb2565b90505f61143782611a22565b60075447905f90849061144a9084611f16565b6114549190611f2d565b905080156114d3576008546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050925082156114d357600854604080516001600160a01b039092168252602082018390527f275b50a8bd0736a42e895274e138875e86a8845329afc71e033e4d414aea8733910160405180910390a15b50505f60075550505b600c805460ff191690555b61115a848484611880565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a84559101610baa565b6001600160a01b0382166115a95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016107ab565b6001600160a01b0382165f908152602081905260409020548181101561161c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016107ab565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600680546001600160a01b031916905561091681611b95565b80600c60016101000a8154816001600160a01b0302191690836001600160a01b03160217905550600c60019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561170a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061172e9190611f5f565b6001600160a01b031663c9c6539630600c60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561178e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117b29190611f5f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156117fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118209190611f5f565b600d80546001600160a01b0319166001600160a01b0392909216918217905561184a9060016114f2565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b602905f90a250565b6001600160a01b0383166118e45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107ab565b6001600160a01b0382166119465760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107ab565b6001600160a01b0383165f90815260208190526040902054818110156119bd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ab565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361115a565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611a5557611a55611ec5565b60200260200101906001600160a01b031690816001600160a01b031681525050600c60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ac6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aea9190611f5f565b81600181518110611afd57611afd611ec5565b6001600160a01b039283166020918202929092010152600c54611b2891309161010090041684610f6b565b600c5460405163791ac94760e01b81526101009091046001600160a01b03169063791ac94790611b649085905f90869030904290600401611f7a565b5f604051808303815f87803b158015611b7b575f80fd5b505af1158015611b8d573d5f803e3d5ffd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600183019183908215611c6b579160200282015f5b83821115611c3b57835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302611bfb565b8015611c695782816101000a81549061ffff0219169055600201602081600101049283019260010302611c3b565b505b50611c77929150611c7b565b5090565b5b80821115611c77575f8155600101611c7c565b5f602080835283518060208501525f5b81811015611cbb57858101830151858201604001528201611c9f565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610916575f80fd5b5f8060408385031215611d00575f80fd5b8235611d0b81611cdb565b946020939093013593505050565b803561ffff81168114611d2a575f80fd5b919050565b5f60208284031215611d3f575f80fd5b611d4882611d19565b9392505050565b5f805f60608486031215611d61575f80fd5b8335611d6c81611cdb565b92506020840135611d7c81611cdb565b929592945050506040919091013590565b5f8060408385031215611d9e575f80fd5b8235611da981611cdb565b915060208301358015158114611dbd575f80fd5b809150509250929050565b5f60208284031215611dd8575f80fd5b5035919050565b5f60208284031215611def575f80fd5b8135611d4881611cdb565b5f805f60608486031215611e0c575f80fd5b611e1584611d19565b9250611e2360208501611d19565b9150611e3160408501611d19565b90509250925092565b5f8060408385031215611e4b575f80fd5b8235611e5681611cdb565b91506020830135611dbd81611cdb565b600181811c90821680611e7a57607f821691505b602082108103611e9857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561070257610702611e9e565b634e487b7160e01b5f52603260045260245ffd5b61ffff828116828216039080821115611ef457611ef4611e9e565b5092915050565b61ffff818116838216019080821115611ef457611ef4611e9e565b808202811582820484141761070257610702611e9e565b5f82611f4757634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561070257610702611e9e565b5f60208284031215611f6f575f80fd5b8151611d4881611cdb565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611fca5784516001600160a01b031683529383019391830191600101611fa5565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212202263797c84033151826e8e2fae978a755ba52ba46312bb24e1defd08112bebbd64736f6c63430008170033

Deployed Bytecode Sourcemap

32159:7163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20206:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22566:201;;;;;;;;;;-1:-1:-1;22566:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;22566:201:0;1023:187:1;21335:108:0;;;;;;;;;;-1:-1:-1;21423:12:0;;21335:108;;;1361:25:1;;;1349:2;1334:18;21335:108:0;1215:177:1;34451:352:0;;;;;;;;;;-1:-1:-1;34451:352:0;;;;;:::i;:::-;;:::i;:::-;;23347:261;;;;;;;;;;-1:-1:-1;23347:261:0;;;;;:::i;:::-;;:::i;38562:201::-;;;;;;;;;;-1:-1:-1;38562:201:0;;;;;:::i;:::-;;:::i;33966:85::-;;;;;;;;;;-1:-1:-1;33966:85:0;;34041:2;2774:36:1;;2762:2;2747:18;33966:85:0;2632:184:1;24017:238:0;;;;;;;;;;-1:-1:-1;24017:238:0;;;;;:::i;:::-;;:::i;32464:26::-;;;;;;;;;;-1:-1:-1;32464:26:0;;;;;:::i;:::-;;:::i;:::-;;;3180:6:1;3168:19;;;3150:38;;3138:2;3123:18;32464:26:0;3006:188:1;31578:91:0;;;;;;;;;;-1:-1:-1;31578:91:0;;;;;:::i;:::-;;:::i;32243:32::-;;;;;;;;;;-1:-1:-1;32243:32:0;;;;-1:-1:-1;;;32243:32:0;;;;;;32404:51;;;;;;;;;;-1:-1:-1;32404:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32528:34;;;;;;;;;;-1:-1:-1;32528:34:0;;;;;;;-1:-1:-1;;;;;32528:34:0;;;;;;-1:-1:-1;;;;;3641:32:1;;;3623:51;;3611:2;3596:18;32528:34:0;3451:229:1;21506:127:0;;;;;;;;;;-1:-1:-1;21506:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;21607:18:0;21580:7;21607:18;;;;;;;;;;;;21506:127;5870:103;;;;;;;;;;;;;:::i;32597:41::-;;;;;;;;;;-1:-1:-1;32597:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;18001:216;;;;;;;;;;;;;:::i;31988:164::-;;;;;;;;;;-1:-1:-1;31988:164:0;;;;;:::i;:::-;;:::i;35064:335::-;;;;;;;;;;-1:-1:-1;35064:335:0;;;;;:::i;:::-;;:::i;5229:87::-;;;;;;;;;;-1:-1:-1;5302:6:0;;-1:-1:-1;;;;;5302:6:0;5229:87;;32569:21;;;;;;;;;;-1:-1:-1;32569:21:0;;;;-1:-1:-1;;;;;32569:21:0;;;20425:104;;;;;;;;;;;;;:::i;32366:29::-;;;;;;;;;;-1:-1:-1;32366:29:0;;;;;:::i;:::-;;:::i;24758:436::-;;;;;;;;;;-1:-1:-1;24758:436:0;;;;;:::i;:::-;;:::i;21839:193::-;;;;;;;;;;-1:-1:-1;21839:193:0;;;;;:::i;:::-;;:::i;36002:197::-;;;;;;;;;;-1:-1:-1;36002:197:0;;;;;:::i;:::-;;:::i;33820:101::-;;;;;;;;;;-1:-1:-1;33820:101:0;;;;;:::i;:::-;;:::i;32329:30::-;;;;;;;;;;-1:-1:-1;32329:30:0;;;;-1:-1:-1;;;;;32329:30:0;;;35407:587;;;;;;;;;;-1:-1:-1;35407:587:0;;;;;:::i;:::-;;:::i;34811:136::-;;;;;;;;;;;;;:::i;22095:151::-;;;;;;;;;;-1:-1:-1;22095:151:0;;;;;:::i;:::-;;:::i;17089:101::-;;;;;;;;;;-1:-1:-1;17169:13:0;;-1:-1:-1;;;;;17169:13:0;17089:101;;34955;;;;;;;;;;;;;:::i;17389:181::-;;;;;;;;;;-1:-1:-1;17389:181:0;;;;;:::i;:::-;;:::i;20206:100::-;20260:13;20293:5;20286:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20206:100;:::o;22566:201::-;22649:4;684:10;22705:32;684:10;22721:7;22730:6;22705:8;:32::i;:::-;22755:4;22748:11;;;22566:201;;;;;:::o;34451:352::-;5115:13;:11;:13::i;:::-;34566:1:::1;34544:19;:23;;;:53;;;;;34594:3;34571:19;:26;;;;34544:53;34536:141;;;::::0;-1:-1:-1;;;34536:141:0;;5206:2:1;34536:141:0::1;::::0;::::1;5188:21:1::0;5245:2;5225:18;;;5218:30;5284:34;5264:18;;;5257:62;5355:34;5335:18;;;5328:62;-1:-1:-1;;;5406:19:1;;;5399:42;5458:19;;34536:141:0::1;;;;;;;;;34688:18;:40:::0;;-1:-1:-1;;;;34688:40:0::1;-1:-1:-1::0;;;34688:40:0::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;34754:41:::1;::::0;3150:38:1;;;34754:41:0::1;::::0;3138:2:1;3123:18;34754:41:0::1;;;;;;;;34451:352:::0;:::o;23347:261::-;23444:4;684:10;23502:38;23518:4;684:10;23533:6;23502:15;:38::i;:::-;23551:27;23561:4;23567:2;23571:6;23551:9;:27::i;:::-;-1:-1:-1;23596:4:0;;23347:261;-1:-1:-1;;;;23347:261:0:o;38562:201::-;5115:13;:11;:13::i;:::-;38655:6:::1;::::0;-1:-1:-1;;;;;38655:6:0;;::::1;38647:14:::0;;::::1;::::0;38639:78:::1;;;::::0;-1:-1:-1;;;38639:78:0;;5690:2:1;38639:78:0::1;::::0;::::1;5672:21:1::0;5729:2;5709:18;;;5702:30;5768:34;5748:18;;;5741:62;-1:-1:-1;;;5819:18:1;;;5812:49;5878:19;;38639:78:0::1;5488:415:1::0;38639:78:0::1;38730:25;38742:4;38748:6;38730:11;:25::i;:::-;38562:201:::0;;:::o;24017:238::-;24105:4;684:10;24161:64;684:10;24177:7;24214:10;24186:25;684:10;24177:7;24186:9;:25::i;:::-;:38;;;;:::i;:::-;24161:8;:64::i;32464:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31578:91::-;31634:27;684:10;31654:6;31634:5;:27::i;:::-;31578:91;:::o;5870:103::-;5115:13;:11;:13::i;:::-;5935:30:::1;5962:1;5935:18;:30::i;:::-;5870:103::o:0;18001:216::-;17169:13;;684:10;;-1:-1:-1;;;;;17169:13:0;18102:24;;18094:78;;;;-1:-1:-1;;;18094:78:0;;6372:2:1;18094:78:0;;;6354:21:1;6411:2;6391:18;;;6384:30;6450:34;6430:18;;;6423:62;-1:-1:-1;;;6501:18:1;;;6494:39;6550:19;;18094:78:0;6170:405:1;18094:78:0;18183:26;18202:6;18183:18;:26::i;31988:164::-;32065:46;32081:7;684:10;32104:6;32065:15;:46::i;:::-;32122:22;32128:7;32137:6;32122:5;:22::i;35064:335::-;5115:13;:11;:13::i;:::-;-1:-1:-1;;;;;35151:25:0;::::1;35143:108;;;::::0;-1:-1:-1;;;35143:108:0;;6782:2:1;35143:108:0::1;::::0;::::1;6764:21:1::0;6821:2;6801:18;;;6794:30;6860:34;6840:18;;;6833:62;6931:34;6911:18;;;6904:62;-1:-1:-1;;;6982:19:1;;;6975:37;7029:19;;35143:108:0::1;6580:474:1::0;35143:108:0::1;35264:15;:29:::0;;-1:-1:-1;;;;;;35264:29:0::1;-1:-1:-1::0;;;;;35264:29:0;::::1;;::::0;;35304:34:::1;35264:29:::0;-1:-1:-1;35304:15:0::1;:34::i;:::-;35356:35;::::0;-1:-1:-1;;;;;3641:32:1;;3623:51;;35356:35:0::1;::::0;3611:2:1;3596:18;35356:35:0::1;3451:229:1::0;20425:104:0;20481:13;20514:7;20507:14;;;;;:::i;32366:29::-;;;;;;;;;;;24758:436;24851:4;684:10;24851:4;24934:25;684:10;24951:7;24934:9;:25::i;:::-;24907:52;;24998:15;24978:16;:35;;24970:85;;;;-1:-1:-1;;;24970:85:0;;7261:2:1;24970:85:0;;;7243:21:1;7300:2;7280:18;;;7273:30;7339:34;7319:18;;;7312:62;-1:-1:-1;;;7390:18:1;;;7383:35;7435:19;;24970:85:0;7059:401:1;24970:85:0;25091:60;25100:5;25107:7;25135:15;25116:16;:34;25091:8;:60::i;21839:193::-;21918:4;684:10;21974:28;684:10;21991:2;21995:6;21974:9;:28::i;36002:197::-;5115:13;:11;:13::i;:::-;-1:-1:-1;;;;;36089:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:40;;-1:-1:-1;;36089:40:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36155:36;;1163:41:1;;;36155:36:0::1;::::0;1136:18:1;36155:36:0::1;;;;;;;;36002:197:::0;;:::o;33820:101::-;16030:13;;-1:-1:-1;;;16030:13:0;;;;;:30;;-1:-1:-1;16048:12:0;;-1:-1:-1;;;16048:12:0;;;;16047:13;16030:30;16022:89;;;;-1:-1:-1;;;16022:89:0;;7667:2:1;16022:89:0;;;7649:21:1;7706:2;7686:18;;;7679:30;7745:34;7725:18;;;7718:62;-1:-1:-1;;;7796:18:1;;;7789:44;7850:19;;16022:89:0;7465:410:1;16022:89:0;16147:13;;-1:-1:-1;;;16147:13:0;;;;16146:14;16171:101;;;;16206:13;:20;;-1:-1:-1;;;;16241:19:0;-1:-1:-1;;;16241:19:0;;;16171:101;33889:24:::1;33905:7;33889:15;:24::i;:::-;16302:14:::0;16298:68;;;16333:13;:21;;-1:-1:-1;;;;16333:21:0;;;16011:362;33820:101;:::o;35407:587::-;5115:13;:11;:13::i;:::-;35546:12:::1;:15:::0;35531:9:::1;:12:::0;35564:7;;35531:30:::1;::::0;35546:15:::1;::::0;;::::1;::::0;35531:12:::1;:30;:::i;:::-;:40;;;;:::i;:::-;35516:9;:55:::0;;-1:-1:-1;;35516:55:0::1;;::::0;;::::1;;::::0;;;;35612:12:::1;:15:::0;35630:8;;35597:30:::1;::::0;35612:15;;;;::::1;::::0;::::1;::::0;35597:12;::::1;;:30;:::i;:::-;:41;;;;:::i;:::-;35582:9;:56:::0;;-1:-1:-1;;35582:56:0::1;::::0;::::1;::::0;;::::1;;;::::0;;;;35679:12:::1;:15:::0;35697:12;;35664:30:::1;::::0;35679:15;;;;::::1;::::0;::::1;::::0;35664:12;::::1;;:30;:::i;:::-;:45;;;;:::i;:::-;35649:9;:60:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;35649:60:0;::::1;::::0;::::1;::::0;;;35744:4:::1;35728:12:::0;;;;;;;;:20:::1;::::0;::::1;::::0;:44:::1;;-1:-1:-1::0;35752:9:0::1;:12:::0;35768:4:::1;35752:12:::0;;;::::1;;;:20;;35728:44;:68;;;;-1:-1:-1::0;35776:9:0::1;:12:::0;35792:4:::1;35776:12:::0;;;::::1;;;:20;;35728:68;35720:135;;;::::0;-1:-1:-1;;;35720:135:0;;8563:2:1;35720:135:0::1;::::0;::::1;8545:21:1::0;8602:2;8582:18;;;8575:30;8641:34;8621:18;;;8614:62;-1:-1:-1;;;8692:18:1;;;8685:52;8754:19;;35720:135:0::1;8361:418:1::0;35720:135:0::1;35868:48;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;;;;;::::1;::::0;:12:::1;::::0;:48:::1;;:::i;:::-;-1:-1:-1::0;35934:52:0::1;::::0;;8990:6:1;9023:15;;;9005:34;;9075:15;;;9070:2;9055:18;;9048:43;9127:15;;9107:18;;;9100:43;35934:52:0;;::::1;::::0;;;;8968:2:1;35934:52:0;;::::1;35407:587:::0;;;:::o;34811:136::-;34913:18;;34903:6;;-1:-1:-1;;;;;34903:6:0;34866:7;21607:18;;;;;;;;;;;34866:7;;34934:5;;34893:38;;-1:-1:-1;;;34913:18:0;;;;;34893:38;:::i;:::-;:46;;;;:::i;:::-;34886:53;;34811:136;:::o;22095:151::-;-1:-1:-1;;;;;22211:18:0;;;22184:7;22211:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22095:151::o;34955:101::-;35001:7;35032:16;;35028:1;:20;;;;:::i;17389:181::-;5115:13;:11;:13::i;:::-;17479::::1;:24:::0;;-1:-1:-1;;;;;17479:24:0;::::1;-1:-1:-1::0;;;;;;17479:24:0;;::::1;::::0;::::1;::::0;;;17544:7:::1;5302:6:::0;;-1:-1:-1;;;;;5302:6:0;;5229:87;17544:7:::1;-1:-1:-1::0;;;;;17519:43:0::1;;;;;;;;;;;17389:181:::0;:::o;28751:346::-;-1:-1:-1;;;;;28853:19:0;;28845:68;;;;-1:-1:-1;;;28845:68:0;;9751:2:1;28845:68:0;;;9733:21:1;9790:2;9770:18;;;9763:30;9829:34;9809:18;;;9802:62;-1:-1:-1;;;9880:18:1;;;9873:34;9924:19;;28845:68:0;9549:400:1;28845:68:0;-1:-1:-1;;;;;28932:21:0;;28924:68;;;;-1:-1:-1;;;28924:68:0;;10156:2:1;28924:68:0;;;10138:21:1;10195:2;10175:18;;;10168:30;10234:34;10214:18;;;10207:62;-1:-1:-1;;;10285:18:1;;;10278:32;10327:19;;28924:68:0;9954:398:1;28924:68:0;-1:-1:-1;;;;;29005:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29057:32;;1361:25:1;;;29057:32:0;;1334:18:1;29057:32:0;;;;;;;28751:346;;;:::o;5394:132::-;5302:6;;-1:-1:-1;;;;;5302:6:0;684:10;5458:23;5450:68;;;;-1:-1:-1;;;5450:68:0;;10559:2:1;5450:68:0;;;10541:21:1;;;10578:18;;;10571:30;10637:34;10617:18;;;10610:62;10689:18;;5450:68:0;10357:356:1;29388:419:0;29489:24;29516:25;29526:5;29533:7;29516:9;:25::i;:::-;29489:52;;-1:-1:-1;;29556:16:0;:37;29552:248;;29638:6;29618:16;:26;;29610:68;;;;-1:-1:-1;;;29610:68:0;;10920:2:1;29610:68:0;;;10902:21:1;10959:2;10939:18;;;10932:30;10998:31;10978:18;;;10971:59;11047:18;;29610:68:0;10718:353:1;29610:68:0;29722:51;29731:5;29738:7;29766:6;29747:16;:25;29722:8;:51::i;:::-;29478:329;29388:419;;;:::o;36207:2047::-;36336:9;;;;36335:10;:24;;;;;36358:1;36349:6;:10;36335:24;:51;;;;-1:-1:-1;36377:8:0;;-1:-1:-1;;;;;36363:23:0;;;36377:8;;;;;36363:23;;36335:51;:80;;;;-1:-1:-1;;;;;;36391:24:0;;;;;;:18;:24;;;;;;;;36390:25;36335:80;:107;;;;-1:-1:-1;;;;;;36420:22:0;;;;;;:18;:22;;;;;;;;36419:23;36335:107;36331:860;;;-1:-1:-1;;;;;36539:14:0;;36459:12;36539:14;;;:8;:14;;;;;;36505:1;;36539:14;;36535:242;;;36578:9;:12;;;:16;36574:32;;-1:-1:-1;36605:1:0;36574:32;36535:242;;;-1:-1:-1;;;;;36645:12:0;;;;;;:8;:12;;;;;;;;36641:136;;;36682:9;:12;;;;;;:16;36678:32;;-1:-1:-1;36709:1:0;36641:136;;;36749:9;:12;;;;;;:16;36745:32;;-1:-1:-1;36776:1:0;36745:32;36819:1;36810:6;:10;;;36806:267;;;36895:5;36875:9;36885:6;36875:17;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36866:26;;:6;:26;;;;:::i;:::-;:34;;;;:::i;:::-;36859:41;-1:-1:-1;36919:14:0;36859:41;36919:14;;:::i;:::-;;;37020:9;37030:6;37020:17;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36990:47;;36997:12;37010:6;36997:20;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36990:27;;:4;:27;;;;:::i;:::-;:47;;;;:::i;:::-;36970:16;;:67;;;;;;;:::i;:::-;;;;-1:-1:-1;;36806:267:0;37093:8;;37089:91;;37122:42;37138:4;37152;37159;37122:15;:42::i;:::-;36444:747;;36331:860;37211:12;37245:24;:22;:24::i;:::-;37226:15;:13;:15::i;:::-;:43;;:68;;;;-1:-1:-1;37283:6:0;;-1:-1:-1;;;;;37283:6:0;37293:1;21607:18;;;;;;;;;;;37273:21;37226:68;37320:9;;37211:83;;-1:-1:-1;37320:9:0;;37319:10;:29;;;;-1:-1:-1;;;;;;37334:14:0;;;;;;:8;:14;;;;;;;;37333:15;37319:29;:58;;;;-1:-1:-1;37368:8:0;;-1:-1:-1;;;;;37352:25:0;;;37368:8;;;;;37352:25;;37319:58;:69;;;;;37381:7;37319:69;37315:876;;;37405:9;:16;;-1:-1:-1;;37405:16:0;37417:4;37405:16;;;37482:1;37463:16;;:20;37450:696;;;37504:18;37529:16;;37525:1;:20;;;;:::i;:::-;37504:41;;37564:12;37605:30;37624:10;37605:18;:30::i;:::-;37778:16;;37678:21;;37654;;37797:10;;37762:32;;37678:21;37762:32;:::i;:::-;:45;;;;:::i;:::-;37736:71;-1:-1:-1;37830:19:0;;37826:264;;37892:15;;37884:46;;-1:-1:-1;;;;;37892:15:0;;;;37884:46;;;;;37914:15;;37892;37884:46;37892:15;37884:46;37914:15;37892;37884:46;;;;;;;37874:56;;37957:7;37953:118;;;38014:15;;37998:49;;;-1:-1:-1;;;;;38014:15:0;;;11383:51:1;;11465:2;11450:18;;11443:34;;;37998:49:0;;11356:18:1;37998:49:0;;;;;;;37953:118;-1:-1:-1;;38127:1:0;38108:16;:20;-1:-1:-1;;37450:696:0;38162:9;:17;;-1:-1:-1;;38162:17:0;;;37315:876;38203:33;38219:4;38225:2;38229:6;38203:15;:33::i;38771:182::-;-1:-1:-1;;;;;38838:14:0;;;;;;:8;:14;;;;;;;;;:23;;-1:-1:-1;;38838:23:0;;;;;;;;;;38916:29;;1163:41:1;;;38916:29:0;;1136:18:1;38916:29:0;1023:187:1;27638:675:0;-1:-1:-1;;;;;27722:21:0;;27714:67;;;;-1:-1:-1;;;27714:67:0;;11690:2:1;27714:67:0;;;11672:21:1;11729:2;11709:18;;;11702:30;11768:34;11748:18;;;11741:62;-1:-1:-1;;;11819:18:1;;;11812:31;11860:19;;27714:67:0;11488:397:1;27714:67:0;-1:-1:-1;;;;;27881:18:0;;27856:22;27881:18;;;;;;;;;;;27918:24;;;;27910:71;;;;-1:-1:-1;;;27910:71:0;;12092:2:1;27910:71:0;;;12074:21:1;12131:2;12111:18;;;12104:30;12170:34;12150:18;;;12143:62;-1:-1:-1;;;12221:18:1;;;12214:32;12263:19;;27910:71:0;11890:398:1;27910:71:0;-1:-1:-1;;;;;28017:18:0;;:9;:18;;;;;;;;;;;28038:23;;;28017:44;;28156:12;:22;;;;;;;28207:37;1361:25:1;;;28017:9:0;;:18;28207:37;;1334:18:1;28207:37:0;;;;;;;27703:610;27638:675;;:::o;17760:156::-;17850:13;17843:20;;-1:-1:-1;;;;;;17843:20:0;;;17874:34;17899:8;17874:24;:34::i;38262:292::-;38352:6;38322:8;;:37;;;;;-1:-1:-1;;;;;38322:37:0;;;;;-1:-1:-1;;;;;38322:37:0;;;;;;38397:8;;;;;;;;;-1:-1:-1;;;;;38397:8:0;-1:-1:-1;;;;;38397:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38379:48:0;;38436:4;38443:8;;;;;;;;;-1:-1:-1;;;;;38443:8:0;-1:-1:-1;;;;;38443:13:0;;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38379:80;;-1:-1:-1;;;;;;38379:80:0;;;;;;;-1:-1:-1;;;;;12779:15:1;;;38379:80:0;;;12761:34:1;12831:15;;12811:18;;;12804:43;12696:18;;38379:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38370:6;:89;;-1:-1:-1;;;;;;38370:89:0;-1:-1:-1;;;;;38370:89:0;;;;;;;;;38480:25;;-1:-1:-1;38480:11:0;:25::i;:::-;38523:23;;-1:-1:-1;;;;;38523:23:0;;;;;;;;38262:292;:::o;25664:806::-;-1:-1:-1;;;;;25761:18:0;;25753:68;;;;-1:-1:-1;;;25753:68:0;;13060:2:1;25753:68:0;;;13042:21:1;13099:2;13079:18;;;13072:30;13138:34;13118:18;;;13111:62;-1:-1:-1;;;13189:18:1;;;13182:35;13234:19;;25753:68:0;12858:401:1;25753:68:0;-1:-1:-1;;;;;25840:16:0;;25832:64;;;;-1:-1:-1;;;25832:64:0;;13466:2:1;25832:64:0;;;13448:21:1;13505:2;13485:18;;;13478:30;13544:34;13524:18;;;13517:62;-1:-1:-1;;;13595:18:1;;;13588:33;13638:19;;25832:64:0;13264:399:1;25832:64:0;-1:-1:-1;;;;;25982:15:0;;25960:19;25982:15;;;;;;;;;;;26016:21;;;;26008:72;;;;-1:-1:-1;;;26008:72:0;;13870:2:1;26008:72:0;;;13852:21:1;13909:2;13889:18;;;13882:30;13948:34;13928:18;;;13921:62;-1:-1:-1;;;13999:18:1;;;13992:36;14045:19;;26008:72:0;13668:402:1;26008:72:0;-1:-1:-1;;;;;26116:15:0;;;:9;:15;;;;;;;;;;;26134:20;;;26116:38;;26334:13;;;;;;;;;;:23;;;;;;26386:26;;1361:25:1;;;26334:13:0;;26386:26;;1334:18:1;26386:26:0;;;;;;;26425:37;27638:675;34063:380;34155:16;;;34169:1;34155:16;;;;;;;;34131:21;;34155:16;;;;;;;;;;-1:-1:-1;34155:16:0;34131:40;;34200:4;34182;34187:1;34182:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34182:23:0;;;-1:-1:-1;;;;;34182:23:0;;;;;34226:8;;;;;;;;;-1:-1:-1;;;;;34226:8:0;-1:-1:-1;;;;;34226:13:0;;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34216:4;34221:1;34216:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34216:25:0;;;:7;;;;;;;;;:25;34286:8;;34254:55;;34271:4;;34286:8;;;;34297:11;34254:8;:55::i;:::-;34322:8;;:113;;-1:-1:-1;;;34322:113:0;;:8;;;;-1:-1:-1;;;;;34322:8:0;;:59;;:113;;34382:11;;34395:1;;34398:4;;34412;;34419:15;;34322:113;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34120:323;34063:380;:::o;6489:191::-;6582:6;;;-1:-1:-1;;;;;6599:17:0;;;-1:-1:-1;;;;;;6599:17:0;;;;;;;6632:40;;6582:6;;;6599:17;6582:6;;6632:40;;6563:16;;6632:40;6552:128;6489:191;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:159::-;1464:20;;1524:6;1513:18;;1503:29;;1493:57;;1546:1;1543;1536:12;1493:57;1397:159;;;:::o;1561:184::-;1619:6;1672:2;1660:9;1651:7;1647:23;1643:32;1640:52;;;1688:1;1685;1678:12;1640:52;1711:28;1729:9;1711:28;:::i;:::-;1701:38;1561:184;-1:-1:-1;;;1561:184:1:o;1750:456::-;1827:6;1835;1843;1896:2;1884:9;1875:7;1871:23;1867:32;1864:52;;;1912:1;1909;1902:12;1864:52;1951:9;1938:23;1970:31;1995:5;1970:31;:::i;:::-;2020:5;-1:-1:-1;2077:2:1;2062:18;;2049:32;2090:33;2049:32;2090:33;:::i;:::-;1750:456;;2142:7;;-1:-1:-1;;;2196:2:1;2181:18;;;;2168:32;;1750:456::o;2211:416::-;2276:6;2284;2337:2;2325:9;2316:7;2312:23;2308:32;2305:52;;;2353:1;2350;2343:12;2305:52;2392:9;2379:23;2411:31;2436:5;2411:31;:::i;:::-;2461:5;-1:-1:-1;2518:2:1;2503:18;;2490:32;2560:15;;2553:23;2541:36;;2531:64;;2591:1;2588;2581:12;2531:64;2614:7;2604:17;;;2211:416;;;;;:::o;2821:180::-;2880:6;2933:2;2921:9;2912:7;2908:23;2904:32;2901:52;;;2949:1;2946;2939:12;2901:52;-1:-1:-1;2972:23:1;;2821:180;-1:-1:-1;2821:180:1:o;3199:247::-;3258:6;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3366:9;3353:23;3385:31;3410:5;3385:31;:::i;3893:328::-;3967:6;3975;3983;4036:2;4024:9;4015:7;4011:23;4007:32;4004:52;;;4052:1;4049;4042:12;4004:52;4075:28;4093:9;4075:28;:::i;:::-;4065:38;;4122:37;4155:2;4144:9;4140:18;4122:37;:::i;:::-;4112:47;;4178:37;4211:2;4200:9;4196:18;4178:37;:::i;:::-;4168:47;;3893:328;;;;;:::o;4226:388::-;4294:6;4302;4355:2;4343:9;4334:7;4330:23;4326:32;4323:52;;;4371:1;4368;4361:12;4323:52;4410:9;4397:23;4429:31;4454:5;4429:31;:::i;:::-;4479:5;-1:-1:-1;4536:2:1;4521:18;;4508:32;4549:33;4508:32;4549:33;:::i;4619:380::-;4698:1;4694:12;;;;4741;;;4762:61;;4816:4;4808:6;4804:17;4794:27;;4762:61;4869:2;4861:6;4858:14;4838:18;4835:38;4832:161;;4915:10;4910:3;4906:20;4903:1;4896:31;4950:4;4947:1;4940:15;4978:4;4975:1;4968:15;4832:161;;4619:380;;;:::o;5908:127::-;5969:10;5964:3;5960:20;5957:1;5950:31;6000:4;5997:1;5990:15;6024:4;6021:1;6014:15;6040:125;6105:9;;;6126:10;;;6123:36;;;6139:18;;:::i;7880:127::-;7941:10;7936:3;7932:20;7929:1;7922:31;7972:4;7969:1;7962:15;7996:4;7993:1;7986:15;8012:171;8080:6;8119:10;;;8107;;;8103:27;;8142:12;;;8139:38;;;8157:18;;:::i;:::-;8139:38;8012:171;;;;:::o;8188:168::-;8255:6;8281:10;;;8293;;;8277:27;;8316:11;;;8313:37;;;8330:18;;:::i;9154:168::-;9227:9;;;9258;;9275:15;;;9269:22;;9255:37;9245:71;;9296:18;;:::i;9327:217::-;9367:1;9393;9383:132;;9437:10;9432:3;9428:20;9425:1;9418:31;9472:4;9469:1;9462:15;9500:4;9497:1;9490:15;9383:132;-1:-1:-1;9529:9:1;;9327:217::o;11076:128::-;11143:9;;;11164:11;;;11161:37;;;11178:18;;:::i;12293:251::-;12363:6;12416:2;12404:9;12395:7;12391:23;12387:32;12384:52;;;12432:1;12429;12422:12;12384:52;12464:9;12458:16;12483:31;12508:5;12483:31;:::i;14207:980::-;14469:4;14517:3;14506:9;14502:19;14548:6;14537:9;14530:25;14574:2;14612:6;14607:2;14596:9;14592:18;14585:34;14655:3;14650:2;14639:9;14635:18;14628:31;14679:6;14714;14708:13;14745:6;14737;14730:22;14783:3;14772:9;14768:19;14761:26;;14822:2;14814:6;14810:15;14796:29;;14843:1;14853:195;14867:6;14864:1;14861:13;14853:195;;;14932:13;;-1:-1:-1;;;;;14928:39:1;14916:52;;15023:15;;;;14988:12;;;;14964:1;14882:9;14853:195;;;-1:-1:-1;;;;;;;15104:32:1;;;;15099:2;15084:18;;15077:60;-1:-1:-1;;;15168:3:1;15153:19;15146:35;15065:3;14207:980;-1:-1:-1;;;14207:980:1:o

Swarm Source

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