ETH Price: $3,264.15 (+4.51%)
Gas: 2 Gwei

Token

0xFucks (0xFk)
 

Overview

Max Total Supply

1,000,000,000,000 0xFk

Holders

146

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
fresqo.eth
Balance
0.0000002728879311 0xFk

Value
$0.00
0xe51cd3470338056681e023f7b4cfc7404d832c4f
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:
Token

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-09
*/

// SPDX-License-Identifier: MIT
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity 0.8.20;

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol



interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol



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

// File: @openzeppelin/contracts/utils/Context.sol

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

// File: @openzeppelin/contracts/access/Ownable.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);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



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



contract Token is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    
    mapping(address => bool) public isBot;
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcluded;
    mapping(address => uint256) private lastTrade;
    bool isTradingEnabled;
    
    address[] private _excluded;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000000 * 1e18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 public tradeStartTime;
    uint256 public maxWalletAmount = 6000000000 * 1e18; //6 billion token
    string private _name = "0xFucks";
    string private _symbol = "0xFk";
    uint8 private _decimals = 18;

    struct BuyFee {
        uint16 marketingFee;
        uint16 reflectionFee;
    }

    struct SellFee {
        uint16 marketingFee;
        uint16 reflectionFee;
    }

    struct TransferFee {
        uint16 marketingFee;
        uint16 reflectionFee;
    }


    BuyFee public buyFee;
    SellFee public sellFee;
    TransferFee public transferFee;

    uint16 private _reflectionFee;
    uint16 private _marketingFee;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    address public marketingWallet;
    address public constant deadWallet  = address(0xdead);
   

    bool internal inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
   
    uint256 private numTokensSellToAddToLiquidity = 1000 * 10**18;
    

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
   

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() {
        _rOwned[_msgSender()] = _rTotal; 
    
       
        buyFee.marketingFee = 2;
        buyFee.reflectionFee = 1;

        transferFee.marketingFee =2;
        transferFee.reflectionFee = 1;
       
        sellFee.marketingFee = 2;
        sellFee.reflectionFee = 1;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D //uniswap Router
        );
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        marketingWallet = address(0x5CaD11bFf9a5E5471D19C5aB3C9cAeaf78D6fE99); //  marketing wallet 

        //exclude owner, marketing, dead address and this contract from fee/limits
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[deadWallet] = true;
        _isExcludedFromFee[marketingWallet] = true;

      
        emit Transfer(address(0), _msgSender(), _tTotal );
       
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    ///@notice Returns if a address is exlcluded from rewards or not
    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }
    
    ///@notice Returns total fees reflected till date
    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
  
    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(
            !_isExcluded[sender],
            "Excluded addresses cannot call this function"
        );
        (uint256 rAmount, , , , , ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }
    

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee)
        public
        view
        returns (uint256)
    {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount, , , , , ) = _getValues(tAmount);
            return rAmount;
        } else {
            (, uint256 rTransferAmount, , , , ) = _getValues(tAmount);
            return rTransferAmount;
        }
    }
    
    function tokenFromReflection(uint256 rAmount)
        public
        view
        returns (uint256)
    {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }
    

    ///@dev exclude a particular address from reward
    ///@param account: address to be excluded from reward
    function excludeFromReward(address account) public onlyOwner {
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }
    

    ///@dev include a address in reward
    ///@param account: address to be added in reward mapping again
   function includeInReward (address account) external onlyOwner { 
        require(_isExcluded [account], "Account is already excluded"); 
          for (uint256 i = 0; i < _excluded.length; i++) {

           if (_excluded[i] == account){ 
            //updating _rOwned to make sure the balances stay the same
            if (_tOwned [account] > 0) {
                uint256 newrOwned = _tOwned [account].mul(_getRate());
                _rTotal = _rTotal.sub(_rOwned [account]-newrOwned);
                _rOwned[account] = newrOwned;
                } 
                else{
               _rOwned [account] = 0;
                }
               _tOwned[account]= 0;
               _excluded [i] = _excluded [_excluded.length-1];
               _isExcluded [account] = false;
               _excluded.pop();
               break;
            }
        }
    }
    

    ///@dev exclude a address from fees/limits
    ///@param account - address or wallet to be excluded
    function excludeFromFee(address account) external onlyOwner {
        require (!_isExcludedFromFee[account], "already excluded");
        _isExcludedFromFee[account] = true;
    }
    

    ///@dev include a address in fees if it's excluded
    ///@param account - wallet or account address to include in fee
    function includeInFee(address account) external onlyOwner {
        require (_isExcludedFromFee[account], "already included");
        _isExcludedFromFee[account] = false;
    }

    ///@dev owner manange blacklisting of bots/wallets
    ///@param bot: bot or wallet address
    ///@param blocked: bool value (if true, means blacklisted, if false means unblacklisted).
    function manageBots(address bot, bool blocked) external onlyOwner {
        isBot[bot] = blocked;
    }

    ///@dev set buy fees
    ///@param marketing - set marketing fees
    ///@param ref - set reflection fees
    ///Requirements --
    /// total buy fees must be less than equal to 5 percent.
    function setBuyFee( uint16 marketing, uint16 ref) external onlyOwner {
       
        buyFee.marketingFee = marketing;
        buyFee.reflectionFee = ref;
      
        uint256 totalBuyFee = marketing + ref ;
        require(totalBuyFee <= 5, "max buy fees limit is 5%");
    }
    

    ///@dev set sell fees
    ///@param marketing - set marketing fees
    ///@param ref - set reflection fees
    ///Requirements --
    /// total sell fees must be less than equal to 5 percent.
    function setSellFee(
        uint16 marketing,
        uint16 ref
    ) external onlyOwner {
        sellFee.marketingFee = marketing;
        sellFee.reflectionFee = ref;
        uint256 totalSellFee = ref  + marketing;
        require(totalSellFee <= 5, "max sell fees limit is 5%");
    }

    ///@dev set transfer fees
    ///@param marketing - set marketing fees
    ///@param ref - set reflection fees
    ///Requirements --
    /// total transfer fees must be less than equal to 5 percent.
    function setTransferFees(
        uint16 marketing,
        uint16 ref
    ) external onlyOwner {
        sellFee.marketingFee = marketing;
        sellFee.reflectionFee = ref;
        uint256 totalTransferFee = ref  + marketing;
        require(totalTransferFee <= 5, "max transfer fees limit is 5%");
    }

    ///@dev update the marketing wallet
    ///@param wallet -- new wallet for marketing to receive eth
    ///Requirements --
    /// zero address is not allowed
    function updateMarketingWallet (address wallet) external onlyOwner {
        require (wallet != address(0));
        marketingWallet = wallet;
    }

    ///@dev update the maxWalletAmount
    ///@param amount - amount in wei format for maxWallet
    ///Requirements --
    /// amount must be greator than 1 percent of the supply
    function updateMaxWalletAmount (uint256 amount) external onlyOwner {
        require (amount >=  6000000000 * 1e18, "amount must be greator than 6 billion tokens");
        maxWalletAmount = amount;
    }

    ///@dev set minimum threshold after which collected fees will be swapped for eth
    ///@param numTokens -  number of tokens
    function setSwapTokensAtAmount(uint256 numTokens)
        external
        onlyOwner
    {
        numTokensSellToAddToLiquidity = numTokens * 10**18;
    }

    ///@dev enabled or disable marketing fees to eth conversion
    ///@param _enabled - bool value, true means tokens get swapped for eth, else not
    function setSwapAndLiquifyEnabled(bool _enabled) external onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    ///@notice owner can claim stucked erc20 token from smartcontract
    ///@param _token - address of token to be rescued
    function claimStuckTokens(address _token) external onlyOwner {
        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }
    
    ///@notice owner can claim any stucked ether from smartcontract
    function claimETH() external onlyOwner {
        (bool sent,) = owner().call{value: address(this).balance}("");
        require (sent, "eth transfer failed");
    }

    //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {
        this;
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tMarketing
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tMarketing,
            _getRate()
        );
        return (
            rAmount,
            rTransferAmount,
            rFee,
            tTransferAmount,
            tFee,
            tMarketing
        );
    }

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = calculateReflectionFee(tAmount);
        uint256 tMarketing = calculateMarketingFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tMarketing);
        tTransferAmount = tTransferAmount;
        return (tTransferAmount, tFee, tMarketing);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tMarketing,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rMarketing = tMarketing.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rMarketing);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (
                _rOwned[_excluded[i]] > rSupply ||
                _tOwned[_excluded[i]] > tSupply
            ) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeMarketing(uint256 tMarketing) private {
        uint256 currentRate = _getRate();
        uint256 rMarketing = tMarketing.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing);
    }


    ///@notice owner enable the trading, once enabled it can never be turned off
    function enableTrading () external onlyOwner {
        require (!isTradingEnabled, "already enabled");
        isTradingEnabled = true;
        tradeStartTime = block.timestamp;
    }

    
    function calculateReflectionFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_reflectionFee).div(10**2);
    }

    function calculateMarketingFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_marketingFee).div(10**2);
    }

  

    function removeAllFee() private {
        _reflectionFee = 0;
        _marketingFee = 0;
    }

    function setBuy() private {
        _reflectionFee = buyFee.reflectionFee;
        _marketingFee = buyFee.marketingFee;

    }

    function setSell() private {
        _reflectionFee = sellFee.reflectionFee;
        _marketingFee = sellFee.marketingFee;
        
    }

    function setTransfer() private {
        _reflectionFee = transferFee.reflectionFee;
        _marketingFee = transferFee.reflectionFee;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require (!isBot[from] && !isBot[to], "Bot not allowed");
        
       if(from != owner() || !_isExcludedFromFee[from] ){
       require (isTradingEnabled, "trading is not live");
       }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
        
            swapTokensForEth(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

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

        //transfer amount, it will take reflection, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }


    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        // 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,
            marketingWallet,
            block.timestamp
        );
    }

   

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        removeAllFee();

        if (takeFee) {

            if(recipient != uniswapV2Pair){
                require (balanceOf(recipient) + amount <= maxWalletAmount, "Max wallet amount exceeds");
            }
            
            ///buy
            if (sender == uniswapV2Pair) { 
                setBuy();
                lastTrade[recipient] = block.number;
                //any bot try to buy within 24 seconds of enable trade will be blocked
                if(block.timestamp - tradeStartTime <= 24){
                    isBot[recipient] = true;
                }
            }
            
            ///sell
            else if (recipient == uniswapV2Pair) {
                require (block.number > lastTrade[sender], "error: sandwich bot");
                setSell();
            }

            ///transfer
            else {
                require (block.number  > lastTrade[sender], "error: sandwich bot");
                setTransfer();
            }
        }

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tMarketing
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tMarketing
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tMarketing
        ) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tMarketing
        ) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

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":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"},{"internalType":"uint16","name":"reflectionFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"blocked","type":"bool"}],"name":"manageBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"},{"internalType":"uint16","name":"reflectionFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"ref","type":"uint16"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"ref","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"ref","type":"uint16"}],"name":"setTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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":"tradeStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"},{"internalType":"uint16","name":"reflectionFee","type":"uint16"}],"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":"wallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526c0c9f2c9cd04674edea40000000600a81905562000024905f19620003ea565b62000031905f196200040a565b600b556b1363156bbee3016d70000000600e5560408051808201909152600781526630784675636b7360c81b6020820152600f90620000719082620004d0565b506040805180820190915260048152633078466b60e01b60208201526010906200009c9082620004d0565b506011805460ff191660121790556017805460ff60a81b1916600160a81b179055683635c9adc5dea00000601855348015620000d6575f80fd5b50620000e2336200039b565b600b54335f9081526001602090815260409182902092909255601280546201000263ffffffff19918216811790925560148054821683179055601380549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa15801562000172573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000198919062000598565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200020a919062000598565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000255573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200027b919062000598565b601680546001600160a01b039283166001600160a01b0319918216179091556015805484841664010000000002600160201b600160c01b031990911617905560178054909116735cad11bff9a5e5471d19c5ab3c9caeaf78d6fe991781555f80548316815260056020526040808220805460ff19908116600190811790925530845282842080548216831790557f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba805482168317905593549094168252902080549091169091179055336001600160a01b03165f6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040516200038c91815260200190565b60405180910390a350620005c7565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f826200040557634e487b7160e01b5f52601260045260245ffd5b500690565b818103818111156200042a57634e487b7160e01b5f52601160045260245ffd5b92915050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200045957607f821691505b6020821081036200047857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620004cb575f81815260208120601f850160051c81016020861015620004a65750805b601f850160051c820191505b81811015620004c757828155600101620004b2565b5050505b505050565b81516001600160401b03811115620004ec57620004ec62000430565b6200050481620004fd845462000444565b846200047e565b602080601f8311600181146200053a575f8415620005225750858301515b5f19600386901b1c1916600185901b178555620004c7565b5f85815260208120601f198616915b828110156200056a5788860151825594840194600190910190840162000549565b50858210156200058857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620005a9575f80fd5b81516001600160a01b0381168114620005c0575f80fd5b9392505050565b612cf780620005d55f395ff3fe608060405260043610610278575f3560e01c8063715018a61161014a578063aacebbe3116100be578063dd62ed3e11610078578063dd62ed3e146107ab578063ea2f0b37146107ef578063ec2a520a1461080e578063efe23e861461082d578063f2fde38b1461084c578063f9d0831a1461086b575f80fd5b8063aacebbe3146106ec578063acb2ad6f1461070b578063afa4f3b21461072f578063b7b69ec51461074e578063c18bc1951461076d578063c49b9a801461078c575f80fd5b80638a8c523c1161010f5780638a8c523c146106555780638da5cb5b1461066957806395d89b4114610685578063a457c2d714610699578063a9059cbb146106b8578063aa4bde28146106d7575f80fd5b8063715018a6146105b757806375f0a874146105cb5780637afad249146105ea57806385141a771461060957806388f820201461061e575f80fd5b806339509351116101ec57806349bd5a5e116101a657806349bd5a5e146104ef5780634a74bb021461050e57806352390c021461052e5780635342acb41461054d578063672729991461058457806370a0823114610598575f80fd5b806339509351146104215780633bbac579146104405780633bd5d1731461046e578063437823ec1461048d5780634549b039146104ac57806347062402146104cb575f80fd5b806323b872dd1161023d57806323b872dd1461034d5780632b14ca561461036c5780632c735ef8146103ab5780632d838119146103c0578063313ce567146103df5780633685d41914610400575f80fd5b806306fdde0314610283578063095ea7b3146102ad57806313114a9d146102dc5780631694505e146102fa57806318160ddd14610339575f80fd5b3661027f57005b5f80fd5b34801561028e575f80fd5b5061029761088a565b6040516102a4919061288b565b60405180910390f35b3480156102b8575f80fd5b506102cc6102c73660046128ea565b61091a565b60405190151581526020016102a4565b3480156102e7575f80fd5b50600c545b6040519081526020016102a4565b348015610305575f80fd5b506015546103219064010000000090046001600160a01b031681565b6040516001600160a01b0390911681526020016102a4565b348015610344575f80fd5b50600a546102ec565b348015610358575f80fd5b506102cc610367366004612914565b610930565b348015610377575f80fd5b506013546103909061ffff808216916201000090041682565b6040805161ffff9384168152929091166020830152016102a4565b3480156103b6575f80fd5b506102ec600d5481565b3480156103cb575f80fd5b506102ec6103da366004612952565b610997565b3480156103ea575f80fd5b5060115460405160ff90911681526020016102a4565b34801561040b575f80fd5b5061041f61041a366004612969565b610a1e565b005b34801561042c575f80fd5b506102cc61043b3660046128ea565b610c8e565b34801561044b575f80fd5b506102cc61045a366004612969565b60046020525f908152604090205460ff1681565b348015610479575f80fd5b5061041f610488366004612952565b610cc3565b348015610498575f80fd5b5061041f6104a7366004612969565b610da9565b3480156104b7575f80fd5b506102ec6104c6366004612991565b610e50565b3480156104d6575f80fd5b506012546103909061ffff808216916201000090041682565b3480156104fa575f80fd5b50601654610321906001600160a01b031681565b348015610519575f80fd5b506017546102cc90600160a81b900460ff1681565b348015610539575f80fd5b5061041f610548366004612969565b610eda565b348015610558575f80fd5b506102cc610567366004612969565b6001600160a01b03165f9081526005602052604090205460ff1690565b34801561058f575f80fd5b5061041f611027565b3480156105a3575f80fd5b506102ec6105b2366004612969565b6110e9565b3480156105c2575f80fd5b5061041f611145565b3480156105d6575f80fd5b50601754610321906001600160a01b031681565b3480156105f5575f80fd5b5061041f6106043660046129d5565b611179565b348015610614575f80fd5b5061032161dead81565b348015610629575f80fd5b506102cc610638366004612969565b6001600160a01b03165f9081526006602052604090205460ff1690565b348015610660575f80fd5b5061041f611228565b348015610674575f80fd5b505f546001600160a01b0316610321565b348015610690575f80fd5b506102976112a9565b3480156106a4575f80fd5b506102cc6106b33660046128ea565b6112b8565b3480156106c3575f80fd5b506102cc6106d23660046128ea565b611305565b3480156106e2575f80fd5b506102ec600e5481565b3480156106f7575f80fd5b5061041f610706366004612969565b611311565b348015610716575f80fd5b506014546103909061ffff808216916201000090041682565b34801561073a575f80fd5b5061041f610749366004612952565b61136e565b348015610759575f80fd5b5061041f6107683660046129d5565b6113af565b348015610778575f80fd5b5061041f610787366004612952565b611459565b348015610797575f80fd5b5061041f6107a6366004612a06565b6114f8565b3480156107b6575f80fd5b506102ec6107c5366004612a21565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b3480156107fa575f80fd5b5061041f610809366004612969565b611579565b348015610819575f80fd5b5061041f6108283660046129d5565b61161c565b348015610838575f80fd5b5061041f610847366004612a4d565b6116c6565b348015610857575f80fd5b5061041f610866366004612969565b611719565b348015610876575f80fd5b5061041f610885366004612969565b6117b0565b6060600f805461089990612a79565b80601f01602080910402602001604051908101604052809291908181526020018280546108c590612a79565b80156109105780601f106108e757610100808354040283529160200191610910565b820191905f5260205f20905b8154815290600101906020018083116108f357829003601f168201915b5050505050905090565b5f6109263384846118d9565b5060015b92915050565b5f61093c8484846119fc565b61098d843361098885604051806060016040528060288152602001612c75602891396001600160a01b038a165f9081526003602090815260408083203384529091529020549190611ce6565b6118d9565b5060019392505050565b5f600b54821115610a025760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b5f610a0b611d11565b9050610a178382611d32565b9392505050565b5f546001600160a01b03163314610a475760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b0381165f9081526006602052604090205460ff16610aae5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109f9565b5f5b600954811015610c8a57816001600160a01b031660098281548110610ad757610ad7612ae6565b5f918252602090912001546001600160a01b031603610c78576001600160a01b0382165f9081526002602052604090205415610b8a575f610b37610b19611d11565b6001600160a01b0385165f9081526002602052604090205490611d3d565b6001600160a01b0384165f90815260016020526040902054909150610b6a90610b61908390612b0e565b600b5490611d48565b600b556001600160a01b0383165f90815260016020526040902055610ba3565b6001600160a01b0382165f908152600160205260408120555b6001600160a01b0382165f9081526002602052604081205560098054610bcb90600190612b0e565b81548110610bdb57610bdb612ae6565b5f91825260209091200154600980546001600160a01b039092169183908110610c0657610c06612ae6565b5f91825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600690915260409020805460ff191690556009805480610c5457610c54612b21565b5f8281526020902081015f1990810180546001600160a01b03191690550190555050565b80610c8281612b35565b915050610ab0565b5050565b335f8181526003602090815260408083206001600160a01b038716845290915281205490916109269185906109889086611d53565b335f8181526006602052604090205460ff1615610d375760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016109f9565b5f610d4183611d5e565b505050506001600160a01b0384165f90815260016020526040902054919250610d6c91905082611d48565b6001600160a01b0383165f90815260016020526040902055600b54610d919082611d48565b600b55600c54610da19084611d53565b600c55505050565b5f546001600160a01b03163314610dd25760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b0381165f9081526005602052604090205460ff1615610e2d5760405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e48195e18db1d59195960821b60448201526064016109f9565b6001600160a01b03165f908152600560205260409020805460ff19166001179055565b5f600a54831115610ea35760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016109f9565b81610ec1575f610eb284611d5e565b5093955061092a945050505050565b5f610ecb84611d5e565b5092955061092a945050505050565b5f546001600160a01b03163314610f035760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b0381165f9081526006602052604090205460ff1615610f6b5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109f9565b6001600160a01b0381165f9081526001602052604090205415610fc2576001600160a01b0381165f90815260016020526040902054610fa990610997565b6001600160a01b0382165f908152600260205260409020555b6001600160a01b03165f818152600660205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b5f546001600160a01b031633146110505760405162461bcd60e51b81526004016109f990612ab1565b5f80546040516001600160a01b039091169047908381818185875af1925050503d805f811461109a576040519150601f19603f3d011682016040523d82523d5f602084013e61109f565b606091505b50509050806110e65760405162461bcd60e51b8152602060048201526013602482015272195d1a081d1c985b9cd9995c8819985a5b1959606a1b60448201526064016109f9565b50565b6001600160a01b0381165f9081526006602052604081205460ff161561112457506001600160a01b03165f9081526002602052604090205490565b6001600160a01b0382165f9081526001602052604090205461092a90610997565b5f546001600160a01b0316331461116e5760405162461bcd60e51b81526004016109f990612ab1565b6111775f611da6565b565b5f546001600160a01b031633146111a25760405162461bcd60e51b81526004016109f990612ab1565b6012805461ffff838116620100000263ffffffff19909216908516171790555f6111cc8284612b4d565b61ffff16905060058111156112235760405162461bcd60e51b815260206004820152601860248201527f6d6178206275792066656573206c696d6974206973203525000000000000000060448201526064016109f9565b505050565b5f546001600160a01b031633146112515760405162461bcd60e51b81526004016109f990612ab1565b60085460ff16156112965760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e48195b98589b1959608a1b60448201526064016109f9565b6008805460ff1916600117905542600d55565b60606010805461089990612a79565b5f610926338461098885604051806060016040528060258152602001612c9d60259139335f9081526003602090815260408083206001600160a01b038d1684529091529020549190611ce6565b5f6109263384846119fc565b5f546001600160a01b0316331461133a5760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b03811661134c575f80fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b5f546001600160a01b031633146113975760405162461bcd60e51b81526004016109f990612ab1565b6113a981670de0b6b3a7640000612b6f565b60185550565b5f546001600160a01b031633146113d85760405162461bcd60e51b81526004016109f990612ab1565b6013805461ffff838116620100000263ffffffff19909216908516171790555f6114028383612b4d565b61ffff16905060058111156112235760405162461bcd60e51b815260206004820152601d60248201527f6d6178207472616e736665722066656573206c696d697420697320352500000060448201526064016109f9565b5f546001600160a01b031633146114825760405162461bcd60e51b81526004016109f990612ab1565b6b1363156bbee3016d700000008110156114f35760405162461bcd60e51b815260206004820152602c60248201527f616d6f756e74206d7573742062652067726561746f72207468616e203620626960448201526b6c6c696f6e20746f6b656e7360a01b60648201526084016109f9565b600e55565b5f546001600160a01b031633146115215760405162461bcd60e51b81526004016109f990612ab1565b60178054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061156e90831515815260200190565b60405180910390a150565b5f546001600160a01b031633146115a25760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b0381165f9081526005602052604090205460ff166115fc5760405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e481a5b98db1d59195960821b60448201526064016109f9565b6001600160a01b03165f908152600560205260409020805460ff19169055565b5f546001600160a01b031633146116455760405162461bcd60e51b81526004016109f990612ab1565b6013805461ffff838116620100000263ffffffff19909216908516171790555f61166f8383612b4d565b61ffff16905060058111156112235760405162461bcd60e51b815260206004820152601960248201527f6d61782073656c6c2066656573206c696d69742069732035250000000000000060448201526064016109f9565b5f546001600160a01b031633146116ef5760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b03919091165f908152600460205260409020805460ff1916911515919091179055565b5f546001600160a01b031633146117425760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b0381166117a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f9565b6110e681611da6565b5f546001600160a01b031633146117d95760405162461bcd60e51b81526004016109f990612ab1565b6040516370a0823160e01b815230600482015281905f906001600160a01b038316906370a0823190602401602060405180830381865afa15801561181f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118439190612b86565b9050816001600160a01b031663a9059cbb6118655f546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303815f875af11580156118af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118d39190612b9d565b50505050565b6001600160a01b03831661193b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109f9565b6001600160a01b03821661199c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109f9565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109f9565b6001600160a01b038216611ac25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109f9565b5f8111611b235760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016109f9565b6001600160a01b0383165f9081526004602052604090205460ff16158015611b6357506001600160a01b0382165f9081526004602052604090205460ff16155b611ba15760405162461bcd60e51b815260206004820152600f60248201526e109bdd081b9bdd08185b1b1bddd959608a1b60448201526064016109f9565b5f546001600160a01b038481169116141580611bd557506001600160a01b0383165f9081526005602052604090205460ff16155b15611c225760085460ff16611c225760405162461bcd60e51b815260206004820152601360248201527274726164696e67206973206e6f74206c69766560681b60448201526064016109f9565b5f611c2c306110e9565b60185490915081108015908190611c4d5750601754600160a01b900460ff16155b8015611c6757506016546001600160a01b03868116911614155b8015611c7c5750601754600160a81b900460ff165b15611c8a57611c8a82611df5565b6001600160a01b0385165f9081526005602052604090205460019060ff1680611cca57506001600160a01b0385165f9081526005602052604090205460ff165b15611cd257505f5b611cde86868684611f93565b505050505050565b5f8184841115611d095760405162461bcd60e51b81526004016109f9919061288b565b505050900390565b5f805f611d1c612330565b9092509050611d2b8282611d32565b9250505090565b5f610a178284612bb8565b5f610a178284612b6f565b5f610a178284612b0e565b5f610a178284612bd7565b5f805f805f805f805f611d708a6124a9565b9250925092505f805f611d8c8d8686611d87611d11565b6124e7565b919f909e50909c50959a5093985091965092945050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6017805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110611e3b57611e3b612ae6565b60200260200101906001600160a01b031690816001600160a01b031681525050601560049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ed09190612bea565b81600181518110611ee357611ee3612ae6565b6001600160a01b039283166020918202929092010152601554611f11913091640100000000900416846118d9565b60155460175460405163791ac94760e01b81526001600160a01b0364010000000090930483169263791ac94792611f559287925f9288929116904290600401612c05565b5f604051808303815f87803b158015611f6c575f80fd5b505af1158015611f7e573d5f803e3d5ffd5b50506017805460ff60a01b1916905550505050565b611fa56015805463ffffffff19169055565b80156121e4576016546001600160a01b0384811691161461202557600e5482611fcd856110e9565b611fd79190612bd7565b11156120255760405162461bcd60e51b815260206004820152601960248201527f4d61782077616c6c657420616d6f756e7420657863656564730000000000000060448201526064016109f9565b6016546001600160a01b03908116908516036120c15761206a6012546015805461ffff8084166201000090810263ffffffff1990931694041692909217919091179055565b6001600160a01b0383165f908152600760205260409020439055600d546018906120949042612b0e565b116120bc576001600160a01b0383165f908152600460205260409020805460ff191660011790555b6121e4565b6016546001600160a01b0390811690841603612162576001600160a01b0384165f9081526007602052604090205443116121335760405162461bcd60e51b8152602060048201526013602482015272195c9c9bdc8e881cd85b991dda58da08189bdd606a1b60448201526064016109f9565b6120bc6013546015805461ffff8084166201000090810263ffffffff1990931694041692909217919091179055565b6001600160a01b0384165f9081526007602052604090205443116121be5760405162461bcd60e51b8152602060048201526013602482015272195c9c9bdc8e881cd85b991dda58da08189bdd606a1b60448201526064016109f9565b6014546015805463ffffffff1916620100009283900461ffff1690811792029190911790555b6001600160a01b0384165f9081526006602052604090205460ff16801561222357506001600160a01b0383165f9081526006602052604090205460ff16155b1561223857612233848484612533565b6118d3565b6001600160a01b0384165f9081526006602052604090205460ff1615801561227757506001600160a01b0383165f9081526006602052604090205460ff165b1561228757612233848484612652565b6001600160a01b0384165f9081526006602052604090205460ff161580156122c757506001600160a01b0383165f9081526006602052604090205460ff16155b156122d7576122338484846126f5565b6001600160a01b0384165f9081526006602052604090205460ff16801561231557506001600160a01b0383165f9081526006602052604090205460ff165b1561232557612233848484612735565b6118d38484846126f5565b600b54600a545f918291825b600954811015612479578260015f6009848154811061235d5761235d612ae6565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205411806123c557508160025f6009848154811061239f5761239f612ae6565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054115b156123db57600b54600a54945094505050509091565b61241f60015f600984815481106123f4576123f4612ae6565b5f9182526020808320909101546001600160a01b031683528201929092526040019020548490611d48565b925061246560025f6009848154811061243a5761243a612ae6565b5f9182526020808320909101546001600160a01b031683528201929092526040019020548390611d48565b91508061247181612b35565b91505061233c565b50600a54600b5461248991611d32565b8210156124a057600b54600a549350935050509091565b90939092509050565b5f805f806124b6856127a3565b90505f6124c2866127c4565b90505f6124d9826124d38986611d48565b90611d48565b979296509094509092505050565b5f8080806124f58886611d3d565b90505f6125028887611d3d565b90505f61250f8888611d3d565b90505f612520826124d38686611d48565b939b939a50919850919650505050505050565b5f805f805f8061254287611d5e565b6001600160a01b038f165f90815260026020526040902054959b509399509197509550935091506125739088611d48565b6001600160a01b038a165f908152600260209081526040808320939093556001905220546125a19087611d48565b6001600160a01b03808b165f9081526001602052604080822093909355908a16815220546125cf9086611d53565b6001600160a01b0389165f908152600160205260409020556125f0816127e5565b6125fa8483612867565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161263f91815260200190565b60405180910390a3505050505050505050565b5f805f805f8061266187611d5e565b6001600160a01b038f165f90815260016020526040902054959b509399509197509550935091506126929087611d48565b6001600160a01b03808b165f90815260016020908152604080832094909455918b168152600290915220546126c79084611d53565b6001600160a01b0389165f908152600260209081526040808320939093556001905220546125cf9086611d53565b5f805f805f8061270487611d5e565b6001600160a01b038f165f90815260016020526040902054959b509399509197509550935091506125a19087611d48565b5f805f805f8061274487611d5e565b6001600160a01b038f165f90815260026020526040902054959b509399509197509550935091506127759088611d48565b6001600160a01b038a165f908152600260209081526040808320939093556001905220546126929087611d48565b6015545f9061092a906064906127be90859061ffff16611d3d565b90611d32565b6015545f9061092a906064906127be90859062010000900461ffff16611d3d565b5f6127ee611d11565b90505f6127fb8383611d3d565b305f908152600160205260409020549091506128179082611d53565b305f9081526001602090815260408083209390935560069052205460ff161561122357305f908152600260205260409020546128539084611d53565b305f90815260026020526040902055505050565b600b546128749083611d48565b600b55600c546128849082611d53565b600c555050565b5f6020808352835180828501525f5b818110156128b65785810183015185820160400152820161289a565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146110e6575f80fd5b5f80604083850312156128fb575f80fd5b8235612906816128d6565b946020939093013593505050565b5f805f60608486031215612926575f80fd5b8335612931816128d6565b92506020840135612941816128d6565b929592945050506040919091013590565b5f60208284031215612962575f80fd5b5035919050565b5f60208284031215612979575f80fd5b8135610a17816128d6565b80151581146110e6575f80fd5b5f80604083850312156129a2575f80fd5b8235915060208301356129b481612984565b809150509250929050565b803561ffff811681146129d0575f80fd5b919050565b5f80604083850312156129e6575f80fd5b6129ef836129bf565b91506129fd602084016129bf565b90509250929050565b5f60208284031215612a16575f80fd5b8135610a1781612984565b5f8060408385031215612a32575f80fd5b8235612a3d816128d6565b915060208301356129b4816128d6565b5f8060408385031215612a5e575f80fd5b8235612a69816128d6565b915060208301356129b481612984565b600181811c90821680612a8d57607f821691505b602082108103612aab57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8181038181111561092a5761092a612afa565b634e487b7160e01b5f52603160045260245ffd5b5f60018201612b4657612b46612afa565b5060010190565b61ffff818116838216019080821115612b6857612b68612afa565b5092915050565b808202811582820484141761092a5761092a612afa565b5f60208284031215612b96575f80fd5b5051919050565b5f60208284031215612bad575f80fd5b8151610a1781612984565b5f82612bd257634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561092a5761092a612afa565b5f60208284031215612bfa575f80fd5b8151610a17816128d6565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612c535784516001600160a01b031683529383019391830191600101612c2e565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220720869c1405ea964b2ebb2d3d651491fb942ecf53363f3ed2a3215a050ee9d9364736f6c63430008140033

Deployed Bytecode

0x608060405260043610610278575f3560e01c8063715018a61161014a578063aacebbe3116100be578063dd62ed3e11610078578063dd62ed3e146107ab578063ea2f0b37146107ef578063ec2a520a1461080e578063efe23e861461082d578063f2fde38b1461084c578063f9d0831a1461086b575f80fd5b8063aacebbe3146106ec578063acb2ad6f1461070b578063afa4f3b21461072f578063b7b69ec51461074e578063c18bc1951461076d578063c49b9a801461078c575f80fd5b80638a8c523c1161010f5780638a8c523c146106555780638da5cb5b1461066957806395d89b4114610685578063a457c2d714610699578063a9059cbb146106b8578063aa4bde28146106d7575f80fd5b8063715018a6146105b757806375f0a874146105cb5780637afad249146105ea57806385141a771461060957806388f820201461061e575f80fd5b806339509351116101ec57806349bd5a5e116101a657806349bd5a5e146104ef5780634a74bb021461050e57806352390c021461052e5780635342acb41461054d578063672729991461058457806370a0823114610598575f80fd5b806339509351146104215780633bbac579146104405780633bd5d1731461046e578063437823ec1461048d5780634549b039146104ac57806347062402146104cb575f80fd5b806323b872dd1161023d57806323b872dd1461034d5780632b14ca561461036c5780632c735ef8146103ab5780632d838119146103c0578063313ce567146103df5780633685d41914610400575f80fd5b806306fdde0314610283578063095ea7b3146102ad57806313114a9d146102dc5780631694505e146102fa57806318160ddd14610339575f80fd5b3661027f57005b5f80fd5b34801561028e575f80fd5b5061029761088a565b6040516102a4919061288b565b60405180910390f35b3480156102b8575f80fd5b506102cc6102c73660046128ea565b61091a565b60405190151581526020016102a4565b3480156102e7575f80fd5b50600c545b6040519081526020016102a4565b348015610305575f80fd5b506015546103219064010000000090046001600160a01b031681565b6040516001600160a01b0390911681526020016102a4565b348015610344575f80fd5b50600a546102ec565b348015610358575f80fd5b506102cc610367366004612914565b610930565b348015610377575f80fd5b506013546103909061ffff808216916201000090041682565b6040805161ffff9384168152929091166020830152016102a4565b3480156103b6575f80fd5b506102ec600d5481565b3480156103cb575f80fd5b506102ec6103da366004612952565b610997565b3480156103ea575f80fd5b5060115460405160ff90911681526020016102a4565b34801561040b575f80fd5b5061041f61041a366004612969565b610a1e565b005b34801561042c575f80fd5b506102cc61043b3660046128ea565b610c8e565b34801561044b575f80fd5b506102cc61045a366004612969565b60046020525f908152604090205460ff1681565b348015610479575f80fd5b5061041f610488366004612952565b610cc3565b348015610498575f80fd5b5061041f6104a7366004612969565b610da9565b3480156104b7575f80fd5b506102ec6104c6366004612991565b610e50565b3480156104d6575f80fd5b506012546103909061ffff808216916201000090041682565b3480156104fa575f80fd5b50601654610321906001600160a01b031681565b348015610519575f80fd5b506017546102cc90600160a81b900460ff1681565b348015610539575f80fd5b5061041f610548366004612969565b610eda565b348015610558575f80fd5b506102cc610567366004612969565b6001600160a01b03165f9081526005602052604090205460ff1690565b34801561058f575f80fd5b5061041f611027565b3480156105a3575f80fd5b506102ec6105b2366004612969565b6110e9565b3480156105c2575f80fd5b5061041f611145565b3480156105d6575f80fd5b50601754610321906001600160a01b031681565b3480156105f5575f80fd5b5061041f6106043660046129d5565b611179565b348015610614575f80fd5b5061032161dead81565b348015610629575f80fd5b506102cc610638366004612969565b6001600160a01b03165f9081526006602052604090205460ff1690565b348015610660575f80fd5b5061041f611228565b348015610674575f80fd5b505f546001600160a01b0316610321565b348015610690575f80fd5b506102976112a9565b3480156106a4575f80fd5b506102cc6106b33660046128ea565b6112b8565b3480156106c3575f80fd5b506102cc6106d23660046128ea565b611305565b3480156106e2575f80fd5b506102ec600e5481565b3480156106f7575f80fd5b5061041f610706366004612969565b611311565b348015610716575f80fd5b506014546103909061ffff808216916201000090041682565b34801561073a575f80fd5b5061041f610749366004612952565b61136e565b348015610759575f80fd5b5061041f6107683660046129d5565b6113af565b348015610778575f80fd5b5061041f610787366004612952565b611459565b348015610797575f80fd5b5061041f6107a6366004612a06565b6114f8565b3480156107b6575f80fd5b506102ec6107c5366004612a21565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b3480156107fa575f80fd5b5061041f610809366004612969565b611579565b348015610819575f80fd5b5061041f6108283660046129d5565b61161c565b348015610838575f80fd5b5061041f610847366004612a4d565b6116c6565b348015610857575f80fd5b5061041f610866366004612969565b611719565b348015610876575f80fd5b5061041f610885366004612969565b6117b0565b6060600f805461089990612a79565b80601f01602080910402602001604051908101604052809291908181526020018280546108c590612a79565b80156109105780601f106108e757610100808354040283529160200191610910565b820191905f5260205f20905b8154815290600101906020018083116108f357829003601f168201915b5050505050905090565b5f6109263384846118d9565b5060015b92915050565b5f61093c8484846119fc565b61098d843361098885604051806060016040528060288152602001612c75602891396001600160a01b038a165f9081526003602090815260408083203384529091529020549190611ce6565b6118d9565b5060019392505050565b5f600b54821115610a025760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b5f610a0b611d11565b9050610a178382611d32565b9392505050565b5f546001600160a01b03163314610a475760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b0381165f9081526006602052604090205460ff16610aae5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109f9565b5f5b600954811015610c8a57816001600160a01b031660098281548110610ad757610ad7612ae6565b5f918252602090912001546001600160a01b031603610c78576001600160a01b0382165f9081526002602052604090205415610b8a575f610b37610b19611d11565b6001600160a01b0385165f9081526002602052604090205490611d3d565b6001600160a01b0384165f90815260016020526040902054909150610b6a90610b61908390612b0e565b600b5490611d48565b600b556001600160a01b0383165f90815260016020526040902055610ba3565b6001600160a01b0382165f908152600160205260408120555b6001600160a01b0382165f9081526002602052604081205560098054610bcb90600190612b0e565b81548110610bdb57610bdb612ae6565b5f91825260209091200154600980546001600160a01b039092169183908110610c0657610c06612ae6565b5f91825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600690915260409020805460ff191690556009805480610c5457610c54612b21565b5f8281526020902081015f1990810180546001600160a01b03191690550190555050565b80610c8281612b35565b915050610ab0565b5050565b335f8181526003602090815260408083206001600160a01b038716845290915281205490916109269185906109889086611d53565b335f8181526006602052604090205460ff1615610d375760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016109f9565b5f610d4183611d5e565b505050506001600160a01b0384165f90815260016020526040902054919250610d6c91905082611d48565b6001600160a01b0383165f90815260016020526040902055600b54610d919082611d48565b600b55600c54610da19084611d53565b600c55505050565b5f546001600160a01b03163314610dd25760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b0381165f9081526005602052604090205460ff1615610e2d5760405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e48195e18db1d59195960821b60448201526064016109f9565b6001600160a01b03165f908152600560205260409020805460ff19166001179055565b5f600a54831115610ea35760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016109f9565b81610ec1575f610eb284611d5e565b5093955061092a945050505050565b5f610ecb84611d5e565b5092955061092a945050505050565b5f546001600160a01b03163314610f035760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b0381165f9081526006602052604090205460ff1615610f6b5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109f9565b6001600160a01b0381165f9081526001602052604090205415610fc2576001600160a01b0381165f90815260016020526040902054610fa990610997565b6001600160a01b0382165f908152600260205260409020555b6001600160a01b03165f818152600660205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b5f546001600160a01b031633146110505760405162461bcd60e51b81526004016109f990612ab1565b5f80546040516001600160a01b039091169047908381818185875af1925050503d805f811461109a576040519150601f19603f3d011682016040523d82523d5f602084013e61109f565b606091505b50509050806110e65760405162461bcd60e51b8152602060048201526013602482015272195d1a081d1c985b9cd9995c8819985a5b1959606a1b60448201526064016109f9565b50565b6001600160a01b0381165f9081526006602052604081205460ff161561112457506001600160a01b03165f9081526002602052604090205490565b6001600160a01b0382165f9081526001602052604090205461092a90610997565b5f546001600160a01b0316331461116e5760405162461bcd60e51b81526004016109f990612ab1565b6111775f611da6565b565b5f546001600160a01b031633146111a25760405162461bcd60e51b81526004016109f990612ab1565b6012805461ffff838116620100000263ffffffff19909216908516171790555f6111cc8284612b4d565b61ffff16905060058111156112235760405162461bcd60e51b815260206004820152601860248201527f6d6178206275792066656573206c696d6974206973203525000000000000000060448201526064016109f9565b505050565b5f546001600160a01b031633146112515760405162461bcd60e51b81526004016109f990612ab1565b60085460ff16156112965760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e48195b98589b1959608a1b60448201526064016109f9565b6008805460ff1916600117905542600d55565b60606010805461089990612a79565b5f610926338461098885604051806060016040528060258152602001612c9d60259139335f9081526003602090815260408083206001600160a01b038d1684529091529020549190611ce6565b5f6109263384846119fc565b5f546001600160a01b0316331461133a5760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b03811661134c575f80fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b5f546001600160a01b031633146113975760405162461bcd60e51b81526004016109f990612ab1565b6113a981670de0b6b3a7640000612b6f565b60185550565b5f546001600160a01b031633146113d85760405162461bcd60e51b81526004016109f990612ab1565b6013805461ffff838116620100000263ffffffff19909216908516171790555f6114028383612b4d565b61ffff16905060058111156112235760405162461bcd60e51b815260206004820152601d60248201527f6d6178207472616e736665722066656573206c696d697420697320352500000060448201526064016109f9565b5f546001600160a01b031633146114825760405162461bcd60e51b81526004016109f990612ab1565b6b1363156bbee3016d700000008110156114f35760405162461bcd60e51b815260206004820152602c60248201527f616d6f756e74206d7573742062652067726561746f72207468616e203620626960448201526b6c6c696f6e20746f6b656e7360a01b60648201526084016109f9565b600e55565b5f546001600160a01b031633146115215760405162461bcd60e51b81526004016109f990612ab1565b60178054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061156e90831515815260200190565b60405180910390a150565b5f546001600160a01b031633146115a25760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b0381165f9081526005602052604090205460ff166115fc5760405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e481a5b98db1d59195960821b60448201526064016109f9565b6001600160a01b03165f908152600560205260409020805460ff19169055565b5f546001600160a01b031633146116455760405162461bcd60e51b81526004016109f990612ab1565b6013805461ffff838116620100000263ffffffff19909216908516171790555f61166f8383612b4d565b61ffff16905060058111156112235760405162461bcd60e51b815260206004820152601960248201527f6d61782073656c6c2066656573206c696d69742069732035250000000000000060448201526064016109f9565b5f546001600160a01b031633146116ef5760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b03919091165f908152600460205260409020805460ff1916911515919091179055565b5f546001600160a01b031633146117425760405162461bcd60e51b81526004016109f990612ab1565b6001600160a01b0381166117a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f9565b6110e681611da6565b5f546001600160a01b031633146117d95760405162461bcd60e51b81526004016109f990612ab1565b6040516370a0823160e01b815230600482015281905f906001600160a01b038316906370a0823190602401602060405180830381865afa15801561181f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118439190612b86565b9050816001600160a01b031663a9059cbb6118655f546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303815f875af11580156118af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118d39190612b9d565b50505050565b6001600160a01b03831661193b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109f9565b6001600160a01b03821661199c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109f9565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109f9565b6001600160a01b038216611ac25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109f9565b5f8111611b235760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016109f9565b6001600160a01b0383165f9081526004602052604090205460ff16158015611b6357506001600160a01b0382165f9081526004602052604090205460ff16155b611ba15760405162461bcd60e51b815260206004820152600f60248201526e109bdd081b9bdd08185b1b1bddd959608a1b60448201526064016109f9565b5f546001600160a01b038481169116141580611bd557506001600160a01b0383165f9081526005602052604090205460ff16155b15611c225760085460ff16611c225760405162461bcd60e51b815260206004820152601360248201527274726164696e67206973206e6f74206c69766560681b60448201526064016109f9565b5f611c2c306110e9565b60185490915081108015908190611c4d5750601754600160a01b900460ff16155b8015611c6757506016546001600160a01b03868116911614155b8015611c7c5750601754600160a81b900460ff165b15611c8a57611c8a82611df5565b6001600160a01b0385165f9081526005602052604090205460019060ff1680611cca57506001600160a01b0385165f9081526005602052604090205460ff165b15611cd257505f5b611cde86868684611f93565b505050505050565b5f8184841115611d095760405162461bcd60e51b81526004016109f9919061288b565b505050900390565b5f805f611d1c612330565b9092509050611d2b8282611d32565b9250505090565b5f610a178284612bb8565b5f610a178284612b6f565b5f610a178284612b0e565b5f610a178284612bd7565b5f805f805f805f805f611d708a6124a9565b9250925092505f805f611d8c8d8686611d87611d11565b6124e7565b919f909e50909c50959a5093985091965092945050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6017805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110611e3b57611e3b612ae6565b60200260200101906001600160a01b031690816001600160a01b031681525050601560049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ed09190612bea565b81600181518110611ee357611ee3612ae6565b6001600160a01b039283166020918202929092010152601554611f11913091640100000000900416846118d9565b60155460175460405163791ac94760e01b81526001600160a01b0364010000000090930483169263791ac94792611f559287925f9288929116904290600401612c05565b5f604051808303815f87803b158015611f6c575f80fd5b505af1158015611f7e573d5f803e3d5ffd5b50506017805460ff60a01b1916905550505050565b611fa56015805463ffffffff19169055565b80156121e4576016546001600160a01b0384811691161461202557600e5482611fcd856110e9565b611fd79190612bd7565b11156120255760405162461bcd60e51b815260206004820152601960248201527f4d61782077616c6c657420616d6f756e7420657863656564730000000000000060448201526064016109f9565b6016546001600160a01b03908116908516036120c15761206a6012546015805461ffff8084166201000090810263ffffffff1990931694041692909217919091179055565b6001600160a01b0383165f908152600760205260409020439055600d546018906120949042612b0e565b116120bc576001600160a01b0383165f908152600460205260409020805460ff191660011790555b6121e4565b6016546001600160a01b0390811690841603612162576001600160a01b0384165f9081526007602052604090205443116121335760405162461bcd60e51b8152602060048201526013602482015272195c9c9bdc8e881cd85b991dda58da08189bdd606a1b60448201526064016109f9565b6120bc6013546015805461ffff8084166201000090810263ffffffff1990931694041692909217919091179055565b6001600160a01b0384165f9081526007602052604090205443116121be5760405162461bcd60e51b8152602060048201526013602482015272195c9c9bdc8e881cd85b991dda58da08189bdd606a1b60448201526064016109f9565b6014546015805463ffffffff1916620100009283900461ffff1690811792029190911790555b6001600160a01b0384165f9081526006602052604090205460ff16801561222357506001600160a01b0383165f9081526006602052604090205460ff16155b1561223857612233848484612533565b6118d3565b6001600160a01b0384165f9081526006602052604090205460ff1615801561227757506001600160a01b0383165f9081526006602052604090205460ff165b1561228757612233848484612652565b6001600160a01b0384165f9081526006602052604090205460ff161580156122c757506001600160a01b0383165f9081526006602052604090205460ff16155b156122d7576122338484846126f5565b6001600160a01b0384165f9081526006602052604090205460ff16801561231557506001600160a01b0383165f9081526006602052604090205460ff165b1561232557612233848484612735565b6118d38484846126f5565b600b54600a545f918291825b600954811015612479578260015f6009848154811061235d5761235d612ae6565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205411806123c557508160025f6009848154811061239f5761239f612ae6565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054115b156123db57600b54600a54945094505050509091565b61241f60015f600984815481106123f4576123f4612ae6565b5f9182526020808320909101546001600160a01b031683528201929092526040019020548490611d48565b925061246560025f6009848154811061243a5761243a612ae6565b5f9182526020808320909101546001600160a01b031683528201929092526040019020548390611d48565b91508061247181612b35565b91505061233c565b50600a54600b5461248991611d32565b8210156124a057600b54600a549350935050509091565b90939092509050565b5f805f806124b6856127a3565b90505f6124c2866127c4565b90505f6124d9826124d38986611d48565b90611d48565b979296509094509092505050565b5f8080806124f58886611d3d565b90505f6125028887611d3d565b90505f61250f8888611d3d565b90505f612520826124d38686611d48565b939b939a50919850919650505050505050565b5f805f805f8061254287611d5e565b6001600160a01b038f165f90815260026020526040902054959b509399509197509550935091506125739088611d48565b6001600160a01b038a165f908152600260209081526040808320939093556001905220546125a19087611d48565b6001600160a01b03808b165f9081526001602052604080822093909355908a16815220546125cf9086611d53565b6001600160a01b0389165f908152600160205260409020556125f0816127e5565b6125fa8483612867565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161263f91815260200190565b60405180910390a3505050505050505050565b5f805f805f8061266187611d5e565b6001600160a01b038f165f90815260016020526040902054959b509399509197509550935091506126929087611d48565b6001600160a01b03808b165f90815260016020908152604080832094909455918b168152600290915220546126c79084611d53565b6001600160a01b0389165f908152600260209081526040808320939093556001905220546125cf9086611d53565b5f805f805f8061270487611d5e565b6001600160a01b038f165f90815260016020526040902054959b509399509197509550935091506125a19087611d48565b5f805f805f8061274487611d5e565b6001600160a01b038f165f90815260026020526040902054959b509399509197509550935091506127759088611d48565b6001600160a01b038a165f908152600260209081526040808320939093556001905220546126929087611d48565b6015545f9061092a906064906127be90859061ffff16611d3d565b90611d32565b6015545f9061092a906064906127be90859062010000900461ffff16611d3d565b5f6127ee611d11565b90505f6127fb8383611d3d565b305f908152600160205260409020549091506128179082611d53565b305f9081526001602090815260408083209390935560069052205460ff161561122357305f908152600260205260409020546128539084611d53565b305f90815260026020526040902055505050565b600b546128749083611d48565b600b55600c546128849082611d53565b600c555050565b5f6020808352835180828501525f5b818110156128b65785810183015185820160400152820161289a565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146110e6575f80fd5b5f80604083850312156128fb575f80fd5b8235612906816128d6565b946020939093013593505050565b5f805f60608486031215612926575f80fd5b8335612931816128d6565b92506020840135612941816128d6565b929592945050506040919091013590565b5f60208284031215612962575f80fd5b5035919050565b5f60208284031215612979575f80fd5b8135610a17816128d6565b80151581146110e6575f80fd5b5f80604083850312156129a2575f80fd5b8235915060208301356129b481612984565b809150509250929050565b803561ffff811681146129d0575f80fd5b919050565b5f80604083850312156129e6575f80fd5b6129ef836129bf565b91506129fd602084016129bf565b90509250929050565b5f60208284031215612a16575f80fd5b8135610a1781612984565b5f8060408385031215612a32575f80fd5b8235612a3d816128d6565b915060208301356129b4816128d6565b5f8060408385031215612a5e575f80fd5b8235612a69816128d6565b915060208301356129b481612984565b600181811c90821680612a8d57607f821691505b602082108103612aab57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8181038181111561092a5761092a612afa565b634e487b7160e01b5f52603160045260245ffd5b5f60018201612b4657612b46612afa565b5060010190565b61ffff818116838216019080821115612b6857612b68612afa565b5092915050565b808202811582820484141761092a5761092a612afa565b5f60208284031215612b96575f80fd5b5051919050565b5f60208284031215612bad575f80fd5b8151610a1781612984565b5f82612bd257634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561092a5761092a612afa565b5f60208284031215612bfa575f80fd5b8151610a17816128d6565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612c535784516001600160a01b031683529383019391830191600101612c2e565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220720869c1405ea964b2ebb2d3d651491fb942ecf53363f3ed2a3215a050ee9d9364736f6c63430008140033

Deployed Bytecode Sourcemap

28561:24648:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31823:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32808:193;;;;;;;;;;-1:-1:-1;32808:193:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;32808:193:0;1023:187:1;34436:87:0;;;;;;;;;;-1:-1:-1;34505:10:0;;34436:87;;;1361:25:1;;;1349:2;1334:18;34436:87:0;1215:177:1;29998:41:0;;;;;;;;;;-1:-1:-1;29998:41:0;;;;;;;-1:-1:-1;;;;;29998:41:0;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;29998:41:0;1397:229:1;32100:95:0;;;;;;;;;;-1:-1:-1;32180:7:0;;32100:95;;33009:446;;;;;;;;;;-1:-1:-1;33009:446:0;;;;;:::i;:::-;;:::i;29857:22::-;;;;;;;;;;-1:-1:-1;29857:22:0;;;;;;;;;;;;;;;;;;;2272:6:1;2305:15;;;2287:34;;2357:15;;;;2352:2;2337:18;;2330:43;2235:18;29857:22:0;2092:287:1;29324:29:0;;;;;;;;;;;;;;;;35463:322;;;;;;;;;;-1:-1:-1;35463:322:0;;;;;:::i;:::-;;:::i;32009:83::-;;;;;;;;;;-1:-1:-1;32075:9:0;;32009:83;;32075:9;;;;2711:36:1;;2699:2;2684:18;32009:83:0;2569:184:1;36366:882:0;;;;;;;;;;-1:-1:-1;36366:882:0;;;;;:::i;:::-;;:::i;:::-;;33463:300;;;;;;;;;;-1:-1:-1;33463:300:0;;;;;:::i;:::-;;:::i;28858:37::-;;;;;;;;;;-1:-1:-1;28858:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34539:419;;;;;;;;;;-1:-1:-1;34539:419:0;;;;;:::i;:::-;;:::i;37368:182::-;;;;;;;;;;-1:-1:-1;37368:182:0;;;;;:::i;:::-;;:::i;34972:479::-;;;;;;;;;;-1:-1:-1;34972:479:0;;;;;:::i;:::-;;:::i;29830:20::-;;;;;;;;;;-1:-1:-1;29830:20:0;;;;;;;;;;;;;;;30046:28;;;;;;;;;;-1:-1:-1;30046:28:0;;;;-1:-1:-1;;;;;30046:28:0;;;30222:40;;;;;;;;;;-1:-1:-1;30222:40:0;;;;-1:-1:-1;;;30222:40:0;;;;;;35912:332;;;;;;;;;;-1:-1:-1;35912:332:0;;;;;:::i;:::-;;:::i;46057:124::-;;;;;;;;;;-1:-1:-1;46057:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;46146:27:0;46122:4;46146:27;;;:18;:27;;;;;;;;;46057:124;41513:167;;;;;;;;;;;;;:::i;32203:198::-;;;;;;;;;;-1:-1:-1;32203:198:0;;;;;:::i;:::-;;:::i;9181:103::-;;;;;;;;;;;;;:::i;30081:30::-;;;;;;;;;;-1:-1:-1;30081:30:0;;;;-1:-1:-1;;;;;30081:30:0;;;38382:286;;;;;;;;;;-1:-1:-1;38382:286:0;;;;;:::i;:::-;;:::i;30118:53::-;;;;;;;;;;;;30164:6;30118:53;;34249:120;;;;;;;;;;-1:-1:-1;34249:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;34341:20:0;34317:4;34341:20;;;:11;:20;;;;;;;;;34249:120;44972:187;;;;;;;;;;;;;:::i;8530:87::-;;;;;;;;;;-1:-1:-1;8576:7:0;8603:6;-1:-1:-1;;;;;8603:6:0;8530:87;;31914;;;;;;;;;;;;;:::i;33771:400::-;;;;;;;;;;-1:-1:-1;33771:400:0;;;;;:::i;:::-;;:::i;32409:199::-;;;;;;;;;;-1:-1:-1;32409:199:0;;;;;:::i;:::-;;:::i;29360:50::-;;;;;;;;;;;;;;;;39890:151;;;;;;;;;;-1:-1:-1;39890:151:0;;;;;:::i;:::-;;:::i;29886:30::-;;;;;;;;;;-1:-1:-1;29886:30:0;;;;;;;;;;;;;;;40579:161;;;;;;;;;;-1:-1:-1;40579:161:0;;;;;:::i;:::-;;:::i;39399:316::-;;;;;;;;;;-1:-1:-1;39399:316:0;;;;;:::i;:::-;;:::i;40233:207::-;;;;;;;;;;-1:-1:-1;40233:207:0;;;;;:::i;:::-;;:::i;40899:173::-;;;;;;;;;;-1:-1:-1;40899:173:0;;;;;:::i;:::-;;:::i;32616:184::-;;;;;;;;;;-1:-1:-1;32616:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;32765:18:0;;;32733:7;32765:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32616:184;37689:180;;;;;;;;;;-1:-1:-1;37689:180:0;;;;;:::i;:::-;;:::i;38883:299::-;;;;;;;;;;-1:-1:-1;38883:299:0;;;;;:::i;:::-;;:::i;38070:105::-;;;;;;;;;;-1:-1:-1;38070:105:0;;;;;:::i;:::-;;:::i;9439:238::-;;;;;;;;;;-1:-1:-1;9439:238:0;;;;;:::i;:::-;;:::i;41206:226::-;;;;;;;;;;-1:-1:-1;41206:226:0;;;;;:::i;:::-;;:::i;31823:83::-;31860:13;31893:5;31886:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31823:83;:::o;32808:193::-;32910:4;32932:39;7393:10;32955:7;32964:6;32932:8;:39::i;:::-;-1:-1:-1;32989:4:0;32808:193;;;;;:::o;33009:446::-;33141:4;33158:36;33168:6;33176:9;33187:6;33158:9;:36::i;:::-;33205:220;33228:6;7393:10;33276:138;33332:6;33276:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33276:19:0;;;;;;:11;:19;;;;;;;;7393:10;33276:33;;;;;;;;;;:37;:138::i;:::-;33205:8;:220::i;:::-;-1:-1:-1;33443:4:0;33009:446;;;;;:::o;35463:322::-;35557:7;35615;;35604;:18;;35582:110;;;;-1:-1:-1;;;35582:110:0;;5693:2:1;35582:110:0;;;5675:21:1;5732:2;5712:18;;;5705:30;5771:34;5751:18;;;5744:62;-1:-1:-1;;;5822:18:1;;;5815:40;5872:19;;35582:110:0;;;;;;;;;35703:19;35725:10;:8;:10::i;:::-;35703:32;-1:-1:-1;35753:24:0;:7;35703:32;35753:11;:24::i;:::-;35746:31;35463:322;-1:-1:-1;;;35463:322:0:o;36366:882::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36448:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;;::::1;;36440:61;;;::::0;-1:-1:-1;;;36440:61:0;;6465:2:1;36440:61:0::1;::::0;::::1;6447:21:1::0;6504:2;6484:18;;;6477:30;6543:29;6523:18;;;6516:57;6590:18;;36440:61:0::1;6263:351:1::0;36440:61:0::1;36520:9;36515:726;36539:9;:16:::0;36535:20;::::1;36515:726;;;36598:7;-1:-1:-1::0;;;;;36582:23:0::1;:9;36592:1;36582:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;36582:12:0::1;:23:::0;36578:652:::1;;-1:-1:-1::0;;;;;36698:17:0;::::1;36718:1;36698:17:::0;;;:7:::1;:17;::::0;;;;;:21;36694:317:::1;;36740:17;36760:33;36782:10;:8;:10::i;:::-;-1:-1:-1::0;;;;;36760:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;;;:21:::1;:33::i;:::-;-1:-1:-1::0;;;;;36834:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;;36740:53;;-1:-1:-1;36822:40:0::1;::::0;36834:27:::1;::::0;36740:53;;36834:27:::1;:::i;:::-;36822:7;::::0;;:11:::1;:40::i;:::-;36812:7;:50:::0;-1:-1:-1;;;;;36881:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:28;36694:317:::1;;;-1:-1:-1::0;;;;;36970:17:0;::::1;36990:1;36970:17:::0;;;:7:::1;:17;::::0;;;;:21;36694:317:::1;-1:-1:-1::0;;;;;37028:16:0;::::1;37046:1;37028:16:::0;;;:7:::1;:16;::::0;;;;:19;37081:9:::1;37092:16:::0;;:18:::1;::::0;37109:1:::1;::::0;37092:18:::1;:::i;:::-;37081:30;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;37065:9:::1;:13:::0;;-1:-1:-1;;;;;37081:30:0;;::::1;::::0;37076:1;;37065:13;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;37065:46:0::1;-1:-1:-1::0;;;;;37065:46:0;;::::1;;::::0;;37129:21;;::::1;::::0;;:11:::1;:21:::0;;;;;;:29;;-1:-1:-1;;37129:29:0::1;::::0;;37176:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;37176:15:0;;;;;-1:-1:-1;;;;;;37176:15:0::1;::::0;;;;;36515:726:::1;36366:882:::0;:::o;36578:652::-:1;36557:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36515:726;;;;36366:882:::0;:::o;33463:300::-;7393:10;33578:4;33672:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33672:34:0;;;;;;;;;;33578:4;;33600:133;;33650:7;;33672:50;;33711:10;33672:38;:50::i;34539:419::-;7393:10;34591:14;34654:19;;;:11;:19;;;;;;;;34653:20;34631:114;;;;-1:-1:-1;;;34631:114:0;;7490:2:1;34631:114:0;;;7472:21:1;7529:2;7509:18;;;7502:30;7568:34;7548:18;;;7541:62;-1:-1:-1;;;7619:18:1;;;7612:42;7671:19;;34631:114:0;7288:408:1;34631:114:0;34757:15;34786:19;34797:7;34786:10;:19::i;:::-;-1:-1:-1;;;;;;;;;34834:15:0;;;;;;:7;:15;;;;;;34756:49;;-1:-1:-1;34834:28:0;;:15;-1:-1:-1;34756:49:0;34834:19;:28::i;:::-;-1:-1:-1;;;;;34816:15:0;;;;;;:7;:15;;;;;:46;34883:7;;:20;;34895:7;34883:11;:20::i;:::-;34873:7;:30;34927:10;;:23;;34942:7;34927:14;:23::i;:::-;34914:10;:36;-1:-1:-1;;;34539:419:0:o;37368:182::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37449:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;::::1;;37448:28;37439:58;;;::::0;-1:-1:-1;;;37439:58:0;;7903:2:1;37439:58:0::1;::::0;::::1;7885:21:1::0;7942:2;7922:18;;;7915:30;-1:-1:-1;;;7961:18:1;;;7954:46;8017:18;;37439:58:0::1;7701:340:1::0;37439:58:0::1;-1:-1:-1::0;;;;;37508:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;37508:34:0::1;37538:4;37508:34;::::0;;37368:182::o;34972:479::-;35090:7;35134;;35123;:18;;35115:62;;;;-1:-1:-1;;;35115:62:0;;8248:2:1;35115:62:0;;;8230:21:1;8287:2;8267:18;;;8260:30;8326:33;8306:18;;;8299:61;8377:18;;35115:62:0;8046:355:1;35115:62:0;35193:17;35188:256;;35228:15;35257:19;35268:7;35257:10;:19::i;:::-;-1:-1:-1;35227:49:0;;-1:-1:-1;35291:14:0;;-1:-1:-1;;;;;35291:14:0;35188:256;35341:23;35376:19;35387:7;35376:10;:19::i;:::-;-1:-1:-1;35338:57:0;;-1:-1:-1;35410:22:0;;-1:-1:-1;;;;;35410:22:0;35912:332;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35993:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35992:21;35984:61;;;::::0;-1:-1:-1;;;35984:61:0;;6465:2:1;35984:61:0::1;::::0;::::1;6447:21:1::0;6504:2;6484:18;;;6477:30;6543:29;6523:18;;;6516:57;6590:18;;35984:61:0::1;6263:351:1::0;35984:61:0::1;-1:-1:-1::0;;;;;36060:16:0;::::1;36079:1;36060:16:::0;;;:7:::1;:16;::::0;;;;;:20;36056:109:::1;;-1:-1:-1::0;;;;;36136:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;36116:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;36097:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;36056:109:::1;-1:-1:-1::0;;;;;36175:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;36175:27:0::1;36198:4;36175:27:::0;;::::1;::::0;;;36213:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;36213:23:0::1;::::0;;::::1;::::0;;35912:332::o;41513:167::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;41564:9:::1;8603:6:::0;;41578:46:::1;::::0;-1:-1:-1;;;;;8603:6:0;;;;41598:21:::1;::::0;41564:9;41578:46;41564:9;41578:46;41598:21;8603:6;41578:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41563:61;;;41644:4;41635:37;;;::::0;-1:-1:-1;;;41635:37:0;;8818:2:1;41635:37:0::1;::::0;::::1;8800:21:1::0;8857:2;8837:18;;;8830:30;-1:-1:-1;;;8876:18:1;;;8869:49;8935:18;;41635:37:0::1;8616:343:1::0;41635:37:0::1;41552:128;41513:167::o:0;32203:198::-;-1:-1:-1;;;;;32293:20:0;;32269:7;32293:20;;;:11;:20;;;;;;;;32289:49;;;-1:-1:-1;;;;;;32322:16:0;;;;;:7;:16;;;;;;;32203:198::o;32289:49::-;-1:-1:-1;;;;;32376:16:0;;;;;;:7;:16;;;;;;32356:37;;:19;:37::i;9181:103::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;9246:30:::1;9273:1;9246:18;:30::i;:::-;9181:103::o:0;38382:286::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;38471:6:::1;:31:::0;;::::1;38513:26:::0;;::::1;::::0;::::1;-1:-1:-1::0;;38513:26:0;;;38471:31;;::::1;38513:26:::0;::::1;::::0;;38471:19:::1;38580:15;38536:3:::0;38493:9;38580:15:::1;:::i;:::-;38558:37;;;;38630:1;38615:11;:16;;38607:53;;;::::0;-1:-1:-1;;;38607:53:0;;9339:2:1;38607:53:0::1;::::0;::::1;9321:21:1::0;9378:2;9358:18;;;9351:30;9417:26;9397:18;;;9390:54;9461:18;;38607:53:0::1;9137:348:1::0;38607:53:0::1;38451:217;38382:286:::0;;:::o;44972:187::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;45038:16:::1;::::0;::::1;;45037:17;45028:46;;;::::0;-1:-1:-1;;;45028:46:0;;9692:2:1;45028:46:0::1;::::0;::::1;9674:21:1::0;9731:2;9711:18;;;9704:30;-1:-1:-1;;;9750:18:1;;;9743:45;9805:18;;45028:46:0::1;9490:339:1::0;45028:46:0::1;45085:16;:23:::0;;-1:-1:-1;;45085:23:0::1;45104:4;45085:23;::::0;;45136:15:::1;45119:14;:32:::0;44972:187::o;31914:87::-;31953:13;31986:7;31979:14;;;;;:::i;33771:400::-;33891:4;33913:228;7393:10;33963:7;33985:145;34042:15;33985:145;;;;;;;;;;;;;;;;;7393:10;33985:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33985:34:0;;;;;;;;;;;;:38;:145::i;32409:199::-;32514:4;32536:42;7393:10;32560:9;32571:6;32536:9;:42::i;39890:151::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39977:20:0;::::1;39968:30;;;::::0;::::1;;40009:15;:24:::0;;-1:-1:-1;;;;;;40009:24:0::1;-1:-1:-1::0;;;;;40009:24:0;;;::::1;::::0;;;::::1;::::0;;39890:151::o;40579:161::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;40714:18:::1;:9:::0;40726:6:::1;40714:18;:::i;:::-;40682:29;:50:::0;-1:-1:-1;40579:161:0:o;39399:316::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;39509:7:::1;:32:::0;;::::1;39552:27:::0;;::::1;::::0;::::1;-1:-1:-1::0;;39552:27:0;;;39509:32;;::::1;39552:27:::0;::::1;::::0;;39509:20:::1;39617:16;39532:9:::0;39576:3;39617:16:::1;:::i;:::-;39590:43;;;;39672:1;39652:16;:21;;39644:63;;;::::0;-1:-1:-1;;;39644:63:0;;10209:2:1;39644:63:0::1;::::0;::::1;10191:21:1::0;10248:2;10228:18;;;10221:30;10287:31;10267:18;;;10260:59;10336:18;;39644:63:0::1;10007:353:1::0;40233:207:0;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;40331:17:::1;40320:6;:28;;40311:86;;;::::0;-1:-1:-1;;;40311:86:0;;10567:2:1;40311:86:0::1;::::0;::::1;10549:21:1::0;10606:2;10586:18;;;10579:30;10645:34;10625:18;;;10618:62;-1:-1:-1;;;10696:18:1;;;10689:42;10748:19;;40311:86:0::1;10365:408:1::0;40311:86:0::1;40408:15;:24:::0;40233:207::o;40899:173::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;40978:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;40978:32:0::1;-1:-1:-1::0;;;;40978:32:0;;::::1;;::::0;;41026:38:::1;::::0;::::1;::::0;::::1;::::0;41002:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;41026:38:0::1;;;;;;;;40899:173:::0;:::o;37689:180::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37767:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;::::1;;37758:57;;;::::0;-1:-1:-1;;;37758:57:0;;10980:2:1;37758:57:0::1;::::0;::::1;10962:21:1::0;11019:2;10999:18;;;10992:30;-1:-1:-1;;;11038:18:1;;;11031:46;11094:18;;37758:57:0::1;10778:340:1::0;37758:57:0::1;-1:-1:-1::0;;;;;37826:27:0::1;37856:5;37826:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;37826:35:0::1;::::0;;37689:180::o;38883:299::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;38988:7:::1;:32:::0;;::::1;39031:27:::0;;::::1;::::0;::::1;-1:-1:-1::0;;39031:27:0;;;38988:32;;::::1;39031:27:::0;::::1;::::0;;38988:20:::1;39092:16;39011:9:::0;39055:3;39092:16:::1;:::i;:::-;39069:39;;;;39143:1;39127:12;:17;;39119:55;;;::::0;-1:-1:-1;;;39119:55:0;;11325:2:1;39119:55:0::1;::::0;::::1;11307:21:1::0;11364:2;11344:18;;;11337:30;11403:27;11383:18;;;11376:55;11448:18;;39119:55:0::1;11123:349:1::0;38070:105:0;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38147:10:0;;;::::1;;::::0;;;:5:::1;:10;::::0;;;;:20;;-1:-1:-1;;38147:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38070:105::o;9439:238::-;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9542:22:0;::::1;9520:110;;;::::0;-1:-1:-1;;;9520:110:0;;11679:2:1;9520:110:0::1;::::0;::::1;11661:21:1::0;11718:2;11698:18;;;11691:30;11757:34;11737:18;;;11730:62;-1:-1:-1;;;11808:18:1;;;11801:36;11854:19;;9520:110:0::1;11477:402:1::0;9520:110:0::1;9641:28;9660:8;9641:18;:28::i;41206:226::-:0;8576:7;8603:6;-1:-1:-1;;;;;8603:6:0;7393:10;8750:23;8742:68;;;;-1:-1:-1;;;8742:68:0;;;;;;;:::i;:::-;41341:35:::1;::::0;-1:-1:-1;;;41341:35:0;;41370:4:::1;41341:35;::::0;::::1;1569:51:1::0;41305:6:0;;41278:17:::1;::::0;-1:-1:-1;;;;;41341:20:0;::::1;::::0;::::1;::::0;1542:18:1;;41341:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41323:53;;41387:10;-1:-1:-1::0;;;;;41387:19:0::1;;41407:7;8576::::0;8603:6;-1:-1:-1;;;;;8603:6:0;;8530:87;41407:7:::1;41387:37;::::0;-1:-1:-1;;;;;;41387:37:0::1;::::0;;;;;;-1:-1:-1;;;;;12265:32:1;;;41387:37:0::1;::::0;::::1;12247:51:1::0;12314:18;;;12307:34;;;12220:18;;41387:37:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41267:165;;41206:226:::0;:::o;46189:371::-;-1:-1:-1;;;;;46316:19:0;;46308:68;;;;-1:-1:-1;;;46308:68:0;;12804:2:1;46308:68:0;;;12786:21:1;12843:2;12823:18;;;12816:30;12882:34;12862:18;;;12855:62;-1:-1:-1;;;12933:18:1;;;12926:34;12977:19;;46308:68:0;12602:400:1;46308:68:0;-1:-1:-1;;;;;46395:21:0;;46387:68;;;;-1:-1:-1;;;46387:68:0;;13209:2:1;46387:68:0;;;13191:21:1;13248:2;13228:18;;;13221:30;13287:34;13267:18;;;13260:62;-1:-1:-1;;;13338:18:1;;;13331:32;13380:19;;46387:68:0;13007:398:1;46387:68:0;-1:-1:-1;;;;;46468:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;46520:32;;1361:25:1;;;46520:32:0;;1334:18:1;46520:32:0;;;;;;;46189:371;;;:::o;46568:1370::-;-1:-1:-1;;;;;46690:18:0;;46682:68;;;;-1:-1:-1;;;46682:68:0;;13612:2:1;46682:68:0;;;13594:21:1;13651:2;13631:18;;;13624:30;13690:34;13670:18;;;13663:62;-1:-1:-1;;;13741:18:1;;;13734:35;13786:19;;46682:68:0;13410:401:1;46682:68:0;-1:-1:-1;;;;;46769:16:0;;46761:64;;;;-1:-1:-1;;;46761:64:0;;14018:2:1;46761:64:0;;;14000:21:1;14057:2;14037:18;;;14030:30;14096:34;14076:18;;;14069:62;-1:-1:-1;;;14147:18:1;;;14140:33;14190:19;;46761:64:0;13816:399:1;46761:64:0;46853:1;46844:6;:10;46836:64;;;;-1:-1:-1;;;46836:64:0;;14422:2:1;46836:64:0;;;14404:21:1;14461:2;14441:18;;;14434:30;14500:34;14480:18;;;14473:62;-1:-1:-1;;;14551:18:1;;;14544:39;14600:19;;46836:64:0;14220:405:1;46836:64:0;-1:-1:-1;;;;;46921:11:0;;;;;;:5;:11;;;;;;;;46920:12;:26;;;;-1:-1:-1;;;;;;46937:9:0;;;;;;:5;:9;;;;;;;;46936:10;46920:26;46911:55;;;;-1:-1:-1;;;46911:55:0;;14832:2:1;46911:55:0;;;14814:21:1;14871:2;14851:18;;;14844:30;-1:-1:-1;;;14890:18:1;;;14883:45;14945:18;;46911:55:0;14630:339:1;46911:55:0;8576:7;8603:6;-1:-1:-1;;;;;46989:15:0;;;8603:6;;46989:15;;;:44;;-1:-1:-1;;;;;;47009:24:0;;;;;;:18;:24;;;;;;;;47008:25;46989:44;46986:119;;;47054:16;;;;47045:49;;;;-1:-1:-1;;;47045:49:0;;15176:2:1;47045:49:0;;;15158:21:1;15215:2;15195:18;;;15188:30;-1:-1:-1;;;15234:18:1;;;15227:49;15293:18;;47045:49:0;14974:343:1;47045:49:0;47117:28;47148:24;47166:4;47148:9;:24::i;:::-;47249:29;;47117:55;;-1:-1:-1;47212:66:0;;;;;;;47307:53;;-1:-1:-1;47344:16:0;;-1:-1:-1;;;47344:16:0;;;;47343:17;47307:53;:91;;;;-1:-1:-1;47385:13:0;;-1:-1:-1;;;;;47377:21:0;;;47385:13;;47377:21;;47307:91;:129;;;;-1:-1:-1;47415:21:0;;-1:-1:-1;;;47415:21:0;;;;47307:129;47289:234;;;47473:38;47490:20;47473:16;:38::i;:::-;-1:-1:-1;;;;;47716:24:0;;47596:12;47716:24;;;:18;:24;;;;;;47611:4;;47716:24;;;:50;;-1:-1:-1;;;;;;47744:22:0;;;;;;:18;:22;;;;;;;;47716:50;47712:98;;;-1:-1:-1;47793:5:0;47712:98;47889:41;47904:4;47910:2;47914:6;47922:7;47889:14;:41::i;:::-;46671:1267;;;46568:1370;;;:::o;23782:240::-;23902:7;23963:12;23955:6;;;;23947:29;;;;-1:-1:-1;;;23947:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;23998:5:0;;;23782:240::o;43740:164::-;43782:7;43803:15;43820;43839:19;:17;:19::i;:::-;43802:56;;-1:-1:-1;43802:56:0;-1:-1:-1;43876:20:0;43802:56;;43876:11;:20::i;:::-;43869:27;;;;43740:164;:::o;22640:98::-;22698:7;22725:5;22729:1;22725;:5;:::i;22241:98::-;22299:7;22326:5;22330:1;22326;:5;:::i;21884:98::-;21942:7;21969:5;21973:1;21969;:5;:::i;21503:98::-;21561:7;21588:5;21592:1;21588;:5;:::i;41957:742::-;42057:7;42079;42101;42123;42145;42167;42217:23;42255:12;42282:18;42314:20;42326:7;42314:11;:20::i;:::-;42202:132;;;;;;42346:15;42363:23;42388:12;42404:113;42430:7;42452:4;42471:10;42496;:8;:10::i;:::-;42404:11;:113::i;:::-;42345:172;;;;-1:-1:-1;42345:172:0;;-1:-1:-1;42621:15:0;;-1:-1:-1;42651:4:0;;-1:-1:-1;42670:10:0;;-1:-1:-1;41957:742:0;;-1:-1:-1;;;;;41957:742:0:o;9837:191::-;9911:16;9930:6;;-1:-1:-1;;;;;9947:17:0;;;-1:-1:-1;;;;;;9947:17:0;;;;;;9980:40;;9930:6;;;;;;;9980:40;;9911:16;9980:40;9900:128;9837:191;:::o;47948:603::-;30514:16;:23;;-1:-1:-1;;;;30514:23:0;-1:-1:-1;;;30514:23:0;;;48110:16:::1;::::0;;48124:1:::1;48110:16:::0;;;;;::::1;::::0;;-1:-1:-1;;48110:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;48110:16:0::1;48086:40;;48155:4;48137;48142:1;48137:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;48137:23:0::1;;;-1:-1:-1::0;;;;;48137:23:0::1;;;::::0;::::1;48181:15;;;;;;;;;-1:-1:-1::0;;;;;48181:15:0::1;-1:-1:-1::0;;;;;48181:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48171:4;48176:1;48171:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48171:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;48248:15:::1;::::0;48216:62:::1;::::0;48233:4:::1;::::0;48248:15;;::::1;;48266:11:::0;48216:8:::1;:62::i;:::-;48317:15;::::0;48487::::1;::::0;48317:226:::1;::::0;-1:-1:-1;;;48317:226:0;;-1:-1:-1;;;;;48317:15:0;;;::::1;::::0;::::1;::::0;:66:::1;::::0;:226:::1;::::0;48398:11;;48424:1:::1;::::0;48468:4;;48487:15;::::1;::::0;48517::::1;::::0;48317::::1;:226;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;30560:16:0;:24;;-1:-1:-1;;;;30560:24:0;;;-1:-1:-1;;;;47948:603:0:o;48639:1769::-;48790:14;45556;:18;;-1:-1:-1;;45585:17:0;;;45513:97;48790:14;48821:7;48817:975;;;48863:13;;-1:-1:-1;;;;;48850:26:0;;;48863:13;;48850:26;48847:152;;48938:15;;48928:6;48905:20;48915:9;48905;:20::i;:::-;:29;;;;:::i;:::-;:48;;48896:87;;;;-1:-1:-1;;;48896:87:0;;17249:2:1;48896:87:0;;;17231:21:1;17288:2;17268:18;;;17261:30;17327:27;17307:18;;;17300:55;17372:18;;48896:87:0;17047:349:1;48896:87:0;49061:13;;-1:-1:-1;;;;;49061:13:0;;;49051:23;;;;49047:734;;49096:8;45672:6;:20;45655:14;:37;;45672:20;45719:19;;;45672:20;45703:35;;;-1:-1:-1;;45703:35:0;;;45672:20;;;45703:35;;;;;;;;;;45618:130;49096:8;-1:-1:-1;;;;;49123:20:0;;;;;;:9;:20;;;;;49146:12;49123:35;;49286:14;;49304:2;;49268:32;;:15;:32;:::i;:::-;:38;49265:108;;-1:-1:-1;;;;;49330:16:0;;;;;;:5;:16;;;;;:23;;-1:-1:-1;;49330:23:0;49349:4;49330:23;;;49265:108;49047:734;;;49459:13;;-1:-1:-1;;;;;49459:13:0;;;49446:26;;;;49442:339;;-1:-1:-1;;;;;49517:17:0;;;;;;:9;:17;;;;;;49502:12;:32;49493:65;;;;-1:-1:-1;;;49493:65:0;;17603:2:1;49493:65:0;;;17585:21:1;17642:2;17622:18;;;17615:30;-1:-1:-1;;;17661:18:1;;;17654:49;17720:18;;49493:65:0;17401:343:1;49493:65:0;49577:9;45811:7;:21;45794:14;:38;;45811:21;45859:20;;;45811:21;45843:36;;;-1:-1:-1;;45843:36:0;;;45811:21;;;45843:36;;;;;;;;;;45756:141;49442:339;-1:-1:-1;;;;;49692:17:0;;;;;;:9;:17;;;;;;49676:12;:33;49667:66;;;;-1:-1:-1;;;49667:66:0;;17603:2:1;49667:66:0;;;17585:21:1;17642:2;17622:18;;;17615:30;-1:-1:-1;;;17661:18:1;;;17654:49;17720:18;;49667:66:0;17401:343:1;49667:66:0;45964:11;:25;45947:14;:42;;-1:-1:-1;;46000:41:0;45964:25;;;;;;;46000:41;;;;;;;;;;;49752:13;-1:-1:-1;;;;;49808:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;49832:22:0;;;;;;:11;:22;;;;;;;;49831:23;49808:46;49804:597;;;49871:48;49893:6;49901:9;49912:6;49871:21;:48::i;:::-;49804:597;;;-1:-1:-1;;;;;49942:19:0;;;;;;:11;:19;;;;;;;;49941:20;:46;;;;-1:-1:-1;;;;;;49965:22:0;;;;;;:11;:22;;;;;;;;49941:46;49937:464;;;50004:46;50024:6;50032:9;50043:6;50004:19;:46::i;49937:464::-;-1:-1:-1;;;;;50073:19:0;;;;;;:11;:19;;;;;;;;50072:20;:47;;;;-1:-1:-1;;;;;;50097:22:0;;;;;;:11;:22;;;;;;;;50096:23;50072:47;50068:333;;;50136:44;50154:6;50162:9;50173:6;50136:17;:44::i;50068:333::-;-1:-1:-1;;;;;50202:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;50225:22:0;;;;;;:11;:22;;;;;;;;50202:45;50198:203;;;50264:48;50286:6;50294:9;50305:6;50264:21;:48::i;50198:203::-;50345:44;50363:6;50371:9;50382:6;50345:17;:44::i;43912:605::-;44010:7;;44046;;43963;;;;;44064:338;44088:9;:16;44084:20;;44064:338;;;44172:7;44148;:21;44156:9;44166:1;44156:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;44156:12:0;44148:21;;;;;;;;;;;;;:31;;:83;;;44224:7;44200;:21;44208:9;44218:1;44208:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;44208:12:0;44200:21;;;;;;;;;;;;;:31;44148:83;44126:146;;;44255:7;;44264;;44247:25;;;;;;;43912:605;;:::o;44126:146::-;44297:34;44309:7;:21;44317:9;44327:1;44317:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;44317:12:0;44309:21;;;;;;;;;;;;;44297:7;;:11;:34::i;:::-;44287:44;;44356:34;44368:7;:21;44376:9;44386:1;44376:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;44376:12:0;44368:21;;;;;;;;;;;;;44356:7;;:11;:34::i;:::-;44346:44;-1:-1:-1;44106:3:0;;;;:::i;:::-;;;;44064:338;;;-1:-1:-1;44438:7:0;;44426;;:20;;:11;:20::i;:::-;44416:7;:30;44412:61;;;44456:7;;44465;;44448:25;;;;;;43912:605;;:::o;44412:61::-;44492:7;;44501;;-1:-1:-1;43912:605:0;-1:-1:-1;43912:605:0:o;42707:463::-;42808:7;42830;42852;42887:12;42902:31;42925:7;42902:22;:31::i;:::-;42887:46;;42944:18;42965:30;42987:7;42965:21;:30::i;:::-;42944:51;-1:-1:-1;43006:23:0;43032:33;42944:51;43032:17;:7;43044:4;43032:11;:17::i;:::-;:21;;:33::i;:::-;43006:59;43145:4;;-1:-1:-1;43151:10:0;;-1:-1:-1;42707:463:0;;-1:-1:-1;;;42707:463:0:o;43178:554::-;43377:7;;;;43474:24;:7;43486:11;43474;:24::i;:::-;43456:42;-1:-1:-1;43509:12:0;43524:21;:4;43533:11;43524:8;:21::i;:::-;43509:36;-1:-1:-1;43556:18:0;43577:27;:10;43592:11;43577:14;:27::i;:::-;43556:48;-1:-1:-1;43615:23:0;43641:33;43556:48;43641:17;:7;43653:4;43641:11;:17::i;:33::-;43693:7;;;;-1:-1:-1;43719:4:0;;-1:-1:-1;43178:554:0;;-1:-1:-1;;;;;;;43178:554:0:o;51755:686::-;51906:15;51936:23;51974:12;52001:23;52039:12;52066:18;52098:19;52109:7;52098:10;:19::i;:::-;-1:-1:-1;;;;;52146:15:0;;;;;;:7;:15;;;;;;51891:226;;-1:-1:-1;51891:226:0;;-1:-1:-1;51891:226:0;;-1:-1:-1;51891:226:0;-1:-1:-1;51891:226:0;-1:-1:-1;51891:226:0;-1:-1:-1;52146:28:0;;52166:7;52146:19;:28::i;:::-;-1:-1:-1;;;;;52128:15:0;;;;;;:7;:15;;;;;;;;:46;;;;52203:7;:15;;;;:28;;52223:7;52203:19;:28::i;:::-;-1:-1:-1;;;;;52185:15:0;;;;;;;:7;:15;;;;;;:46;;;;52263:18;;;;;;;:39;;52286:15;52263:22;:39::i;:::-;-1:-1:-1;;;;;52242:18:0;;;;;;:7;:18;;;;;:60;52313:26;52328:10;52313:14;:26::i;:::-;52350:23;52362:4;52368;52350:11;:23::i;:::-;52406:9;-1:-1:-1;;;;;52389:44:0;52398:6;-1:-1:-1;;;;;52389:44:0;;52417:15;52389:44;;;;1361:25:1;;1349:2;1334:18;;1215:177;52389:44:0;;;;;;;;51880:561;;;;;;51755:686;;;:::o;51049:698::-;51198:15;51228:23;51266:12;51293:23;51331:12;51358:18;51390:19;51401:7;51390:10;:19::i;:::-;-1:-1:-1;;;;;51438:15:0;;;;;;:7;:15;;;;;;51183:226;;-1:-1:-1;51183:226:0;;-1:-1:-1;51183:226:0;;-1:-1:-1;51183:226:0;-1:-1:-1;51183:226:0;-1:-1:-1;51183:226:0;-1:-1:-1;51438:28:0;;51183:226;51438:19;:28::i;:::-;-1:-1:-1;;;;;51420:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;51498:18;;;;;:7;:18;;;;;:39;;51521:15;51498:22;:39::i;:::-;-1:-1:-1;;;;;51477:18:0;;;;;;:7;:18;;;;;;;;:60;;;;51569:7;:18;;;;:39;;51592:15;51569:22;:39::i;50416:625::-;50563:15;50593:23;50631:12;50658:23;50696:12;50723:18;50755:19;50766:7;50755:10;:19::i;:::-;-1:-1:-1;;;;;50803:15:0;;;;;;:7;:15;;;;;;50548:226;;-1:-1:-1;50548:226:0;;-1:-1:-1;50548:226:0;;-1:-1:-1;50548:226:0;-1:-1:-1;50548:226:0;-1:-1:-1;50548:226:0;-1:-1:-1;50803:28:0;;50548:226;50803:19;:28::i;52449:757::-;52600:15;52630:23;52668:12;52695:23;52733:12;52760:18;52792:19;52803:7;52792:10;:19::i;:::-;-1:-1:-1;;;;;52840:15:0;;;;;;:7;:15;;;;;;52585:226;;-1:-1:-1;52585:226:0;;-1:-1:-1;52585:226:0;;-1:-1:-1;52585:226:0;-1:-1:-1;52585:226:0;-1:-1:-1;52585:226:0;-1:-1:-1;52840:28:0;;52860:7;52840:19;:28::i;:::-;-1:-1:-1;;;;;52822:15:0;;;;;;:7;:15;;;;;;;;:46;;;;52897:7;:15;;;;:28;;52917:7;52897:19;:28::i;45173:144::-;45283:14;;45244:7;;45271:38;;45303:5;;45271:27;;:7;;45283:14;;45271:11;:27::i;:::-;:31;;:38::i;45325:174::-;45466:13;;45422:7;;45454:37;;45485:5;;45454:26;;:7;;45466:13;;;;;45454:11;:26::i;44525:355::-;44588:19;44610:10;:8;:10::i;:::-;44588:32;-1:-1:-1;44631:18:0;44652:27;:10;44588:32;44652:14;:27::i;:::-;44731:4;44715:22;;;;:7;:22;;;;;;44631:48;;-1:-1:-1;44715:38:0;;44631:48;44715:26;:38::i;:::-;44706:4;44690:22;;;;:7;:22;;;;;;;;:63;;;;44768:11;:26;;;;;;44764:108;;;44850:4;44834:22;;;;:7;:22;;;;;;:38;;44861:10;44834:26;:38::i;:::-;44825:4;44809:22;;;;:7;:22;;;;;:63;44577:303;;44525:355;:::o;41802:147::-;41880:7;;:17;;41892:4;41880:11;:17::i;:::-;41870:7;:27;41921:10;;:20;;41936:4;41921:14;:20::i;:::-;41908:10;:33;-1:-1:-1;;41802:147:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2384:180::-;2443:6;2496:2;2484:9;2475:7;2471:23;2467:32;2464:52;;;2512:1;2509;2502:12;2464:52;-1:-1:-1;2535:23:1;;2384:180;-1:-1:-1;2384:180:1:o;2758:247::-;2817:6;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;3010:118::-;3096:5;3089:13;3082:21;3075:5;3072:32;3062:60;;3118:1;3115;3108:12;3133:309;3198:6;3206;3259:2;3247:9;3238:7;3234:23;3230:32;3227:52;;;3275:1;3272;3265:12;3227:52;3311:9;3298:23;3288:33;;3371:2;3360:9;3356:18;3343:32;3384:28;3406:5;3384:28;:::i;:::-;3431:5;3421:15;;;3133:309;;;;;:::o;3655:159::-;3722:20;;3782:6;3771:18;;3761:29;;3751:57;;3804:1;3801;3794:12;3751:57;3655:159;;;:::o;3819:256::-;3885:6;3893;3946:2;3934:9;3925:7;3921:23;3917:32;3914:52;;;3962:1;3959;3952:12;3914:52;3985:28;4003:9;3985:28;:::i;:::-;3975:38;;4032:37;4065:2;4054:9;4050:18;4032:37;:::i;:::-;4022:47;;3819:256;;;;;:::o;4080:241::-;4136:6;4189:2;4177:9;4168:7;4164:23;4160:32;4157:52;;;4205:1;4202;4195:12;4157:52;4244:9;4231:23;4263:28;4285:5;4263:28;:::i;4326:388::-;4394:6;4402;4455:2;4443:9;4434:7;4430:23;4426:32;4423:52;;;4471:1;4468;4461:12;4423:52;4510:9;4497:23;4529:31;4554:5;4529:31;:::i;:::-;4579:5;-1:-1:-1;4636:2:1;4621:18;;4608:32;4649:33;4608:32;4649:33;:::i;4719:382::-;4784:6;4792;4845:2;4833:9;4824:7;4820:23;4816:32;4813:52;;;4861:1;4858;4851:12;4813:52;4900:9;4887:23;4919:31;4944:5;4919:31;:::i;:::-;4969:5;-1:-1:-1;5026:2:1;5011:18;;4998:32;5039:30;4998:32;5039:30;:::i;5106:380::-;5185:1;5181:12;;;;5228;;;5249:61;;5303:4;5295:6;5291:17;5281:27;;5249:61;5356:2;5348:6;5345:14;5325:18;5322:38;5319:161;;5402:10;5397:3;5393:20;5390:1;5383:31;5437:4;5434:1;5427:15;5465:4;5462:1;5455:15;5319:161;;5106:380;;;:::o;5902:356::-;6104:2;6086:21;;;6123:18;;;6116:30;6182:34;6177:2;6162:18;;6155:62;6249:2;6234:18;;5902:356::o;6619:127::-;6680:10;6675:3;6671:20;6668:1;6661:31;6711:4;6708:1;6701:15;6735:4;6732:1;6725:15;6751:127;6812:10;6807:3;6803:20;6800:1;6793:31;6843:4;6840:1;6833:15;6867:4;6864:1;6857:15;6883:128;6950:9;;;6971:11;;;6968:37;;;6985:18;;:::i;7016:127::-;7077:10;7072:3;7068:20;7065:1;7058:31;7108:4;7105:1;7098:15;7132:4;7129:1;7122:15;7148:135;7187:3;7208:17;;;7205:43;;7228:18;;:::i;:::-;-1:-1:-1;7275:1:1;7264:13;;7148:135::o;8964:168::-;9031:6;9057:10;;;9069;;;9053:27;;9092:11;;;9089:37;;;9106:18;;:::i;:::-;9089:37;8964:168;;;;:::o;9834:::-;9907:9;;;9938;;9955:15;;;9949:22;;9935:37;9925:71;;9976:18;;:::i;11884:184::-;11954:6;12007:2;11995:9;11986:7;11982:23;11978:32;11975:52;;;12023:1;12020;12013:12;11975:52;-1:-1:-1;12046:16:1;;11884:184;-1:-1:-1;11884:184:1:o;12352:245::-;12419:6;12472:2;12460:9;12451:7;12447:23;12443:32;12440:52;;;12488:1;12485;12478:12;12440:52;12520:9;12514:16;12539:28;12561:5;12539:28;:::i;15322:217::-;15362:1;15388;15378:132;;15432:10;15427:3;15423:20;15420:1;15413:31;15467:4;15464:1;15457:15;15495:4;15492:1;15485:15;15378:132;-1:-1:-1;15524:9:1;;15322:217::o;15544:125::-;15609:9;;;15630:10;;;15627:36;;;15643:18;;:::i;15806:251::-;15876:6;15929:2;15917:9;15908:7;15904:23;15900:32;15897:52;;;15945:1;15942;15935:12;15897:52;15977:9;15971:16;15996:31;16021:5;15996:31;:::i;16062:980::-;16324:4;16372:3;16361:9;16357:19;16403:6;16392:9;16385:25;16429:2;16467:6;16462:2;16451:9;16447:18;16440:34;16510:3;16505:2;16494:9;16490:18;16483:31;16534:6;16569;16563:13;16600:6;16592;16585:22;16638:3;16627:9;16623:19;16616:26;;16677:2;16669:6;16665:15;16651:29;;16698:1;16708:195;16722:6;16719:1;16716:13;16708:195;;;16787:13;;-1:-1:-1;;;;;16783:39:1;16771:52;;16878:15;;;;16843:12;;;;16819:1;16737:9;16708:195;;;-1:-1:-1;;;;;;;16959:32:1;;;;16954:2;16939:18;;16932:60;-1:-1:-1;;;17023:3:1;17008:19;17001:35;16920:3;16062:980;-1:-1:-1;;;16062:980:1:o

Swarm Source

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