ETH Price: $3,363.60 (+1.85%)
Gas: 0.14 Gwei
 

Overview

Max Total Supply

1,000,000,000,000 PUFF

Holders

1,260 ( -0.159%)

Transfers

-
10 ( -82.76%)

Market

Price

$0.00 @ 0.000000 ETH (-0.22%)

Onchain Market Cap

-

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 9 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Little Puff Coin ($PUFF) is a community-driven memecoin inspired by the internet’s most lovable feline Little Puff, the fluffy white cat adored by millions worldwide.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 PUFF
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PUFF

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2025-10-27
*/

/*
 * SPDX-License-Identifier: MIT
 * https://littlepuff.vip
 */

pragma solidity 0.8.19;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the upd allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the upd allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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 upd allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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 IDexFactory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IDexRouter private immutable uniRouter;
    address private immutable uniPair;

    // Swapback
    bool private onSwapback;

    bool private contractSBEnabled = false;
    uint256 private triggerSB;
    uint256 private limitSB;
    uint256 private lastSB;

    //Anti-whale
    bool private limitsEnabled = true;
    uint256 private maxWalletLimit;
    uint256 private maxTransactionLimit;

    bool private tradingOpen = false;

    // Fees
    address private projectWallet;

    uint256 private buyingFee;

    uint256 private sellingFee;

    uint256 private transferFee;
    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private exemptFromFees;
    mapping(address => bool) private exemptFromLimits;
    mapping(address => bool) private DEXPair;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

    event ExemptFromFee(address indexed account, bool isExcluded);
    event ExemptFromLimit(address indexed account, bool isExcluded);
    event SetPairLPool(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 triggerSB,
        uint256 limitSB
    );
    event MaxTxUpdated(uint256 maxTransactionLimit);
    event MaxWalletUpdated(uint256 maxWalletLimit);

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

    event BuyFeeUpdated(
        uint256 buyingFee,
        uint256 buyMarketingTax,
        uint256 buyProjectTax
    );

    event SellFeeUpdated(
        uint256 sellingFee,
        uint256 sellMarketingTax,
        uint256 sellProjectTax
    );

    constructor() ERC20("little puff", "PUFF") {
        IDexRouter _uniRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        changeLimitExempt(address(_uniRouter), true);
        uniRouter = _uniRouter;

        uniPair = IDexFactory(_uniRouter.factory()).createPair(
            address(this),
            _uniRouter.WETH()
        );
        changeLimitExempt(address(uniPair), true);
        _toggleDexPair(address(uniPair), true);

        uint256 _totalSupply = 1_000_000_000_000 * 10 ** decimals();

        lastSB = block.timestamp;

        maxTransactionLimit = (_totalSupply * 10) / 1000;
        maxWalletLimit = (_totalSupply * 10) / 1000;

        triggerSB = (_totalSupply * 1) / 1000;
        limitSB = (_totalSupply * 2) / 100;

        buyingFee = 30;

        sellingFee = 30;

        transferFee = 0;

        projectWallet = address(0x675c879B877360eA763B9e9FeF31C28e0BbcD67d);

        // exclude from paying fees or having max transaction amount
        changeAddressFeeExempt(msg.sender, true);
        changeAddressFeeExempt(address(this), true);
        changeAddressFeeExempt(address(0xdead), true);
        changeAddressFeeExempt(projectWallet, true);

        changeLimitExempt(msg.sender, true);
        changeLimitExempt(address(this), true);
        changeLimitExempt(address(0xdead), true);
        changeLimitExempt(projectWallet, true);

        transferOwnership(msg.sender);

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

    receive() external payable {}

    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function openTrading() external onlyOwner {
        tradingOpen = true;
        contractSBEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function removeLimits() external onlyOwner {
        limitsEnabled = false;
        transferFee = 0;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _caSBcEnabled If swapback is enabled
     * @param _caSBcTrigger The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _caSBcLimit The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function changeSwapback(
        bool _caSBcEnabled,
        uint256 _caSBcTrigger,
        uint256 _caSBcLimit
    ) external onlyOwner {
        require(
            _caSBcTrigger >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(
            _caSBcLimit >= _caSBcTrigger,
            "maximum amount cant be higher than minimum"
        );

        contractSBEnabled = _caSBcEnabled;
        triggerSB = (totalSupply() * _caSBcTrigger) / 10000;
        limitSB = (totalSupply() * _caSBcLimit) / 10000;
        emit SwapbackSettingsUpdated(_caSBcEnabled, _caSBcTrigger, _caSBcLimit);
    }

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param _maxTransactionLimit Base 1000, so 1% = 10
     */
    function changeTxLimit(uint256 _maxTransactionLimit) external onlyOwner {
        require(_maxTransactionLimit >= 2, "Cannot set maxTransactionLimit lower than 0.2%");
        maxTransactionLimit = (_maxTransactionLimit * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTransactionLimit);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param _maxWalletLimit Base 1000, so 1% = 10
     */
    function changeWalletLimit(
        uint256 _maxWalletLimit
    ) external onlyOwner {
        require(_maxWalletLimit >= 5, "Cannot set maxWalletLimit lower than 0.5%");
        maxWalletLimit = (_maxWalletLimit * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWalletLimit);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExemptFromLimit} event
     * @param _add The wallet to update
     * @param _excluded If the wallet is excluded or not
     */
    function changeLimitExempt(
        address _add,
        bool _excluded
    ) public onlyOwner {
        exemptFromLimits[_add] = _excluded;
        emit ExemptFromLimit(_add, _excluded);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 100
     * @param _value The fee for the marketing wallet
     */
    function changeFeeBuy(uint256 _value) external onlyOwner {
        buyingFee = _value;
        require(buyingFee <= 100, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(buyingFee, buyingFee, buyingFee);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 100
     * @param _value The fee for the marketing wallet
     */
    function changeFeeSell(uint256 _value) external onlyOwner {
        sellingFee = _value;
        require(
            sellingFee <= 100,
            "Total sell fee cannot be higher than 100%"
        );
        emit SellFeeUpdated(sellingFee, sellingFee, sellingFee);
    }

    function changeFeeTransfer(uint256 _value) external onlyOwner {
        transferFee = _value;
        require(
            transferFee <= 100,
            "Total transfer fee cannot be higher than 100%"
        );
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExemptFromFee} event
     * @param _add The wallet to update
     * @param _excluded If the wallet is excluded or not
     */
    function changeAddressFeeExempt(
        address _add,
        bool _excluded
    ) public onlyOwner {
        exemptFromFees[_add] = _excluded;
        emit ExemptFromFee(_add, _excluded);
    }

    function _toggleDexPair(address pair, bool value) private {
        DEXPair[pair] = value;

        emit SetPairLPool(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {MarketingWalletUpdated} event
     * @param _marketing The new marketing wallet
     */
    function setMarketingWallet(address _marketing) external onlyOwner {
        emit MarketingWalletUpdated(_marketing, projectWallet);
        projectWallet = _marketing;
    }


    /**
     * @notice  Information about the swapback settings
     * @return  _contractSBEnabled  if swapback is enabled
     * @return  _caSBcackValueMin  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _caSBcackValueMax  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function swapbackRead()
        external
        view
        returns (
            bool _contractSBEnabled,
            uint256 _caSBcackValueMin,
            uint256 _caSBcackValueMax
        )
    {
        _contractSBEnabled = contractSBEnabled;
        _caSBcackValueMin = triggerSB;
        _caSBcackValueMax = limitSB;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsEnabled  if the wallet limits are in effect
     * @return  _maxWalletLimit  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTransactionLimit  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function limitsRead()
        external
        view
        returns (bool _limitsEnabled, uint256 _maxWalletLimit, uint256 _maxTransactionLimit)
    {
        _limitsEnabled = limitsEnabled;
        _maxWalletLimit = maxWalletLimit;
        _maxTransactionLimit = maxTransactionLimit;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _projectWallet The wallet that receives the marketing fees
     */
    function receiverRead()
        external
        view
        returns (address _projectWallet)
    {
        return (projectWallet);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _buyingFee The total fee for buys
     * @return _sellingFee The total fee for sells
     * @return _transferFee The total fee for transfers
     */
    function feesRead()
        external
        view
        returns (
            uint256 _buyingFee,
            uint256 _sellingFee,
            uint256 _transferFee
        )
    {
        _buyingFee = buyingFee;
        _sellingFee = sellingFee;
        _transferFee = transferFee;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _exemptFromFees  If the wallet is excluded from fees
     * @return  _exemptFromLimits  If the wallet is excluded from max transaction amount
     * @return  _DEXPair If the wallet is a automated market maker pair
     */
    function addressRead(
        address _target
    )
        external
        view
        returns (
            bool _exemptFromFees,
            bool _exemptFromLimits,
            bool _DEXPair
        )
    {
        _exemptFromFees = exemptFromFees[_target];
        _exemptFromLimits = exemptFromLimits[_target];
        _DEXPair = DEXPair[_target];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsEnabled) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !onSwapback
            ) {
                if (!tradingOpen) {
                    require(
                        exemptFromFees[from] || exemptFromFees[to],
                        "_transfer:: Trading is not active."
                    );
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= triggerSB;

        if (
            canSwap &&
            contractSBEnabled &&
            !onSwapback &&
            !DEXPair[from] &&
            !exemptFromFees[from] &&
            !exemptFromFees[to] &&
            lastSB != block.timestamp
        ) {
            onSwapback = true;

            swapBack(amount);

            lastSB = block.timestamp;

            onSwapback = false;
        }

        bool takeFee = !onSwapback;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (DEXPair[to] && sellingFee > 0) {
                fees = amount.mul(sellingFee).div(100);
            }
            // on buy
            else if (DEXPair[from] && buyingFee > 0) {
                fees = amount.mul(buyingFee).div(100);
            }
            // on transfers
            else if (
                transferFee > 0 &&
                !DEXPair[from] &&
                !DEXPair[to]
            ) {
                fees = amount.mul(transferFee).div(100);
            }

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

            amount -= fees;
        }

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

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

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

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

    function swapBack(uint256 amount) private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance == 0) {
            return;
        }

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

        if (contractBalance > amount * 15) {
            contractBalance = amount * 15;
        }

        uint256 amountToSwapForETH = contractBalance;

        swapTokensForEth(amountToSwapForETH);

        (success, ) = address(projectWallet).call{
            value: address(this).balance
        }("");
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyingFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExemptFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExemptFromLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTransactionLimit","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletLimit","type":"uint256"}],"name":"MaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellingFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetPairLPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"triggerSB","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"limitSB","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"addressRead","outputs":[{"internalType":"bool","name":"_exemptFromFees","type":"bool"},{"internalType":"bool","name":"_exemptFromLimits","type":"bool"},{"internalType":"bool","name":"_DEXPair","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"changeAddressFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"changeFeeBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"changeFeeSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"changeFeeTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"changeLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_caSBcEnabled","type":"bool"},{"internalType":"uint256","name":"_caSBcTrigger","type":"uint256"},{"internalType":"uint256","name":"_caSBcLimit","type":"uint256"}],"name":"changeSwapback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransactionLimit","type":"uint256"}],"name":"changeTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletLimit","type":"uint256"}],"name":"changeWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesRead","outputs":[{"internalType":"uint256","name":"_buyingFee","type":"uint256"},{"internalType":"uint256","name":"_sellingFee","type":"uint256"},{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsRead","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWalletLimit","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionLimit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiverRead","outputs":[{"internalType":"address","name":"_projectWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketing","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbackRead","outputs":[{"internalType":"bool","name":"_contractSBEnabled","type":"bool"},{"internalType":"uint256","name":"_caSBcackValueMin","type":"uint256"},{"internalType":"uint256","name":"_caSBcackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556009805460ff19908116600117909155600c805490911690553480156200003757600080fd5b506040518060400160405280600b81526020016a3634ba3a363290383ab33360a91b81525060405180604001604052806004815260200163282aa32360e11b81525081600390816200008a91906200082d565b5060046200009982826200082d565b505050620000b6620000b0620003e260201b60201c565b620003e6565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d881600162000438565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000123573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001499190620008f9565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000197573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bd9190620008f9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002319190620008f9565b6001600160a01b031660a08190526200024c90600162000438565b60a0516200025c906001620004e7565b60006200026c6009600a62000a40565b6200027d9064e8d4a5100062000a51565b4260085590506103e86200029382600a62000a51565b6200029f919062000a6b565b600b556103e8620002b282600a62000a51565b620002be919062000a6b565b600a556103e8620002d182600162000a51565b620002dd919062000a6b565b6006556064620002ef82600262000a51565b620002fb919062000a6b565b600755601e600d819055600e556000600f55600c8054610100600160a81b03191674675c879b877360ea763b9e9fef31c28e0bbcd67d00179055620003423360016200053b565b6200034f3060016200053b565b6200035e61dead60016200053b565b600c546200037c9061010090046001600160a01b031660016200053b565b6200038933600162000438565b6200039630600162000438565b620003a561dead600162000438565b600c54620003c39061010090046001600160a01b0316600162000438565b620003ce33620005df565b620003da33826200069f565b505062000aa4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004875760405162461bcd60e51b8152602060048201819052602482015260008051602062002c4683398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f3844f59dd909a5abfe5fa6d8f12dfa6424a8b2b595372782bc0ff76cf27fc52791015b60405180910390a25050565b6001600160a01b038216600081815260126020526040808220805460ff191685151590811790915590519092917fe0f0eeda3b1247853e2a825aa40eb65c3b08879740f68ff00df4745b6bb075b291a35050565b6005546001600160a01b03163314620005865760405162461bcd60e51b8152602060048201819052602482015260008051602062002c4683398151915260448201526064016200047e565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f06e9674d1df780f28d6fccac66198e06ae257bd747ef07af7ecb217f7166a2ed9101620004db565b6005546001600160a01b031633146200062a5760405162461bcd60e51b8152602060048201819052602482015260008051602062002c4683398151915260448201526064016200047e565b6001600160a01b038116620006915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200047e565b6200069c81620003e6565b50565b6001600160a01b038216620006f75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200047e565b80600260008282546200070b919062000a8e565b90915550506001600160a01b038216600090815260208190526040812080548392906200073a90849062000a8e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007b457607f821691505b602082108103620007d557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200078457600081815260208120601f850160051c81016020861015620008045750805b601f850160051c820191505b81811015620008255782815560010162000810565b505050505050565b81516001600160401b0381111562000849576200084962000789565b62000861816200085a84546200079f565b84620007db565b602080601f831160018114620008995760008415620008805750858301515b600019600386901b1c1916600185901b17855562000825565b600085815260208120601f198616915b82811015620008ca57888601518255948401946001909101908401620008a9565b5085821015620008e95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200090c57600080fd5b81516001600160a01b03811681146200092457600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009825781600019048211156200096657620009666200092b565b808516156200097457918102915b93841c939080029062000946565b509250929050565b6000826200099b5750600162000a3a565b81620009aa5750600062000a3a565b8160018114620009c35760028114620009ce57620009ee565b600191505062000a3a565b60ff841115620009e257620009e26200092b565b50506001821b62000a3a565b5060208310610133831016604e8410600b841016171562000a13575081810a62000a3a565b62000a1f838362000941565b806000190482111562000a365762000a366200092b565b0290505b92915050565b60006200092460ff8416836200098a565b808202811582820484141762000a3a5762000a3a6200092b565b60008262000a8957634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a3a5762000a3a6200092b565b60805160a05161217162000ad56000396000505060008181611c0601528181611cbf0152611cfb01526121716000f3fe6080604052600436106101d15760003560e01c80637db1342c116100f7578063af2c00f111610095578063d920334e11610064578063d920334e146105b9578063dd62ed3e146105d9578063f2fde38b1461061f578063f545166e1461063f57600080fd5b8063af2c00f11461053d578063bcc88aa714610564578063c9567bf914610584578063d72b46481461059957600080fd5b8063a457c2d7116100d1578063a457c2d71461046a578063a9059cbb1461048a578063a9612176146104aa578063adf3cbaa146104ca57600080fd5b80637db1342c146104175780638da5cb5b1461043757806395d89b411461045557600080fd5b8063395093511161016f57806370a082311161013e57806370a0823114610397578063715018a6146103cd578063751039fc146103e25780637a942f8e146103f757600080fd5b806339509351146102ef5780634f3fe51d1461030f5780635d098b381461034057806366f59b741461036057600080fd5b806318160ddd116101ab57806318160ddd1461025a57806323b872dd146102795780632c564f0114610299578063313ce567146102d357600080fd5b806306fdde03146101dd578063095ea7b31461020857806309cf7c701461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f261065f565b6040516101ff9190611d6f565b60405180910390f35b34801561021457600080fd5b50610228610223366004611dd2565b6106f1565b60405190151581526020016101ff565b34801561024457600080fd5b50610258610253366004611dfe565b610708565b005b34801561026657600080fd5b506002545b6040519081526020016101ff565b34801561028557600080fd5b50610228610294366004611e17565b6107ec565b3480156102a557600080fd5b50600954600a54600b5460ff909216915b6040805193151584526020840192909252908201526060016101ff565b3480156102df57600080fd5b50604051600981526020016101ff565b3480156102fb57600080fd5b5061022861030a366004611dd2565b610896565b34801561031b57600080fd5b50600d54600e54600f54604080519384526020840192909252908201526060016101ff565b34801561034c57600080fd5b5061025861035b366004611e58565b6108d2565b34801561036c57600080fd5b50600c5461010090046001600160a01b03165b6040516001600160a01b0390911681526020016101ff565b3480156103a357600080fd5b5061026b6103b2366004611e58565b6001600160a01b031660009081526020819052604090205490565b3480156103d957600080fd5b50610258610964565b3480156103ee57600080fd5b5061025861099a565b34801561040357600080fd5b50610258610412366004611dfe565b6109ff565b34801561042357600080fd5b50610258610432366004611dfe565b610ad2565b34801561044357600080fd5b506005546001600160a01b031661037f565b34801561046157600080fd5b506101f2610bb4565b34801561047657600080fd5b50610228610485366004611dd2565b610bc3565b34801561049657600080fd5b506102286104a5366004611dd2565b610c5c565b3480156104b657600080fd5b506102586104c5366004611dfe565b610c69565b3480156104d657600080fd5b5061051e6104e5366004611e58565b6001600160a01b03166000908152601060209081526040808320546011835281842054601290935292205460ff92831693918316921690565b60408051931515845291151560208401521515908201526060016101ff565b34801561054957600080fd5b50600554600654600754600160a81b90920460ff16916102b6565b34801561057057600080fd5b5061025861057f366004611e8a565b610d02565b34801561059057600080fd5b50610258610d8c565b3480156105a557600080fd5b506102586105b4366004611ebf565b610e03565b3480156105c557600080fd5b506102586105d4366004611dfe565b610fa1565b3480156105e557600080fd5b5061026b6105f4366004611ef2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561062b57600080fd5b5061025861063a366004611e58565b611088565b34801561064b57600080fd5b5061025861065a366004611e8a565b611120565b60606003805461066e90611f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461069a90611f2b565b80156106e75780601f106106bc576101008083540402835291602001916106e7565b820191906000526020600020905b8154815290600101906020018083116106ca57829003601f168201915b5050505050905090565b60006106fe3384846111a2565b5060015b92915050565b6005546001600160a01b0316331461073b5760405162461bcd60e51b815260040161073290611f65565b60405180910390fd5b600e81905560648111156107a35760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610732565b600e546040805182815260208101839052908101919091527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a150565b60006107f98484846112c6565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561087e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610732565b61088b85338584036111a2565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106fe9185906108cd908690611fb0565b6111a2565b6005546001600160a01b031633146108fc5760405162461bcd60e51b815260040161073290611f65565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b0316331461098e5760405162461bcd60e51b815260040161073290611f65565b6109986000611941565b565b6005546001600160a01b031633146109c45760405162461bcd60e51b815260040161073290611f65565b6009805460ff191690556000600f81905560405142917ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261691a2565b6005546001600160a01b03163314610a295760405162461bcd60e51b815260040161073290611f65565b600d8190556064811115610a905760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610732565b600d546040805182815260208101839052908101919091527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060016107e1565b6005546001600160a01b03163314610afc5760405162461bcd60e51b815260040161073290611f65565b6005811015610b5f5760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d617857616c6c65744c696d6974206c6f776572206044820152687468616e20302e352560b81b6064820152608401610732565b6103e8610b6b60025490565b610b759083611fc3565b610b7f9190611fda565b600a8190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020016107e1565b60606004805461066e90611f2b565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c455760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610732565b610c5233858584036111a2565b5060019392505050565b60006106fe3384846112c6565b6005546001600160a01b03163314610c935760405162461bcd60e51b815260040161073290611f65565b600f8190556064811115610cff5760405162461bcd60e51b815260206004820152602d60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526c686572207468616e203130302560981b6064820152608401610732565b50565b6005546001600160a01b03163314610d2c5760405162461bcd60e51b815260040161073290611f65565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f06e9674d1df780f28d6fccac66198e06ae257bd747ef07af7ecb217f7166a2ed91015b60405180910390a25050565b6005546001600160a01b03163314610db65760405162461bcd60e51b815260040161073290611f65565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610e2d5760405162461bcd60e51b815260040161073290611f65565b6001821015610e9b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610732565b81811015610efe5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610732565b6005805460ff60a81b1916600160a81b85151502179055600254612710908390610f289190611fc3565b610f329190611fda565b60065561271081610f4260025490565b610f4c9190611fc3565b610f569190611fda565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b03163314610fcb5760405162461bcd60e51b815260040161073290611f65565b60028110156110335760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e4c696d6974206c60448201526d6f776572207468616e20302e322560901b6064820152608401610732565b6103e861103f60025490565b6110499083611fc3565b6110539190611fda565b600b8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020016107e1565b6005546001600160a01b031633146110b25760405162461bcd60e51b815260040161073290611f65565b6001600160a01b0381166111175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610732565b610cff81611941565b6005546001600160a01b0316331461114a5760405162461bcd60e51b815260040161073290611f65565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f3844f59dd909a5abfe5fa6d8f12dfa6424a8b2b595372782bc0ff76cf27fc5279101610d80565b6001600160a01b0383166112045760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610732565b6001600160a01b0382166112655760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610732565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112ec5760405162461bcd60e51b815260040161073290611ffc565b6001600160a01b0382166113125760405162461bcd60e51b815260040161073290612041565b8060000361132b5761132683836000611993565b505050565b60095460ff16156116ac576005546001600160a01b0384811691161480159061136257506005546001600160a01b03838116911614155b801561137657506001600160a01b03821615155b801561138d57506001600160a01b03821661dead14155b80156113a35750600554600160a01b900460ff16155b156116ac57600c5460ff16611448576001600160a01b03831660009081526010602052604090205460ff16806113f157506001600160a01b03821660009081526010602052604090205460ff165b6114485760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610732565b6001600160a01b03831660009081526012602052604090205460ff16801561148957506001600160a01b03821660009081526011602052604090205460ff16155b1561156c57600b548111156114fd5760405162461bcd60e51b815260206004820152603460248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527336b0bc2a3930b739b0b1ba34b7b72634b6b4ba1760611b6064820152608401610732565b600a546001600160a01b0383166000908152602081905260409020546115239083611fb0565b11156115675760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610732565b6116ac565b6001600160a01b03821660009081526012602052604090205460ff1680156115ad57506001600160a01b03831660009081526011602052604090205460ff16155b1561162257600b548111156115675760405162461bcd60e51b815260206004820152603560248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152741036b0bc2a3930b739b0b1ba34b7b72634b6b4ba1760591b6064820152608401610732565b6001600160a01b03821660009081526011602052604090205460ff166116ac57600a546001600160a01b0383166000908152602081905260409020546116689083611fb0565b11156116ac5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610732565b30600090815260208190526040902054600654811080159081906116d95750600554600160a81b900460ff165b80156116ef5750600554600160a01b900460ff16155b801561171457506001600160a01b03851660009081526012602052604090205460ff16155b801561173957506001600160a01b03851660009081526010602052604090205460ff16155b801561175e57506001600160a01b03841660009081526010602052604090205460ff16155b801561176c57504260085414155b1561179f576005805460ff60a01b1916600160a01b17905561178d83611ae8565b426008556005805460ff60a01b191690555b6005546001600160a01b03861660009081526010602052604090205460ff600160a01b9092048216159116806117ed57506001600160a01b03851660009081526010602052604090205460ff165b156117f6575060005b6000811561192d576001600160a01b03861660009081526012602052604090205460ff16801561182857506000600e54115b156118545761184d6064611847600e5488611b9090919063ffffffff16565b90611ba3565b905061190f565b6001600160a01b03871660009081526012602052604090205460ff16801561187e57506000600d54115b1561189d5761184d6064611847600d5488611b9090919063ffffffff16565b6000600f541180156118c857506001600160a01b03871660009081526012602052604090205460ff16155b80156118ed57506001600160a01b03861660009081526012602052604090205460ff16155b1561190f5761190c6064611847600f5488611b9090919063ffffffff16565b90505b801561192057611920873083611993565b61192a8186612084565b94505b611938878787611993565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166119b95760405162461bcd60e51b815260040161073290611ffc565b6001600160a01b0382166119df5760405162461bcd60e51b815260040161073290612041565b6001600160a01b03831660009081526020819052604090205481811015611a575760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610732565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a8e908490611fb0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ada91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611b0557505050565b600754821115611b155760075491505b611b2083600f611fc3565b821115611b3557611b3283600f611fc3565b91505b81611b3f81611baf565b600c546040516101009091046001600160a01b0316904790600081818185875af1925050503d8060008114611938576040519150601f19603f3d011682016040523d82523d6000602084013e611938565b6000611b9c8284611fc3565b9392505050565b6000611b9c8284611fda565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611be457611be4612097565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8691906120ad565b81600181518110611c9957611c99612097565b60200260200101906001600160a01b031690816001600160a01b031681525050611ce4307f0000000000000000000000000000000000000000000000000000000000000000846111a2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611d399085906000908690309042906004016120ca565b600060405180830381600087803b158015611d5357600080fd5b505af1158015611d67573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611d9c57858101830151858201604001528201611d80565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610cff57600080fd5b60008060408385031215611de557600080fd5b8235611df081611dbd565b946020939093013593505050565b600060208284031215611e1057600080fd5b5035919050565b600080600060608486031215611e2c57600080fd5b8335611e3781611dbd565b92506020840135611e4781611dbd565b929592945050506040919091013590565b600060208284031215611e6a57600080fd5b8135611b9c81611dbd565b80358015158114611e8557600080fd5b919050565b60008060408385031215611e9d57600080fd5b8235611ea881611dbd565b9150611eb660208401611e75565b90509250929050565b600080600060608486031215611ed457600080fd5b611edd84611e75565b95602085013595506040909401359392505050565b60008060408385031215611f0557600080fd5b8235611f1081611dbd565b91506020830135611f2081611dbd565b809150509250929050565b600181811c90821680611f3f57607f821691505b602082108103611f5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561070257610702611f9a565b808202811582820484141761070257610702611f9a565b600082611ff757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561070257610702611f9a565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120bf57600080fd5b8151611b9c81611dbd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561211a5784516001600160a01b0316835293830193918301916001016120f5565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201078ad5d8db75b0cbde25ad79ba35bb62189c61fc15ac857d1e97c0ba068278164736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106101d15760003560e01c80637db1342c116100f7578063af2c00f111610095578063d920334e11610064578063d920334e146105b9578063dd62ed3e146105d9578063f2fde38b1461061f578063f545166e1461063f57600080fd5b8063af2c00f11461053d578063bcc88aa714610564578063c9567bf914610584578063d72b46481461059957600080fd5b8063a457c2d7116100d1578063a457c2d71461046a578063a9059cbb1461048a578063a9612176146104aa578063adf3cbaa146104ca57600080fd5b80637db1342c146104175780638da5cb5b1461043757806395d89b411461045557600080fd5b8063395093511161016f57806370a082311161013e57806370a0823114610397578063715018a6146103cd578063751039fc146103e25780637a942f8e146103f757600080fd5b806339509351146102ef5780634f3fe51d1461030f5780635d098b381461034057806366f59b741461036057600080fd5b806318160ddd116101ab57806318160ddd1461025a57806323b872dd146102795780632c564f0114610299578063313ce567146102d357600080fd5b806306fdde03146101dd578063095ea7b31461020857806309cf7c701461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f261065f565b6040516101ff9190611d6f565b60405180910390f35b34801561021457600080fd5b50610228610223366004611dd2565b6106f1565b60405190151581526020016101ff565b34801561024457600080fd5b50610258610253366004611dfe565b610708565b005b34801561026657600080fd5b506002545b6040519081526020016101ff565b34801561028557600080fd5b50610228610294366004611e17565b6107ec565b3480156102a557600080fd5b50600954600a54600b5460ff909216915b6040805193151584526020840192909252908201526060016101ff565b3480156102df57600080fd5b50604051600981526020016101ff565b3480156102fb57600080fd5b5061022861030a366004611dd2565b610896565b34801561031b57600080fd5b50600d54600e54600f54604080519384526020840192909252908201526060016101ff565b34801561034c57600080fd5b5061025861035b366004611e58565b6108d2565b34801561036c57600080fd5b50600c5461010090046001600160a01b03165b6040516001600160a01b0390911681526020016101ff565b3480156103a357600080fd5b5061026b6103b2366004611e58565b6001600160a01b031660009081526020819052604090205490565b3480156103d957600080fd5b50610258610964565b3480156103ee57600080fd5b5061025861099a565b34801561040357600080fd5b50610258610412366004611dfe565b6109ff565b34801561042357600080fd5b50610258610432366004611dfe565b610ad2565b34801561044357600080fd5b506005546001600160a01b031661037f565b34801561046157600080fd5b506101f2610bb4565b34801561047657600080fd5b50610228610485366004611dd2565b610bc3565b34801561049657600080fd5b506102286104a5366004611dd2565b610c5c565b3480156104b657600080fd5b506102586104c5366004611dfe565b610c69565b3480156104d657600080fd5b5061051e6104e5366004611e58565b6001600160a01b03166000908152601060209081526040808320546011835281842054601290935292205460ff92831693918316921690565b60408051931515845291151560208401521515908201526060016101ff565b34801561054957600080fd5b50600554600654600754600160a81b90920460ff16916102b6565b34801561057057600080fd5b5061025861057f366004611e8a565b610d02565b34801561059057600080fd5b50610258610d8c565b3480156105a557600080fd5b506102586105b4366004611ebf565b610e03565b3480156105c557600080fd5b506102586105d4366004611dfe565b610fa1565b3480156105e557600080fd5b5061026b6105f4366004611ef2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561062b57600080fd5b5061025861063a366004611e58565b611088565b34801561064b57600080fd5b5061025861065a366004611e8a565b611120565b60606003805461066e90611f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461069a90611f2b565b80156106e75780601f106106bc576101008083540402835291602001916106e7565b820191906000526020600020905b8154815290600101906020018083116106ca57829003601f168201915b5050505050905090565b60006106fe3384846111a2565b5060015b92915050565b6005546001600160a01b0316331461073b5760405162461bcd60e51b815260040161073290611f65565b60405180910390fd5b600e81905560648111156107a35760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610732565b600e546040805182815260208101839052908101919091527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a150565b60006107f98484846112c6565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561087e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610732565b61088b85338584036111a2565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106fe9185906108cd908690611fb0565b6111a2565b6005546001600160a01b031633146108fc5760405162461bcd60e51b815260040161073290611f65565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b0316331461098e5760405162461bcd60e51b815260040161073290611f65565b6109986000611941565b565b6005546001600160a01b031633146109c45760405162461bcd60e51b815260040161073290611f65565b6009805460ff191690556000600f81905560405142917ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261691a2565b6005546001600160a01b03163314610a295760405162461bcd60e51b815260040161073290611f65565b600d8190556064811115610a905760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610732565b600d546040805182815260208101839052908101919091527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060016107e1565b6005546001600160a01b03163314610afc5760405162461bcd60e51b815260040161073290611f65565b6005811015610b5f5760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d617857616c6c65744c696d6974206c6f776572206044820152687468616e20302e352560b81b6064820152608401610732565b6103e8610b6b60025490565b610b759083611fc3565b610b7f9190611fda565b600a8190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020016107e1565b60606004805461066e90611f2b565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c455760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610732565b610c5233858584036111a2565b5060019392505050565b60006106fe3384846112c6565b6005546001600160a01b03163314610c935760405162461bcd60e51b815260040161073290611f65565b600f8190556064811115610cff5760405162461bcd60e51b815260206004820152602d60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526c686572207468616e203130302560981b6064820152608401610732565b50565b6005546001600160a01b03163314610d2c5760405162461bcd60e51b815260040161073290611f65565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f06e9674d1df780f28d6fccac66198e06ae257bd747ef07af7ecb217f7166a2ed91015b60405180910390a25050565b6005546001600160a01b03163314610db65760405162461bcd60e51b815260040161073290611f65565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610e2d5760405162461bcd60e51b815260040161073290611f65565b6001821015610e9b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610732565b81811015610efe5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610732565b6005805460ff60a81b1916600160a81b85151502179055600254612710908390610f289190611fc3565b610f329190611fda565b60065561271081610f4260025490565b610f4c9190611fc3565b610f569190611fda565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b03163314610fcb5760405162461bcd60e51b815260040161073290611f65565b60028110156110335760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e4c696d6974206c60448201526d6f776572207468616e20302e322560901b6064820152608401610732565b6103e861103f60025490565b6110499083611fc3565b6110539190611fda565b600b8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020016107e1565b6005546001600160a01b031633146110b25760405162461bcd60e51b815260040161073290611f65565b6001600160a01b0381166111175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610732565b610cff81611941565b6005546001600160a01b0316331461114a5760405162461bcd60e51b815260040161073290611f65565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f3844f59dd909a5abfe5fa6d8f12dfa6424a8b2b595372782bc0ff76cf27fc5279101610d80565b6001600160a01b0383166112045760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610732565b6001600160a01b0382166112655760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610732565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112ec5760405162461bcd60e51b815260040161073290611ffc565b6001600160a01b0382166113125760405162461bcd60e51b815260040161073290612041565b8060000361132b5761132683836000611993565b505050565b60095460ff16156116ac576005546001600160a01b0384811691161480159061136257506005546001600160a01b03838116911614155b801561137657506001600160a01b03821615155b801561138d57506001600160a01b03821661dead14155b80156113a35750600554600160a01b900460ff16155b156116ac57600c5460ff16611448576001600160a01b03831660009081526010602052604090205460ff16806113f157506001600160a01b03821660009081526010602052604090205460ff165b6114485760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610732565b6001600160a01b03831660009081526012602052604090205460ff16801561148957506001600160a01b03821660009081526011602052604090205460ff16155b1561156c57600b548111156114fd5760405162461bcd60e51b815260206004820152603460248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527336b0bc2a3930b739b0b1ba34b7b72634b6b4ba1760611b6064820152608401610732565b600a546001600160a01b0383166000908152602081905260409020546115239083611fb0565b11156115675760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610732565b6116ac565b6001600160a01b03821660009081526012602052604090205460ff1680156115ad57506001600160a01b03831660009081526011602052604090205460ff16155b1561162257600b548111156115675760405162461bcd60e51b815260206004820152603560248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152741036b0bc2a3930b739b0b1ba34b7b72634b6b4ba1760591b6064820152608401610732565b6001600160a01b03821660009081526011602052604090205460ff166116ac57600a546001600160a01b0383166000908152602081905260409020546116689083611fb0565b11156116ac5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610732565b30600090815260208190526040902054600654811080159081906116d95750600554600160a81b900460ff165b80156116ef5750600554600160a01b900460ff16155b801561171457506001600160a01b03851660009081526012602052604090205460ff16155b801561173957506001600160a01b03851660009081526010602052604090205460ff16155b801561175e57506001600160a01b03841660009081526010602052604090205460ff16155b801561176c57504260085414155b1561179f576005805460ff60a01b1916600160a01b17905561178d83611ae8565b426008556005805460ff60a01b191690555b6005546001600160a01b03861660009081526010602052604090205460ff600160a01b9092048216159116806117ed57506001600160a01b03851660009081526010602052604090205460ff165b156117f6575060005b6000811561192d576001600160a01b03861660009081526012602052604090205460ff16801561182857506000600e54115b156118545761184d6064611847600e5488611b9090919063ffffffff16565b90611ba3565b905061190f565b6001600160a01b03871660009081526012602052604090205460ff16801561187e57506000600d54115b1561189d5761184d6064611847600d5488611b9090919063ffffffff16565b6000600f541180156118c857506001600160a01b03871660009081526012602052604090205460ff16155b80156118ed57506001600160a01b03861660009081526012602052604090205460ff16155b1561190f5761190c6064611847600f5488611b9090919063ffffffff16565b90505b801561192057611920873083611993565b61192a8186612084565b94505b611938878787611993565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166119b95760405162461bcd60e51b815260040161073290611ffc565b6001600160a01b0382166119df5760405162461bcd60e51b815260040161073290612041565b6001600160a01b03831660009081526020819052604090205481811015611a575760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610732565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a8e908490611fb0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ada91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611b0557505050565b600754821115611b155760075491505b611b2083600f611fc3565b821115611b3557611b3283600f611fc3565b91505b81611b3f81611baf565b600c546040516101009091046001600160a01b0316904790600081818185875af1925050503d8060008114611938576040519150601f19603f3d011682016040523d82523d6000602084013e611938565b6000611b9c8284611fc3565b9392505050565b6000611b9c8284611fda565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611be457611be4612097565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8691906120ad565b81600181518110611c9957611c99612097565b60200260200101906001600160a01b031690816001600160a01b031681525050611ce4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846111a2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611d399085906000908690309042906004016120ca565b600060405180830381600087803b158015611d5357600080fd5b505af1158015611d67573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611d9c57858101830151858201604001528201611d80565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610cff57600080fd5b60008060408385031215611de557600080fd5b8235611df081611dbd565b946020939093013593505050565b600060208284031215611e1057600080fd5b5035919050565b600080600060608486031215611e2c57600080fd5b8335611e3781611dbd565b92506020840135611e4781611dbd565b929592945050506040919091013590565b600060208284031215611e6a57600080fd5b8135611b9c81611dbd565b80358015158114611e8557600080fd5b919050565b60008060408385031215611e9d57600080fd5b8235611ea881611dbd565b9150611eb660208401611e75565b90509250929050565b600080600060608486031215611ed457600080fd5b611edd84611e75565b95602085013595506040909401359392505050565b60008060408385031215611f0557600080fd5b8235611f1081611dbd565b91506020830135611f2081611dbd565b809150509250929050565b600181811c90821680611f3f57607f821691505b602082108103611f5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561070257610702611f9a565b808202811582820484141761070257610702611f9a565b600082611ff757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561070257610702611f9a565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120bf57600080fd5b8151611b9c81611dbd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561211a5784516001600160a01b0316835293830193918301916001016120f5565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201078ad5d8db75b0cbde25ad79ba35bb62189c61fc15ac857d1e97c0ba068278164736f6c63430008130033

Deployed Bytecode Sourcemap

25349:17096:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10947:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13180:194;;;;;;;;;;-1:-1:-1;13180:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13180:194:0;1023:187:1;33129:281:0;;;;;;;;;;-1:-1:-1;33129:281:0;;;;;:::i;:::-;;:::i;:::-;;12067:108;;;;;;;;;;-1:-1:-1;12155:12:0;;12067:108;;;1546:25:1;;;1534:2;1519:18;12067:108:0;1400:177:1;13852:529:0;;;;;;;;;;-1:-1:-1;13852:529:0;;;;;:::i;:::-;;:::i;35678:298::-;;;;;;;;;;-1:-1:-1;35859:13:0;;35901:14;;35949:19;;35859:13;;;;;35678:298;;;;2264:14:1;;2257:22;2239:41;;2311:2;2296:18;;2289:34;;;;2339:18;;;2332:34;2227:2;2212:18;35678:298:0;2043:329:1;29084:92:0;;;;;;;;;;-1:-1:-1;29084:92:0;;29167:1;2519:36:1;;2507:2;2492:18;29084:92:0;2377:184:1;14786:290:0;;;;;;;;;;-1:-1:-1;14786:290:0;;;;;:::i;:::-;;:::i;36518:301::-;;;;;;;;;;-1:-1:-1;36730:9:0;;36764:10;;36800:11;;36518:301;;;2768:25:1;;;2824:2;2809:18;;2802:34;;;;2852:18;;;2845:34;2756:2;2741:18;36518:301:0;2566:319:1;34429:177:0;;;;;;;;;;-1:-1:-1;34429:177:0;;;;;:::i;:::-;;:::i;36137:144::-;;;;;;;;;;-1:-1:-1;36259:13:0;;;;;-1:-1:-1;;;;;36259:13:0;36137:144;;;-1:-1:-1;;;;;3306:32:1;;;3288:51;;3276:2;3261:18;36137:144:0;3142:203:1;12238:143:0;;;;;;;;;;-1:-1:-1;12238:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12355:18:0;12328:7;12355:18;;;;;;;;;;;;12238:143;22286:103;;;;;;;;;;;;;:::i;29598:155::-;;;;;;;;;;;;;:::i;32661:236::-;;;;;;;;;;-1:-1:-1;32661:236:0;;;;;:::i;:::-;;:::i;31666:296::-;;;;;;;;;;-1:-1:-1;31666:296:0;;;;;:::i;:::-;;:::i;21635:87::-;;;;;;;;;;-1:-1:-1;21708:6:0;;-1:-1:-1;;;;;21708:6:0;21635:87;;11166:104;;;;;;;;;;;;;:::i;15575:475::-;;;;;;;;;;-1:-1:-1;15575:475:0;;;;;:::i;:::-;;:::i;12594:200::-;;;;;;;;;;-1:-1:-1;12594:200:0;;;;;:::i;:::-;;:::i;33418:225::-;;;;;;;;;;-1:-1:-1;33418:225:0;;;;;:::i;:::-;;:::i;37255:374::-;;;;;;;;;;-1:-1:-1;37255:374:0;;;;;:::i;:::-;-1:-1:-1;;;;;37504:23:0;37373:20;37504:23;;;:14;:23;;;;;;;;;37558:16;:25;;;;;;37605:7;:16;;;;;;37504:23;;;;;37558:25;;;;37605:16;;37255:374;;;;;3559:14:1;;3552:22;3534:41;;3618:14;;3611:22;3606:2;3591:18;;3584:50;3677:14;3670:22;3650:18;;;3643:50;3522:2;3507:18;37255:374:0;3350:349:1;34969:343:0;;;;;;;;;;-1:-1:-1;35209:17:0;;35257:9;;35297:7;;-1:-1:-1;;;35209:17:0;;;;;;34969:343;;33888:201;;;;;;;;;;-1:-1:-1;33888:201:0;;;;;:::i;:::-;;:::i;29282:161::-;;;;;;;;;;;;;:::i;30239:659::-;;;;;;;;;;-1:-1:-1;30239:659:0;;;;;:::i;:::-;;:::i;31148:302::-;;;;;;;;;;-1:-1:-1;31148:302:0;;;;;:::i;:::-;;:::i;12857:176::-;;;;;;;;;;-1:-1:-1;12857:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;12998:18:0;;;12971:7;12998:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12857:176;22544:238;;;;;;;;;;-1:-1:-1;22544:238:0;;;;;:::i;:::-;;:::i;32231:200::-;;;;;;;;;;-1:-1:-1;32231:200:0;;;;;:::i;:::-;;:::i;10947:100::-;11001:13;11034:5;11027:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10947:100;:::o;13180:194::-;13288:4;13305:39;10033:10;13328:7;13337:6;13305:8;:39::i;:::-;-1:-1:-1;13362:4:0;13180:194;;;;;:::o;33129:281::-;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;;;;;;;;;33198:10:::1;:19:::0;;;33264:3:::1;33250:17:::0;::::1;;33228:108;;;::::0;-1:-1:-1;;;33228:108:0;;5851:2:1;33228:108:0::1;::::0;::::1;5833:21:1::0;5890:2;5870:18;;;5863:30;5929:34;5909:18;;;5902:62;-1:-1:-1;;;5980:18:1;;;5973:39;6029:19;;33228:108:0::1;5649:405:1::0;33228:108:0::1;33367:10;::::0;33352:50:::1;::::0;;2768:25:1;;;2824:2;2809:18;;2802:34;;;2852:18;;;2845:34;;;;33352:50:0::1;::::0;2756:2:1;2741:18;33352:50:0::1;;;;;;;;33129:281:::0;:::o;13852:529::-;13992:4;14009:36;14019:6;14027:9;14038:6;14009:9;:36::i;:::-;-1:-1:-1;;;;;14085:19:0;;14058:24;14085:19;;;:11;:19;;;;;;;;10033:10;14085:33;;;;;;;;14151:26;;;;14129:116;;;;-1:-1:-1;;;14129:116:0;;6261:2:1;14129:116:0;;;6243:21:1;6300:2;6280:18;;;6273:30;6339:34;6319:18;;;6312:62;-1:-1:-1;;;6390:18:1;;;6383:38;6438:19;;14129:116:0;6059:404:1;14129:116:0;14281:57;14290:6;10033:10;14331:6;14312:16;:25;14281:8;:57::i;:::-;-1:-1:-1;14369:4:0;;13852:529;-1:-1:-1;;;;13852:529:0:o;14786:290::-;10033:10;14899:4;14988:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14988:34:0;;;;;;;;;;14899:4;;14916:130;;14966:7;;14988:47;;15025:10;;14988:47;:::i;:::-;14916:8;:130::i;34429:177::-;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;34547:13:::1;::::0;34512:49:::1;::::0;-1:-1:-1;;;;;34547:13:0::1;::::0;;::::1;::::0;::::1;::::0;34512:49;::::1;::::0;::::1;::::0;;;::::1;34572:13;:26:::0;;-1:-1:-1;;;;;34572:26:0;;::::1;;;-1:-1:-1::0;;;;;;34572:26:0;;::::1;::::0;;;::::1;::::0;;34429:177::o;22286:103::-;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;22351:30:::1;22378:1;22351:18;:30::i;:::-;22286:103::o:0;29598:155::-;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;29652:13:::1;:21:::0;;-1:-1:-1;;29652:21:0::1;::::0;;29668:5:::1;29684:11;:15:::0;;;29715:30:::1;::::0;29729:15:::1;::::0;29715:30:::1;::::0;::::1;29598:155::o:0;32661:236::-;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;32729:9:::1;:18:::0;;;32779:3:::1;32766:16:::0;::::1;;32758:69;;;::::0;-1:-1:-1;;;32758:69:0;;6932:2:1;32758:69:0::1;::::0;::::1;6914:21:1::0;6971:2;6951:18;;;6944:30;7010:34;6990:18;;;6983:62;-1:-1:-1;;;7061:18:1;;;7054:38;7109:19;;32758:69:0::1;6730:404:1::0;32758:69:0::1;32857:9;::::0;32843:46:::1;::::0;;2768:25:1;;;2824:2;2809:18;;2802:34;;;2852:18;;;2845:34;;;;32843:46:0::1;::::0;2756:2:1;2741:18;32843:46:0::1;2566:319:1::0;31666:296:0;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;31791:1:::1;31772:15;:20;;31764:74;;;::::0;-1:-1:-1;;;31764:74:0;;7341:2:1;31764:74:0::1;::::0;::::1;7323:21:1::0;7380:2;7360:18;;;7353:30;7419:34;7399:18;;;7392:62;-1:-1:-1;;;7470:18:1;;;7463:39;7519:19;;31764:74:0::1;7139:405:1::0;31764:74:0::1;31902:4;31885:13;12155:12:::0;;;12067:108;31885:13:::1;31867:31;::::0;:15;:31:::1;:::i;:::-;31866:40;;;;:::i;:::-;31849:14;:57:::0;;;31922:32:::1;::::0;1546:25:1;;;31922:32:0::1;::::0;1534:2:1;1519:18;31922:32:0::1;1400:177:1::0;11166:104:0;11222:13;11255:7;11248:14;;;;;:::i;15575:475::-;10033:10;15693:4;15737:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15737:34:0;;;;;;;;;;15804:35;;;;15782:122;;;;-1:-1:-1;;;15782:122:0;;8146:2:1;15782:122:0;;;8128:21:1;8185:2;8165:18;;;8158:30;8224:34;8204:18;;;8197:62;-1:-1:-1;;;8275:18:1;;;8268:35;8320:19;;15782:122:0;7944:401:1;15782:122:0;15940:67;10033:10;15963:7;15991:15;15972:16;:34;15940:8;:67::i;:::-;-1:-1:-1;16038:4:0;;15575:475;-1:-1:-1;;;15575:475:0:o;12594:200::-;12705:4;12722:42;10033:10;12746:9;12757:6;12722:9;:42::i;33418:225::-;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;33491:11:::1;:20:::0;;;33559:3:::1;33544:18:::0;::::1;;33522:113;;;::::0;-1:-1:-1;;;33522:113:0;;8552:2:1;33522:113:0::1;::::0;::::1;8534:21:1::0;8591:2;8571:18;;;8564:30;8630:34;8610:18;;;8603:62;-1:-1:-1;;;8681:18:1;;;8674:43;8734:19;;33522:113:0::1;8350:409:1::0;33522:113:0::1;33418:225:::0;:::o;33888:201::-;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34003:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;;;;;:32;;-1:-1:-1;;34003:32:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34051:30;;1163:41:1;;;34051:30:0::1;::::0;1136:18:1;34051:30:0::1;;;;;;;;33888:201:::0;;:::o;29282:161::-;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;29335:11:::1;:18:::0;;-1:-1:-1;;29335:18:0::1;29349:4;29335:18;::::0;;29364:17:::1;:24:::0;;-1:-1:-1;;;;29364:24:0::1;-1:-1:-1::0;;;29364:24:0::1;::::0;;29404:31:::1;::::0;29419:15:::1;::::0;29404:31:::1;::::0;29335:11:::1;::::0;29404:31:::1;29282:161::o:0;30239:659::-;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;30430:1:::1;30413:13;:18;;30391:120;;;::::0;-1:-1:-1;;;30391:120:0;;8966:2:1;30391:120:0::1;::::0;::::1;8948:21:1::0;9005:2;8985:18;;;8978:30;9044:34;9024:18;;;9017:62;-1:-1:-1;;;9095:18:1;;;9088:50;9155:19;;30391:120:0::1;8764:416:1::0;30391:120:0::1;30559:13;30544:11;:28;;30522:120;;;::::0;-1:-1:-1;;;30522:120:0;;9387:2:1;30522:120:0::1;::::0;::::1;9369:21:1::0;9426:2;9406:18;;;9399:30;9465:34;9445:18;;;9438:62;-1:-1:-1;;;9516:18:1;;;9509:40;9566:19;;30522:120:0::1;9185:406:1::0;30522:120:0::1;30655:17;:33:::0;;-1:-1:-1;;;;30655:33:0::1;-1:-1:-1::0;;;30655:33:0;::::1;;;;::::0;;12155:12;;30745:5:::1;::::0;30728:13;;30712:29:::1;;;;:::i;:::-;30711:39;;;;:::i;:::-;30699:9;:51:::0;30803:5:::1;30788:11:::0;30772:13:::1;12155:12:::0;;;12067:108;30772:13:::1;:27;;;;:::i;:::-;30771:37;;;;:::i;:::-;30761:7;:47:::0;30824:66:::1;::::0;;2264:14:1;;2257:22;2239:41;;2311:2;2296:18;;2289:34;;;2339:18;;;2332:34;;;30824:66:0::1;::::0;2227:2:1;2212:18;30824:66:0::1;;;;;;;30239:659:::0;;;:::o;31148:302::-;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;31263:1:::1;31239:20;:25;;31231:84;;;::::0;-1:-1:-1;;;31231:84:0;;9798:2:1;31231:84:0::1;::::0;::::1;9780:21:1::0;9837:2;9817:18;;;9810:30;9876:34;9856:18;;;9849:62;-1:-1:-1;;;9927:18:1;;;9920:44;9981:19;;31231:84:0::1;9596:410:1::0;31231:84:0::1;31389:4;31372:13;12155:12:::0;;;12067:108;31372:13:::1;31349:36;::::0;:20;:36:::1;:::i;:::-;31348:45;;;;:::i;:::-;31326:19;:67:::0;;;31409:33:::1;::::0;1546:25:1;;;31409:33:0::1;::::0;1534:2:1;1519:18;31409:33:0::1;1400:177:1::0;22544:238:0;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22647:22:0;::::1;22625:110;;;::::0;-1:-1:-1;;;22625:110:0;;10213:2:1;22625:110:0::1;::::0;::::1;10195:21:1::0;10252:2;10232:18;;;10225:30;10291:34;10271:18;;;10264:62;-1:-1:-1;;;10342:18:1;;;10335:36;10388:19;;22625:110:0::1;10011:402:1::0;22625:110:0::1;22746:28;22765:8;22746:18;:28::i;32231:200::-:0;21708:6;;-1:-1:-1;;;;;21708:6:0;10033:10;21855:23;21847:68;;;;-1:-1:-1;;;21847:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32341:22:0;::::1;;::::0;;;:16:::1;:22;::::0;;;;;;;;:34;;-1:-1:-1;;32341:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32391:32;;1163:41:1;;;32391:32:0::1;::::0;1136:18:1;32391:32:0::1;1023:187:1::0;19358:380:0;-1:-1:-1;;;;;19494:19:0;;19486:68;;;;-1:-1:-1;;;19486:68:0;;10620:2:1;19486:68:0;;;10602:21:1;10659:2;10639:18;;;10632:30;10698:34;10678:18;;;10671:62;-1:-1:-1;;;10749:18:1;;;10742:34;10793:19;;19486:68:0;10418:400:1;19486:68:0;-1:-1:-1;;;;;19573:21:0;;19565:68;;;;-1:-1:-1;;;19565:68:0;;11025:2:1;19565:68:0;;;11007:21:1;11064:2;11044:18;;;11037:30;11103:34;11083:18;;;11076:62;-1:-1:-1;;;11154:18:1;;;11147:32;11196:19;;19565:68:0;10823:398:1;19565:68:0;-1:-1:-1;;;;;19646:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19698:32;;1546:25:1;;;19698:32:0;;1519:18:1;19698:32:0;;;;;;;19358:380;;;:::o;37637:3597::-;-1:-1:-1;;;;;37769:18:0;;37761:68;;;;-1:-1:-1;;;37761:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37848:16:0;;37840:64;;;;-1:-1:-1;;;37840:64:0;;;;;;;:::i;:::-;37921:6;37931:1;37921:11;37917:93;;37949:28;37965:4;37971:2;37975:1;37949:15;:28::i;:::-;37637:3597;;;:::o;37917:93::-;38026:13;;;;38022:1578;;;21708:6;;-1:-1:-1;;;;;38078:15:0;;;21708:6;;38078:15;;;;:49;;-1:-1:-1;21708:6:0;;-1:-1:-1;;;;;38114:13:0;;;21708:6;;38114:13;;38078:49;:86;;;;-1:-1:-1;;;;;;38148:16:0;;;;38078:86;:128;;;;-1:-1:-1;;;;;;38185:21:0;;38199:6;38185:21;;38078:128;:160;;;;-1:-1:-1;38228:10:0;;-1:-1:-1;;;38228:10:0;;;;38227:11;38078:160;38056:1533;;;38278:11;;;;38273:223;;-1:-1:-1;;;;;38348:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;38372:18:0;;;;;;:14;:18;;;;;;;;38348:42;38314:162;;;;-1:-1:-1;;;38314:162:0;;12238:2:1;38314:162:0;;;12220:21:1;12277:2;12257:18;;;12250:30;12316:34;12296:18;;;12289:62;-1:-1:-1;;;12367:18:1;;;12360:32;12409:19;;38314:162:0;12036:398:1;38314:162:0;-1:-1:-1;;;;;38570:13:0;;;;;;:7;:13;;;;;;;;:38;;;;-1:-1:-1;;;;;;38588:20:0;;;;;;:16;:20;;;;;;;;38587:21;38570:38;38544:1030;;;38695:19;;38685:6;:29;;38651:167;;;;-1:-1:-1;;;38651:167:0;;12641:2:1;38651:167:0;;;12623:21:1;12680:2;12660:18;;;12653:30;12719:34;12699:18;;;12692:62;-1:-1:-1;;;12770:18:1;;;12763:50;12830:19;;38651:167:0;12439:416:1;38651:167:0;38901:14;;-1:-1:-1;;;;;12355:18:0;;12328:7;12355:18;;;;;;;;;;;38875:22;;:6;:22;:::i;:::-;:40;;38841:145;;;;-1:-1:-1;;;38841:145:0;;13062:2:1;38841:145:0;;;13044:21:1;13101:2;13081:18;;;13074:30;-1:-1:-1;;;13120:18:1;;;13113:49;13179:18;;38841:145:0;12860:343:1;38841:145:0;38544:1030;;;-1:-1:-1;;;;;39084:11:0;;;;;;:7;:11;;;;;;;;:38;;;;-1:-1:-1;;;;;;39100:22:0;;;;;;:16;:22;;;;;;;;39099:23;39084:38;39058:516;;;39209:19;;39199:6;:29;;39165:168;;;;-1:-1:-1;;;39165:168:0;;13410:2:1;39165:168:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:34;13468:18;;;13461:62;-1:-1:-1;;;13539:18:1;;;13532:51;13600:19;;39165:168:0;13208:417:1;39058:516:0;-1:-1:-1;;;;;39364:20:0;;;;;;:16;:20;;;;;;;;39359:215;;39469:14;;-1:-1:-1;;;;;12355:18:0;;12328:7;12355:18;;;;;;;;;;;39443:22;;:6;:22;:::i;:::-;:40;;39409:145;;;;-1:-1:-1;;;39409:145:0;;13062:2:1;39409:145:0;;;13044:21:1;13101:2;13081:18;;;13074:30;-1:-1:-1;;;13120:18:1;;;13113:49;13179:18;;39409:145:0;12860:343:1;39409:145:0;39661:4;39612:28;12355:18;;;;;;;;;;;39719:9;;39695:33;;;;;;;39759:41;;-1:-1:-1;39783:17:0;;-1:-1:-1;;;39783:17:0;;;;39759:41;:69;;;;-1:-1:-1;39818:10:0;;-1:-1:-1;;;39818:10:0;;;;39817:11;39759:69;:100;;;;-1:-1:-1;;;;;;39846:13:0;;;;;;:7;:13;;;;;;;;39845:14;39759:100;:138;;;;-1:-1:-1;;;;;;39877:20:0;;;;;;:14;:20;;;;;;;;39876:21;39759:138;:174;;;;-1:-1:-1;;;;;;39915:18:0;;;;;;:14;:18;;;;;;;;39914:19;39759:174;:216;;;;;39960:15;39950:6;;:25;;39759:216;39741:399;;;40002:10;:17;;-1:-1:-1;;;;40002:17:0;-1:-1:-1;;;40002:17:0;;;40036:16;40045:6;40036:8;:16::i;:::-;40078:15;40069:6;:24;40110:10;:18;;-1:-1:-1;;;;40110:18:0;;;39741:399;40168:10;;-1:-1:-1;;;;;40280:20:0;;40152:12;40280:20;;;:14;:20;;;;;;40168:10;-1:-1:-1;;;40168:10:0;;;;;40167:11;;40280:20;;:42;;-1:-1:-1;;;;;;40304:18:0;;;;;;:14;:18;;;;;;;;40280:42;40276:90;;;-1:-1:-1;40349:5:0;40276:90;40378:12;40483:7;40479:702;;;-1:-1:-1;;;;;40535:11:0;;;;;;:7;:11;;;;;;;;:29;;;;;40563:1;40550:10;;:14;40535:29;40531:501;;;40592:31;40619:3;40592:22;40603:10;;40592:6;:10;;:22;;;;:::i;:::-;:26;;:31::i;:::-;40585:38;;40531:501;;;-1:-1:-1;;;;;40685:13:0;;;;;;:7;:13;;;;;;;;:30;;;;;40714:1;40702:9;;:13;40685:30;40681:351;;;40743:30;40769:3;40743:21;40754:9;;40743:6;:10;;:21;;;;:::i;40681:351::-;40873:1;40859:11;;:15;:50;;;;-1:-1:-1;;;;;;40896:13:0;;;;;;:7;:13;;;;;;;;40895:14;40859:50;:83;;;;-1:-1:-1;;;;;;40931:11:0;;;;;;:7;:11;;;;;;;;40930:12;40859:83;40837:195;;;40984:32;41012:3;40984:23;40995:11;;40984:6;:10;;:23;;;;:::i;:32::-;40977:39;;40837:195;41052:8;;41048:91;;41081:42;41097:4;41111;41118;41081:15;:42::i;:::-;41155:14;41165:4;41155:14;;:::i;:::-;;;40479:702;41193:33;41209:4;41215:2;41219:6;41193:15;:33::i;:::-;37750:3484;;;;37637:3597;;;:::o;22942:191::-;23035:6;;;-1:-1:-1;;;;;23052:17:0;;;-1:-1:-1;;;;;;23052:17:0;;;;;;;23085:40;;23035:6;;;23052:17;23035:6;;23085:40;;23016:16;;23085:40;23005:128;22942:191;:::o;16540:770::-;-1:-1:-1;;;;;16680:20:0;;16672:70;;;;-1:-1:-1;;;16672:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16761:23:0;;16753:71;;;;-1:-1:-1;;;16753:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16921:17:0;;16897:21;16921:17;;;;;;;;;;;16971:23;;;;16949:111;;;;-1:-1:-1;;;16949:111:0;;13965:2:1;16949:111:0;;;13947:21:1;14004:2;13984:18;;;13977:30;14043:34;14023:18;;;14016:62;-1:-1:-1;;;14094:18:1;;;14087:36;14140:19;;16949:111:0;13763:402:1;16949:111:0;-1:-1:-1;;;;;17096:17:0;;;:9;:17;;;;;;;;;;;17116:22;;;17096:42;;17160:20;;;;;;;;:30;;17132:6;;17096:9;17160:30;;17132:6;;17160:30;:::i;:::-;;;;;;;;17225:9;-1:-1:-1;;;;;17208:35:0;17217:6;-1:-1:-1;;;;;17208:35:0;;17236:6;17208:35;;;;1546:25:1;;1534:2;1519:18;;1400:177;17208:35:0;;;;;;;;16661:649;16540:770;;;:::o;41821:621::-;41918:4;41874:23;12355:18;;;;;;;;;;;;41964:20;;;41960:59;;42001:7;;41821:621;:::o;41960:59::-;42053:7;;42035:15;:25;42031:83;;;42095:7;;42077:25;;42031:83;42148:11;:6;42157:2;42148:11;:::i;:::-;42130:15;:29;42126:91;;;42194:11;:6;42203:2;42194:11;:::i;:::-;42176:29;;42126:91;42258:15;42286:36;42258:15;42286:16;:36::i;:::-;42357:13;;42349:85;;42357:13;;;;-1:-1:-1;;;;;42357:13:0;;42398:21;;42349:85;;;;42398:21;42357:13;42349:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3312:98;3370:7;3397:5;3401:1;3397;:5;:::i;:::-;3390:12;3312:98;-1:-1:-1;;;3312:98:0:o;3711:::-;3769:7;3796:5;3800:1;3796;:5;:::i;41242:571::-;41392:16;;;41406:1;41392:16;;;;;;;;41368:21;;41392:16;;;;;;;;;;-1:-1:-1;41392:16:0;41368:40;;41437:4;41419;41424:1;41419:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41419:23:0;;;-1:-1:-1;;;;;41419:23:0;;;;;41463:9;-1:-1:-1;;;;;41463:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41453:4;41458:1;41453:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;41453:26:0;;;-1:-1:-1;;;;;41453:26:0;;;;;41492:56;41509:4;41524:9;41536:11;41492:8;:56::i;:::-;41587:218;;-1:-1:-1;;;41587:218:0;;-1:-1:-1;;;;;41587:9:0;:60;;;;:218;;41662:11;;41688:1;;41732:4;;41759;;41779:15;;41587:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41297:516;41242:571;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:180::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;-1:-1:-1;1366:23:1;;1215:180;-1:-1:-1;1215: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;2890:247::-;2949:6;3002:2;2990:9;2981:7;2977:23;2973:32;2970:52;;;3018:1;3015;3008:12;2970:52;3057:9;3044:23;3076:31;3101:5;3076:31;:::i;3704:160::-;3769:20;;3825:13;;3818:21;3808:32;;3798:60;;3854:1;3851;3844:12;3798:60;3704:160;;;:::o;3869:315::-;3934:6;3942;3995:2;3983:9;3974:7;3970:23;3966:32;3963:52;;;4011:1;4008;4001:12;3963:52;4050:9;4037:23;4069:31;4094:5;4069:31;:::i;:::-;4119:5;-1:-1:-1;4143:35:1;4174:2;4159:18;;4143:35;:::i;:::-;4133:45;;3869:315;;;;;:::o;4189:316::-;4263:6;4271;4279;4332:2;4320:9;4311:7;4307:23;4303:32;4300:52;;;4348:1;4345;4338:12;4300:52;4371:26;4387:9;4371:26;:::i;:::-;4361:36;4444:2;4429:18;;4416:32;;-1:-1:-1;4495:2:1;4480:18;;;4467:32;;4189:316;-1:-1:-1;;;4189:316:1:o;4510:388::-;4578:6;4586;4639:2;4627:9;4618:7;4614:23;4610:32;4607:52;;;4655:1;4652;4645:12;4607:52;4694:9;4681:23;4713:31;4738:5;4713:31;:::i;:::-;4763:5;-1:-1:-1;4820:2:1;4805:18;;4792:32;4833:33;4792:32;4833:33;:::i;:::-;4885:7;4875:17;;;4510:388;;;;;:::o;4903:380::-;4982:1;4978:12;;;;5025;;;5046:61;;5100:4;5092:6;5088:17;5078:27;;5046:61;5153:2;5145:6;5142:14;5122:18;5119:38;5116:161;;5199:10;5194:3;5190:20;5187:1;5180:31;5234:4;5231:1;5224:15;5262:4;5259:1;5252:15;5116:161;;4903:380;;;:::o;5288:356::-;5490:2;5472:21;;;5509:18;;;5502:30;5568:34;5563:2;5548:18;;5541:62;5635:2;5620:18;;5288:356::o;6468:127::-;6529:10;6524:3;6520:20;6517:1;6510:31;6560:4;6557:1;6550:15;6584:4;6581:1;6574:15;6600:125;6665:9;;;6686:10;;;6683:36;;;6699:18;;:::i;7549:168::-;7622:9;;;7653;;7670:15;;;7664:22;;7650:37;7640:71;;7691:18;;:::i;7722:217::-;7762:1;7788;7778:132;;7832:10;7827:3;7823:20;7820:1;7813:31;7867:4;7864:1;7857:15;7895:4;7892:1;7885:15;7778:132;-1:-1:-1;7924:9:1;;7722:217::o;11226:401::-;11428:2;11410:21;;;11467:2;11447:18;;;11440:30;11506:34;11501:2;11486:18;;11479:62;-1:-1:-1;;;11572:2:1;11557:18;;11550:35;11617:3;11602:19;;11226:401::o;11632:399::-;11834:2;11816:21;;;11873:2;11853:18;;;11846:30;11912:34;11907:2;11892:18;;11885:62;-1:-1:-1;;;11978:2:1;11963:18;;11956:33;12021:3;12006:19;;11632:399::o;13630:128::-;13697:9;;;13718:11;;;13715:37;;;13732:18;;:::i;14512:127::-;14573:10;14568:3;14564:20;14561:1;14554:31;14604:4;14601:1;14594:15;14628:4;14625:1;14618:15;14644:251;14714:6;14767:2;14755:9;14746:7;14742:23;14738:32;14735:52;;;14783:1;14780;14773:12;14735:52;14815:9;14809:16;14834:31;14859:5;14834:31;:::i;14900:980::-;15162:4;15210:3;15199:9;15195:19;15241:6;15230:9;15223:25;15267:2;15305:6;15300:2;15289:9;15285:18;15278:34;15348:3;15343:2;15332:9;15328:18;15321:31;15372:6;15407;15401:13;15438:6;15430;15423:22;15476:3;15465:9;15461:19;15454:26;;15515:2;15507:6;15503:15;15489:29;;15536:1;15546:195;15560:6;15557:1;15554:13;15546:195;;;15625:13;;-1:-1:-1;;;;;15621:39:1;15609:52;;15716:15;;;;15681:12;;;;15657:1;15575:9;15546:195;;;-1:-1:-1;;;;;;;15797:32:1;;;;15792:2;15777:18;;15770:60;-1:-1:-1;;;15861:3:1;15846:19;15839:35;15758:3;14900:980;-1:-1:-1;;;14900:980:1:o

Swarm Source

ipfs://1078ad5d8db75b0cbde25ad79ba35bb62189c61fc15ac857d1e97c0ba0682781
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.