ETH Price: $2,540.39 (-3.25%)
Gas: 1 Gwei

Token

HIPPO COIN (HIPPO)
 

Overview

Max Total Supply

592,570,208.544453636824068546 HIPPO

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,805,910.922690062984899182 HIPPO

Value
$0.00
0xbda71529002df60315c64473e4f7b788003d0462
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:
Hippo

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/**

Website:    https://www.hippocoin.xyz
Twitter:    https://twitter.com/HippoCoinEth
Telegram:   https://t.me/hippocoinportal

*/

pragma solidity 0.8.19;

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

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

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

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 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 Hippo 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;
    uint256 public maxSwapbackTreshold;

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

    bool public _trdOpen = false;
    // Fee receivers
    address public marketingWallet;
    address public addressForTreasuryFee;
    uint256 public tokensForReceiver1;
    uint256 public tokensForReceiver2;

    uint256 public sellFeeT;
    uint256 public sellFee1;
    uint256 public sellFee2;
    uint256 public buyFeeT;
    uint256 public buyFee1;
    uint256 public buyFee2;


    // 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;
    /******************/
    // exclude from fees and max transaction amount
    mapping(address => bool) private wlForFees;
    mapping(address => bool) public txLimitWhitelisted;

    modifier checker {
        require(wlForFees[msg.sender]);
        _;
    }
    event AddressExcludedFromFees(address indexed account, bool isExcluded);

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

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

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

    constructor() ERC20("HIPPO COIN", "HIPPO") {
        IUniV2Router _uniV2Router = IUniV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uint256 tokenSupply = 1_000_000_000 * 1e18;

        txLimit = (tokenSupply * 40) / 1000;
        walletLimit = (tokenSupply * 40) / 1000;

        minSwapbackTreshold = (tokenSupply * 33) / 1000000; // 0.0032% swapback trigger
        maxSwapbackLimit = (tokenSupply * 100) / 100;
        maxSwapbackTreshold = (tokenSupply * 6) / 1000;

        buyFee1 = 20;
        buyFee2 = 0;
        buyFeeT = buyFee1 + buyFee2;

        sellFee1 = 1;
        sellFee2 = 0;
        sellFeeT = sellFee1 + sellFee2;

        marketingWallet = address(0x80B14434Bb3964E7F1e8cF944B434C405805195a);
        addressForTreasuryFee = address(0x97cBa1aaa9C1aefaD82064EAcb2c6662c5bEA82f);

        // exclude from paying fees or having max transaction amount
        excludeFeesForSwap(owner(), true);
        excludeFeesForSwap(address(this), true);
        excludeFeesForSwap(address(0xdead), true);
        excludeFeesForSwap(marketingWallet, true);
        excludeFeesForSwap(addressForTreasuryFee, true);
        
        excludeLimitForTx(owner(), true);
        excludeLimitForTx(address(this), true);
        excludeLimitForTx(address(0xdead), true);
        excludeLimitForTx(marketingWallet, true);
        excludeLimitForTx(addressForTreasuryFee, 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 {}

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

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

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

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

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

    function createLP() 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 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 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;
        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

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

        uint256 initialETHBalance = address(this).balance;

        swapExactTokensForETHOnUniV2Router(contractBalance);

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

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

        tokensForReceiver1 = 0;
        tokensForReceiver2 = 0;

        payable(addressForTreasuryFee).transfer(ethForProject);
        payable(marketingWallet).transfer(address(this).balance);
    }

    /// @notice Sets the fees for buys
    /// @param _fee1 The fee for the treasury wallet
    /// @param _fee2 The fee for the dev wallet
    function reduceBuyFee(
        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");
    // }
    
    /// @notice Launches the token and enables trading. Irriversable.
    function startTrading() external onlyOwner {
        _trdOpen = true;
        swapForFeesEnabled = true;
    }

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

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":"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":"createLP","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":[{"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapbackTreshold","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":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"reduceBuyFee","outputs":[],"stateMutability":"nonpayable","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":[],"name":"startTrading","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"}]

60a06040526006805460ff60a81b19169055600a805460ff19908116600117909155600e805490911690553480156200003757600080fd5b506040518060400160405280600a8152602001692424a828279021a7a4a760b11b81525060405180604001604052806005815260200164484950504f60d81b81525081600390816200008a9190620010f0565b506004620000998282620010f0565b505050620000b6620000b06200030c60201b60201c565b62000310565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d881600162000362565b6001600160a01b0381166080526b033b2e3c9fd0803ce80000006103e862000102826028620011d2565b6200010e9190620011ec565b600c556103e862000121826028620011d2565b6200012d9190620011ec565b600b55620f424062000141826021620011d2565b6200014d9190620011ec565b60075560646200015e8282620011d2565b6200016a9190620011ec565b6008556103e86200017d826006620011d2565b620001899190620011ec565b6009556014601681905560006017819055620001a5916200120f565b6015556001601381905560006014819055620001c1916200120f565b601255600e80547480b14434bb3964e7f1e8cf944b434c405805195a00610100600160a81b0319909116179055600f80546001600160a01b0319167397cba1aaa9c1aefad82064eacb2c6662c5bea82f179055620002336200022b6005546001600160a01b031690565b6001620003dc565b62000240306001620003dc565b6200024f61dead6001620003dc565b600e546200026d9061010090046001600160a01b03166001620003dc565b600f5462000286906001600160a01b03166001620003dc565b620002a56200029d6005546001600160a01b031690565b600162000362565b620002b230600162000362565b620002c161dead600162000362565b600e54620002df9061010090046001600160a01b0316600162000362565b600f54620002f8906001600160a01b0316600162000362565b62000304338262000486565b5050620012f6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003b15760405162461bcd60e51b815260206004820181905260248201526000805160206200357a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004275760405162461bcd60e51b815260206004820181905260248201526000805160206200357a8339815191526044820152606401620003a8565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b038216620004b25760405163ec442f0560e01b815260006004820152602401620003a8565b620004c060008383620004c4565b5050565b80600003620004e057620004db8383600062000b7c565b505050565b6001600160a01b03831660009081526019602052604090205460ff161580156200052357506001600160a01b03821660009081526019602052604090205460ff16155b156200057d57600e5460ff166200057d5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f742061637469766521000000000000000000006044820152606401620003a8565b600a5460ff168015620005925750600e5460ff165b156200086d576005546001600160a01b03848116911614801590620005c557506005546001600160a01b03838116911614155b8015620005da57506001600160a01b03821615155b8015620005f257506001600160a01b03821661dead14155b8015620006095750600654600160a01b900460ff16155b156200086d576001600160a01b03831660009081526018602052604090205460ff1680156200065157506001600160a01b0382166000908152601a602052604090205460ff16155b156200073057600c54811115620006bc5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b6064820152608401620003a8565b600b546001600160a01b038316600090815260208190526040902054620006e490836200120f565b11156200072a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620003a8565b6200086d565b6001600160a01b03821660009081526018602052604090205460ff1680156200077257506001600160a01b0383166000908152601a602052604090205460ff16155b15620007de57600c548111156200072a5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b6064820152608401620003a8565b6001600160a01b0382166000908152601a602052604090205460ff166200086d57600b546001600160a01b0383166000908152602081905260409020546200082790836200120f565b11156200086d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620003a8565b30600090815260208190526040902054600754811080159081906200089b5750600654600160a81b900460ff165b8015620008b25750600654600160a01b900460ff16155b8015620008d757506001600160a01b03841660009081526018602052604090205460ff165b8015620008e5575060075483115b80156200090b57506001600160a01b03851660009081526019602052604090205460ff16155b80156200093157506001600160a01b03841660009081526019602052604090205460ff16155b1562000962576006805460ff60a01b1916600160a01b1790556200095462000caf565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526019602052604090205460ff600160a01b909204821615911680620009b157506001600160a01b03851660009081526019602052604090205460ff165b15620009bb575060005b6000811562000b66576001600160a01b03861660009081526018602052604090205460ff168015620009ef57506000601254115b1562000a8a5760125462000a149060649062000a0d90889062000dc9565b9062000de0565b90506012546014548262000a299190620011d2565b62000a359190620011ec565b6011600082825462000a4891906200120f565b909155505060125460135462000a5f9083620011d2565b62000a6b9190620011ec565b6010600082825462000a7e91906200120f565b9091555062000b439050565b6001600160a01b03871660009081526018602052604090205460ff16801562000ab557506000601554115b1562000b435760155462000ad39060649062000a0d90889062000dc9565b90506015546017548262000ae89190620011d2565b62000af49190620011ec565b6011600082825462000b0791906200120f565b909155505060155460165462000b1e9083620011d2565b62000b2a9190620011ec565b6010600082825462000b3d91906200120f565b90915550505b801562000b575762000b5787308362000b7c565b62000b63818662001225565b94505b62000b7387878762000b7c565b50505050505050565b6001600160a01b03831662000bab57806002600082825462000b9f91906200120f565b9091555062000c1f9050565b6001600160a01b0383166000908152602081905260409020548181101562000c005760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620003a8565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000c3d5760028054829003905562000c5c565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ca291815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060115460105462000cd591906200120f565b905081158062000ce3575080155b1562000ced575050565b60095482111562000cfe5760095491505b4762000d0a8362000dee565b600062000d18478362000f61565b9050600062000d388462000a0d6011548562000dc960201b90919060201c565b600060108190556011819055600f546040519293506001600160a01b03169183156108fc0291849190818181858888f1935050505015801562000d7f573d6000803e3d6000fd5b50600e546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f1935050505015801562000dc1573d6000803e3d6000fd5b505050505050565b600062000dd78284620011d2565b90505b92915050565b600062000dd78284620011ec565b604080516002808252606082018352600092602083019080368337019050509050308160008151811062000e265762000e266200123b565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000e87573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ead919062001251565b8160018151811062000ec35762000ec36200123b565b60200260200101906001600160a01b031690816001600160a01b03168152505062000ef8306080518462000f6f60201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b815260040162000f3195949392919062001283565b600060405180830381600087803b15801562000f4c57600080fd5b505af115801562000dc1573d6000803e3d6000fd5b600062000dd7828462001225565b620004db83838360016001600160a01b03841662000fa45760405163e602df0560e01b815260006004820152602401620003a8565b6001600160a01b03831662000fd057604051634a1406b160e11b815260006004820152602401620003a8565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156200104e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200104591815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200107f57607f821691505b602082108103620010a057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004db57600081815260208120601f850160051c81016020861015620010cf5750805b601f850160051c820191505b8181101562000dc157828155600101620010db565b81516001600160401b038111156200110c576200110c62001054565b62001124816200111d84546200106a565b84620010a6565b602080601f8311600181146200115c5760008415620011435750858301515b600019600386901b1c1916600185901b17855562000dc1565b600085815260208120601f198616915b828110156200118d578886015182559484019460019091019084016200116c565b5085821015620011ac5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000dda5762000dda620011bc565b6000826200120a57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000dda5762000dda620011bc565b8181038181111562000dda5762000dda620011bc565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156200126457600080fd5b81516001600160a01b03811681146200127c57600080fd5b9392505050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015620012d55784516001600160a01b031683529383019391830191600101620012ae565b50506001600160a01b03969096166060850152505050608001529392505050565b608051612237620013436000396000818161064301528181610e8001528181610f11015281816110490152818161107201528181611d4a01528181611e030152611e3f01526122376000f3fe6080604052600436106102765760003560e01c806358915a861161014f57806395d89b41116100c1578063dd62ed3e1161007a578063dd62ed3e14610730578063dfd028f014610750578063ed8a2fda14610770578063f2fde38b14610786578063f7f23a0c146107a6578063f8f86b99146107ae57600080fd5b806395d89b4114610665578063a457c2d71461067a578063a72905a21461069a578063a9059cbb146106ca578063aaa1fe45146106ea578063c7c5a39d1461071a57600080fd5b806375f0a8741161011357806375f0a874146105a257806376006273146105c75780638bcea939146105dd5780638c900a71146105fd5780638da5cb5b14610613578063958c2e521461063157600080fd5b806358915a861461050b57806365e007191461052b5780636caae8321461054157806370a0823114610557578063715018a61461058d57600080fd5b80632765cddd116101e857806339509351116101ac57806339509351146104465780633c8463a1146104665780633d56af6b1461047c57806346e9736114610492578063522ef4c7146104ca57806357e06699146104eb57600080fd5b80632765cddd146103d3578063293230b8146103e957806329563769146103fe578063313ce5671461041457806335c094a41461043057600080fd5b8063106d05831161023a578063106d058314610322578063159a522014610346578063171a65861461035c57806318160ddd1461037c57806323b872dd14610391578063268edfbe146103b157600080fd5b80630106aaef1461028257806306123160146102ac57806306fdde03146102c657806307b1faea146102e8578063095ea7b31461030257600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102976107ce565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600e546102979060ff1681565b3480156102d257600080fd5b506102db6107fa565b6040516102a39190611eb7565b3480156102f457600080fd5b50600a546102979060ff1681565b34801561030e57600080fd5b5061029761031d366004611f1a565b61088c565b34801561032e57600080fd5b5061033860165481565b6040519081526020016102a3565b34801561035257600080fd5b5061033860135481565b34801561036857600080fd5b50610297610377366004611f46565b6108a6565b34801561038857600080fd5b50600254610338565b34801561039d57600080fd5b506102976103ac366004611f5f565b6109d6565b3480156103bd57600080fd5b506103d16103cc366004611fa0565b6109fa565b005b3480156103df57600080fd5b5061033860175481565b3480156103f557600080fd5b506103d1610a91565b34801561040a57600080fd5b5061033860145481565b34801561042057600080fd5b50604051601281526020016102a3565b34801561043c57600080fd5b5061033860105481565b34801561045257600080fd5b50610297610461366004611f1a565b610add565b34801561047257600080fd5b50610338600b5481565b34801561048857600080fd5b5061033860115481565b34801561049e57600080fd5b50600f546104b2906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b3480156104d657600080fd5b5060065461029790600160a81b900460ff1681565b3480156104f757600080fd5b506103d1610506366004611fc2565b610aff565b34801561051757600080fd5b506103d1610526366004611f46565b610b88565b34801561053757600080fd5b5061033860085481565b34801561054d57600080fd5b50610338600c5481565b34801561056357600080fd5b50610338610572366004612000565b6001600160a01b031660009081526020819052604090205490565b34801561059957600080fd5b506103d1610c34565b3480156105ae57600080fd5b50600e546104b29061010090046001600160a01b031681565b3480156105d357600080fd5b5061033860075481565b3480156105e957600080fd5b506006546104b2906001600160a01b031681565b34801561060957600080fd5b5061033860155481565b34801561061f57600080fd5b506005546001600160a01b03166104b2565b34801561063d57600080fd5b506104b27f000000000000000000000000000000000000000000000000000000000000000081565b34801561067157600080fd5b506102db610c6a565b34801561068657600080fd5b50610297610695366004611f1a565b610c79565b3480156106a657600080fd5b506102976106b5366004612000565b60186020526000908152604090205460ff1681565b3480156106d657600080fd5b506102976106e5366004611f1a565b610cd0565b3480156106f657600080fd5b50610297610705366004612000565b601a6020526000908152604090205460ff1681565b34801561072657600080fd5b5061033860095481565b34801561073c57600080fd5b5061033861074b36600461201d565b610cde565b34801561075c57600080fd5b506103d161076b366004611f46565b610d09565b34801561077c57600080fd5b5061033860125481565b34801561079257600080fd5b506103d16107a1366004612000565b610db9565b6103d1610e54565b3480156107ba57600080fd5b506103d16107c9366004611fc2565b611167565b3360009081526019602052604081205460ff166107ea57600080fd5b50600a805460ff19169055600190565b6060600380546108099061204b565b80601f01602080910402602001604051908101604052809291908181526020018280546108359061204b565b80156108825780601f1061085757610100808354040283529160200191610882565b820191906000526020600020905b81548152906001019060200180831161086557829003601f168201915b5050505050905090565b60003361089a8185856111bc565b60019150505b92915050565b3360009081526019602052604081205460ff166108c257600080fd5b620186a06108cf60025490565b6108d9919061209b565b82101561094b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084015b60405180910390fd5b6008548211156109b85760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b6064820152608401610942565b6006546109ce906001600160a01b0316836111c9565b506001919050565b6000336109e48582856111ff565b6109ef858585611265565b506001949350505050565b6005546001600160a01b03163314610a245760405162461bcd60e51b8152600401610942906120bd565b60168290556017819055610a3881836120f2565b601581905560041015610a8d5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c657373000000006044820152606401610942565b5050565b6005546001600160a01b03163314610abb5760405162461bcd60e51b8152600401610942906120bd565b600e805460ff191660011790556006805460ff60a81b1916600160a81b179055565b60003361089a818585610af08383610cde565b610afa91906120f2565b6111bc565b6005546001600160a01b03163314610b295760405162461bcd60e51b8152600401610942906120bd565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610bb25760405162461bcd60e51b8152600401610942906120bd565b6002811015610c0e5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b6064820152608401610942565b6103e8610c1a60025490565b610c249083612105565b610c2e919061209b565b600c5550565b6005546001600160a01b03163314610c5e5760405162461bcd60e51b8152600401610942906120bd565b610c6860006112c4565b565b6060600480546108099061204b565b60003381610c878286610cde565b905083811015610cc357604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610942565b6109ef82868684036111bc565b60003361089a818585611265565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314610d335760405162461bcd60e51b8152600401610942906120bd565b6005811015610d935760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b6064820152608401610942565b6103e8610d9f60025490565b610da99083612105565b610db3919061209b565b600b5550565b6005546001600160a01b03163314610de35760405162461bcd60e51b8152600401610942906120bd565b6001600160a01b038116610e485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610942565b610e51816112c4565b50565b6005546001600160a01b03163314610e7e5760405162461bcd60e51b8152600401610942906120bd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610edc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f00919061211c565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f91919061211c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610fde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611002919061211c565b600680546001600160a01b0319166001600160a01b0392909216918217905561102c906001611167565b600654611043906001600160a01b03166001611316565b611070307f00000000000000000000000000000000000000000000000000000000000000006000196111bc565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d71934306110c0306001600160a01b031660009081526020819052604090205490565b6000806110d56005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561113d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111629190612139565b505050565b6005546001600160a01b031633146111915760405162461bcd60e51b8152600401610942906120bd565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b611162838383600161136a565b6001600160a01b0382166111f357604051634b637e8f60e11b815260006004820152602401610942565b610a8d8260008361143f565b600061120b8484610cde565b9050600019811461125f578181101561125057604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610942565b61125f8484848403600061136a565b50505050565b6001600160a01b03831661128f57604051634b637e8f60e11b815260006004820152602401610942565b6001600160a01b0382166112b95760405163ec442f0560e01b815260006004820152602401610942565b61116283838361143f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b0384166113945760405163e602df0560e01b815260006004820152602401610942565b6001600160a01b0383166113be57604051634a1406b160e11b815260006004820152602401610942565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561125f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161143191815260200190565b60405180910390a350505050565b806000036114535761116283836000611a9e565b6001600160a01b03831660009081526019602052604090205460ff1615801561149557506001600160a01b03821660009081526019602052604090205460ff16155b156114e557600e5460ff166114e55760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b6044820152606401610942565b600a5460ff1680156114f95750600e5460ff165b156117bc576005546001600160a01b0384811691161480159061152a57506005546001600160a01b03838116911614155b801561153e57506001600160a01b03821615155b801561155557506001600160a01b03821661dead14155b801561156b5750600654600160a01b900460ff16155b156117bc576001600160a01b03831660009081526018602052604090205460ff1680156115b157506001600160a01b0382166000908152601a602052604090205460ff16155b1561168857600c548111156116195760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b6064820152608401610942565b600b546001600160a01b03831660009081526020819052604090205461163f90836120f2565b11156116835760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610942565b6117bc565b6001600160a01b03821660009081526018602052604090205460ff1680156116c957506001600160a01b0383166000908152601a602052604090205460ff16155b1561173257600c548111156116835760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b6064820152608401610942565b6001600160a01b0382166000908152601a602052604090205460ff166117bc57600b546001600160a01b03831660009081526020819052604090205461177890836120f2565b11156117bc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610942565b30600090815260208190526040902054600754811080159081906117e95750600654600160a81b900460ff165b80156117ff5750600654600160a01b900460ff16155b801561182357506001600160a01b03841660009081526018602052604090205460ff165b8015611830575060075483115b801561185557506001600160a01b03851660009081526019602052604090205460ff16155b801561187a57506001600160a01b03841660009081526019602052604090205460ff16155b156118a8576006805460ff60a01b1916600160a01b17905561189a611bc8565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526019602052604090205460ff600160a01b9092048216159116806118f657506001600160a01b03851660009081526019602052604090205460ff165b156118ff575060005b60008115611a8a576001600160a01b03861660009081526018602052604090205460ff16801561193157506000601254115b156119bf57611956606461195060125488611cd490919063ffffffff16565b90611ce7565b9050601254601454826119699190612105565b611973919061209b565b6011600082825461198491906120f2565b90915550506012546013546119999083612105565b6119a3919061209b565b601060008282546119b491906120f2565b90915550611a6c9050565b6001600160a01b03871660009081526018602052604090205460ff1680156119e957506000601554115b15611a6c57611a08606461195060155488611cd490919063ffffffff16565b905060155460175482611a1b9190612105565b611a25919061209b565b60116000828254611a3691906120f2565b9091555050601554601654611a4b9083612105565b611a55919061209b565b60106000828254611a6691906120f2565b90915550505b8015611a7d57611a7d873083611a9e565b611a878186612167565b94505b611a95878787611a9e565b50505050505050565b6001600160a01b038316611ac9578060026000828254611abe91906120f2565b90915550611b3b9050565b6001600160a01b03831660009081526020819052604090205481811015611b1c5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610942565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611b5757600280548290039055611b76565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bbb91815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601154601054611bec91906120f2565b9050811580611bf9575080155b15611c02575050565b600954821115611c125760095491505b47611c1c83611cf3565b6000611c284783611eab565b90506000611c458461195060115485611cd490919063ffffffff16565b600060108190556011819055600f546040519293506001600160a01b03169183156108fc0291849190818181858888f19350505050158015611c8b573d6000803e3d6000fd5b50600e546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015611ccc573d6000803e3d6000fd5b505050505050565b6000611ce08284612105565b9392505050565b6000611ce0828461209b565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d2857611d2861217a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dca919061211c565b81600181518110611ddd57611ddd61217a565b60200260200101906001600160a01b031690816001600160a01b031681525050611e28307f0000000000000000000000000000000000000000000000000000000000000000846111bc565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e7d908590600090869030904290600401612190565b600060405180830381600087803b158015611e9757600080fd5b505af1158015611ccc573d6000803e3d6000fd5b6000611ce08284612167565b600060208083528351808285015260005b81811015611ee457858101830151858201604001528201611ec8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e5157600080fd5b60008060408385031215611f2d57600080fd5b8235611f3881611f05565b946020939093013593505050565b600060208284031215611f5857600080fd5b5035919050565b600080600060608486031215611f7457600080fd5b8335611f7f81611f05565b92506020840135611f8f81611f05565b929592945050506040919091013590565b60008060408385031215611fb357600080fd5b50508035926020909101359150565b60008060408385031215611fd557600080fd5b8235611fe081611f05565b915060208301358015158114611ff557600080fd5b809150509250929050565b60006020828403121561201257600080fd5b8135611ce081611f05565b6000806040838503121561203057600080fd5b823561203b81611f05565b91506020830135611ff581611f05565b600181811c9082168061205f57607f821691505b60208210810361207f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000826120b857634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808201808211156108a0576108a0612085565b80820281158282048414176108a0576108a0612085565b60006020828403121561212e57600080fd5b8151611ce081611f05565b60008060006060848603121561214e57600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108a0576108a0612085565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121e05784516001600160a01b0316835293830193918301916001016121bb565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122018e86b4ecab7c5ae87eee9e4f754f0aad7e1de6311c1b07069af45d8de4a82f864736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102765760003560e01c806358915a861161014f57806395d89b41116100c1578063dd62ed3e1161007a578063dd62ed3e14610730578063dfd028f014610750578063ed8a2fda14610770578063f2fde38b14610786578063f7f23a0c146107a6578063f8f86b99146107ae57600080fd5b806395d89b4114610665578063a457c2d71461067a578063a72905a21461069a578063a9059cbb146106ca578063aaa1fe45146106ea578063c7c5a39d1461071a57600080fd5b806375f0a8741161011357806375f0a874146105a257806376006273146105c75780638bcea939146105dd5780638c900a71146105fd5780638da5cb5b14610613578063958c2e521461063157600080fd5b806358915a861461050b57806365e007191461052b5780636caae8321461054157806370a0823114610557578063715018a61461058d57600080fd5b80632765cddd116101e857806339509351116101ac57806339509351146104465780633c8463a1146104665780633d56af6b1461047c57806346e9736114610492578063522ef4c7146104ca57806357e06699146104eb57600080fd5b80632765cddd146103d3578063293230b8146103e957806329563769146103fe578063313ce5671461041457806335c094a41461043057600080fd5b8063106d05831161023a578063106d058314610322578063159a522014610346578063171a65861461035c57806318160ddd1461037c57806323b872dd14610391578063268edfbe146103b157600080fd5b80630106aaef1461028257806306123160146102ac57806306fdde03146102c657806307b1faea146102e8578063095ea7b31461030257600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102976107ce565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600e546102979060ff1681565b3480156102d257600080fd5b506102db6107fa565b6040516102a39190611eb7565b3480156102f457600080fd5b50600a546102979060ff1681565b34801561030e57600080fd5b5061029761031d366004611f1a565b61088c565b34801561032e57600080fd5b5061033860165481565b6040519081526020016102a3565b34801561035257600080fd5b5061033860135481565b34801561036857600080fd5b50610297610377366004611f46565b6108a6565b34801561038857600080fd5b50600254610338565b34801561039d57600080fd5b506102976103ac366004611f5f565b6109d6565b3480156103bd57600080fd5b506103d16103cc366004611fa0565b6109fa565b005b3480156103df57600080fd5b5061033860175481565b3480156103f557600080fd5b506103d1610a91565b34801561040a57600080fd5b5061033860145481565b34801561042057600080fd5b50604051601281526020016102a3565b34801561043c57600080fd5b5061033860105481565b34801561045257600080fd5b50610297610461366004611f1a565b610add565b34801561047257600080fd5b50610338600b5481565b34801561048857600080fd5b5061033860115481565b34801561049e57600080fd5b50600f546104b2906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b3480156104d657600080fd5b5060065461029790600160a81b900460ff1681565b3480156104f757600080fd5b506103d1610506366004611fc2565b610aff565b34801561051757600080fd5b506103d1610526366004611f46565b610b88565b34801561053757600080fd5b5061033860085481565b34801561054d57600080fd5b50610338600c5481565b34801561056357600080fd5b50610338610572366004612000565b6001600160a01b031660009081526020819052604090205490565b34801561059957600080fd5b506103d1610c34565b3480156105ae57600080fd5b50600e546104b29061010090046001600160a01b031681565b3480156105d357600080fd5b5061033860075481565b3480156105e957600080fd5b506006546104b2906001600160a01b031681565b34801561060957600080fd5b5061033860155481565b34801561061f57600080fd5b506005546001600160a01b03166104b2565b34801561063d57600080fd5b506104b27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561067157600080fd5b506102db610c6a565b34801561068657600080fd5b50610297610695366004611f1a565b610c79565b3480156106a657600080fd5b506102976106b5366004612000565b60186020526000908152604090205460ff1681565b3480156106d657600080fd5b506102976106e5366004611f1a565b610cd0565b3480156106f657600080fd5b50610297610705366004612000565b601a6020526000908152604090205460ff1681565b34801561072657600080fd5b5061033860095481565b34801561073c57600080fd5b5061033861074b36600461201d565b610cde565b34801561075c57600080fd5b506103d161076b366004611f46565b610d09565b34801561077c57600080fd5b5061033860125481565b34801561079257600080fd5b506103d16107a1366004612000565b610db9565b6103d1610e54565b3480156107ba57600080fd5b506103d16107c9366004611fc2565b611167565b3360009081526019602052604081205460ff166107ea57600080fd5b50600a805460ff19169055600190565b6060600380546108099061204b565b80601f01602080910402602001604051908101604052809291908181526020018280546108359061204b565b80156108825780601f1061085757610100808354040283529160200191610882565b820191906000526020600020905b81548152906001019060200180831161086557829003601f168201915b5050505050905090565b60003361089a8185856111bc565b60019150505b92915050565b3360009081526019602052604081205460ff166108c257600080fd5b620186a06108cf60025490565b6108d9919061209b565b82101561094b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084015b60405180910390fd5b6008548211156109b85760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b6064820152608401610942565b6006546109ce906001600160a01b0316836111c9565b506001919050565b6000336109e48582856111ff565b6109ef858585611265565b506001949350505050565b6005546001600160a01b03163314610a245760405162461bcd60e51b8152600401610942906120bd565b60168290556017819055610a3881836120f2565b601581905560041015610a8d5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c657373000000006044820152606401610942565b5050565b6005546001600160a01b03163314610abb5760405162461bcd60e51b8152600401610942906120bd565b600e805460ff191660011790556006805460ff60a81b1916600160a81b179055565b60003361089a818585610af08383610cde565b610afa91906120f2565b6111bc565b6005546001600160a01b03163314610b295760405162461bcd60e51b8152600401610942906120bd565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610bb25760405162461bcd60e51b8152600401610942906120bd565b6002811015610c0e5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b6064820152608401610942565b6103e8610c1a60025490565b610c249083612105565b610c2e919061209b565b600c5550565b6005546001600160a01b03163314610c5e5760405162461bcd60e51b8152600401610942906120bd565b610c6860006112c4565b565b6060600480546108099061204b565b60003381610c878286610cde565b905083811015610cc357604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610942565b6109ef82868684036111bc565b60003361089a818585611265565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314610d335760405162461bcd60e51b8152600401610942906120bd565b6005811015610d935760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b6064820152608401610942565b6103e8610d9f60025490565b610da99083612105565b610db3919061209b565b600b5550565b6005546001600160a01b03163314610de35760405162461bcd60e51b8152600401610942906120bd565b6001600160a01b038116610e485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610942565b610e51816112c4565b50565b6005546001600160a01b03163314610e7e5760405162461bcd60e51b8152600401610942906120bd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610edc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f00919061211c565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f91919061211c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610fde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611002919061211c565b600680546001600160a01b0319166001600160a01b0392909216918217905561102c906001611167565b600654611043906001600160a01b03166001611316565b611070307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6000196111bc565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d71934306110c0306001600160a01b031660009081526020819052604090205490565b6000806110d56005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561113d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111629190612139565b505050565b6005546001600160a01b031633146111915760405162461bcd60e51b8152600401610942906120bd565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b611162838383600161136a565b6001600160a01b0382166111f357604051634b637e8f60e11b815260006004820152602401610942565b610a8d8260008361143f565b600061120b8484610cde565b9050600019811461125f578181101561125057604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610942565b61125f8484848403600061136a565b50505050565b6001600160a01b03831661128f57604051634b637e8f60e11b815260006004820152602401610942565b6001600160a01b0382166112b95760405163ec442f0560e01b815260006004820152602401610942565b61116283838361143f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b0384166113945760405163e602df0560e01b815260006004820152602401610942565b6001600160a01b0383166113be57604051634a1406b160e11b815260006004820152602401610942565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561125f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161143191815260200190565b60405180910390a350505050565b806000036114535761116283836000611a9e565b6001600160a01b03831660009081526019602052604090205460ff1615801561149557506001600160a01b03821660009081526019602052604090205460ff16155b156114e557600e5460ff166114e55760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b6044820152606401610942565b600a5460ff1680156114f95750600e5460ff165b156117bc576005546001600160a01b0384811691161480159061152a57506005546001600160a01b03838116911614155b801561153e57506001600160a01b03821615155b801561155557506001600160a01b03821661dead14155b801561156b5750600654600160a01b900460ff16155b156117bc576001600160a01b03831660009081526018602052604090205460ff1680156115b157506001600160a01b0382166000908152601a602052604090205460ff16155b1561168857600c548111156116195760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b6064820152608401610942565b600b546001600160a01b03831660009081526020819052604090205461163f90836120f2565b11156116835760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610942565b6117bc565b6001600160a01b03821660009081526018602052604090205460ff1680156116c957506001600160a01b0383166000908152601a602052604090205460ff16155b1561173257600c548111156116835760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b6064820152608401610942565b6001600160a01b0382166000908152601a602052604090205460ff166117bc57600b546001600160a01b03831660009081526020819052604090205461177890836120f2565b11156117bc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610942565b30600090815260208190526040902054600754811080159081906117e95750600654600160a81b900460ff165b80156117ff5750600654600160a01b900460ff16155b801561182357506001600160a01b03841660009081526018602052604090205460ff165b8015611830575060075483115b801561185557506001600160a01b03851660009081526019602052604090205460ff16155b801561187a57506001600160a01b03841660009081526019602052604090205460ff16155b156118a8576006805460ff60a01b1916600160a01b17905561189a611bc8565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526019602052604090205460ff600160a01b9092048216159116806118f657506001600160a01b03851660009081526019602052604090205460ff165b156118ff575060005b60008115611a8a576001600160a01b03861660009081526018602052604090205460ff16801561193157506000601254115b156119bf57611956606461195060125488611cd490919063ffffffff16565b90611ce7565b9050601254601454826119699190612105565b611973919061209b565b6011600082825461198491906120f2565b90915550506012546013546119999083612105565b6119a3919061209b565b601060008282546119b491906120f2565b90915550611a6c9050565b6001600160a01b03871660009081526018602052604090205460ff1680156119e957506000601554115b15611a6c57611a08606461195060155488611cd490919063ffffffff16565b905060155460175482611a1b9190612105565b611a25919061209b565b60116000828254611a3691906120f2565b9091555050601554601654611a4b9083612105565b611a55919061209b565b60106000828254611a6691906120f2565b90915550505b8015611a7d57611a7d873083611a9e565b611a878186612167565b94505b611a95878787611a9e565b50505050505050565b6001600160a01b038316611ac9578060026000828254611abe91906120f2565b90915550611b3b9050565b6001600160a01b03831660009081526020819052604090205481811015611b1c5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610942565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611b5757600280548290039055611b76565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bbb91815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601154601054611bec91906120f2565b9050811580611bf9575080155b15611c02575050565b600954821115611c125760095491505b47611c1c83611cf3565b6000611c284783611eab565b90506000611c458461195060115485611cd490919063ffffffff16565b600060108190556011819055600f546040519293506001600160a01b03169183156108fc0291849190818181858888f19350505050158015611c8b573d6000803e3d6000fd5b50600e546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015611ccc573d6000803e3d6000fd5b505050505050565b6000611ce08284612105565b9392505050565b6000611ce0828461209b565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d2857611d2861217a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dca919061211c565b81600181518110611ddd57611ddd61217a565b60200260200101906001600160a01b031690816001600160a01b031681525050611e28307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846111bc565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e7d908590600090869030904290600401612190565b600060405180830381600087803b158015611e9757600080fd5b505af1158015611ccc573d6000803e3d6000fd5b6000611ce08284612167565b600060208083528351808285015260005b81811015611ee457858101830151858201604001528201611ec8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e5157600080fd5b60008060408385031215611f2d57600080fd5b8235611f3881611f05565b946020939093013593505050565b600060208284031215611f5857600080fd5b5035919050565b600080600060608486031215611f7457600080fd5b8335611f7f81611f05565b92506020840135611f8f81611f05565b929592945050506040919091013590565b60008060408385031215611fb357600080fd5b50508035926020909101359150565b60008060408385031215611fd557600080fd5b8235611fe081611f05565b915060208301358015158114611ff557600080fd5b809150509250929050565b60006020828403121561201257600080fd5b8135611ce081611f05565b6000806040838503121561203057600080fd5b823561203b81611f05565b91506020830135611ff581611f05565b600181811c9082168061205f57607f821691505b60208210810361207f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000826120b857634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808201808211156108a0576108a0612085565b80820281158282048414176108a0576108a0612085565b60006020828403121561212e57600080fd5b8151611ce081611f05565b60008060006060848603121561214e57600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108a0576108a0612085565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121e05784516001600160a01b0316835293830193918301916001016121bb565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122018e86b4ecab7c5ae87eee9e4f754f0aad7e1de6311c1b07069af45d8de4a82f864736f6c63430008130033

Deployed Bytecode Sourcemap

26737:12114:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38730:118;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;38730:118:0;;;;;;;;27342:28;;;;;;;;;;-1:-1:-1;27342:28:0;;;;;;;;14949:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27129:30::-;;;;;;;;;;-1:-1:-1;27129:30:0;;;;;;;;17242:190;;;;;;;;;;-1:-1:-1;17242:190:0;;;;;:::i;:::-;;:::i;27680:22::-;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;27680:22:0;1215:177:1;27591:23:0;;;;;;;;;;;;;;;;30751:450;;;;;;;;;;-1:-1:-1;30751:450:0;;;;;:::i;:::-;;:::i;16051:99::-;;;;;;;;;;-1:-1:-1;16130:12:0;;16051:99;;18010:249;;;;;;;;;;-1:-1:-1;18010:249:0;;;;;:::i;:::-;;:::i;37760:258::-;;;;;;;;;;-1:-1:-1;37760:258:0;;;;;:::i;:::-;;:::i;:::-;;27709:22;;;;;;;;;;;;;;;;38542:113;;;;;;;;;;;;;:::i;27621:23::-;;;;;;;;;;;;;;;;15902:84;;;;;;;;;;-1:-1:-1;15902:84:0;;15976:2;2438:36:1;;2426:2;2411:18;15902:84:0;2296:184:1;27479:33:0;;;;;;;;;;;;;;;;18668:238;;;;;;;;;;-1:-1:-1;18668:238:0;;;;;:::i;:::-;;:::i;27166:26::-;;;;;;;;;;;;;;;;27519:33;;;;;;;;;;;;;;;;27436:36;;;;;;;;;;-1:-1:-1;27436:36:0;;;;-1:-1:-1;;;;;27436:36:0;;;;;;-1:-1:-1;;;;;2649:32:1;;;2631:51;;2619:2;2604:18;27436:36:0;2485:203:1;26944:38:0;;;;;;;;;;-1:-1:-1;26944:38:0;;;;-1:-1:-1;;;26944:38:0;;;;;;35773:183;;;;;;;;;;-1:-1:-1;35773:183:0;;;;;:::i;:::-;;:::i;30543:200::-;;;;;;;;;;-1:-1:-1;30543:200:0;;;;;:::i;:::-;;:::i;27030:31::-;;;;;;;;;;;;;;;;27199:22;;;;;;;;;;;;;;;;16213:118;;;;;;;;;;-1:-1:-1;16213:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;16305:18:0;16278:7;16305:18;;;;;;;;;;;;16213:118;10974:103;;;;;;;;;;;;;:::i;27399:30::-;;;;;;;;;;-1:-1:-1;27399:30:0;;;;;;;-1:-1:-1;;;;;27399:30:0;;;26989:34;;;;;;;;;;;;;;;;26860:24;;;;;;;;;;-1:-1:-1;26860:24:0;;;;-1:-1:-1;;;;;26860:24:0;;;27651:22;;;;;;;;;;;;;;;;10323:87;;;;;;;;;;-1:-1:-1;10396:6:0;;-1:-1:-1;;;;;10396:6:0;10323:87;;26812:41;;;;;;;;;;;;;;;15159:95;;;;;;;;;;;;;:::i;19594:504::-;;;;;;;;;;-1:-1:-1;19594:504:0;;;;;:::i;:::-;;:::i;27891:40::-;;;;;;;;;;-1:-1:-1;27891:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16536:182;;;;;;;;;;-1:-1:-1;16536:182:0;;;;;:::i;:::-;;:::i;28066:50::-;;;;;;;;;;-1:-1:-1;28066:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27068:34;;;;;;;;;;;;;;;;16781:142;;;;;;;;;;-1:-1:-1;16781:142:0;;;;;:::i;:::-;;:::i;34500:207::-;;;;;;;;;;-1:-1:-1;34500:207:0;;;;;:::i;:::-;;:::i;27561:23::-;;;;;;;;;;;;;;;;11232:238;;;;;;;;;;-1:-1:-1;11232:238:0;;;;;:::i;:::-;;:::i;35049:559::-;;;:::i;34893:148::-;;;;;;;;;;-1:-1:-1;34893:148:0;;;;;:::i;:::-;;:::i;38730:118::-;28171:10;38782:4;28161:21;;;:9;:21;;;;;;;;28153:30;;;;;;-1:-1:-1;38799:11:0::1;:19:::0;;-1:-1:-1;;38799:19:0::1;::::0;;;38730:118;:::o;14949:91::-;14994:13;15027:5;15020:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14949:91;:::o;17242:190::-;17315:4;9754:10;17371:31;9754:10;17387:7;17396:5;17371:8;:31::i;:::-;17420:4;17413:11;;;17242:190;;;;;:::o;30751:450::-;28171:10;30847:4;28161:21;;;:9;:21;;;;;;;;28153:30;;;;;;30915:6:::1;30899:13;16130:12:::0;;;16051:99;30899:13:::1;:22;;;;:::i;:::-;30886:9;:35;;30864:138;;;::::0;-1:-1:-1;;;30864:138:0;;4929:2:1;30864:138:0::1;::::0;::::1;4911:21:1::0;4968:2;4948:18;;;4941:30;5007:34;4987:18;;;4980:62;-1:-1:-1;;;5058:18:1;;;5051:51;5119:19;;30864:138:0::1;;;;;;;;;31048:16;;31035:9;:29;;31013:129;;;::::0;-1:-1:-1;;;31013:129:0;;5351:2:1;31013:129:0::1;::::0;::::1;5333:21:1::0;5390:2;5370:18;;;5363:30;5429:34;5409:18;;;5402:62;-1:-1:-1;;;5480:18:1;;;5473:48;5538:19;;31013:129:0::1;5149:414:1::0;31013:129:0::1;31150:9;::::0;31144:27:::1;::::0;-1:-1:-1;;;;;31150:9:0::1;31161::::0;31144:5:::1;:27::i;:::-;-1:-1:-1::0;31189:4:0::1;30751:450:::0;;;:::o;18010:249::-;18097:4;9754:10;18155:37;18171:4;9754:10;18186:5;18155:15;:37::i;:::-;18203:26;18213:4;18219:2;18223:5;18203:9;:26::i;:::-;-1:-1:-1;18247:4:0;;18010:249;-1:-1:-1;;;;18010:249:0:o;37760:258::-;10396:6;;-1:-1:-1;;;;;10396:6:0;9754:10;10543:23;10535:68;;;;-1:-1:-1;;;10535:68:0;;;;;;;:::i;:::-;37867:7:::1;:15:::0;;;37893:7:::1;:15:::0;;;37929:17:::1;37903:5:::0;37877;37929:17:::1;:::i;:::-;37919:7;:27:::0;;;37976:1:::1;-1:-1:-1::0;37965:12:0::1;37957:53;;;::::0;-1:-1:-1;;;37957:53:0;;6261:2:1;37957:53:0::1;::::0;::::1;6243:21:1::0;6300:2;6280:18;;;6273:30;6339;6319:18;;;6312:58;6387:18;;37957:53:0::1;6059:352:1::0;37957:53:0::1;37760:258:::0;;:::o;38542:113::-;10396:6;;-1:-1:-1;;;;;10396:6:0;9754:10;10543:23;10535:68;;;;-1:-1:-1;;;10535:68:0;;;;;;;:::i;:::-;38596:8:::1;:15:::0;;-1:-1:-1;;38596:15:0::1;38607:4;38596:15;::::0;;38622:18:::1;:25:::0;;-1:-1:-1;;;;38622:25:0::1;-1:-1:-1::0;;;38622:25:0::1;::::0;;38542:113::o;18668:238::-;18756:4;9754:10;18812:64;9754:10;18828:7;18865:10;18837:25;9754:10;18828:7;18837:9;:25::i;:::-;:38;;;;:::i;:::-;18812:8;:64::i;35773:183::-;10396:6;;-1:-1:-1;;;;;10396:6:0;9754:10;10543:23;10535:68;;;;-1:-1:-1;;;10535:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35861:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;;;:29;;-1:-1:-1;;35861:29:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35906:42;;154:41:1;;;35906:42:0::1;::::0;127:18:1;35906:42:0::1;;;;;;;35773:183:::0;;:::o;30543:200::-;10396:6;;-1:-1:-1;;;;;10396:6:0;9754:10;10543:23;10535:68;;;;-1:-1:-1;;;10535:68:0;;;;;;;:::i;:::-;30643:1:::1;30633:6;:11;;30625:58;;;::::0;-1:-1:-1;;;30625:58:0;;6618:2:1;30625:58:0::1;::::0;::::1;6600:21:1::0;6657:2;6637:18;;;6630:30;6696:34;6676:18;;;6669:62;-1:-1:-1;;;6747:18:1;;;6740:32;6789:19;;30625:58:0::1;6416:398:1::0;30625:58:0::1;30731:4;30714:13;16130:12:::0;;;16051:99;30714:13:::1;30705:22;::::0;:6;:22:::1;:::i;:::-;30704:31;;;;:::i;:::-;30694:7;:41:::0;-1:-1:-1;30543:200:0:o;10974:103::-;10396:6;;-1:-1:-1;;;;;10396:6:0;9754:10;10543:23;10535:68;;;;-1:-1:-1;;;10535:68:0;;;;;;;:::i;:::-;11039:30:::1;11066:1;11039:18;:30::i;:::-;10974:103::o:0;15159:95::-;15206:13;15239:7;15232:14;;;;;:::i;19594:504::-;19689:4;9754:10;19689:4;19772:25;9754:10;19789:7;19772:9;:25::i;:::-;19745:52;;19831:17;19812:16;:36;19808:150;;;19872:74;;-1:-1:-1;;;19872:74:0;;-1:-1:-1;;;;;7212:32:1;;19872:74:0;;;7194:51:1;7261:18;;;7254:34;;;7304:18;;;7297:34;;;7167:18;;19872:74:0;6992:345:1;19808:150:0;19993:62;20002:5;20009:7;20037:17;20018:16;:36;19993:8;:62::i;16536:182::-;16605:4;9754:10;16661:27;9754:10;16678:2;16682:5;16661:9;:27::i;16781:142::-;-1:-1:-1;;;;;16888:18:0;;;16861:7;16888:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16781:142::o;34500:207::-;10396:6;;-1:-1:-1;;;;;10396:6:0;9754:10;10543:23;10535:68;;;;-1:-1:-1;;;10535:68:0;;;;;;;:::i;:::-;34599:1:::1;34589:6;:11;;34581:62;;;::::0;-1:-1:-1;;;34581:62:0;;7544:2:1;34581:62:0::1;::::0;::::1;7526:21:1::0;7583:2;7563:18;;;7556:30;7622:34;7602:18;;;7595:62;-1:-1:-1;;;7673:18:1;;;7666:36;7719:19;;34581:62:0::1;7342:402:1::0;34581:62:0::1;34695:4;34678:13;16130:12:::0;;;16051:99;34678:13:::1;34669:22;::::0;:6;:22:::1;:::i;:::-;34668:31;;;;:::i;:::-;34654:11;:45:::0;-1:-1:-1;34500:207:0:o;11232:238::-;10396:6;;-1:-1:-1;;;;;10396:6:0;9754:10;10543:23;10535:68;;;;-1:-1:-1;;;10535:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11335:22:0;::::1;11313:110;;;::::0;-1:-1:-1;;;11313:110:0;;7951:2:1;11313:110:0::1;::::0;::::1;7933:21:1::0;7990:2;7970:18;;;7963:30;8029:34;8009:18;;;8002:62;-1:-1:-1;;;8080:18:1;;;8073:36;8126:19;;11313:110:0::1;7749:402:1::0;11313:110:0::1;11434:28;11453:8;11434:18;:28::i;:::-;11232:238:::0;:::o;35049:559::-;10396:6;;-1:-1:-1;;;;;10396:6:0;9754:10;10543:23;10535:68;;;;-1:-1:-1;;;10535:68:0;;;;;;;:::i;:::-;35133:11:::1;-1:-1:-1::0;;;;;35133:19:0::1;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35119:47:0::1;;35175:4;35182:11;-1:-1:-1::0;;;;;35182:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35119:82;::::0;-1:-1:-1;;;;;;35119:82:0::1;::::0;;;;;;-1:-1:-1;;;;;8642:15:1;;;35119:82:0::1;::::0;::::1;8624:34:1::0;8694:15;;8674:18;;;8667:43;8559:18;;35119:82:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35107:9;:94:::0;;-1:-1:-1;;;;;;35107:94:0::1;-1:-1:-1::0;;;;;35107:94:0;;;::::1;::::0;;::::1;::::0;;35212:43:::1;::::0;-1:-1:-1;35212:17:0::1;:43::i;:::-;35287:9;::::0;35266:38:::1;::::0;-1:-1:-1;;;;;35287:9:0::1;::::0;35266:12:::1;:38::i;:::-;35315:64;35332:4;35347:11;-1:-1:-1::0;;35315:8:0::1;:64::i;:::-;35391:11;-1:-1:-1::0;;;;;35391:27:0::1;;35426:9;35459:4;35479:24;35497:4;-1:-1:-1::0;;;;;16305:18:0;16278:7;16305:18;;;;;;;;;;;;16213:118;35479:24:::1;35518:1;35535::::0;35552:7:::1;10396:6:::0;;-1:-1:-1;;;;;10396:6:0;;10323:87;35552:7:::1;35391:209;::::0;::::1;::::0;;;-1:-1:-1;;;;;;35391:209:0;;;-1:-1:-1;;;;;9080:15:1;;;35391:209:0::1;::::0;::::1;9062:34:1::0;9112:18;;;9105:34;;;;9155:18;;;9148:34;;;;9198:18;;;9191:34;9262:15;;;9241:19;;;9234:44;35574:15:0::1;9294:19:1::0;;;9287:35;8996:19;;35391:209:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35049:559::o:0;34893:148::-;10396:6;;-1:-1:-1;;;;;10396:6:0;9754:10;10543:23;10535:68;;;;-1:-1:-1;;;10535:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35000:26:0;;;::::1;;::::0;;;:18:::1;:26;::::0;;;;:33;;-1:-1:-1;;35000:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34893:148::o;23791:138::-;23884:37;23893:5;23900:7;23909:5;23916:4;23884:8;:37::i;23143:211::-;-1:-1:-1;;;;;23214:21:0;;23210:91;;23259:30;;-1:-1:-1;;;23259:30:0;;23286:1;23259:30;;;2631:51:1;2604:18;;23259:30:0;2485:203:1;23210:91:0;23311:35;23319:7;23336:1;23340:5;23311:7;:35::i;25528:487::-;25628:24;25655:25;25665:5;25672:7;25655:9;:25::i;:::-;25628:52;;-1:-1:-1;;25695:16:0;:37;25691:317;;25772:5;25753:16;:24;25749:132;;;25805:60;;-1:-1:-1;;;25805:60:0;;-1:-1:-1;;;;;7212:32:1;;25805:60:0;;;7194:51:1;7261:18;;;7254:34;;;7304:18;;;7297:34;;;7167:18;;25805:60:0;6992:345:1;25749:132:0;25924:57;25933:5;25940:7;25968:5;25949:16;:24;25975:5;25924:8;:57::i;:::-;25617:398;25528:487;;;:::o;20483:308::-;-1:-1:-1;;;;;20567:18:0;;20563:88;;20609:30;;-1:-1:-1;;;20609:30:0;;20636:1;20609:30;;;2631:51:1;2604:18;;20609:30:0;2485:203:1;20563:88:0;-1:-1:-1;;;;;20665:16:0;;20661:88;;20705:32;;-1:-1:-1;;;20705:32:0;;20734:1;20705:32;;;2631:51:1;2604:18;;20705:32:0;2485:203:1;20661:88:0;20759:24;20767:4;20773:2;20777:5;20759:7;:24::i;11630:191::-;11723:6;;;-1:-1:-1;;;;;11740:17:0;;;-1:-1:-1;;;;;;11740:17:0;;;;;;;11773:40;;11723:6;;;11740:17;11723:6;;11773:40;;11704:16;;11773:40;11693:128;11630:191;:::o;35964:138::-;-1:-1:-1;;;;;36031:14:0;;;;;;:8;:14;;;;;;:22;;-1:-1:-1;;36031:22:0;;;;;;;;;;36071:23;;36031:22;;:14;36071:23;;;35964:138;;:::o;24796:443::-;-1:-1:-1;;;;;24909:19:0;;24905:91;;24952:32;;-1:-1:-1;;;24952:32:0;;24981:1;24952:32;;;2631:51:1;2604:18;;24952:32:0;2485:203:1;24905:91:0;-1:-1:-1;;;;;25010:21:0;;25006:92;;25055:31;;-1:-1:-1;;;25055:31:0;;25083:1;25055:31;;;2631:51:1;2604:18;;25055:31:0;2485:203:1;25006:92:0;-1:-1:-1;;;;;25108:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;25154:78;;;;25205:7;-1:-1:-1;;;;;25189:31:0;25198:5;-1:-1:-1;;;;;25189:31:0;;25214:5;25189:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;25189:31:0;;;;;;;;24796:443;;;;:::o;31209:3166::-;31335:6;31345:1;31335:11;31331:54;;31349:26;31363:4;31369:2;31373:1;31349:13;:26::i;31331:54::-;-1:-1:-1;;;;;31400:15:0;;;;;;:9;:15;;;;;;;;31399:16;:34;;;;-1:-1:-1;;;;;;31420:13:0;;;;;;:9;:13;;;;;;;;31419:14;31399:34;31395:83;;;31443:8;;;;31435:43;;;;-1:-1:-1;;;31435:43:0;;9846:2:1;31435:43:0;;;9828:21:1;9885:2;9865:18;;;9858:30;-1:-1:-1;;;9904:18:1;;;9897:52;9966:18;;31435:43:0;9644:346:1;31435:43:0;31493:11;;;;:23;;;;-1:-1:-1;31508:8:0;;;;31493:23;31489:1265;;;10396:6;;-1:-1:-1;;;;;31555:15:0;;;10396:6;;31555:15;;;;:49;;-1:-1:-1;10396:6:0;;-1:-1:-1;;;;;31591:13:0;;;10396:6;;31591:13;;31555:49;:86;;;;-1:-1:-1;;;;;;31625:16:0;;;;31555:86;:128;;;;-1:-1:-1;;;;;;31662:21:0;;31676:6;31662:21;;31555:128;:164;;;;-1:-1:-1;31705:14:0;;-1:-1:-1;;;31705:14:0;;;;31704:15;31555:164;31533:1210;;;-1:-1:-1;;;;;31788:14:0;;;;;;:8;:14;;;;;;;;:41;;;;-1:-1:-1;;;;;;31807:22:0;;;;;;:18;:22;;;;;;;;31806:23;31788:41;31784:944;;;31898:7;;31888:6;:17;;31854:143;;;;-1:-1:-1;;;31854:143:0;;10197:2:1;31854: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;;31854:143:0;9995:404:1;31854:143:0;32080:11;;-1:-1:-1;;;;;16305:18:0;;16278:7;16305:18;;;;;;;;;;;32054:22;;:6;:22;:::i;:::-;:37;;32020:142;;;;-1:-1:-1;;;32020:142:0;;10606:2:1;32020:142:0;;;10588:21:1;10645:2;10625:18;;;10618:30;-1:-1:-1;;;10664:18:1;;;10657:49;10723:18;;32020:142:0;10404:343:1;32020:142:0;31784:944;;;-1:-1:-1;;;;;32260:12:0;;;;;;:8;:12;;;;;;;;:41;;;;-1:-1:-1;;;;;;32277:24:0;;;;;;:18;:24;;;;;;;;32276:25;32260:41;32234:494;;;32388:7;;32378:6;:17;;32344:144;;;;-1:-1:-1;;;32344:144:0;;10954:2:1;32344: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;;32344:144:0;10752:405:1;32234:494:0;-1:-1:-1;;;;;32519:22:0;;;;;;:18;:22;;;;;;;;32514:214;;32626:11;;-1:-1:-1;;;;;16305:18:0;;16278:7;16305:18;;;;;;;;;;;32600:22;;:6;:22;:::i;:::-;:37;;32566:142;;;;-1:-1:-1;;;32566:142:0;;10606:2:1;32566:142:0;;;10588:21:1;10645:2;10625:18;;;10618:30;-1:-1:-1;;;10664:18:1;;;10657:49;10723:18;;32566:142:0;10404:343:1;32566:142:0;32815:4;32766:28;16305:18;;;;;;;;;;;32873:19;;32849:43;;;;;;;32923:42;;-1:-1:-1;32947:18:0;;-1:-1:-1;;;32947:18:0;;;;32923:42;:74;;;;-1:-1:-1;32983:14:0;;-1:-1:-1;;;32983:14:0;;;;32982:15;32923:74;:103;;;;-1:-1:-1;;;;;;33014:12:0;;;;;;:8;:12;;;;;;;;32923:103;:148;;;;;33052:19;;33043:6;:28;32923:148;:181;;;;-1:-1:-1;;;;;;33089:15:0;;;;;;:9;:15;;;;;;;;33088:16;32923:181;:212;;;;-1:-1:-1;;;;;;33122:13:0;;;;;;:9;:13;;;;;;;;33121:14;32923:212;32905:363;;;33162:14;:21;;-1:-1:-1;;;;33162:21:0;-1:-1:-1;;;33162:21:0;;;33200:17;:15;:17::i;:::-;33234:14;:22;;-1:-1:-1;;;;33234:22:0;;;32905:363;33296:14;;-1:-1:-1;;;;;33412:15:0;;33280:12;33412:15;;;:9;:15;;;;;;33296:14;-1:-1:-1;;;33296:14:0;;;;;33295:15;;33412;;:32;;-1:-1:-1;;;;;;33431:13:0;;;;;;:9;:13;;;;;;;;33412:32;33408:80;;;-1:-1:-1;33471:5:0;33408:80;33500:12;33605:7;33601:723;;;-1:-1:-1;;;;;33657:12:0;;;;;;:8;:12;;;;;;;;:28;;;;;33684:1;33673:8;;:12;33657:28;33653:524;;;33713:29;33738:3;33713:20;33724:8;;33713:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;33706:36;;33803:8;;33791;;33784:4;:15;;;;:::i;:::-;33783:28;;;;:::i;:::-;33761:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;33872:8:0;;33860;;33853:15;;:4;:15;:::i;:::-;33852:28;;;;:::i;:::-;33830:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;33653:524:0;;-1:-1:-1;33653:524:0;;-1:-1:-1;;;;;33942:14:0;;;;;;:8;:14;;;;;;;;:29;;;;;33970:1;33960:7;;:11;33942:29;33938:239;;;33999:28;34023:3;33999:19;34010:7;;33999:6;:10;;:19;;;;:::i;:28::-;33992:35;;34087:7;;34076;;34069:4;:14;;;;:::i;:::-;34068:26;;;;:::i;:::-;34046:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;34154:7:0;;34143;;34136:14;;:4;:14;:::i;:::-;34135:26;;;;:::i;:::-;34113:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;33938:239:0;34197:8;;34193:89;;34226:40;34240:4;34254;34261;34226:13;:40::i;:::-;34298:14;34308:4;34298:14;;:::i;:::-;;;33601:723;34336:31;34350:4;34356:2;34360:6;34336:13;:31::i;:::-;31320:3055;;;;31209:3166;;;:::o;21107:1135::-;-1:-1:-1;;;;;21197:18:0;;21193:552;;21351:5;21335:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;21193:552:0;;-1:-1:-1;21193:552:0;;-1:-1:-1;;;;;21411:15:0;;21389:19;21411:15;;;;;;;;;;;21445:19;;;21441:117;;;21492:50;;-1:-1:-1;;;21492:50:0;;-1:-1:-1;;;;;7212:32:1;;21492:50:0;;;7194:51:1;7261:18;;;7254:34;;;7304:18;;;7297:34;;;7167:18;;21492:50:0;6992:345:1;21441:117:0;-1:-1:-1;;;;;21681:15:0;;:9;:15;;;;;;;;;;21699:19;;;;21681:37;;21193:552;-1:-1:-1;;;;;21761:16:0;;21757:435;;21927:12;:21;;;;;;;21757:435;;;-1:-1:-1;;;;;22143:13:0;;:9;:13;;;;;;;;;;:22;;;;;;21757:435;22224:2;-1:-1:-1;;;;;22209:25:0;22218:4;-1:-1:-1;;;;;22209:25:0;;22228:5;22209:25;;;;1361::1;;1349:2;1334:18;;1215:177;22209:25:0;;;;;;;;21107:1135;;;:::o;36713:896::-;36803:4;36759:23;16305:18;;;;;;;;;;;36759:50;;36820:25;36869:18;;36848;;:39;;;;:::i;:::-;36820:67;-1:-1:-1;36902:20:0;;;:46;;-1:-1:-1;36926:22:0;;36902:46;36898:85;;;36965:7;;36713:896::o;36898:85::-;37017:19;;36999:15;:37;36995:107;;;37071:19;;37053:37;;36995:107;37142:21;37176:51;37211:15;37176:34;:51::i;:::-;37240:18;37261:44;:21;37287:17;37261:25;:44::i;:::-;37240:65;;37318:21;37342:57;37381:17;37342:34;37357:18;;37342:10;:14;;:34;;;;:::i;:57::-;37433:1;37412:18;:22;;;37445:18;:22;;;37488:21;;37480:54;;37318:81;;-1:-1:-1;;;;;;37488:21:0;;37480:54;;;;;37318:81;;37480:54;;37433:1;37480:54;37318:81;37488:21;37480:54;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37553:15:0;;37545:56;;-1:-1:-1;;;;;37553:15:0;;;;;;;;;37579:21;37545:56;;;;;;;;;37579:21;37553:15;37545:56;;;;;;;;;;;;;;;;;;;;;36748:861;;;;;36713:896::o;6214:98::-;6272:7;6299:5;6303:1;6299;:5;:::i;:::-;6292:12;6214:98;-1:-1:-1;;;6214:98:0:o;6613:::-;6671:7;6698:5;6702:1;6698;:5;:::i;36110:595::-;36278:16;;;36292:1;36278:16;;;;;;;;36254:21;;36278:16;;;;;;;;;;-1:-1:-1;36278:16:0;36254:40;;36323:4;36305;36310:1;36305:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36305:23:0;;;-1:-1:-1;;;;;36305:23:0;;;;;36349:11;-1:-1:-1;;;;;36349:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36339:4;36344:1;36339:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;36339:28:0;;;-1:-1:-1;;;;;36339:28:0;;;;;36380:58;36397:4;36412:11;36426;36380:8;:58::i;:::-;36477:220;;-1:-1:-1;;;36477:220:0;;-1:-1:-1;;;;;36477:11:0;:62;;;;:220;;36554:11;;36580:1;;36624:4;;36651;;36671:15;;36477:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5857:98;5915:7;5942:5;5946:1;5942;:5;:::i;206:548:1:-;318:4;347:2;376;365:9;358:21;408:6;402:13;451:6;446:2;435:9;431:18;424:34;476:1;486:140;500:6;497:1;494:13;486:140;;;595:14;;;591:23;;585:30;561:17;;;580:2;557:26;550:66;515:10;;486:140;;;490:3;675:1;670:2;661:6;650:9;646:22;642:31;635:42;745:2;738;734:7;729:2;721:6;717:15;713:29;702:9;698:45;694:54;686:62;;;;206:548;;;;:::o;759:131::-;-1:-1:-1;;;;;834:31:1;;824:42;;814:70;;880:1;877;870:12;895:315;963:6;971;1024:2;1012:9;1003:7;999:23;995:32;992:52;;;1040:1;1037;1030:12;992:52;1079:9;1066:23;1098:31;1123:5;1098:31;:::i;:::-;1148:5;1200:2;1185:18;;;;1172:32;;-1:-1:-1;;;895:315:1:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:456::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1783:9;1770:23;1802:31;1827:5;1802:31;:::i;:::-;1852:5;-1:-1:-1;1909:2:1;1894:18;;1881:32;1922:33;1881:32;1922:33;:::i;:::-;1582:456;;1974:7;;-1:-1:-1;;;2028:2:1;2013:18;;;;2000:32;;1582:456::o;2043:248::-;2111:6;2119;2172:2;2160:9;2151:7;2147:23;2143:32;2140:52;;;2188:1;2185;2178:12;2140:52;-1:-1:-1;;2211:23:1;;;2281:2;2266:18;;;2253:32;;-1:-1:-1;2043:248:1:o;2693:416::-;2758:6;2766;2819:2;2807:9;2798:7;2794:23;2790:32;2787:52;;;2835:1;2832;2825:12;2787:52;2874:9;2861:23;2893:31;2918:5;2893:31;:::i;:::-;2943:5;-1:-1:-1;3000:2:1;2985:18;;2972:32;3042:15;;3035:23;3023:36;;3013:64;;3073:1;3070;3063:12;3013:64;3096:7;3086:17;;;2693:416;;;;;:::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:380::-;4067:1;4063:12;;;;4110;;;4131:61;;4185:4;4177:6;4173:17;4163:27;;4131:61;4238:2;4230:6;4227:14;4207:18;4204:38;4201:161;;4284:10;4279:3;4275:20;4272:1;4265:31;4319:4;4316:1;4309:15;4347:4;4344:1;4337:15;4201:161;;3988:380;;;:::o;4373:127::-;4434:10;4429:3;4425:20;4422:1;4415:31;4465:4;4462:1;4455:15;4489:4;4486:1;4479:15;4505:217;4545:1;4571;4561:132;;4615:10;4610:3;4606:20;4603:1;4596:31;4650:4;4647:1;4640:15;4678:4;4675:1;4668:15;4561:132;-1:-1:-1;4707:9:1;;4505:217::o;5568:356::-;5770:2;5752:21;;;5789:18;;;5782:30;5848:34;5843:2;5828:18;;5821:62;5915:2;5900:18;;5568:356::o;5929:125::-;5994:9;;;6015:10;;;6012:36;;;6028:18;;:::i;6819:168::-;6892:9;;;6923;;6940:15;;;6934:22;;6920:37;6910:71;;6961:18;;:::i;8156:251::-;8226:6;8279:2;8267:9;8258:7;8254:23;8250:32;8247:52;;;8295:1;8292;8285:12;8247:52;8327:9;8321:16;8346:31;8371:5;8346:31;:::i;9333:306::-;9421:6;9429;9437;9490:2;9478:9;9469:7;9465:23;9461:32;9458:52;;;9506:1;9503;9496:12;9458:52;9535:9;9529:16;9519:26;;9585:2;9574:9;9570:18;9564:25;9554:35;;9629:2;9618:9;9614:18;9608:25;9598:35;;9333:306;;;;;:::o;11162:128::-;11229:9;;;11250:11;;;11247:37;;;11264:18;;:::i;11427:127::-;11488:10;11483:3;11479:20;11476:1;11469:31;11519:4;11516:1;11509:15;11543:4;11540:1;11533:15;11559:980;11821:4;11869:3;11858:9;11854:19;11900:6;11889:9;11882:25;11926:2;11964:6;11959:2;11948:9;11944:18;11937:34;12007:3;12002:2;11991:9;11987:18;11980:31;12031:6;12066;12060:13;12097:6;12089;12082:22;12135:3;12124:9;12120:19;12113:26;;12174:2;12166:6;12162:15;12148:29;;12195:1;12205:195;12219:6;12216:1;12213:13;12205:195;;;12284:13;;-1:-1:-1;;;;;12280:39:1;12268:52;;12375:15;;;;12340:12;;;;12316:1;12234:9;12205:195;;;-1:-1:-1;;;;;;;12456:32:1;;;;12451:2;12436:18;;12429:60;-1:-1:-1;;;12520:3:1;12505:19;12498:35;12417:3;11559:980;-1:-1:-1;;;11559:980:1:o

Swarm Source

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