ETH Price: $2,841.20 (-9.82%)
 

Overview

Max Total Supply

1,000,000,000 🍆

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,210,553.177450918969028801 🍆

Value
$0.00
0x60dE1a65970964661D401dE09f495A5F7464B427
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:
TheCreatorSchlong

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-30
*/

/**

The Creator's Schlong
[VDICK]

**/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract TheCreatorSchlong 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 marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    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
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exlcude 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 marketingWalletUpdated(
        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("The Creators Schlong", unicode"🍆") {
        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 _buyMarketingFee = 6;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 6;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 15_000_000 * 1e18; 
        maxWallet = 30_000_000 * 1e18;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x6BEe003002ab55BC3c935A3F6Ae60556C1e5061d); // set as marketing wallet
        devWallet = address(0x6BEe003002ab55BC3c935A3F6Ae60556C1e5061d); // 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;
        lastLpBurnTime = block.timestamp;
    }

    // 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() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        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 updateIngoingFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateOutgoingFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% 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 updateDickWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

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

    event BoughtEarly(address indexed sniper);

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

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

        if (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] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block 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;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        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;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / 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
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

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

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

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":"sniper","type":"address"}],"name":"BoughtEarly","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":"marketingWalletUpdated","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":[],"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":"buyMarketingFee","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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"sellMarketingFee","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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","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":"tokensForMarketing","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":[],"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":"address","name":"newMarketingWallet","type":"address"}],"name":"updateDickWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateIngoingFees","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":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateOutgoingFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateSchlongWallet","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"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b55600c8054600160ff199182168117909255610e10600d55610708600f556011805462ffffff1916831790556013805490911690911790553480156200004d57600080fd5b50604080518082018252601481527f5468652043726561746f7273205363686c6f6e67000000000000000000000000602080830191825283518085019094526004845263784fc6c360e11b908401528151919291620000af91600391620006a9565b508051620000c5906004906020840190620006a9565b505050620000e2620000dc620003f760201b60201c565b620003fb565b737a250d5630b4cf539739df2c5dacb4c659f2488d620001048160016200044d565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200014f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017591906200074f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e991906200074f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000237573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025d91906200074f565b6001600160a01b031660a0819052620002789060016200044d565b60a05162000288906001620004c6565b6a0c685fa11e01ec6f0000006008556a18d0bf423c03d8de000000600a556006600260008282826b033b2e3c9fd0803ce8000000612710620002cc82600562000797565b620002d89190620007b9565b60095560158790556016869055601785905584620002f78789620007dc565b620003039190620007dc565b6014556019849055601a839055601b82905581620003228486620007dc565b6200032e9190620007dc565b60185560068054736bee003002ab55bc3c935a3f6ae60556c1e5061d6001600160a01b03199182168117909255600780549091169091179055620003866200037e6005546001600160a01b031690565b60016200051a565b620003933060016200051a565b620003a261dead60016200051a565b620003c1620003b96005546001600160a01b031690565b60016200044d565b620003ce3060016200044d565b620003dd61dead60016200044d565b620003e93382620005c4565b505050505050505062000834565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200049c5760405162461bcd60e51b8152602060048201819052602482015260008051602062004b3183398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005655760405162461bcd60e51b8152602060048201819052602482015260008051602062004b31833981519152604482015260640162000493565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200061c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000493565b8060026000828254620006309190620007dc565b90915550506001600160a01b038216600090815260208190526040812080548392906200065f908490620007dc565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006b790620007f7565b90600052602060002090601f016020900481019282620006db576000855562000726565b82601f10620006f657805160ff191683800117855562000726565b8280016001018555821562000726579182015b828111156200072657825182559160200191906001019062000709565b506200073492915062000738565b5090565b5b8082111562000734576000815560010162000739565b6000602082840312156200076257600080fd5b81516001600160a01b03811681146200077a57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007b457620007b462000781565b500290565b600082620007d757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007f257620007f262000781565b500190565b600181811c908216806200080c57607f821691505b602082108114156200082e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051614275620008bc6000396000818161060d015281816116e5015281816122e901528181612384015281816123b00152818161298a01528181613909015281816139ab01526139d701526000818161047b0152818161293201528181613b0801528181613be801528181613c4a01528181613cc40152613d3a01526142756000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610b24578063f637434214610b44578063f8b45b0514610b5a578063fe72b27a14610b7057600080fd5b8063e2f4560514610ac3578063e76c7c3614610ad9578063e884f26014610af9578063f11a24d314610b0e57600080fd5b8063c8c8ebe4116100dc578063c8c8ebe414610a24578063d257b34f14610a3a578063d85ba06314610a5a578063dd62ed3e14610a7057600080fd5b8063bbc0c742146109ab578063c0246668146109ca578063c18bc195146109ea578063c876d0b914610a0a57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610925578063a9059cbb1461093b578063b62496f51461095b578063b73c82a51461098b57600080fd5b80639ec22c0e146108c35780639fccce32146108d9578063a0d82dc5146108ef578063a457c2d71461090557600080fd5b8063924de9b7116101c1578063924de9b71461085857806395d89b41146108785780639a7a23d61461088d5780639c3b4fdc146108ad57600080fd5b80638da5cb5b146107ea5780638ea5220f14610815578063921369131461084257600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146107725780637bce5a041461079f57806386252b64146107b55780638a8c523c146107d557600080fd5b8063715018a614610708578063730c18881461071d578063751039fc1461073d5780637571336a1461075257600080fd5b80634fbee193116102a65780634fbee193146106495780636a486a8e1461068f5780636ddd1713146106a557806370a08231146106c557600080fd5b8063313ce567146105bf57806339509351146105db57806349bd5a5e146105fb5780634a62bb651461062f57600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461055957806327c8f835146105795780632c3e486c1461058f5780632e82f1a0146105a557600080fd5b8063199ffc72146104f75780631a8145bb1461050d5780631f3fed8f14610523578063203e727e1461053957600080fd5b806310d5de531161038b57806310d5de531461043a5780631694505e1461046957806318160ddd146104c2578063184c16c5146104e157600080fd5b80630234d11b146103bd57806306fdde03146103df578063095ea7b31461040a57600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103dd6103d8366004613de7565b610b90565b005b3480156103eb57600080fd5b506103f4610ca5565b6040516104019190613e04565b60405180910390f35b34801561041657600080fd5b5061042a610425366004613e77565b610d37565b6040519015158152602001610401565b34801561044657600080fd5b5061042a610455366004613de7565b602080526000908152604090205460ff1681565b34801561047557600080fd5b5061049d7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610401565b3480156104ce57600080fd5b506002545b604051908152602001610401565b3480156104ed57600080fd5b506104d3600f5481565b34801561050357600080fd5b506104d3600b5481565b34801561051957600080fd5b506104d3601d5481565b34801561052f57600080fd5b506104d3601c5481565b34801561054557600080fd5b506103dd610554366004613ea3565b610d4d565b34801561056557600080fd5b5061042a610574366004613ebc565b610ea9565b34801561058557600080fd5b5061049d61dead81565b34801561059b57600080fd5b506104d3600d5481565b3480156105b157600080fd5b50600c5461042a9060ff1681565b3480156105cb57600080fd5b5060405160128152602001610401565b3480156105e757600080fd5b5061042a6105f6366004613e77565b610f8f565b34801561060757600080fd5b5061049d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561063b57600080fd5b5060115461042a9060ff1681565b34801561065557600080fd5b5061042a610664366004613de7565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f602052604090205460ff1690565b34801561069b57600080fd5b506104d360185481565b3480156106b157600080fd5b5060115461042a9062010000900460ff1681565b3480156106d157600080fd5b506104d36106e0366004613de7565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561071457600080fd5b506103dd610fd8565b34801561072957600080fd5b506103dd610738366004613f0d565b611065565b34801561074957600080fd5b5061042a61124e565b34801561075e57600080fd5b506103dd61076d366004613f42565b611300565b34801561077e57600080fd5b5060065461049d9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107ab57600080fd5b506104d360155481565b3480156107c157600080fd5b506103dd6107d0366004613de7565b6113d6565b3480156107e157600080fd5b506103dd6114e6565b3480156107f657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661049d565b34801561082157600080fd5b5060075461049d9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561084e57600080fd5b506104d360195481565b34801561086457600080fd5b506103dd610873366004613f77565b61159a565b34801561088457600080fd5b506103f4611653565b34801561089957600080fd5b506103dd6108a8366004613f42565b611662565b3480156108b957600080fd5b506104d360175481565b3480156108cf57600080fd5b506104d360105481565b3480156108e557600080fd5b506104d3601e5481565b3480156108fb57600080fd5b506104d3601b5481565b34801561091157600080fd5b5061042a610920366004613e77565b6117cd565b34801561093157600080fd5b506104d3600e5481565b34801561094757600080fd5b5061042a610956366004613e77565b6118a5565b34801561096757600080fd5b5061042a610976366004613de7565b60216020526000908152604090205460ff1681565b34801561099757600080fd5b506103dd6109a6366004613f92565b6118b2565b3480156109b757600080fd5b5060115461042a90610100900460ff1681565b3480156109d657600080fd5b506103dd6109e5366004613f42565b6119cb565b3480156109f657600080fd5b506103dd610a05366004613ea3565b611ad6565b348015610a1657600080fd5b5060135461042a9060ff1681565b348015610a3057600080fd5b506104d360085481565b348015610a4657600080fd5b5061042a610a55366004613ea3565b611c31565b348015610a6657600080fd5b506104d360145481565b348015610a7c57600080fd5b506104d3610a8b366004613fbe565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610acf57600080fd5b506104d360095481565b348015610ae557600080fd5b506103dd610af4366004613f92565b611e24565b348015610b0557600080fd5b5061042a611f38565b348015610b1a57600080fd5b506104d360165481565b348015610b3057600080fd5b506103dd610b3f366004613de7565b611fea565b348015610b5057600080fd5b506104d3601a5481565b348015610b6657600080fd5b506104d3600a5481565b348015610b7c57600080fd5b5061042a610b8b366004613ea3565b61211a565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b606060038054610cb490613ff7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce090613ff7565b8015610d2d5780601f10610d0257610100808354040283529160200191610d2d565b820191906000526020600020905b815481529060010190602001808311610d1057829003601f168201915b5050505050905090565b6000610d44338484612465565b50600192915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610dce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b670de0b6b3a76400006103e8610de360025490565b610dee90600161407a565b610df891906140b7565b610e0291906140b7565b811015610e91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610c0d565b610ea381670de0b6b3a764000061407a565b60085550565b6000610eb6848484612618565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610f77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610c0d565b610f848533858403612465565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d44918590610fd39086906140f2565b612465565b60055473ffffffffffffffffffffffffffffffffffffffff163314611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b61106360006132ab565b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b610258831015611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610c0d565b6103e88211158015611188575060015b611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610c0d565b600d92909255600b55600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146112d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b50601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152602080526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b60065460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600e55565b60055473ffffffffffffffffffffffffffffffffffffffff16331461161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b6011805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610cb490613ff7565b60055473ffffffffffffffffffffffffffffffffffffffff1633146116e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c0d565b6117c98282613322565b5050565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610c0d565b61189b3385858403612465565b5060019392505050565b6000610d44338484612618565b60055473ffffffffffffffffffffffffffffffffffffffff163314611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b6015839055601682905560178190558061194d83856140f2565b61195791906140f2565b6014819055600a10156119c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c0d565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601f602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b670de0b6b3a76400006103e8611b6c60025490565b611b7790600561407a565b611b8191906140b7565b611b8b91906140b7565b811015611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610c0d565b611c2b81670de0b6b3a764000061407a565b600a5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611cb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b620186a0611cc260025490565b611ccd90600161407a565b611cd791906140b7565b821015611d66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610c0d565b6103e8611d7260025490565b611d7d90600561407a565b611d8791906140b7565b821115611e16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610c0d565b50600981905560015b919050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611ea5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b6019839055601a829055601b81905580611ebf83856140f2565b611ec991906140f2565b6018819055600a10156119c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c0d565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611fbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff16331461206b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b73ffffffffffffffffffffffffffffffffffffffff811661210e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c0d565b612117816132ab565b50565b60055460009073ffffffffffffffffffffffffffffffffffffffff16331461219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b600f546010546121ae91906140f2565b4211612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c0d565b6103e88211156122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610c0d565b426010556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015612339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235d919061410a565b9050600061237761271061237184876133a1565b906133b4565b905080156123ac576123ac7f000000000000000000000000000000000000000000000000000000000000000061dead836133c0565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561241957600080fd5b505af115801561242d573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8316612507576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff82166125aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166126bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff821661275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c0d565b8061276f576119c6838360006133c0565b60115460ff1615612dfe5760055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906127c0575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156127e1575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612805575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b801561282c575060055474010000000000000000000000000000000000000000900460ff16155b15612dfe57601154610100900460ff166128ff5773ffffffffffffffffffffffffffffffffffffffff83166000908152601f602052604090205460ff1680612899575073ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604090205460ff165b6128ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610c0d565b60135460ff1615612ab55760055473ffffffffffffffffffffffffffffffffffffffff83811691161480159061298157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129d957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612ab557326000908152601260205260409020544311612aa2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610c0d565b3260009081526012602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526021602052604090205460ff168015612b0f575073ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff16155b15612c4657600854811115612ba6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610c0d565b600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612bd990836140f2565b1115612c41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610c0d565b612dfe565b73ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff168015612ca0575073ffffffffffffffffffffffffffffffffffffffff8316600090815260208052604090205460ff16155b15612d3757600854811115612c41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff16612dfe57600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612d9690836140f2565b1115612dfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610c0d565b3060009081526020819052604090205460095481108015908190612e2a575060115462010000900460ff165b8015612e51575060055474010000000000000000000000000000000000000000900460ff16155b8015612e83575073ffffffffffffffffffffffffffffffffffffffff851660009081526021602052604090205460ff16155b8015612eb5575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b8015612ee7575073ffffffffffffffffffffffffffffffffffffffff84166000908152601f602052604090205460ff16155b15612f5c57600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055612f33613674565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055474010000000000000000000000000000000000000000900460ff16158015612fac575073ffffffffffffffffffffffffffffffffffffffff841660009081526021602052604090205460ff165b8015612fba5750600c5460ff165b8015612fd55750600d54600e54612fd191906140f2565b4210155b8015613007575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b15613016576130146138c8565b505b60055473ffffffffffffffffffffffffffffffffffffffff86166000908152601f602052604090205460ff7401000000000000000000000000000000000000000090920482161591168061308f575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff165b15613098575060005b600081156132975773ffffffffffffffffffffffffffffffffffffffff861660009081526021602052604090205460ff1680156130d757506000601854115b1561318f576130f66064612371601854886133a190919063ffffffff16565b9050601854601a5482613109919061407a565b61311391906140b7565b601d600082825461312491906140f2565b9091555050601854601b54613139908361407a565b61314391906140b7565b601e600082825461315491906140f2565b9091555050601854601954613169908361407a565b61317391906140b7565b601c600082825461318491906140f2565b909155506132799050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526021602052604090205460ff1680156131c657506000601454115b15613279576131e56064612371601454886133a190919063ffffffff16565b9050601454601654826131f8919061407a565b61320291906140b7565b601d600082825461321391906140f2565b9091555050601454601754613228908361407a565b61323291906140b7565b601e600082825461324391906140f2565b9091555050601454601554613258908361407a565b61326291906140b7565b601c600082825461327391906140f2565b90915550505b801561328a5761328a8730836133c0565b6132948186614123565b94505b6132a28787876133c0565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526021602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006133ad828461407a565b9392505050565b60006133ad82846140b7565b73ffffffffffffffffffffffffffffffffffffffff8316613463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff8216613506576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156135bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906136009084906140f2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161366691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d5461369b91906140f2565b6136a591906140f2565b905060008215806136b4575081155b156136be57505050565b6009546136cc90601461407a565b8311156136e4576009546136e190601461407a565b92505b6000600283601d54866136f7919061407a565b61370191906140b7565b61370b91906140b7565b905060006137198583613a8b565b90504761372582613a97565b60006137314783613a8b565b9050600061374e87612371601c54856133a190919063ffffffff16565b9050600061376b88612371601e54866133a190919063ffffffff16565b905060008161377a8486614123565b6137849190614123565b6000601d819055601c819055601e81905560075460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d80600081146137ee576040519150601f19603f3d011682016040523d82523d6000602084013e6137f3565b606091505b509098505086158015906138075750600081115b1561385a576138168782613cbe565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60065460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d80600081146138b4576040519150601f19603f3d011682016040523d82523d6000602084013e6138b9565b606091505b50505050505050505050505050565b42600e556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa15801561395b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061397f919061410a565b9050600061399e612710612371600b54856133a190919063ffffffff16565b905080156139d3576139d37f000000000000000000000000000000000000000000000000000000000000000061dead836133c0565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613a4057600080fd5b505af1158015613a54573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006133ad8284614123565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613acc57613acc61413a565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b959190614169565b81600181518110613ba857613ba861413a565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c0d307f000000000000000000000000000000000000000000000000000000000000000084612465565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790613c88908590600090869030904290600401614186565b600060405180830381600087803b158015613ca257600080fd5b505af1158015613cb6573d6000803e3d6000fd5b505050505050565b613ce9307f000000000000000000000000000000000000000000000000000000000000000084612465565b6040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063f305d71990839060c40160606040518083038185885af1158015613d99573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613dbe9190614211565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461211757600080fd5b600060208284031215613df957600080fd5b81356133ad81613dc5565b600060208083528351808285015260005b81811015613e3157858101830151858201604001528201613e15565b81811115613e43576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008060408385031215613e8a57600080fd5b8235613e9581613dc5565b946020939093013593505050565b600060208284031215613eb557600080fd5b5035919050565b600080600060608486031215613ed157600080fd5b8335613edc81613dc5565b92506020840135613eec81613dc5565b929592945050506040919091013590565b80358015158114611e1f57600080fd5b600080600060608486031215613f2257600080fd5b8335925060208401359150613f3960408501613efd565b90509250925092565b60008060408385031215613f5557600080fd5b8235613f6081613dc5565b9150613f6e60208401613efd565b90509250929050565b600060208284031215613f8957600080fd5b6133ad82613efd565b600080600060608486031215613fa757600080fd5b505081359360208301359350604090920135919050565b60008060408385031215613fd157600080fd5b8235613fdc81613dc5565b91506020830135613fec81613dc5565b809150509250929050565b600181811c9082168061400b57607f821691505b60208210811415614045577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140b2576140b261404b565b500290565b6000826140ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600082198211156141055761410561404b565b500190565b60006020828403121561411c57600080fd5b5051919050565b6000828210156141355761413561404b565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561417b57600080fd5b81516133ad81613dc5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156141e357845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016141b1565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561422657600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220c727ea939c5ee55d25c7b499c67b627b8b66a6477a12d9b06c88d6b9842923af64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610b24578063f637434214610b44578063f8b45b0514610b5a578063fe72b27a14610b7057600080fd5b8063e2f4560514610ac3578063e76c7c3614610ad9578063e884f26014610af9578063f11a24d314610b0e57600080fd5b8063c8c8ebe4116100dc578063c8c8ebe414610a24578063d257b34f14610a3a578063d85ba06314610a5a578063dd62ed3e14610a7057600080fd5b8063bbc0c742146109ab578063c0246668146109ca578063c18bc195146109ea578063c876d0b914610a0a57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610925578063a9059cbb1461093b578063b62496f51461095b578063b73c82a51461098b57600080fd5b80639ec22c0e146108c35780639fccce32146108d9578063a0d82dc5146108ef578063a457c2d71461090557600080fd5b8063924de9b7116101c1578063924de9b71461085857806395d89b41146108785780639a7a23d61461088d5780639c3b4fdc146108ad57600080fd5b80638da5cb5b146107ea5780638ea5220f14610815578063921369131461084257600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146107725780637bce5a041461079f57806386252b64146107b55780638a8c523c146107d557600080fd5b8063715018a614610708578063730c18881461071d578063751039fc1461073d5780637571336a1461075257600080fd5b80634fbee193116102a65780634fbee193146106495780636a486a8e1461068f5780636ddd1713146106a557806370a08231146106c557600080fd5b8063313ce567146105bf57806339509351146105db57806349bd5a5e146105fb5780634a62bb651461062f57600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461055957806327c8f835146105795780632c3e486c1461058f5780632e82f1a0146105a557600080fd5b8063199ffc72146104f75780631a8145bb1461050d5780631f3fed8f14610523578063203e727e1461053957600080fd5b806310d5de531161038b57806310d5de531461043a5780631694505e1461046957806318160ddd146104c2578063184c16c5146104e157600080fd5b80630234d11b146103bd57806306fdde03146103df578063095ea7b31461040a57600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103dd6103d8366004613de7565b610b90565b005b3480156103eb57600080fd5b506103f4610ca5565b6040516104019190613e04565b60405180910390f35b34801561041657600080fd5b5061042a610425366004613e77565b610d37565b6040519015158152602001610401565b34801561044657600080fd5b5061042a610455366004613de7565b602080526000908152604090205460ff1681565b34801561047557600080fd5b5061049d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610401565b3480156104ce57600080fd5b506002545b604051908152602001610401565b3480156104ed57600080fd5b506104d3600f5481565b34801561050357600080fd5b506104d3600b5481565b34801561051957600080fd5b506104d3601d5481565b34801561052f57600080fd5b506104d3601c5481565b34801561054557600080fd5b506103dd610554366004613ea3565b610d4d565b34801561056557600080fd5b5061042a610574366004613ebc565b610ea9565b34801561058557600080fd5b5061049d61dead81565b34801561059b57600080fd5b506104d3600d5481565b3480156105b157600080fd5b50600c5461042a9060ff1681565b3480156105cb57600080fd5b5060405160128152602001610401565b3480156105e757600080fd5b5061042a6105f6366004613e77565b610f8f565b34801561060757600080fd5b5061049d7f00000000000000000000000027af989edd89b560057e25413a38d254e084983881565b34801561063b57600080fd5b5060115461042a9060ff1681565b34801561065557600080fd5b5061042a610664366004613de7565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f602052604090205460ff1690565b34801561069b57600080fd5b506104d360185481565b3480156106b157600080fd5b5060115461042a9062010000900460ff1681565b3480156106d157600080fd5b506104d36106e0366004613de7565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561071457600080fd5b506103dd610fd8565b34801561072957600080fd5b506103dd610738366004613f0d565b611065565b34801561074957600080fd5b5061042a61124e565b34801561075e57600080fd5b506103dd61076d366004613f42565b611300565b34801561077e57600080fd5b5060065461049d9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107ab57600080fd5b506104d360155481565b3480156107c157600080fd5b506103dd6107d0366004613de7565b6113d6565b3480156107e157600080fd5b506103dd6114e6565b3480156107f657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661049d565b34801561082157600080fd5b5060075461049d9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561084e57600080fd5b506104d360195481565b34801561086457600080fd5b506103dd610873366004613f77565b61159a565b34801561088457600080fd5b506103f4611653565b34801561089957600080fd5b506103dd6108a8366004613f42565b611662565b3480156108b957600080fd5b506104d360175481565b3480156108cf57600080fd5b506104d360105481565b3480156108e557600080fd5b506104d3601e5481565b3480156108fb57600080fd5b506104d3601b5481565b34801561091157600080fd5b5061042a610920366004613e77565b6117cd565b34801561093157600080fd5b506104d3600e5481565b34801561094757600080fd5b5061042a610956366004613e77565b6118a5565b34801561096757600080fd5b5061042a610976366004613de7565b60216020526000908152604090205460ff1681565b34801561099757600080fd5b506103dd6109a6366004613f92565b6118b2565b3480156109b757600080fd5b5060115461042a90610100900460ff1681565b3480156109d657600080fd5b506103dd6109e5366004613f42565b6119cb565b3480156109f657600080fd5b506103dd610a05366004613ea3565b611ad6565b348015610a1657600080fd5b5060135461042a9060ff1681565b348015610a3057600080fd5b506104d360085481565b348015610a4657600080fd5b5061042a610a55366004613ea3565b611c31565b348015610a6657600080fd5b506104d360145481565b348015610a7c57600080fd5b506104d3610a8b366004613fbe565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610acf57600080fd5b506104d360095481565b348015610ae557600080fd5b506103dd610af4366004613f92565b611e24565b348015610b0557600080fd5b5061042a611f38565b348015610b1a57600080fd5b506104d360165481565b348015610b3057600080fd5b506103dd610b3f366004613de7565b611fea565b348015610b5057600080fd5b506104d3601a5481565b348015610b6657600080fd5b506104d3600a5481565b348015610b7c57600080fd5b5061042a610b8b366004613ea3565b61211a565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b606060038054610cb490613ff7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce090613ff7565b8015610d2d5780601f10610d0257610100808354040283529160200191610d2d565b820191906000526020600020905b815481529060010190602001808311610d1057829003601f168201915b5050505050905090565b6000610d44338484612465565b50600192915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610dce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b670de0b6b3a76400006103e8610de360025490565b610dee90600161407a565b610df891906140b7565b610e0291906140b7565b811015610e91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610c0d565b610ea381670de0b6b3a764000061407a565b60085550565b6000610eb6848484612618565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610f77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610c0d565b610f848533858403612465565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d44918590610fd39086906140f2565b612465565b60055473ffffffffffffffffffffffffffffffffffffffff163314611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b61106360006132ab565b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b610258831015611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610c0d565b6103e88211158015611188575060015b611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610c0d565b600d92909255600b55600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146112d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b50601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152602080526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b60065460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600e55565b60055473ffffffffffffffffffffffffffffffffffffffff16331461161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b6011805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610cb490613ff7565b60055473ffffffffffffffffffffffffffffffffffffffff1633146116e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b7f00000000000000000000000027af989edd89b560057e25413a38d254e084983873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c0d565b6117c98282613322565b5050565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610c0d565b61189b3385858403612465565b5060019392505050565b6000610d44338484612618565b60055473ffffffffffffffffffffffffffffffffffffffff163314611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b6015839055601682905560178190558061194d83856140f2565b61195791906140f2565b6014819055600a10156119c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c0d565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601f602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b670de0b6b3a76400006103e8611b6c60025490565b611b7790600561407a565b611b8191906140b7565b611b8b91906140b7565b811015611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610c0d565b611c2b81670de0b6b3a764000061407a565b600a5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611cb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b620186a0611cc260025490565b611ccd90600161407a565b611cd791906140b7565b821015611d66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610c0d565b6103e8611d7260025490565b611d7d90600561407a565b611d8791906140b7565b821115611e16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610c0d565b50600981905560015b919050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611ea5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b6019839055601a829055601b81905580611ebf83856140f2565b611ec991906140f2565b6018819055600a10156119c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c0d565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611fbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff16331461206b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b73ffffffffffffffffffffffffffffffffffffffff811661210e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c0d565b612117816132ab565b50565b60055460009073ffffffffffffffffffffffffffffffffffffffff16331461219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0d565b600f546010546121ae91906140f2565b4211612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c0d565b6103e88211156122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610c0d565b426010556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000027af989edd89b560057e25413a38d254e084983816600482015260009030906370a0823190602401602060405180830381865afa158015612339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235d919061410a565b9050600061237761271061237184876133a1565b906133b4565b905080156123ac576123ac7f00000000000000000000000027af989edd89b560057e25413a38d254e084983861dead836133c0565b60007f00000000000000000000000027af989edd89b560057e25413a38d254e084983890508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561241957600080fd5b505af115801561242d573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8316612507576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff82166125aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166126bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff821661275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c0d565b8061276f576119c6838360006133c0565b60115460ff1615612dfe5760055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906127c0575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156127e1575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612805575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b801561282c575060055474010000000000000000000000000000000000000000900460ff16155b15612dfe57601154610100900460ff166128ff5773ffffffffffffffffffffffffffffffffffffffff83166000908152601f602052604090205460ff1680612899575073ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604090205460ff165b6128ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610c0d565b60135460ff1615612ab55760055473ffffffffffffffffffffffffffffffffffffffff83811691161480159061298157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129d957507f00000000000000000000000027af989edd89b560057e25413a38d254e084983873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612ab557326000908152601260205260409020544311612aa2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610c0d565b3260009081526012602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526021602052604090205460ff168015612b0f575073ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff16155b15612c4657600854811115612ba6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610c0d565b600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612bd990836140f2565b1115612c41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610c0d565b612dfe565b73ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff168015612ca0575073ffffffffffffffffffffffffffffffffffffffff8316600090815260208052604090205460ff16155b15612d3757600854811115612c41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff16612dfe57600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612d9690836140f2565b1115612dfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610c0d565b3060009081526020819052604090205460095481108015908190612e2a575060115462010000900460ff165b8015612e51575060055474010000000000000000000000000000000000000000900460ff16155b8015612e83575073ffffffffffffffffffffffffffffffffffffffff851660009081526021602052604090205460ff16155b8015612eb5575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b8015612ee7575073ffffffffffffffffffffffffffffffffffffffff84166000908152601f602052604090205460ff16155b15612f5c57600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055612f33613674565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055474010000000000000000000000000000000000000000900460ff16158015612fac575073ffffffffffffffffffffffffffffffffffffffff841660009081526021602052604090205460ff165b8015612fba5750600c5460ff165b8015612fd55750600d54600e54612fd191906140f2565b4210155b8015613007575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b15613016576130146138c8565b505b60055473ffffffffffffffffffffffffffffffffffffffff86166000908152601f602052604090205460ff7401000000000000000000000000000000000000000090920482161591168061308f575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff165b15613098575060005b600081156132975773ffffffffffffffffffffffffffffffffffffffff861660009081526021602052604090205460ff1680156130d757506000601854115b1561318f576130f66064612371601854886133a190919063ffffffff16565b9050601854601a5482613109919061407a565b61311391906140b7565b601d600082825461312491906140f2565b9091555050601854601b54613139908361407a565b61314391906140b7565b601e600082825461315491906140f2565b9091555050601854601954613169908361407a565b61317391906140b7565b601c600082825461318491906140f2565b909155506132799050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526021602052604090205460ff1680156131c657506000601454115b15613279576131e56064612371601454886133a190919063ffffffff16565b9050601454601654826131f8919061407a565b61320291906140b7565b601d600082825461321391906140f2565b9091555050601454601754613228908361407a565b61323291906140b7565b601e600082825461324391906140f2565b9091555050601454601554613258908361407a565b61326291906140b7565b601c600082825461327391906140f2565b90915550505b801561328a5761328a8730836133c0565b6132948186614123565b94505b6132a28787876133c0565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526021602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006133ad828461407a565b9392505050565b60006133ad82846140b7565b73ffffffffffffffffffffffffffffffffffffffff8316613463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff8216613506576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156135bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610c0d565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906136009084906140f2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161366691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d5461369b91906140f2565b6136a591906140f2565b905060008215806136b4575081155b156136be57505050565b6009546136cc90601461407a565b8311156136e4576009546136e190601461407a565b92505b6000600283601d54866136f7919061407a565b61370191906140b7565b61370b91906140b7565b905060006137198583613a8b565b90504761372582613a97565b60006137314783613a8b565b9050600061374e87612371601c54856133a190919063ffffffff16565b9050600061376b88612371601e54866133a190919063ffffffff16565b905060008161377a8486614123565b6137849190614123565b6000601d819055601c819055601e81905560075460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d80600081146137ee576040519150601f19603f3d011682016040523d82523d6000602084013e6137f3565b606091505b509098505086158015906138075750600081115b1561385a576138168782613cbe565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60065460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d80600081146138b4576040519150601f19603f3d011682016040523d82523d6000602084013e6138b9565b606091505b50505050505050505050505050565b42600e556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000027af989edd89b560057e25413a38d254e0849838166004820152600090819030906370a0823190602401602060405180830381865afa15801561395b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061397f919061410a565b9050600061399e612710612371600b54856133a190919063ffffffff16565b905080156139d3576139d37f00000000000000000000000027af989edd89b560057e25413a38d254e084983861dead836133c0565b60007f00000000000000000000000027af989edd89b560057e25413a38d254e084983890508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613a4057600080fd5b505af1158015613a54573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006133ad8284614123565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613acc57613acc61413a565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b959190614169565b81600181518110613ba857613ba861413a565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c0d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612465565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790613c88908590600090869030904290600401614186565b600060405180830381600087803b158015613ca257600080fd5b505af1158015613cb6573d6000803e3d6000fd5b505050505050565b613ce9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612465565b6040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff169063f305d71990839060c40160606040518083038185885af1158015613d99573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613dbe9190614211565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461211757600080fd5b600060208284031215613df957600080fd5b81356133ad81613dc5565b600060208083528351808285015260005b81811015613e3157858101830151858201604001528201613e15565b81811115613e43576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008060408385031215613e8a57600080fd5b8235613e9581613dc5565b946020939093013593505050565b600060208284031215613eb557600080fd5b5035919050565b600080600060608486031215613ed157600080fd5b8335613edc81613dc5565b92506020840135613eec81613dc5565b929592945050506040919091013590565b80358015158114611e1f57600080fd5b600080600060608486031215613f2257600080fd5b8335925060208401359150613f3960408501613efd565b90509250925092565b60008060408385031215613f5557600080fd5b8235613f6081613dc5565b9150613f6e60208401613efd565b90509250929050565b600060208284031215613f8957600080fd5b6133ad82613efd565b600080600060608486031215613fa757600080fd5b505081359360208301359350604090920135919050565b60008060408385031215613fd157600080fd5b8235613fdc81613dc5565b91506020830135613fec81613dc5565b809150509250929050565b600181811c9082168061400b57607f821691505b60208210811415614045577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140b2576140b261404b565b500290565b6000826140ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600082198211156141055761410561404b565b500190565b60006020828403121561411c57600080fd5b5051919050565b6000828210156141355761413561404b565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561417b57600080fd5b81516133ad81613dc5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156141e357845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016141b1565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561422657600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220c727ea939c5ee55d25c7b499c67b627b8b66a6477a12d9b06c88d6b9842923af64736f6c634300080a0033

Deployed Bytecode Sourcemap

32751:19376:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41451:161;;;;;;;;;;-1:-1:-1;41451:161:0;;;;;:::i;:::-;;:::i;:::-;;9579:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11746:169;;;;;;;;;;-1:-1:-1;11746:169:0;;;;;:::i;:::-;;:::i;:::-;;;1571:14:1;;1564:22;1546:41;;1534:2;1519:18;11746:169:0;1406:187:1;34389:63:0;;;;;;;;;;-1:-1:-1;34389:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32838:51;;;;;;;;;;;;;;;;;;1801:42:1;1789:55;;;1771:74;;1759:2;1744:18;32838:51:0;1598:253:1;10699:108:0;;;;;;;;;;-1:-1:-1;10787:12:0;;10699:108;;;2002:25:1;;;1990:2;1975:18;10699:108:0;1856:177:1;33403:47:0;;;;;;;;;;;;;;;;33218:36;;;;;;;;;;;;;;;;34173:33;;;;;;;;;;;;;;;;34133;;;;;;;;;;;;;;;;38762:275;;;;;;;;;;-1:-1:-1;38762:275:0;;;;;:::i;:::-;;:::i;12397:492::-;;;;;;;;;;-1:-1:-1;12397:492:0;;;;;:::i;:::-;;:::i;32941:53::-;;;;;;;;;;;;32987:6;32941:53;;33313:45;;;;;;;;;;;;;;;;33274:32;;;;;;;;;;-1:-1:-1;33274:32:0;;;;;;;;10541:93;;;;;;;;;;-1:-1:-1;10541:93:0;;10624:2;3057:36:1;;3045:2;3030:18;10541:93:0;2915:184:1;13298:215:0;;;;;;;;;;-1:-1:-1;13298:215:0;;;;;:::i;:::-;;:::i;32896:38::-;;;;;;;;;;;;;;;33501:33;;;;;;;;;;-1:-1:-1;33501:33:0;;;;;;;;41620:126;;;;;;;;;;-1:-1:-1;41620:126:0;;;;;:::i;:::-;41710:28;;41686:4;41710:28;;;:19;:28;;;;;;;;;41620:126;33988:28;;;;;;;;;;;;;;;;33581:31;;;;;;;;;;-1:-1:-1;33581:31:0;;;;;;;;;;;10870:127;;;;;;;;;;-1:-1:-1;10870:127:0;;;;;:::i;:::-;10971:18;;10944:7;10971:18;;;;;;;;;;;;10870:127;2814:103;;;;;;;;;;;;;:::i;49709:555::-;;;;;;;;;;-1:-1:-1;49709:555:0;;;;;:::i;:::-;;:::i;37870:121::-;;;;;;;;;;;;;:::i;39309:167::-;;;;;;;;;;-1:-1:-1;39309:167:0;;;;;:::i;:::-;;:::i;33033:30::-;;;;;;;;;;-1:-1:-1;33033:30:0;;;;;;;;33881;;;;;;;;;;;;;;;;41217:226;;;;;;;;;;-1:-1:-1;41217:226:0;;;;;:::i;:::-;;:::i;37663:155::-;;;;;;;;;;;;;:::i;2163:87::-;;;;;;;;;;-1:-1:-1;2236:6:0;;;;2163:87;;33070:24;;;;;;;;;;-1:-1:-1;33070:24:0;;;;;;;;34023:31;;;;;;;;;;;;;;;;39572:100;;;;;;;;;;-1:-1:-1;39572:100:0;;;;;:::i;:::-;;:::i;9798:104::-;;;;;;;;;;;;;:::i;40709:304::-;;;;;;;;;;-1:-1:-1;40709:304:0;;;;;:::i;:::-;;:::i;33955:24::-;;;;;;;;;;;;;;;;33457:35;;;;;;;;;;;;;;;;34213:27;;;;;;;;;;;;;;;;34099:25;;;;;;;;;;;;;;;;14016:413;;;;;;;;;;-1:-1:-1;14016:413:0;;;;;:::i;:::-;;:::i;33365:29::-;;;;;;;;;;;;;;;;11210:175;;;;;;;;;;-1:-1:-1;11210:175:0;;;;;:::i;:::-;;:::i;34610:57::-;;;;;;;;;;-1:-1:-1;34610:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39680:407;;;;;;;;;;-1:-1:-1;39680:407:0;;;;;:::i;:::-;;:::i;33541:33::-;;;;;;;;;;-1:-1:-1;33541:33:0;;;;;;;;;;;40519:182;;;;;;;;;;-1:-1:-1;40519:182:0;;;;;:::i;:::-;;:::i;39045:256::-;;;;;;;;;;-1:-1:-1;39045:256:0;;;;;:::i;:::-;;:::i;33799:39::-;;;;;;;;;;-1:-1:-1;33799:39:0;;;;;;;;33103:35;;;;;;;;;;;;;;;;38257:497;;;;;;;;;;-1:-1:-1;38257:497:0;;;;;:::i;:::-;;:::i;33847:27::-;;;;;;;;;;;;;;;;11448:151;;;;;;;;;;-1:-1:-1;11448:151:0;;;;;:::i;:::-;11564:18;;;;11537:7;11564:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11448:151;33145:33;;;;;;;;;;;;;;;;40095:416;;;;;;;;;;-1:-1:-1;40095:416:0;;;;;:::i;:::-;;:::i;38052:135::-;;;;;;;;;;;;;:::i;33918:30::-;;;;;;;;;;;;;;;;3072:201;;;;;;;;;;-1:-1:-1;3072:201:0;;;;;:::i;:::-;;:::i;34061:31::-;;;;;;;;;;;;;;;;33185:24;;;;;;;;;;;;;;;;51068:1056;;;;;;;;;;-1:-1:-1;51068:1056:0;;;;;:::i;:::-;;:::i;41451:161::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;;;;;;;;;41562:9:::1;::::0;41534:38:::1;::::0;41562:9:::1;::::0;;::::1;::::0;41534:38;::::1;::::0;::::1;::::0;41562:9:::1;::::0;41534:38:::1;41583:9;:21:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;41451:161::o;9579:100::-;9633:13;9666:5;9659:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9579:100;:::o;11746:169::-;11829:4;11846:39;916:10;11869:7;11878:6;11846:8;:39::i;:::-;-1:-1:-1;11903:4:0;11746:169;;;;:::o;38762:275::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;38899:4:::1;38891;38870:13;10787:12:::0;;;10699:108;38870:13:::1;:17;::::0;38886:1:::1;38870:17;:::i;:::-;38869:26;;;;:::i;:::-;38868:35;;;;:::i;:::-;38858:6;:45;;38836:142;;;::::0;::::1;::::0;;6515:2:1;38836:142:0::1;::::0;::::1;6497:21:1::0;6554:2;6534:18;;;6527:30;6593:34;6573:18;;;6566:62;6664:17;6644:18;;;6637:45;6699:19;;38836:142:0::1;6313:411:1::0;38836:142:0::1;39012:17;:6:::0;39022::::1;39012:17;:::i;:::-;38989:20;:40:::0;-1:-1:-1;38762:275:0:o;12397:492::-;12537:4;12554:36;12564:6;12572:9;12583:6;12554:9;:36::i;:::-;12630:19;;;12603:24;12630:19;;;:11;:19;;;;;;;;916:10;12630:33;;;;;;;;12682:26;;;;12674:79;;;;;;;6931:2:1;12674:79:0;;;6913:21:1;6970:2;6950:18;;;6943:30;7009:34;6989:18;;;6982:62;7080:10;7060:18;;;7053:38;7108:19;;12674:79:0;6729:404:1;12674:79:0;12789:57;12798:6;916:10;12839:6;12820:16;:25;12789:8;:57::i;:::-;-1:-1:-1;12877:4:0;;12397:492;-1:-1:-1;;;;12397:492:0:o;13298:215::-;916:10;13386:4;13435:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;13386:4;;13403:80;;13426:7;;13435:47;;13472:10;;13435:47;:::i;:::-;13403:8;:80::i;2814:103::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;2879:30:::1;2906:1;2879:18;:30::i;:::-;2814:103::o:0;49709:555::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;49911:3:::1;49888:19;:26;;49866:127;;;::::0;::::1;::::0;;7473:2:1;49866:127:0::1;::::0;::::1;7455:21:1::0;7512:2;7492:18;;;7485:30;7551:34;7531:18;;;7524:62;7622:21;7602:18;;;7595:49;7661:19;;49866:127:0::1;7271:415:1::0;49866:127:0::1;50038:4;50026:8;:16;;:33;;;;-1:-1:-1::0;50046:13:0;50026:33:::1;50004:131;;;::::0;::::1;::::0;;7893:2:1;50004:131:0::1;::::0;::::1;7875:21:1::0;7932:2;7912:18;;;7905:30;7971:34;7951:18;;;7944:62;8042:18;8022;;;8015:46;8078:19;;50004:131:0::1;7691:412:1::0;50004:131:0::1;50146:15;:37:::0;;;;50194:16:::1;:27:::0;50232:13:::1;:24:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;49709:555::o;37870:121::-;2236:6;;37922:4;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;-1:-1:-1;37939:14:0::1;:22:::0;;;::::1;::::0;;;37870:121;:::o;39309:167::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;39422:39:::1;::::0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;39309:167::o;41217:226::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;41372:15:::1;::::0;41329:59:::1;::::0;41372:15:::1;::::0;;::::1;::::0;41329:59;::::1;::::0;::::1;::::0;41372:15:::1;::::0;41329:59:::1;41399:15;:36:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;41217:226::o;37663:155::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;37718:13:::1;:20:::0;;37749:18;;;;;;37795:15:::1;37778:14;:32:::0;37663:155::o;39572:100::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;39643:11:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;39572:100::o;9798:104::-;9854:13;9887:7;9880:14;;;;;:::i;40709:304::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;40853:13:::1;40845:21;;:4;:21;;;;40823:128;;;::::0;::::1;::::0;;8310:2:1;40823:128:0::1;::::0;::::1;8292:21:1::0;8349:2;8329:18;;;8322:30;8388:34;8368:18;;;8361:62;8459:27;8439:18;;;8432:55;8504:19;;40823:128:0::1;8108:421:1::0;40823:128:0::1;40964:41;40993:4;40999:5;40964:28;:41::i;:::-;40709:304:::0;;:::o;14016:413::-;916:10;14109:4;14153:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;14206:35;;;;14198:85;;;;;;;8736:2:1;14198:85:0;;;8718:21:1;8775:2;8755:18;;;8748:30;8814:34;8794:18;;;8787:62;8885:7;8865:18;;;8858:35;8910:19;;14198:85:0;8534:401:1;14198:85:0;14319:67;916:10;14342:7;14370:15;14351:16;:34;14319:8;:67::i;:::-;-1:-1:-1;14417:4:0;;14016:413;-1:-1:-1;;;14016:413:0:o;11210:175::-;11296:4;11313:42;916:10;11337:9;11348:6;11313:9;:42::i;39680:407::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;39834:15:::1;:31:::0;;;39876:15:::1;:31:::0;;;39918:9:::1;:19:::0;;;39930:7;39963:33:::1;39894:13:::0;39852;39963:33:::1;:::i;:::-;:45;;;;:::i;:::-;39948:12;:60:::0;;;40043:2:::1;-1:-1:-1::0;40027:18:0::1;40019:60;;;::::0;::::1;::::0;;9142:2:1;40019:60:0::1;::::0;::::1;9124:21:1::0;9181:2;9161:18;;;9154:30;9220:31;9200:18;;;9193:59;9269:18;;40019:60:0::1;8940:353:1::0;40019:60:0::1;39680:407:::0;;;:::o;40519:182::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;40604:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;40659:34;;1546:41:1;;;40659:34:0::1;::::0;1519:18:1;40659:34:0::1;;;;;;;40519:182:::0;;:::o;39045:256::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;39185:4:::1;39177;39156:13;10787:12:::0;;;10699:108;39156:13:::1;:17;::::0;39172:1:::1;39156:17;:::i;:::-;39155:26;;;;:::i;:::-;39154:35;;;;:::i;:::-;39144:6;:45;;39122:131;;;::::0;::::1;::::0;;9500:2:1;39122:131:0::1;::::0;::::1;9482:21:1::0;9539:2;9519:18;;;9512:30;9578:34;9558:18;;;9551:62;9649:6;9629:18;;;9622:34;9673:19;;39122:131:0::1;9298:400:1::0;39122:131:0::1;39276:17;:6:::0;39286::::1;39276:17;:::i;:::-;39264:9;:29:::0;-1:-1:-1;39045:256:0:o;38257:497::-;2236:6;;38365:4;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;38444:6:::1;38423:13;10787:12:::0;;;10699:108;38423:13:::1;:17;::::0;38439:1:::1;38423:17;:::i;:::-;38422:28;;;;:::i;:::-;38409:9;:41;;38387:144;;;::::0;::::1;::::0;;9905:2:1;38387:144:0::1;::::0;::::1;9887:21:1::0;9944:2;9924:18;;;9917:30;9983:34;9963:18;;;9956:62;10054:23;10034:18;;;10027:51;10095:19;;38387:144:0::1;9703:417:1::0;38387:144:0::1;38599:4;38578:13;10787:12:::0;;;10699:108;38578:13:::1;:17;::::0;38594:1:::1;38578:17;:::i;:::-;38577:26;;;;:::i;:::-;38564:9;:39;;38542:141;;;::::0;::::1;::::0;;10327:2:1;38542:141:0::1;::::0;::::1;10309:21:1::0;10366:2;10346:18;;;10339:30;10405:34;10385:18;;;10378:62;10476:22;10456:18;;;10449:50;10516:19;;38542:141:0::1;10125:416:1::0;38542:141:0::1;-1:-1:-1::0;38694:18:0::1;:30:::0;;;38742:4:::1;2454:1;38257:497:::0;;;:::o;40095:416::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;40250:16:::1;:32:::0;;;40293:16:::1;:32:::0;;;40336:10:::1;:20:::0;;;40349:7;40383:35:::1;40312:13:::0;40269;40383:35:::1;:::i;:::-;:48;;;;:::i;:::-;40367:13;:64:::0;;;40467:2:::1;-1:-1:-1::0;40450:19:0::1;40442:61;;;::::0;::::1;::::0;;9142:2:1;40442:61:0::1;::::0;::::1;9124:21:1::0;9181:2;9161:18;;;9154:30;9220:31;9200:18;;;9193:59;9269:18;;40442:61:0::1;8940:353:1::0;38052:135:0;2236:6;;38112:4;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;-1:-1:-1;38129:20:0::1;:28:::0;;;::::1;::::0;;;38052:135;:::o;3072:201::-;2236:6;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;3161:22:::1;::::0;::::1;3153:73;;;::::0;::::1;::::0;;10748:2:1;3153:73:0::1;::::0;::::1;10730:21:1::0;10787:2;10767:18;;;10760:30;10826:34;10806:18;;;10799:62;10897:8;10877:18;;;10870:36;10923:19;;3153:73:0::1;10546:402:1::0;3153:73:0::1;3237:28;3256:8;3237:18;:28::i;:::-;3072:201:::0;:::o;51068:1056::-;2236:6;;51179:4;;2383:23;2236:6;916:10;2383:23;2375:68;;;;;;;5011:2:1;2375:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2375:68:0;4809:356:1;2375:68:0;51264:19:::1;;51241:20;;:42;;;;:::i;:::-;51223:15;:60;51201:142;;;::::0;::::1;::::0;;11155:2:1;51201:142:0::1;::::0;::::1;11137:21:1::0;;;11174:18;;;11167:30;11233:34;11213:18;;;11206:62;11285:18;;51201:142:0::1;10953:356:1::0;51201:142:0::1;51373:4;51362:7;:15;;51354:70;;;::::0;::::1;::::0;;11516:2:1;51354:70:0::1;::::0;::::1;11498:21:1::0;11555:2;11535:18;;;11528:30;11594:34;11574:18;;;11567:62;11665:12;11645:18;;;11638:40;11695:19;;51354:70:0::1;11314:406:1::0;51354:70:0::1;51458:15;51435:20;:38:::0;51559:29:::1;::::0;;;;1801:42:1;51574:13:0::1;1789:55:1::0;51559:29:0::1;::::0;::::1;1771:74:1::0;51528:28:0::1;::::0;51559:4:::1;::::0;:14:::1;::::0;1744:18:1;;51559:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51528:60:::0;-1:-1:-1;51638:20:0::1;51661:44;51699:5;51661:33;51528:60:::0;51686:7;51661:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;51638:67:::0;-1:-1:-1;51810:16:0;;51806:110:::1;;51843:61;51859:13;51882:6;51891:12;51843:15;:61::i;:::-;51991:19;52028:13;51991:51;;52053:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;52080:14:0::1;::::0;::::1;::::0;-1:-1:-1;52080:14:0;;-1:-1:-1;52080:14:0::1;-1:-1:-1::0;52112:4:0::1;::::0;51068:1056;-1:-1:-1;;;;51068:1056:0:o;17700:380::-;17836:19;;;17828:68;;;;;;;12116:2:1;17828:68:0;;;12098:21:1;12155:2;12135:18;;;12128:30;12194:34;12174:18;;;12167:62;12265:6;12245:18;;;12238:34;12289:19;;17828:68:0;11914:400:1;17828:68:0;17915:21;;;17907:68;;;;;;;12521:2:1;17907:68:0;;;12503:21:1;12560:2;12540:18;;;12533:30;12599:34;12579:18;;;12572:62;12670:4;12650:18;;;12643:32;12692:19;;17907:68:0;12319:398:1;17907:68:0;17988:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18040:32;;2002:25:1;;;18040:32:0;;1975:18:1;18040:32:0;;;;;;;17700:380;;;:::o;41804:5011::-;41936:18;;;41928:68;;;;;;;12924:2:1;41928:68:0;;;12906:21:1;12963:2;12943:18;;;12936:30;13002:34;12982:18;;;12975:62;13073:7;13053:18;;;13046:35;13098:19;;41928:68:0;12722:401:1;41928:68:0;42015:16;;;42007:64;;;;;;;13330:2:1;42007:64:0;;;13312:21:1;13369:2;13349:18;;;13342:30;13408:34;13388:18;;;13381:62;13479:5;13459:18;;;13452:33;13502:19;;42007:64:0;13128:399:1;42007:64:0;42088:11;42084:93;;42116:28;42132:4;42138:2;42142:1;42116:15;:28::i;42084:93::-;42193:14;;;;42189:2487;;;2236:6;;;42246:15;;;2236:6;;42246:15;;;;:49;;-1:-1:-1;2236:6:0;;;42282:13;;;2236:6;;42282:13;;42246:49;:86;;;;-1:-1:-1;42316:16:0;;;;;42246:86;:128;;;;-1:-1:-1;42353:21:0;;;42367:6;42353:21;;42246:128;:158;;;;-1:-1:-1;42396:8:0;;;;;;;42395:9;42246:158;42224:2441;;;42444:13;;;;;;;42439:223;;42516:25;;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;42545:23:0;;;;;;;:19;:23;;;;;;;;42516:52;42482:160;;;;;;;13734:2:1;42482:160:0;;;13716:21:1;13773:2;13753:18;;;13746:30;13812:24;13792:18;;;13785:52;13854:18;;42482:160:0;13532:346:1;42482:160:0;42818:20;;;;42814:641;;;2236:6;;;42893:13;;;2236:6;;42893:13;;;;:72;;;42949:15;42935:30;;:2;:30;;;;42893:72;:129;;;;;43008:13;42994:28;;:2;:28;;;;42893:129;42863:573;;;43140:9;43111:39;;;;:28;:39;;;;;;43186:12;-1:-1:-1;43073:258:0;;;;;;;14085:2:1;43073:258:0;;;14067:21:1;14124:2;14104:18;;;14097:30;14163:34;14143:18;;;14136:62;14234:34;14214:18;;;14207:62;14306:11;14285:19;;;14278:40;14335:19;;43073:258:0;13883:477:1;43073:258:0;43387:9;43358:39;;;;:28;:39;;;;;43400:12;43358:54;;42863:573;43529:31;;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;43586:35:0;;;;;;;:31;:35;;;;;;;;43585:36;43529:92;43503:1147;;;43708:20;;43698:6;:30;;43664:169;;;;;;;14567:2:1;43664:169:0;;;14549:21:1;14606:2;14586:18;;;14579:30;14645:34;14625:18;;;14618:62;14716:23;14696:18;;;14689:51;14757:19;;43664:169:0;14365:417:1;43664:169:0;43916:9;;10971:18;;;10944:7;10971:18;;;;;;;;;;;43890:22;;:6;:22;:::i;:::-;:35;;43856:140;;;;;;;14989:2:1;43856:140:0;;;14971:21:1;15028:2;15008:18;;;15001:30;15067:21;15047:18;;;15040:49;15106:18;;43856:140:0;14787:343:1;43856:140:0;43503:1147;;;44094:29;;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;44149:37:0;;;;;;;:31;:37;;;;;;;;44148:38;44094:92;44068:582;;;44273:20;;44263:6;:30;;44229:170;;;;;;;15337:2:1;44229:170:0;;;15319:21:1;15376:2;15356:18;;;15349:30;15415:34;15395:18;;;15388:62;15486:24;15466:18;;;15459:52;15528:19;;44229:170:0;15135:418:1;44068:582:0;44430:35;;;;;;;:31;:35;;;;;;;;44425:225;;44550:9;;10971:18;;;10944:7;10971:18;;;;;;;;;;;44524:22;;:6;:22;:::i;:::-;:35;;44490:140;;;;;;;14989:2:1;44490:140:0;;;14971:21:1;15028:2;15008:18;;;15001:30;15067:21;15047:18;;;15040:49;15106:18;;44490:140:0;14787:343:1;44490:140:0;44737:4;44688:28;10971:18;;;;;;;;;;;44795;;44771:42;;;;;;;44844:35;;-1:-1:-1;44868:11:0;;;;;;;44844:35;:61;;;;-1:-1:-1;44897:8:0;;;;;;;44896:9;44844:61;:110;;;;-1:-1:-1;44923:31:0;;;;;;;:25;:31;;;;;;;;44922:32;44844:110;:153;;;;-1:-1:-1;44972:25:0;;;;;;;:19;:25;;;;;;;;44971:26;44844:153;:194;;;;-1:-1:-1;45015:23:0;;;;;;;:19;:23;;;;;;;;45014:24;44844:194;44826:326;;;45065:8;:15;;;;;;;;45097:10;:8;:10::i;:::-;45124:8;:16;;;;;;44826:326;45183:8;;;;;;;45182:9;:55;;;;-1:-1:-1;45208:29:0;;;;;;;:25;:29;;;;;;;;45182:55;:85;;;;-1:-1:-1;45254:13:0;;;;45182:85;:153;;;;;45320:15;;45303:14;;:32;;;;:::i;:::-;45284:15;:51;;45182:153;:196;;;;-1:-1:-1;45353:25:0;;;;;;;:19;:25;;;;;;;;45352:26;45182:196;45164:282;;;45405:29;:27;:29::i;:::-;;45164:282;45474:8;;45584:25;;;45458:12;45584:25;;;:19;:25;;;;;;45474:8;;;;;;;45473:9;;45584:25;;:52;;-1:-1:-1;45613:23:0;;;;;;;:19;:23;;;;;;;;45584:52;45580:100;;;-1:-1:-1;45663:5:0;45580:100;45692:12;45797:7;45793:969;;;45849:29;;;;;;;:25;:29;;;;;;;;:50;;;;;45898:1;45882:13;;:17;45849:50;45845:768;;;45927:34;45957:3;45927:25;45938:13;;45927:6;:10;;:25;;;;:::i;:34::-;45920:41;;46030:13;;46010:16;;46003:4;:23;;;;:::i;:::-;46002:41;;;;:::i;:::-;45980:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;46100:13:0;;46086:10;;46079:17;;:4;:17;:::i;:::-;46078:35;;;;:::i;:::-;46062:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;46182:13:0;;46162:16;;46155:23;;:4;:23;:::i;:::-;46154:41;;;;:::i;:::-;46132:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45845:768:0;;-1:-1:-1;45845:768:0;;46257:31;;;;;;;:25;:31;;;;;;;;:51;;;;;46307:1;46292:12;;:16;46257:51;46253:360;;;46336:33;46365:3;46336:24;46347:12;;46336:6;:10;;:24;;;;:::i;:33::-;46329:40;;46437:12;;46418:15;;46411:4;:22;;;;:::i;:::-;46410:39;;;;:::i;:::-;46388:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46505:12:0;;46492:9;;46485:16;;:4;:16;:::i;:::-;46484:33;;;;:::i;:::-;46468:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46585:12:0;;46566:15;;46559:22;;:4;:22;:::i;:::-;46558:39;;;;:::i;:::-;46536:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46253:360:0;46633:8;;46629:91;;46662:42;46678:4;46692;46699;46662:15;:42::i;:::-;46736:14;46746:4;46736:14;;:::i;:::-;;;45793:969;46774:33;46790:4;46796:2;46800:6;46774:15;:33::i;:::-;41917:4898;;;;41804:5011;;;:::o;3433:191::-;3526:6;;;;3543:17;;;;;;;;;;;3576:40;;3526:6;;;3543:17;3526:6;;3576:40;;3507:16;;3576:40;3496:128;3433:191;:::o;41021:188::-;41104:31;;;;;;;:25;:31;;;;;;:39;;;;;;;;;;;;;41161:40;;41104:39;;:31;41161:40;;;41021:188;;:::o;23153:98::-;23211:7;23238:5;23242:1;23238;:5;:::i;:::-;23231:12;23153:98;-1:-1:-1;;;23153:98:0:o;23552:::-;23610:7;23637:5;23641:1;23637;:5;:::i;14919:733::-;15059:20;;;15051:70;;;;;;;12924:2:1;15051:70:0;;;12906:21:1;12963:2;12943:18;;;12936:30;13002:34;12982:18;;;12975:62;13073:7;13053:18;;;13046:35;13098:19;;15051:70:0;12722:401:1;15051:70:0;15140:23;;;15132:71;;;;;;;13330:2:1;15132:71:0;;;13312:21:1;13369:2;13349:18;;;13342:30;13408:34;13388:18;;;13381:62;13479:5;13459:18;;;13452:33;13502:19;;15132:71:0;13128:399:1;15132:71:0;15300:17;;;15276:21;15300:17;;;;;;;;;;;15336:23;;;;15328:74;;;;;;;15890:2:1;15328:74:0;;;15872:21:1;15929:2;15909:18;;;15902:30;15968:34;15948:18;;;15941:62;16039:8;16019:18;;;16012:36;16065:19;;15328:74:0;15688:402:1;15328:74:0;15438:17;;;;:9;:17;;;;;;;;;;;15458:22;;;15438:42;;15502:20;;;;;;;;:30;;15474:6;;15438:9;15502:30;;15474:6;;15502:30;:::i;:::-;;;;;;;;15567:9;15550:35;;15559:6;15550:35;;;15578:6;15550:35;;;;2002:25:1;;1990:2;1975:18;;1856:177;15550:35:0;;;;;;;;15040:612;14919:733;;;:::o;47945:1756::-;48028:4;47984:23;10971:18;;;;;;;;;;;47984:50;;48045:25;48141:12;;48107:18;;48073;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48045:108;-1:-1:-1;48164:12:0;48193:20;;;:46;;-1:-1:-1;48217:22:0;;48193:46;48189:85;;;48256:7;;;47945:1756::o;48189:85::-;48308:18;;:23;;48329:2;48308:23;:::i;:::-;48290:15;:41;48286:115;;;48366:18;;:23;;48387:2;48366:23;:::i;:::-;48348:41;;48286:115;48462:23;48575:1;48542:17;48507:18;;48489:15;:36;;;;:::i;:::-;48488:71;;;;:::i;:::-;:88;;;;:::i;:::-;48462:114;-1:-1:-1;48587:26:0;48616:36;:15;48462:114;48616:19;:36::i;:::-;48587:65;-1:-1:-1;48693:21:0;48727:36;48587:65;48727:16;:36::i;:::-;48776:18;48797:44;:21;48823:17;48797:25;:44::i;:::-;48776:65;;48854:23;48880:81;48933:17;48880:34;48895:18;;48880:10;:14;;:34;;;;:::i;:81::-;48854:107;;48972:17;48992:51;49025:17;48992:28;49007:12;;48992:10;:14;;:28;;;;:::i;:51::-;48972:71;-1:-1:-1;49056:23:0;48972:71;49082:28;49095:15;49082:10;:28;:::i;:::-;:40;;;;:::i;:::-;49156:1;49135:18;:22;;;49168:18;:22;;;49201:12;:16;;;49252:9;;49244:45;;49056:66;;-1:-1:-1;49252:9:0;;;49275;;49244:45;49156:1;49244:45;49275:9;49252;49244:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49230:59:0;;-1:-1:-1;;49306:19:0;;;;;:42;;;49347:1;49329:15;:19;49306:42;49302:278;;;49365:46;49378:15;49395;49365:12;:46::i;:::-;49535:18;;49431:137;;;16507:25:1;;;16563:2;16548:18;;16541:34;;;16591:18;;;16584:34;;;;49431:137:0;;;;;;16495:2:1;49431:137:0;;;49302:278;49614:15;;49606:87;;49614:15;;;;;49657:21;;49606:87;;;;49657:21;49614:15;49606:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;47945:1756:0:o;50272:788::-;50363:15;50346:14;:32;50464:29;;;;;1801:42:1;50479:13:0;1789:55:1;50464:29:0;;;1771:74:1;50329:4:0;;;;50464;;:14;;1744:18:1;;50464:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50433:60;;50543:20;50566:77;50627:5;50566:42;50591:16;;50566:20;:24;;:42;;;;:::i;:77::-;50543:100;-1:-1:-1;50748:16:0;;50744:110;;50781:61;50797:13;50820:6;50829:12;50781:15;:61::i;:::-;50929:19;50966:13;50929:51;;50991:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51018:12:0;;;;-1:-1:-1;51018:12:0;;-1:-1:-1;51018:12:0;51048:4;51041:11;;;;;50272:788;:::o;22796:98::-;22854:7;22881:5;22885:1;22881;:5;:::i;46823:589::-;46973:16;;;46987:1;46973:16;;;;;;;;46949:21;;46973:16;;;;;;;;;;-1:-1:-1;46973:16:0;46949:40;;47018:4;47000;47005:1;47000:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;47044:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47034:4;47039:1;47034:7;;;;;;;;:::i;:::-;;;;;;:32;;;;;;;;;;;47079:62;47096:4;47111:15;47129:11;47079:8;:62::i;:::-;47180:224;;;;;:66;:15;:66;;;;:224;;47261:11;;47287:1;;47331:4;;47358;;47378:15;;47180:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46878:534;46823:589;:::o;47420:517::-;47568:62;47585:4;47600:15;47618:11;47568:8;:62::i;:::-;47673:256;;;;;47745:4;47673:256;;;18658:34:1;18708:18;;;18701:34;;;47791:1:0;18751:18:1;;;18744:34;;;18794:18;;;18787:34;32987:6:0;18837:19:1;;;18830:44;47903:15:0;18890:19:1;;;18883:35;47673:15:0;:31;;;;;47712:9;;18569:19:1;;47673:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47420:517;;:::o;14:154:1:-;100:42;93:5;89:54;82:5;79:65;69:93;;158:1;155;148:12;173:247;232:6;285:2;273:9;264:7;260:23;256:32;253:52;;;301:1;298;291:12;253:52;340:9;327:23;359:31;384:5;359:31;:::i;425:656::-;537:4;566:2;595;584:9;577:21;627:6;621:13;670:6;665:2;654:9;650:18;643:34;695:1;705:140;719:6;716:1;713:13;705:140;;;814:14;;;810:23;;804:30;780:17;;;799:2;776:26;769:66;734:10;;705:140;;;863:6;860:1;857:13;854:91;;;933:1;928:2;919:6;908:9;904:22;900:31;893:42;854:91;-1:-1:-1;997:2:1;985:15;1002:66;981:88;966:104;;;;1072:2;962:113;;425:656;-1:-1:-1;;;425:656:1:o;1086:315::-;1154:6;1162;1215:2;1203:9;1194:7;1190:23;1186:32;1183:52;;;1231:1;1228;1221:12;1183:52;1270:9;1257:23;1289:31;1314:5;1289:31;:::i;:::-;1339:5;1391:2;1376:18;;;;1363:32;;-1:-1:-1;;;1086:315:1:o;2038:180::-;2097:6;2150:2;2138:9;2129:7;2125:23;2121:32;2118:52;;;2166:1;2163;2156:12;2118:52;-1:-1:-1;2189:23:1;;2038:180;-1:-1:-1;2038:180:1:o;2223:456::-;2300:6;2308;2316;2369:2;2357:9;2348:7;2344:23;2340:32;2337:52;;;2385:1;2382;2375:12;2337:52;2424:9;2411:23;2443:31;2468:5;2443:31;:::i;:::-;2493:5;-1:-1:-1;2550:2:1;2535:18;;2522:32;2563:33;2522:32;2563:33;:::i;:::-;2223:456;;2615:7;;-1:-1:-1;;;2669:2:1;2654:18;;;;2641:32;;2223:456::o;3104:160::-;3169:20;;3225:13;;3218:21;3208:32;;3198:60;;3254:1;3251;3244:12;3269:316;3343:6;3351;3359;3412:2;3400:9;3391:7;3387:23;3383:32;3380:52;;;3428:1;3425;3418:12;3380:52;3464:9;3451:23;3441:33;;3521:2;3510:9;3506:18;3493:32;3483:42;;3544:35;3575:2;3564:9;3560:18;3544:35;:::i;:::-;3534:45;;3269:316;;;;;:::o;3590:315::-;3655:6;3663;3716:2;3704:9;3695:7;3691:23;3687:32;3684:52;;;3732:1;3729;3722:12;3684:52;3771:9;3758:23;3790:31;3815:5;3790:31;:::i;:::-;3840:5;-1:-1:-1;3864:35:1;3895:2;3880:18;;3864:35;:::i;:::-;3854:45;;3590:315;;;;;:::o;3910:180::-;3966:6;4019:2;4007:9;3998:7;3994:23;3990:32;3987:52;;;4035:1;4032;4025:12;3987:52;4058:26;4074:9;4058:26;:::i;4095:316::-;4172:6;4180;4188;4241:2;4229:9;4220:7;4216:23;4212:32;4209:52;;;4257:1;4254;4247:12;4209:52;-1:-1:-1;;4280:23:1;;;4350:2;4335:18;;4322:32;;-1:-1:-1;4401:2:1;4386:18;;;4373:32;;4095:316;-1:-1:-1;4095:316:1:o;4416:388::-;4484:6;4492;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;4600:9;4587:23;4619:31;4644:5;4619:31;:::i;:::-;4669:5;-1:-1:-1;4726:2:1;4711:18;;4698:32;4739:33;4698:32;4739:33;:::i;:::-;4791:7;4781:17;;;4416:388;;;;;:::o;5170:437::-;5249:1;5245:12;;;;5292;;;5313:61;;5367:4;5359:6;5355:17;5345:27;;5313:61;5420:2;5412:6;5409:14;5389:18;5386:38;5383:218;;;5457:77;5454:1;5447:88;5558:4;5555:1;5548:15;5586:4;5583:1;5576:15;5383:218;;5170:437;;;:::o;5612:184::-;5664:77;5661:1;5654:88;5761:4;5758:1;5751:15;5785:4;5782:1;5775:15;5801:228;5841:7;5967:1;5899:66;5895:74;5892:1;5889:81;5884:1;5877:9;5870:17;5866:105;5863:131;;;5974:18;;:::i;:::-;-1:-1:-1;6014:9:1;;5801:228::o;6034:274::-;6074:1;6100;6090:189;;6135:77;6132:1;6125:88;6236:4;6233:1;6226:15;6264:4;6261:1;6254:15;6090:189;-1:-1:-1;6293:9:1;;6034:274::o;7138:128::-;7178:3;7209:1;7205:6;7202:1;7199:13;7196:39;;;7215:18;;:::i;:::-;-1:-1:-1;7251:9:1;;7138:128::o;11725:184::-;11795:6;11848:2;11836:9;11827:7;11823:23;11819:32;11816:52;;;11864:1;11861;11854:12;11816:52;-1:-1:-1;11887:16:1;;11725:184;-1:-1:-1;11725:184:1:o;15558:125::-;15598:4;15626:1;15623;15620:8;15617:34;;;15631:18;;:::i;:::-;-1:-1:-1;15668:9:1;;15558:125::o;16818:184::-;16870:77;16867:1;16860:88;16967:4;16964:1;16957:15;16991:4;16988:1;16981:15;17007:251;17077:6;17130:2;17118:9;17109:7;17105:23;17101:32;17098:52;;;17146:1;17143;17136:12;17098:52;17178:9;17172:16;17197:31;17222:5;17197:31;:::i;17263:1026::-;17525:4;17573:3;17562:9;17558:19;17604:6;17593:9;17586:25;17630:2;17668:6;17663:2;17652:9;17648:18;17641:34;17711:3;17706:2;17695:9;17691:18;17684:31;17735:6;17770;17764:13;17801:6;17793;17786:22;17839:3;17828:9;17824:19;17817:26;;17878:2;17870:6;17866:15;17852:29;;17899:1;17909:218;17923:6;17920:1;17917:13;17909:218;;;17988:13;;18003:42;17984:62;17972:75;;18102:15;;;;18067:12;;;;17945:1;17938:9;17909:218;;;-1:-1:-1;;18195:42:1;18183:55;;;;18178:2;18163:18;;18156:83;-1:-1:-1;;;18270:3:1;18255:19;18248:35;18144:3;17263:1026;-1:-1:-1;;;17263:1026:1:o;18929:306::-;19017:6;19025;19033;19086:2;19074:9;19065:7;19061:23;19057:32;19054:52;;;19102:1;19099;19092:12;19054:52;19131:9;19125:16;19115:26;;19181:2;19170:9;19166:18;19160:25;19150:35;;19225:2;19214:9;19210:18;19204:25;19194:35;;18929:306;;;;;:::o

Swarm Source

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