ETH Price: $2,649.75 (-0.16%)
Gas: 4 Gwei

Token

Commander ($CMD)
 

Overview

Max Total Supply

1,000,000,000,000,000 $CMD

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,939,240,268,237.622989199 $CMD

Value
$0.00
0xbfa4907dfde5996381faa8329beadf057454e460
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:
CommanderToken

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-27
*/

/* solhint-disable */
/**
  ██████  ██████  ███    ███ ███    ███  █████  ███    ██ ██████  ███████ ██████  
██      ██    ██ ████  ████ ████  ████ ██   ██ ████   ██ ██   ██ ██      ██   ██ 
██      ██    ██ ██ ████ ██ ██ ████ ██ ███████ ██ ██  ██ ██   ██ █████   ██████  
██      ██    ██ ██  ██  ██ ██  ██  ██ ██   ██ ██  ██ ██ ██   ██ ██      ██   ██ 
 ██████  ██████  ██      ██ ██      ██ ██   ██ ██   ████ ██████  ███████ ██   ██   
                                                                                             
**/

//https://t.me/commander_verification

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

pragma solidity >=0.6.2;

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

pragma solidity >=0.6.2;

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

pragma solidity >=0.5.0;

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

// File: contracts/Commander.sol

pragma solidity ^0.8.10;

contract CommanderToken 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) private _isExcludedFromFee;
    mapping(address => bool) public _isBlackListed;
    mapping(address => bool) private _isExcluded;

    address[] private _excluded;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1 * 10**15 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Commander";
    string private _symbol = "$CMD";
    uint8 private _decimals = 9;

    struct BuyFee {
        uint16 developmentFee;
        uint16 taxFee;
    }

    struct SellFee {
        
        uint16 developmentFee;
        uint16 taxFee;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    uint16 private _taxFee;
    uint16 private _developmentFee;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    address public _developmentWallet =
        payable(address(0x4123));

    bool internal inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    bool private isTradingEnabled;
    uint256 public tradingStartBlock;

    uint256 private lastBlock;

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;

    uint256 private swapTokensAtAmount = 1 * 10**9 * 10**9;
    uint8 public constant BLOCKCOUNT = 25; //Blacklist first 25 block buys

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

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

    constructor() {
        _rOwned[_msgSender()] = _rTotal;

        buyFee.developmentFee = 7;
        buyFee.taxFee = 3;

        
        sellFee.developmentFee = 12;
        sellFee.taxFee = 3;

        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;

        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        maxSellAmount = totalSupply().mul(125).div(100000);
        maxBuyAmount = totalSupply().mul(125).div(100000);
        maxWalletAmount = totalSupply().mul(5).div(1000);

        lastBlock = block.number;

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

    function enableTrading() external onlyOwner {
        isTradingEnabled = true;
        tradingStartBlock = block.number;
    }

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

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

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

    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) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function setBlackList(address addr, bool value) external onlyOwner {
        _isBlackListed[addr] = value;
    }

    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setBuyFee(uint16 development, uint16 tax) external onlyOwner {
        buyFee.developmentFee = development;
        buyFee.taxFee = tax;
        uint256 totalBuyFee = development + tax;
        require (totalBuyFee <= 20, "max buy tax limit is 20%");
    }

    function setSellFee(
        uint16 development,
        uint16 tax
    ) external onlyOwner {
        sellFee.developmentFee = development;
        sellFee.taxFee = tax;
        uint256 totalSellFee = development + tax;
        require (totalSellFee <= 20, "max sell tax limit is 20%");
    }

    function setSwapTokensAtAmount(uint256 numTokens)
        external
        onlyOwner
    {
        swapTokensAtAmount = numTokens * 10**9;
    }

    function updateRouter(address newAddress) external onlyOwner {
        require(
            newAddress != address(uniswapV2Router),
            "TOKEN: The router already has that address"
        );
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address get_pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(
            address(this),
            uniswapV2Router.WETH()
        );
        if (get_pair == address(0)) {
            uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
                .createPair(address(this), uniswapV2Router.WETH());
        } else {
            uniswapV2Pair = get_pair;
        }
    }

    function setMaxWallet(uint256 value) external onlyOwner {
        require(value > 10000000, "No rug Pull");
        maxWalletAmount = value * 10**9;
    }

    function setMaxBuyAmount(uint256 value) external onlyOwner {
        require(value > 10000000, "No rug Pull");
        maxBuyAmount = value * 10**9;
    }

    function setMaxSellAmount(uint256 value) external onlyOwner {
        require(value > 10000000, "No rug Pull");
        maxSellAmount = value * 10**9;
    }

    function setDevelopmentWallet(address payable wallet) external onlyOwner {
        require(
            wallet != address(0),
            "developmentWallet address can not be zero!"
        );
        _developmentWallet = wallet;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function claimStuckTokens(address _token) external onlyOwner {
        require(_token != address(this), "No rug pulls :)");

        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }

        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }

    //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 tTransferAmount,
            uint256 tFee,
            uint256 tDevelopment
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tDevelopment,
            _getRate()
        );
        return (
            rAmount,
            rTransferAmount,
            rFee,
            tTransferAmount,
            tFee
        );
    }

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = calculateTaxFee(tAmount);
       
        uint256 tDevelopment = calculateDevelopmentFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee);
        tTransferAmount = tTransferAmount.sub(tDevelopment);
        return (tTransferAmount, tFee, tDevelopment);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tDevelopment,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rDevelopment = tDevelopment.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(
            rDevelopment
        );
        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 _takeDevelopment(uint256 tDevelopment) private {
        uint256 currentRate = _getRate();
        uint256 rDevelopment = tDevelopment.mul(currentRate);

        _rOwned[address(this)] = _rOwned[address(this)].add(rDevelopment);
        if (_isExcluded[address(this)]) {
            _tOwned[address(this)] = _tOwned[address(this)].add(tDevelopment);
        }
    }

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

    

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

    function removeAllFee() private {
        _taxFee = 0;
        
        _developmentFee = 0;
    }

    function setBuy() private {
        _taxFee = buyFee.taxFee;
       
        _developmentFee = buyFee.developmentFee;
    }

    function setSell() private {
        _taxFee = sellFee.taxFee;
        _developmentFee = sellFee.developmentFee;
    }

    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(
            !_isBlackListed[from] && !_isBlackListed[to],
            "Account is blacklisted"
        );
        require(
            isTradingEnabled || _isExcludedFromFee[from],
            "Trading not enabled yet"
        );

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

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

            uint256 forDevelopment = contractTokenBalance;

            if (forDevelopment > 0) {
                swapAndSendDevelopment(forDevelopment);
            }

           
        }

        //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 tax, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    

    function swapAndSendDevelopment(uint256 amount) private lockTheSwap {
        uint256 initialBalance = address(this).balance;
        swapTokensForEth(amount);
        uint256 newBalance = address(this).balance.sub(initialBalance);

        payable(_developmentWallet).transfer(newBalance);
    }

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

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

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

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(0xdead),
            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) {
            require(block.number > lastBlock, "One transfer per block");

            lastBlock = block.number;

            if (recipient != uniswapV2Pair) {
                require(
                    balanceOf(recipient) + amount <= maxWalletAmount,
                    "Balance exceeds limit"
                );
            }
            if (sender == uniswapV2Pair) {
                require(amount <= maxBuyAmount, "Buy exceeds limit");

                if (block.number < tradingStartBlock + BLOCKCOUNT) {
                    _isBlackListed[recipient] = true;
                }
                setBuy();
            }
            if (recipient == uniswapV2Pair) {
                require(amount <= maxSellAmount, "Sell exceeds limit");
                setSell();
            }
        }

        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
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeDevelopment(calculateDevelopmentFee(tAmount));
        _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
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeDevelopment(calculateDevelopmentFee(tAmount));
        _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
        ) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeDevelopment(calculateDevelopmentFee(tAmount));
        _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
        ) = _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);
        _takeDevelopment(calculateDevelopmentFee(tAmount));
        _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":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":[],"name":"BLOCKCOUNT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"developmentFee","type":"uint16"},{"internalType":"uint16","name":"taxFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"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":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"developmentFee","type":"uint16"},{"internalType":"uint16","name":"taxFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"development","type":"uint16"},{"internalType":"uint16","name":"tax","type":"uint16"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"development","type":"uint16"},{"internalType":"uint16","name":"tax","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":[],"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":"tradingStartBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"newAddress","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405269d3c21bcecceda100000060088190556200002290600019620004e3565b620000309060001962000510565b6009908155604080518082019091528181526821b7b6b6b0b73232b960b91b60209091019081526200006691600b919062000427565b50604080518082019091526004808252630910d35160e21b60209092019182526200009491600c9162000427565b50600d805460ff19166009179055601280547501000000000000000000000000000000000000004123600161ff0160a01b0319909116179055670de0b6b3a7640000601855348015620000e657600080fd5b50620000f233620003b4565b6009543360009081526001602090815260409182902092909255600e805463ffffffff199081166203000717909155600f80549091166203000c179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200017c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a291906200052a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021691906200052a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000264573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028a91906200052a565b601180546001600160a01b0319166001600160a01b0392831617905560108054600160201b600160c01b0319166401000000008484160217905560008054909116815260046020526040808220805460ff19908116600190811790925530845291909220805490911690911790556008546200033690620186a0906200032290607d905b6200040460201b62001bdd1790919060201c565b6200041960201b62001be91790919060201c565b60165562000351620186a062000322607d6200030e60085490565b6015556200036b6103e86200032260056200030e60085490565b6017554360145560085460405190815233906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350620005cb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600062000412828462000555565b9392505050565b600062000412828462000577565b82805462000435906200058e565b90600052602060002090601f016020900481019282620004595760008555620004a4565b82601f106200047457805160ff1916838001178555620004a4565b82800160010185558215620004a4579182015b82811115620004a457825182559160200191906001019062000487565b50620004b2929150620004b6565b5090565b5b80821115620004b25760008155600101620004b7565b634e487b7160e01b600052601260045260246000fd5b600082620004f557620004f5620004cd565b500690565b634e487b7160e01b600052601160045260246000fd5b600082821015620005255762000525620004fa565b500390565b6000602082840312156200053d57600080fd5b81516001600160a01b03811681146200041257600080fd5b6000816000190483118215151615620005725762000572620004fa565b500290565b600082620005895762000589620004cd565b500490565b600181811c90821680620005a357607f821691505b60208210811415620005c557634e487b7160e01b600052602260045260246000fd5b50919050565b6130f580620005db6000396000f3fe6080604052600436106102975760003560e01c806370a082311161015a578063aa4bde28116100c1578063e99c9d091161007a578063e99c9d0914610852578063ea2f0b3714610872578063ec2a520a14610892578063f2fde38b146108b2578063f34eb0b8146108d2578063f9d0831a146108f257600080fd5b8063aa4bde2814610780578063afa4f3b214610796578063c49b9a80146107b6578063c851cc32146107d6578063d798cbd2146107f6578063dd62ed3e1461080c57600080fd5b806388f820201161011357806388f82020146106bf5780638a8c523c146106f85780638da5cb5b1461070d57806395d89b411461072b578063a457c2d714610740578063a9059cbb1461076057600080fd5b806370a0823114610614578063715018a61461063457806372ac2486146106495780637afad2491461066957806385320beb1461068957806388e765ff146106a957600080fd5b8063437823ec116101fe57806352390c02116101b757806352390c02146105355780635342acb4146105555780635d0044ca1461058e57806366d602ae146105ae57806368092bd9146105c45780636c9bb93b146105e457600080fd5b8063437823ec1461047a5780634549b0391461049a57806347062402146104ba57806349bd5a5e146104df5780634a74bb02146104ff5780634dce97f11461052057600080fd5b80632b14ca56116102505780632b14ca56146103925780632d838119146103d2578063313ce567146103f25780633685d41914610418578063395093511461043a5780633bd5d1731461045a57600080fd5b806306fdde03146102a3578063095ea7b3146102ce57806313114a9d146102fe5780631694505e1461031d57806318160ddd1461035d57806323b872dd1461037257600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b8610912565b6040516102c59190612c18565b60405180910390f35b3480156102da57600080fd5b506102ee6102e9366004612c82565b6109a4565b60405190151581526020016102c5565b34801561030a57600080fd5b50600a545b6040519081526020016102c5565b34801561032957600080fd5b506010546103459064010000000090046001600160a01b031681565b6040516001600160a01b0390911681526020016102c5565b34801561036957600080fd5b5060085461030f565b34801561037e57600080fd5b506102ee61038d366004612cae565b6109bb565b34801561039e57600080fd5b50600f546103b79061ffff808216916201000090041682565b6040805161ffff9384168152929091166020830152016102c5565b3480156103de57600080fd5b5061030f6103ed366004612cef565b610a24565b3480156103fe57600080fd5b50600d5460ff165b60405160ff90911681526020016102c5565b34801561042457600080fd5b50610438610433366004612d08565b610aad565b005b34801561044657600080fd5b506102ee610455366004612c82565b610c64565b34801561046657600080fd5b50610438610475366004612cef565b610c9a565b34801561048657600080fd5b50610438610495366004612d08565b610d82565b3480156104a657600080fd5b5061030f6104b5366004612d33565b610dd0565b3480156104c657600080fd5b50600e546103b79061ffff808216916201000090041682565b3480156104eb57600080fd5b50601154610345906001600160a01b031681565b34801561050b57600080fd5b506012546102ee90600160a81b900460ff1681565b34801561052c57600080fd5b50610406601981565b34801561054157600080fd5b50610438610550366004612d08565b610e5b565b34801561056157600080fd5b506102ee610570366004612d08565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561059a57600080fd5b506104386105a9366004612cef565b610fae565b3480156105ba57600080fd5b5061030f60165481565b3480156105d057600080fd5b506104386105df366004612d63565b61100e565b3480156105f057600080fd5b506102ee6105ff366004612d08565b60056020526000908152604090205460ff1681565b34801561062057600080fd5b5061030f61062f366004612d08565b611063565b34801561064057600080fd5b506104386110c2565b34801561065557600080fd5b50610438610664366004612d08565b6110f8565b34801561067557600080fd5b50610438610684366004612da8565b6111ad565b34801561069557600080fd5b50601254610345906001600160a01b031681565b3480156106b557600080fd5b5061030f60155481565b3480156106cb57600080fd5b506102ee6106da366004612d08565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561070457600080fd5b5061043861125e565b34801561071957600080fd5b506000546001600160a01b0316610345565b34801561073757600080fd5b506102b86112a1565b34801561074c57600080fd5b506102ee61075b366004612c82565b6112b0565b34801561076c57600080fd5b506102ee61077b366004612c82565b6112ff565b34801561078c57600080fd5b5061030f60175481565b3480156107a257600080fd5b506104386107b1366004612cef565b61130c565b3480156107c257600080fd5b506104386107d1366004612ddb565b61134a565b3480156107e257600080fd5b506104386107f1366004612d08565b6113cc565b34801561080257600080fd5b5061030f60135481565b34801561081857600080fd5b5061030f610827366004612df8565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561085e57600080fd5b5061043861086d366004612cef565b6117c7565b34801561087e57600080fd5b5061043861088d366004612d08565b611827565b34801561089e57600080fd5b506104386108ad366004612da8565b611872565b3480156108be57600080fd5b506104386108cd366004612d08565b61191e565b3480156108de57600080fd5b506104386108ed366004612cef565b6119b9565b3480156108fe57600080fd5b5061043861090d366004612d08565b611a19565b6060600b805461092190612e26565b80601f016020809104026020016040519081016040528092919081815260200182805461094d90612e26565b801561099a5780601f1061096f5761010080835404028352916020019161099a565b820191906000526020600020905b81548152906001019060200180831161097d57829003601f168201915b5050505050905090565b60006109b1338484611bf5565b5060015b92915050565b60006109c8848484611d19565b610a1a8433610a1585604051806060016040528060288152602001613073602891396001600160a01b038a166000908152600360209081526040808320338452909152902054919061201a565b611bf5565b5060019392505050565b6000600954821115610a905760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b6000610a9a612046565b9050610aa68382611be9565b9392505050565b6000546001600160a01b03163314610ad75760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b03811660009081526006602052604090205460ff16610b3f5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a87565b60005b600754811015610c6057816001600160a01b031660078281548110610b6957610b69612e96565b6000918252602090912001546001600160a01b03161415610c4e5760078054610b9490600190612ec2565b81548110610ba457610ba4612e96565b600091825260209091200154600780546001600160a01b039092169183908110610bd057610bd0612e96565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600690925220805460ff191690556007805480610c2857610c28612ed9565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c5881612eef565b915050610b42565b5050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916109b1918590610a159086612069565b3360008181526006602052604090205460ff1615610d0f5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a87565b6000610d1a83612075565b505050506001600160a01b038316600090815260016020526040902054909150610d4490826120c0565b6001600160a01b038316600090815260016020526040902055600954610d6a90826120c0565b600955600a54610d7a9084612069565b600a55505050565b6000546001600160a01b03163314610dac5760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000600854831115610e245760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a87565b81610e42576000610e3484612075565b509294506109b59350505050565b6000610e4d84612075565b509194506109b59350505050565b6000546001600160a01b03163314610e855760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b03811660009081526006602052604090205460ff1615610eee5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a87565b6001600160a01b03811660009081526001602052604090205415610f48576001600160a01b038116600090815260016020526040902054610f2e90610a24565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6000546001600160a01b03163314610fd85760405162461bcd60e51b8152600401610a8790612e61565b629896808111610ffa5760405162461bcd60e51b8152600401610a8790612f0a565b61100881633b9aca00612f2f565b60175550565b6000546001600160a01b031633146110385760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b6001600160a01b03811660009081526006602052604081205460ff16156110a057506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546109b590610a24565b6000546001600160a01b031633146110ec5760405162461bcd60e51b8152600401610a8790612e61565b6110f660006120cc565b565b6000546001600160a01b031633146111225760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b03811661118b5760405162461bcd60e51b815260206004820152602a60248201527f646576656c6f706d656e7457616c6c657420616464726573732063616e206e6f60448201526974206265207a65726f2160b01b6064820152608401610a87565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146111d75760405162461bcd60e51b8152600401610a8790612e61565b600e805461ffff838116620100000263ffffffff199092169085161717905560006112028284612f4e565b61ffff16905060148111156112595760405162461bcd60e51b815260206004820152601860248201527f6d61782062757920746178206c696d69742069732032302500000000000000006044820152606401610a87565b505050565b6000546001600160a01b031633146112885760405162461bcd60e51b8152600401610a8790612e61565b6012805460ff60b01b1916600160b01b17905543601355565b6060600c805461092190612e26565b60006109b13384610a158560405180606001604052806025815260200161309b602591393360009081526003602090815260408083206001600160a01b038d168452909152902054919061201a565b60006109b1338484611d19565b6000546001600160a01b031633146113365760405162461bcd60e51b8152600401610a8790612e61565b61134481633b9aca00612f2f565b60185550565b6000546001600160a01b031633146113745760405162461bcd60e51b8152600401610a8790612e61565b60128054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906113c190831515815260200190565b60405180910390a150565b6000546001600160a01b031633146113f65760405162461bcd60e51b8152600401610a8790612e61565b6010546001600160a01b0382811664010000000090920416141561146f5760405162461bcd60e51b815260206004820152602a60248201527f544f4b454e3a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b6064820152608401610a87565b80601060046101000a8154816001600160a01b0302191690836001600160a01b031602179055506000601060049054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150f9190612f74565b6001600160a01b031663e6a4390530601060049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611571573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115959190612f74565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa1580156115e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116049190612f74565b90506001600160a01b0381166117a657601060049054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611667573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168b9190612f74565b6001600160a01b031663c9c6539630601060049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117119190612f74565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561175e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117829190612f74565b601180546001600160a01b0319166001600160a01b03929092169190911790555050565b601180546001600160a01b0383166001600160a01b03199091161790555050565b6000546001600160a01b031633146117f15760405162461bcd60e51b8152600401610a8790612e61565b6298968081116118135760405162461bcd60e51b8152600401610a8790612f0a565b61182181633b9aca00612f2f565b60165550565b6000546001600160a01b031633146118515760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6000546001600160a01b0316331461189c5760405162461bcd60e51b8152600401610a8790612e61565b600f805461ffff838116620100000263ffffffff199092169085161717905560006118c78284612f4e565b61ffff16905060148111156112595760405162461bcd60e51b815260206004820152601960248201527f6d61782073656c6c20746178206c696d697420697320323025000000000000006044820152606401610a87565b6000546001600160a01b031633146119485760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b0381166119ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a87565b6119b6816120cc565b50565b6000546001600160a01b031633146119e35760405162461bcd60e51b8152600401610a8790612e61565b629896808111611a055760405162461bcd60e51b8152600401610a8790612f0a565b611a1381633b9aca00612f2f565b60155550565b6000546001600160a01b03163314611a435760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b038116301415611a8e5760405162461bcd60e51b815260206004820152600f60248201526e4e6f207275672070756c6c73203a2960881b6044820152606401610a87565b6001600160a01b038116611ad657600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610c60573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b439190612f91565b9050816001600160a01b031663a9059cbb611b666000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015611bb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bd79190612faa565b50505050565b6000610aa68284612f2f565b6000610aa68284612fc7565b6001600160a01b038316611c575760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a87565b6001600160a01b038216611cb85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a87565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611d7d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a87565b6001600160a01b038216611ddf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a87565b60008111611e415760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a87565b6001600160a01b03831660009081526005602052604090205460ff16158015611e8357506001600160a01b03821660009081526005602052604090205460ff16155b611ec85760405162461bcd60e51b81526020600482015260166024820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b6044820152606401610a87565b601254600160b01b900460ff1680611ef857506001600160a01b03831660009081526004602052604090205460ff165b611f445760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c6564207965740000000000000000006044820152606401610a87565b6000611f4f30611063565b60185490915081108015908190611f705750601254600160a01b900460ff16155b8015611f8a57506011546001600160a01b03868116911614155b8015611f9f5750601254600160a81b900460ff165b15611fbb576018549150818015611fb957611fb98161211c565b505b6001600160a01b03851660009081526004602052604090205460019060ff1680611ffd57506001600160a01b03851660009081526004602052604090205460ff165b15612006575060005b61201286868684612193565b505050505050565b6000818484111561203e5760405162461bcd60e51b8152600401610a879190612c18565b505050900390565b6000806000612053612510565b90925090506120628282611be9565b9250505090565b6000610aa68284612fe9565b60008060008060008060008061208a89612692565b92509250925060008060006120a88c86866120a3612046565b6126d6565b919e909d50909b509599509397509395505050505050565b6000610aa68284612ec2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6012805460ff60a01b1916600160a01b179055476121398261272c565b600061214547836120c0565b6012546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612180573d6000803e3d6000fd5b50506012805460ff60a01b191690555050565b6121a56010805463ffffffff19169055565b80156123bc5760145443116121f55760405162461bcd60e51b81526020600482015260166024820152754f6e65207472616e736665722070657220626c6f636b60501b6044820152606401610a87565b436014556011546001600160a01b0384811691161461226b576017548261221b85611063565b6122259190612fe9565b111561226b5760405162461bcd60e51b815260206004820152601560248201527410985b185b98d948195e18d959591cc81b1a5b5a5d605a1b6044820152606401610a87565b6011546001600160a01b0385811691161415612330576015548211156122c75760405162461bcd60e51b8152602060048201526011602482015270109d5e48195e18d959591cc81b1a5b5a5d607a1b6044820152606401610a87565b6013546122d690601990612fe9565b431015612301576001600160a01b0383166000908152600560205260409020805460ff191660011790555b612330600e546010805461ffff8084166201000090810263ffffffff1990931694041692909217919091179055565b6011546001600160a01b03848116911614156123bc5760165482111561238d5760405162461bcd60e51b815260206004820152601260248201527114d95b1b08195e18d959591cc81b1a5b5a5d60721b6044820152606401610a87565b6123bc600f546010805461ffff8084166201000090810263ffffffff1990931694041692909217919091179055565b6001600160a01b03841660009081526006602052604090205460ff1680156123fd57506001600160a01b03831660009081526006602052604090205460ff16155b156124125761240d8484846128a7565b611bd7565b6001600160a01b03841660009081526006602052604090205460ff1615801561245357506001600160a01b03831660009081526006602052604090205460ff165b156124635761240d8484846129d1565b6001600160a01b03841660009081526006602052604090205460ff161580156124a557506001600160a01b03831660009081526006602052604090205460ff16155b156124b55761240d848484612a77565b6001600160a01b03841660009081526006602052604090205460ff1680156124f557506001600160a01b03831660009081526006602052604090205460ff165b156125055761240d848484612ab8565b611bd7848484612a77565b6009546008546000918291825b6007548110156126625782600160006007848154811061253f5761253f612e96565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806125aa575081600260006007848154811061258357612583612e96565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156125c057600954600854945094505050509091565b61260660016000600784815481106125da576125da612e96565b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906120c0565b925061264e600260006007848154811061262257612622612e96565b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906120c0565b91508061265a81612eef565b91505061251d565b5060085460095461267291611be9565b821015612689576009546008549350935050509091565b90939092509050565b6000806000806126a185612b28565b905060006126ae86612b4a565b905060006126bc87846120c0565b90506126c881836120c0565b979296509094509092505050565b60008080806126e58886611bdd565b905060006126f38887611bdd565b905060006127018888611bdd565b905060006127198261271386866120c0565b906120c0565b939b939a50919850919650505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061276157612761612e96565b60200260200101906001600160a01b031690816001600160a01b031681525050601060049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127f89190612f74565b8160018151811061280b5761280b612e96565b6001600160a01b03928316602091820292909201015260105461283991309164010000000090041684611bf5565b60105460405163791ac94760e01b81526401000000009091046001600160a01b03169063791ac94790612879908590600090869030904290600401613001565b600060405180830381600087803b15801561289357600080fd5b505af1158015612012573d6000803e3d6000fd5b60008060008060006128b886612075565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506128e890876120c0565b6001600160a01b03891660009081526002602090815260408083209390935560019052205461291790866120c0565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546129469085612069565b6001600160a01b03881660009081526001602052604090205561297061296b87612b4a565b612b6c565b61297a8382612bf4565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129bf91815260200190565b60405180910390a35050505050505050565b60008060008060006129e286612075565b6001600160a01b038d1660009081526001602052604090205494995092975090955093509150612a1290866120c0565b6001600160a01b03808a16600090815260016020908152604080832094909455918a16815260029091522054612a489083612069565b6001600160a01b0388166000908152600260209081526040808320939093556001905220546129469085612069565b6000806000806000612a8886612075565b6001600160a01b038d166000908152600160205260409020549499509297509095509350915061291790866120c0565b6000806000806000612ac986612075565b6001600160a01b038d1660009081526002602052604090205494995092975090955093509150612af990876120c0565b6001600160a01b038916600090815260026020908152604080832093909355600190522054612a1290866120c0565b6010546000906109b590606490612b4490859061ffff16611bdd565b90611be9565b6010546000906109b590606490612b4490859062010000900461ffff16611bdd565b6000612b76612046565b90506000612b848383611bdd565b30600090815260016020526040902054909150612ba19082612069565b3060009081526001602090815260408083209390935560069052205460ff16156112595730600090815260026020526040902054612bdf9084612069565b30600090815260026020526040902055505050565b600954612c0190836120c0565b600955600a54612c119082612069565b600a555050565b600060208083528351808285015260005b81811015612c4557858101830151858201604001528201612c29565b81811115612c57576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146119b657600080fd5b60008060408385031215612c9557600080fd5b8235612ca081612c6d565b946020939093013593505050565b600080600060608486031215612cc357600080fd5b8335612cce81612c6d565b92506020840135612cde81612c6d565b929592945050506040919091013590565b600060208284031215612d0157600080fd5b5035919050565b600060208284031215612d1a57600080fd5b8135610aa681612c6d565b80151581146119b657600080fd5b60008060408385031215612d4657600080fd5b823591506020830135612d5881612d25565b809150509250929050565b60008060408385031215612d7657600080fd5b8235612d8181612c6d565b91506020830135612d5881612d25565b803561ffff81168114612da357600080fd5b919050565b60008060408385031215612dbb57600080fd5b612dc483612d91565b9150612dd260208401612d91565b90509250929050565b600060208284031215612ded57600080fd5b8135610aa681612d25565b60008060408385031215612e0b57600080fd5b8235612e1681612c6d565b91506020830135612d5881612c6d565b600181811c90821680612e3a57607f821691505b60208210811415612e5b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612ed457612ed4612eac565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600019821415612f0357612f03612eac565b5060010190565b6020808252600b908201526a139bc81c9d59c8141d5b1b60aa1b604082015260600190565b6000816000190483118215151615612f4957612f49612eac565b500290565b600061ffff808316818516808303821115612f6b57612f6b612eac565b01949350505050565b600060208284031215612f8657600080fd5b8151610aa681612c6d565b600060208284031215612fa357600080fd5b5051919050565b600060208284031215612fbc57600080fd5b8151610aa681612d25565b600082612fe457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612ffc57612ffc612eac565b500190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130515784516001600160a01b03168352938301939183019160010161302c565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220445e63e3400d81a698812394060234b760b1312c9a28ca7018bd613b87e4975a64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102975760003560e01c806370a082311161015a578063aa4bde28116100c1578063e99c9d091161007a578063e99c9d0914610852578063ea2f0b3714610872578063ec2a520a14610892578063f2fde38b146108b2578063f34eb0b8146108d2578063f9d0831a146108f257600080fd5b8063aa4bde2814610780578063afa4f3b214610796578063c49b9a80146107b6578063c851cc32146107d6578063d798cbd2146107f6578063dd62ed3e1461080c57600080fd5b806388f820201161011357806388f82020146106bf5780638a8c523c146106f85780638da5cb5b1461070d57806395d89b411461072b578063a457c2d714610740578063a9059cbb1461076057600080fd5b806370a0823114610614578063715018a61461063457806372ac2486146106495780637afad2491461066957806385320beb1461068957806388e765ff146106a957600080fd5b8063437823ec116101fe57806352390c02116101b757806352390c02146105355780635342acb4146105555780635d0044ca1461058e57806366d602ae146105ae57806368092bd9146105c45780636c9bb93b146105e457600080fd5b8063437823ec1461047a5780634549b0391461049a57806347062402146104ba57806349bd5a5e146104df5780634a74bb02146104ff5780634dce97f11461052057600080fd5b80632b14ca56116102505780632b14ca56146103925780632d838119146103d2578063313ce567146103f25780633685d41914610418578063395093511461043a5780633bd5d1731461045a57600080fd5b806306fdde03146102a3578063095ea7b3146102ce57806313114a9d146102fe5780631694505e1461031d57806318160ddd1461035d57806323b872dd1461037257600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b8610912565b6040516102c59190612c18565b60405180910390f35b3480156102da57600080fd5b506102ee6102e9366004612c82565b6109a4565b60405190151581526020016102c5565b34801561030a57600080fd5b50600a545b6040519081526020016102c5565b34801561032957600080fd5b506010546103459064010000000090046001600160a01b031681565b6040516001600160a01b0390911681526020016102c5565b34801561036957600080fd5b5060085461030f565b34801561037e57600080fd5b506102ee61038d366004612cae565b6109bb565b34801561039e57600080fd5b50600f546103b79061ffff808216916201000090041682565b6040805161ffff9384168152929091166020830152016102c5565b3480156103de57600080fd5b5061030f6103ed366004612cef565b610a24565b3480156103fe57600080fd5b50600d5460ff165b60405160ff90911681526020016102c5565b34801561042457600080fd5b50610438610433366004612d08565b610aad565b005b34801561044657600080fd5b506102ee610455366004612c82565b610c64565b34801561046657600080fd5b50610438610475366004612cef565b610c9a565b34801561048657600080fd5b50610438610495366004612d08565b610d82565b3480156104a657600080fd5b5061030f6104b5366004612d33565b610dd0565b3480156104c657600080fd5b50600e546103b79061ffff808216916201000090041682565b3480156104eb57600080fd5b50601154610345906001600160a01b031681565b34801561050b57600080fd5b506012546102ee90600160a81b900460ff1681565b34801561052c57600080fd5b50610406601981565b34801561054157600080fd5b50610438610550366004612d08565b610e5b565b34801561056157600080fd5b506102ee610570366004612d08565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561059a57600080fd5b506104386105a9366004612cef565b610fae565b3480156105ba57600080fd5b5061030f60165481565b3480156105d057600080fd5b506104386105df366004612d63565b61100e565b3480156105f057600080fd5b506102ee6105ff366004612d08565b60056020526000908152604090205460ff1681565b34801561062057600080fd5b5061030f61062f366004612d08565b611063565b34801561064057600080fd5b506104386110c2565b34801561065557600080fd5b50610438610664366004612d08565b6110f8565b34801561067557600080fd5b50610438610684366004612da8565b6111ad565b34801561069557600080fd5b50601254610345906001600160a01b031681565b3480156106b557600080fd5b5061030f60155481565b3480156106cb57600080fd5b506102ee6106da366004612d08565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561070457600080fd5b5061043861125e565b34801561071957600080fd5b506000546001600160a01b0316610345565b34801561073757600080fd5b506102b86112a1565b34801561074c57600080fd5b506102ee61075b366004612c82565b6112b0565b34801561076c57600080fd5b506102ee61077b366004612c82565b6112ff565b34801561078c57600080fd5b5061030f60175481565b3480156107a257600080fd5b506104386107b1366004612cef565b61130c565b3480156107c257600080fd5b506104386107d1366004612ddb565b61134a565b3480156107e257600080fd5b506104386107f1366004612d08565b6113cc565b34801561080257600080fd5b5061030f60135481565b34801561081857600080fd5b5061030f610827366004612df8565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561085e57600080fd5b5061043861086d366004612cef565b6117c7565b34801561087e57600080fd5b5061043861088d366004612d08565b611827565b34801561089e57600080fd5b506104386108ad366004612da8565b611872565b3480156108be57600080fd5b506104386108cd366004612d08565b61191e565b3480156108de57600080fd5b506104386108ed366004612cef565b6119b9565b3480156108fe57600080fd5b5061043861090d366004612d08565b611a19565b6060600b805461092190612e26565b80601f016020809104026020016040519081016040528092919081815260200182805461094d90612e26565b801561099a5780601f1061096f5761010080835404028352916020019161099a565b820191906000526020600020905b81548152906001019060200180831161097d57829003601f168201915b5050505050905090565b60006109b1338484611bf5565b5060015b92915050565b60006109c8848484611d19565b610a1a8433610a1585604051806060016040528060288152602001613073602891396001600160a01b038a166000908152600360209081526040808320338452909152902054919061201a565b611bf5565b5060019392505050565b6000600954821115610a905760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b6000610a9a612046565b9050610aa68382611be9565b9392505050565b6000546001600160a01b03163314610ad75760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b03811660009081526006602052604090205460ff16610b3f5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a87565b60005b600754811015610c6057816001600160a01b031660078281548110610b6957610b69612e96565b6000918252602090912001546001600160a01b03161415610c4e5760078054610b9490600190612ec2565b81548110610ba457610ba4612e96565b600091825260209091200154600780546001600160a01b039092169183908110610bd057610bd0612e96565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600690925220805460ff191690556007805480610c2857610c28612ed9565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c5881612eef565b915050610b42565b5050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916109b1918590610a159086612069565b3360008181526006602052604090205460ff1615610d0f5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a87565b6000610d1a83612075565b505050506001600160a01b038316600090815260016020526040902054909150610d4490826120c0565b6001600160a01b038316600090815260016020526040902055600954610d6a90826120c0565b600955600a54610d7a9084612069565b600a55505050565b6000546001600160a01b03163314610dac5760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000600854831115610e245760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a87565b81610e42576000610e3484612075565b509294506109b59350505050565b6000610e4d84612075565b509194506109b59350505050565b6000546001600160a01b03163314610e855760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b03811660009081526006602052604090205460ff1615610eee5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a87565b6001600160a01b03811660009081526001602052604090205415610f48576001600160a01b038116600090815260016020526040902054610f2e90610a24565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6000546001600160a01b03163314610fd85760405162461bcd60e51b8152600401610a8790612e61565b629896808111610ffa5760405162461bcd60e51b8152600401610a8790612f0a565b61100881633b9aca00612f2f565b60175550565b6000546001600160a01b031633146110385760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b6001600160a01b03811660009081526006602052604081205460ff16156110a057506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546109b590610a24565b6000546001600160a01b031633146110ec5760405162461bcd60e51b8152600401610a8790612e61565b6110f660006120cc565b565b6000546001600160a01b031633146111225760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b03811661118b5760405162461bcd60e51b815260206004820152602a60248201527f646576656c6f706d656e7457616c6c657420616464726573732063616e206e6f60448201526974206265207a65726f2160b01b6064820152608401610a87565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146111d75760405162461bcd60e51b8152600401610a8790612e61565b600e805461ffff838116620100000263ffffffff199092169085161717905560006112028284612f4e565b61ffff16905060148111156112595760405162461bcd60e51b815260206004820152601860248201527f6d61782062757920746178206c696d69742069732032302500000000000000006044820152606401610a87565b505050565b6000546001600160a01b031633146112885760405162461bcd60e51b8152600401610a8790612e61565b6012805460ff60b01b1916600160b01b17905543601355565b6060600c805461092190612e26565b60006109b13384610a158560405180606001604052806025815260200161309b602591393360009081526003602090815260408083206001600160a01b038d168452909152902054919061201a565b60006109b1338484611d19565b6000546001600160a01b031633146113365760405162461bcd60e51b8152600401610a8790612e61565b61134481633b9aca00612f2f565b60185550565b6000546001600160a01b031633146113745760405162461bcd60e51b8152600401610a8790612e61565b60128054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906113c190831515815260200190565b60405180910390a150565b6000546001600160a01b031633146113f65760405162461bcd60e51b8152600401610a8790612e61565b6010546001600160a01b0382811664010000000090920416141561146f5760405162461bcd60e51b815260206004820152602a60248201527f544f4b454e3a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b6064820152608401610a87565b80601060046101000a8154816001600160a01b0302191690836001600160a01b031602179055506000601060049054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150f9190612f74565b6001600160a01b031663e6a4390530601060049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611571573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115959190612f74565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa1580156115e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116049190612f74565b90506001600160a01b0381166117a657601060049054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611667573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168b9190612f74565b6001600160a01b031663c9c6539630601060049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117119190612f74565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561175e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117829190612f74565b601180546001600160a01b0319166001600160a01b03929092169190911790555050565b601180546001600160a01b0383166001600160a01b03199091161790555050565b6000546001600160a01b031633146117f15760405162461bcd60e51b8152600401610a8790612e61565b6298968081116118135760405162461bcd60e51b8152600401610a8790612f0a565b61182181633b9aca00612f2f565b60165550565b6000546001600160a01b031633146118515760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6000546001600160a01b0316331461189c5760405162461bcd60e51b8152600401610a8790612e61565b600f805461ffff838116620100000263ffffffff199092169085161717905560006118c78284612f4e565b61ffff16905060148111156112595760405162461bcd60e51b815260206004820152601960248201527f6d61782073656c6c20746178206c696d697420697320323025000000000000006044820152606401610a87565b6000546001600160a01b031633146119485760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b0381166119ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a87565b6119b6816120cc565b50565b6000546001600160a01b031633146119e35760405162461bcd60e51b8152600401610a8790612e61565b629896808111611a055760405162461bcd60e51b8152600401610a8790612f0a565b611a1381633b9aca00612f2f565b60155550565b6000546001600160a01b03163314611a435760405162461bcd60e51b8152600401610a8790612e61565b6001600160a01b038116301415611a8e5760405162461bcd60e51b815260206004820152600f60248201526e4e6f207275672070756c6c73203a2960881b6044820152606401610a87565b6001600160a01b038116611ad657600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610c60573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b439190612f91565b9050816001600160a01b031663a9059cbb611b666000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015611bb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bd79190612faa565b50505050565b6000610aa68284612f2f565b6000610aa68284612fc7565b6001600160a01b038316611c575760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a87565b6001600160a01b038216611cb85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a87565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611d7d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a87565b6001600160a01b038216611ddf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a87565b60008111611e415760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a87565b6001600160a01b03831660009081526005602052604090205460ff16158015611e8357506001600160a01b03821660009081526005602052604090205460ff16155b611ec85760405162461bcd60e51b81526020600482015260166024820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b6044820152606401610a87565b601254600160b01b900460ff1680611ef857506001600160a01b03831660009081526004602052604090205460ff165b611f445760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c6564207965740000000000000000006044820152606401610a87565b6000611f4f30611063565b60185490915081108015908190611f705750601254600160a01b900460ff16155b8015611f8a57506011546001600160a01b03868116911614155b8015611f9f5750601254600160a81b900460ff165b15611fbb576018549150818015611fb957611fb98161211c565b505b6001600160a01b03851660009081526004602052604090205460019060ff1680611ffd57506001600160a01b03851660009081526004602052604090205460ff165b15612006575060005b61201286868684612193565b505050505050565b6000818484111561203e5760405162461bcd60e51b8152600401610a879190612c18565b505050900390565b6000806000612053612510565b90925090506120628282611be9565b9250505090565b6000610aa68284612fe9565b60008060008060008060008061208a89612692565b92509250925060008060006120a88c86866120a3612046565b6126d6565b919e909d50909b509599509397509395505050505050565b6000610aa68284612ec2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6012805460ff60a01b1916600160a01b179055476121398261272c565b600061214547836120c0565b6012546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612180573d6000803e3d6000fd5b50506012805460ff60a01b191690555050565b6121a56010805463ffffffff19169055565b80156123bc5760145443116121f55760405162461bcd60e51b81526020600482015260166024820152754f6e65207472616e736665722070657220626c6f636b60501b6044820152606401610a87565b436014556011546001600160a01b0384811691161461226b576017548261221b85611063565b6122259190612fe9565b111561226b5760405162461bcd60e51b815260206004820152601560248201527410985b185b98d948195e18d959591cc81b1a5b5a5d605a1b6044820152606401610a87565b6011546001600160a01b0385811691161415612330576015548211156122c75760405162461bcd60e51b8152602060048201526011602482015270109d5e48195e18d959591cc81b1a5b5a5d607a1b6044820152606401610a87565b6013546122d690601990612fe9565b431015612301576001600160a01b0383166000908152600560205260409020805460ff191660011790555b612330600e546010805461ffff8084166201000090810263ffffffff1990931694041692909217919091179055565b6011546001600160a01b03848116911614156123bc5760165482111561238d5760405162461bcd60e51b815260206004820152601260248201527114d95b1b08195e18d959591cc81b1a5b5a5d60721b6044820152606401610a87565b6123bc600f546010805461ffff8084166201000090810263ffffffff1990931694041692909217919091179055565b6001600160a01b03841660009081526006602052604090205460ff1680156123fd57506001600160a01b03831660009081526006602052604090205460ff16155b156124125761240d8484846128a7565b611bd7565b6001600160a01b03841660009081526006602052604090205460ff1615801561245357506001600160a01b03831660009081526006602052604090205460ff165b156124635761240d8484846129d1565b6001600160a01b03841660009081526006602052604090205460ff161580156124a557506001600160a01b03831660009081526006602052604090205460ff16155b156124b55761240d848484612a77565b6001600160a01b03841660009081526006602052604090205460ff1680156124f557506001600160a01b03831660009081526006602052604090205460ff165b156125055761240d848484612ab8565b611bd7848484612a77565b6009546008546000918291825b6007548110156126625782600160006007848154811061253f5761253f612e96565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806125aa575081600260006007848154811061258357612583612e96565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156125c057600954600854945094505050509091565b61260660016000600784815481106125da576125da612e96565b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906120c0565b925061264e600260006007848154811061262257612622612e96565b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906120c0565b91508061265a81612eef565b91505061251d565b5060085460095461267291611be9565b821015612689576009546008549350935050509091565b90939092509050565b6000806000806126a185612b28565b905060006126ae86612b4a565b905060006126bc87846120c0565b90506126c881836120c0565b979296509094509092505050565b60008080806126e58886611bdd565b905060006126f38887611bdd565b905060006127018888611bdd565b905060006127198261271386866120c0565b906120c0565b939b939a50919850919650505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061276157612761612e96565b60200260200101906001600160a01b031690816001600160a01b031681525050601060049054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127f89190612f74565b8160018151811061280b5761280b612e96565b6001600160a01b03928316602091820292909201015260105461283991309164010000000090041684611bf5565b60105460405163791ac94760e01b81526401000000009091046001600160a01b03169063791ac94790612879908590600090869030904290600401613001565b600060405180830381600087803b15801561289357600080fd5b505af1158015612012573d6000803e3d6000fd5b60008060008060006128b886612075565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506128e890876120c0565b6001600160a01b03891660009081526002602090815260408083209390935560019052205461291790866120c0565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546129469085612069565b6001600160a01b03881660009081526001602052604090205561297061296b87612b4a565b612b6c565b61297a8382612bf4565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129bf91815260200190565b60405180910390a35050505050505050565b60008060008060006129e286612075565b6001600160a01b038d1660009081526001602052604090205494995092975090955093509150612a1290866120c0565b6001600160a01b03808a16600090815260016020908152604080832094909455918a16815260029091522054612a489083612069565b6001600160a01b0388166000908152600260209081526040808320939093556001905220546129469085612069565b6000806000806000612a8886612075565b6001600160a01b038d166000908152600160205260409020549499509297509095509350915061291790866120c0565b6000806000806000612ac986612075565b6001600160a01b038d1660009081526002602052604090205494995092975090955093509150612af990876120c0565b6001600160a01b038916600090815260026020908152604080832093909355600190522054612a1290866120c0565b6010546000906109b590606490612b4490859061ffff16611bdd565b90611be9565b6010546000906109b590606490612b4490859062010000900461ffff16611bdd565b6000612b76612046565b90506000612b848383611bdd565b30600090815260016020526040902054909150612ba19082612069565b3060009081526001602090815260408083209390935560069052205460ff16156112595730600090815260026020526040902054612bdf9084612069565b30600090815260026020526040902055505050565b600954612c0190836120c0565b600955600a54612c119082612069565b600a555050565b600060208083528351808285015260005b81811015612c4557858101830151858201604001528201612c29565b81811115612c57576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146119b657600080fd5b60008060408385031215612c9557600080fd5b8235612ca081612c6d565b946020939093013593505050565b600080600060608486031215612cc357600080fd5b8335612cce81612c6d565b92506020840135612cde81612c6d565b929592945050506040919091013590565b600060208284031215612d0157600080fd5b5035919050565b600060208284031215612d1a57600080fd5b8135610aa681612c6d565b80151581146119b657600080fd5b60008060408385031215612d4657600080fd5b823591506020830135612d5881612d25565b809150509250929050565b60008060408385031215612d7657600080fd5b8235612d8181612c6d565b91506020830135612d5881612d25565b803561ffff81168114612da357600080fd5b919050565b60008060408385031215612dbb57600080fd5b612dc483612d91565b9150612dd260208401612d91565b90509250929050565b600060208284031215612ded57600080fd5b8135610aa681612d25565b60008060408385031215612e0b57600080fd5b8235612e1681612c6d565b91506020830135612d5881612c6d565b600181811c90821680612e3a57607f821691505b60208210811415612e5b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612ed457612ed4612eac565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600019821415612f0357612f03612eac565b5060010190565b6020808252600b908201526a139bc81c9d59c8141d5b1b60aa1b604082015260600190565b6000816000190483118215151615612f4957612f49612eac565b500290565b600061ffff808316818516808303821115612f6b57612f6b612eac565b01949350505050565b600060208284031215612f8657600080fd5b8151610aa681612c6d565b600060208284031215612fa357600080fd5b5051919050565b600060208284031215612fbc57600080fd5b8151610aa681612d25565b600082612fe457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612ffc57612ffc612eac565b500190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130515784516001600160a01b03168352938301939183019160010161302c565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220445e63e3400d81a698812394060234b760b1312c9a28ca7018bd613b87e4975a64736f6c634300080c0033

Deployed Bytecode Sourcemap

30383:23357:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33572:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34557:193;;;;;;;;;;-1:-1:-1;34557:193:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;34557:193:0;1072:187:1;36193:87:0;;;;;;;;;;-1:-1:-1;36262:10:0;;36193:87;;;1410:25:1;;;1398:2;1383:18;36193:87:0;1264:177:1;31500:41:0;;;;;;;;;;-1:-1:-1;31500:41:0;;;;;;;-1:-1:-1;;;;;31500:41:0;;;;;;-1:-1:-1;;;;;1636:32:1;;;1618:51;;1606:2;1591:18;31500:41:0;1446:229:1;33849:95:0;;;;;;;;;;-1:-1:-1;33929:7:0;;33849:95;;34758:446;;;;;;;;;;-1:-1:-1;34758:446:0;;;;;:::i;:::-;;:::i;31401:22::-;;;;;;;;;;-1:-1:-1;31401:22:0;;;;;;;;;;;;;;;;;;;2321:6:1;2354:15;;;2336:34;;2406:15;;;;2401:2;2386:18;;2379:43;2284:18;31401:22:0;2141:287:1;37198:322:0;;;;;;;;;;-1:-1:-1;37198:322:0;;;;;:::i;:::-;;:::i;33758:83::-;;;;;;;;;;-1:-1:-1;33824:9:0;;;;33758:83;;;2790:4:1;2778:17;;;2760:36;;2748:2;2733:18;33758:83:0;2618:184:1;37868:477:0;;;;;;;;;;-1:-1:-1;37868:477:0;;;;;:::i;:::-;;:::i;:::-;;35212:300;;;;;;;;;;-1:-1:-1;35212:300:0;;;;;:::i;:::-;;:::i;36288:418::-;;;;;;;;;;-1:-1:-1;36288:418:0;;;;;:::i;:::-;;:::i;38353:113::-;;;;;;;;;;-1:-1:-1;38353:113:0;;;;;:::i;:::-;;:::i;36714:476::-;;;;;;;;;;-1:-1:-1;36714:476:0;;;;;:::i;:::-;;:::i;31374:20::-;;;;;;;;;;-1:-1:-1;31374:20:0;;;;;;;;;;;;;;;31548:28;;;;;;;;;;-1:-1:-1;31548:28:0;;;;-1:-1:-1;;;;;31548:28:0;;;31700:40;;;;;;;;;;-1:-1:-1;31700:40:0;;;;-1:-1:-1;;;31700:40:0;;;;;;32027:37;;;;;;;;;;;;32062:2;32027:37;;37528:332;;;;;;;;;;-1:-1:-1;37528:332:0;;;;;:::i;:::-;;:::i;45445:124::-;;;;;;;;;;-1:-1:-1;45445:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;45534:27:0;45510:4;45534:27;;;:18;:27;;;;;;;;;45445:124;40145:157;;;;;;;;;;-1:-1:-1;40145:157:0;;;;;:::i;:::-;;:::i;31892:28::-;;;;;;;;;;;;;;;;38474:114;;;;;;;;;;-1:-1:-1;38474:114:0;;;;;:::i;:::-;;:::i;30743:46::-;;;;;;;;;;-1:-1:-1;30743:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33952:198;;;;;;;;;;-1:-1:-1;33952:198:0;;;;;:::i;:::-;;:::i;10691:103::-;;;;;;;;;;;;;:::i;40642:242::-;;;;;;;;;;-1:-1:-1;40642:242:0;;;;;:::i;:::-;;:::i;38716:270::-;;;;;;;;;;-1:-1:-1;38716:270:0;;;;;:::i;:::-;;:::i;31585:69::-;;;;;;;;;;-1:-1:-1;31585:69:0;;;;-1:-1:-1;;;;;31585:69:0;;;31858:27;;;;;;;;;;;;;;;;36065:120;;;;;;;;;;-1:-1:-1;36065:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;36157:20:0;36133:4;36157:20;;;:11;:20;;;;;;;;;36065:120;35928:129;;;;;;;;;;;;;:::i;10040:87::-;;;;;;;;;;-1:-1:-1;10086:7:0;10113:6;-1:-1:-1;;;;;10113:6:0;10040:87;;33663;;;;;;;;;;;;;:::i;35520:400::-;;;;;;;;;;-1:-1:-1;35520:400:0;;;;;:::i;:::-;;:::i;34158:199::-;;;;;;;;;;-1:-1:-1;34158:199:0;;;;;:::i;:::-;;:::i;31927:30::-;;;;;;;;;;;;;;;;39303:149;;;;;;;;;;-1:-1:-1;39303:149:0;;;;;:::i;:::-;;:::i;40892:171::-;;;;;;;;;;-1:-1:-1;40892:171:0;;;;;:::i;:::-;;:::i;39460:677::-;;;;;;;;;;-1:-1:-1;39460:677:0;;;;;:::i;:::-;;:::i;31783:32::-;;;;;;;;;;;;;;;;34365:184;;;;;;;;;;-1:-1:-1;34365:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;34514:18:0;;;34482:7;34514:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;34365:184;40475:159;;;;;;;;;;-1:-1:-1;40475:159:0;;;;;:::i;:::-;;:::i;38596:112::-;;;;;;;;;;-1:-1:-1;38596:112:0;;;;;:::i;:::-;;:::i;38994:301::-;;;;;;;;;;-1:-1:-1;38994:301:0;;;;;:::i;:::-;;:::i;10949:238::-;;;;;;;;;;-1:-1:-1;10949:238:0;;;;;:::i;:::-;;:::i;40310:157::-;;;;;;;;;;-1:-1:-1;40310:157:0;;;;;:::i;:::-;;:::i;41071:426::-;;;;;;;;;;-1:-1:-1;41071:426:0;;;;;:::i;:::-;;:::i;33572:83::-;33609:13;33642:5;33635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33572:83;:::o;34557:193::-;34659:4;34681:39;8823:10;34704:7;34713:6;34681:8;:39::i;:::-;-1:-1:-1;34738:4:0;34557:193;;;;;:::o;34758:446::-;34890:4;34907:36;34917:6;34925:9;34936:6;34907:9;:36::i;:::-;34954:220;34977:6;8823:10;35025:138;35081:6;35025:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35025:19:0;;;;;;:11;:19;;;;;;;;8823:10;35025:33;;;;;;;;;;:37;:138::i;:::-;34954:8;:220::i;:::-;-1:-1:-1;35192:4:0;34758:446;;;;;:::o;37198:322::-;37292:7;37350;;37339;:18;;37317:110;;;;-1:-1:-1;;;37317:110:0;;6002:2:1;37317:110:0;;;5984:21:1;6041:2;6021:18;;;6014:30;6080:34;6060:18;;;6053:62;-1:-1:-1;;;6131:18:1;;;6124:40;6181:19;;37317:110:0;;;;;;;;;37438:19;37460:10;:8;:10::i;:::-;37438:32;-1:-1:-1;37488:24:0;:7;37438:32;37488:11;:24::i;:::-;37481:31;37198:322;-1:-1:-1;;;37198:322:0:o;37868:477::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37948:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;37940:60;;;::::0;-1:-1:-1;;;37940:60:0;;6774:2:1;37940:60:0::1;::::0;::::1;6756:21:1::0;6813:2;6793:18;;;6786:30;6852:29;6832:18;;;6825:57;6899:18;;37940:60:0::1;6572:351:1::0;37940:60:0::1;38016:9;38011:327;38035:9;:16:::0;38031:20;::::1;38011:327;;;38093:7;-1:-1:-1::0;;;;;38077:23:0::1;:9;38087:1;38077:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;38077:12:0::1;:23;38073:254;;;38136:9;38146:16:::0;;:20:::1;::::0;38165:1:::1;::::0;38146:20:::1;:::i;:::-;38136:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;38121:9:::1;:12:::0;;-1:-1:-1;;;;;38136:31:0;;::::1;::::0;38131:1;;38121:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;38121:46:0::1;-1:-1:-1::0;;;;;38121:46:0;;::::1;;::::0;;38186:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;38225:11:::1;:20:::0;;;;:28;;-1:-1:-1;;38225:28:0::1;::::0;;38272:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;38272:15:0;;;;;-1:-1:-1;;;;;;38272:15:0::1;::::0;;;;;38011:327:::1;37868:477:::0;:::o;38073:254::-:1;38053:3:::0;::::1;::::0;::::1;:::i;:::-;;;;38011:327;;;;37868:477:::0;:::o;35212:300::-;8823:10;35327:4;35421:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;35421:34:0;;;;;;;;;;35327:4;;35349:133;;35399:7;;35421:50;;35460:10;35421:38;:50::i;36288:418::-;8823:10;36340:14;36403:19;;;:11;:19;;;;;;;;36402:20;36380:114;;;;-1:-1:-1;;;36380:114:0;;7796:2:1;36380:114:0;;;7778:21:1;7835:2;7815:18;;;7808:30;7874:34;7854:18;;;7847:62;-1:-1:-1;;;7925:18:1;;;7918:42;7977:19;;36380:114:0;7594:408:1;36380:114:0;36506:15;36534:19;36545:7;36534:10;:19::i;:::-;-1:-1:-1;;;;;;;;;36582:15:0;;;;;;:7;:15;;;;;;36505:48;;-1:-1:-1;36582:28:0;;36505:48;36582:19;:28::i;:::-;-1:-1:-1;;;;;36564:15:0;;;;;;:7;:15;;;;;:46;36631:7;;:20;;36643:7;36631:11;:20::i;:::-;36621:7;:30;36675:10;;:23;;36690:7;36675:14;:23::i;:::-;36662:10;:36;-1:-1:-1;;;36288:418:0:o;38353:113::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38424:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;38424:34:0::1;38454:4;38424:34;::::0;;38353:113::o;36714:476::-;36832:7;36876;;36865;:18;;36857:62;;;;-1:-1:-1;;;36857:62:0;;8209:2:1;36857:62:0;;;8191:21:1;8248:2;8228:18;;;8221:30;8287:33;8267:18;;;8260:61;8338:18;;36857:62:0;8007:355:1;36857:62:0;36935:17;36930:253;;36970:15;36998:19;37009:7;36998:10;:19::i;:::-;-1:-1:-1;36969:48:0;;-1:-1:-1;37032:14:0;;-1:-1:-1;;;;37032:14:0;36930:253;37082:23;37115:19;37126:7;37115:10;:19::i;:::-;-1:-1:-1;37079:55:0;;-1:-1:-1;37149:22:0;;-1:-1:-1;;;;37149:22:0;37528:332;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37609:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;37608:21;37600:61;;;::::0;-1:-1:-1;;;37600:61:0;;6774:2:1;37600:61:0::1;::::0;::::1;6756:21:1::0;6813:2;6793:18;;;6786:30;6852:29;6832:18;;;6825:57;6899:18;;37600:61:0::1;6572:351:1::0;37600:61:0::1;-1:-1:-1::0;;;;;37676:16:0;::::1;37695:1;37676:16:::0;;;:7:::1;:16;::::0;;;;;:20;37672:109:::1;;-1:-1:-1::0;;;;;37752:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;37732:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;37713:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;37672:109:::1;-1:-1:-1::0;;;;;37791:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;37791:27:0::1;37814:4;37791:27:::0;;::::1;::::0;;;37829:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;37829:23:0::1;::::0;;::::1;::::0;;37528:332::o;40145:157::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;40228:8:::1;40220:5;:16;40212:40;;;;-1:-1:-1::0;;;40212:40:0::1;;;;;;;:::i;:::-;40281:13;:5:::0;40289::::1;40281:13;:::i;:::-;40263:15;:31:::0;-1:-1:-1;40145:157:0:o;38474:114::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38552:20:0;;;::::1;;::::0;;;:14:::1;:20;::::0;;;;:28;;-1:-1:-1;;38552:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38474:114::o;33952:198::-;-1:-1:-1;;;;;34042:20:0;;34018:7;34042:20;;;:11;:20;;;;;;;;34038:49;;;-1:-1:-1;;;;;;34071:16:0;;;;;:7;:16;;;;;;;33952:198::o;34038:49::-;-1:-1:-1;;;;;34125:16:0;;;;;;:7;:16;;;;;;34105:37;;:19;:37::i;10691:103::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;10756:30:::1;10783:1;10756:18;:30::i;:::-;10691:103::o:0;40642:242::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40748:20:0;::::1;40726:112;;;::::0;-1:-1:-1;;;40726:112:0;;9082:2:1;40726:112:0::1;::::0;::::1;9064:21:1::0;9121:2;9101:18;;;9094:30;9160:34;9140:18;;;9133:62;-1:-1:-1;;;9211:18:1;;;9204:40;9261:19;;40726:112:0::1;8880:406:1::0;40726:112:0::1;40849:18;:27:::0;;-1:-1:-1;;;;;;40849:27:0::1;-1:-1:-1::0;;;;;40849:27:0;;;::::1;::::0;;;::::1;::::0;;40642:242::o;38716:270::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;38797:6:::1;:35:::0;;::::1;38843:19:::0;;::::1;::::0;::::1;-1:-1:-1::0;;38843:19:0;;;38797:35;;::::1;38843:19:::0;::::1;::::0;;38797:21:::1;38895:17;38859:3:::0;38821:11;38895:17:::1;:::i;:::-;38873:39;;;;38947:2;38932:11;:17;;38923:55;;;::::0;-1:-1:-1;;;38923:55:0;;9722:2:1;38923:55:0::1;::::0;::::1;9704:21:1::0;9761:2;9741:18;;;9734:30;9800:26;9780:18;;;9773:54;9844:18;;38923:55:0::1;9520:348:1::0;38923:55:0::1;38786:200;38716:270:::0;;:::o;35928:129::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;35983:16:::1;:23:::0;;-1:-1:-1;;;;35983:23:0::1;-1:-1:-1::0;;;35983:23:0::1;::::0;;36037:12:::1;36017:17;:32:::0;35928:129::o;33663:87::-;33702:13;33735:7;33728:14;;;;;:::i;35520:400::-;35640:4;35662:228;8823:10;35712:7;35734:145;35791:15;35734:145;;;;;;;;;;;;;;;;;8823:10;35734:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;35734:34:0;;;;;;;;;;;;:38;:145::i;34158:199::-;34263:4;34285:42;8823:10;34309:9;34320:6;34285:9;:42::i;39303:149::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;39427:17:::1;:9:::0;39439:5:::1;39427:17;:::i;:::-;39406:18;:38:::0;-1:-1:-1;39303:149:0:o;40892:171::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;40969:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;40969:32:0::1;-1:-1:-1::0;;;;40969:32:0;;::::1;;::::0;;41017:38:::1;::::0;::::1;::::0;::::1;::::0;40993:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;41017:38:0::1;;;;;;;;40892:171:::0;:::o;39460:677::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;39576:15:::1;::::0;-1:-1:-1;;;;;39554:38:0;;::::1;39576:15:::0;;;::::1;;39554:38;;39532:130;;;::::0;-1:-1:-1;;;39532:130:0;;10075:2:1;39532:130:0::1;::::0;::::1;10057:21:1::0;10114:2;10094:18;;;10087:30;10153:34;10133:18;;;10126:62;-1:-1:-1;;;10204:18:1;;;10197:40;10254:19;;39532:130:0::1;9873:406:1::0;39532:130:0::1;39710:10;39673:15;;:48;;;;;-1:-1:-1::0;;;;;39673:48:0::1;;;;;-1:-1:-1::0;;;;;39673:48:0::1;;;;;;39732:16;39769:15;;;;;;;;;-1:-1:-1::0;;;;;39769:15:0::1;-1:-1:-1::0;;;;;39769:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;39751:52:0::1;;39826:4;39846:15;;;;;;;;;-1:-1:-1::0;;;;;39846:15:0::1;-1:-1:-1::0;;;;;39846:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39751:128;::::0;-1:-1:-1;;;;;;39751:128:0::1;::::0;;;;;;-1:-1:-1;;;;;10770:15:1;;;39751:128:0::1;::::0;::::1;10752:34:1::0;10822:15;;10802:18;;;10795:43;10687:18;;39751:128:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39732:147:::0;-1:-1:-1;;;;;;39894:22:0;::::1;39890:240;;39967:15;;;;;;;;;-1:-1:-1::0;;;;;39967:15:0::1;-1:-1:-1::0;;;;;39967:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;39949:73:0::1;;40031:4;40038:15;;;;;;;;;-1:-1:-1::0;;;;;40038:15:0::1;-1:-1:-1::0;;;;;40038:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39949:112;::::0;-1:-1:-1;;;;;;39949:112:0::1;::::0;;;;;;-1:-1:-1;;;;;10770:15:1;;;39949:112:0::1;::::0;::::1;10752:34:1::0;10822:15;;10802:18;;;10795:43;10687:18;;39949:112:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39933:13;:128:::0;;-1:-1:-1;;;;;;39933:128:0::1;-1:-1:-1::0;;;;;39933:128:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;37868:477:0:o;39890:240::-:1;40094:13;:24:::0;;-1:-1:-1;;;;;40094:24:0;::::1;-1:-1:-1::0;;;;;;40094:24:0;;::::1;;::::0;;39521:616:::1;39460:677:::0;:::o;40475:159::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;40562:8:::1;40554:5;:16;40546:40;;;;-1:-1:-1::0;;;40546:40:0::1;;;;;;;:::i;:::-;40613:13;:5:::0;40621::::1;40613:13;:::i;:::-;40597;:29:::0;-1:-1:-1;40475:159:0:o;38596:112::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38665:27:0::1;38695:5;38665:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;38665:35:0::1;::::0;;38596:112::o;38994:301::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;39101:7:::1;:36:::0;;::::1;39148:20:::0;;::::1;::::0;::::1;-1:-1:-1::0;;39148:20:0;;;39101:36;;::::1;39148:20:::0;::::1;::::0;;39101:22:::1;39202:17;39165:3:::0;39126:11;39202:17:::1;:::i;:::-;39179:40;;;;39255:2;39239:12;:18;;39230:57;;;::::0;-1:-1:-1;;;39230:57:0;;11051:2:1;39230:57:0::1;::::0;::::1;11033:21:1::0;11090:2;11070:18;;;11063:30;11129:27;11109:18;;;11102:55;11174:18;;39230:57:0::1;10849:349:1::0;10949:238:0;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11052:22:0;::::1;11030:110;;;::::0;-1:-1:-1;;;11030:110:0;;11405:2:1;11030:110:0::1;::::0;::::1;11387:21:1::0;11444:2;11424:18;;;11417:30;11483:34;11463:18;;;11456:62;-1:-1:-1;;;11534:18:1;;;11527:36;11580:19;;11030:110:0::1;11203:402:1::0;11030:110:0::1;11151:28;11170:8;11151:18;:28::i;:::-;10949:238:::0;:::o;40310:157::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;40396:8:::1;40388:5;:16;40380:40;;;;-1:-1:-1::0;;;40380:40:0::1;;;;;;;:::i;:::-;40446:13;:5:::0;40454::::1;40446:13;:::i;:::-;40431:12;:28:::0;-1:-1:-1;40310:157:0:o;41071:426::-;10086:7;10113:6;-1:-1:-1;;;;;10113:6:0;8823:10;10260:23;10252:68;;;;-1:-1:-1;;;10252:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41151:23:0;::::1;41169:4;41151:23;;41143:51;;;::::0;-1:-1:-1;;;41143:51:0;;11812:2:1;41143:51:0::1;::::0;::::1;11794:21:1::0;11851:2;11831:18;;;11824:30;-1:-1:-1;;;11870:18:1;;;11863:45;11925:18;;41143:51:0::1;11610:339:1::0;41143:51:0::1;-1:-1:-1::0;;;;;41211:22:0;::::1;41207:124;;10086:7:::0;10113:6;;41250:48:::1;::::0;-1:-1:-1;;;;;10113:6:0;;;;41276:21:::1;41250:48:::0;::::1;;;::::0;41276:21;;41250:48;10086:7;41250:48;41276:21;10113:6;41250:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;41207:124;41406:35;::::0;-1:-1:-1;;;41406:35:0;;41435:4:::1;41406:35;::::0;::::1;1618:51:1::0;41370:6:0;;41343:17:::1;::::0;-1:-1:-1;;;;;41406:20:0;::::1;::::0;::::1;::::0;1591:18:1;;41406:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41388:53;;41452:10;-1:-1:-1::0;;;;;41452:19:0::1;;41472:7;10086::::0;10113:6;-1:-1:-1;;;;;10113:6:0;;10040:87;41472:7:::1;41452:37;::::0;-1:-1:-1;;;;;;41452:37:0::1;::::0;;;;;;-1:-1:-1;;;;;12335:32:1;;;41452:37:0::1;::::0;::::1;12317:51:1::0;12384:18;;;12377:34;;;12290:18;;41452:37:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41132:365;;41071:426:::0;:::o;23919:98::-;23977:7;24004:5;24008:1;24004;:5;:::i;24318:98::-;24376:7;24403:5;24407:1;24403;:5;:::i;45577:371::-;-1:-1:-1;;;;;45704:19:0;;45696:68;;;;-1:-1:-1;;;45696:68:0;;13096:2:1;45696:68:0;;;13078:21:1;13135:2;13115:18;;;13108:30;13174:34;13154:18;;;13147:62;-1:-1:-1;;;13225:18:1;;;13218:34;13269:19;;45696:68:0;12894:400:1;45696:68:0;-1:-1:-1;;;;;45783:21:0;;45775:68;;;;-1:-1:-1;;;45775:68:0;;13501:2:1;45775:68:0;;;13483:21:1;13540:2;13520:18;;;13513:30;13579:34;13559:18;;;13552:62;-1:-1:-1;;;13630:18:1;;;13623:32;13672:19;;45775:68:0;13299:398:1;45775:68:0;-1:-1:-1;;;;;45856:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;45908:32;;1410:25:1;;;45908:32:0;;1383:18:1;45908:32:0;;;;;;;45577:371;;;:::o;45956:1868::-;-1:-1:-1;;;;;46078:18:0;;46070:68;;;;-1:-1:-1;;;46070:68:0;;13904:2:1;46070:68:0;;;13886:21:1;13943:2;13923:18;;;13916:30;13982:34;13962:18;;;13955:62;-1:-1:-1;;;14033:18:1;;;14026:35;14078:19;;46070:68:0;13702:401:1;46070:68:0;-1:-1:-1;;;;;46157:16:0;;46149:64;;;;-1:-1:-1;;;46149:64:0;;14310:2:1;46149:64:0;;;14292:21:1;14349:2;14329:18;;;14322:30;14388:34;14368:18;;;14361:62;-1:-1:-1;;;14439:18:1;;;14432:33;14482:19;;46149:64:0;14108:399:1;46149:64:0;46241:1;46232:6;:10;46224:64;;;;-1:-1:-1;;;46224:64:0;;14714:2:1;46224:64:0;;;14696:21:1;14753:2;14733:18;;;14726:30;14792:34;14772:18;;;14765:62;-1:-1:-1;;;14843:18:1;;;14836:39;14892:19;;46224:64:0;14512:405:1;46224:64:0;-1:-1:-1;;;;;46322:20:0;;;;;;:14;:20;;;;;;;;46321:21;:44;;;;-1:-1:-1;;;;;;46347:18:0;;;;;;:14;:18;;;;;;;;46346:19;46321:44;46299:116;;;;-1:-1:-1;;;46299:116:0;;15124:2:1;46299:116:0;;;15106:21:1;15163:2;15143:18;;;15136:30;-1:-1:-1;;;15182:18:1;;;15175:52;15244:18;;46299:116:0;14922:346:1;46299:116:0;46448:16;;-1:-1:-1;;;46448:16:0;;;;;:44;;-1:-1:-1;;;;;;46468:24:0;;;;;;:18;:24;;;;;;;;46448:44;46426:117;;;;-1:-1:-1;;;46426:117:0;;15475:2:1;46426:117:0;;;15457:21:1;15514:2;15494:18;;;15487:30;15553:25;15533:18;;;15526:53;15596:18;;46426:117:0;15273:347:1;46426:117:0;46838:28;46869:24;46887:4;46869:9;:24::i;:::-;46970:18;;46838:55;;-1:-1:-1;46933:55:0;;;;;;;47017:53;;-1:-1:-1;47054:16:0;;-1:-1:-1;;;47054:16:0;;;;47053:17;47017:53;:91;;;;-1:-1:-1;47095:13:0;;-1:-1:-1;;;;;47087:21:0;;;47095:13;;47087:21;;47017:91;:129;;;;-1:-1:-1;47125:21:0;;-1:-1:-1;;;47125:21:0;;;;47017:129;46999:417;;;47196:18;;;-1:-1:-1;47196:18:0;47297;;47293:97;;47336:38;47359:14;47336:22;:38::i;:::-;47158:258;46999:417;-1:-1:-1;;;;;47609:24:0;;47489:12;47609:24;;;:18;:24;;;;;;47504:4;;47609:24;;;:50;;-1:-1:-1;;;;;;47637:22:0;;;;;;:18;:22;;;;;;;;47609:50;47605:98;;;-1:-1:-1;47686:5:0;47605:98;47775:41;47790:4;47796:2;47800:6;47808:7;47775:14;:41::i;:::-;46059:1765;;;45956:1868;;;:::o;25460:240::-;25580:7;25641:12;25633:6;;;;25625:29;;;;-1:-1:-1;;;25625:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;25676:5:0;;;25460:240::o;43556:164::-;43598:7;43619:15;43636;43655:19;:17;:19::i;:::-;43618:56;;-1:-1:-1;43618:56:0;-1:-1:-1;43692:20:0;43618:56;;43692:11;:20::i;:::-;43685:27;;;;43556:164;:::o;23181:98::-;23239:7;23266:5;23270:1;23266;:5;:::i;41774:699::-;41874:7;41896;41918;41940;41962;42012:23;42050:12;42077:20;42111;42123:7;42111:11;:20::i;:::-;41997:134;;;;;;42143:15;42160:23;42185:12;42201:115;42227:7;42249:4;42268:12;42295:10;:8;:10::i;:::-;42201:11;:115::i;:::-;42142:174;;;;-1:-1:-1;42142:174:0;;-1:-1:-1;42420:15:0;;-1:-1:-1;42450:4:0;;-1:-1:-1;41774:699:0;;-1:-1:-1;;;;;;41774:699:0:o;23562:98::-;23620:7;23647:5;23651:1;23647;:5;:::i;11347:191::-;11421:16;11440:6;;-1:-1:-1;;;;;11457:17:0;;;-1:-1:-1;;;;;;11457:17:0;;;;;;11490:40;;11440:6;;;;;;;11490:40;;11421:16;11490:40;11410:128;11347:191;:::o;47840:302::-;32397:16;:23;;-1:-1:-1;;;;32397:23:0;-1:-1:-1;;;32397:23:0;;;47944:21:::1;47976:24;47993:6:::0;47976:16:::1;:24::i;:::-;48011:18;48032:41;:21;48058:14:::0;48032:25:::1;:41::i;:::-;48094:18;::::0;48086:48:::1;::::0;48011:62;;-1:-1:-1;;;;;;48094:18:0::1;::::0;48086:48;::::1;;;::::0;48011:62;;48094:18:::1;48086:48:::0;48094:18;48086:48;48011:62;48094:18;48086:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;32443:16:0;:24;;-1:-1:-1;;;;32443:24:0;;;-1:-1:-1;;47840:302:0:o;49349:1626::-;49500:14;45114:7;:11;;-1:-1:-1;;45146:19:0;;;45071:102;49500:14;49531:7;49527:832;;;49578:9;;49563:12;:24;49555:59;;;;-1:-1:-1;;;49555:59:0;;15960:2:1;49555:59:0;;;15942:21:1;15999:2;15979:18;;;15972:30;-1:-1:-1;;;16018:18:1;;;16011:52;16080:18;;49555:59:0;15758:346:1;49555:59:0;49643:12;49631:9;:24;49689:13;;-1:-1:-1;;;;;49676:26:0;;;49689:13;;49676:26;49672:210;;49786:15;;49776:6;49753:20;49763:9;49753;:20::i;:::-;:29;;;;:::i;:::-;:48;;49723:143;;;;-1:-1:-1;;;49723:143:0;;16311:2:1;49723:143:0;;;16293:21:1;16350:2;16330:18;;;16323:30;-1:-1:-1;;;16369:18:1;;;16362:51;16430:18;;49723:143:0;16109:345:1;49723:143:0;49910:13;;-1:-1:-1;;;;;49900:23:0;;;49910:13;;49900:23;49896:289;;;49962:12;;49952:6;:22;;49944:52;;;;-1:-1:-1;;;49944:52:0;;16661:2:1;49944:52:0;;;16643:21:1;16700:2;16680:18;;;16673:30;-1:-1:-1;;;16719:18:1;;;16712:47;16776:18;;49944:52:0;16459:341:1;49944:52:0;50036:17;;:30;;32062:2;;50036:30;:::i;:::-;50021:12;:45;50017:126;;;-1:-1:-1;;;;;50091:25:0;;;;;;:14;:25;;;;;:32;;-1:-1:-1;;50091:32:0;50119:4;50091:32;;;50017:126;50161:8;45228:6;:13;45218:7;:23;;45228:13;45279:21;;;45228:13;45261:39;;;-1:-1:-1;;45261:39:0;;;45228:13;;;45261:39;;;;;;;;;;45181:127;50161:8;50216:13;;-1:-1:-1;;;;;50203:26:0;;;50216:13;;50203:26;50199:149;;;50268:13;;50258:6;:23;;50250:54;;;;-1:-1:-1;;;50250:54:0;;17007:2:1;50250:54:0;;;16989:21:1;17046:2;17026:18;;;17019:30;-1:-1:-1;;;17065:18:1;;;17058:48;17123:18;;50250:54:0;16805:342:1;50250:54:0;50323:9;45364:7;:14;45354:7;:24;;45364:14;45407:22;;;45364:14;45389:40;;;-1:-1:-1;;45389:40:0;;;45364:14;;;45389:40;;;;;;;;;;45316:121;50323:9;-1:-1:-1;;;;;50375:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;50399:22:0;;;;;;:11;:22;;;;;;;;50398:23;50375:46;50371:597;;;50438:48;50460:6;50468:9;50479:6;50438:21;:48::i;:::-;50371:597;;;-1:-1:-1;;;;;50509:19:0;;;;;;:11;:19;;;;;;;;50508:20;:46;;;;-1:-1:-1;;;;;;50532:22:0;;;;;;:11;:22;;;;;;;;50508:46;50504:464;;;50571:46;50591:6;50599:9;50610:6;50571:19;:46::i;50504:464::-;-1:-1:-1;;;;;50640:19:0;;;;;;:11;:19;;;;;;;;50639:20;:47;;;;-1:-1:-1;;;;;;50664:22:0;;;;;;:11;:22;;;;;;;;50663:23;50639:47;50635:333;;;50703:44;50721:6;50729:9;50740:6;50703:17;:44::i;50635:333::-;-1:-1:-1;;;;;50769:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;50792:22:0;;;;;;:11;:22;;;;;;;;50769:45;50765:203;;;50831:48;50853:6;50861:9;50872:6;50831:21;:48::i;50765:203::-;50912:44;50930:6;50938:9;50949:6;50912:17;:44::i;43728:605::-;43826:7;;43862;;43779;;;;;43880:338;43904:9;:16;43900:20;;43880:338;;;43988:7;43964;:21;43972:9;43982:1;43972:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;43972:12:0;43964:21;;;;;;;;;;;;;:31;;:83;;;44040:7;44016;:21;44024:9;44034:1;44024:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;44024:12:0;44016:21;;;;;;;;;;;;;:31;43964:83;43942:146;;;44071:7;;44080;;44063:25;;;;;;;43728:605;;:::o;43942:146::-;44113:34;44125:7;:21;44133:9;44143:1;44133:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;44133:12:0;44125:21;;;;;;;;;;;;;44113:7;;:11;:34::i;:::-;44103:44;;44172:34;44184:7;:21;44192:9;44202:1;44192:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;44192:12:0;44184:21;;;;;;;;;;;;;44172:7;;:11;:34::i;:::-;44162:44;-1:-1:-1;43922:3:0;;;;:::i;:::-;;;;43880:338;;;-1:-1:-1;44254:7:0;;44242;;:20;;:11;:20::i;:::-;44232:7;:30;44228:61;;;44272:7;;44281;;44264:25;;;;;;43728:605;;:::o;44228:61::-;44308:7;;44317;;-1:-1:-1;43728:605:0;-1:-1:-1;43728:605:0:o;42481:473::-;42582:7;42604;42626;42661:12;42676:24;42692:7;42676:15;:24::i;:::-;42661:39;;42720:20;42743:32;42767:7;42743:23;:32::i;:::-;42720:55;-1:-1:-1;42786:23:0;42812:17;:7;42824:4;42812:11;:17::i;:::-;42786:43;-1:-1:-1;42858:33:0;42786:43;42878:12;42858:19;:33::i;:::-;42840:51;42927:4;;-1:-1:-1;42933:12:0;;-1:-1:-1;42481:473:0;;-1:-1:-1;;;42481:473:0:o;42962:586::-;43163:7;;;;43260:24;:7;43272:11;43260;:24::i;:::-;43242:42;-1:-1:-1;43295:12:0;43310:21;:4;43319:11;43310:8;:21::i;:::-;43295:36;-1:-1:-1;43342:20:0;43365:29;:12;43382:11;43365:16;:29::i;:::-;43342:52;-1:-1:-1;43405:23:0;43431:59;43342:52;43431:17;:7;43443:4;43431:11;:17::i;:::-;:21;;:59::i;:::-;43509:7;;;;-1:-1:-1;43535:4:0;;-1:-1:-1;42962:586:0;;-1:-1:-1;;;;;;;42962:586:0:o;48150:589::-;48300:16;;;48314:1;48300:16;;;;;;;;48276:21;;48300:16;;;;;;;;;;-1:-1:-1;48300:16:0;48276:40;;48345:4;48327;48332:1;48327:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;48327:23:0;;;-1:-1:-1;;;;;48327:23:0;;;;;48371:15;;;;;;;;;-1:-1:-1;;;;;48371:15:0;-1:-1:-1;;;;;48371:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48361:4;48366:1;48361:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;48361:32:0;;;:7;;;;;;;;;:32;48438:15;;48406:62;;48423:4;;48438:15;;;;48456:11;48406:8;:62::i;:::-;48507:15;;:224;;-1:-1:-1;;;48507:224:0;;:15;;;;-1:-1:-1;;;;;48507:15:0;;:66;;:224;;48588:11;;48614:1;;48658:4;;48685;;48705:15;;48507;:224;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52304:677;52455:15;52485:23;52523:12;52550:23;52588:12;52614:19;52625:7;52614:10;:19::i;:::-;-1:-1:-1;;;;;52662:15:0;;;;;;:7;:15;;;;;;52440:193;;-1:-1:-1;52440:193:0;;-1:-1:-1;52440:193:0;;-1:-1:-1;52440:193:0;-1:-1:-1;52440:193:0;-1:-1:-1;52662:28:0;;52682:7;52662:19;:28::i;:::-;-1:-1:-1;;;;;52644:15:0;;;;;;:7;:15;;;;;;;;:46;;;;52719:7;:15;;;;:28;;52739:7;52719:19;:28::i;:::-;-1:-1:-1;;;;;52701:15:0;;;;;;;:7;:15;;;;;;:46;;;;52779:18;;;;;;;:39;;52802:15;52779:22;:39::i;:::-;-1:-1:-1;;;;;52758:18:0;;;;;;:7;:18;;;;;:60;52829:50;52846:32;52870:7;52846:23;:32::i;:::-;52829:16;:50::i;:::-;52890:23;52902:4;52908;52890:11;:23::i;:::-;52946:9;-1:-1:-1;;;;;52929:44:0;52938:6;-1:-1:-1;;;;;52929:44:0;;52957:15;52929:44;;;;1410:25:1;;1398:2;1383:18;;1264:177;52929:44:0;;;;;;;;52429:552;;;;;52304:677;;;:::o;51607:689::-;51756:15;51786:23;51824:12;51851:23;51889:12;51915:19;51926:7;51915:10;:19::i;:::-;-1:-1:-1;;;;;51963:15:0;;;;;;:7;:15;;;;;;51741:193;;-1:-1:-1;51741:193:0;;-1:-1:-1;51741:193:0;;-1:-1:-1;51741:193:0;-1:-1:-1;51741:193:0;-1:-1:-1;51963:28:0;;51741:193;51963:19;:28::i;:::-;-1:-1:-1;;;;;51945:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;52023:18;;;;;:7;:18;;;;;:39;;52046:15;52023:22;:39::i;:::-;-1:-1:-1;;;;;52002:18:0;;;;;;:7;:18;;;;;;;;:60;;;;52094:7;:18;;;;:39;;52117:15;52094:22;:39::i;50983:616::-;51130:15;51160:23;51198:12;51225:23;51263:12;51289:19;51300:7;51289:10;:19::i;:::-;-1:-1:-1;;;;;51337:15:0;;;;;;:7;:15;;;;;;51115:193;;-1:-1:-1;51115:193:0;;-1:-1:-1;51115:193:0;;-1:-1:-1;51115:193:0;-1:-1:-1;51115:193:0;-1:-1:-1;51337:28:0;;51115:193;51337:19;:28::i;52989:748::-;53140:15;53170:23;53208:12;53235:23;53273:12;53299:19;53310:7;53299:10;:19::i;:::-;-1:-1:-1;;;;;53347:15:0;;;;;;:7;:15;;;;;;53125:193;;-1:-1:-1;53125:193:0;;-1:-1:-1;53125:193:0;;-1:-1:-1;53125:193:0;-1:-1:-1;53125:193:0;-1:-1:-1;53347:28:0;;53367:7;53347:19;:28::i;:::-;-1:-1:-1;;;;;53329:15:0;;;;;;:7;:15;;;;;;;;:46;;;;53404:7;:15;;;;:28;;53424:7;53404:19;:28::i;44739:130::-;44842:7;;44803;;44830:31;;44855:5;;44830:20;;:7;;44842;;44830:11;:20::i;:::-;:24;;:31::i;44885:178::-;45028:15;;44984:7;;45016:39;;45049:5;;45016:28;;:7;;45028:15;;;;;45016:11;:28::i;44349:382::-;44416:19;44438:10;:8;:10::i;:::-;44416:32;-1:-1:-1;44459:20:0;44482:29;:12;44416:32;44482:16;:29::i;:::-;44565:4;44549:22;;;;:7;:22;;;;;;44459:52;;-1:-1:-1;44549:40:0;;44459:52;44549:26;:40::i;:::-;44540:4;44524:22;;;;:7;:22;;;;;;;;:65;;;;44604:11;:26;;;;;;44600:124;;;44688:4;44672:22;;;;:7;:22;;;;;;:40;;44699:12;44672:26;:40::i;:::-;44663:4;44647:22;;;;:7;:22;;;;;:65;44405:326;;44349:382;:::o;41619:147::-;41697:7;;:17;;41709:4;41697:11;:17::i;:::-;41687:7;:27;41738:10;;:20;;41753:4;41738:14;:20::i;:::-;41725:10;:33;-1:-1:-1;;41619:147:0:o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1680:456::-;1757:6;1765;1773;1826:2;1814:9;1805:7;1801:23;1797:32;1794:52;;;1842:1;1839;1832:12;1794:52;1881:9;1868:23;1900:31;1925:5;1900:31;:::i;:::-;1950:5;-1:-1:-1;2007:2:1;1992:18;;1979:32;2020:33;1979:32;2020:33;:::i;:::-;1680:456;;2072:7;;-1:-1:-1;;;2126:2:1;2111:18;;;;2098:32;;1680:456::o;2433:180::-;2492:6;2545:2;2533:9;2524:7;2520:23;2516:32;2513:52;;;2561:1;2558;2551:12;2513:52;-1:-1:-1;2584:23:1;;2433:180;-1:-1:-1;2433:180:1:o;2807:247::-;2866:6;2919:2;2907:9;2898:7;2894:23;2890:32;2887:52;;;2935:1;2932;2925:12;2887:52;2974:9;2961:23;2993:31;3018:5;2993:31;:::i;3059:118::-;3145:5;3138:13;3131:21;3124:5;3121:32;3111:60;;3167:1;3164;3157:12;3182:309;3247:6;3255;3308:2;3296:9;3287:7;3283:23;3279:32;3276:52;;;3324:1;3321;3314:12;3276:52;3360:9;3347:23;3337:33;;3420:2;3409:9;3405:18;3392:32;3433:28;3455:5;3433:28;:::i;:::-;3480:5;3470:15;;;3182:309;;;;;:::o;3704:382::-;3769:6;3777;3830:2;3818:9;3809:7;3805:23;3801:32;3798:52;;;3846:1;3843;3836:12;3798:52;3885:9;3872:23;3904:31;3929:5;3904:31;:::i;:::-;3954:5;-1:-1:-1;4011:2:1;3996:18;;3983:32;4024:30;3983:32;4024:30;:::i;4351:159::-;4418:20;;4478:6;4467:18;;4457:29;;4447:57;;4500:1;4497;4490:12;4447:57;4351:159;;;:::o;4515:256::-;4581:6;4589;4642:2;4630:9;4621:7;4617:23;4613:32;4610:52;;;4658:1;4655;4648:12;4610:52;4681:28;4699:9;4681:28;:::i;:::-;4671:38;;4728:37;4761:2;4750:9;4746:18;4728:37;:::i;:::-;4718:47;;4515:256;;;;;:::o;4776:241::-;4832:6;4885:2;4873:9;4864:7;4860:23;4856:32;4853:52;;;4901:1;4898;4891:12;4853:52;4940:9;4927:23;4959:28;4981:5;4959:28;:::i;5022:388::-;5090:6;5098;5151:2;5139:9;5130:7;5126:23;5122:32;5119:52;;;5167:1;5164;5157:12;5119:52;5206:9;5193:23;5225:31;5250:5;5225:31;:::i;:::-;5275:5;-1:-1:-1;5332:2:1;5317:18;;5304:32;5345:33;5304:32;5345:33;:::i;5415:380::-;5494:1;5490:12;;;;5537;;;5558:61;;5612:4;5604:6;5600:17;5590:27;;5558:61;5665:2;5657:6;5654:14;5634:18;5631:38;5628:161;;;5711:10;5706:3;5702:20;5699:1;5692:31;5746:4;5743:1;5736:15;5774:4;5771:1;5764:15;5628:161;;5415:380;;;:::o;6211:356::-;6413:2;6395:21;;;6432:18;;;6425:30;6491:34;6486:2;6471:18;;6464:62;6558:2;6543:18;;6211:356::o;6928:127::-;6989:10;6984:3;6980:20;6977:1;6970:31;7020:4;7017:1;7010:15;7044:4;7041:1;7034:15;7060:127;7121:10;7116:3;7112:20;7109:1;7102:31;7152:4;7149:1;7142:15;7176:4;7173:1;7166:15;7192:125;7232:4;7260:1;7257;7254:8;7251:34;;;7265:18;;:::i;:::-;-1:-1:-1;7302:9:1;;7192:125::o;7322:127::-;7383:10;7378:3;7374:20;7371:1;7364:31;7414:4;7411:1;7404:15;7438:4;7435:1;7428:15;7454:135;7493:3;-1:-1:-1;;7514:17:1;;7511:43;;;7534:18;;:::i;:::-;-1:-1:-1;7581:1:1;7570:13;;7454:135::o;8367:335::-;8569:2;8551:21;;;8608:2;8588:18;;;8581:30;-1:-1:-1;;;8642:2:1;8627:18;;8620:41;8693:2;8678:18;;8367:335::o;8707:168::-;8747:7;8813:1;8809;8805:6;8801:14;8798:1;8795:21;8790:1;8783:9;8776:17;8772:45;8769:71;;;8820:18;;:::i;:::-;-1:-1:-1;8860:9:1;;8707:168::o;9291:224::-;9330:3;9358:6;9391:2;9388:1;9384:10;9421:2;9418:1;9414:10;9452:3;9448:2;9444:12;9439:3;9436:21;9433:47;;;9460:18;;:::i;:::-;9496:13;;9291:224;-1:-1:-1;;;;9291:224:1:o;10284:251::-;10354:6;10407:2;10395:9;10386:7;10382:23;10378:32;10375:52;;;10423:1;10420;10413:12;10375:52;10455:9;10449:16;10474:31;10499:5;10474:31;:::i;11954:184::-;12024:6;12077:2;12065:9;12056:7;12052:23;12048:32;12045:52;;;12093:1;12090;12083:12;12045:52;-1:-1:-1;12116:16:1;;11954:184;-1:-1:-1;11954:184:1:o;12422:245::-;12489:6;12542:2;12530:9;12521:7;12517:23;12513:32;12510:52;;;12558:1;12555;12548:12;12510:52;12590:9;12584:16;12609:28;12631:5;12609:28;:::i;12672:217::-;12712:1;12738;12728:132;;12782:10;12777:3;12773:20;12770:1;12763:31;12817:4;12814:1;12807:15;12845:4;12842:1;12835:15;12728:132;-1:-1:-1;12874:9:1;;12672:217::o;15625:128::-;15665:3;15696:1;15692:6;15689:1;15686:13;15683:39;;;15702:18;;:::i;:::-;-1:-1:-1;15738:9:1;;15625:128::o;17284:980::-;17546:4;17594:3;17583:9;17579:19;17625:6;17614:9;17607:25;17651:2;17689:6;17684:2;17673:9;17669:18;17662:34;17732:3;17727:2;17716:9;17712:18;17705:31;17756:6;17791;17785:13;17822:6;17814;17807:22;17860:3;17849:9;17845:19;17838:26;;17899:2;17891:6;17887:15;17873:29;;17920:1;17930:195;17944:6;17941:1;17938:13;17930:195;;;18009:13;;-1:-1:-1;;;;;18005:39:1;17993:52;;18100:15;;;;18065:12;;;;18041:1;17959:9;17930:195;;;-1:-1:-1;;;;;;;18181:32:1;;;;18176:2;18161:18;;18154:60;-1:-1:-1;;;18245:3:1;18230:19;18223:35;18142:3;17284:980;-1:-1:-1;;;17284:980:1:o

Swarm Source

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