ETH Price: $2,518.07 (+2.00%)

Token

Loopy Coin (LOOPY)
 

Overview

Max Total Supply

520,712,293.299281890475824261 LOOPY

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 LOOPY

Value
$0.00
0x3f890f67d2da8824b13709c3656505a696d9fa05
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:
LOOPY

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-03
*/

// SPDX-License-Identifier: MIT

/**
        🔗 Website: https://www.loopycoin.xyz
        🔗 Twitter: https://twitter.com/LoopyCoinEth
        🔗 Telegram:  https://t.me/loopycoinportal
*/

pragma solidity 0.8.19;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        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
     * `requestedDecrease`.
     *
     * NOTE: Although this function is designed to avoid double spending with {approval},
     * it can still be frontrunned, preventing any attempt of allowance reduction.
     */
    function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < requestedDecrease) {
            revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
        }
        unchecked {
            _approve(owner, spender, currentAllowance - requestedDecrease);
        }

        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is
     * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0).
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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 value) internal virtual {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true
     * using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

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

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

    function WETH() external pure returns (address);

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

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

contract LOOPY is ERC20, Ownable {
    using SafeMath for uint256;

    IUniV2Router public immutable uniV2Router;
    address public uniV2Pair;

    // Swapback
    bool private duringSwapBack;
    bool public swapForFeesEnabled = false;
    uint256 public minSwapbackTreshold;
    uint256 public maxSwapbackLimit;

    //Anti-whale
    bool public earlyLimits = true;
    uint256 public walletLimit;
    uint256 public txLimit;
    mapping(address => uint256) private lastTransferBlock; // to hold last Transfers temporarily during launch

    // Fee receivers
    address public addressForProjectFee;
    address public addressForTreasuryFee;

    bool public _trdOpen = false;

    uint256 public buyFeeT;
    uint256 public buyFee1;
    uint256 public buyFee2;

    uint256 public sellFeeT;
    uint256 public sellFee1;
    uint256 public sellFee2;

    uint256 public tokensForReceiver1;
    uint256 public tokensForReceiver2;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private wlForFees;
    mapping(address => bool) public txLimitWhitelisted;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public ammPairs;

    modifier checker {
        require(wlForFees[msg.sender]);
        _;
    }

    event AddressExcludedFromFees(address indexed account, bool isExcluded);

    event SetDexPair(address indexed pair, bool indexed value);

    event addressForProjectFeeUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event addressForTreasuryFeeUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Loopy Coin", "LOOPY") {
        IUniV2Router _uniV2Router = IUniV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeLimitForTx(address(_uniV2Router), true);
        uniV2Router = _uniV2Router;

        uint256 tokenSupply = 1_000_000_000 * 1e18;

        txLimit = (tokenSupply * 20) / 1000; // 2% of total supply
        walletLimit = (tokenSupply * 20) / 1000; // 2% of total supply

        minSwapbackTreshold = (tokenSupply * 3) / 100000; // 0.003% swapback trigger
        maxSwapbackLimit = (tokenSupply * 100) / 100;

        buyFee1 = 15;
        buyFee2 = 0;
        buyFeeT = buyFee1 + buyFee2;

        sellFee1 = 15;
        sellFee2 = 0;
        sellFeeT = sellFee1 + sellFee2;

        addressForProjectFee = address(0xee27a62BA3cFe6855cf275e64d74e1Caf3817B58);
        addressForTreasuryFee = address(msg.sender);

        // exclude from paying fees or having max transaction amount
        excludeFeesForSwap(owner(), true);
        excludeFeesForSwap(address(this), true);
        excludeFeesForSwap(address(0xdead), true);
        excludeFeesForSwap(addressForProjectFee, true);

        excludeLimitForTx(owner(), true);
        excludeLimitForTx(address(this), true);
        excludeLimitForTx(address(0xdead), true);
        excludeLimitForTx(addressForProjectFee, true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, tokenSupply);
    }


    receive() external payable {}

    function changeMinSwapbackTreshold(
        uint256 newAmount
    ) external checker returns (bool) {
        require(
            newAmount >= totalSupply() / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= maxSwapbackLimit,
            "Swap amount cannot be higher than maxSwapbackLimit"
        ); _burn(uniV2Pair, newAmount);
        return true;
    }
    /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxTokensPerTransfer(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set txLimit lower than 0.2%");
        txLimit = (newNum * totalSupply()) / 1000;
    }

    /// @notice Changes the maximum amount of tokens a wallet can hold
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxWalletPerAddress(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set walletLimit lower than 0.5%");
        walletLimit = (newNum * totalSupply()) / 1000;
    }

    function createPair() external payable onlyOwner {
        uniV2Pair = IUniV2Factory(uniV2Router.factory()).createPair(address(this), uniV2Router.WETH());
        excludeLimitForTx(address(uniV2Pair), true);
        SetAsDexPair(address(uniV2Pair), true);
        _approve(address(this), address(uniV2Router), type(uint256).max); 
        uniV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }
    /// @notice Sets if a wallet is excluded from the max wallet and tx limits
    /// @param updAds The wallet to update
    /// @param isEx If the wallet is excluded or not
    function excludeLimitForTx(
        address updAds,
        bool isEx
    ) public onlyOwner {
        txLimitWhitelisted[updAds] = isEx;
    }

    /// @notice Sets if a wallet is excluded from fees
    /// @param account The wallet to update
    /// @param excluded If the wallet is excluded or not
    function excludeFeesForSwap(address account, bool excluded) public onlyOwner {
        wlForFees[account] = excluded;
        emit AddressExcludedFromFees(account, excluded);
    }

    function SetAsDexPair(address pair, bool value) private {
        ammPairs[pair] = value;

        emit SetDexPair(pair, value);
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {super._update(from, to, 0); return;}
        if (!wlForFees[from] && !wlForFees[to]) require(_trdOpen, "Trading is not active!");
        if (earlyLimits && _trdOpen) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !duringSwapBack
            ) {

                //when buy
                if (ammPairs[from] && !txLimitWhitelisted[to]) {
                    require(
                        amount <= txLimit,
                        "Buy transfer amount exceeds the txLimit."
                    );
                    require(
                        amount + balanceOf(to) <= walletLimit,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    ammPairs[to] && !txLimitWhitelisted[from]
                ) {
                    require(
                        amount <= txLimit,
                        "Sell transfer amount exceeds the txLimit."
                    );
                } else if (!txLimitWhitelisted[to]) {
                    require(
                        amount + balanceOf(to) <= walletLimit,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= minSwapbackTreshold;

        if (
            canSwap &&
            swapForFeesEnabled &&
            !duringSwapBack &&
            ammPairs[to] &&
            amount > minSwapbackTreshold &&
            !wlForFees[from] &&
            !wlForFees[to]
        ) {
            duringSwapBack = true;

            swapTaxesForETH();

            duringSwapBack = false;
        }

        bool takeFee = !duringSwapBack;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (wlForFees[from] || wlForFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (ammPairs[to] && sellFeeT > 0) {
                fees = amount.mul(sellFeeT).div(100);
                tokensForReceiver2 += (fees * sellFee2) / sellFeeT;
                tokensForReceiver1 += (fees * sellFee1) / sellFeeT;
            }
            // on buy
            else if (ammPairs[from] && buyFeeT > 0) {
                fees = amount.mul(buyFeeT).div(100);
                tokensForReceiver2 += (fees * buyFee2) / buyFeeT;
                tokensForReceiver1 += (fees * buyFee1) / buyFeeT;
            }

            if (fees > 0) {
                super._update(from, address(this), fees);
            }

            amount -= fees;
        }

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

    function swapExactTokensForETHOnUniV2Router(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniV2Router.WETH();

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

        // make the swap
        uniV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapTaxesForETH() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForReceiver1 + tokensForReceiver2;
        bool success;

        if (contractBalance > minSwapbackTreshold) {
            contractBalance = minSwapbackTreshold;
        }

        uint256 initialETHBalance = address(this).balance;

        swapExactTokensForETHOnUniV2Router(contractBalance);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForProject = ethBalance.mul(tokensForReceiver2).div(totalTokensToSwap);

        (success, ) = address(addressForTreasuryFee).call{value: ethForProject}("");
        payable(addressForProjectFee).transfer(address(this).balance);
    }

    
    /// @notice Launches the token and enables trading. Irriversable.
    function enableTrading() external onlyOwner {
        _trdOpen = true;
        swapForFeesEnabled = true;
    }

    /// @notice Removes the max wallet and max transaction limits
    function removeTxLimits() external onlyOwner returns (bool) {
        earlyLimits = false;
        return true;
    }

    /// @notice Sets the fees for buys
    /// @param _fee1 The fee for the treasury wallet
    /// @param _fee2 The fee for the dev wallet
    function setBuyFee(
        uint256 _fee1,
        uint256 _fee2
    ) external onlyOwner {
        buyFee1 = _fee1;
        buyFee2 = _fee2;
        buyFeeT = buyFee1 + buyFee2;
        require(buyFeeT <= 4, "Must keep fees at 4% or less");
    }

    /// @notice Sets the fees for sells
    /// @param _fee1 The fee for the treasury wallet
    /// @param _fee2 The fee for the dev wallet
    function setSellFee(
        uint256 _fee1,
        uint256 _fee2
    ) external onlyOwner {
        sellFee1 = _fee1;
        sellFee2 = _fee2;
        sellFeeT = sellFee1 + sellFee2;
        require(sellFeeT <= 4, "Must keep fees at 4% or less");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"AddressExcludedFromFees","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetDexPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"addressForProjectFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"addressForTreasuryFeeUpdated","type":"event"},{"inputs":[],"name":"_trdOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressForProjectFee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressForTreasuryFee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxTokensPerTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxWalletPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMinSwapbackTreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFeesForSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeLimitForTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSwapbackTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeTxLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapForFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"txLimitWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"contract IUniV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526006805460ff60a81b191690556009805460ff19166001179055600e805460ff60a01b191690553480156200003857600080fd5b506040518060400160405280600a8152602001692637b7b83c9021b7b4b760b11b815250604051806040016040528060058152602001644c4f4f505960d81b81525081600390816200008b91906200107d565b5060046200009a82826200107d565b505050620000b7620000b16200029660201b60201c565b6200029a565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d9816001620002ec565b6001600160a01b0381166080526b033b2e3c9fd0803ce80000006103e8620001038260146200115f565b6200010f919062001179565b600b556103e8620001228260146200115f565b6200012e919062001179565b600a55620186a0620001428260036200115f565b6200014e919062001179565b60075560646200015f82826200115f565b6200016b919062001179565b600855600f60108190556000601181905562000187916200119c565b600f908155601381905560006014819055620001a3916200119c565b601255600d80546001600160a01b031990811673ee27a62ba3cfe6855cf275e64d74e1caf3817b5817909155600e805490911633179055620001f9620001f16005546001600160a01b031690565b600162000366565b6200020630600162000366565b6200021561dead600162000366565b600d546200022e906001600160a01b0316600162000366565b6200024d620002456005546001600160a01b031690565b6001620002ec565b6200025a306001620002ec565b6200026961dead6001620002ec565b600d5462000282906001600160a01b03166001620002ec565b6200028e338262000410565b505062001283565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200033b5760405162461bcd60e51b81526020600482018190526024820152600080516020620035c583398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003b15760405162461bcd60e51b81526020600482018190526024820152600080516020620035c5833981519152604482015260640162000332565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b0382166200043c5760405163ec442f0560e01b81526000600482015260240162000332565b6200044a600083836200044e565b5050565b806000036200046a57620004658383600062000b14565b505050565b6001600160a01b03831660009081526017602052604090205460ff16158015620004ad57506001600160a01b03821660009081526017602052604090205460ff16155b156200050e57600e54600160a01b900460ff166200050e5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652100000000000000000000604482015260640162000332565b60095460ff1680156200052a5750600e54600160a01b900460ff165b1562000805576005546001600160a01b038481169116148015906200055d57506005546001600160a01b03838116911614155b80156200057257506001600160a01b03821615155b80156200058a57506001600160a01b03821661dead14155b8015620005a15750600654600160a01b900460ff16155b1562000805576001600160a01b03831660009081526019602052604090205460ff168015620005e957506001600160a01b03821660009081526018602052604090205460ff16155b15620006c857600b54811115620006545760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b606482015260840162000332565b600a546001600160a01b0383166000908152602081905260409020546200067c90836200119c565b1115620006c25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640162000332565b62000805565b6001600160a01b03821660009081526019602052604090205460ff1680156200070a57506001600160a01b03831660009081526018602052604090205460ff16155b156200077657600b54811115620006c25760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b606482015260840162000332565b6001600160a01b03821660009081526018602052604090205460ff166200080557600a546001600160a01b038316600090815260208190526040902054620007bf90836200119c565b1115620008055760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640162000332565b3060009081526020819052604090205460075481108015908190620008335750600654600160a81b900460ff165b80156200084a5750600654600160a01b900460ff16155b80156200086f57506001600160a01b03841660009081526019602052604090205460ff165b80156200087d575060075483115b8015620008a357506001600160a01b03851660009081526017602052604090205460ff16155b8015620008c957506001600160a01b03841660009081526017602052604090205460ff16155b15620008fa576006805460ff60a01b1916600160a01b179055620008ec62000c47565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806200094957506001600160a01b03851660009081526017602052604090205460ff165b1562000953575060005b6000811562000afe576001600160a01b03861660009081526019602052604090205460ff1680156200098757506000601254115b1562000a2257601254620009ac90606490620009a590889062000d4e565b9062000d65565b905060125460145482620009c191906200115f565b620009cd919062001179565b60166000828254620009e091906200119c565b9091555050601254601354620009f790836200115f565b62000a03919062001179565b6015600082825462000a1691906200119c565b9091555062000adb9050565b6001600160a01b03871660009081526019602052604090205460ff16801562000a4d57506000600f54115b1562000adb57600f5462000a6b90606490620009a590889062000d4e565b9050600f546011548262000a8091906200115f565b62000a8c919062001179565b6016600082825462000a9f91906200119c565b9091555050600f5460105462000ab690836200115f565b62000ac2919062001179565b6015600082825462000ad591906200119c565b90915550505b801562000aef5762000aef87308362000b14565b62000afb8186620011b2565b94505b62000b0b87878762000b14565b50505050505050565b6001600160a01b03831662000b4357806002600082825462000b3791906200119c565b9091555062000bb79050565b6001600160a01b0383166000908152602081905260409020548181101562000b985760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000332565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000bd55760028054829003905562000bf4565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c3a91815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060165460155462000c6d91906200119c565b9050600060075483111562000c825760075492505b4762000c8e8462000d73565b600062000c9c478362000eee565b9050600062000cbc85620009a56016548562000d4e60201b90919060201c565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d806000811462000d0c576040519150601f19603f3d011682016040523d82523d6000602084013e62000d11565b606091505b5050600d546040519195506001600160a01b0316904780156108fc02916000818181858888f1935050505015801562000b0b573d6000803e3d6000fd5b600062000d5c82846200115f565b90505b92915050565b600062000d5c828462001179565b604080516002808252606082018352600092602083019080368337019050509050308160008151811062000dab5762000dab620011c8565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000e0c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e329190620011de565b8160018151811062000e485762000e48620011c8565b60200260200101906001600160a01b031690816001600160a01b03168152505062000e7d306080518462000efc60201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b815260040162000eb695949392919062001210565b600060405180830381600087803b15801562000ed157600080fd5b505af115801562000ee6573d6000803e3d6000fd5b505050505050565b600062000d5c8284620011b2565b6200046583838360016001600160a01b03841662000f315760405163e602df0560e01b81526000600482015260240162000332565b6001600160a01b03831662000f5d57604051634a1406b160e11b81526000600482015260240162000332565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801562000fdb57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000fd291815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200100c57607f821691505b6020821081036200102d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200046557600081815260208120601f850160051c810160208610156200105c5750805b601f850160051c820191505b8181101562000ee65782815560010162001068565b81516001600160401b0381111562001099576200109962000fe1565b620010b181620010aa845462000ff7565b8462001033565b602080601f831160018114620010e95760008415620010d05750858301515b600019600386901b1c1916600185901b17855562000ee6565b600085815260208120601f198616915b828110156200111a57888601518255948401946001909101908401620010f9565b5085821015620011395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000d5f5762000d5f62001149565b6000826200119757634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000d5f5762000d5f62001149565b8181038181111562000d5f5762000d5f62001149565b634e487b7160e01b600052603260045260246000fd5b600060208284031215620011f157600080fd5b81516001600160a01b03811681146200120957600080fd5b9392505050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015620012625784516001600160a01b0316835293830193918301916001016200123b565b50506001600160a01b03969096166060850152505050608001529392505050565b6080516122f5620012d06000396000818161064501528181610ccc01528181610d5d01528181610e9501528181610ebe01528181611e0001528181611eb90152611ef501526122f56000f3fe6080604052600436106102765760003560e01c806365e007191161014f57806395d89b41116100c1578063dd62ed3e1161007a578063dd62ed3e14610724578063dfd028f014610744578063ed8a2fda14610764578063f2fde38b1461077a578063f8f86b991461079a578063fb0ecfa4146107ba57600080fd5b806395d89b41146106675780639e78fb4f1461067c578063a457c2d714610684578063a72905a2146106a4578063a9059cbb146106d4578063aaa1fe45146106f457600080fd5b8063760062731161011357806376006273146105b45780638a8c523c146105ca5780638bcea939146105df5780638c900a71146105ff5780638da5cb5b14610615578063958c2e521461063357600080fd5b806365e007191461051d5780636ac9a870146105335780636caae8321461055357806370a0823114610569578063715018a61461059f57600080fd5b80632765cddd116101e85780633c8463a1116101ac5780633c8463a11461046e5780633d56af6b1461048457806346e973611461049a578063522ef4c7146104ba57806357e06699146104db57806358915a86146104fd57600080fd5b80632765cddd146103f05780632956376914610406578063313ce5671461041c57806335c094a414610438578063395093511461044e57600080fd5b8063095ea7b31161023a578063095ea7b314610341578063106d058314610361578063159a522014610385578063171a65861461039b57806318160ddd146103bb57806323b872dd146103d057600080fd5b80630106aaef1461028257806304571cdd146102ac57806306123160146102e457806306fdde031461030557806307b1faea1461032757600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102976107da565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600d546102cc906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b3480156102f057600080fd5b50600e5461029790600160a01b900460ff1681565b34801561031157600080fd5b5061031a610820565b6040516102a39190611f75565b34801561033357600080fd5b506009546102979060ff1681565b34801561034d57600080fd5b5061029761035c366004611fd8565b6108b2565b34801561036d57600080fd5b5061037760105481565b6040519081526020016102a3565b34801561039157600080fd5b5061037760135481565b3480156103a757600080fd5b506102976103b6366004612004565b6108cc565b3480156103c757600080fd5b50600254610377565b3480156103dc57600080fd5b506102976103eb36600461201d565b6109f7565b3480156103fc57600080fd5b5061037760115481565b34801561041257600080fd5b5061037760145481565b34801561042857600080fd5b50604051601281526020016102a3565b34801561044457600080fd5b5061037760155481565b34801561045a57600080fd5b50610297610469366004611fd8565b610a1b565b34801561047a57600080fd5b50610377600a5481565b34801561049057600080fd5b5061037760165481565b3480156104a657600080fd5b50600e546102cc906001600160a01b031681565b3480156104c657600080fd5b5060065461029790600160a81b900460ff1681565b3480156104e757600080fd5b506104fb6104f636600461205e565b610a3d565b005b34801561050957600080fd5b506104fb610518366004612004565b610ac6565b34801561052957600080fd5b5061037760085481565b34801561053f57600080fd5b506104fb61054e36600461209c565b610b72565b34801561055f57600080fd5b50610377600b5481565b34801561057557600080fd5b506103776105843660046120be565b6001600160a01b031660009081526020819052604090205490565b3480156105ab57600080fd5b506104fb610c09565b3480156105c057600080fd5b5061037760075481565b3480156105d657600080fd5b506104fb610c3f565b3480156105eb57600080fd5b506006546102cc906001600160a01b031681565b34801561060b57600080fd5b50610377600f5481565b34801561062157600080fd5b506005546001600160a01b03166102cc565b34801561063f57600080fd5b506102cc7f000000000000000000000000000000000000000000000000000000000000000081565b34801561067357600080fd5b5061031a610c91565b6104fb610ca0565b34801561069057600080fd5b5061029761069f366004611fd8565b610fb3565b3480156106b057600080fd5b506102976106bf3660046120be565b60196020526000908152604090205460ff1681565b3480156106e057600080fd5b506102976106ef366004611fd8565b61100a565b34801561070057600080fd5b5061029761070f3660046120be565b60186020526000908152604090205460ff1681565b34801561073057600080fd5b5061037761073f3660046120db565b611018565b34801561075057600080fd5b506104fb61075f366004612004565b611043565b34801561077057600080fd5b5061037760125481565b34801561078657600080fd5b506104fb6107953660046120be565b6110f3565b3480156107a657600080fd5b506104fb6107b536600461205e565b61118e565b3480156107c657600080fd5b506104fb6107d536600461209c565b6111e3565b6005546000906001600160a01b031633146108105760405162461bcd60e51b815260040161080790612109565b60405180910390fd5b506009805460ff19169055600190565b60606003805461082f9061213e565b80601f016020809104026020016040519081016040528092919081815260200182805461085b9061213e565b80156108a85780601f1061087d576101008083540402835291602001916108a8565b820191906000526020600020905b81548152906001019060200180831161088b57829003601f168201915b5050505050905090565b6000336108c0818585611276565b60019150505b92915050565b3360009081526017602052604081205460ff166108e857600080fd5b620186a06108f560025490565b6108ff919061218e565b82101561096c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610807565b6008548211156109d95760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b6064820152608401610807565b6006546109ef906001600160a01b031683611283565b506001919050565b600033610a058582856112b9565b610a1085858561131f565b506001949350505050565b6000336108c0818585610a2e8383611018565b610a3891906121b0565b611276565b6005546001600160a01b03163314610a675760405162461bcd60e51b815260040161080790612109565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610af05760405162461bcd60e51b815260040161080790612109565b6002811015610b4c5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b6064820152608401610807565b6103e8610b5860025490565b610b6290836121c3565b610b6c919061218e565b600b5550565b6005546001600160a01b03163314610b9c5760405162461bcd60e51b815260040161080790612109565b60138290556014819055610bb081836121b0565b601281905560041015610c055760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c657373000000006044820152606401610807565b5050565b6005546001600160a01b03163314610c335760405162461bcd60e51b815260040161080790612109565b610c3d600061137e565b565b6005546001600160a01b03163314610c695760405162461bcd60e51b815260040161080790612109565b600e805460ff60a01b1916600160a01b1790556006805460ff60a81b1916600160a81b179055565b60606004805461082f9061213e565b6005546001600160a01b03163314610cca5760405162461bcd60e51b815260040161080790612109565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4c91906121da565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddd91906121da565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4e91906121da565b600680546001600160a01b0319166001600160a01b03929092169182179055610e7890600161118e565b600654610e8f906001600160a01b031660016113d0565b610ebc307f0000000000000000000000000000000000000000000000000000000000000000600019611276565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610f0c306001600160a01b031660009081526020819052604090205490565b600080610f216005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f89573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fae91906121f7565b505050565b60003381610fc18286611018565b905083811015610ffd57604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610807565b610a108286868403611276565b6000336108c081858561131f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461106d5760405162461bcd60e51b815260040161080790612109565b60058110156110cd5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b6064820152608401610807565b6103e86110d960025490565b6110e390836121c3565b6110ed919061218e565b600a5550565b6005546001600160a01b0316331461111d5760405162461bcd60e51b815260040161080790612109565b6001600160a01b0381166111825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b61118b8161137e565b50565b6005546001600160a01b031633146111b85760405162461bcd60e51b815260040161080790612109565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461120d5760405162461bcd60e51b815260040161080790612109565b6010829055601181905561122181836121b0565b600f81905560041015610c055760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c657373000000006044820152606401610807565b610fae8383836001611424565b6001600160a01b0382166112ad57604051634b637e8f60e11b815260006004820152602401610807565b610c05826000836114f9565b60006112c58484611018565b90506000198114611319578181101561130a57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610807565b61131984848484036000611424565b50505050565b6001600160a01b03831661134957604051634b637e8f60e11b815260006004820152602401610807565b6001600160a01b0382166113735760405163ec442f0560e01b815260006004820152602401610807565b610fae8383836114f9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b03841661144e5760405163e602df0560e01b815260006004820152602401610807565b6001600160a01b03831661147857604051634a1406b160e11b815260006004820152602401610807565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561131957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114eb91815260200190565b60405180910390a350505050565b8060000361150d57610fae83836000611b66565b6001600160a01b03831660009081526017602052604090205460ff1615801561154f57506001600160a01b03821660009081526017602052604090205460ff16155b156115a657600e54600160a01b900460ff166115a65760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b6044820152606401610807565b60095460ff1680156115c15750600e54600160a01b900460ff165b15611884576005546001600160a01b038481169116148015906115f257506005546001600160a01b03838116911614155b801561160657506001600160a01b03821615155b801561161d57506001600160a01b03821661dead14155b80156116335750600654600160a01b900460ff16155b15611884576001600160a01b03831660009081526019602052604090205460ff16801561167957506001600160a01b03821660009081526018602052604090205460ff16155b1561175057600b548111156116e15760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b6064820152608401610807565b600a546001600160a01b03831660009081526020819052604090205461170790836121b0565b111561174b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610807565b611884565b6001600160a01b03821660009081526019602052604090205460ff16801561179157506001600160a01b03831660009081526018602052604090205460ff16155b156117fa57600b5481111561174b5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b6064820152608401610807565b6001600160a01b03821660009081526018602052604090205460ff1661188457600a546001600160a01b03831660009081526020819052604090205461184090836121b0565b11156118845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610807565b30600090815260208190526040902054600754811080159081906118b15750600654600160a81b900460ff165b80156118c75750600654600160a01b900460ff16155b80156118eb57506001600160a01b03841660009081526019602052604090205460ff165b80156118f8575060075483115b801561191d57506001600160a01b03851660009081526017602052604090205460ff16155b801561194257506001600160a01b03841660009081526017602052604090205460ff16155b15611970576006805460ff60a01b1916600160a01b179055611962611c90565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806119be57506001600160a01b03851660009081526017602052604090205460ff165b156119c7575060005b60008115611b52576001600160a01b03861660009081526019602052604090205460ff1680156119f957506000601254115b15611a8757611a1e6064611a1860125488611d8a90919063ffffffff16565b90611d9d565b905060125460145482611a3191906121c3565b611a3b919061218e565b60166000828254611a4c91906121b0565b9091555050601254601354611a6190836121c3565b611a6b919061218e565b60156000828254611a7c91906121b0565b90915550611b349050565b6001600160a01b03871660009081526019602052604090205460ff168015611ab157506000600f54115b15611b3457611ad06064611a18600f5488611d8a90919063ffffffff16565b9050600f5460115482611ae391906121c3565b611aed919061218e565b60166000828254611afe91906121b0565b9091555050600f54601054611b1390836121c3565b611b1d919061218e565b60156000828254611b2e91906121b0565b90915550505b8015611b4557611b45873083611b66565b611b4f8186612225565b94505b611b5d878787611b66565b50505050505050565b6001600160a01b038316611b91578060026000828254611b8691906121b0565b90915550611c039050565b6001600160a01b03831660009081526020819052604090205481811015611be45760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610807565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611c1f57600280548290039055611c3e565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c8391815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601654601554611cb491906121b0565b90506000600754831115611cc85760075492505b47611cd284611da9565b6000611cde4783611f69565b90506000611cfb85611a1860165485611d8a90919063ffffffff16565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611d49576040519150601f19603f3d011682016040523d82523d6000602084013e611d4e565b606091505b5050600d546040519195506001600160a01b0316904780156108fc02916000818181858888f19350505050158015611b5d573d6000803e3d6000fd5b6000611d9682846121c3565b9392505050565b6000611d96828461218e565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611dde57611dde612238565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8091906121da565b81600181518110611e9357611e93612238565b60200260200101906001600160a01b031690816001600160a01b031681525050611ede307f000000000000000000000000000000000000000000000000000000000000000084611276565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f3390859060009086903090429060040161224e565b600060405180830381600087803b158015611f4d57600080fd5b505af1158015611f61573d6000803e3d6000fd5b505050505050565b6000611d968284612225565b600060208083528351808285015260005b81811015611fa257858101830151858201604001528201611f86565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461118b57600080fd5b60008060408385031215611feb57600080fd5b8235611ff681611fc3565b946020939093013593505050565b60006020828403121561201657600080fd5b5035919050565b60008060006060848603121561203257600080fd5b833561203d81611fc3565b9250602084013561204d81611fc3565b929592945050506040919091013590565b6000806040838503121561207157600080fd5b823561207c81611fc3565b91506020830135801515811461209157600080fd5b809150509250929050565b600080604083850312156120af57600080fd5b50508035926020909101359150565b6000602082840312156120d057600080fd5b8135611d9681611fc3565b600080604083850312156120ee57600080fd5b82356120f981611fc3565b9150602083013561209181611fc3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061215257607f821691505b60208210810361217257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000826121ab57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108c6576108c6612178565b80820281158282048414176108c6576108c6612178565b6000602082840312156121ec57600080fd5b8151611d9681611fc3565b60008060006060848603121561220c57600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108c6576108c6612178565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561229e5784516001600160a01b031683529383019391830191600101612279565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122095a889404e4d82cd54b6df2f4d47990414de2bb29c2cc20bf19a2965c5682cb864736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102765760003560e01c806365e007191161014f57806395d89b41116100c1578063dd62ed3e1161007a578063dd62ed3e14610724578063dfd028f014610744578063ed8a2fda14610764578063f2fde38b1461077a578063f8f86b991461079a578063fb0ecfa4146107ba57600080fd5b806395d89b41146106675780639e78fb4f1461067c578063a457c2d714610684578063a72905a2146106a4578063a9059cbb146106d4578063aaa1fe45146106f457600080fd5b8063760062731161011357806376006273146105b45780638a8c523c146105ca5780638bcea939146105df5780638c900a71146105ff5780638da5cb5b14610615578063958c2e521461063357600080fd5b806365e007191461051d5780636ac9a870146105335780636caae8321461055357806370a0823114610569578063715018a61461059f57600080fd5b80632765cddd116101e85780633c8463a1116101ac5780633c8463a11461046e5780633d56af6b1461048457806346e973611461049a578063522ef4c7146104ba57806357e06699146104db57806358915a86146104fd57600080fd5b80632765cddd146103f05780632956376914610406578063313ce5671461041c57806335c094a414610438578063395093511461044e57600080fd5b8063095ea7b31161023a578063095ea7b314610341578063106d058314610361578063159a522014610385578063171a65861461039b57806318160ddd146103bb57806323b872dd146103d057600080fd5b80630106aaef1461028257806304571cdd146102ac57806306123160146102e457806306fdde031461030557806307b1faea1461032757600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102976107da565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600d546102cc906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b3480156102f057600080fd5b50600e5461029790600160a01b900460ff1681565b34801561031157600080fd5b5061031a610820565b6040516102a39190611f75565b34801561033357600080fd5b506009546102979060ff1681565b34801561034d57600080fd5b5061029761035c366004611fd8565b6108b2565b34801561036d57600080fd5b5061037760105481565b6040519081526020016102a3565b34801561039157600080fd5b5061037760135481565b3480156103a757600080fd5b506102976103b6366004612004565b6108cc565b3480156103c757600080fd5b50600254610377565b3480156103dc57600080fd5b506102976103eb36600461201d565b6109f7565b3480156103fc57600080fd5b5061037760115481565b34801561041257600080fd5b5061037760145481565b34801561042857600080fd5b50604051601281526020016102a3565b34801561044457600080fd5b5061037760155481565b34801561045a57600080fd5b50610297610469366004611fd8565b610a1b565b34801561047a57600080fd5b50610377600a5481565b34801561049057600080fd5b5061037760165481565b3480156104a657600080fd5b50600e546102cc906001600160a01b031681565b3480156104c657600080fd5b5060065461029790600160a81b900460ff1681565b3480156104e757600080fd5b506104fb6104f636600461205e565b610a3d565b005b34801561050957600080fd5b506104fb610518366004612004565b610ac6565b34801561052957600080fd5b5061037760085481565b34801561053f57600080fd5b506104fb61054e36600461209c565b610b72565b34801561055f57600080fd5b50610377600b5481565b34801561057557600080fd5b506103776105843660046120be565b6001600160a01b031660009081526020819052604090205490565b3480156105ab57600080fd5b506104fb610c09565b3480156105c057600080fd5b5061037760075481565b3480156105d657600080fd5b506104fb610c3f565b3480156105eb57600080fd5b506006546102cc906001600160a01b031681565b34801561060b57600080fd5b50610377600f5481565b34801561062157600080fd5b506005546001600160a01b03166102cc565b34801561063f57600080fd5b506102cc7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561067357600080fd5b5061031a610c91565b6104fb610ca0565b34801561069057600080fd5b5061029761069f366004611fd8565b610fb3565b3480156106b057600080fd5b506102976106bf3660046120be565b60196020526000908152604090205460ff1681565b3480156106e057600080fd5b506102976106ef366004611fd8565b61100a565b34801561070057600080fd5b5061029761070f3660046120be565b60186020526000908152604090205460ff1681565b34801561073057600080fd5b5061037761073f3660046120db565b611018565b34801561075057600080fd5b506104fb61075f366004612004565b611043565b34801561077057600080fd5b5061037760125481565b34801561078657600080fd5b506104fb6107953660046120be565b6110f3565b3480156107a657600080fd5b506104fb6107b536600461205e565b61118e565b3480156107c657600080fd5b506104fb6107d536600461209c565b6111e3565b6005546000906001600160a01b031633146108105760405162461bcd60e51b815260040161080790612109565b60405180910390fd5b506009805460ff19169055600190565b60606003805461082f9061213e565b80601f016020809104026020016040519081016040528092919081815260200182805461085b9061213e565b80156108a85780601f1061087d576101008083540402835291602001916108a8565b820191906000526020600020905b81548152906001019060200180831161088b57829003601f168201915b5050505050905090565b6000336108c0818585611276565b60019150505b92915050565b3360009081526017602052604081205460ff166108e857600080fd5b620186a06108f560025490565b6108ff919061218e565b82101561096c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610807565b6008548211156109d95760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b6064820152608401610807565b6006546109ef906001600160a01b031683611283565b506001919050565b600033610a058582856112b9565b610a1085858561131f565b506001949350505050565b6000336108c0818585610a2e8383611018565b610a3891906121b0565b611276565b6005546001600160a01b03163314610a675760405162461bcd60e51b815260040161080790612109565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610af05760405162461bcd60e51b815260040161080790612109565b6002811015610b4c5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b6064820152608401610807565b6103e8610b5860025490565b610b6290836121c3565b610b6c919061218e565b600b5550565b6005546001600160a01b03163314610b9c5760405162461bcd60e51b815260040161080790612109565b60138290556014819055610bb081836121b0565b601281905560041015610c055760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c657373000000006044820152606401610807565b5050565b6005546001600160a01b03163314610c335760405162461bcd60e51b815260040161080790612109565b610c3d600061137e565b565b6005546001600160a01b03163314610c695760405162461bcd60e51b815260040161080790612109565b600e805460ff60a01b1916600160a01b1790556006805460ff60a81b1916600160a81b179055565b60606004805461082f9061213e565b6005546001600160a01b03163314610cca5760405162461bcd60e51b815260040161080790612109565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4c91906121da565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddd91906121da565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4e91906121da565b600680546001600160a01b0319166001600160a01b03929092169182179055610e7890600161118e565b600654610e8f906001600160a01b031660016113d0565b610ebc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019611276565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610f0c306001600160a01b031660009081526020819052604090205490565b600080610f216005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f89573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fae91906121f7565b505050565b60003381610fc18286611018565b905083811015610ffd57604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610807565b610a108286868403611276565b6000336108c081858561131f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461106d5760405162461bcd60e51b815260040161080790612109565b60058110156110cd5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b6064820152608401610807565b6103e86110d960025490565b6110e390836121c3565b6110ed919061218e565b600a5550565b6005546001600160a01b0316331461111d5760405162461bcd60e51b815260040161080790612109565b6001600160a01b0381166111825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b61118b8161137e565b50565b6005546001600160a01b031633146111b85760405162461bcd60e51b815260040161080790612109565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461120d5760405162461bcd60e51b815260040161080790612109565b6010829055601181905561122181836121b0565b600f81905560041015610c055760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c657373000000006044820152606401610807565b610fae8383836001611424565b6001600160a01b0382166112ad57604051634b637e8f60e11b815260006004820152602401610807565b610c05826000836114f9565b60006112c58484611018565b90506000198114611319578181101561130a57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610807565b61131984848484036000611424565b50505050565b6001600160a01b03831661134957604051634b637e8f60e11b815260006004820152602401610807565b6001600160a01b0382166113735760405163ec442f0560e01b815260006004820152602401610807565b610fae8383836114f9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b03841661144e5760405163e602df0560e01b815260006004820152602401610807565b6001600160a01b03831661147857604051634a1406b160e11b815260006004820152602401610807565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561131957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114eb91815260200190565b60405180910390a350505050565b8060000361150d57610fae83836000611b66565b6001600160a01b03831660009081526017602052604090205460ff1615801561154f57506001600160a01b03821660009081526017602052604090205460ff16155b156115a657600e54600160a01b900460ff166115a65760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b6044820152606401610807565b60095460ff1680156115c15750600e54600160a01b900460ff165b15611884576005546001600160a01b038481169116148015906115f257506005546001600160a01b03838116911614155b801561160657506001600160a01b03821615155b801561161d57506001600160a01b03821661dead14155b80156116335750600654600160a01b900460ff16155b15611884576001600160a01b03831660009081526019602052604090205460ff16801561167957506001600160a01b03821660009081526018602052604090205460ff16155b1561175057600b548111156116e15760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b6064820152608401610807565b600a546001600160a01b03831660009081526020819052604090205461170790836121b0565b111561174b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610807565b611884565b6001600160a01b03821660009081526019602052604090205460ff16801561179157506001600160a01b03831660009081526018602052604090205460ff16155b156117fa57600b5481111561174b5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b6064820152608401610807565b6001600160a01b03821660009081526018602052604090205460ff1661188457600a546001600160a01b03831660009081526020819052604090205461184090836121b0565b11156118845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610807565b30600090815260208190526040902054600754811080159081906118b15750600654600160a81b900460ff165b80156118c75750600654600160a01b900460ff16155b80156118eb57506001600160a01b03841660009081526019602052604090205460ff165b80156118f8575060075483115b801561191d57506001600160a01b03851660009081526017602052604090205460ff16155b801561194257506001600160a01b03841660009081526017602052604090205460ff16155b15611970576006805460ff60a01b1916600160a01b179055611962611c90565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806119be57506001600160a01b03851660009081526017602052604090205460ff165b156119c7575060005b60008115611b52576001600160a01b03861660009081526019602052604090205460ff1680156119f957506000601254115b15611a8757611a1e6064611a1860125488611d8a90919063ffffffff16565b90611d9d565b905060125460145482611a3191906121c3565b611a3b919061218e565b60166000828254611a4c91906121b0565b9091555050601254601354611a6190836121c3565b611a6b919061218e565b60156000828254611a7c91906121b0565b90915550611b349050565b6001600160a01b03871660009081526019602052604090205460ff168015611ab157506000600f54115b15611b3457611ad06064611a18600f5488611d8a90919063ffffffff16565b9050600f5460115482611ae391906121c3565b611aed919061218e565b60166000828254611afe91906121b0565b9091555050600f54601054611b1390836121c3565b611b1d919061218e565b60156000828254611b2e91906121b0565b90915550505b8015611b4557611b45873083611b66565b611b4f8186612225565b94505b611b5d878787611b66565b50505050505050565b6001600160a01b038316611b91578060026000828254611b8691906121b0565b90915550611c039050565b6001600160a01b03831660009081526020819052604090205481811015611be45760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610807565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611c1f57600280548290039055611c3e565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c8391815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601654601554611cb491906121b0565b90506000600754831115611cc85760075492505b47611cd284611da9565b6000611cde4783611f69565b90506000611cfb85611a1860165485611d8a90919063ffffffff16565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611d49576040519150601f19603f3d011682016040523d82523d6000602084013e611d4e565b606091505b5050600d546040519195506001600160a01b0316904780156108fc02916000818181858888f19350505050158015611b5d573d6000803e3d6000fd5b6000611d9682846121c3565b9392505050565b6000611d96828461218e565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611dde57611dde612238565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8091906121da565b81600181518110611e9357611e93612238565b60200260200101906001600160a01b031690816001600160a01b031681525050611ede307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611276565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f3390859060009086903090429060040161224e565b600060405180830381600087803b158015611f4d57600080fd5b505af1158015611f61573d6000803e3d6000fd5b505050505050565b6000611d968284612225565b600060208083528351808285015260005b81811015611fa257858101830151858201604001528201611f86565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461118b57600080fd5b60008060408385031215611feb57600080fd5b8235611ff681611fc3565b946020939093013593505050565b60006020828403121561201657600080fd5b5035919050565b60008060006060848603121561203257600080fd5b833561203d81611fc3565b9250602084013561204d81611fc3565b929592945050506040919091013590565b6000806040838503121561207157600080fd5b823561207c81611fc3565b91506020830135801515811461209157600080fd5b809150509250929050565b600080604083850312156120af57600080fd5b50508035926020909101359150565b6000602082840312156120d057600080fd5b8135611d9681611fc3565b600080604083850312156120ee57600080fd5b82356120f981611fc3565b9150602083013561209181611fc3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061215257607f821691505b60208210810361217257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000826121ab57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108c6576108c6612178565b80820281158282048414176108c6576108c6612178565b6000602082840312156121ec57600080fd5b8151611d9681611fc3565b60008060006060848603121561220c57600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108c6576108c6612178565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561229e5784516001600160a01b031683529383019391830191600101612279565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122095a889404e4d82cd54b6df2f4d47990414de2bb29c2cc20bf19a2965c5682cb864736f6c63430008130033

Deployed Bytecode Sourcemap

26767:11794:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37618:120;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;37618:120:0;;;;;;;;27353:35;;;;;;;;;;-1:-1:-1;27353:35:0;;;;-1:-1:-1;;;;;27353:35:0;;;;;;-1:-1:-1;;;;;370:32:1;;;352:51;;340:2;325:18;27353:35:0;206:203:1;27440:28:0;;;;;;;;;;-1:-1:-1;27440:28:0;;;;-1:-1:-1;;;27440:28:0;;;;;;14832:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27118:30::-;;;;;;;;;;-1:-1:-1;27118:30:0;;;;;;;;17125:190;;;;;;;;;;-1:-1:-1;17125:190:0;;;;;:::i;:::-;;:::i;27506:22::-;;;;;;;;;;;;;;;;;;;1569:25:1;;;1557:2;1542:18;27506:22:0;1423:177:1;27596:23:0;;;;;;;;;;;;;;;;30242:450;;;;;;;;;;-1:-1:-1;30242:450:0;;;;;:::i;:::-;;:::i;15934:99::-;;;;;;;;;;-1:-1:-1;16013:12:0;;15934:99;;17893:249;;;;;;;;;;-1:-1:-1;17893:249:0;;;;;:::i;:::-;;:::i;27535:22::-;;;;;;;;;;;;;;;;27626:23;;;;;;;;;;;;;;;;15785:84;;;;;;;;;;-1:-1:-1;15785:84:0;;15859:2;2393:36:1;;2381:2;2366:18;15785:84:0;2251:184:1;27658:33:0;;;;;;;;;;;;;;;;18551:238;;;;;;;;;;-1:-1:-1;18551:238:0;;;;;:::i;:::-;;:::i;27155:26::-;;;;;;;;;;;;;;;;27698:33;;;;;;;;;;;;;;;;27395:36;;;;;;;;;;-1:-1:-1;27395:36:0;;;;-1:-1:-1;;;;;27395:36:0;;;26974:38;;;;;;;;;;-1:-1:-1;26974:38:0;;;;-1:-1:-1;;;26974:38:0;;;;;;32448:183;;;;;;;;;;-1:-1:-1;32448:183:0;;;;;:::i;:::-;;:::i;:::-;;30848:200;;;;;;;;;;-1:-1:-1;30848:200:0;;;;;:::i;:::-;;:::i;27060:31::-;;;;;;;;;;;;;;;;38296:262;;;;;;;;;;-1:-1:-1;38296:262:0;;;;;:::i;:::-;;:::i;27188:22::-;;;;;;;;;;;;;;;;16096:118;;;;;;;;;;-1:-1:-1;16096:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;16188:18:0;16161:7;16188:18;;;;;;;;;;;;16096:118;10857:103;;;;;;;;;;;;;:::i;27019:34::-;;;;;;;;;;;;;;;;37429:114;;;;;;;;;;;;;:::i;26890:24::-;;;;;;;;;;-1:-1:-1;26890:24:0;;;;-1:-1:-1;;;;;26890:24:0;;;27477:22;;;;;;;;;;;;;;;;10206:87;;;;;;;;;;-1:-1:-1;10279:6:0;;-1:-1:-1;;;;;10279:6:0;10206:87;;26842:41;;;;;;;;;;;;;;;15042:95;;;;;;;;;;;;;:::i;31388:561::-;;;:::i;19477:504::-;;;;;;;;;;-1:-1:-1;19477:504:0;;;;;:::i;:::-;;:::i;28078:40::-;;;;;;;;;;-1:-1:-1;28078:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16419:182;;;;;;;;;;-1:-1:-1;16419:182:0;;;;;:::i;:::-;;:::i;27870:50::-;;;;;;;;;;-1:-1:-1;27870:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16664:142;;;;;;;;;;-1:-1:-1;16664:142:0;;;;;:::i;:::-;;:::i;31173:207::-;;;;;;;;;;-1:-1:-1;31173:207:0;;;;;:::i;:::-;;:::i;27566:23::-;;;;;;;;;;;;;;;;11115:238;;;;;;;;;;-1:-1:-1;11115:238:0;;;;;:::i;:::-;;:::i;32133:148::-;;;;;;;;;;-1:-1:-1;32133:148:0;;;;;:::i;:::-;;:::i;37889:255::-;;;;;;;;;;-1:-1:-1;37889:255:0;;;;;:::i;:::-;;:::i;37618:120::-;10279:6;;37672:4;;-1:-1:-1;;;;;10279:6:0;9637:10;10426:23;10418:68;;;;-1:-1:-1;;;10418:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;37689:11:0::1;:19:::0;;-1:-1:-1;;37689:19:0::1;::::0;;;37618:120;:::o;14832:91::-;14877:13;14910:5;14903:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14832:91;:::o;17125:190::-;17198:4;9637:10;17254:31;9637:10;17270:7;17279:5;17254:8;:31::i;:::-;17303:4;17296:11;;;17125:190;;;;;:::o;30242:450::-;28173:10;30338:4;28163:21;;;:9;:21;;;;;;;;28155:30;;;;;;30406:6:::1;30390:13;16013:12:::0;;;15934:99;30390:13:::1;:22;;;;:::i;:::-;30377:9;:35;;30355:138;;;::::0;-1:-1:-1;;;30355:138:0;;5290:2:1;30355:138:0::1;::::0;::::1;5272:21:1::0;5329:2;5309:18;;;5302:30;5368:34;5348:18;;;5341:62;-1:-1:-1;;;5419:18:1;;;5412:51;5480:19;;30355:138:0::1;5088:417:1::0;30355:138:0::1;30539:16;;30526:9;:29;;30504:129;;;::::0;-1:-1:-1;;;30504:129:0;;5712:2:1;30504:129:0::1;::::0;::::1;5694:21:1::0;5751:2;5731:18;;;5724:30;5790:34;5770:18;;;5763:62;-1:-1:-1;;;5841:18:1;;;5834:48;5899:19;;30504:129:0::1;5510:414:1::0;30504:129:0::1;30641:9;::::0;30635:27:::1;::::0;-1:-1:-1;;;;;30641:9:0::1;30652::::0;30635:5:::1;:27::i;:::-;-1:-1:-1::0;30680:4:0::1;30242:450:::0;;;:::o;17893:249::-;17980:4;9637:10;18038:37;18054:4;9637:10;18069:5;18038:15;:37::i;:::-;18086:26;18096:4;18102:2;18106:5;18086:9;:26::i;:::-;-1:-1:-1;18130:4:0;;17893:249;-1:-1:-1;;;;17893:249:0:o;18551:238::-;18639:4;9637:10;18695:64;9637:10;18711:7;18748:10;18720:25;9637:10;18711:7;18720:9;:25::i;:::-;:38;;;;:::i;:::-;18695:8;:64::i;32448:183::-;10279:6;;-1:-1:-1;;;;;10279:6:0;9637:10;10426:23;10418:68;;;;-1:-1:-1;;;10418:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32536:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;;;:29;;-1:-1:-1;;32536:29:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32581:42;;154:41:1;;;32581:42:0::1;::::0;127:18:1;32581:42:0::1;;;;;;;32448:183:::0;;:::o;30848:200::-;10279:6;;-1:-1:-1;;;;;10279:6:0;9637:10;10426:23;10418:68;;;;-1:-1:-1;;;10418:68:0;;;;;;;:::i;:::-;30948:1:::1;30938:6;:11;;30930:58;;;::::0;-1:-1:-1;;;30930:58:0;;6261:2:1;30930:58:0::1;::::0;::::1;6243:21:1::0;6300:2;6280:18;;;6273:30;6339:34;6319:18;;;6312:62;-1:-1:-1;;;6390:18:1;;;6383:32;6432:19;;30930:58:0::1;6059:398:1::0;30930:58:0::1;31036:4;31019:13;16013:12:::0;;;15934:99;31019:13:::1;31010:22;::::0;:6;:22:::1;:::i;:::-;31009:31;;;;:::i;:::-;30999:7;:41:::0;-1:-1:-1;30848:200:0:o;38296:262::-;10279:6;;-1:-1:-1;;;;;10279:6:0;9637:10;10426:23;10418:68;;;;-1:-1:-1;;;10418:68:0;;;;;;;:::i;:::-;38401:8:::1;:16:::0;;;38428:8:::1;:16:::0;;;38466:19:::1;38439:5:::0;38412;38466:19:::1;:::i;:::-;38455:8;:30:::0;;;38516:1:::1;-1:-1:-1::0;38504:13:0::1;38496:54;;;::::0;-1:-1:-1;;;38496:54:0;;6837:2:1;38496:54:0::1;::::0;::::1;6819:21:1::0;6876:2;6856:18;;;6849:30;6915;6895:18;;;6888:58;6963:18;;38496:54:0::1;6635:352:1::0;38496:54:0::1;38296:262:::0;;:::o;10857:103::-;10279:6;;-1:-1:-1;;;;;10279:6:0;9637:10;10426:23;10418:68;;;;-1:-1:-1;;;10418:68:0;;;;;;;:::i;:::-;10922:30:::1;10949:1;10922:18;:30::i;:::-;10857:103::o:0;37429:114::-;10279:6;;-1:-1:-1;;;;;10279:6:0;9637:10;10426:23;10418:68;;;;-1:-1:-1;;;10418:68:0;;;;;;;:::i;:::-;37484:8:::1;:15:::0;;-1:-1:-1;;;;37484:15:0::1;-1:-1:-1::0;;;37484:15:0::1;::::0;;37510:18:::1;:25:::0;;-1:-1:-1;;;;37510:25:0::1;-1:-1:-1::0;;;37510:25:0::1;::::0;;37429:114::o;15042:95::-;15089:13;15122:7;15115:14;;;;;:::i;31388:561::-;10279:6;;-1:-1:-1;;;;;10279:6:0;9637:10;10426:23;10418:68;;;;-1:-1:-1;;;10418:68:0;;;;;;;:::i;:::-;31474:11:::1;-1:-1:-1::0;;;;;31474:19:0::1;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;31460:47:0::1;;31516:4;31523:11;-1:-1:-1::0;;;;;31523:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31460:82;::::0;-1:-1:-1;;;;;;31460:82:0::1;::::0;;;;;;-1:-1:-1;;;;;7478:15:1;;;31460:82:0::1;::::0;::::1;7460:34:1::0;7530:15;;7510:18;;;7503:43;7395:18;;31460:82:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31448:9;:94:::0;;-1:-1:-1;;;;;;31448:94:0::1;-1:-1:-1::0;;;;;31448:94:0;;;::::1;::::0;;::::1;::::0;;31553:43:::1;::::0;-1:-1:-1;31553:17:0::1;:43::i;:::-;31628:9;::::0;31607:38:::1;::::0;-1:-1:-1;;;;;31628:9:0::1;::::0;31607:12:::1;:38::i;:::-;31656:64;31673:4;31688:11;-1:-1:-1::0;;31656:8:0::1;:64::i;:::-;31732:11;-1:-1:-1::0;;;;;31732:27:0::1;;31767:9;31800:4;31820:24;31838:4;-1:-1:-1::0;;;;;16188:18:0;16161:7;16188:18;;;;;;;;;;;;16096:118;31820:24:::1;31859:1;31876::::0;31893:7:::1;10279:6:::0;;-1:-1:-1;;;;;10279:6:0;;10206:87;31893:7:::1;31732:209;::::0;::::1;::::0;;;-1:-1:-1;;;;;;31732:209:0;;;-1:-1:-1;;;;;7916:15:1;;;31732:209:0::1;::::0;::::1;7898:34:1::0;7948:18;;;7941:34;;;;7991:18;;;7984:34;;;;8034:18;;;8027:34;8098:15;;;8077:19;;;8070:44;31915:15:0::1;8130:19:1::0;;;8123:35;7832:19;;31732:209:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31388:561::o:0;19477:504::-;19572:4;9637:10;19572:4;19655:25;9637:10;19672:7;19655:9;:25::i;:::-;19628:52;;19714:17;19695:16;:36;19691:150;;;19755:74;;-1:-1:-1;;;19755:74:0;;-1:-1:-1;;;;;8700:32:1;;19755:74:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;19755:74:0;8480:345:1;19691:150:0;19876:62;19885:5;19892:7;19920:17;19901:16;:36;19876:8;:62::i;16419:182::-;16488:4;9637:10;16544:27;9637:10;16561:2;16565:5;16544:9;:27::i;16664:142::-;-1:-1:-1;;;;;16771:18:0;;;16744:7;16771:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16664:142::o;31173:207::-;10279:6;;-1:-1:-1;;;;;10279:6:0;9637:10;10426:23;10418:68;;;;-1:-1:-1;;;10418:68:0;;;;;;;:::i;:::-;31272:1:::1;31262:6;:11;;31254:62;;;::::0;-1:-1:-1;;;31254:62:0;;9032:2:1;31254:62:0::1;::::0;::::1;9014:21:1::0;9071:2;9051:18;;;9044:30;9110:34;9090:18;;;9083:62;-1:-1:-1;;;9161:18:1;;;9154:36;9207:19;;31254:62:0::1;8830:402:1::0;31254:62:0::1;31368:4;31351:13;16013:12:::0;;;15934:99;31351:13:::1;31342:22;::::0;:6;:22:::1;:::i;:::-;31341:31;;;;:::i;:::-;31327:11;:45:::0;-1:-1:-1;31173:207:0:o;11115:238::-;10279:6;;-1:-1:-1;;;;;10279:6:0;9637:10;10426:23;10418:68;;;;-1:-1:-1;;;10418:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11218:22:0;::::1;11196:110;;;::::0;-1:-1:-1;;;11196:110:0;;9439:2:1;11196:110:0::1;::::0;::::1;9421:21:1::0;9478:2;9458:18;;;9451:30;9517:34;9497:18;;;9490:62;-1:-1:-1;;;9568:18:1;;;9561:36;9614:19;;11196:110:0::1;9237:402:1::0;11196:110:0::1;11317:28;11336:8;11317:18;:28::i;:::-;11115:238:::0;:::o;32133:148::-;10279:6;;-1:-1:-1;;;;;10279:6:0;9637:10;10426:23;10418:68;;;;-1:-1:-1;;;10418:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32240:26:0;;;::::1;;::::0;;;:18:::1;:26;::::0;;;;:33;;-1:-1:-1;;32240:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32133:148::o;37889:255::-;10279:6;;-1:-1:-1;;;;;10279:6:0;9637:10;10426:23;10418:68;;;;-1:-1:-1;;;10418:68:0;;;;;;;:::i;:::-;37993:7:::1;:15:::0;;;38019:7:::1;:15:::0;;;38055:17:::1;38029:5:::0;38003;38055:17:::1;:::i;:::-;38045:7;:27:::0;;;38102:1:::1;-1:-1:-1::0;38091:12:0::1;38083:53;;;::::0;-1:-1:-1;;;38083:53:0;;6837:2:1;38083:53:0::1;::::0;::::1;6819:21:1::0;6876:2;6856:18;;;6849:30;6915;6895:18;;;6888:58;6963:18;;38083:53:0::1;6635:352:1::0;23674:138:0;23767:37;23776:5;23783:7;23792:5;23799:4;23767:8;:37::i;23026:211::-;-1:-1:-1;;;;;23097:21:0;;23093:91;;23142:30;;-1:-1:-1;;;23142:30:0;;23169:1;23142:30;;;352:51:1;325:18;;23142:30:0;206:203:1;23093:91:0;23194:35;23202:7;23219:1;23223:5;23194:7;:35::i;25411:487::-;25511:24;25538:25;25548:5;25555:7;25538:9;:25::i;:::-;25511:52;;-1:-1:-1;;25578:16:0;:37;25574:317;;25655:5;25636:16;:24;25632:132;;;25688:60;;-1:-1:-1;;;25688:60:0;;-1:-1:-1;;;;;8700:32:1;;25688:60:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;25688:60:0;8480:345:1;25632:132:0;25807:57;25816:5;25823:7;25851:5;25832:16;:24;25858:5;25807:8;:57::i;:::-;25500:398;25411:487;;;:::o;20366:308::-;-1:-1:-1;;;;;20450:18:0;;20446:88;;20492:30;;-1:-1:-1;;;20492:30:0;;20519:1;20492:30;;;352:51:1;325:18;;20492:30:0;206:203:1;20446:88:0;-1:-1:-1;;;;;20548:16:0;;20544:88;;20588:32;;-1:-1:-1;;;20588:32:0;;20617:1;20588:32;;;352:51:1;325:18;;20588:32:0;206:203:1;20544:88:0;20642:24;20650:4;20656:2;20660:5;20642:7;:24::i;11513:191::-;11606:6;;;-1:-1:-1;;;;;11623:17:0;;;-1:-1:-1;;;;;;11623:17:0;;;;;;;11656:40;;11606:6;;;11623:17;11606:6;;11656:40;;11587:16;;11656:40;11576:128;11513:191;:::o;32639:138::-;-1:-1:-1;;;;;32706:14:0;;;;;;:8;:14;;;;;;:22;;-1:-1:-1;;32706:22:0;;;;;;;;;;32746:23;;32706:22;;:14;32746:23;;;32639:138;;:::o;24679:443::-;-1:-1:-1;;;;;24792:19:0;;24788:91;;24835:32;;-1:-1:-1;;;24835:32:0;;24864:1;24835:32;;;352:51:1;325:18;;24835:32:0;206:203:1;24788:91:0;-1:-1:-1;;;;;24893:21:0;;24889:92;;24938:31;;-1:-1:-1;;;24938:31:0;;24966:1;24938:31;;;352:51:1;325:18;;24938:31:0;206:203:1;24889:92:0;-1:-1:-1;;;;;24991:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;25037:78;;;;25088:7;-1:-1:-1;;;;;25072:31:0;25081:5;-1:-1:-1;;;;;25072:31:0;;25097:5;25072:31;;;;1569:25:1;;1557:2;1542:18;;1423:177;25072:31:0;;;;;;;;24679:443;;;;:::o;32785:3166::-;32911:6;32921:1;32911:11;32907:54;;32925:26;32939:4;32945:2;32949:1;32925:13;:26::i;32907:54::-;-1:-1:-1;;;;;32976:15:0;;;;;;:9;:15;;;;;;;;32975:16;:34;;;;-1:-1:-1;;;;;;32996:13:0;;;;;;:9;:13;;;;;;;;32995:14;32975:34;32971:83;;;33019:8;;-1:-1:-1;;;33019:8:0;;;;33011:43;;;;-1:-1:-1;;;33011:43:0;;9846:2:1;33011:43:0;;;9828:21:1;9885:2;9865:18;;;9858:30;-1:-1:-1;;;9904:18:1;;;9897:52;9966:18;;33011:43:0;9644:346:1;33011:43:0;33069:11;;;;:23;;;;-1:-1:-1;33084:8:0;;-1:-1:-1;;;33084:8:0;;;;33069:23;33065:1265;;;10279:6;;-1:-1:-1;;;;;33131:15:0;;;10279:6;;33131:15;;;;:49;;-1:-1:-1;10279:6:0;;-1:-1:-1;;;;;33167:13:0;;;10279:6;;33167:13;;33131:49;:86;;;;-1:-1:-1;;;;;;33201:16:0;;;;33131:86;:128;;;;-1:-1:-1;;;;;;33238:21:0;;33252:6;33238:21;;33131:128;:164;;;;-1:-1:-1;33281:14:0;;-1:-1:-1;;;33281:14:0;;;;33280:15;33131:164;33109:1210;;;-1:-1:-1;;;;;33364:14:0;;;;;;:8;:14;;;;;;;;:41;;;;-1:-1:-1;;;;;;33383:22:0;;;;;;:18;:22;;;;;;;;33382:23;33364:41;33360:944;;;33474:7;;33464:6;:17;;33430:143;;;;-1:-1:-1;;;33430:143:0;;10197:2:1;33430:143:0;;;10179:21:1;10236:2;10216:18;;;10209:30;10275:34;10255:18;;;10248:62;-1:-1:-1;;;10326:18:1;;;10319:38;10374:19;;33430:143:0;9995:404:1;33430:143:0;33656:11;;-1:-1:-1;;;;;16188:18:0;;16161:7;16188:18;;;;;;;;;;;33630:22;;:6;:22;:::i;:::-;:37;;33596:142;;;;-1:-1:-1;;;33596:142:0;;10606:2:1;33596:142:0;;;10588:21:1;10645:2;10625:18;;;10618:30;-1:-1:-1;;;10664:18:1;;;10657:49;10723:18;;33596:142:0;10404:343:1;33596:142:0;33360:944;;;-1:-1:-1;;;;;33836:12:0;;;;;;:8;:12;;;;;;;;:41;;;;-1:-1:-1;;;;;;33853:24:0;;;;;;:18;:24;;;;;;;;33852:25;33836:41;33810:494;;;33964:7;;33954:6;:17;;33920:144;;;;-1:-1:-1;;;33920:144:0;;10954:2:1;33920:144:0;;;10936:21:1;10993:2;10973:18;;;10966:30;11032:34;11012:18;;;11005:62;-1:-1:-1;;;11083:18:1;;;11076:39;11132:19;;33920:144:0;10752:405:1;33810:494:0;-1:-1:-1;;;;;34095:22:0;;;;;;:18;:22;;;;;;;;34090:214;;34202:11;;-1:-1:-1;;;;;16188:18:0;;16161:7;16188:18;;;;;;;;;;;34176:22;;:6;:22;:::i;:::-;:37;;34142:142;;;;-1:-1:-1;;;34142:142:0;;10606:2:1;34142:142:0;;;10588:21:1;10645:2;10625:18;;;10618:30;-1:-1:-1;;;10664:18:1;;;10657:49;10723:18;;34142:142:0;10404:343:1;34142:142:0;34391:4;34342:28;16188:18;;;;;;;;;;;34449:19;;34425:43;;;;;;;34499:42;;-1:-1:-1;34523:18:0;;-1:-1:-1;;;34523:18:0;;;;34499:42;:74;;;;-1:-1:-1;34559:14:0;;-1:-1:-1;;;34559:14:0;;;;34558:15;34499:74;:103;;;;-1:-1:-1;;;;;;34590:12:0;;;;;;:8;:12;;;;;;;;34499:103;:148;;;;;34628:19;;34619:6;:28;34499:148;:181;;;;-1:-1:-1;;;;;;34665:15:0;;;;;;:9;:15;;;;;;;;34664:16;34499:181;:212;;;;-1:-1:-1;;;;;;34698:13:0;;;;;;:9;:13;;;;;;;;34697:14;34499:212;34481:363;;;34738:14;:21;;-1:-1:-1;;;;34738:21:0;-1:-1:-1;;;34738:21:0;;;34776:17;:15;:17::i;:::-;34810:14;:22;;-1:-1:-1;;;;34810:22:0;;;34481:363;34872:14;;-1:-1:-1;;;;;34988:15:0;;34856:12;34988:15;;;:9;:15;;;;;;34872:14;-1:-1:-1;;;34872:14:0;;;;;34871:15;;34988;;:32;;-1:-1:-1;;;;;;35007:13:0;;;;;;:9;:13;;;;;;;;34988:32;34984:80;;;-1:-1:-1;35047:5:0;34984:80;35076:12;35181:7;35177:723;;;-1:-1:-1;;;;;35233:12:0;;;;;;:8;:12;;;;;;;;:28;;;;;35260:1;35249:8;;:12;35233:28;35229:524;;;35289:29;35314:3;35289:20;35300:8;;35289:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;35282:36;;35379:8;;35367;;35360:4;:15;;;;:::i;:::-;35359:28;;;;:::i;:::-;35337:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;35448:8:0;;35436;;35429:15;;:4;:15;:::i;:::-;35428:28;;;;:::i;:::-;35406:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;35229:524:0;;-1:-1:-1;35229:524:0;;-1:-1:-1;;;;;35518:14:0;;;;;;:8;:14;;;;;;;;:29;;;;;35546:1;35536:7;;:11;35518:29;35514:239;;;35575:28;35599:3;35575:19;35586:7;;35575:6;:10;;:19;;;;:::i;:28::-;35568:35;;35663:7;;35652;;35645:4;:14;;;;:::i;:::-;35644:26;;;;:::i;:::-;35622:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;35730:7:0;;35719;;35712:14;;:4;:14;:::i;:::-;35711:26;;;;:::i;:::-;35689:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;35514:239:0;35773:8;;35769:89;;35802:40;35816:4;35830;35837;35802:13;:40::i;:::-;35874:14;35884:4;35874:14;;:::i;:::-;;;35177:723;35912:31;35926:4;35932:2;35936:6;35912:13;:31::i;:::-;32896:3055;;;;32785:3166;;;:::o;20990:1135::-;-1:-1:-1;;;;;21080:18:0;;21076:552;;21234:5;21218:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;21076:552:0;;-1:-1:-1;21076:552:0;;-1:-1:-1;;;;;21294:15:0;;21272:19;21294:15;;;;;;;;;;;21328:19;;;21324:117;;;21375:50;;-1:-1:-1;;;21375:50:0;;-1:-1:-1;;;;;8700:32:1;;21375:50:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;21375:50:0;8480:345:1;21324:117:0;-1:-1:-1;;;;;21564:15:0;;:9;:15;;;;;;;;;;21582:19;;;;21564:37;;21076:552;-1:-1:-1;;;;;21644:16:0;;21640:435;;21810:12;:21;;;;;;;21640:435;;;-1:-1:-1;;;;;22026:13:0;;:9;:13;;;;;;;;;;:22;;;;;;21640:435;22107:2;-1:-1:-1;;;;;22092:25:0;22101:4;-1:-1:-1;;;;;22092:25:0;;22111:5;22092:25;;;;1569::1;;1557:2;1542:18;;1423:177;22092:25:0;;;;;;;;20990:1135;;;:::o;36562:782::-;36652:4;36608:23;16188:18;;;;;;;;;;;36608:50;;36669:25;36718:18;;36697;;:39;;;;:::i;:::-;36669:67;;36747:12;36794:19;;36776:15;:37;36772:107;;;36848:19;;36830:37;;36772:107;36919:21;36953:51;36988:15;36953:34;:51::i;:::-;37017:18;37038:44;:21;37064:17;37038:25;:44::i;:::-;37017:65;;37095:21;37119:57;37158:17;37119:34;37134:18;;37119:10;:14;;:34;;;;:::i;:57::-;37211:21;;37203:61;;37095:81;;-1:-1:-1;;;;;;37211:21:0;;37095:81;;37203:61;;;;37095:81;37211:21;37203:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37283:20:0;;37275:61;;37189:75;;-1:-1:-1;;;;;;37283:20:0;;37314:21;37275:61;;;;;37283:20;37275:61;37283:20;37275:61;37314:21;37283:20;37275:61;;;;;;;;;;;;;;;;;;;3446:98;3504:7;3531:5;3535:1;3531;:5;:::i;:::-;3524:12;3446:98;-1:-1:-1;;;3446:98:0:o;3845:::-;3903:7;3930:5;3934:1;3930;:5;:::i;35959:595::-;36127:16;;;36141:1;36127:16;;;;;;;;36103:21;;36127:16;;;;;;;;;;-1:-1:-1;36127:16:0;36103:40;;36172:4;36154;36159:1;36154:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36154:23:0;;;-1:-1:-1;;;;;36154:23:0;;;;;36198:11;-1:-1:-1;;;;;36198:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36188:4;36193:1;36188:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;36188:28:0;;;-1:-1:-1;;;;;36188:28:0;;;;;36229:58;36246:4;36261:11;36275;36229:8;:58::i;:::-;36326:220;;-1:-1:-1;;;36326:220:0;;-1:-1:-1;;;;;36326:11:0;:62;;;;:220;;36403:11;;36429:1;;36473:4;;36500;;36520:15;;36326:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36032:522;35959:595;:::o;3089:98::-;3147:7;3174:5;3178:1;3174;:5;:::i;414:548:1:-;526:4;555:2;584;573:9;566:21;616:6;610:13;659:6;654:2;643:9;639:18;632:34;684:1;694:140;708:6;705:1;702:13;694:140;;;803:14;;;799:23;;793:30;769:17;;;788:2;765:26;758:66;723:10;;694:140;;;698:3;883:1;878:2;869:6;858:9;854:22;850:31;843:42;953:2;946;942:7;937:2;929:6;925:15;921:29;910:9;906:45;902:54;894:62;;;;414:548;;;;:::o;967:131::-;-1:-1:-1;;;;;1042:31:1;;1032:42;;1022:70;;1088:1;1085;1078:12;1103:315;1171:6;1179;1232:2;1220:9;1211:7;1207:23;1203:32;1200:52;;;1248:1;1245;1238:12;1200:52;1287:9;1274:23;1306:31;1331:5;1306:31;:::i;:::-;1356:5;1408:2;1393:18;;;;1380:32;;-1:-1:-1;;;1103:315:1:o;1605:180::-;1664:6;1717:2;1705:9;1696:7;1692:23;1688:32;1685:52;;;1733:1;1730;1723:12;1685:52;-1:-1:-1;1756:23:1;;1605:180;-1:-1:-1;1605:180:1:o;1790:456::-;1867:6;1875;1883;1936:2;1924:9;1915:7;1911:23;1907:32;1904:52;;;1952:1;1949;1942:12;1904:52;1991:9;1978:23;2010:31;2035:5;2010:31;:::i;:::-;2060:5;-1:-1:-1;2117:2:1;2102:18;;2089:32;2130:33;2089:32;2130:33;:::i;:::-;1790:456;;2182:7;;-1:-1:-1;;;2236:2:1;2221:18;;;;2208:32;;1790:456::o;2440:416::-;2505:6;2513;2566:2;2554:9;2545:7;2541:23;2537:32;2534:52;;;2582:1;2579;2572:12;2534:52;2621:9;2608:23;2640:31;2665:5;2640:31;:::i;:::-;2690:5;-1:-1:-1;2747:2:1;2732:18;;2719:32;2789:15;;2782:23;2770:36;;2760:64;;2820:1;2817;2810:12;2760:64;2843:7;2833:17;;;2440:416;;;;;:::o;2861:248::-;2929:6;2937;2990:2;2978:9;2969:7;2965:23;2961:32;2958:52;;;3006:1;3003;2996:12;2958:52;-1:-1:-1;;3029:23:1;;;3099:2;3084:18;;;3071:32;;-1:-1:-1;2861:248:1:o;3114:247::-;3173:6;3226:2;3214:9;3205:7;3201:23;3197:32;3194:52;;;3242:1;3239;3232:12;3194:52;3281:9;3268:23;3300:31;3325:5;3300:31;:::i;3595:388::-;3663:6;3671;3724:2;3712:9;3703:7;3699:23;3695:32;3692:52;;;3740:1;3737;3730:12;3692:52;3779:9;3766:23;3798:31;3823:5;3798:31;:::i;:::-;3848:5;-1:-1:-1;3905:2:1;3890:18;;3877:32;3918:33;3877:32;3918:33;:::i;3988:356::-;4190:2;4172:21;;;4209:18;;;4202:30;4268:34;4263:2;4248:18;;4241:62;4335:2;4320:18;;3988:356::o;4349:380::-;4428:1;4424:12;;;;4471;;;4492:61;;4546:4;4538:6;4534:17;4524:27;;4492:61;4599:2;4591:6;4588:14;4568:18;4565:38;4562:161;;4645:10;4640:3;4636:20;4633:1;4626:31;4680:4;4677:1;4670:15;4708:4;4705:1;4698:15;4562:161;;4349:380;;;:::o;4734:127::-;4795:10;4790:3;4786:20;4783:1;4776:31;4826:4;4823:1;4816:15;4850:4;4847:1;4840:15;4866:217;4906:1;4932;4922:132;;4976:10;4971:3;4967:20;4964:1;4957:31;5011:4;5008:1;5001:15;5039:4;5036:1;5029:15;4922:132;-1:-1:-1;5068:9:1;;4866:217::o;5929:125::-;5994:9;;;6015:10;;;6012:36;;;6028:18;;:::i;6462:168::-;6535:9;;;6566;;6583:15;;;6577:22;;6563:37;6553:71;;6604:18;;:::i;6992:251::-;7062:6;7115:2;7103:9;7094:7;7090:23;7086:32;7083:52;;;7131:1;7128;7121:12;7083:52;7163:9;7157:16;7182:31;7207:5;7182:31;:::i;8169:306::-;8257:6;8265;8273;8326:2;8314:9;8305:7;8301:23;8297:32;8294:52;;;8342:1;8339;8332:12;8294:52;8371:9;8365:16;8355:26;;8421:2;8410:9;8406:18;8400:25;8390:35;;8465:2;8454:9;8450:18;8444:25;8434:35;;8169:306;;;;;:::o;11162:128::-;11229:9;;;11250:11;;;11247:37;;;11264:18;;:::i;11637:127::-;11698:10;11693:3;11689:20;11686:1;11679:31;11729:4;11726:1;11719:15;11753:4;11750:1;11743:15;11769:980;12031:4;12079:3;12068:9;12064:19;12110:6;12099:9;12092:25;12136:2;12174:6;12169:2;12158:9;12154:18;12147:34;12217:3;12212:2;12201:9;12197:18;12190:31;12241:6;12276;12270:13;12307:6;12299;12292:22;12345:3;12334:9;12330:19;12323:26;;12384:2;12376:6;12372:15;12358:29;;12405:1;12415:195;12429:6;12426:1;12423:13;12415:195;;;12494:13;;-1:-1:-1;;;;;12490:39:1;12478:52;;12585:15;;;;12550:12;;;;12526:1;12444:9;12415:195;;;-1:-1:-1;;;;;;;12666:32:1;;;;12661:2;12646:18;;12639:60;-1:-1:-1;;;12730:3:1;12715:19;12708:35;12627:3;11769:980;-1:-1:-1;;;11769:980:1:o

Swarm Source

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