ETH Price: $2,441.36 (-3.23%)

Token

Cpi Inu (CPII)
 

Overview

Max Total Supply

100,000,000 CPII

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,800,000.000000000018384178 CPII

Value
$0.00
0xeabb2157a5fc3cd650a0e3d0e8c9c6894e1b756b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CpiInu

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-10
*/

pragma solidity =0.8.9 >=0.8.9 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

/*
 community telegram: https://t.me/CPII_INU                                                                    
*/
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 updated 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 updated 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 updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        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 {}
}

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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 IUniswapV2Factory {
    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;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router02 {
    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 CpiInu is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public prizepotWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    mapping(address => bool) blacklisted;
    bool public transferDelayEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyPrizepotFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellPrizepotFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForPrizepot;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Cpi Inu", "CPII") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyPrizepotFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellPrizepotFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = 2_000_000 * 1e18; // 2% from total supply
        maxWallet = 4_000_000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 4) / 1000; // 0.4% swap wallet

        buyPrizepotFee = _buyPrizepotFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyPrizepotFee + buyLiquidityFee + buyDevFee;

        sellPrizepotFee = _sellPrizepotFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellPrizepotFee + sellLiquidityFee + sellDevFee;

        prizepotWallet = address(0x02a380FCEFDe714be59d35a9b4b10bDBe446094f); // set as prizepot wallet
        devWallet = address(0x02a380FCEFDe714be59d35a9b4b10bDBe446094f); // set as dev wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

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

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 2) / 100000,
            "Swap amount cannot be lower than 0.002% total supply."
        );
        require(
            newAmount <= (totalSupply() * 9) / 1000,
            "Swap amount cannot be higher than 0.9% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 2) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.2%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 6) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.6%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _prizepotFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyPrizepotFee = _prizepotFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyPrizepotFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 15, "Must keep fees at 15% or less");
    }

    function updateSellFees(
        uint256 _prizepotFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellPrizepotFee = _prizepotFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellPrizepotFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99, "Must keep fees at 15% or less");
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updatePrizepotWallet(address newPrizepotWallet) external onlyOwner {
        emit prizepotWalletUpdated(newPrizepotWallet, prizepotWallet);
        prizepotWallet = newPrizepotWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

    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");
        require(!blacklisted[from],"Sender blacklisted");
        require(!blacklisted[to],"Receiver blacklisted");

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] + 1 <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per two blocks allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForPrizepot += (fees * sellPrizepotFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForPrizepot += (fees * buyPrizepotFee) / buyTotalFees;
            }

            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] = uniswapV2Router.WETH();

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForPrizepot +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForPrizepot = ethBalance.mul(tokensForPrizepot).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForPrizepot - ethForDev;

        tokensForLiquidity = 0;
        tokensForPrizepot = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function withdraw() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        require(_token != address(this), "Can't withdraw native tokens");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function blacklist(address _black) public onlyOwner {
        blacklisted[_black] = true;
    }

    function unblacklist(address _black) public onlyOwner {
        blacklisted[_black] = false;
    }
}

Contract Security Audit

Contract ABI

[{"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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"prizepotWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_black","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyPrizepotFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prizepotWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellPrizepotFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForPrizepot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"inputs":[{"internalType":"address","name":"_black","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_prizepotFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPrizepotWallet","type":"address"}],"name":"updatePrizepotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_prizepotFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805462ffffff19166001179055600e805460ff191690553480156200002a57600080fd5b50604080518082018252600781526643706920496e7560c81b6020808301918252835180850190945260048452634350494960e01b90840152815191929162000076916003916200069e565b5080516200008c9060049060208401906200069e565b505050620000a9620000a3620003eb60201b60201c565b620003ef565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000cb81600162000441565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200011157600080fd5b505afa15801562000126573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014c919062000744565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200019557600080fd5b505afa158015620001aa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d0919062000744565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200021957600080fd5b505af11580156200022e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000254919062000744565b6001600160a01b031660a08190526200026f90600162000441565b60a0516200027f906001620004bb565b6a01a784379d99db420000006008556a034f086f3b33b684000000600a55600080808080806a52b7d2dcc80cd2e40000006103e8620002c08260046200078c565b620002cc9190620007ae565b60095560108790556011869055601285905584620002eb8789620007d1565b620002f79190620007d1565b600f5560148490556015839055601682905581620003168486620007d1565b620003229190620007d1565b601355600680547302a380fcefde714be59d35a9b4b10bdbe446094f6001600160a01b031991821681179092556007805490911690911790556200037a620003726005546001600160a01b031690565b60016200050f565b620003873060016200050f565b6200039661dead60016200050f565b620003b5620003ad6005546001600160a01b031690565b600162000441565b620003c230600162000441565b620003d161dead600162000441565b620003dd3382620005b9565b505050505050505062000829565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004905760405162461bcd60e51b815260206004820181905260248201526000805160206200387b83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200055a5760405162461bcd60e51b815260206004820181905260248201526000805160206200387b833981519152604482015260640162000487565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006115760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000487565b8060026000828254620006259190620007d1565b90915550506001600160a01b0382166000908152602081905260408120805483929062000654908490620007d1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006ac90620007ec565b90600052602060002090601f016020900481019282620006d057600085556200071b565b82601f10620006eb57805160ff19168380011785556200071b565b828001600101855582156200071b579182015b828111156200071b578251825591602001919060010190620006fe565b50620007299291506200072d565b5090565b5b808211156200072957600081556001016200072e565b6000602082840312156200075757600080fd5b81516001600160a01b03811681146200076f57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007a957620007a962000776565b500290565b600082620007cc57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007e757620007e762000776565b500190565b600181811c908216806200080157607f821691505b602082108114156200082357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612ff462000887600039600081816105dd015281816113960152611d9b01526000818161045d01528181611d5d015281816128e0015281816129a8015281816129e401528181612a5e0152612a850152612ff46000f3fe6080604052600436106103905760003560e01c80638ea5220f116101dc578063c8c8ebe411610102578063ec3884f3116100a0578063f63743421161006f578063f637434214610a7a578063f8b45b0514610a90578063f9f92be414610aa6578063fe575a8714610ac657600080fd5b8063ec3884f314610a18578063f11a24d314610a2e578063f139ca4014610a44578063f2fde38b14610a5a57600080fd5b8063dcf14013116100dc578063dcf1401314610987578063dd62ed3e146109a7578063e2f45605146109ed578063e884f26014610a0357600080fd5b8063c8c8ebe41461093b578063d257b34f14610951578063d85ba0631461097157600080fd5b8063a457c2d71161017a578063c024666811610149578063c0246668146108c1578063c17b5b8c146108e1578063c18bc19514610901578063c876d0b91461092157600080fd5b8063a457c2d714610832578063a9059cbb14610852578063b62496f514610872578063bbc0c742146108a257600080fd5b80639a7a23d6116101b65780639a7a23d6146107d05780639c3b4fdc146107f05780639fccce3214610806578063a0d82dc51461081c57600080fd5b80638ea5220f1461077b578063924de9b71461079b57806395d89b41146107bb57600080fd5b80633c0c212f116102c157806370a082311161025f57806375e3661e1161022e57806375e3661e146107085780638095d564146107285780638a8c523c146107485780638da5cb5b1461075d57600080fd5b806370a0823114610688578063715018a6146106be578063751039fc146106d35780637571336a146106e857600080fd5b80634a62bb651161029b5780634a62bb65146105ff5780634fbee193146106195780636a486a8e146106525780636ddd17131461066857600080fd5b80633c0c212f146105965780633ccfd60b146105b657806349bd5a5e146105cb57600080fd5b80631a8145bb1161032e57806327c8f8351161030857806327c8f83514610524578063313ce5671461053a57806339509351146105565780633aeac4e11461057657600080fd5b80631a8145bb146104ce578063203e727e146104e457806323b872dd1461050457600080fd5b80631480b7a11161036a5780631480b7a1146104275780631694505e1461044b57806318160ddd146104975780631816467f146104ac57600080fd5b806306fdde031461039c578063095ea7b3146103c757806310d5de53146103f757600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103b1610aff565b6040516103be9190612b6d565b60405180910390f35b3480156103d357600080fd5b506103e76103e2366004612bd7565b610b91565b60405190151581526020016103be565b34801561040357600080fd5b506103e7610412366004612c03565b601b6020526000908152604090205460ff1681565b34801561043357600080fd5b5061043d60145481565b6040519081526020016103be565b34801561045757600080fd5b5061047f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103be565b3480156104a357600080fd5b5060025461043d565b3480156104b857600080fd5b506104cc6104c7366004612c03565b610ba7565b005b3480156104da57600080fd5b5061043d60185481565b3480156104f057600080fd5b506104cc6104ff366004612c20565b610c37565b34801561051057600080fd5b506103e761051f366004612c39565b610d14565b34801561053057600080fd5b5061047f61dead81565b34801561054657600080fd5b50604051601281526020016103be565b34801561056257600080fd5b506103e7610571366004612bd7565b610dbe565b34801561058257600080fd5b506104cc610591366004612c7a565b610dfa565b3480156105a257600080fd5b5060065461047f906001600160a01b031681565b3480156105c257600080fd5b506104cc610fd9565b3480156105d757600080fd5b5061047f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561060b57600080fd5b50600b546103e79060ff1681565b34801561062557600080fd5b506103e7610634366004612c03565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561065e57600080fd5b5061043d60135481565b34801561067457600080fd5b50600b546103e79062010000900460ff1681565b34801561069457600080fd5b5061043d6106a3366004612c03565b6001600160a01b031660009081526020819052604090205490565b3480156106ca57600080fd5b506104cc61111f565b3480156106df57600080fd5b506103e7611155565b3480156106f457600080fd5b506104cc610703366004612cc1565b611192565b34801561071457600080fd5b506104cc610723366004612c03565b6111e7565b34801561073457600080fd5b506104cc610743366004612cef565b611232565b34801561075457600080fd5b506104cc6112d8565b34801561076957600080fd5b506005546001600160a01b031661047f565b34801561078757600080fd5b5060075461047f906001600160a01b031681565b3480156107a757600080fd5b506104cc6107b6366004612d1b565b611315565b3480156107c757600080fd5b506103b161135b565b3480156107dc57600080fd5b506104cc6107eb366004612cc1565b61136a565b3480156107fc57600080fd5b5061043d60125481565b34801561081257600080fd5b5061043d60195481565b34801561082857600080fd5b5061043d60165481565b34801561083e57600080fd5b506103e761084d366004612bd7565b611446565b34801561085e57600080fd5b506103e761086d366004612bd7565b6114df565b34801561087e57600080fd5b506103e761088d366004612c03565b601c6020526000908152604090205460ff1681565b3480156108ae57600080fd5b50600b546103e790610100900460ff1681565b3480156108cd57600080fd5b506104cc6108dc366004612cc1565b6114ec565b3480156108ed57600080fd5b506104cc6108fc366004612cef565b611575565b34801561090d57600080fd5b506104cc61091c366004612c20565b611618565b34801561092d57600080fd5b50600e546103e79060ff1681565b34801561094757600080fd5b5061043d60085481565b34801561095d57600080fd5b506103e761096c366004612c20565b6116e9565b34801561097d57600080fd5b5061043d600f5481565b34801561099357600080fd5b506104cc6109a2366004612c03565b61183b565b3480156109b357600080fd5b5061043d6109c2366004612c7a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109f957600080fd5b5061043d60095481565b348015610a0f57600080fd5b506103e76118c2565b348015610a2457600080fd5b5061043d60175481565b348015610a3a57600080fd5b5061043d60115481565b348015610a5057600080fd5b5061043d60105481565b348015610a6657600080fd5b506104cc610a75366004612c03565b6118ff565b348015610a8657600080fd5b5061043d60155481565b348015610a9c57600080fd5b5061043d600a5481565b348015610ab257600080fd5b506104cc610ac1366004612c03565b61199a565b348015610ad257600080fd5b506103e7610ae1366004612c03565b6001600160a01b03166000908152600d602052604090205460ff1690565b606060038054610b0e90612d38565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3a90612d38565b8015610b875780601f10610b5c57610100808354040283529160200191610b87565b820191906000526020600020905b815481529060010190602001808311610b6a57829003601f168201915b5050505050905090565b6000610b9e3384846119e8565b50600192915050565b6005546001600160a01b03163314610bda5760405162461bcd60e51b8152600401610bd190612d73565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c615760405162461bcd60e51b8152600401610bd190612d73565b670de0b6b3a76400006103e8610c7660025490565b610c81906002612dbe565b610c8b9190612ddd565b610c959190612ddd565b811015610cfc5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e322560881b6064820152608401610bd1565b610d0e81670de0b6b3a7640000612dbe565b60085550565b6000610d21848484611b0c565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610da65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bd1565b610db385338584036119e8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b9e918590610df5908690612dff565b6119e8565b6005546001600160a01b03163314610e245760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b038216610e7a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bd1565b6001600160a01b038216301415610ed35760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610bd1565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610f1557600080fd5b505afa158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d9190612e17565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b158015610f9b57600080fd5b505af1158015610faf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd39190612e30565b50505050565b6005546001600160a01b031633146110035760405162461bcd60e51b8152600401610bd190612d73565b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b15801561103c57600080fd5b505afa158015611050573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110749190612e17565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b1580156110b657600080fd5b505af11580156110ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ee9190612e30565b5060405133904780156108fc02916000818181858888f1935050505015801561111b573d6000803e3d6000fd5b5050565b6005546001600160a01b031633146111495760405162461bcd60e51b8152600401610bd190612d73565b611153600061242a565b565b6005546000906001600160a01b031633146111825760405162461bcd60e51b8152600401610bd190612d73565b50600b805460ff19169055600190565b6005546001600160a01b031633146111bc5760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112115760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03166000908152600d60205260409020805460ff19169055565b6005546001600160a01b0316331461125c5760405162461bcd60e51b8152600401610bd190612d73565b601083905560118290556012819055806112768385612dff565b6112809190612dff565b600f81815510156112d35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610bd1565b505050565b6005546001600160a01b031633146113025760405162461bcd60e51b8152600401610bd190612d73565b600b805462ffff00191662010100179055565b6005546001600160a01b0316331461133f5760405162461bcd60e51b8152600401610bd190612d73565b600b8054911515620100000262ff000019909216919091179055565b606060048054610b0e90612d38565b6005546001600160a01b031633146113945760405162461bcd60e51b8152600401610bd190612d73565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561143c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bd1565b61111b828261247c565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156114c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bd1565b6114d533858584036119e8565b5060019392505050565b6000610b9e338484611b0c565b6005546001600160a01b031633146115165760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461159f5760405162461bcd60e51b8152600401610bd190612d73565b601483905560158290556016819055806115b98385612dff565b6115c39190612dff565b6013819055606310156112d35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610bd1565b6005546001600160a01b031633146116425760405162461bcd60e51b8152600401610bd190612d73565b670de0b6b3a76400006103e861165760025490565b611662906006612dbe565b61166c9190612ddd565b6116769190612ddd565b8110156116d15760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e362560e01b6064820152608401610bd1565b6116e381670de0b6b3a7640000612dbe565b600a5550565b6005546000906001600160a01b031633146117165760405162461bcd60e51b8152600401610bd190612d73565b620186a061172360025490565b61172e906002612dbe565b6117389190612ddd565b8210156117a55760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181912903a37ba30b61039bab838363c9760591b6064820152608401610bd1565b6103e86117b160025490565b6117bc906009612dbe565b6117c69190612ddd565b8211156118325760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171c92903a37ba30b61039bab838363c9760611b6064820152608401610bd1565b50600955600190565b6005546001600160a01b031633146118655760405162461bcd60e51b8152600401610bd190612d73565b6006546040516001600160a01b03918216918316907ff78d2b03119e4c2d697e12346ffc25dc96d198a8c78534a569e73baae7ecc1c990600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146118ef5760405162461bcd60e51b8152600401610bd190612d73565b50600e805460ff19169055600190565b6005546001600160a01b031633146119295760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03811661198e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd1565b6119978161242a565b50565b6005546001600160a01b031633146119c45760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b6001600160a01b038316611a4a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bd1565b6001600160a01b038216611aab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bd1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b325760405162461bcd60e51b8152600401610bd190612e4d565b6001600160a01b038216611b585760405162461bcd60e51b8152600401610bd190612e92565b6001600160a01b0383166000908152600d602052604090205460ff1615611bb65760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bd1565b6001600160a01b0382166000908152600d602052604090205460ff1615611c165760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bd1565b80611c27576112d3838360006124d0565b600b5460ff16156120f5576005546001600160a01b03848116911614801590611c5e57506005546001600160a01b03838116911614155b8015611c7257506001600160a01b03821615155b8015611c8957506001600160a01b03821661dead14155b8015611c9f5750600554600160a01b900460ff16155b156120f557600b54610100900460ff16611d37576001600160a01b0383166000908152601a602052604090205460ff1680611cf257506001600160a01b0382166000908152601a602052604090205460ff165b611d375760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bd1565b600e5460ff1615611e8f576005546001600160a01b03838116911614801590611d9257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611dd057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611e8f57326000908152600c60205260409020544390611df2906001612dff565b10611e7c5760405162461bcd60e51b815260206004820152604e60248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260648201526d3637b1b5b99030b63637bbb2b21760911b608482015260a401610bd1565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff168015611ed057506001600160a01b0382166000908152601b602052604090205460ff16155b15611fb457600854811115611f455760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bd1565b600a546001600160a01b038316600090815260208190526040902054611f6b9083612dff565b1115611faf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bd1565b6120f5565b6001600160a01b0382166000908152601c602052604090205460ff168015611ff557506001600160a01b0383166000908152601b602052604090205460ff16155b1561206b57600854811115611faf5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bd1565b6001600160a01b0382166000908152601b602052604090205460ff166120f557600a546001600160a01b0383166000908152602081905260409020546120b19083612dff565b11156120f55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bd1565b30600090815260208190526040902054600954811080159081906121215750600b5462010000900460ff165b80156121375750600554600160a01b900460ff16155b801561215c57506001600160a01b0385166000908152601c602052604090205460ff16155b801561218157506001600160a01b0385166000908152601a602052604090205460ff16155b80156121a657506001600160a01b0384166000908152601a602052604090205460ff16155b156121d4576005805460ff60a01b1916600160a01b1790556121c6612624565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b90920482161591168061222257506001600160a01b0385166000908152601a602052604090205460ff165b1561222b575060005b60008115612416576001600160a01b0386166000908152601c602052604090205460ff16801561225d57506000601354115b1561231b57612282606461227c6013548861285e90919063ffffffff16565b90612871565b9050601354601554826122959190612dbe565b61229f9190612ddd565b601860008282546122b09190612dff565b90915550506013546016546122c59083612dbe565b6122cf9190612ddd565b601960008282546122e09190612dff565b90915550506013546014546122f59083612dbe565b6122ff9190612ddd565b601760008282546123109190612dff565b909155506123f89050565b6001600160a01b0387166000908152601c602052604090205460ff16801561234557506000600f54115b156123f857612364606461227c600f548861285e90919063ffffffff16565b9050600f54601154826123779190612dbe565b6123819190612ddd565b601860008282546123929190612dff565b9091555050600f546012546123a79083612dbe565b6123b19190612ddd565b601960008282546123c29190612dff565b9091555050600f546010546123d79083612dbe565b6123e19190612ddd565b601760008282546123f29190612dff565b90915550505b8015612409576124098730836124d0565b6124138186612ed5565b94505b6124218787876124d0565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124f65760405162461bcd60e51b8152600401610bd190612e4d565b6001600160a01b03821661251c5760405162461bcd60e51b8152600401610bd190612e92565b6001600160a01b038316600090815260208190526040902054818110156125945760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bd1565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125cb908490612dff565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161261791815260200190565b60405180910390a3610fd3565b306000908152602081905260408120549050600060195460175460185461264b9190612dff565b6126559190612dff565b90506000821580612664575081155b1561266e57505050565b60095461267c906014612dbe565b83111561269457600954612691906014612dbe565b92505b6000600283601854866126a79190612dbe565b6126b19190612ddd565b6126bb9190612ddd565b905060006126c9858361287d565b9050476126d582612889565b60006126e1478361287d565b905060006126fe8761227c6017548561285e90919063ffffffff16565b9050600061271b8861227c6019548661285e90919063ffffffff16565b905060008161272a8486612ed5565b6127349190612ed5565b60006018819055601781905560198190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612791576040519150601f19603f3d011682016040523d82523d6000602084013e612796565b606091505b509098505086158015906127aa5750600081115b156127fd576127b98782612a58565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461284a576040519150601f19603f3d011682016040523d82523d6000602084013e61284f565b606091505b50505050505050505050505050565b600061286a8284612dbe565b9392505050565b600061286a8284612ddd565b600061286a8284612ed5565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128be576128be612eec565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561293757600080fd5b505afa15801561294b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296f9190612f02565b8160018151811061298257612982612eec565b60200260200101906001600160a01b031690816001600160a01b0316815250506129cd307f0000000000000000000000000000000000000000000000000000000000000000846119e8565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612a22908590600090869030904290600401612f1f565b600060405180830381600087803b158015612a3c57600080fd5b505af1158015612a50573d6000803e3d6000fd5b505050505050565b612a83307f0000000000000000000000000000000000000000000000000000000000000000846119e8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612aca6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015612b2d57600080fd5b505af1158015612b41573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b669190612f90565b5050505050565b600060208083528351808285015260005b81811015612b9a57858101830151858201604001528201612b7e565b81811115612bac576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461199757600080fd5b60008060408385031215612bea57600080fd5b8235612bf581612bc2565b946020939093013593505050565b600060208284031215612c1557600080fd5b813561286a81612bc2565b600060208284031215612c3257600080fd5b5035919050565b600080600060608486031215612c4e57600080fd5b8335612c5981612bc2565b92506020840135612c6981612bc2565b929592945050506040919091013590565b60008060408385031215612c8d57600080fd5b8235612c9881612bc2565b91506020830135612ca881612bc2565b809150509250929050565b801515811461199757600080fd5b60008060408385031215612cd457600080fd5b8235612cdf81612bc2565b91506020830135612ca881612cb3565b600080600060608486031215612d0457600080fd5b505081359360208301359350604090920135919050565b600060208284031215612d2d57600080fd5b813561286a81612cb3565b600181811c90821680612d4c57607f821691505b60208210811415612d6d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612dd857612dd8612da8565b500290565b600082612dfa57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612e1257612e12612da8565b500190565b600060208284031215612e2957600080fd5b5051919050565b600060208284031215612e4257600080fd5b815161286a81612cb3565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612ee757612ee7612da8565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f1457600080fd5b815161286a81612bc2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f6f5784516001600160a01b031683529383019391830191600101612f4a565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612fa557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212203190f97efdd138eb469018b5d23481c4e58b755df1d6a246b310537a4876014864736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103905760003560e01c80638ea5220f116101dc578063c8c8ebe411610102578063ec3884f3116100a0578063f63743421161006f578063f637434214610a7a578063f8b45b0514610a90578063f9f92be414610aa6578063fe575a8714610ac657600080fd5b8063ec3884f314610a18578063f11a24d314610a2e578063f139ca4014610a44578063f2fde38b14610a5a57600080fd5b8063dcf14013116100dc578063dcf1401314610987578063dd62ed3e146109a7578063e2f45605146109ed578063e884f26014610a0357600080fd5b8063c8c8ebe41461093b578063d257b34f14610951578063d85ba0631461097157600080fd5b8063a457c2d71161017a578063c024666811610149578063c0246668146108c1578063c17b5b8c146108e1578063c18bc19514610901578063c876d0b91461092157600080fd5b8063a457c2d714610832578063a9059cbb14610852578063b62496f514610872578063bbc0c742146108a257600080fd5b80639a7a23d6116101b65780639a7a23d6146107d05780639c3b4fdc146107f05780639fccce3214610806578063a0d82dc51461081c57600080fd5b80638ea5220f1461077b578063924de9b71461079b57806395d89b41146107bb57600080fd5b80633c0c212f116102c157806370a082311161025f57806375e3661e1161022e57806375e3661e146107085780638095d564146107285780638a8c523c146107485780638da5cb5b1461075d57600080fd5b806370a0823114610688578063715018a6146106be578063751039fc146106d35780637571336a146106e857600080fd5b80634a62bb651161029b5780634a62bb65146105ff5780634fbee193146106195780636a486a8e146106525780636ddd17131461066857600080fd5b80633c0c212f146105965780633ccfd60b146105b657806349bd5a5e146105cb57600080fd5b80631a8145bb1161032e57806327c8f8351161030857806327c8f83514610524578063313ce5671461053a57806339509351146105565780633aeac4e11461057657600080fd5b80631a8145bb146104ce578063203e727e146104e457806323b872dd1461050457600080fd5b80631480b7a11161036a5780631480b7a1146104275780631694505e1461044b57806318160ddd146104975780631816467f146104ac57600080fd5b806306fdde031461039c578063095ea7b3146103c757806310d5de53146103f757600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103b1610aff565b6040516103be9190612b6d565b60405180910390f35b3480156103d357600080fd5b506103e76103e2366004612bd7565b610b91565b60405190151581526020016103be565b34801561040357600080fd5b506103e7610412366004612c03565b601b6020526000908152604090205460ff1681565b34801561043357600080fd5b5061043d60145481565b6040519081526020016103be565b34801561045757600080fd5b5061047f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103be565b3480156104a357600080fd5b5060025461043d565b3480156104b857600080fd5b506104cc6104c7366004612c03565b610ba7565b005b3480156104da57600080fd5b5061043d60185481565b3480156104f057600080fd5b506104cc6104ff366004612c20565b610c37565b34801561051057600080fd5b506103e761051f366004612c39565b610d14565b34801561053057600080fd5b5061047f61dead81565b34801561054657600080fd5b50604051601281526020016103be565b34801561056257600080fd5b506103e7610571366004612bd7565b610dbe565b34801561058257600080fd5b506104cc610591366004612c7a565b610dfa565b3480156105a257600080fd5b5060065461047f906001600160a01b031681565b3480156105c257600080fd5b506104cc610fd9565b3480156105d757600080fd5b5061047f7f0000000000000000000000004d6e8f47b0f92a6db8a6d8f5c65160c761663e3881565b34801561060b57600080fd5b50600b546103e79060ff1681565b34801561062557600080fd5b506103e7610634366004612c03565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561065e57600080fd5b5061043d60135481565b34801561067457600080fd5b50600b546103e79062010000900460ff1681565b34801561069457600080fd5b5061043d6106a3366004612c03565b6001600160a01b031660009081526020819052604090205490565b3480156106ca57600080fd5b506104cc61111f565b3480156106df57600080fd5b506103e7611155565b3480156106f457600080fd5b506104cc610703366004612cc1565b611192565b34801561071457600080fd5b506104cc610723366004612c03565b6111e7565b34801561073457600080fd5b506104cc610743366004612cef565b611232565b34801561075457600080fd5b506104cc6112d8565b34801561076957600080fd5b506005546001600160a01b031661047f565b34801561078757600080fd5b5060075461047f906001600160a01b031681565b3480156107a757600080fd5b506104cc6107b6366004612d1b565b611315565b3480156107c757600080fd5b506103b161135b565b3480156107dc57600080fd5b506104cc6107eb366004612cc1565b61136a565b3480156107fc57600080fd5b5061043d60125481565b34801561081257600080fd5b5061043d60195481565b34801561082857600080fd5b5061043d60165481565b34801561083e57600080fd5b506103e761084d366004612bd7565b611446565b34801561085e57600080fd5b506103e761086d366004612bd7565b6114df565b34801561087e57600080fd5b506103e761088d366004612c03565b601c6020526000908152604090205460ff1681565b3480156108ae57600080fd5b50600b546103e790610100900460ff1681565b3480156108cd57600080fd5b506104cc6108dc366004612cc1565b6114ec565b3480156108ed57600080fd5b506104cc6108fc366004612cef565b611575565b34801561090d57600080fd5b506104cc61091c366004612c20565b611618565b34801561092d57600080fd5b50600e546103e79060ff1681565b34801561094757600080fd5b5061043d60085481565b34801561095d57600080fd5b506103e761096c366004612c20565b6116e9565b34801561097d57600080fd5b5061043d600f5481565b34801561099357600080fd5b506104cc6109a2366004612c03565b61183b565b3480156109b357600080fd5b5061043d6109c2366004612c7a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109f957600080fd5b5061043d60095481565b348015610a0f57600080fd5b506103e76118c2565b348015610a2457600080fd5b5061043d60175481565b348015610a3a57600080fd5b5061043d60115481565b348015610a5057600080fd5b5061043d60105481565b348015610a6657600080fd5b506104cc610a75366004612c03565b6118ff565b348015610a8657600080fd5b5061043d60155481565b348015610a9c57600080fd5b5061043d600a5481565b348015610ab257600080fd5b506104cc610ac1366004612c03565b61199a565b348015610ad257600080fd5b506103e7610ae1366004612c03565b6001600160a01b03166000908152600d602052604090205460ff1690565b606060038054610b0e90612d38565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3a90612d38565b8015610b875780601f10610b5c57610100808354040283529160200191610b87565b820191906000526020600020905b815481529060010190602001808311610b6a57829003601f168201915b5050505050905090565b6000610b9e3384846119e8565b50600192915050565b6005546001600160a01b03163314610bda5760405162461bcd60e51b8152600401610bd190612d73565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c615760405162461bcd60e51b8152600401610bd190612d73565b670de0b6b3a76400006103e8610c7660025490565b610c81906002612dbe565b610c8b9190612ddd565b610c959190612ddd565b811015610cfc5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e322560881b6064820152608401610bd1565b610d0e81670de0b6b3a7640000612dbe565b60085550565b6000610d21848484611b0c565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610da65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bd1565b610db385338584036119e8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b9e918590610df5908690612dff565b6119e8565b6005546001600160a01b03163314610e245760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b038216610e7a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bd1565b6001600160a01b038216301415610ed35760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610bd1565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610f1557600080fd5b505afa158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d9190612e17565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b158015610f9b57600080fd5b505af1158015610faf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd39190612e30565b50505050565b6005546001600160a01b031633146110035760405162461bcd60e51b8152600401610bd190612d73565b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b15801561103c57600080fd5b505afa158015611050573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110749190612e17565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b1580156110b657600080fd5b505af11580156110ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ee9190612e30565b5060405133904780156108fc02916000818181858888f1935050505015801561111b573d6000803e3d6000fd5b5050565b6005546001600160a01b031633146111495760405162461bcd60e51b8152600401610bd190612d73565b611153600061242a565b565b6005546000906001600160a01b031633146111825760405162461bcd60e51b8152600401610bd190612d73565b50600b805460ff19169055600190565b6005546001600160a01b031633146111bc5760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112115760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03166000908152600d60205260409020805460ff19169055565b6005546001600160a01b0316331461125c5760405162461bcd60e51b8152600401610bd190612d73565b601083905560118290556012819055806112768385612dff565b6112809190612dff565b600f81815510156112d35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610bd1565b505050565b6005546001600160a01b031633146113025760405162461bcd60e51b8152600401610bd190612d73565b600b805462ffff00191662010100179055565b6005546001600160a01b0316331461133f5760405162461bcd60e51b8152600401610bd190612d73565b600b8054911515620100000262ff000019909216919091179055565b606060048054610b0e90612d38565b6005546001600160a01b031633146113945760405162461bcd60e51b8152600401610bd190612d73565b7f0000000000000000000000004d6e8f47b0f92a6db8a6d8f5c65160c761663e386001600160a01b0316826001600160a01b0316141561143c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bd1565b61111b828261247c565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156114c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bd1565b6114d533858584036119e8565b5060019392505050565b6000610b9e338484611b0c565b6005546001600160a01b031633146115165760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461159f5760405162461bcd60e51b8152600401610bd190612d73565b601483905560158290556016819055806115b98385612dff565b6115c39190612dff565b6013819055606310156112d35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610bd1565b6005546001600160a01b031633146116425760405162461bcd60e51b8152600401610bd190612d73565b670de0b6b3a76400006103e861165760025490565b611662906006612dbe565b61166c9190612ddd565b6116769190612ddd565b8110156116d15760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e362560e01b6064820152608401610bd1565b6116e381670de0b6b3a7640000612dbe565b600a5550565b6005546000906001600160a01b031633146117165760405162461bcd60e51b8152600401610bd190612d73565b620186a061172360025490565b61172e906002612dbe565b6117389190612ddd565b8210156117a55760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181912903a37ba30b61039bab838363c9760591b6064820152608401610bd1565b6103e86117b160025490565b6117bc906009612dbe565b6117c69190612ddd565b8211156118325760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171c92903a37ba30b61039bab838363c9760611b6064820152608401610bd1565b50600955600190565b6005546001600160a01b031633146118655760405162461bcd60e51b8152600401610bd190612d73565b6006546040516001600160a01b03918216918316907ff78d2b03119e4c2d697e12346ffc25dc96d198a8c78534a569e73baae7ecc1c990600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146118ef5760405162461bcd60e51b8152600401610bd190612d73565b50600e805460ff19169055600190565b6005546001600160a01b031633146119295760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03811661198e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd1565b6119978161242a565b50565b6005546001600160a01b031633146119c45760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b6001600160a01b038316611a4a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bd1565b6001600160a01b038216611aab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bd1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b325760405162461bcd60e51b8152600401610bd190612e4d565b6001600160a01b038216611b585760405162461bcd60e51b8152600401610bd190612e92565b6001600160a01b0383166000908152600d602052604090205460ff1615611bb65760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bd1565b6001600160a01b0382166000908152600d602052604090205460ff1615611c165760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bd1565b80611c27576112d3838360006124d0565b600b5460ff16156120f5576005546001600160a01b03848116911614801590611c5e57506005546001600160a01b03838116911614155b8015611c7257506001600160a01b03821615155b8015611c8957506001600160a01b03821661dead14155b8015611c9f5750600554600160a01b900460ff16155b156120f557600b54610100900460ff16611d37576001600160a01b0383166000908152601a602052604090205460ff1680611cf257506001600160a01b0382166000908152601a602052604090205460ff165b611d375760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bd1565b600e5460ff1615611e8f576005546001600160a01b03838116911614801590611d9257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611dd057507f0000000000000000000000004d6e8f47b0f92a6db8a6d8f5c65160c761663e386001600160a01b0316826001600160a01b031614155b15611e8f57326000908152600c60205260409020544390611df2906001612dff565b10611e7c5760405162461bcd60e51b815260206004820152604e60248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260648201526d3637b1b5b99030b63637bbb2b21760911b608482015260a401610bd1565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff168015611ed057506001600160a01b0382166000908152601b602052604090205460ff16155b15611fb457600854811115611f455760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bd1565b600a546001600160a01b038316600090815260208190526040902054611f6b9083612dff565b1115611faf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bd1565b6120f5565b6001600160a01b0382166000908152601c602052604090205460ff168015611ff557506001600160a01b0383166000908152601b602052604090205460ff16155b1561206b57600854811115611faf5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bd1565b6001600160a01b0382166000908152601b602052604090205460ff166120f557600a546001600160a01b0383166000908152602081905260409020546120b19083612dff565b11156120f55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bd1565b30600090815260208190526040902054600954811080159081906121215750600b5462010000900460ff165b80156121375750600554600160a01b900460ff16155b801561215c57506001600160a01b0385166000908152601c602052604090205460ff16155b801561218157506001600160a01b0385166000908152601a602052604090205460ff16155b80156121a657506001600160a01b0384166000908152601a602052604090205460ff16155b156121d4576005805460ff60a01b1916600160a01b1790556121c6612624565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b90920482161591168061222257506001600160a01b0385166000908152601a602052604090205460ff165b1561222b575060005b60008115612416576001600160a01b0386166000908152601c602052604090205460ff16801561225d57506000601354115b1561231b57612282606461227c6013548861285e90919063ffffffff16565b90612871565b9050601354601554826122959190612dbe565b61229f9190612ddd565b601860008282546122b09190612dff565b90915550506013546016546122c59083612dbe565b6122cf9190612ddd565b601960008282546122e09190612dff565b90915550506013546014546122f59083612dbe565b6122ff9190612ddd565b601760008282546123109190612dff565b909155506123f89050565b6001600160a01b0387166000908152601c602052604090205460ff16801561234557506000600f54115b156123f857612364606461227c600f548861285e90919063ffffffff16565b9050600f54601154826123779190612dbe565b6123819190612ddd565b601860008282546123929190612dff565b9091555050600f546012546123a79083612dbe565b6123b19190612ddd565b601960008282546123c29190612dff565b9091555050600f546010546123d79083612dbe565b6123e19190612ddd565b601760008282546123f29190612dff565b90915550505b8015612409576124098730836124d0565b6124138186612ed5565b94505b6124218787876124d0565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124f65760405162461bcd60e51b8152600401610bd190612e4d565b6001600160a01b03821661251c5760405162461bcd60e51b8152600401610bd190612e92565b6001600160a01b038316600090815260208190526040902054818110156125945760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bd1565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125cb908490612dff565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161261791815260200190565b60405180910390a3610fd3565b306000908152602081905260408120549050600060195460175460185461264b9190612dff565b6126559190612dff565b90506000821580612664575081155b1561266e57505050565b60095461267c906014612dbe565b83111561269457600954612691906014612dbe565b92505b6000600283601854866126a79190612dbe565b6126b19190612ddd565b6126bb9190612ddd565b905060006126c9858361287d565b9050476126d582612889565b60006126e1478361287d565b905060006126fe8761227c6017548561285e90919063ffffffff16565b9050600061271b8861227c6019548661285e90919063ffffffff16565b905060008161272a8486612ed5565b6127349190612ed5565b60006018819055601781905560198190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612791576040519150601f19603f3d011682016040523d82523d6000602084013e612796565b606091505b509098505086158015906127aa5750600081115b156127fd576127b98782612a58565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461284a576040519150601f19603f3d011682016040523d82523d6000602084013e61284f565b606091505b50505050505050505050505050565b600061286a8284612dbe565b9392505050565b600061286a8284612ddd565b600061286a8284612ed5565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128be576128be612eec565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561293757600080fd5b505afa15801561294b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296f9190612f02565b8160018151811061298257612982612eec565b60200260200101906001600160a01b031690816001600160a01b0316815250506129cd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846119e8565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612a22908590600090869030904290600401612f1f565b600060405180830381600087803b158015612a3c57600080fd5b505af1158015612a50573d6000803e3d6000fd5b505050505050565b612a83307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846119e8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612aca6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015612b2d57600080fd5b505af1158015612b41573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b669190612f90565b5050505050565b600060208083528351808285015260005b81811015612b9a57858101830151858201604001528201612b7e565b81811115612bac576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461199757600080fd5b60008060408385031215612bea57600080fd5b8235612bf581612bc2565b946020939093013593505050565b600060208284031215612c1557600080fd5b813561286a81612bc2565b600060208284031215612c3257600080fd5b5035919050565b600080600060608486031215612c4e57600080fd5b8335612c5981612bc2565b92506020840135612c6981612bc2565b929592945050506040919091013590565b60008060408385031215612c8d57600080fd5b8235612c9881612bc2565b91506020830135612ca881612bc2565b809150509250929050565b801515811461199757600080fd5b60008060408385031215612cd457600080fd5b8235612cdf81612bc2565b91506020830135612ca881612cb3565b600080600060608486031215612d0457600080fd5b505081359360208301359350604090920135919050565b600060208284031215612d2d57600080fd5b813561286a81612cb3565b600181811c90821680612d4c57607f821691505b60208210811415612d6d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612dd857612dd8612da8565b500290565b600082612dfa57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612e1257612e12612da8565b500190565b600060208284031215612e2957600080fd5b5051919050565b600060208284031215612e4257600080fd5b815161286a81612cb3565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612ee757612ee7612da8565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f1457600080fd5b815161286a81612bc2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f6f5784516001600160a01b031683529383019391830191600101612f4a565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612fa557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212203190f97efdd138eb469018b5d23481c4e58b755df1d6a246b310537a4876014864736f6c63430008090033

Deployed Bytecode Sourcemap

30546:17351:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8505:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10672:169;;;;;;;;;;-1:-1:-1;10672:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;10672:169:0;1072:187:1;31930:63:0;;;;;;;;;;-1:-1:-1;31930:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31566:30;;;;;;;;;;;;;;;;;;;1662:25:1;;;1650:2;1635:18;31566:30:0;1516:177:1;30622:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;30622:51:0;1698:230:1;9625:108:0;;;;;;;;;;-1:-1:-1;9713:12:0;;9625:108;;38949:157;;;;;;;;;;-1:-1:-1;38949:157:0;;;;;:::i;:::-;;:::i;:::-;;31714:33;;;;;;;;;;;;;;;;36301:275;;;;;;;;;;-1:-1:-1;36301:275:0;;;;;:::i;:::-;;:::i;11323:492::-;;;;;;;;;;-1:-1:-1;11323:492:0;;;;;:::i;:::-;;:::i;30725:53::-;;;;;;;;;;;;30771:6;30725:53;;9467:93;;;;;;;;;;-1:-1:-1;9467:93:0;;9550:2;2929:36:1;;2917:2;2902:18;9467:93:0;2787:184:1;12224:215:0;;;;;;;;;;-1:-1:-1;12224:215:0;;;;;:::i;:::-;;:::i;47323:358::-;;;;;;;;;;-1:-1:-1;47323:358:0;;;;;:::i;:::-;;:::i;30817:29::-;;;;;;;;;;-1:-1:-1;30817:29:0;;;;-1:-1:-1;;;;;30817:29:0;;;47069:246;;;;;;;;;;;;;:::i;30680:38::-;;;;;;;;;;;;;;;31001:33;;;;;;;;;;-1:-1:-1;31001:33:0;;;;;;;;39114:126;;;;;;;;;;-1:-1:-1;39114:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39204:28:0;39180:4;39204:28;;;:19;:28;;;;;;;;;39114:126;31531:28;;;;;;;;;;;;;;;;31081:31;;;;;;;;;;-1:-1:-1;31081:31:0;;;;;;;;;;;9796:127;;;;;;;;;;-1:-1:-1;9796:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9897:18:0;9870:7;9897:18;;;;;;;;;;;;9796:127;2022:103;;;;;;;;;;;;;:::i;35409:121::-;;;;;;;;;;;;;:::i;36848:167::-;;;;;;;;;;-1:-1:-1;36848:167:0;;;;;:::i;:::-;;:::i;47794:100::-;;;;;;;;;;-1:-1:-1;47794:100:0;;;;;:::i;:::-;;:::i;37219:399::-;;;;;;;;;;-1:-1:-1;37219:399:0;;;;;:::i;:::-;;:::i;35245:112::-;;;;;;;;;;;;;:::i;1371:87::-;;;;;;;;;;-1:-1:-1;1444:6:0;;-1:-1:-1;;;;;1444:6:0;1371:87;;30853:24;;;;;;;;;;-1:-1:-1;30853:24:0;;;;-1:-1:-1;;;;;30853:24:0;;;37111:100;;;;;;;;;;-1:-1:-1;37111:100:0;;;;;:::i;:::-;;:::i;8724:104::-;;;;;;;;;;;;;:::i;38232:304::-;;;;;;;;;;-1:-1:-1;38232:304:0;;;;;:::i;:::-;;:::i;31498:24::-;;;;;;;;;;;;;;;;31754:27;;;;;;;;;;;;;;;;31641:25;;;;;;;;;;;;;;;;12942:413;;;;;;;;;;-1:-1:-1;12942:413:0;;;;;:::i;:::-;;:::i;10136:175::-;;;;;;;;;;-1:-1:-1;10136:175:0;;;;;:::i;:::-;;:::i;32151:57::-;;;;;;;;;;-1:-1:-1;32151:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31041:33;;;;;;;;;;-1:-1:-1;31041:33:0;;;;;;;;;;;38042:182;;;;;;;;;;-1:-1:-1;38042:182:0;;;;;:::i;:::-;;:::i;37626:408::-;;;;;;;;;;-1:-1:-1;37626:408:0;;;;;:::i;:::-;;:::i;36584:256::-;;;;;;;;;;-1:-1:-1;36584:256:0;;;;;:::i;:::-;;:::i;31342:40::-;;;;;;;;;;-1:-1:-1;31342:40:0;;;;;;;;30886:35;;;;;;;;;;;;;;;;35796:497;;;;;;;;;;-1:-1:-1;35796:497:0;;;;;:::i;:::-;;:::i;31391:27::-;;;;;;;;;;;;;;;;38740:201;;;;;;;;;;-1:-1:-1;38740:201:0;;;;;:::i;:::-;;:::i;10374:151::-;;;;;;;;;;-1:-1:-1;10374:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10490:18:0;;;10463:7;10490:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10374:151;30928:33;;;;;;;;;;;;;;;;35591:135;;;;;;;;;;;;;:::i;31675:32::-;;;;;;;;;;;;;;;;31461:30;;;;;;;;;;;;;;;;31425:29;;;;;;;;;;;;;;;;2280:201;;;;;;;;;;-1:-1:-1;2280:201:0;;;;;:::i;:::-;;:::i;31603:31::-;;;;;;;;;;;;;;;;30968:24;;;;;;;;;;;;;;;;47689:97;;;;;;;;;;-1:-1:-1;47689:97:0;;;;;:::i;:::-;;:::i;39248:113::-;;;;;;;;;;-1:-1:-1;39248:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;39333:20:0;39309:4;39333:20;;;:11;:20;;;;;;;;;39248:113;8505:100;8559:13;8592:5;8585:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8505:100;:::o;10672:169::-;10755:4;10772:39;318:10;10795:7;10804:6;10772:8;:39::i;:::-;-1:-1:-1;10829:4:0;10672:169;;;;:::o;38949:157::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;;;;;;;;;39056:9:::1;::::0;39028:38:::1;::::0;-1:-1:-1;;;;;39056:9:0;;::::1;::::0;39028:38;::::1;::::0;::::1;::::0;39056:9:::1;::::0;39028:38:::1;39077:9;:21:::0;;-1:-1:-1;;;;;;39077:21:0::1;-1:-1:-1::0;;;;;39077:21:0;;;::::1;::::0;;;::::1;::::0;;38949:157::o;36301:275::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;36438:4:::1;36430;36409:13;9713:12:::0;;;9625:108;36409:13:::1;:17;::::0;36425:1:::1;36409:17;:::i;:::-;36408:26;;;;:::i;:::-;36407:35;;;;:::i;:::-;36397:6;:45;;36375:142;;;::::0;-1:-1:-1;;;36375:142:0;;5921:2:1;36375:142:0::1;::::0;::::1;5903:21:1::0;5960:2;5940:18;;;5933:30;5999:34;5979:18;;;5972:62;-1:-1:-1;;;6050:18:1;;;6043:45;6105:19;;36375:142:0::1;5719:411:1::0;36375:142:0::1;36551:17;:6:::0;36561::::1;36551:17;:::i;:::-;36528:20;:40:::0;-1:-1:-1;36301:275:0:o;11323:492::-;11463:4;11480:36;11490:6;11498:9;11509:6;11480:9;:36::i;:::-;-1:-1:-1;;;;;11556:19:0;;11529:24;11556:19;;;:11;:19;;;;;;;;318:10;11556:33;;;;;;;;11608:26;;;;11600:79;;;;-1:-1:-1;;;11600:79:0;;6337:2:1;11600:79:0;;;6319:21:1;6376:2;6356:18;;;6349:30;6415:34;6395:18;;;6388:62;-1:-1:-1;;;6466:18:1;;;6459:38;6514:19;;11600:79:0;6135:404:1;11600:79:0;11715:57;11724:6;318:10;11765:6;11746:16;:25;11715:8;:57::i;:::-;-1:-1:-1;11803:4:0;;11323:492;-1:-1:-1;;;;11323:492:0:o;12224:215::-;318:10;12312:4;12361:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12361:34:0;;;;;;;;;;12312:4;;12329:80;;12352:7;;12361:47;;12398:10;;12361:47;:::i;:::-;12329:8;:80::i;47323:358::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47413:20:0;::::1;47405:59;;;::::0;-1:-1:-1;;;47405:59:0;;6879:2:1;47405:59:0::1;::::0;::::1;6861:21:1::0;6918:2;6898:18;;;6891:30;6957:28;6937:18;;;6930:56;7003:18;;47405:59:0::1;6677:350:1::0;47405:59:0::1;-1:-1:-1::0;;;;;47483:23:0;::::1;47501:4;47483:23;;47475:64;;;::::0;-1:-1:-1;;;47475:64:0;;7234:2:1;47475:64:0::1;::::0;::::1;7216:21:1::0;7273:2;7253:18;;;7246:30;7312;7292:18;;;7285:58;7360:18;;47475:64:0::1;7032:352:1::0;47475:64:0::1;47577:39;::::0;-1:-1:-1;;;47577:39:0;;47610:4:::1;47577:39;::::0;::::1;1871:51:1::0;47550:24:0::1;::::0;-1:-1:-1;;;;;47577:24:0;::::1;::::0;::::1;::::0;1844:18:1;;47577:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47627:46;::::0;-1:-1:-1;;;47627:46:0;;-1:-1:-1;;;;;7770:32:1;;;47627:46:0::1;::::0;::::1;7752:51:1::0;7819:18;;;7812:34;;;47550:66:0;;-1:-1:-1;47627:23:0;;::::1;::::0;::::1;::::0;7725:18:1;;47627:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47394:287;47323:358:::0;;:::o;47069:246::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;47137:46:::1;::::0;-1:-1:-1;;;47137:46:0;;47152:4:::1;47137:46;::::0;::::1;1871:51:1::0;;;47119:15:0::1;::::0;47137:31:::1;::::0;1844:18:1;;47137:46:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47194:51;::::0;-1:-1:-1;;;47194:51:0;;47225:10:::1;47194:51;::::0;::::1;7752::1::0;7819:18;;;7812:34;;;47119:64:0;;-1:-1:-1;47209:4:0::1;::::0;47194:30:::1;::::0;7725:18:1;;47194:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;47256:51:0::1;::::0;47264:10:::1;::::0;47285:21:::1;47256:51:::0;::::1;;;::::0;::::1;::::0;;;47285:21;47264:10;47256:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47108:207;47069:246::o:0;2022:103::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;2087:30:::1;2114:1;2087:18;:30::i;:::-;2022:103::o:0;35409:121::-;1444:6;;35461:4;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;-1:-1:-1;35478:14:0::1;:22:::0;;-1:-1:-1;;35478:22:0::1;::::0;;;35409:121;:::o;36848:167::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36961:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36961:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36848:167::o;47794:100::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47859:19:0::1;47881:5;47859:19:::0;;;:11:::1;:19;::::0;;;;:27;;-1:-1:-1;;47859:27:0::1;::::0;;47794:100::o;37219:399::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;37368:14:::1;:29:::0;;;37408:15:::1;:31:::0;;;37450:9:::1;:19:::0;;;37462:7;37495:32:::1;37426:13:::0;37385:12;37495:32:::1;:::i;:::-;:44;;;;:::i;:::-;37480:12;:59:::0;;;-1:-1:-1;37558:18:0::1;37550:60;;;::::0;-1:-1:-1;;;37550:60:0;;8309:2:1;37550:60:0::1;::::0;::::1;8291:21:1::0;8348:2;8328:18;;;8321:30;8387:31;8367:18;;;8360:59;8436:18;;37550:60:0::1;8107:353:1::0;37550:60:0::1;37219:399:::0;;;:::o;35245:112::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;35300:13:::1;:20:::0;;-1:-1:-1;;35331:18:0;;;;;35245:112::o;37111:100::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;37182:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37182:21:0;;::::1;::::0;;;::::1;::::0;;37111:100::o;8724:104::-;8780:13;8813:7;8806:14;;;;;:::i;38232:304::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;38376:13:::1;-1:-1:-1::0;;;;;38368:21:0::1;:4;-1:-1:-1::0;;;;;38368:21:0::1;;;38346:128;;;::::0;-1:-1:-1;;;38346:128:0;;8667:2:1;38346:128:0::1;::::0;::::1;8649:21:1::0;8706:2;8686:18;;;8679:30;8745:34;8725:18;;;8718:62;8816:27;8796:18;;;8789:55;8861:19;;38346:128:0::1;8465:421:1::0;38346:128:0::1;38487:41;38516:4;38522:5;38487:28;:41::i;12942:413::-:0;318:10;13035:4;13079:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13079:34:0;;;;;;;;;;13132:35;;;;13124:85;;;;-1:-1:-1;;;13124:85:0;;9093:2:1;13124:85:0;;;9075:21:1;9132:2;9112:18;;;9105:30;9171:34;9151:18;;;9144:62;-1:-1:-1;;;9222:18:1;;;9215:35;9267:19;;13124:85:0;8891:401:1;13124:85:0;13245:67;318:10;13268:7;13296:15;13277:16;:34;13245:8;:67::i;:::-;-1:-1:-1;13343:4:0;;12942:413;-1:-1:-1;;;12942:413:0:o;10136:175::-;10222:4;10239:42;318:10;10263:9;10274:6;10239:9;:42::i;38042:182::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38127:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38127:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38182:34;;1212:41:1;;;38182:34:0::1;::::0;1185:18:1;38182:34:0::1;;;;;;;38042:182:::0;;:::o;37626:408::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;37776:15:::1;:30:::0;;;37817:16:::1;:32:::0;;;37860:10:::1;:20:::0;;;37873:7;37907:34:::1;37836:13:::0;37794:12;37907:34:::1;:::i;:::-;:47;;;;:::i;:::-;37891:13;:63:::0;;;37990:2:::1;-1:-1:-1::0;37973:19:0::1;37965:61;;;::::0;-1:-1:-1;;;37965:61:0;;8309:2:1;37965:61:0::1;::::0;::::1;8291:21:1::0;8348:2;8328:18;;;8321:30;8387:31;8367:18;;;8360:59;8436:18;;37965:61:0::1;8107:353:1::0;36584:256:0;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;36724:4:::1;36716;36695:13;9713:12:::0;;;9625:108;36695:13:::1;:17;::::0;36711:1:::1;36695:17;:::i;:::-;36694:26;;;;:::i;:::-;36693:35;;;;:::i;:::-;36683:6;:45;;36661:131;;;::::0;-1:-1:-1;;;36661:131:0;;9499:2:1;36661:131:0::1;::::0;::::1;9481:21:1::0;9538:2;9518:18;;;9511:30;9577:34;9557:18;;;9550:62;-1:-1:-1;;;9628:18:1;;;9621:34;9672:19;;36661:131:0::1;9297:400:1::0;36661:131:0::1;36815:17;:6:::0;36825::::1;36815:17;:::i;:::-;36803:9;:29:::0;-1:-1:-1;36584:256:0:o;35796:497::-;1444:6;;35904:4;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;35983:6:::1;35962:13;9713:12:::0;;;9625:108;35962:13:::1;:17;::::0;35978:1:::1;35962:17;:::i;:::-;35961:28;;;;:::i;:::-;35948:9;:41;;35926:144;;;::::0;-1:-1:-1;;;35926:144:0;;9904:2:1;35926:144:0::1;::::0;::::1;9886:21:1::0;9943:2;9923:18;;;9916:30;9982:34;9962:18;;;9955:62;-1:-1:-1;;;10033:18:1;;;10026:51;10094:19;;35926:144:0::1;9702:417:1::0;35926:144:0::1;36138:4;36117:13;9713:12:::0;;;9625:108;36117:13:::1;:17;::::0;36133:1:::1;36117:17;:::i;:::-;36116:26;;;;:::i;:::-;36103:9;:39;;36081:141;;;::::0;-1:-1:-1;;;36081:141:0;;10326:2:1;36081:141:0::1;::::0;::::1;10308:21:1::0;10365:2;10345:18;;;10338:30;10404:34;10384:18;;;10377:62;-1:-1:-1;;;10455:18:1;;;10448:50;10515:19;;36081:141:0::1;10124:416:1::0;36081:141:0::1;-1:-1:-1::0;36233:18:0::1;:30:::0;36281:4:::1;::::0;35796:497::o;38740:201::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;38873:14:::1;::::0;38832:56:::1;::::0;-1:-1:-1;;;;;38873:14:0;;::::1;::::0;38832:56;::::1;::::0;::::1;::::0;38873:14:::1;::::0;38832:56:::1;38899:14;:34:::0;;-1:-1:-1;;;;;;38899:34:0::1;-1:-1:-1::0;;;;;38899:34:0;;;::::1;::::0;;;::::1;::::0;;38740:201::o;35591:135::-;1444:6;;35651:4;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;-1:-1:-1;35668:20:0::1;:28:::0;;-1:-1:-1;;35668:28:0::1;::::0;;;35591:135;:::o;2280:201::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2369:22:0;::::1;2361:73;;;::::0;-1:-1:-1;;;2361:73:0;;10747:2:1;2361:73:0::1;::::0;::::1;10729:21:1::0;10786:2;10766:18;;;10759:30;10825:34;10805:18;;;10798:62;-1:-1:-1;;;10876:18:1;;;10869:36;10922:19;;2361:73:0::1;10545:402:1::0;2361:73:0::1;2445:28;2464:8;2445:18;:28::i;:::-;2280:201:::0;:::o;47689:97::-;1444:6;;-1:-1:-1;;;;;1444:6:0;318:10;1591:23;1583:68;;;;-1:-1:-1;;;1583:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47752:19:0::1;;::::0;;;:11:::1;:19;::::0;;;;:26;;-1:-1:-1;;47752:26:0::1;47774:4;47752:26;::::0;;47689:97::o;16626:380::-;-1:-1:-1;;;;;16762:19:0;;16754:68;;;;-1:-1:-1;;;16754:68:0;;11154:2:1;16754:68:0;;;11136:21:1;11193:2;11173:18;;;11166:30;11232:34;11212:18;;;11205:62;-1:-1:-1;;;11283:18:1;;;11276:34;11327:19;;16754:68:0;10952:400:1;16754:68:0;-1:-1:-1;;;;;16841:21:0;;16833:68;;;;-1:-1:-1;;;16833:68:0;;11559:2:1;16833:68:0;;;11541:21:1;11598:2;11578:18;;;11571:30;11637:34;11617:18;;;11610:62;-1:-1:-1;;;11688:18:1;;;11681:32;11730:19;;16833:68:0;11357:398:1;16833:68:0;-1:-1:-1;;;;;16914:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16966:32;;1662:25:1;;;16966:32:0;;1635:18:1;16966:32:0;;;;;;;16626:380;;;:::o;39369:4840::-;-1:-1:-1;;;;;39501:18:0;;39493:68;;;;-1:-1:-1;;;39493:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39580:16:0;;39572:64;;;;-1:-1:-1;;;39572:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39656:17:0;;;;;;:11;:17;;;;;;;;39655:18;39647:48;;;;-1:-1:-1;;;39647:48:0;;12772:2:1;39647:48:0;;;12754:21:1;12811:2;12791:18;;;12784:30;-1:-1:-1;;;12830:18:1;;;12823:48;12888:18;;39647:48:0;12570:342:1;39647:48:0;-1:-1:-1;;;;;39715:15:0;;;;;;:11;:15;;;;;;;;39714:16;39706:48;;;;-1:-1:-1;;;39706:48:0;;13119:2:1;39706:48:0;;;13101:21:1;13158:2;13138:18;;;13131:30;-1:-1:-1;;;13177:18:1;;;13170:50;13237:18;;39706:48:0;12917:344:1;39706:48:0;39771:11;39767:93;;39799:28;39815:4;39821:2;39825:1;39799:15;:28::i;39767:93::-;39876:14;;;;39872:2496;;;1444:6;;-1:-1:-1;;;;;39929:15:0;;;1444:6;;39929:15;;;;:49;;-1:-1:-1;1444:6:0;;-1:-1:-1;;;;;39965:13:0;;;1444:6;;39965:13;;39929:49;:86;;;;-1:-1:-1;;;;;;39999:16:0;;;;39929:86;:128;;;;-1:-1:-1;;;;;;40036:21:0;;40050:6;40036:21;;39929:128;:158;;;;-1:-1:-1;40079:8:0;;-1:-1:-1;;;40079:8:0;;;;40078:9;39929:158;39907:2450;;;40127:13;;;;;;;40122:223;;-1:-1:-1;;;;;40199:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40228:23:0;;;;;;:19;:23;;;;;;;;40199:52;40165:160;;;;-1:-1:-1;;;40165:160:0;;13468:2:1;40165:160:0;;;13450:21:1;13507:2;13487:18;;;13480:30;-1:-1:-1;;;13526:18:1;;;13519:52;13588:18;;40165:160:0;13266:346:1;40165:160:0;40501:20;;;;40497:650;;;1444:6;;-1:-1:-1;;;;;40576:13:0;;;1444:6;;40576:13;;;;:72;;;40632:15;-1:-1:-1;;;;;40618:30:0;:2;-1:-1:-1;;;;;40618:30:0;;;40576:72;:129;;;;;40691:13;-1:-1:-1;;;;;40677:28:0;:2;-1:-1:-1;;;;;40677:28:0;;;40576:129;40546:582;;;40823:9;40794:39;;;;:28;:39;;;;;;40873:12;;40794:43;;40836:1;40794:43;:::i;:::-;:91;40756:267;;;;-1:-1:-1;;;40756:267:0;;13819:2:1;40756:267:0;;;13801:21:1;13858:2;13838:18;;;13831:30;13897:34;13877:18;;;13870:62;13968:34;13948:18;;;13941:62;-1:-1:-1;;;14019:19:1;;;14012:45;14074:19;;40756:267:0;13617:482:1;40756:267:0;41079:9;41050:39;;;;:28;:39;;;;;41092:12;41050:54;;40546:582;-1:-1:-1;;;;;41221:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;41278:35:0;;;;;;:31;:35;;;;;;;;41277:36;41221:92;41195:1147;;;41400:20;;41390:6;:30;;41356:169;;;;-1:-1:-1;;;41356:169:0;;14306:2:1;41356:169:0;;;14288:21:1;14345:2;14325:18;;;14318:30;14384:34;14364:18;;;14357:62;-1:-1:-1;;;14435:18:1;;;14428:51;14496:19;;41356:169:0;14104:417:1;41356:169:0;41608:9;;-1:-1:-1;;;;;9897:18:0;;9870:7;9897:18;;;;;;;;;;;41582:22;;:6;:22;:::i;:::-;:35;;41548:140;;;;-1:-1:-1;;;41548:140:0;;14728:2:1;41548:140:0;;;14710:21:1;14767:2;14747:18;;;14740:30;-1:-1:-1;;;14786:18:1;;;14779:49;14845:18;;41548:140:0;14526:343:1;41548:140:0;41195:1147;;;-1:-1:-1;;;;;41786:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41841:37:0;;;;;;:31;:37;;;;;;;;41840:38;41786:92;41760:582;;;41965:20;;41955:6;:30;;41921:170;;;;-1:-1:-1;;;41921:170:0;;15076:2:1;41921:170:0;;;15058:21:1;15115:2;15095:18;;;15088:30;15154:34;15134:18;;;15127:62;-1:-1:-1;;;15205:18:1;;;15198:52;15267:19;;41921:170:0;14874:418:1;41760:582:0;-1:-1:-1;;;;;42122:35:0;;;;;;:31;:35;;;;;;;;42117:225;;42242:9;;-1:-1:-1;;;;;9897:18:0;;9870:7;9897:18;;;;;;;;;;;42216:22;;:6;:22;:::i;:::-;:35;;42182:140;;;;-1:-1:-1;;;42182:140:0;;14728:2:1;42182:140:0;;;14710:21:1;14767:2;14747:18;;;14740:30;-1:-1:-1;;;14786:18:1;;;14779:49;14845:18;;42182:140:0;14526:343:1;42182:140:0;42429:4;42380:28;9897:18;;;;;;;;;;;42487;;42463:42;;;;;;;42536:35;;-1:-1:-1;42560:11:0;;;;;;;42536:35;:61;;;;-1:-1:-1;42589:8:0;;-1:-1:-1;;;42589:8:0;;;;42588:9;42536:61;:110;;;;-1:-1:-1;;;;;;42615:31:0;;;;;;:25;:31;;;;;;;;42614:32;42536:110;:153;;;;-1:-1:-1;;;;;;42664:25:0;;;;;;:19;:25;;;;;;;;42663:26;42536:153;:194;;;;-1:-1:-1;;;;;;42707:23:0;;;;;;:19;:23;;;;;;;;42706:24;42536:194;42518:326;;;42757:8;:15;;-1:-1:-1;;;;42757:15:0;-1:-1:-1;;;42757:15:0;;;42789:10;:8;:10::i;:::-;42816:8;:16;;-1:-1:-1;;;;42816:16:0;;;42518:326;42872:8;;-1:-1:-1;;;;;42982:25:0;;42856:12;42982:25;;;:19;:25;;;;;;42872:8;-1:-1:-1;;;42872:8:0;;;;;42871:9;;42982:25;;:52;;-1:-1:-1;;;;;;43011:23:0;;;;;;:19;:23;;;;;;;;42982:52;42978:100;;;-1:-1:-1;43061:5:0;42978:100;43090:12;43195:7;43191:965;;;-1:-1:-1;;;;;43247:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43296:1;43280:13;;:17;43247:50;43243:764;;;43325:34;43355:3;43325:25;43336:13;;43325:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43318:41;;43428:13;;43408:16;;43401:4;:23;;;;:::i;:::-;43400:41;;;;:::i;:::-;43378:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43498:13:0;;43484:10;;43477:17;;:4;:17;:::i;:::-;43476:35;;;;:::i;:::-;43460:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43578:13:0;;43559:15;;43552:22;;:4;:22;:::i;:::-;43551:40;;;;:::i;:::-;43530:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;43243:764:0;;-1:-1:-1;43243:764:0;;-1:-1:-1;;;;;43653:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43703:1;43688:12;;:16;43653:51;43649:358;;;43732:33;43761:3;43732:24;43743:12;;43732:6;:10;;:24;;;;:::i;:33::-;43725:40;;43833:12;;43814:15;;43807:4;:22;;;;:::i;:::-;43806:39;;;;:::i;:::-;43784:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43901:12:0;;43888:9;;43881:16;;:4;:16;:::i;:::-;43880:33;;;;:::i;:::-;43864:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43979:12:0;;43961:14;;43954:21;;:4;:21;:::i;:::-;43953:38;;;;:::i;:::-;43932:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;43649:358:0;44027:8;;44023:91;;44056:42;44072:4;44086;44093;44056:15;:42::i;:::-;44130:14;44140:4;44130:14;;:::i;:::-;;;43191:965;44168:33;44184:4;44190:2;44194:6;44168:15;:33::i;:::-;39482:4727;;;;39369:4840;;;:::o;2641:191::-;2734:6;;;-1:-1:-1;;;;;2751:17:0;;;-1:-1:-1;;;;;;2751:17:0;;;;;;;2784:40;;2734:6;;;2751:17;2734:6;;2784:40;;2715:16;;2784:40;2704:128;2641:191;:::o;38544:188::-;-1:-1:-1;;;;;38627:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38627:39:0;;;;;;;;;;38684:40;;38627:39;;:31;38684:40;;;38544:188;;:::o;13845:733::-;-1:-1:-1;;;;;13985:20:0;;13977:70;;;;-1:-1:-1;;;13977:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14066:23:0;;14058:71;;;;-1:-1:-1;;;14058:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14226:17:0;;14202:21;14226:17;;;;;;;;;;;14262:23;;;;14254:74;;;;-1:-1:-1;;;14254:74:0;;15629:2:1;14254:74:0;;;15611:21:1;15668:2;15648:18;;;15641:30;15707:34;15687:18;;;15680:62;-1:-1:-1;;;15758:18:1;;;15751:36;15804:19;;14254:74:0;15427:402:1;14254:74:0;-1:-1:-1;;;;;14364:17:0;;;:9;:17;;;;;;;;;;;14384:22;;;14364:42;;14428:20;;;;;;;;:30;;14400:6;;14364:9;14428:30;;14400:6;;14428:30;:::i;:::-;;;;;;;;14493:9;-1:-1:-1;;;;;14476:35:0;14485:6;-1:-1:-1;;;;;14476:35:0;;14504:6;14476:35;;;;1662:25:1;;1650:2;1635:18;;1516:177;14476:35:0;;;;;;;;14524:46;37219:399;45335:1726;45418:4;45374:23;9897:18;;;;;;;;;;;45374:50;;45435:25;45530:12;;45497:17;;45463:18;;:51;;;;:::i;:::-;:79;;;;:::i;:::-;45435:107;-1:-1:-1;45553:12:0;45582:20;;;:46;;-1:-1:-1;45606:22:0;;45582:46;45578:85;;;45645:7;;;45335:1726::o;45578:85::-;45697:18;;:23;;45718:2;45697:23;:::i;:::-;45679:15;:41;45675:115;;;45755:18;;:23;;45776:2;45755:23;:::i;:::-;45737:41;;45675:115;45851:23;45964:1;45931:17;45896:18;;45878:15;:36;;;;:::i;:::-;45877:71;;;;:::i;:::-;:88;;;;:::i;:::-;45851:114;-1:-1:-1;45976:26:0;46005:36;:15;45851:114;46005:19;:36::i;:::-;45976:65;-1:-1:-1;46082:21:0;46116:36;45976:65;46116:16;:36::i;:::-;46165:18;46186:44;:21;46212:17;46186:25;:44::i;:::-;46165:65;;46243:22;46268:80;46320:17;46268:33;46283:17;;46268:10;:14;;:33;;;;:::i;:80::-;46243:105;;46359:17;46379:51;46412:17;46379:28;46394:12;;46379:10;:14;;:28;;;;:::i;:51::-;46359:71;-1:-1:-1;46443:23:0;46359:71;46469:27;46482:14;46469:10;:27;:::i;:::-;:39;;;;:::i;:::-;46542:1;46521:18;:22;;;46554:17;:21;;;46586:12;:16;;;46637:9;;46629:45;;46443:65;;-1:-1:-1;;;;;;46637:9:0;;46660;;46629:45;46542:1;46629:45;46660:9;46637;46629:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46615:59:0;;-1:-1:-1;;46691:19:0;;;;;:42;;;46732:1;46714:15;:19;46691:42;46687:278;;;46750:46;46763:15;46780;46750:12;:46::i;:::-;46920:18;;46816:137;;;16246:25:1;;;16302:2;16287:18;;16280:34;;;16330:18;;;16323:34;;;;46816:137:0;;;;;;16234:2:1;46816:137:0;;;46687:278;46999:14;;46991:62;;-1:-1:-1;;;;;46999:14:0;;;;47027:21;;46991:62;;;;47027:21;46999:14;46991:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;45335:1726:0:o;21758:98::-;21816:7;21843:5;21847:1;21843;:5;:::i;:::-;21836:12;21758:98;-1:-1:-1;;;21758:98:0:o;22157:::-;22215:7;22242:5;22246:1;22242;:5;:::i;21401:98::-;21459:7;21486:5;21490:1;21486;:5;:::i;44217:589::-;44367:16;;;44381:1;44367:16;;;;;;;;44343:21;;44367:16;;;;;;;;;;-1:-1:-1;44367:16:0;44343:40;;44412:4;44394;44399:1;44394:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44394:23:0;;;-1:-1:-1;;;;;44394:23:0;;;;;44438:15;-1:-1:-1;;;;;44438:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44428:4;44433:1;44428:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44428:32:0;;;-1:-1:-1;;;;;44428:32:0;;;;;44473:62;44490:4;44505:15;44523:11;44473:8;:62::i;:::-;44574:224;;-1:-1:-1;;;44574:224:0;;-1:-1:-1;;;;;44574:15:0;:66;;;;:224;;44655:11;;44681:1;;44725:4;;44752;;44772:15;;44574:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44272:534;44217:589;:::o;44814:513::-;44962:62;44979:4;44994:15;45012:11;44962:8;:62::i;:::-;45067:15;-1:-1:-1;;;;;45067:31:0;;45106:9;45139:4;45159:11;45185:1;45228;45271:7;1444:6;;-1:-1:-1;;;;;1444:6:0;;1371:87;45271:7;45067:252;;;;;;-1:-1:-1;;;;;;45067:252:0;;;-1:-1:-1;;;;;18232:15:1;;;45067:252:0;;;18214:34:1;18264:18;;;18257:34;;;;18307:18;;;18300:34;;;;18350:18;;;18343:34;18414:15;;;18393:19;;;18386:44;45293:15:0;18446:19:1;;;18439:35;18148:19;;45067:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44814:513;;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:388::-;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;-1:-1:-1;3286:2:1;3271:18;;3258:32;3299:33;3258:32;3299:33;:::i;:::-;3351:7;3341:17;;;2976:388;;;;;:::o;3369:118::-;3455:5;3448:13;3441:21;3434:5;3431:32;3421:60;;3477:1;3474;3467:12;3492:382;3557:6;3565;3618:2;3606:9;3597:7;3593:23;3589:32;3586:52;;;3634:1;3631;3624:12;3586:52;3673:9;3660:23;3692:31;3717:5;3692:31;:::i;:::-;3742:5;-1:-1:-1;3799:2:1;3784:18;;3771:32;3812:30;3771:32;3812:30;:::i;3879:316::-;3956:6;3964;3972;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;-1:-1:-1;;4064:23:1;;;4134:2;4119:18;;4106:32;;-1:-1:-1;4185:2:1;4170:18;;;4157:32;;3879:316;-1:-1:-1;3879:316:1:o;4200:241::-;4256:6;4309:2;4297:9;4288:7;4284:23;4280:32;4277:52;;;4325:1;4322;4315:12;4277:52;4364:9;4351:23;4383:28;4405:5;4383:28;:::i;4446:380::-;4525:1;4521:12;;;;4568;;;4589:61;;4643:4;4635:6;4631:17;4621:27;;4589:61;4696:2;4688:6;4685:14;4665:18;4662:38;4659:161;;;4742:10;4737:3;4733:20;4730:1;4723:31;4777:4;4774:1;4767:15;4805:4;4802:1;4795:15;4659:161;;4446:380;;;:::o;4831:356::-;5033:2;5015:21;;;5052:18;;;5045:30;5111:34;5106:2;5091:18;;5084:62;5178:2;5163:18;;4831:356::o;5192:127::-;5253:10;5248:3;5244:20;5241:1;5234:31;5284:4;5281:1;5274:15;5308:4;5305:1;5298:15;5324:168;5364:7;5430:1;5426;5422:6;5418:14;5415:1;5412:21;5407:1;5400:9;5393:17;5389:45;5386:71;;;5437:18;;:::i;:::-;-1:-1:-1;5477:9:1;;5324:168::o;5497:217::-;5537:1;5563;5553:132;;5607:10;5602:3;5598:20;5595:1;5588:31;5642:4;5639:1;5632:15;5670:4;5667:1;5660:15;5553:132;-1:-1:-1;5699:9:1;;5497:217::o;6544:128::-;6584:3;6615:1;6611:6;6608:1;6605:13;6602:39;;;6621:18;;:::i;:::-;-1:-1:-1;6657:9:1;;6544:128::o;7389:184::-;7459:6;7512:2;7500:9;7491:7;7487:23;7483:32;7480:52;;;7528:1;7525;7518:12;7480:52;-1:-1:-1;7551:16:1;;7389:184;-1:-1:-1;7389:184:1:o;7857:245::-;7924:6;7977:2;7965:9;7956:7;7952:23;7948:32;7945:52;;;7993:1;7990;7983:12;7945:52;8025:9;8019:16;8044:28;8066:5;8044:28;:::i;11760:401::-;11962:2;11944:21;;;12001:2;11981:18;;;11974:30;12040:34;12035:2;12020:18;;12013:62;-1:-1:-1;;;12106:2:1;12091:18;;12084:35;12151:3;12136:19;;11760:401::o;12166:399::-;12368:2;12350:21;;;12407:2;12387:18;;;12380:30;12446:34;12441:2;12426:18;;12419:62;-1:-1:-1;;;12512:2:1;12497:18;;12490:33;12555:3;12540:19;;12166:399::o;15297:125::-;15337:4;15365:1;15362;15359:8;15356:34;;;15370:18;;:::i;:::-;-1:-1:-1;15407:9:1;;15297:125::o;16500:127::-;16561:10;16556:3;16552:20;16549:1;16542:31;16592:4;16589:1;16582:15;16616:4;16613:1;16606:15;16632:251;16702:6;16755:2;16743:9;16734:7;16730:23;16726:32;16723:52;;;16771:1;16768;16761:12;16723:52;16803:9;16797:16;16822:31;16847:5;16822:31;:::i;16888:980::-;17150:4;17198:3;17187:9;17183:19;17229:6;17218:9;17211:25;17255:2;17293:6;17288:2;17277:9;17273:18;17266:34;17336:3;17331:2;17320:9;17316:18;17309:31;17360:6;17395;17389:13;17426:6;17418;17411:22;17464:3;17453:9;17449:19;17442:26;;17503:2;17495:6;17491:15;17477:29;;17524:1;17534:195;17548:6;17545:1;17542:13;17534:195;;;17613:13;;-1:-1:-1;;;;;17609:39:1;17597:52;;17704:15;;;;17669:12;;;;17645:1;17563:9;17534:195;;;-1:-1:-1;;;;;;;17785:32:1;;;;17780:2;17765:18;;17758:60;-1:-1:-1;;;17849:3:1;17834:19;17827:35;17746:3;16888:980;-1:-1:-1;;;16888:980:1:o;18485:306::-;18573:6;18581;18589;18642:2;18630:9;18621:7;18617:23;18613:32;18610:52;;;18658:1;18655;18648:12;18610:52;18687:9;18681:16;18671:26;;18737:2;18726:9;18722:18;18716:25;18706:35;;18781:2;18770:9;18766:18;18760:25;18750:35;;18485:306;;;;;:::o

Swarm Source

ipfs://3190f97efdd138eb469018b5d23481c4e58b755df1d6a246b310537a48760148
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.