ETH Price: $2,680.66 (-2.35%)

Token

COLOSSUS (RHODES)
 

Overview

Max Total Supply

30,000,000 RHODES

Holders

53

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
chadfloorholder.eth
Balance
12,886.353658334 RHODES

Value
$0.00
0x7bfdfc478389d6fa91a940eb6e7367b45ef5360f
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:
THECOLOSSUS

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: MIT

pragma solidity ^0.7.6;
pragma abicoder v2;
 
library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
 
        return c;
    }
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
 
        return c;
    }
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }
 
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
 

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function decimals() external view returns (uint8);
    function symbol() external view returns (string memory);
    function name() external view returns (string memory);
    function getOwner() external view returns (address);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address _owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
interface IWETH is IERC20 {
    function deposit() external payable;
    function withdraw(uint256 wad) external;
} 

library WethUtils {
    IWETH public constant weth = IWETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);

    function isWeth(address token) internal pure returns (bool) {
        return address(weth) == token;
    }

    function wrap(uint256 amount) internal {
        weth.deposit{value: amount}();
    }

    function unwrap(uint256 amount) internal {
        weth.withdraw(amount);
    }

    function transfer(address to, uint256 amount) internal {
        weth.transfer(to, amount);
    }
}

interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


abstract contract Auth {
    address internal owner;
    mapping (address => bool) internal authorizations;
 
    constructor(address _owner) {
        owner = _owner;
        authorizations[_owner] = true;
    }
 
    /**
     * Function modifier to require caller to be contract owner
     */
    modifier onlyOwner() {
        require(isOwner(msg.sender), "!OWNER"); _;
    }
 
    /**
     * Function modifier to require caller to be authorized
     */
    modifier authorized() {
        require(isAuthorized(msg.sender), "!AUTHORIZED"); _;
    }
 
    /**
     * Authorize address. Owner only
     */
    function authorize(address adr) public onlyOwner {
        authorizations[adr] = true;
    }
 
    /**
     * Remove address' authorization. Owner only
     */
    function unauthorize(address adr) public onlyOwner {
        authorizations[adr] = false;
    }
 
    /**
     * Check if address is owner
     */
    function isOwner(address account) public view returns (bool) {
        return account == owner;
    }
 
    /**
     * Return address' authorization status
     */
    function isAuthorized(address adr) public view returns (bool) {
        return authorizations[adr];
    }
 
    /**
     * Transfer ownership to new address. Caller must be owner. Leaves old owner authorized
     */
    function transferOwnership(address payable adr) public onlyOwner {
        owner = adr;
        authorizations[adr] = true;
        emit OwnershipTransferred(adr);
    }
 
    event OwnershipTransferred(address owner);
}

interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}
interface IERC721Metadata is IERC721 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

interface IPoolInitializer {
    /// @notice Creates a new pool if it does not exist, then initializes if not initialized
    /// @dev This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool
    /// @param token0 The contract address of token0 of the pool
    /// @param token1 The contract address of token1 of the pool
    /// @param fee The fee amount of the v3 pool for the specified token pair
    /// @param sqrtPriceX96 The initial square root price of the pool as a Q64.96 value
    /// @return pool Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessary
    function createAndInitializePoolIfNecessary(
        address token0,
        address token1,
        uint24 fee,
        uint160 sqrtPriceX96
    ) external payable returns (address pool);
}

interface IERC721Permit is IERC721 {
    /// @notice The permit typehash used in the permit signature
    /// @return The typehash for the permit
    function PERMIT_TYPEHASH() external pure returns (bytes32);

    /// @notice The domain separator used in the permit signature
    /// @return The domain seperator used in encoding of permit signature
    function DOMAIN_SEPARATOR() external view returns (bytes32);

    /// @notice Approve of a specific token ID for spending by spender via signature
    /// @param spender The account that is being approved
    /// @param tokenId The ID of the token that is being approved for spending
    /// @param deadline The deadline timestamp by which the call must be mined for the approve to work
    /// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`
    /// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`
    /// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`
    function permit(
        address spender,
        uint256 tokenId,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external payable;
}

interface IPeripheryPayments {
    /// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH.
    /// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.
    /// @param amountMinimum The minimum amount of WETH9 to unwrap
    /// @param recipient The address receiving ETH
    function unwrapWETH9(uint256 amountMinimum, address recipient) external payable;

    /// @notice Refunds any ETH balance held by this contract to the `msg.sender`
    /// @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps
    /// that use ether for the input amount
    function refundETH() external payable;

    /// @notice Transfers the full amount of a token held by this contract to recipient
    /// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users
    /// @param token The contract address of the token which will be transferred to `recipient`
    /// @param amountMinimum The minimum amount of token required for a transfer
    /// @param recipient The destination address of the token
    function sweepToken(
        address token,
        uint256 amountMinimum,
        address recipient
    ) external payable;
}

interface IPeripheryImmutableState {
    /// @return Returns the address of the Uniswap V3 factory
    function factory() external view returns (address);

    /// @return Returns the address of WETH9
    function WETH9() external view returns (address);
}

library PoolAddress {
    bytes32 internal constant POOL_INIT_CODE_HASH = 0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54;

    /// @notice The identifying key of the pool
    struct PoolKey {
        address token0;
        address token1;
        uint24 fee;
    }

    /// @notice Returns PoolKey: the ordered tokens with the matched fee levels
    /// @param tokenA The first token of a pool, unsorted
    /// @param tokenB The second token of a pool, unsorted
    /// @param fee The fee level of the pool
    /// @return Poolkey The pool details with ordered token0 and token1 assignments
    function getPoolKey(
        address tokenA,
        address tokenB,
        uint24 fee
    ) internal pure returns (PoolKey memory) {
        if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA);
        return PoolKey({token0: tokenA, token1: tokenB, fee: fee});
    }

    /// @notice Deterministically computes the pool address given the factory and PoolKey
    /// @param factory The Uniswap V3 factory contract address
    /// @param key The PoolKey
    /// @return pool The contract address of the V3 pool
    function computeAddress(address factory, PoolKey memory key) internal pure returns (address pool) {
        require(key.token0 < key.token1);
        pool = address(
            uint256(
                keccak256(
                    abi.encodePacked(
                        hex'ff',
                        factory,
                        keccak256(abi.encode(key.token0, key.token1, key.fee)),
                        POOL_INIT_CODE_HASH
                    )
                )
            )
        );
    }
}

interface IV3Pool{
    function slot0() external view returns (
            uint160 sqrtPriceX96,
            int24 tick,
            uint16 observationIndex,
            uint16 observationCardinality,
            uint16 observationCardinalityNext,
            uint8 feeProtocol,
            bool unlocked
        );
    function tickSpacing() external view returns (int24);
    function fee() external view returns (uint24);
    function token0() external view returns (address);
    function token1() external view returns (address);

}
 
interface INonfungiblePositionManager is
    IPoolInitializer,
    IPeripheryPayments,
    IPeripheryImmutableState,
    IERC721Metadata,
    IERC721Enumerable,
    IERC721Permit
{
    /// @notice Emitted when liquidity is increased for a position NFT
    /// @dev Also emitted when a token is minted
    /// @param tokenId The ID of the token for which liquidity was increased
    /// @param liquidity The amount by which liquidity for the NFT position was increased
    /// @param amount0 The amount of token0 that was paid for the increase in liquidity
    /// @param amount1 The amount of token1 that was paid for the increase in liquidity
    event IncreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1);
    /// @notice Emitted when liquidity is decreased for a position NFT
    /// @param tokenId The ID of the token for which liquidity was decreased
    /// @param liquidity The amount by which liquidity for the NFT position was decreased
    /// @param amount0 The amount of token0 that was accounted for the decrease in liquidity
    /// @param amount1 The amount of token1 that was accounted for the decrease in liquidity
    event DecreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1);
    /// @notice Emitted when tokens are collected for a position NFT
    /// @dev The amounts reported may not be exactly equivalent to the amounts transferred, due to rounding behavior
    /// @param tokenId The ID of the token for which underlying tokens were collected
    /// @param recipient The address of the account that received the collected tokens
    /// @param amount0 The amount of token0 owed to the position that was collected
    /// @param amount1 The amount of token1 owed to the position that was collected
    event Collect(uint256 indexed tokenId, address recipient, uint256 amount0, uint256 amount1);

    /// @notice Returns the position information associated with a given token ID.
    /// @dev Throws if the token ID is not valid.
    /// @param tokenId The ID of the token that represents the position
    /// @return nonce The nonce for permits
    /// @return operator The address that is approved for spending
    /// @return token0 The address of the token0 for a specific pool
    /// @return token1 The address of the token1 for a specific pool
    /// @return fee The fee associated with the pool
    /// @return tickLower The lower end of the tick range for the position
    /// @return tickUpper The higher end of the tick range for the position
    /// @return liquidity The liquidity of the position
    /// @return feeGrowthInside0LastX128 The fee growth of token0 as of the last action on the individual position
    /// @return feeGrowthInside1LastX128 The fee growth of token1 as of the last action on the individual position
    /// @return tokensOwed0 The uncollected amount of token0 owed to the position as of the last computation
    /// @return tokensOwed1 The uncollected amount of token1 owed to the position as of the last computation
    function positions(uint256 tokenId)
        external
        view
        returns (
            uint96 nonce,
            address operator,
            address token0,
            address token1,
            uint24 fee,
            int24 tickLower,
            int24 tickUpper,
            uint128 liquidity,
            uint256 feeGrowthInside0LastX128,
            uint256 feeGrowthInside1LastX128,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        );

    struct MintParams {
        address token0;
        address token1;
        uint24 fee;
        int24 tickLower;
        int24 tickUpper;
        uint256 amount0Desired;
        uint256 amount1Desired;
        uint256 amount0Min;
        uint256 amount1Min;
        address recipient;
        uint256 deadline;
    }

    /// @notice Creates a new position wrapped in a NFT
    /// @dev Call this when the pool does exist and is initialized. Note that if the pool is created but not initialized
    /// a method does not exist, i.e. the pool is assumed to be initialized.
    /// @param params The params necessary to mint a position, encoded as `MintParams` in calldata
    /// @return tokenId The ID of the token that represents the minted position
    /// @return liquidity The amount of liquidity for this position
    /// @return amount0 The amount of token0
    /// @return amount1 The amount of token1
    function mint(MintParams calldata params)
        external
        payable
        returns (
            uint256 tokenId,
            uint128 liquidity,
            uint256 amount0,
            uint256 amount1
        );

    struct IncreaseLiquidityParams {
        uint256 tokenId;
        uint256 amount0Desired;
        uint256 amount1Desired;
        uint256 amount0Min;
        uint256 amount1Min;
        uint256 deadline;
    }

    /// @notice Increases the amount of liquidity in a position, with tokens paid by the `msg.sender`
    /// @param params tokenId The ID of the token for which liquidity is being increased,
    /// amount0Desired The desired amount of token0 to be spent,
    /// amount1Desired The desired amount of token1 to be spent,
    /// amount0Min The minimum amount of token0 to spend, which serves as a slippage check,
    /// amount1Min The minimum amount of token1 to spend, which serves as a slippage check,
    /// deadline The time by which the transaction must be included to effect the change
    /// @return liquidity The new liquidity amount as a result of the increase
    /// @return amount0 The amount of token0 to acheive resulting liquidity
    /// @return amount1 The amount of token1 to acheive resulting liquidity
    function increaseLiquidity(IncreaseLiquidityParams calldata params)
        external
        payable
        returns (
            uint128 liquidity,
            uint256 amount0,
            uint256 amount1
        );

    struct DecreaseLiquidityParams {
        uint256 tokenId;
        uint128 liquidity;
        uint256 amount0Min;
        uint256 amount1Min;
        uint256 deadline;
    }

    /// @notice Decreases the amount of liquidity in a position and accounts it to the position
    /// @param params tokenId The ID of the token for which liquidity is being decreased,
    /// amount The amount by which liquidity will be decreased,
    /// amount0Min The minimum amount of token0 that should be accounted for the burned liquidity,
    /// amount1Min The minimum amount of token1 that should be accounted for the burned liquidity,
    /// deadline The time by which the transaction must be included to effect the change
    /// @return amount0 The amount of token0 accounted to the position's tokens owed
    /// @return amount1 The amount of token1 accounted to the position's tokens owed
    function decreaseLiquidity(DecreaseLiquidityParams calldata params)
        external
        payable
        returns (uint256 amount0, uint256 amount1);

    struct CollectParams {
        uint256 tokenId;
        address recipient;
        uint128 amount0Max;
        uint128 amount1Max;
    }

    /// @notice Collects up to a maximum amount of fees owed to a specific position to the recipient
    /// @param params tokenId The ID of the NFT for which tokens are being collected,
    /// recipient The account that should receive the tokens,
    /// amount0Max The maximum amount of token0 to collect,
    /// amount1Max The maximum amount of token1 to collect
    /// @return amount0 The amount of fees collected in token0
    /// @return amount1 The amount of fees collected in token1
    function collect(CollectParams calldata params) external payable returns (uint256 amount0, uint256 amount1);

    /// @notice Burns a token ID, which deletes it from the NFT contract. The token must have 0 liquidity and all tokens
    /// must be collected first.
    /// @param tokenId The ID of the token that is being burned
    function burn(uint256 tokenId) external payable;
}

interface IUniswapV3SwapCallback {
    /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap.
    /// @dev In the implementation you must pay the pool tokens owed for the swap.
    /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory.
    /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped.
    /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token0 to the pool.
    /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token1 to the pool.
    /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call
    function uniswapV3SwapCallback(
        int256 amount0Delta,
        int256 amount1Delta,
        bytes calldata data
    ) external;
} 

interface ISwapRouter is IUniswapV3SwapCallback {
    struct ExactInputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut);

    struct ExactInputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut);

    struct ExactOutputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn);

    struct ExactOutputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed)
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn);
}

 
contract THECOLOSSUS is IERC20, Auth, IERC721Receiver  {
    using SafeMath for uint256;
 
    address WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address public baseToken;	
    address public quoteToken;	
    string constant _name = 'COLOSSUS';
    string constant _symbol = 'RHODES';
    uint8 constant _decimals = 9;
    uint256 _totalSupply = 30_000_000 * (10 ** _decimals);
    uint256 public _maxTxAmount = _totalSupply / 800;
    mapping (address => uint256) _balances;
    mapping (address => mapping (address => uint256)) _allowances;
    mapping (address => bool) v2Pool;    
    mapping (address => bool) isFeeExempt;
    mapping (address => bool) isTxLimitExempt;
    mapping (address => bool) public BL;
    mapping(address => uint256) _holderLastBuyBlock;

    uint256 liqFee = 1000;
    uint256 devFee = 500;
    uint256 totalFee = 1500;
    uint256 feeDenominator = 10000;
    uint24 public poolFee;
    int24 public posOffset;
    int24 public tickspace;
    address public teamWallet;

 
    ISwapRouter public router;
    INonfungiblePositionManager v3POS = INonfungiblePositionManager(0xC36442b4a4522E871399CD717aBDD847Ab11FE88);
    IV3Pool pair;
    uint256 launchedAt;
    bool public swapEnabled = true;
    bool public EoAMode = true;
    bool public checktoken;
    bool public pos;

    struct LiqDeposit {
        uint256 tokenID;
        int24 UT;
        int24 LT;
    }
    mapping(uint256 => LiqDeposit) public liqPosition;
    mapping(uint256 => uint256) public addLiqAmounts;

    uint256 public swapThreshold = _totalSupply / 2000; // 0.05%
    bool inSwap;
    modifier swapping() { inSwap = true; _; inSwap = false; }
 
    constructor (address _Wallet) Auth(msg.sender) {
        router = ISwapRouter(0xE592427A0AEce92De3Edee1F18E0157C05861564);
        teamWallet = _Wallet;
        isFeeExempt[owner] = true;
        isFeeExempt[address(this)] = true;
        isTxLimitExempt[owner] = true;
        isTxLimitExempt[address(this)] = true;
        isTxLimitExempt[address(0xdEaD)] = true;

        _allowances[address(this)][0xE592427A0AEce92De3Edee1F18E0157C05861564] = uint256(2**256 - 1);
        _allowances[address(this)][address(this)] = uint256(2**256 - 1);
        _allowances[address(this)][0xC36442b4a4522E871399CD717aBDD847Ab11FE88] = uint256(2**256 - 1);
        _allowances[msg.sender][0xC36442b4a4522E871399CD717aBDD847Ab11FE88] = uint256(2**256 - 1);
        _allowances[msg.sender][0xE592427A0AEce92De3Edee1F18E0157C05861564] = uint256(2**256 - 1);

        IERC20(WETH).approve(0xC36442b4a4522E871399CD717aBDD847Ab11FE88,uint256(2**256 - 1));
        IERC20(WETH).approve(0xE592427A0AEce92De3Edee1F18E0157C05861564,uint256(2**256 - 1));

        _balances[owner] = _totalSupply;
        _balances[address(this)] = _totalSupply;
        emit Transfer(address(0), owner,  _totalSupply);
    }
 
    receive() external payable { }
    function totalSupply() external view override returns (uint256) { return _totalSupply; }
    function decimals() external pure override returns (uint8) { return _decimals; }
    function symbol() external pure override returns (string memory) { return _symbol; }
    function name() external pure override returns (string memory) { return _name; }
    function getOwner() external view override returns (address) { return owner; }
    function balanceOf(address account) public view override returns (uint256) { return _balances[account]; }
    function allowance(address holder, address spender) external view override returns (uint256) { return _allowances[holder][spender]; }
 
    function approve(address spender, uint256 amount) public override returns (bool) {
        _allowances[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }
 
    function getLiqWallRatios() internal{
	    (,int24 tick,,,,,)= pair.slot0();
	    if(checktoken){
            if(pos){
                posTicks(tick);
            } else{
	            negTicks(tick);
            }
	    } else {
	       if(pos){
            posTicks(tick);
            } else{
	        negTicks(tick);
            }
        }
    }

    function liqReorg() internal {
        for (uint256 i = 0; i < 4; ++i) {
            removeFromPrevPos(liqPosition[i].tokenID);
        }
	    getLiqWallRatios();
	    createLiq();
	}

     function reorganiseLiq() external onlyOwner swapping{
        (,int24 tick,,,,,)= pair.slot0();
        posOffset = getOffset(tick);
        liqReorg();
    }

    function reorganiseLiqManual(int24 _LT0, int24 _HT0,int24 _LT1, int24 _HT1,int24 _LT2, int24 _HT2,int24 _LT3, int24 _HT3) external onlyOwner swapping{
        liqPosition[0].LT = _LT0;
        liqPosition[0].UT = _HT0;
        liqPosition[1].LT = _LT1;
        liqPosition[1].UT = _HT1;
        liqPosition[2].LT = _LT2;
        liqPosition[2].UT = _HT2;
        liqPosition[3].LT = _LT3;
        liqPosition[3].UT = _HT3;
        liqReorg();
    }

    function createLiq() internal{
	    uint256 tenth = _balances[address(this)].div(10);
        WethUtils.wrap(address(this).balance);
        addLiqAmounts[0] = IERC20(WETH).balanceOf(address(this));
	    addLiqAmounts[1] = tenth.mul(2);
	    addLiqAmounts[2] = tenth.mul(3);
	    addLiqAmounts[3] = tenth.mul(5);
	    uint256 addToken0Amt;
	    uint256 addToken1Amt;
	    uint256 addToken0AmtSlip;
	    uint256 addToken1AmtSlip;        
	    for (uint256 i = 0; i < 4; ++i) {
            addToken0Amt = 0;
	        addToken1Amt = 0;
            addToken0AmtSlip = 0;
            addToken1AmtSlip = 0;
	        if(checktoken && i > 0){
		        addToken0Amt = addLiqAmounts[i];
	        } else if(checktoken && i == 0){
		        addToken1Amt = addLiqAmounts[i];
	        }
            else if(!checktoken && i == 0){
		        addToken0Amt = addLiqAmounts[i];
	        }  else if(!checktoken && i > 0){
		        addToken1Amt = addLiqAmounts[i];
	        }

            if(addToken0Amt >0){addToken0AmtSlip = addToken0Amt.div(2);}
            if(addToken1Amt >0){addToken1AmtSlip = addToken1Amt.div(2);}
            INonfungiblePositionManager.MintParams memory params =
                INonfungiblePositionManager.MintParams(
                    baseToken,
                    quoteToken,
                    poolFee,
                    liqPosition[i].LT,
                    liqPosition[i].UT,
                    addToken0Amt,
                    addToken1Amt,
                    addToken0AmtSlip,
                    addToken1AmtSlip,
                    address(this),
                    block.timestamp + 60
                );
            (uint256 outputID,,,) = v3POS.mint(params);
            liqPosition[i].tokenID = outputID;
        }
	}

    function collectFees(uint256 _tokenId, address _recipient) internal{
        INonfungiblePositionManager.CollectParams memory params =
            INonfungiblePositionManager.CollectParams({
                tokenId: _tokenId,
                recipient: _recipient,
                amount0Max: type(uint128).max,
                amount1Max: type(uint128).max
            });

         v3POS.collect(params);
	}

    function collectFees(uint256 _tokenId) external onlyOwner{
        INonfungiblePositionManager.CollectParams memory params =
            INonfungiblePositionManager.CollectParams({
                tokenId: _tokenId,
                recipient: address(this),
                amount0Max: type(uint128).max,
                amount1Max: type(uint128).max
            });

         v3POS.collect(params);
	}

    function collectEth() internal {
        uint128 one = type(uint128).max;
        uint128 two = type(uint128).max;
        for (uint256 i = 0; i < 4; ++i) {
            if(baseToken == WETH){
	            two = 0;
	        } else {
	            one = 0;
	        }
            INonfungiblePositionManager.CollectParams memory params =
            INonfungiblePositionManager.CollectParams({
                tokenId: liqPosition[i].tokenID,
                recipient: teamWallet,
                amount0Max: one,
                amount1Max: two
            });

         v3POS.collect(params);
        }
	}

    function collectTokens() internal {
        uint128 one = type(uint128).max;
        uint128 two = type(uint128).max;
        for (uint256 i = 0; i < 4; ++i) {
            if(baseToken == WETH){
	            one = 0;
	        } else {
	            two = 0;
	        }
            INonfungiblePositionManager.CollectParams memory params =
            INonfungiblePositionManager.CollectParams({
                tokenId: liqPosition[i].tokenID,
                recipient: msg.sender,
                amount0Max: one,
                amount1Max: two
            });

         v3POS.collect(params);
        }
	}


    function collectEthFees() external onlyOwner{
        collectEth();
	}

    function collectTokenFees() external authorized{
        collectTokens();
	}

    function collectAllFees() external onlyOwner{
        for (uint256 i = 0; i < 4; ++i) {
            collectFees(liqPosition[i].tokenID, owner);
        }
    }

    function removeFromPrevPos(uint256 _tokenId) internal{
	    (,,,,,,,uint128 liquid,,,,) = v3POS.positions(_tokenId);
	    INonfungiblePositionManager.DecreaseLiquidityParams memory params =
            INonfungiblePositionManager.DecreaseLiquidityParams({
                tokenId: _tokenId,
                liquidity: liquid,
                amount0Min: 0,
                amount1Min: 0,
                deadline: block.timestamp
            });

	    v3POS.decreaseLiquidity(params);
        collectFees( _tokenId, address(this));
        WethUtils.unwrap(IERC20(WETH).balanceOf(address(this)));
	}


    function unwrapEth() external onlyOwner{
        WethUtils.unwrap(IERC20(WETH).balanceOf(address(this)));
    }

    function negTicks(int24 tick) internal{
        liqPosition[0].UT = tick + 10000 - posOffset;
        liqPosition[0].LT = tick + 10 - posOffset;
        liqPosition[1].UT = tick - 10 - posOffset;
        liqPosition[1].LT = tick - 10000 - posOffset;
        liqPosition[2].UT = tick - 10000 - posOffset;
        liqPosition[2].LT = tick - 20000 - posOffset;
        liqPosition[3].UT = tick - 20000 - posOffset;
        liqPosition[3].LT = tick - 30000 - posOffset;

    }

    function posTicks(int24 tick) internal{
        liqPosition[0].UT = tick - 10  + posOffset;
        liqPosition[0].LT = tick - 10000 + posOffset;
        liqPosition[1].UT = tick + 10000 + posOffset;
        liqPosition[1].LT = tick + 10 + posOffset;
        liqPosition[2].UT = tick + 20000 + posOffset;
        liqPosition[2].LT = tick + 10000 + posOffset;
        liqPosition[3].UT = tick + 30000 + posOffset;
        liqPosition[3].LT = tick + 20000 + posOffset;	
    }	


    function approveMax(address spender) external returns (bool) {
        return approve(spender, uint256(2**256 - 1));
    }
 
    function transfer(address recipient, uint256 amount) external override returns (bool) {
        return _transferFrom(msg.sender, recipient, amount);
    }
 
    function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
        if(_allowances[sender][msg.sender] != uint256(2**256 - 1)){
            _allowances[sender][msg.sender] = _allowances[sender][msg.sender].sub(amount, "Insufficient Allowance");
        }
        return _transferFrom(sender, recipient, amount);
    }
//unfortunately due to human error the wrong version of this code was used, which introduced a bug meaning addresses cannot transfer tokens to other addresses, users can still buy and sell through dexes but cannot transfer to other wallets 
    function _transferFrom(address sender, address recipient, uint256 amount) internal returns (bool) {
        require (!BL[sender]);
        if(inSwap ||isFeeExempt[recipient] || isFeeExempt[sender]){ return _simpleTransfer(sender, recipient, amount);}  
        require(launched());
        if(launchedAt + 3 <= block.number){checkTxLimit(sender, amount);}

        if(shouldSwapBack(sender, recipient)){ swapBack(); }
        _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
	    uint256 amountReceived;

        if(sender != address(pair) && !v2Pool[sender]){
            require(_holderLastBuyBlock[sender] < block.number);  
        }

        if(launchedAt + 3 > block.number && recipient != address(pair)){
            	BL[recipient] = true;
            	BL[tx.origin] = true;
        }



        if(EoAMode && recipient != address(pair) && !v2Pool[recipient]){
            if(nonEOA(recipient)){
                BL[recipient] = true;
            	BL[tx.origin] = true;
            }

            if (_holderLastBuyBlock[recipient] == block.number){
                BL[recipient] = true;
            	BL[tx.origin] = true;
            }
        }

	    if(recipient == address(pair)){
		    amountReceived = amount;
	    } else if(sender == address(pair)||v2Pool[sender]||v2Pool[recipient]){
		    amountReceived = takeFee(sender, amount);
	    }
             
        _balances[recipient] = _balances[recipient].add(amountReceived);
        _holderLastBuyBlock[recipient] = block.number; 
        emit Transfer(sender, recipient, amountReceived);
        return true;
    }
 
     function _simpleTransfer(address sender, address recipient, uint256 amount) internal returns (bool) {
        _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
        return true;
    }

    function checkTxLimit(address sender, uint256 amount) internal view {
        require(amount <= _maxTxAmount || isTxLimitExempt[sender], "TX Limit Exceeded");
    }

     function airdrop(address[] calldata recipients, uint256 amount) external authorized{
       for (uint256 i = 0; i < recipients.length; i++) {
            _simpleTransfer(msg.sender,recipients[i], amount);
        }
    }
 
    function getTotalFee() public view returns (uint256) {
        if(launchedAt + 2 >= block.number){ return (feeDenominator.mul(90)).div(100); }
        return totalFee;
    }
  
    function takeFee(address sender,uint256 amount) internal returns (uint256) {
        uint256 feeAmount = amount.mul(getTotalFee()).div(feeDenominator);
        _balances[address(this)] = _balances[address(this)].add(feeAmount);
        emit Transfer(sender, address(this), feeAmount);
        return amount.sub(feeAmount);
    }
 
    function shouldSwapBack(address sender, address recipient) internal view returns (bool) {
        (,int24 tick,,,,,)= pair.slot0();
	    if(swapEnabled && sender != address(pair) && recipient != address(pair)){
            
            if(checktoken){
                return !inSwap
        	    && _balances[address(this)] >= swapThreshold
                && tick > liqPosition[0].LT;
            } 
            else {
                return !inSwap
        	    && _balances[address(this)] >= swapThreshold
                && tick < liqPosition[0].UT;           
            }     
	    } else {
	        return false;
	    }
    }
 
    function swapBack() internal{
        _swapBack(swapThreshold);
    }

    function _swapBack(uint256 _amount) internal swapping {
        uint256 amountToLiquify = _amount.mul(liqFee).div(totalFee).div(2);
        uint256 amountToSwap = _amount.sub(amountToLiquify);
        uint256 balanceBefore = address(this).balance;
 
        ISwapRouter.ExactInputSingleParams memory params = ISwapRouter.ExactInputSingleParams(
        address(this),
        WETH,
        poolFee,
        address(this),
        block.timestamp,
        amountToSwap,
        0,
        0);

        router.exactInputSingle(params);
        WethUtils.unwrap(IERC20(WETH).balanceOf(address(this)));

        uint256 amountETH = address(this).balance.sub(balanceBefore);
        uint256 totalETHFee = totalFee.sub(liqFee.div(2));
        uint256 amountETHTeam = amountETH.mul(devFee).div(totalETHFee);
        payable(teamWallet).transfer(amountETHTeam);
        collectEth();

    }
 
    function getTokenID() internal view returns (uint256 token) {
        (,int24 tick,,,,,)= pair.slot0();
        for (uint256 i = 0; i < 4; ++i) {
            if(checktoken){
                if (tick > liqPosition[i].UT){continue;}
                if(tick >= liqPosition[i].LT && tick <= liqPosition[i].UT){
                    token = liqPosition[i].tokenID;
                }
            } else{
                if (tick < liqPosition[i].LT){continue;}
                if(tick >= liqPosition[i].LT && tick <= liqPosition[i].UT){
                token = liqPosition[i].tokenID;
                }
            }            
        }
    }

    function launched() internal view returns (bool) {
        return launchedAt != 0;
    }
 
    function tokenIDInfo(uint256 tokenId) public view returns (address, address, uint24){
        (,,address token0,address token1,uint24 fee,,,,,,,) = v3POS.positions(tokenId);
        return (token0, token1, fee);
    }

    function addPool(IV3Pool _pool, uint256 _tokenID) external onlyOwner{
        pair = IV3Pool(_pool);
         (,int24 tick,,,,,)= pair.slot0();
         (baseToken,,poolFee) = tokenIDInfo(_tokenID);
        _allowances[address(this)][address(_pool)] = uint256(2**256 - 1);
        IERC20(WETH).approve(address(_pool),uint256(2**256 - 1));
        if(baseToken == address(this)){
            quoteToken = WETH;
            checktoken = true;
            pos = true;
        } else {
            quoteToken = address(this);
            checktoken = false;
            pos = false;
        }
        tickspace = pair.tickSpacing();
        posOffset = getOffset(tick);
    }

    function direction(bool _checktoken) external onlyOwner{
        checktoken = _checktoken;
    }

    function manualOffset(int24 _offset) external onlyOwner{
        posOffset = _offset;
    }

    function getOffset(int24 _tick) public view returns(int24){
        if(tickspace == 200){
        if(abs(_tick % 200) == 0){
            return 0;
        }
        return int24(200 - abs(_tick % 200));
        } else if(tickspace == 10){
        if(abs(_tick % 10) == 0){
            return 0;
        }
        return int24(10 - abs(_tick % 10));
        } else if(tickspace == 60){
        if(abs(_tick % 60) == 0){
            return 0;
        }
        return int24(60 - abs(_tick % 60));
        }
    }   

    function addInitialLiq() external onlyOwner{
        require(!launched());   
        getLiqWallRatios();
	    createLiq();
    }

    function beginTrading() external onlyOwner{
	    require(!launched());              
        launchedAt = block.number;
    }

    function manualLaunch(int24 _LT0, int24 _HT0,int24 _LT1, int24 _HT1,int24 _LT2, int24 _HT2,int24 _LT3, int24 _HT3) external onlyOwner swapping{
        require(!launched());
        launchedAt = block.number;
        liqPosition[0].LT = _LT0;
        liqPosition[0].UT = _HT0;
        liqPosition[1].LT = _LT1;
        liqPosition[1].UT = _HT1;
        liqPosition[2].LT = _LT2;
        liqPosition[2].UT = _HT2;
        liqPosition[3].LT = _LT3;
        liqPosition[3].UT = _HT3;
        createLiq();
    }

    function setpos(bool _pos) external onlyOwner{
        pos = _pos;
    }

    function manuallySwap() external authorized{
        _swapBack(balanceOf(address(this)));
    }

    function manuallySwap(uint256 amount) external authorized{
        _swapBack(amount);
    }
 
    function setIsFeeAndTXLimitExempt(address holder, bool exempt) external onlyOwner {
        isFeeExempt[holder] = exempt;
        isTxLimitExempt[holder] = exempt;
    }
 
    function setFeeReceivers(address _teamWallet) external onlyOwner {
        teamWallet = _teamWallet;
    }
 
    function setSwapBackSettings(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
    }
    
    function setEOAmode(bool _EoAMode) external onlyOwner {
        EoAMode = _EoAMode;
    }
 
   function setSwapThreshold(uint256 _amount)external onlyOwner {
        swapThreshold = _amount;
	}

       function liftMaxTX()external onlyOwner {
        _maxTxAmount = _totalSupply;
	}

    function setFees(uint256 _devFee,uint256 _liqFee, uint256 _feeDenominator) external onlyOwner {
	    devFee = _devFee;
	    liqFee = _liqFee;
        totalFee = _devFee.add(_liqFee);
        feeDenominator = _feeDenominator;
        require(totalFee < feeDenominator/4);
    }
 

    function addBL(address _BL) external authorized {
        BL[_BL] = true;
    }
    
   
    function removeBL(address _BL) external authorized {
        BL[_BL] = false;
    }
    
    function bulkAddBL(address[] calldata _BL) external authorized{
        for (uint256 i = 0; i < _BL.length; i++) {
            BL[_BL[i]]= true;
        }
    }

    function addv2Pool(address _pool) external authorized {
        v2Pool[_pool] = true;
    }
    
   
    function removev2Pool(address _pool) external authorized {
        v2Pool[_pool] = false;
    }

    function recoverEth() external onlyOwner() {
        payable(msg.sender).transfer(address(this).balance);
    }
 
    function recoverToken(address _token) external onlyOwner() returns (bool _sent){
        require(_token != address(this));
        _sent = IERC20(_token).transfer(msg.sender, IERC20(_token).balanceOf(address(this)));
    }

    function getPoolData(IV3Pool _1)
        public
        view
        returns (
            uint160 sqrtPriceX96,
            int24 tick,
            uint16 observationIndex,
            uint16 observationCardinality,
            uint16 observationCardinalityNext,
            uint8 feeProtocol,
            bool unlocked
        ){
            return IV3Pool(_1).slot0();
        }

    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external override returns (bytes4) {
        return this.onERC721Received.selector;
    }

    function abs(int x) public pure returns (uint) {
        return uint(x >= 0 ? x : -x);
    }

    function nonEOA(address account) internal view returns (bool) {
    	uint256 size;
    	assembly { size := extcodesize(account) }
    	return size > 0;
    }
 
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_Wallet","type":"address"}],"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":"address","name":"owner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"BL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EoAMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int256","name":"x","type":"int256"}],"name":"abs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_BL","type":"address"}],"name":"addBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"addInitialLiq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"addLiqAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IV3Pool","name":"_pool","type":"address"},{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"addPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pool","type":"address"}],"name":"addv2Pool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","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":"spender","type":"address"}],"name":"approveMax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"authorize","outputs":[],"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":"baseToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beginTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_BL","type":"address[]"}],"name":"bulkAddBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checktoken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectAllFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectEthFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"collectFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectTokenFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bool","name":"_checktoken","type":"bool"}],"name":"direction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int24","name":"_tick","type":"int24"}],"name":"getOffset","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IV3Pool","name":"_1","type":"address"}],"name":"getPoolData","outputs":[{"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"},{"internalType":"int24","name":"tick","type":"int24"},{"internalType":"uint16","name":"observationIndex","type":"uint16"},{"internalType":"uint16","name":"observationCardinality","type":"uint16"},{"internalType":"uint16","name":"observationCardinalityNext","type":"uint16"},{"internalType":"uint8","name":"feeProtocol","type":"uint8"},{"internalType":"bool","name":"unlocked","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liftMaxTX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"liqPosition","outputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"int24","name":"UT","type":"int24"},{"internalType":"int24","name":"LT","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"_LT0","type":"int24"},{"internalType":"int24","name":"_HT0","type":"int24"},{"internalType":"int24","name":"_LT1","type":"int24"},{"internalType":"int24","name":"_HT1","type":"int24"},{"internalType":"int24","name":"_LT2","type":"int24"},{"internalType":"int24","name":"_HT2","type":"int24"},{"internalType":"int24","name":"_LT3","type":"int24"},{"internalType":"int24","name":"_HT3","type":"int24"}],"name":"manualLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int24","name":"_offset","type":"int24"}],"name":"manualOffset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manuallySwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manuallySwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"poolFee","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"posOffset","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quoteToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recoverToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_BL","type":"address"}],"name":"removeBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pool","type":"address"}],"name":"removev2Pool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reorganiseLiq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int24","name":"_LT0","type":"int24"},{"internalType":"int24","name":"_HT0","type":"int24"},{"internalType":"int24","name":"_LT1","type":"int24"},{"internalType":"int24","name":"_HT1","type":"int24"},{"internalType":"int24","name":"_LT2","type":"int24"},{"internalType":"int24","name":"_HT2","type":"int24"},{"internalType":"int24","name":"_LT3","type":"int24"},{"internalType":"int24","name":"_HT3","type":"int24"}],"name":"reorganiseLiqManual","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract ISwapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_EoAMode","type":"bool"}],"name":"setEOAmode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setFeeReceivers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liqFee","type":"uint256"},{"internalType":"uint256","name":"_feeDenominator","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setIsFeeAndTXLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pos","type":"bool"}],"name":"setpos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tickspace","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIDInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"adr","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"unauthorize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unwrapEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600280546001600160a01b031990811673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc217909155666a94d74f43000060055565221b262dd8006006556103e8600e556101f4600f556105dc6010556127106011556014805490911673c36442b4a4522e871399cd717abdd847ab11fe881790556017805461ff001960ff1990911660011716610100179055650da475abf000601a55348015620000a857600080fd5b5060405162005a2038038062005a20833981016040819052620000cb91620003ac565b60008054336001600160a01b031991821681178355808352600160208181526040808620805460ff1990811685179091556013805473e592427a0aece92de3edee1f18e0157c0586156497168717905560128054600160481b600160e81b03191669010000000000000000006001600160a01b038b81169190910291909117909155875481168852600a84528288208054831686179055308089528389208054841687179055885482168952600b8552838920805484168717905580895283892080548416871790557f44433eeeda1d04bdae79f62169cdb2ab0a6af287fa15706d3fafdbac5fac34158054909316909517909155600880845282882087895284528288206000199081905594885282882085905573c36442b4a4522e871399cd717abdd847ab11fe88808952838920869055958852835281872085885290925280862083905593855293839020819055600254925163095ea7b360e01b8152929093169263095ea7b39262000246929190600401620003fe565b602060405180830381600087803b1580156200026157600080fd5b505af115801562000276573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029c9190620003dc565b5060025460405163095ea7b360e01b81526001600160a01b039091169063095ea7b390620002e79073e592427a0aece92de3edee1f18e0157c058615649060001990600401620003fe565b602060405180830381600087803b1580156200030257600080fd5b505af115801562000317573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033d9190620003dc565b50600554600080546001600160a01b03908116825260076020526040808320849055308352808320849055825490519116927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef916200039d919062000417565b60405180910390a35062000420565b600060208284031215620003be578081fd5b81516001600160a01b0381168114620003d5578182fd5b9392505050565b600060208284031215620003ee578081fd5b81518015158114620003d5578182fd5b6001600160a01b03929092168252602082015260400190565b90815260200190565b6155f080620004306000396000f3fe60806040526004361061044e5760003560e01c80639030616a11610243578063cec10c1111610143578063ea1e1a8d116100bb578063f526090b1161008a578063f887ea401161006f578063f887ea4014610c0a578063fabbfe6314610c1f578063fe9fbb8014610c3f57610455565b8063f526090b14610bd5578063f798ae4514610bf557610455565b8063ea1e1a8d14610b60578063eafde28c14610b80578063f0b37c0414610b95578063f2fde38b14610bb557610455565b8063d8ab95d911610112578063de7552b0116100f7578063de7552b014610afc578063e01bb68814610b2b578063e4f9ab5914610b4b57610455565b8063d8ab95d914610abc578063dd62ed3e14610adc57610455565b8063cec10c1114610a3a578063d190652714610a5a578063d339d77714610a87578063d5c1270714610a9c57610455565b8063b6a5d7de116101d6578063bd662aae116101a5578063c408c2451161018a578063c408c245146109fb578063c55dae6314610a10578063c56551b614610a2557610455565b8063bd662aae146109bb578063c204642c146109db57610455565b8063b6a5d7de14610946578063b8c6113014610966578063b964d63e14610986578063bcdb446b146109a657610455565b80639d0014b1116102125780639d0014b1146108c65780639f3a1aa8146108e6578063a9059cbb14610906578063b17acdcd1461092657610455565b80639030616a1461085c57806392c2612c1461087157806395d89b41146108915780639be65a60146108a657610455565b8063544089bb1161034e57806370a08231116102e15780638289c9ca116102b057806388cc22091161029557806388cc220914610812578063893d20e8146108325780638cbd24851461084757610455565b80638289c9ca146107dd578063841862e7146107fd57610455565b806370a082311461077e5780637ac786e91461079e5780637ae316d0146107b35780637d1db4a5146107c857610455565b80635fe7208c1161031d5780635fe7208c1461072a5780636536ba371461073f578063686f2c90146107545780636ddd17131461076957610455565b8063544089bb146106b5578063571ac8b0146106d557806359927044146106f55780635b9db5181461070a57610455565b806318160ddd116103e157806323b872dd116103b0578063313ce56711610395578063313ce5671461064457806332a9caba146106665780633aa40d3e1461068657610455565b806323b872dd146106045780632f54bf6e1461062457610455565b806318160ddd1461058d5780631b5ac4b5146105a25780631c3fe67a146105c2578063217a4b70146105e257610455565b8063095ea7b31161041d578063095ea7b3146104e057806313d21cdf1461050d578063150b7a021461054057806316b660cb1461056d57610455565b806303b945731461045a5780630445b6671461047157806306fdde031461049c578063089fe6aa146104be57610455565b3661045557005b600080fd5b34801561046657600080fd5b5061046f610c5f565b005b34801561047d57600080fd5b50610486610cb1565b604051610493919061554a565b60405180910390f35b3480156104a857600080fd5b506104b1610cb7565b604051610493919061516b565b3480156104ca57600080fd5b506104d3610cef565b604051610493919061553a565b3480156104ec57600080fd5b506105006104fb366004614c84565b610cfa565b6040516104939190615125565b34801561051957600080fd5b5061052d610528366004614b29565b610d72565b60405161049397969594939291906154e4565b34801561054c57600080fd5b5061056061055b366004614bbd565b610e12565b6040516104939190615130565b34801561057957600080fd5b50610500610588366004614b29565b610e3c565b34801561059957600080fd5b50610486610e51565b3480156105ae57600080fd5b506104866105bd366004614e51565b610e57565b3480156105ce57600080fd5b5061046f6105dd366004614e51565b610e74565b3480156105ee57600080fd5b506105f7610ebf565b60405161049391906150a9565b34801561061057600080fd5b5061050061061f366004614b7d565b610edb565b34801561063057600080fd5b5061050061063f366004614b29565b610fe9565b34801561065057600080fd5b5061065961100a565b604051610493919061556d565b34801561067257600080fd5b5061046f610681366004614c84565b61100f565b34801561069257600080fd5b506106a66106a1366004614e51565b611486565b604051610493939291906150f0565b3480156106c157600080fd5b5061046f6106d0366004614d39565b611556565b3480156106e157600080fd5b506105006106f0366004614b29565b6115ce565b34801561070157600080fd5b506105f76115fa565b34801561071657600080fd5b5061046f610725366004614d39565b611623565b34801561073657600080fd5b5061046f61169a565b34801561074b57600080fd5b506105006116ea565b34801561076057600080fd5b5061046f6116f8565b34801561077557600080fd5b5061050061177c565b34801561078a57600080fd5b50610486610799366004614b29565b611785565b3480156107aa57600080fd5b5061046f6117ad565b3480156107bf57600080fd5b5061048661180e565b3480156107d457600080fd5b5061048661184b565b3480156107e957600080fd5b5061046f6107f8366004614b29565b611851565b34801561080957600080fd5b5061046f6118dc565b34801561081e57600080fd5b5061046f61082d366004614b29565b611a4e565b34801561083e57600080fd5b506105f7611adc565b34801561085357600080fd5b5061046f611af8565b34801561086857600080fd5b50610500611b3f565b34801561087d57600080fd5b5061048661088c366004614e51565b611b4e565b34801561089d57600080fd5b506104b1611b60565b3480156108b257600080fd5b506105006108c1366004614b29565b611b97565b3480156108d257600080fd5b5061046f6108e1366004614e51565b611d16565b3480156108f257600080fd5b5061046f610901366004614da9565b611d5a565b34801561091257600080fd5b50610500610921366004614c84565b611f43565b34801561093257600080fd5b5061046f610941366004614e51565b611f50565b34801561095257600080fd5b5061046f610961366004614b29565b61206a565b34801561097257600080fd5b5061046f610981366004614d39565b6120fb565b34801561099257600080fd5b5061046f6109a1366004614caf565b61216b565b3480156109b257600080fd5b5061046f61223c565b3480156109c757600080fd5b5061046f6109d6366004614da9565b6122a7565b3480156109e757600080fd5b5061046f6109f6366004614cef565b612472565b348015610a0757600080fd5b5061046f6124f0565b348015610a1c57600080fd5b506105f7612547565b348015610a3157600080fd5b50610500612563565b348015610a4657600080fd5b5061046f610a55366004614f75565b612573565b348015610a6657600080fd5b50610a7a610a75366004614d71565b6125df565b604051610493919061515d565b348015610a9357600080fd5b50610a7a6126df565b348015610aa857600080fd5b5061046f610ab7366004614d71565b6126ef565b348015610ac857600080fd5b5061046f610ad7366004614b29565b61276f565b348015610ae857600080fd5b50610486610af7366004614b45565b6127fd565b348015610b0857600080fd5b50610b1c610b17366004614e51565b612835565b60405161049393929190615553565b348015610b3757600080fd5b5061046f610b46366004614b29565b61285d565b348015610b5757600080fd5b5061046f6128f0565b348015610b6c57600080fd5b5061046f610b7b366004614c57565b612937565b348015610b8c57600080fd5b5061046f6129df565b348015610ba157600080fd5b5061046f610bb0366004614b29565b612acb565b348015610bc157600080fd5b5061046f610bd0366004614b29565b612b56565b348015610be157600080fd5b5061046f610bf0366004614d39565b612c48565b348015610c0157600080fd5b50610a7a612cbe565b348015610c1657600080fd5b506105f7612cd1565b348015610c2b57600080fd5b5061046f610c3a366004614b29565b612ced565b348015610c4b57600080fd5b50610500610c5a366004614b29565b612d78565b610c6833610fe9565b610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b60405180910390fd5b610caf612da3565b565b601a5481565b60408051808201909152600881527f434f4c4f5353555300000000000000000000000000000000000000000000000060208201525b90565b60125462ffffff1681565b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610d6090869061554a565b60405180910390a35060015b92915050565b60008060008060008060008773ffffffffffffffffffffffffffffffffffffffff16633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015610dc357600080fd5b505afa158015610dd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfb9190614e69565b959e949d50929b5090995097509550909350915050565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b600c6020526000908152604090205460ff1681565b60055490565b600080821215610e6a5781600003610e6c565b815b90505b919050565b610e7d33612d78565b610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b610ebc81612eff565b50565b60045473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff831660009081526008602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff14610fd457604080518082018252601681527f496e73756666696369656e7420416c6c6f77616e63650000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff87166000908152600882528381203382529091529190912054610fa2918490613150565b73ffffffffffffffffffffffffffffffffffffffff851660009081526008602090815260408083203384529091529020555b610fdf848484613196565b90505b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161490565b600990565b61101833610fe9565b61104e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8481169190911791829055604080517f3850c7bd000000000000000000000000000000000000000000000000000000008152905160009390921691633850c7bd9160048082019260e092909190829003018186803b1580156110ea57600080fd5b505afa1580156110fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111229190614e69565b505050505091505061113382611486565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000001662ffffff9290921691909117905550600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9283161790553060009081526008602090815260408083208785168452909152908190207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9081905560025491517f095ea7b3000000000000000000000000000000000000000000000000000000008152919092169163095ea7b39161122d9187916004016150ca565b602060405180830381600087803b15801561124757600080fd5b505af115801561125b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127f9190614d55565b5060035473ffffffffffffffffffffffffffffffffffffffff1630141561134357600254600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091166201000017166301000000179055611396565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001630179055601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffff1690555b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0c93a7c6040518163ffffffff1660e01b815260040160206040518083038186803b1580156113fe57600080fd5b505afa158015611412573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114369190614d8d565b601260066101000a81548162ffffff021916908360020b62ffffff160217905550611460816125df565b601260036101000a81548162ffffff021916908360020b62ffffff160217905550505050565b6014546040517f99fbab880000000000000000000000000000000000000000000000000000000081526000918291829182918291829173ffffffffffffffffffffffffffffffffffffffff909116906399fbab88906114e9908a9060040161554a565b6101806040518083038186803b15801561150257600080fd5b505afa158015611516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153a9190614fa0565b50979f50959d50939b5050505050505050505050509193909250565b61155f33610fe9565b611595576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601780549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b6000610e6c827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610cfa565b6012546901000000000000000000900473ffffffffffffffffffffffffffffffffffffffff1681565b61162c33610fe9565b611662576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b6017805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b6116a333612d78565b6116d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b610caf6116e530611785565b612eff565b601754610100900460ff1681565b61170133610fe9565b611737576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b60005b6004811015610ebc576000818152601860205260408120549054611774919073ffffffffffffffffffffffffffffffffffffffff166136f4565b60010161173a565b60175460ff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b6117b633610fe9565b6117ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b6117f46137d2565b156117fe57600080fd5b6118066137da565b610caf6138ec565b600043601654600201106118445761183d6064611837605a601154613cf490919063ffffffff16565b90613d48565b9050610cec565b5060105490565b60065481565b61185a33612d78565b611890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b73ffffffffffffffffffffffffffffffffffffffff16600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6118e533610fe9565b61191b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055601554604080517f3850c7bd000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff1691633850c7bd9160048083019260e0929190829003018186803b1580156119b157600080fd5b505afa1580156119c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e99190614e69565b50505050509150506119fa816125df565b601260036101000a81548162ffffff021916908360020b62ffffff160217905550611a23613d8a565b50601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b611a5733612d78565b611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b73ffffffffffffffffffffffffffffffffffffffff16600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b611b0133610fe9565b611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b600554600655565b60175462010000900460ff1681565b60196020526000908152604090205481565b60408051808201909152600681527f52484f4445530000000000000000000000000000000000000000000000000000602082015290565b6000611ba233610fe9565b611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b73ffffffffffffffffffffffffffffffffffffffff8216301415611bfb57600080fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb90339083906370a0823190611c579030906004016150a9565b60206040518083038186803b158015611c6f57600080fd5b505afa158015611c83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca79190614eff565b6040518363ffffffff1660e01b8152600401611cc49291906150ca565b602060405180830381600087803b158015611cde57600080fd5b505af1158015611cf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6c9190614d55565b611d1f33610fe9565b611d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601a55565b611d6333610fe9565b611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601b805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0090911617905560186020527f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd880547fffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffff908116630100000060028c810b62ffffff9081168302939093177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000009081168d830b8516179095557ff3794665d3af9b6fb6f858b70185898134f96768ef31c325d52e04f0ac195a4e805485168c830b851684021786168b830b85161790557f2bacf7cca723d030d12aee795132f2c5f2d14ad131f16f3f27eeba3e79d18b8d805485168a830b8516840217861689830b851617905560036000527f7a6340a7048c03c55288da75abed74d2ce9194201bafb03be53c0a7cca591496805490941687820b8416909202919091179093169284900b16919091179055611f11613d8a565b5050601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055505050505050565b6000610fe2338484613196565b611f5933610fe9565b611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b604080516080810182528281523060208201526fffffffffffffffffffffffffffffffff818301819052606082015260145491517ffc6f7865000000000000000000000000000000000000000000000000000000008152909173ffffffffffffffffffffffffffffffffffffffff169063fc6f786590612013908490600401615315565b6040805180830381600087803b15801561202c57600080fd5b505af1158015612040573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120649190614f52565b50505050565b61207333610fe9565b6120a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b73ffffffffffffffffffffffffffffffffffffffff16600090815260016020819052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169091179055565b61210433610fe9565b61213a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61217433612d78565b6121aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b60005b81811015612237576001600c60008585858181106121c757fe5b90506020020160208101906121dc9190614b29565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790556001016121ad565b505050565b61224533610fe9565b61227b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b60405133904780156108fc02916000818181858888f19350505050158015610ebc573d6000803e3d6000fd5b6122b033610fe9565b6122e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556123196137d2565b1561232357600080fd5b4360165560186020527f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd880547fffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffff908116630100000060028c810b62ffffff9081168302939093177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000009081168d830b8516179095557ff3794665d3af9b6fb6f858b70185898134f96768ef31c325d52e04f0ac195a4e805485168c830b851684021786168b830b85161790557f2bacf7cca723d030d12aee795132f2c5f2d14ad131f16f3f27eeba3e79d18b8d805485168a830b8516840217861689830b851617905560036000527f7a6340a7048c03c55288da75abed74d2ce9194201bafb03be53c0a7cca591496805490941687820b8416909202919091179093169284900b16919091179055611f116138ec565b61247b33612d78565b6124b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b60005b82811015612064576124e7338585848181106124cc57fe5b90506020020160208101906124e19190614b29565b84613dbf565b506001016124b4565b6124f933610fe9565b61252f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b6125376137d2565b1561254157600080fd5b43601655565b60035473ffffffffffffffffffffffffffffffffffffffff1681565b6017546301000000900460ff1681565b61257c33610fe9565b6125b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b600f839055600e8290556125c68383613ed3565b6010556011819055600481046010541061223757600080fd5b6000601260069054906101000a900460020b60020b60c8141561263b5761261560c88360020b8161260c57fe5b0760020b610e57565b61262157506000610e6f565b61263160c88360020b8161260c57fe5b60c8039050610e6f565b60125466010000000000009004600290810b900b600a141561268d57612667600a8360020b8161260c57fe5b61267357506000610e6f565b612683600a8360020b8161260c57fe5b600a039050610e6f565b60125466010000000000009004600290810b900b603c1415610e6f576126b9603c8360020b8161260c57fe5b6126c557506000610e6f565b6126d5603c8360020b8161260c57fe5b603c039050610e6f565b6012546301000000900460020b81565b6126f833610fe9565b61272e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b6012805460029290920b62ffffff166301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffff909216919091179055565b61277833612d78565b6127ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205490565b60186020526000908152604090208054600190910154600281810b9163010000009004900b83565b61286633610fe9565b61289c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b6012805473ffffffffffffffffffffffffffffffffffffffff9092166901000000000000000000027fffffff0000000000000000000000000000000000000000ffffffffffffffffff909216919091179055565b6128f933612d78565b61292f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b610caf613f12565b61294033610fe9565b612976576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b73ffffffffffffffffffffffffffffffffffffffff9091166000908152600a6020908152604080832080549415157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009586168117909155600b9092529091208054909216179055565b6129e833610fe9565b612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b6002546040517f70a08231000000000000000000000000000000000000000000000000000000008152610caf9173ffffffffffffffffffffffffffffffffffffffff16906370a0823190612a769030906004016150a9565b60206040518083038186803b158015612a8e57600080fd5b505afa158015612aa2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ac69190614eff565b614059565b612ad433610fe9565b612b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b73ffffffffffffffffffffffffffffffffffffffff16600090815260016020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b612b5f33610fe9565b612b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117825581526001602081905260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169091179055517f04dba622d284ed0014ee4b9a6a68386be1a4c08a4913ae272de89199cc68616390612c3d9083906150a9565b60405180910390a150565b612c5133610fe9565b612c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b60178054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6012546601000000000000900460020b81565b60135473ffffffffffffffffffffffffffffffffffffffff1681565b612cf633612d78565b612d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205460ff1690565b6fffffffffffffffffffffffffffffffff8060005b60048110156122375760025460035473ffffffffffffffffffffffffffffffffffffffff90811691161415612df05760009150612df5565b600092505b604080516080810182526000838152601860209081529083902054825260125473ffffffffffffffffffffffffffffffffffffffff69010000000000000000009091048116918301919091526fffffffffffffffffffffffffffffffff808716838501528516606083015260145492517ffc6f78650000000000000000000000000000000000000000000000000000000081529192169063fc6f786590612ea0908490600401615315565b6040805180830381600087803b158015612eb957600080fd5b505af1158015612ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ef19190614f52565b505050806001019050612db8565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055601054600e54600091612f47916002916118379182908790613cf4565b90506000612f5583836140d7565b60408051610100810182523080825260025473ffffffffffffffffffffffffffffffffffffffff908116602084015260125462ffffff1683850152606083019190915242608083015260a08201849052600060c0830181905260e083015260135492517f414bf38900000000000000000000000000000000000000000000000000000000815293945047939192169063414bf38990612ff89084906004016153ba565b602060405180830381600087803b15801561301257600080fd5b505af1158015613026573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304a9190614eff565b506002546040517f70a082310000000000000000000000000000000000000000000000000000000081526130a39173ffffffffffffffffffffffffffffffffffffffff16906370a0823190612a769030906004016150a9565b60006130af47846140d7565b905060006130d56130cc6002600e54613d4890919063ffffffff16565b601054906140d7565b905060006130f282611837600f5486613cf490919063ffffffff16565b6012546040519192506901000000000000000000900473ffffffffffffffffffffffffffffffffffffffff16906108fc8315029083906000818181858888f19350505050158015613147573d6000803e3d6000fd5b50611f11612da3565b6000818484111561318e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e919061516b565b505050900390565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c602052604081205460ff16156131c957600080fd5b601b5460ff16806131ff575073ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090205460ff165b8061322f575073ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604090205460ff165b156132465761323f848484613dbf565b9050610fe2565b61324e6137d2565b61325757600080fd5b436016546003011161326d5761326d8483614119565b6132778484614189565b1561328457613284614387565b604080518082018252601481527f496e73756666696369656e742042616c616e636500000000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff87166000908152600790915291909120546132ec918490613150565b73ffffffffffffffffffffffffffffffffffffffff80861660008181526007602052604081209390935560155490911614801590613350575073ffffffffffffffffffffffffffffffffffffffff851660009081526009602052604090205460ff16155b156133865773ffffffffffffffffffffffffffffffffffffffff85166000908152600d6020526040902054431161338657600080fd5b436016546003011180156133b5575060155473ffffffffffffffffffffffffffffffffffffffff858116911614155b1561341f5773ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040808220805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00918216811790925532845291909220805490911690911790555b601754610100900460ff168015613451575060155473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015613483575073ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205460ff16155b1561358d5761349184614392565b156134fb5773ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040808220805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00918216811790925532845291909220805490911690911790555b73ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205443141561358d5773ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040808220805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00918216811790925532845291909220805490911690911790555b60155473ffffffffffffffffffffffffffffffffffffffff858116911614156135b7575081613647565b60155473ffffffffffffffffffffffffffffffffffffffff86811691161480613605575073ffffffffffffffffffffffffffffffffffffffff851660009081526009602052604090205460ff165b80613635575073ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205460ff165b15613647576136448584614398565b90505b73ffffffffffffffffffffffffffffffffffffffff84166000908152600760205260409020546136779082613ed3565b73ffffffffffffffffffffffffffffffffffffffff808616600081815260076020908152604080832095909555600d90528390204390559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906136e190859061554a565b60405180910390a3506001949350505050565b6040805160808101825283815273ffffffffffffffffffffffffffffffffffffffff80841660208301526fffffffffffffffffffffffffffffffff828401819052606083015260145492517ffc6f78650000000000000000000000000000000000000000000000000000000081529192169063fc6f78659061377a908490600401615315565b6040805180830381600087803b15801561379357600080fd5b505af11580156137a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137cb9190614f52565b5050505050565b601654151590565b601554604080517f3850c7bd000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff1691633850c7bd9160048083019260e0929190829003018186803b15801561384557600080fd5b505afa158015613859573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061387d9190614e69565b5050505050915050601760029054906101000a900460ff16156138c8576017546301000000900460ff16156138ba576138b581614446565b6138c3565b6138c3816145e9565b610ebc565b6017546301000000900460ff16156138e3576138c381614446565b610ebc816145e9565b3060009081526007602052604081205461390790600a613d48565b9050613912476147c9565b6002546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116906370a08231906139689030906004016150a9565b60206040518083038186803b15801561398057600080fd5b505afa158015613994573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139b89190614eff565b6000805260196020527fd2ac945fcc0096878c763e37d6929b78378c1a2defabde8ba7ee5ed1d6e7a5b2556139ee816002613cf4565b600160005260196020527ffc941c3961fb6541da34150022cddf959da0fb2353866a6bfbd249c2da09291455613a25816003613cf4565b600260005260196020527f6f678ad17c55bce407239525f4bf7f1fe99197d3eb69bfdd9a0db84a9a11b58155613a5c816005613cf4565b6003600090815260196020527f3e323a6e0522b016fa22111dfed945f89456f9f44f69eac00209d92607a5b94091909155808080805b6004811015613cec576017546000955085945084935083925062010000900460ff168015613ac05750600081115b15613adb576000818152601960205260409020549450613b6e565b60175462010000900460ff168015613af1575080155b15613b0c576000818152601960205260409020549350613b6e565b60175462010000900460ff16158015613b23575080155b15613b3e576000818152601960205260409020549450613b6e565b60175462010000900460ff16158015613b575750600081115b15613b6e5760008181526019602052604090205493505b8415613b8257613b7f856002613d48565b92505b8315613b9657613b93846002613d48565b91505b604080516101608101825260035473ffffffffffffffffffffffffffffffffffffffff908116825260048054821660208085019190915260125462ffffff1684860152600086815260188083528682206001015463010000008104600290810b810b60608901528984529190935291820b90910b608085015260a084018a905260c0840189905260e08401889052610100840187905230610120850152603c420161014085015260145494517f8831645600000000000000000000000000000000000000000000000000000000815293949093921691638831645691613c7e91869101615436565b608060405180830381600087803b158015613c9857600080fd5b505af1158015613cac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cd09190614f17565b5050506000848152601860205260409020555050600101613a92565b505050505050565b600082613d0357506000610d6c565b82820282848281613d1057fe5b0414610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e9061524a565b6000610fe283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614839565b60005b6004811015613db657600081815260186020526040902054613dae9061488a565b600101613d8d565b506118066137da565b604080518082018252601481527f496e73756666696369656e742042616c616e636500000000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff86166000908152600790915291822054613e26918490613150565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152600760205260408082209390935590851681522054613e629083613ed3565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526007602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90613ec190869061554a565b60405180910390a35060019392505050565b600082820183811015610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e90615213565b6fffffffffffffffffffffffffffffffff8060005b60048110156122375760025460035473ffffffffffffffffffffffffffffffffffffffff90811691161415613f5f5760009250613f64565b600091505b604080516080810182526000838152601860209081529083902054825233908201526fffffffffffffffffffffffffffffffff808616828401528416606082015260145491517ffc6f7865000000000000000000000000000000000000000000000000000000008152909173ffffffffffffffffffffffffffffffffffffffff169063fc6f786590613ffa908490600401615315565b6040805180830381600087803b15801561401357600080fd5b505af1158015614027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061404b9190614f52565b505050806001019050613f27565b6040517f2e1a7d4d00000000000000000000000000000000000000000000000000000000815273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290632e1a7d4d906140a990849060040161554a565b600060405180830381600087803b1580156140c357600080fd5b505af11580156137cb573d6000803e3d6000fd5b6000610fe283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613150565b6006548111158061414f575073ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff165b614185576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906151dc565b5050565b600080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156141f457600080fd5b505afa158015614208573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061422c9190614e69565b50506017549395505060ff90921692505081159050614266575060155473ffffffffffffffffffffffffffffffffffffffff858116911614155b801561428d575060155473ffffffffffffffffffffffffffffffffffffffff848116911614155b1561437d5760175462010000900460ff161561431557601b5460ff161580156142c75750601a543060009081526007602052604090205410155b801561430d57506000805260186020527f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd85463010000009004600290810b810b9082900b135b915050610d6c565b601b5460ff161580156143395750601a543060009081526007602052604090205410155b801561430d57506000805260186020527f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd854600290810b810b91900b129050610d6c565b6000915050610d6c565b610caf601a54612eff565b3b151590565b6000806143b36011546118376143ac61180e565b8690613cf4565b306000908152600760205260409020549091506143d09082613ed3565b306000818152600760205260409081902092909255905173ffffffffffffffffffffffffffffffffffffffff8616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061442c90859061554a565b60405180910390a361443e83826140d7565b949350505050565b60125460186020527f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8f0630100000093849004600290810b95909501908101850b62ffffff90811685027fffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff68401880b83167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000958616178116919091179094557ff3794665d3af9b6fb6f858b70185898134f96768ef31c325d52e04f0ac195a4e8054600a8401880b831687026127108501890b841691861682178716179091557f2bacf7cca723d030d12aee795132f2c5f2d14ad131f16f3f27eeba3e79d18b8d8054918702614e208501890b84169286168317871617905560036000527f7a6340a7048c03c55288da75abed74d2ce9194201bafb03be53c0a7cca59149680549190960261753090930190960b16949091169390931716919091179055565b60125460186020527f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd88054600a630100000093849004600290810b909503908101850b62ffffff90811685027fffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffff6127108401880b83167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000958616178116919091179094557ff3794665d3af9b6fb6f858b70185898134f96768ef31c325d52e04f0ac195a4e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8f08401880b83168088027ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff686018a0b8516928716929092178716919091179091557f2bacf7cca723d030d12aee795132f2c5f2d14ad131f16f3f27eeba3e79d18b8d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb1e08501890b8416808902918716909317871617905560036000527f7a6340a7048c03c55288da75abed74d2ce9194201bafb03be53c0a7cca59149680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8ad090940190970b909116909402911690921716179055565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561482557600080fd5b505af1158015613cec573d6000803e3d6000fd5b60008183614874576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e919061516b565b50600083858161488057fe5b0495945050505050565b6014546040517f99fbab8800000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906399fbab88906148e190859060040161554a565b6101806040518083038186803b1580156148fa57600080fd5b505afa15801561490e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149329190614fa0565b50506040805160a0810182528d81526fffffffffffffffffffffffffffffffff851660208201526000818301819052606082015242608082015260145491517f0c49ccbe000000000000000000000000000000000000000000000000000000008152949c509a5073ffffffffffffffffffffffffffffffffffffffff169850630c49ccbe97506149d09650899550506004909101925061536e915050565b6040805180830381600087803b1580156149e957600080fd5b505af11580156149fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614a219190614f52565b5050614a2d83306136f4565b6002546040517f70a082310000000000000000000000000000000000000000000000000000000081526122379173ffffffffffffffffffffffffffffffffffffffff16906370a0823190612a769030906004016150a9565b8051610e6f8161557b565b60008083601f840112614aa1578182fd5b50813567ffffffffffffffff811115614ab8578182fd5b6020830191508360208083028501011115614ad257600080fd5b9250929050565b8051610e6f816155ab565b80516fffffffffffffffffffffffffffffffff81168114610e6f57600080fd5b805161ffff81168114610e6f57600080fd5b805162ffffff81168114610e6f57600080fd5b600060208284031215614b3a578081fd5b8135610fe28161557b565b60008060408385031215614b57578081fd5b8235614b628161557b565b91506020830135614b728161557b565b809150509250929050565b600080600060608486031215614b91578081fd5b8335614b9c8161557b565b92506020840135614bac8161557b565b929592945050506040919091013590565b600080600080600060808688031215614bd4578081fd5b8535614bdf8161557b565b94506020860135614bef8161557b565b935060408601359250606086013567ffffffffffffffff80821115614c12578283fd5b818801915088601f830112614c25578283fd5b813581811115614c33578384fd5b896020828501011115614c44578384fd5b9699959850939650602001949392505050565b60008060408385031215614c69578182fd5b8235614c748161557b565b91506020830135614b728161559d565b60008060408385031215614c96578182fd5b8235614ca18161557b565b946020939093013593505050565b60008060208385031215614cc1578182fd5b823567ffffffffffffffff811115614cd7578283fd5b614ce385828601614a90565b90969095509350505050565b600080600060408486031215614d03578081fd5b833567ffffffffffffffff811115614d19578182fd5b614d2586828701614a90565b909790965060209590950135949350505050565b600060208284031215614d4a578081fd5b8135610fe28161559d565b600060208284031215614d66578081fd5b8151610fe28161559d565b600060208284031215614d82578081fd5b8135610fe2816155ab565b600060208284031215614d9e578081fd5b8151610fe2816155ab565b600080600080600080600080610100898b031215614dc5578586fd5b8835614dd0816155ab565b97506020890135614de0816155ab565b96506040890135614df0816155ab565b95506060890135614e00816155ab565b94506080890135614e10816155ab565b935060a0890135614e20816155ab565b925060c0890135614e30816155ab565b915060e0890135614e40816155ab565b809150509295985092959890939650565b600060208284031215614e62578081fd5b5035919050565b600080600080600080600060e0888a031215614e83578081fd5b8751614e8e8161557b565b6020890151909750614e9f816155ab565b9550614ead60408901614b04565b9450614ebb60608901614b04565b9350614ec960808901614b04565b925060a088015160ff81168114614ede578182fd5b60c0890151909250614eef8161559d565b8091505092959891949750929550565b600060208284031215614f10578081fd5b5051919050565b60008060008060808587031215614f2c578182fd5b84519350614f3c60208601614ae4565b6040860151606090960151949790965092505050565b60008060408385031215614f64578182fd5b505080516020909101519092909150565b600080600060608486031215614f89578081fd5b505081359360208301359350604090920135919050565b6000806000806000806000806000806000806101808d8f031215614fc2578586fd5b8c516bffffffffffffffffffffffff81168114614fdd578687fd5b9b50614feb60208e01614a85565b9a50614ff960408e01614a85565b995061500760608e01614a85565b985061501560808e01614b16565b975061502360a08e01614ad9565b965061503160c08e01614ad9565b955061503f60e08e01614ae4565b94506101008d015193506101208d0151925061505e6101408e01614ae4565b915061506d6101608e01614ae4565b90509295989b509295989b509295989b565b73ffffffffffffffffffffffffffffffffffffffff169052565b60020b9052565b62ffffff169052565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff938416815291909216602082015262ffffff909116604082015260600190565b901515815260200190565b7fffffffff0000000000000000000000000000000000000000000000000000000091909116815260200190565b60029190910b815260200190565b6000602080835283518082850152825b818110156151975785810183015185820160400152820161517b565b818111156151a85783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526011908201527f5458204c696d6974204578636565646564000000000000000000000000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526006908201527f214f574e45520000000000000000000000000000000000000000000000000000604082015260600190565b6020808252600b908201527f21415554484f52495a4544000000000000000000000000000000000000000000604082015260600190565b8151815260208083015173ffffffffffffffffffffffffffffffffffffffff16908201526040808301516fffffffffffffffffffffffffffffffff90811691830191909152606092830151169181019190915260800190565b600060a082019050825182526fffffffffffffffffffffffffffffffff602084015116602083015260408301516040830152606083015160608301526080830151608083015292915050565b60006101008201905073ffffffffffffffffffffffffffffffffffffffff80845116835280602085015116602084015262ffffff60408501511660408401528060608501511660608401526080840151608084015260a084015160a084015260c084015160c08401528060e08501511660e08401525092915050565b60006101608201905061544a82845161507f565b602083015161545c602084018261507f565b50604083015161546f60408401826150a0565b5060608301516154826060840182615099565b5060808301516154956080840182615099565b5060a083015160a083015260c083015160c083015260e083015160e0830152610100808401518184015250610120808401516154d38285018261507f565b505061014092830151919092015290565b73ffffffffffffffffffffffffffffffffffffffff97909716875260029590950b602087015261ffff93841660408701529183166060860152909116608084015260ff1660a0830152151560c082015260e00190565b62ffffff91909116815260200190565b90815260200190565b928352600291820b6020840152900b604082015260600190565b60ff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff81168114610ebc57600080fd5b8015158114610ebc57600080fd5b8060020b8114610ebc57600080fdfea264697066735822122039deb5363111796b4b3122e2584caf4c325ee070aba78b611a290e87cd3a18d164736f6c63430007060033000000000000000000000000631fbb7c37d70460bbbc6e3c01e8b1c9e9d2d5e1

Deployed Bytecode

0x60806040526004361061044e5760003560e01c80639030616a11610243578063cec10c1111610143578063ea1e1a8d116100bb578063f526090b1161008a578063f887ea401161006f578063f887ea4014610c0a578063fabbfe6314610c1f578063fe9fbb8014610c3f57610455565b8063f526090b14610bd5578063f798ae4514610bf557610455565b8063ea1e1a8d14610b60578063eafde28c14610b80578063f0b37c0414610b95578063f2fde38b14610bb557610455565b8063d8ab95d911610112578063de7552b0116100f7578063de7552b014610afc578063e01bb68814610b2b578063e4f9ab5914610b4b57610455565b8063d8ab95d914610abc578063dd62ed3e14610adc57610455565b8063cec10c1114610a3a578063d190652714610a5a578063d339d77714610a87578063d5c1270714610a9c57610455565b8063b6a5d7de116101d6578063bd662aae116101a5578063c408c2451161018a578063c408c245146109fb578063c55dae6314610a10578063c56551b614610a2557610455565b8063bd662aae146109bb578063c204642c146109db57610455565b8063b6a5d7de14610946578063b8c6113014610966578063b964d63e14610986578063bcdb446b146109a657610455565b80639d0014b1116102125780639d0014b1146108c65780639f3a1aa8146108e6578063a9059cbb14610906578063b17acdcd1461092657610455565b80639030616a1461085c57806392c2612c1461087157806395d89b41146108915780639be65a60146108a657610455565b8063544089bb1161034e57806370a08231116102e15780638289c9ca116102b057806388cc22091161029557806388cc220914610812578063893d20e8146108325780638cbd24851461084757610455565b80638289c9ca146107dd578063841862e7146107fd57610455565b806370a082311461077e5780637ac786e91461079e5780637ae316d0146107b35780637d1db4a5146107c857610455565b80635fe7208c1161031d5780635fe7208c1461072a5780636536ba371461073f578063686f2c90146107545780636ddd17131461076957610455565b8063544089bb146106b5578063571ac8b0146106d557806359927044146106f55780635b9db5181461070a57610455565b806318160ddd116103e157806323b872dd116103b0578063313ce56711610395578063313ce5671461064457806332a9caba146106665780633aa40d3e1461068657610455565b806323b872dd146106045780632f54bf6e1461062457610455565b806318160ddd1461058d5780631b5ac4b5146105a25780631c3fe67a146105c2578063217a4b70146105e257610455565b8063095ea7b31161041d578063095ea7b3146104e057806313d21cdf1461050d578063150b7a021461054057806316b660cb1461056d57610455565b806303b945731461045a5780630445b6671461047157806306fdde031461049c578063089fe6aa146104be57610455565b3661045557005b600080fd5b34801561046657600080fd5b5061046f610c5f565b005b34801561047d57600080fd5b50610486610cb1565b604051610493919061554a565b60405180910390f35b3480156104a857600080fd5b506104b1610cb7565b604051610493919061516b565b3480156104ca57600080fd5b506104d3610cef565b604051610493919061553a565b3480156104ec57600080fd5b506105006104fb366004614c84565b610cfa565b6040516104939190615125565b34801561051957600080fd5b5061052d610528366004614b29565b610d72565b60405161049397969594939291906154e4565b34801561054c57600080fd5b5061056061055b366004614bbd565b610e12565b6040516104939190615130565b34801561057957600080fd5b50610500610588366004614b29565b610e3c565b34801561059957600080fd5b50610486610e51565b3480156105ae57600080fd5b506104866105bd366004614e51565b610e57565b3480156105ce57600080fd5b5061046f6105dd366004614e51565b610e74565b3480156105ee57600080fd5b506105f7610ebf565b60405161049391906150a9565b34801561061057600080fd5b5061050061061f366004614b7d565b610edb565b34801561063057600080fd5b5061050061063f366004614b29565b610fe9565b34801561065057600080fd5b5061065961100a565b604051610493919061556d565b34801561067257600080fd5b5061046f610681366004614c84565b61100f565b34801561069257600080fd5b506106a66106a1366004614e51565b611486565b604051610493939291906150f0565b3480156106c157600080fd5b5061046f6106d0366004614d39565b611556565b3480156106e157600080fd5b506105006106f0366004614b29565b6115ce565b34801561070157600080fd5b506105f76115fa565b34801561071657600080fd5b5061046f610725366004614d39565b611623565b34801561073657600080fd5b5061046f61169a565b34801561074b57600080fd5b506105006116ea565b34801561076057600080fd5b5061046f6116f8565b34801561077557600080fd5b5061050061177c565b34801561078a57600080fd5b50610486610799366004614b29565b611785565b3480156107aa57600080fd5b5061046f6117ad565b3480156107bf57600080fd5b5061048661180e565b3480156107d457600080fd5b5061048661184b565b3480156107e957600080fd5b5061046f6107f8366004614b29565b611851565b34801561080957600080fd5b5061046f6118dc565b34801561081e57600080fd5b5061046f61082d366004614b29565b611a4e565b34801561083e57600080fd5b506105f7611adc565b34801561085357600080fd5b5061046f611af8565b34801561086857600080fd5b50610500611b3f565b34801561087d57600080fd5b5061048661088c366004614e51565b611b4e565b34801561089d57600080fd5b506104b1611b60565b3480156108b257600080fd5b506105006108c1366004614b29565b611b97565b3480156108d257600080fd5b5061046f6108e1366004614e51565b611d16565b3480156108f257600080fd5b5061046f610901366004614da9565b611d5a565b34801561091257600080fd5b50610500610921366004614c84565b611f43565b34801561093257600080fd5b5061046f610941366004614e51565b611f50565b34801561095257600080fd5b5061046f610961366004614b29565b61206a565b34801561097257600080fd5b5061046f610981366004614d39565b6120fb565b34801561099257600080fd5b5061046f6109a1366004614caf565b61216b565b3480156109b257600080fd5b5061046f61223c565b3480156109c757600080fd5b5061046f6109d6366004614da9565b6122a7565b3480156109e757600080fd5b5061046f6109f6366004614cef565b612472565b348015610a0757600080fd5b5061046f6124f0565b348015610a1c57600080fd5b506105f7612547565b348015610a3157600080fd5b50610500612563565b348015610a4657600080fd5b5061046f610a55366004614f75565b612573565b348015610a6657600080fd5b50610a7a610a75366004614d71565b6125df565b604051610493919061515d565b348015610a9357600080fd5b50610a7a6126df565b348015610aa857600080fd5b5061046f610ab7366004614d71565b6126ef565b348015610ac857600080fd5b5061046f610ad7366004614b29565b61276f565b348015610ae857600080fd5b50610486610af7366004614b45565b6127fd565b348015610b0857600080fd5b50610b1c610b17366004614e51565b612835565b60405161049393929190615553565b348015610b3757600080fd5b5061046f610b46366004614b29565b61285d565b348015610b5757600080fd5b5061046f6128f0565b348015610b6c57600080fd5b5061046f610b7b366004614c57565b612937565b348015610b8c57600080fd5b5061046f6129df565b348015610ba157600080fd5b5061046f610bb0366004614b29565b612acb565b348015610bc157600080fd5b5061046f610bd0366004614b29565b612b56565b348015610be157600080fd5b5061046f610bf0366004614d39565b612c48565b348015610c0157600080fd5b50610a7a612cbe565b348015610c1657600080fd5b506105f7612cd1565b348015610c2b57600080fd5b5061046f610c3a366004614b29565b612ced565b348015610c4b57600080fd5b50610500610c5a366004614b29565b612d78565b610c6833610fe9565b610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b60405180910390fd5b610caf612da3565b565b601a5481565b60408051808201909152600881527f434f4c4f5353555300000000000000000000000000000000000000000000000060208201525b90565b60125462ffffff1681565b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610d6090869061554a565b60405180910390a35060015b92915050565b60008060008060008060008773ffffffffffffffffffffffffffffffffffffffff16633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015610dc357600080fd5b505afa158015610dd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfb9190614e69565b959e949d50929b5090995097509550909350915050565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b600c6020526000908152604090205460ff1681565b60055490565b600080821215610e6a5781600003610e6c565b815b90505b919050565b610e7d33612d78565b610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b610ebc81612eff565b50565b60045473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff831660009081526008602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff14610fd457604080518082018252601681527f496e73756666696369656e7420416c6c6f77616e63650000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff87166000908152600882528381203382529091529190912054610fa2918490613150565b73ffffffffffffffffffffffffffffffffffffffff851660009081526008602090815260408083203384529091529020555b610fdf848484613196565b90505b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161490565b600990565b61101833610fe9565b61104e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8481169190911791829055604080517f3850c7bd000000000000000000000000000000000000000000000000000000008152905160009390921691633850c7bd9160048082019260e092909190829003018186803b1580156110ea57600080fd5b505afa1580156110fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111229190614e69565b505050505091505061113382611486565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000001662ffffff9290921691909117905550600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9283161790553060009081526008602090815260408083208785168452909152908190207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9081905560025491517f095ea7b3000000000000000000000000000000000000000000000000000000008152919092169163095ea7b39161122d9187916004016150ca565b602060405180830381600087803b15801561124757600080fd5b505af115801561125b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127f9190614d55565b5060035473ffffffffffffffffffffffffffffffffffffffff1630141561134357600254600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091166201000017166301000000179055611396565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001630179055601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffff1690555b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0c93a7c6040518163ffffffff1660e01b815260040160206040518083038186803b1580156113fe57600080fd5b505afa158015611412573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114369190614d8d565b601260066101000a81548162ffffff021916908360020b62ffffff160217905550611460816125df565b601260036101000a81548162ffffff021916908360020b62ffffff160217905550505050565b6014546040517f99fbab880000000000000000000000000000000000000000000000000000000081526000918291829182918291829173ffffffffffffffffffffffffffffffffffffffff909116906399fbab88906114e9908a9060040161554a565b6101806040518083038186803b15801561150257600080fd5b505afa158015611516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153a9190614fa0565b50979f50959d50939b5050505050505050505050509193909250565b61155f33610fe9565b611595576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601780549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b6000610e6c827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610cfa565b6012546901000000000000000000900473ffffffffffffffffffffffffffffffffffffffff1681565b61162c33610fe9565b611662576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b6017805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b6116a333612d78565b6116d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b610caf6116e530611785565b612eff565b601754610100900460ff1681565b61170133610fe9565b611737576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b60005b6004811015610ebc576000818152601860205260408120549054611774919073ffffffffffffffffffffffffffffffffffffffff166136f4565b60010161173a565b60175460ff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b6117b633610fe9565b6117ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b6117f46137d2565b156117fe57600080fd5b6118066137da565b610caf6138ec565b600043601654600201106118445761183d6064611837605a601154613cf490919063ffffffff16565b90613d48565b9050610cec565b5060105490565b60065481565b61185a33612d78565b611890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b73ffffffffffffffffffffffffffffffffffffffff16600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6118e533610fe9565b61191b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055601554604080517f3850c7bd000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff1691633850c7bd9160048083019260e0929190829003018186803b1580156119b157600080fd5b505afa1580156119c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e99190614e69565b50505050509150506119fa816125df565b601260036101000a81548162ffffff021916908360020b62ffffff160217905550611a23613d8a565b50601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b611a5733612d78565b611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b73ffffffffffffffffffffffffffffffffffffffff16600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b611b0133610fe9565b611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b600554600655565b60175462010000900460ff1681565b60196020526000908152604090205481565b60408051808201909152600681527f52484f4445530000000000000000000000000000000000000000000000000000602082015290565b6000611ba233610fe9565b611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b73ffffffffffffffffffffffffffffffffffffffff8216301415611bfb57600080fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb90339083906370a0823190611c579030906004016150a9565b60206040518083038186803b158015611c6f57600080fd5b505afa158015611c83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca79190614eff565b6040518363ffffffff1660e01b8152600401611cc49291906150ca565b602060405180830381600087803b158015611cde57600080fd5b505af1158015611cf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6c9190614d55565b611d1f33610fe9565b611d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601a55565b611d6333610fe9565b611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601b805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0090911617905560186020527f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd880547fffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffff908116630100000060028c810b62ffffff9081168302939093177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000009081168d830b8516179095557ff3794665d3af9b6fb6f858b70185898134f96768ef31c325d52e04f0ac195a4e805485168c830b851684021786168b830b85161790557f2bacf7cca723d030d12aee795132f2c5f2d14ad131f16f3f27eeba3e79d18b8d805485168a830b8516840217861689830b851617905560036000527f7a6340a7048c03c55288da75abed74d2ce9194201bafb03be53c0a7cca591496805490941687820b8416909202919091179093169284900b16919091179055611f11613d8a565b5050601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055505050505050565b6000610fe2338484613196565b611f5933610fe9565b611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b604080516080810182528281523060208201526fffffffffffffffffffffffffffffffff818301819052606082015260145491517ffc6f7865000000000000000000000000000000000000000000000000000000008152909173ffffffffffffffffffffffffffffffffffffffff169063fc6f786590612013908490600401615315565b6040805180830381600087803b15801561202c57600080fd5b505af1158015612040573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120649190614f52565b50505050565b61207333610fe9565b6120a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b73ffffffffffffffffffffffffffffffffffffffff16600090815260016020819052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169091179055565b61210433610fe9565b61213a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61217433612d78565b6121aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b60005b81811015612237576001600c60008585858181106121c757fe5b90506020020160208101906121dc9190614b29565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790556001016121ad565b505050565b61224533610fe9565b61227b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b60405133904780156108fc02916000818181858888f19350505050158015610ebc573d6000803e3d6000fd5b6122b033610fe9565b6122e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556123196137d2565b1561232357600080fd5b4360165560186020527f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd880547fffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffff908116630100000060028c810b62ffffff9081168302939093177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000009081168d830b8516179095557ff3794665d3af9b6fb6f858b70185898134f96768ef31c325d52e04f0ac195a4e805485168c830b851684021786168b830b85161790557f2bacf7cca723d030d12aee795132f2c5f2d14ad131f16f3f27eeba3e79d18b8d805485168a830b8516840217861689830b851617905560036000527f7a6340a7048c03c55288da75abed74d2ce9194201bafb03be53c0a7cca591496805490941687820b8416909202919091179093169284900b16919091179055611f116138ec565b61247b33612d78565b6124b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b60005b82811015612064576124e7338585848181106124cc57fe5b90506020020160208101906124e19190614b29565b84613dbf565b506001016124b4565b6124f933610fe9565b61252f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b6125376137d2565b1561254157600080fd5b43601655565b60035473ffffffffffffffffffffffffffffffffffffffff1681565b6017546301000000900460ff1681565b61257c33610fe9565b6125b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b600f839055600e8290556125c68383613ed3565b6010556011819055600481046010541061223757600080fd5b6000601260069054906101000a900460020b60020b60c8141561263b5761261560c88360020b8161260c57fe5b0760020b610e57565b61262157506000610e6f565b61263160c88360020b8161260c57fe5b60c8039050610e6f565b60125466010000000000009004600290810b900b600a141561268d57612667600a8360020b8161260c57fe5b61267357506000610e6f565b612683600a8360020b8161260c57fe5b600a039050610e6f565b60125466010000000000009004600290810b900b603c1415610e6f576126b9603c8360020b8161260c57fe5b6126c557506000610e6f565b6126d5603c8360020b8161260c57fe5b603c039050610e6f565b6012546301000000900460020b81565b6126f833610fe9565b61272e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b6012805460029290920b62ffffff166301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffff909216919091179055565b61277833612d78565b6127ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205490565b60186020526000908152604090208054600190910154600281810b9163010000009004900b83565b61286633610fe9565b61289c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b6012805473ffffffffffffffffffffffffffffffffffffffff9092166901000000000000000000027fffffff0000000000000000000000000000000000000000ffffffffffffffffff909216919091179055565b6128f933612d78565b61292f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b610caf613f12565b61294033610fe9565b612976576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b73ffffffffffffffffffffffffffffffffffffffff9091166000908152600a6020908152604080832080549415157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009586168117909155600b9092529091208054909216179055565b6129e833610fe9565b612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b6002546040517f70a08231000000000000000000000000000000000000000000000000000000008152610caf9173ffffffffffffffffffffffffffffffffffffffff16906370a0823190612a769030906004016150a9565b60206040518083038186803b158015612a8e57600080fd5b505afa158015612aa2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ac69190614eff565b614059565b612ad433610fe9565b612b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b73ffffffffffffffffffffffffffffffffffffffff16600090815260016020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b612b5f33610fe9565b612b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117825581526001602081905260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169091179055517f04dba622d284ed0014ee4b9a6a68386be1a4c08a4913ae272de89199cc68616390612c3d9083906150a9565b60405180910390a150565b612c5133610fe9565b612c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152a7565b60178054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6012546601000000000000900460020b81565b60135473ffffffffffffffffffffffffffffffffffffffff1681565b612cf633612d78565b612d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906152de565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205460ff1690565b6fffffffffffffffffffffffffffffffff8060005b60048110156122375760025460035473ffffffffffffffffffffffffffffffffffffffff90811691161415612df05760009150612df5565b600092505b604080516080810182526000838152601860209081529083902054825260125473ffffffffffffffffffffffffffffffffffffffff69010000000000000000009091048116918301919091526fffffffffffffffffffffffffffffffff808716838501528516606083015260145492517ffc6f78650000000000000000000000000000000000000000000000000000000081529192169063fc6f786590612ea0908490600401615315565b6040805180830381600087803b158015612eb957600080fd5b505af1158015612ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ef19190614f52565b505050806001019050612db8565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055601054600e54600091612f47916002916118379182908790613cf4565b90506000612f5583836140d7565b60408051610100810182523080825260025473ffffffffffffffffffffffffffffffffffffffff908116602084015260125462ffffff1683850152606083019190915242608083015260a08201849052600060c0830181905260e083015260135492517f414bf38900000000000000000000000000000000000000000000000000000000815293945047939192169063414bf38990612ff89084906004016153ba565b602060405180830381600087803b15801561301257600080fd5b505af1158015613026573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304a9190614eff565b506002546040517f70a082310000000000000000000000000000000000000000000000000000000081526130a39173ffffffffffffffffffffffffffffffffffffffff16906370a0823190612a769030906004016150a9565b60006130af47846140d7565b905060006130d56130cc6002600e54613d4890919063ffffffff16565b601054906140d7565b905060006130f282611837600f5486613cf490919063ffffffff16565b6012546040519192506901000000000000000000900473ffffffffffffffffffffffffffffffffffffffff16906108fc8315029083906000818181858888f19350505050158015613147573d6000803e3d6000fd5b50611f11612da3565b6000818484111561318e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e919061516b565b505050900390565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c602052604081205460ff16156131c957600080fd5b601b5460ff16806131ff575073ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090205460ff165b8061322f575073ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604090205460ff165b156132465761323f848484613dbf565b9050610fe2565b61324e6137d2565b61325757600080fd5b436016546003011161326d5761326d8483614119565b6132778484614189565b1561328457613284614387565b604080518082018252601481527f496e73756666696369656e742042616c616e636500000000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff87166000908152600790915291909120546132ec918490613150565b73ffffffffffffffffffffffffffffffffffffffff80861660008181526007602052604081209390935560155490911614801590613350575073ffffffffffffffffffffffffffffffffffffffff851660009081526009602052604090205460ff16155b156133865773ffffffffffffffffffffffffffffffffffffffff85166000908152600d6020526040902054431161338657600080fd5b436016546003011180156133b5575060155473ffffffffffffffffffffffffffffffffffffffff858116911614155b1561341f5773ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040808220805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00918216811790925532845291909220805490911690911790555b601754610100900460ff168015613451575060155473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015613483575073ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205460ff16155b1561358d5761349184614392565b156134fb5773ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040808220805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00918216811790925532845291909220805490911690911790555b73ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205443141561358d5773ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040808220805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00918216811790925532845291909220805490911690911790555b60155473ffffffffffffffffffffffffffffffffffffffff858116911614156135b7575081613647565b60155473ffffffffffffffffffffffffffffffffffffffff86811691161480613605575073ffffffffffffffffffffffffffffffffffffffff851660009081526009602052604090205460ff165b80613635575073ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205460ff165b15613647576136448584614398565b90505b73ffffffffffffffffffffffffffffffffffffffff84166000908152600760205260409020546136779082613ed3565b73ffffffffffffffffffffffffffffffffffffffff808616600081815260076020908152604080832095909555600d90528390204390559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906136e190859061554a565b60405180910390a3506001949350505050565b6040805160808101825283815273ffffffffffffffffffffffffffffffffffffffff80841660208301526fffffffffffffffffffffffffffffffff828401819052606083015260145492517ffc6f78650000000000000000000000000000000000000000000000000000000081529192169063fc6f78659061377a908490600401615315565b6040805180830381600087803b15801561379357600080fd5b505af11580156137a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137cb9190614f52565b5050505050565b601654151590565b601554604080517f3850c7bd000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff1691633850c7bd9160048083019260e0929190829003018186803b15801561384557600080fd5b505afa158015613859573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061387d9190614e69565b5050505050915050601760029054906101000a900460ff16156138c8576017546301000000900460ff16156138ba576138b581614446565b6138c3565b6138c3816145e9565b610ebc565b6017546301000000900460ff16156138e3576138c381614446565b610ebc816145e9565b3060009081526007602052604081205461390790600a613d48565b9050613912476147c9565b6002546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116906370a08231906139689030906004016150a9565b60206040518083038186803b15801561398057600080fd5b505afa158015613994573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139b89190614eff565b6000805260196020527fd2ac945fcc0096878c763e37d6929b78378c1a2defabde8ba7ee5ed1d6e7a5b2556139ee816002613cf4565b600160005260196020527ffc941c3961fb6541da34150022cddf959da0fb2353866a6bfbd249c2da09291455613a25816003613cf4565b600260005260196020527f6f678ad17c55bce407239525f4bf7f1fe99197d3eb69bfdd9a0db84a9a11b58155613a5c816005613cf4565b6003600090815260196020527f3e323a6e0522b016fa22111dfed945f89456f9f44f69eac00209d92607a5b94091909155808080805b6004811015613cec576017546000955085945084935083925062010000900460ff168015613ac05750600081115b15613adb576000818152601960205260409020549450613b6e565b60175462010000900460ff168015613af1575080155b15613b0c576000818152601960205260409020549350613b6e565b60175462010000900460ff16158015613b23575080155b15613b3e576000818152601960205260409020549450613b6e565b60175462010000900460ff16158015613b575750600081115b15613b6e5760008181526019602052604090205493505b8415613b8257613b7f856002613d48565b92505b8315613b9657613b93846002613d48565b91505b604080516101608101825260035473ffffffffffffffffffffffffffffffffffffffff908116825260048054821660208085019190915260125462ffffff1684860152600086815260188083528682206001015463010000008104600290810b810b60608901528984529190935291820b90910b608085015260a084018a905260c0840189905260e08401889052610100840187905230610120850152603c420161014085015260145494517f8831645600000000000000000000000000000000000000000000000000000000815293949093921691638831645691613c7e91869101615436565b608060405180830381600087803b158015613c9857600080fd5b505af1158015613cac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cd09190614f17565b5050506000848152601860205260409020555050600101613a92565b505050505050565b600082613d0357506000610d6c565b82820282848281613d1057fe5b0414610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e9061524a565b6000610fe283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614839565b60005b6004811015613db657600081815260186020526040902054613dae9061488a565b600101613d8d565b506118066137da565b604080518082018252601481527f496e73756666696369656e742042616c616e636500000000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff86166000908152600790915291822054613e26918490613150565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152600760205260408082209390935590851681522054613e629083613ed3565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526007602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90613ec190869061554a565b60405180910390a35060019392505050565b600082820183811015610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e90615213565b6fffffffffffffffffffffffffffffffff8060005b60048110156122375760025460035473ffffffffffffffffffffffffffffffffffffffff90811691161415613f5f5760009250613f64565b600091505b604080516080810182526000838152601860209081529083902054825233908201526fffffffffffffffffffffffffffffffff808616828401528416606082015260145491517ffc6f7865000000000000000000000000000000000000000000000000000000008152909173ffffffffffffffffffffffffffffffffffffffff169063fc6f786590613ffa908490600401615315565b6040805180830381600087803b15801561401357600080fd5b505af1158015614027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061404b9190614f52565b505050806001019050613f27565b6040517f2e1a7d4d00000000000000000000000000000000000000000000000000000000815273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290632e1a7d4d906140a990849060040161554a565b600060405180830381600087803b1580156140c357600080fd5b505af11580156137cb573d6000803e3d6000fd5b6000610fe283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613150565b6006548111158061414f575073ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff165b614185576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906151dc565b5050565b600080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156141f457600080fd5b505afa158015614208573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061422c9190614e69565b50506017549395505060ff90921692505081159050614266575060155473ffffffffffffffffffffffffffffffffffffffff858116911614155b801561428d575060155473ffffffffffffffffffffffffffffffffffffffff848116911614155b1561437d5760175462010000900460ff161561431557601b5460ff161580156142c75750601a543060009081526007602052604090205410155b801561430d57506000805260186020527f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd85463010000009004600290810b810b9082900b135b915050610d6c565b601b5460ff161580156143395750601a543060009081526007602052604090205410155b801561430d57506000805260186020527f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd854600290810b810b91900b129050610d6c565b6000915050610d6c565b610caf601a54612eff565b3b151590565b6000806143b36011546118376143ac61180e565b8690613cf4565b306000908152600760205260409020549091506143d09082613ed3565b306000818152600760205260409081902092909255905173ffffffffffffffffffffffffffffffffffffffff8616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061442c90859061554a565b60405180910390a361443e83826140d7565b949350505050565b60125460186020527f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8f0630100000093849004600290810b95909501908101850b62ffffff90811685027fffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff68401880b83167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000958616178116919091179094557ff3794665d3af9b6fb6f858b70185898134f96768ef31c325d52e04f0ac195a4e8054600a8401880b831687026127108501890b841691861682178716179091557f2bacf7cca723d030d12aee795132f2c5f2d14ad131f16f3f27eeba3e79d18b8d8054918702614e208501890b84169286168317871617905560036000527f7a6340a7048c03c55288da75abed74d2ce9194201bafb03be53c0a7cca59149680549190960261753090930190960b16949091169390931716919091179055565b60125460186020527f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd88054600a630100000093849004600290810b909503908101850b62ffffff90811685027fffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffff6127108401880b83167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000958616178116919091179094557ff3794665d3af9b6fb6f858b70185898134f96768ef31c325d52e04f0ac195a4e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8f08401880b83168088027ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff686018a0b8516928716929092178716919091179091557f2bacf7cca723d030d12aee795132f2c5f2d14ad131f16f3f27eeba3e79d18b8d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb1e08501890b8416808902918716909317871617905560036000527f7a6340a7048c03c55288da75abed74d2ce9194201bafb03be53c0a7cca59149680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8ad090940190970b909116909402911690921716179055565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561482557600080fd5b505af1158015613cec573d6000803e3d6000fd5b60008183614874576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e919061516b565b50600083858161488057fe5b0495945050505050565b6014546040517f99fbab8800000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906399fbab88906148e190859060040161554a565b6101806040518083038186803b1580156148fa57600080fd5b505afa15801561490e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149329190614fa0565b50506040805160a0810182528d81526fffffffffffffffffffffffffffffffff851660208201526000818301819052606082015242608082015260145491517f0c49ccbe000000000000000000000000000000000000000000000000000000008152949c509a5073ffffffffffffffffffffffffffffffffffffffff169850630c49ccbe97506149d09650899550506004909101925061536e915050565b6040805180830381600087803b1580156149e957600080fd5b505af11580156149fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614a219190614f52565b5050614a2d83306136f4565b6002546040517f70a082310000000000000000000000000000000000000000000000000000000081526122379173ffffffffffffffffffffffffffffffffffffffff16906370a0823190612a769030906004016150a9565b8051610e6f8161557b565b60008083601f840112614aa1578182fd5b50813567ffffffffffffffff811115614ab8578182fd5b6020830191508360208083028501011115614ad257600080fd5b9250929050565b8051610e6f816155ab565b80516fffffffffffffffffffffffffffffffff81168114610e6f57600080fd5b805161ffff81168114610e6f57600080fd5b805162ffffff81168114610e6f57600080fd5b600060208284031215614b3a578081fd5b8135610fe28161557b565b60008060408385031215614b57578081fd5b8235614b628161557b565b91506020830135614b728161557b565b809150509250929050565b600080600060608486031215614b91578081fd5b8335614b9c8161557b565b92506020840135614bac8161557b565b929592945050506040919091013590565b600080600080600060808688031215614bd4578081fd5b8535614bdf8161557b565b94506020860135614bef8161557b565b935060408601359250606086013567ffffffffffffffff80821115614c12578283fd5b818801915088601f830112614c25578283fd5b813581811115614c33578384fd5b896020828501011115614c44578384fd5b9699959850939650602001949392505050565b60008060408385031215614c69578182fd5b8235614c748161557b565b91506020830135614b728161559d565b60008060408385031215614c96578182fd5b8235614ca18161557b565b946020939093013593505050565b60008060208385031215614cc1578182fd5b823567ffffffffffffffff811115614cd7578283fd5b614ce385828601614a90565b90969095509350505050565b600080600060408486031215614d03578081fd5b833567ffffffffffffffff811115614d19578182fd5b614d2586828701614a90565b909790965060209590950135949350505050565b600060208284031215614d4a578081fd5b8135610fe28161559d565b600060208284031215614d66578081fd5b8151610fe28161559d565b600060208284031215614d82578081fd5b8135610fe2816155ab565b600060208284031215614d9e578081fd5b8151610fe2816155ab565b600080600080600080600080610100898b031215614dc5578586fd5b8835614dd0816155ab565b97506020890135614de0816155ab565b96506040890135614df0816155ab565b95506060890135614e00816155ab565b94506080890135614e10816155ab565b935060a0890135614e20816155ab565b925060c0890135614e30816155ab565b915060e0890135614e40816155ab565b809150509295985092959890939650565b600060208284031215614e62578081fd5b5035919050565b600080600080600080600060e0888a031215614e83578081fd5b8751614e8e8161557b565b6020890151909750614e9f816155ab565b9550614ead60408901614b04565b9450614ebb60608901614b04565b9350614ec960808901614b04565b925060a088015160ff81168114614ede578182fd5b60c0890151909250614eef8161559d565b8091505092959891949750929550565b600060208284031215614f10578081fd5b5051919050565b60008060008060808587031215614f2c578182fd5b84519350614f3c60208601614ae4565b6040860151606090960151949790965092505050565b60008060408385031215614f64578182fd5b505080516020909101519092909150565b600080600060608486031215614f89578081fd5b505081359360208301359350604090920135919050565b6000806000806000806000806000806000806101808d8f031215614fc2578586fd5b8c516bffffffffffffffffffffffff81168114614fdd578687fd5b9b50614feb60208e01614a85565b9a50614ff960408e01614a85565b995061500760608e01614a85565b985061501560808e01614b16565b975061502360a08e01614ad9565b965061503160c08e01614ad9565b955061503f60e08e01614ae4565b94506101008d015193506101208d0151925061505e6101408e01614ae4565b915061506d6101608e01614ae4565b90509295989b509295989b509295989b565b73ffffffffffffffffffffffffffffffffffffffff169052565b60020b9052565b62ffffff169052565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff938416815291909216602082015262ffffff909116604082015260600190565b901515815260200190565b7fffffffff0000000000000000000000000000000000000000000000000000000091909116815260200190565b60029190910b815260200190565b6000602080835283518082850152825b818110156151975785810183015185820160400152820161517b565b818111156151a85783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526011908201527f5458204c696d6974204578636565646564000000000000000000000000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526006908201527f214f574e45520000000000000000000000000000000000000000000000000000604082015260600190565b6020808252600b908201527f21415554484f52495a4544000000000000000000000000000000000000000000604082015260600190565b8151815260208083015173ffffffffffffffffffffffffffffffffffffffff16908201526040808301516fffffffffffffffffffffffffffffffff90811691830191909152606092830151169181019190915260800190565b600060a082019050825182526fffffffffffffffffffffffffffffffff602084015116602083015260408301516040830152606083015160608301526080830151608083015292915050565b60006101008201905073ffffffffffffffffffffffffffffffffffffffff80845116835280602085015116602084015262ffffff60408501511660408401528060608501511660608401526080840151608084015260a084015160a084015260c084015160c08401528060e08501511660e08401525092915050565b60006101608201905061544a82845161507f565b602083015161545c602084018261507f565b50604083015161546f60408401826150a0565b5060608301516154826060840182615099565b5060808301516154956080840182615099565b5060a083015160a083015260c083015160c083015260e083015160e0830152610100808401518184015250610120808401516154d38285018261507f565b505061014092830151919092015290565b73ffffffffffffffffffffffffffffffffffffffff97909716875260029590950b602087015261ffff93841660408701529183166060860152909116608084015260ff1660a0830152151560c082015260e00190565b62ffffff91909116815260200190565b90815260200190565b928352600291820b6020840152900b604082015260600190565b60ff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff81168114610ebc57600080fd5b8015158114610ebc57600080fd5b8060020b8114610ebc57600080fdfea264697066735822122039deb5363111796b4b3122e2584caf4c325ee070aba78b611a290e87cd3a18d164736f6c63430007060033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000631fbb7c37d70460bbbc6e3c01e8b1c9e9d2d5e1

-----Decoded View---------------
Arg [0] : _Wallet (address): 0x631FBB7C37d70460BBbc6E3c01e8b1C9E9D2D5E1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000631fbb7c37d70460bbbc6e3c01e8b1c9e9d2d5e1


Deployed Bytecode Sourcemap

29263:22930:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38279:72;;;;;;;;;;;;;:::i;:::-;;30835:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32505:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30190:21::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32928:216::-;;;;;;;;;;-1:-1:-1;32928:216:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51311:394::-;;;;;;;;;;-1:-1:-1;51311:394:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;51713:203::-;;;;;;;;;;-1:-1:-1;51713:203:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29970:35::-;;;;;;;;;;-1:-1:-1;29970:35:0;;;;;:::i;:::-;;:::i;32235:88::-;;;;;;;;;;;;;:::i;51924:94::-;;;;;;;;;;-1:-1:-1;51924:94:0;;;;;:::i;:::-;;:::i;49265:93::-;;;;;;;;;;-1:-1:-1;49265:93:0;;;;;:::i;:::-;;:::i;29457:25::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40641:370::-;;;;;;;;;;-1:-1:-1;40641:370:0;;;;;:::i;:::-;;:::i;4932:103::-;;;;;;;;;;-1:-1:-1;4932:103:0;;;;;:::i;:::-;;:::i;32329:80::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46833:688::-;;;;;;;;;;-1:-1:-1;46833:688:0;;;;;:::i;:::-;;:::i;46605:220::-;;;;;;;;;;-1:-1:-1;46605:220:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;49078:74::-;;;;;;;;;;-1:-1:-1;49078:74:0;;;;;:::i;:::-;;:::i;40343:124::-;;;;;;;;;;-1:-1:-1;40343:124:0;;;;;:::i;:::-;;:::i;30276:25::-;;;;;;;;;;;;;:::i;47529:98::-;;;;;;;;;;-1:-1:-1;47529:98:0;;;;;:::i;:::-;;:::i;49160:97::-;;;;;;;;;;;;;:::i;30540:26::-;;;;;;;;;;;;;:::i;38445:163::-;;;;;;;;;;;;;:::i;30503:30::-;;;;;;;;;;;;;:::i;32675:105::-;;;;;;;;;;-1:-1:-1;32675:105:0;;;;;:::i;:::-;;:::i;48274:133::-;;;;;;;;;;;;;:::i;43665:176::-;;;;;;;;;;;;;:::i;29667:48::-;;;;;;;;;;;;;:::i;50851:97::-;;;;;;;;;;-1:-1:-1;50851:97:0;;;;;:::i;:::-;;:::i;33721:162::-;;;;;;;;;;;;;:::i;50741:93::-;;;;;;;;;;-1:-1:-1;50741:93:0;;;;;:::i;:::-;;:::i;32591:78::-;;;;;;;;;;;;;:::i;49991:82::-;;;;;;;;;;;;;:::i;30573:22::-;;;;;;;;;;;;;:::i;30778:48::-;;;;;;;;;;-1:-1:-1;30778:48:0;;;;;:::i;:::-;;:::i;32415:84::-;;;;;;;;;;;;;:::i;51078:225::-;;;;;;;;;;-1:-1:-1;51078:225:0;;;;;:::i;:::-;;:::i;49880:100::-;;;;;;;;;;-1:-1:-1;49880:100:0;;;;;:::i;:::-;;:::i;33891:458::-;;;;;;;;;;-1:-1:-1;33891:458:0;;;;;:::i;:::-;;:::i;40476:156::-;;;;;;;;;;-1:-1:-1;40476:156:0;;;;;:::i;:::-;;:::i;36590:412::-;;;;;;;;;;-1:-1:-1;36590:412:0;;;;;:::i;:::-;;:::i;4603:94::-;;;;;;;;;;-1:-1:-1;4603:94:0;;;;;:::i;:::-;;:::i;49665:104::-;;;;;;;;;;-1:-1:-1;49665:104:0;;;;;:::i;:::-;;:::i;50569:164::-;;;;;;;;;;-1:-1:-1;50569:164:0;;;;;:::i;:::-;;:::i;50956:113::-;;;;;;;;;;;;;:::i;48551:519::-;;;;;;;;;;-1:-1:-1;48551:519:0;;;;;:::i;:::-;;:::i;43432:224::-;;;;;;;;;;-1:-1:-1;43432:224:0;;;;;:::i;:::-;;:::i;48415:128::-;;;;;;;;;;;;;:::i;29425:24::-;;;;;;;;;;;;;:::i;30602:15::-;;;;;;;;;;;;;:::i;50081:282::-;;;;;;;;;;-1:-1:-1;50081:282:0;;;;;:::i;:::-;;:::i;47736:527::-;;;;;;;;;;-1:-1:-1;47736:527:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;30218:22::-;;;;;;;;;;;;;:::i;47635:93::-;;;;;;;;;;-1:-1:-1;47635:93:0;;;;;:::i;:::-;;:::i;50374:81::-;;;;;;;;;;-1:-1:-1;50374:81:0;;;;;:::i;:::-;;:::i;32786:133::-;;;;;;;;;;-1:-1:-1;32786:133:0;;;;;:::i;:::-;;:::i;30722:49::-;;;;;;;;;;-1:-1:-1;30722:49:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;49548:108::-;;;;;;;;;;-1:-1:-1;49548:108:0;;;;;:::i;:::-;;:::i;38359:78::-;;;;;;;;;;;;;:::i;49367:172::-;;;;;;;;;;-1:-1:-1;49367:172:0;;;;;:::i;:::-;;:::i;39239:113::-;;;;;;;;;;;;;:::i;4774:97::-;;;;;;;;;;-1:-1:-1;4774:97:0;;;;;:::i;:::-;;:::i;5334:173::-;;;;;;;;;;-1:-1:-1;5334:173:0;;;;;:::i;:::-;;:::i;49781:91::-;;;;;;;;;;-1:-1:-1;49781:91:0;;;;;:::i;:::-;;:::i;30247:22::-;;;;;;;;;;;;;:::i;30313:25::-;;;;;;;;;;;;;:::i;50472:85::-;;;;;;;;;;-1:-1:-1;50472:85:0;;;;;:::i;:::-;;:::i;5107:107::-;;;;;;;;;;-1:-1:-1;5107:107:0;;;;;:::i;:::-;;:::i;38279:72::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;38334:12:::1;:10;:12::i;:::-;38279:72::o:0;30835:50::-;;;;:::o;32505:80::-;32577:5;;;;;;;;;;;;;;;;;32505:80;;:::o;30190:21::-;;;;;;:::o;32928:216::-;33032:10;33003:4;33020:23;;;:11;:23;;;;;;;;;:32;;;;;;;;;;:41;;;33077:37;33003:4;;33020:32;;33077:37;;;;33055:6;;33077:37;:::i;:::-;;;;;;;;-1:-1:-1;33132:4:0;32928:216;;;;;:::o;51311:394::-;51406:20;51441:10;51466:23;51504:29;51548:33;51596:17;51628:13;51682:2;51674:17;;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51667:26;;;;-1:-1:-1;51667:26:0;;-1:-1:-1;51667:26:0;;-1:-1:-1;51667:26:0;-1:-1:-1;51667:26:0;-1:-1:-1;51667:26:0;;-1:-1:-1;51311:394:0;-1:-1:-1;;51311:394:0:o;51713:203::-;51878:30;51713:203;;;;;;;:::o;29970:35::-;;;;;;;;;;;;;;;:::o;32235:88::-;32308:12;;32235:88;:::o;51924:94::-;51965:4;51999:1;51994;:6;;:15;;52008:1;52007:2;;51994:15;;;52003:1;51994:15;51982:28;;51924:94;;;;:::o;49265:93::-;4487:24;4500:10;4487:12;:24::i;:::-;4479:48;;;;;;;;;;;;:::i;:::-;49333:17:::1;49343:6;49333:9;:17::i;:::-;49265:93:::0;:::o;29457:25::-;;;;;;:::o;40641:370::-;40761:19;;;40741:4;40761:19;;;:11;:19;;;;;;;;40781:10;40761:31;;;;;;;;40804:10;40761:54;40758:188;;40865:69;;;;;;;;;;;;;;;;;;;;:19;;;-1:-1:-1;40865:19:0;;;:11;:19;;;;;40885:10;40865:31;;;;;;;;;;:69;;40901:6;;40865:35;:69::i;:::-;40831:19;;;;;;;:11;:19;;;;;;;;40851:10;40831:31;;;;;;;:103;40758:188;40963:40;40977:6;40985:9;40996:6;40963:13;:40::i;:::-;40956:47;;40641:370;;;;;;:::o;4932:103::-;4987:4;5022:5;;;;;5011:16;;;;4932:103::o;32329:80::-;29599:1;32329:80;:::o;46833:688::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;46912:4:::1;:21:::0;;;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;;;46965:12:::1;::::0;;;;;;;-1:-1:-1;;46965:4:0;;::::1;::::0;:10:::1;::::0;:12:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:4;:12;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46945:32;;;;;;;;47012:21;47024:8;47012:11;:21::i;:::-;47001:7;46989:44:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;46990:9:0::1;46989:44:::0;;;::::1;;::::0;;::::1;;::::0;;47064:4:::1;-1:-1:-1::0;47044:26:0;;;:11:::1;:26;::::0;;;;;;;:42;;::::1;::::0;;;;;;;;;47097:10:::1;47044:64:::0;;;;47126:4:::1;::::0;47119:56;;;;;47126:4;;;::::1;::::0;47119:20:::1;::::0;:56:::1;::::0;47044:42;;47119:56:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;47189:9:0::1;::::0;:26:::1;:9;47210:4;47189:26;47186:249;;;47244:4;::::0;47231:10:::1;:17:::0;;;::::1;47244:4;::::0;;::::1;47231:17:::0;;;::::1;::::0;;47263:10:::1;:17:::0;;47295:10;47263:17;;;::::1;::::0;::::1;47295:10;::::0;::::1;::::0;;47186:249:::1;;;47338:10;:26:::0;;;::::1;47359:4;47338:26;::::0;;47379:10:::1;:18:::0;;47412:11;;;;47186:249:::1;47457:4;;;;;;;;;;;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47445:9;;:30;;;;;;;;;;;;;;;;;;;;47498:15;47508:4;47498:9;:15::i;:::-;47486:9;;:27;;;;;;;;;;;;;;;;;;;;4349:1;46833:688:::0;;:::o;46605:220::-;46754:5;;:24;;;;;46664:7;;;;;;;;;;;;46754:5;;;;;:15;;:24;;46770:7;;46754:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;46700:78:0;;-1:-1:-1;46700:78:0;;-1:-1:-1;46700:78:0;;-1:-1:-1;;;;;;;;;;;;46605:220:0;;;;;:::o;49078:74::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;49134:3:::1;:10:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;49078:74::o;40343:124::-;40398:4;40422:37;40430:7;40447:10;40422:7;:37::i;30276:25::-;;;;;;;;;:::o;47529:98::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;47595:10:::1;:24:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;47529:98::o;49160:97::-;4487:24;4500:10;4487:12;:24::i;:::-;4479:48;;;;;;;;;;;;:::i;:::-;49214:35:::1;49224:24;49242:4;49224:9;:24::i;:::-;49214:9;:35::i;30540:26::-:0;;;;;;;;;:::o;38445:163::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;38505:9:::1;38500:101;38524:1;38520;:5;38500:101;;;38559:14;::::0;;;:11:::1;:14;::::0;;;;:22;38583:5;;38547:42:::1;::::0;38559:22;38583:5:::1;;38547:11;:42::i;:::-;38527:3;;38500:101;;30503:30:::0;;;;;;:::o;32675:105::-;32759:18;;32741:7;32759:18;;;:9;:18;;;;;;;32675:105::o;48274:133::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;48337:10:::1;:8;:10::i;:::-;48336:11;48328:20;;;::::0;::::1;;48362:18;:16;:18::i;:::-;48388:11;:9;:11::i;43665:176::-:0;43709:7;43750:12;43732:10;;43745:1;43732:14;:30;43729:79;;43772:33;43801:3;43773:22;43792:2;43773:14;;:18;;:22;;;;:::i;:::-;43772:28;;:33::i;:::-;43765:40;;;;43729:79;-1:-1:-1;43825:8:0;;43665:176;:::o;29667:48::-;;;;:::o;50851:97::-;4487:24;4500:10;4487:12;:24::i;:::-;4479:48;;;;;;;;;;;;:::i;:::-;50919:13:::1;;50935:5;50919:13:::0;;;:6:::1;:13;::::0;;;;:21;;;::::1;::::0;;50851:97::o;33721:162::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;30941:6:::1;:13:::0;;;::::1;30950:4;30941:13;::::0;;33804:4:::2;::::0;:12:::2;::::0;;;;;;;30941:6:::1;::::0;33804:4:::2;;::::0;:10:::2;::::0;:12:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;:4;:12;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33784:32;;;;;;;;33839:15;33849:4;33839:9;:15::i;:::-;33827:9;;:27;;;;;;;;;;;;;;;;;;;;33865:10;:8;:10::i;:::-;-1:-1:-1::0;30959:6:0::1;:14:::0;;;::::1;::::0;;33721:162::o;50741:93::-;4487:24;4500:10;4487:12;:24::i;:::-;4479:48;;;;;;;;;;;;:::i;:::-;50806:13:::1;;;::::0;;;:6:::1;:13;::::0;;;;:20;;;::::1;50822:4;50806:20;::::0;;50741:93::o;32591:78::-;32643:7;32661:5;;;32591:78;:::o;49991:82::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;50056:12:::1;::::0;50041::::1;:27:::0;49991:82::o;30573:22::-;;;;;;;;;:::o;30778:48::-;;;;;;;;;;;;;:::o;32415:84::-;32489:7;;;;;;;;;;;;;;;;;32415:84;:::o;51078:225::-;51146:10;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;51176:23:::1;::::0;::::1;51194:4;51176:23;;51168:32;;;::::0;::::1;;51255:39;::::0;;;;51219:23:::1;::::0;::::1;::::0;::::1;::::0;51243:10:::1;::::0;51219:23;;51255:24:::1;::::0;:39:::1;::::0;51288:4:::1;::::0;51255:39:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51219:76;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;49880:100::-:0;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;49952:13:::1;:23:::0;49880:100::o;33891:458::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;30941:6:::1;:13:::0;;30950:4:::1;30941:13:::0;;;::::1;;::::0;;34051:11:::2;:14;::::0;:17;:24;;;;;::::2;::::0;::::2;::::0;;::::2;;::::0;;::::2;::::0;::::2;::::0;;;::::2;34086::::0;;;::::2;::::0;;::::2;::::0;::::2;;::::0;;;34121:17;:24;;;::::2;::::0;;::::2;::::0;::::2;::::0;::::2;;34156::::0;::::2;::::0;;::::2;::::0;::::2;;::::0;;34191:17;:24;;;::::2;::::0;;::::2;::::0;::::2;::::0;::::2;;34226::::0;::::2;::::0;;::::2;::::0;::::2;;::::0;;34051:17:::2;-1:-1:-1::0;34261:14:0;:17;:24;;;;::::2;::::0;;::::2;::::0;::::2;::::0;;::::2;::::0;;;::::2;34296::::0;;::::2;::::0;;;::::2;;::::0;;;::::2;::::0;;34331:10:::2;:8;:10::i;:::-;-1:-1:-1::0;;30959:6:0::1;:14:::0;;;::::1;::::0;;-1:-1:-1;;;;;;33891:458:0:o;40476:156::-;40556:4;40580:44;40594:10;40606:9;40617:6;40580:13;:44::i;36590:412::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;36729:233:::1;::::0;;::::1;::::0;::::1;::::0;;;;;36845:4:::1;36729:233;::::0;::::1;::::0;36881:17:::1;36729:233:::0;;;;;;;;;;36976:5:::1;::::0;:21;;;;;36729:233;;::::1;36976:5;::::0;:13:::1;::::0;:21:::1;::::0;36729:233;;36976:21:::1;;;:::i;:::-;;::::0;::::1;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;4349:1;36590:412:::0;:::o;4603:94::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;4663:19:::1;;;::::0;;;4685:4:::1;4663:19;::::0;;;;;;;:26;;;::::1;::::0;;::::1;::::0;;4603:94::o;49665:104::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;49739:11:::1;:22:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;49665:104::o;50569:164::-;4487:24;4500:10;4487:12;:24::i;:::-;4479:48;;;;;;;;;;;;:::i;:::-;50647:9:::1;50642:84;50662:14:::0;;::::1;50642:84;;;50710:4;50698:2;:10;50701:3;;50705:1;50701:6;;;;;;;;;;;;;;;;;;;;:::i;:::-;50698:10;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;50698:10:0;:16;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;50678:3:0::1;50642:84;;;;50569:164:::0;;:::o;50956:113::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;51010:51:::1;::::0;51018:10:::1;::::0;51039:21:::1;51010:51:::0;::::1;;;::::0;::::1;::::0;;;51039:21;51018:10;51010:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;48551:519:::0;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;30941:6:::1;:13:::0;;;::::1;30950:4;30941:13;::::0;;48713:10:::2;:8;:10::i;:::-;48712:11;48704:20;;;::::0;::::2;;48748:12;48735:10;:25:::0;48771:11:::2;:14;::::0;:17;:24;;;;;::::2;::::0;::::2;::::0;;::::2;;::::0;;::::2;::::0;::::2;::::0;;;::::2;48806::::0;;;::::2;::::0;;::::2;::::0;::::2;;::::0;;;48841:17;:24;;;::::2;::::0;;::::2;::::0;::::2;::::0;::::2;;48876::::0;::::2;::::0;;::::2;::::0;::::2;;::::0;;48911:17;:24;;;::::2;::::0;;::::2;::::0;::::2;::::0;::::2;;48946::::0;::::2;::::0;;::::2;::::0;::::2;;::::0;;48771:17:::2;-1:-1:-1::0;48981:14:0;:17;:24;;;;::::2;::::0;;::::2;::::0;::::2;::::0;;::::2;::::0;;;::::2;49016::::0;;::::2;::::0;;;::::2;;::::0;;;::::2;::::0;;49051:11:::2;:9;:11::i;43432:224::-:0;4487:24;4500:10;4487:12;:24::i;:::-;4479:48;;;;;;;;;;;;:::i;:::-;43530:9:::1;43525:124;43545:21:::0;;::::1;43525:124;;;43588:49;43604:10;43615;;43626:1;43615:13;;;;;;;;;;;;;;;;;;;;:::i;:::-;43630:6;43588:15;:49::i;:::-;-1:-1:-1::0;43568:3:0::1;;43525:124;;48415:128:::0;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;48474:10:::1;:8;:10::i;:::-;48473:11;48465:20;;;::::0;::::1;;48523:12;48510:10;:25:::0;48415:128::o;29425:24::-;;;;;;:::o;30602:15::-;;;;;;;;;:::o;50081:282::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;50183:6:::1;:16:::0;;;50207:6:::1;:16:::0;;;50245:20:::1;50192:7:::0;50216;50245:11:::1;:20::i;:::-;50234:8;:31:::0;50276:14:::1;:32:::0;;;50353:1:::1;50293:15:::0;50338:16:::1;50327:8;;:27;50319:36;;;::::0;::::1;47736:527:::0;47788:5;47808:9;;;;;;;;;;;:16;;47821:3;47808:16;47805:451;;;47839:16;47851:3;47843:5;:11;;;;;;;;47839:16;;:3;:16::i;:::-;47836:60;;-1:-1:-1;47883:1:0;47876:8;;47836:60;47925:16;47937:3;47929:5;:11;;;;;;47925:16;47919:3;:22;47906:36;;;;47805:451;47963:9;;;;;;;;;:15;;47976:2;47963:15;47960:296;;;47993:15;48005:2;47997:5;:10;;;;;;47993:15;47990:59;;-1:-1:-1;48036:1:0;48029:8;;47990:59;48077:15;48089:2;48081:5;:10;;;;;;48077:15;48072:2;:20;48059:34;;;;47960:296;48114:9;;;;;;;;;:15;;48127:2;48114:15;48111:145;;;48144:15;48156:2;48148:5;:10;;;;;;48144:15;48141:59;;-1:-1:-1;48187:1:0;48180:8;;48141:59;48228:15;48240:2;48232:5;:10;;;;;;48228:15;48223:2;:20;48210:34;;;;30218:22;;;;;;;;;:::o;47635:93::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;47701:9:::1;:19:::0;;::::1;::::0;;;::::1;;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;47635:93::o;50374:81::-;4487:24;4500:10;4487:12;:24::i;:::-;4479:48;;;;;;;;;;;;:::i;:::-;50433:7:::1;;;::::0;;;:2:::1;:7;::::0;;;;:14;;;::::1;50443:4;50433:14;::::0;;50374:81::o;32786:133::-;32888:19;;;;32870:7;32888:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;32786:133::o;30722:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49548:108::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;49624:10:::1;:24:::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;49548:108::o;38359:78::-;4487:24;4500:10;4487:12;:24::i;:::-;4479:48;;;;;;;;;;;;:::i;:::-;38417:15:::1;:13;:15::i;49367:172::-:0;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;49460:19:::1;::::0;;::::1;;::::0;;;:11:::1;:19;::::0;;;;;;;:28;;;::::1;;::::0;;;::::1;::::0;::::1;::::0;;;49499:15:::1;:23:::0;;;;;;:32;;;;::::1;;::::0;;49367:172::o;39239:113::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;39313:4:::1;::::0;39306:37:::1;::::0;;;;39289:55:::1;::::0;39313:4:::1;;::::0;39306:22:::1;::::0;:37:::1;::::0;39337:4:::1;::::0;39306:37:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39289:16;:55::i;4774:97::-:0;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;4836:19:::1;;4858:5;4836:19:::0;;;:14:::1;:19;::::0;;;;:27;;;::::1;::::0;;4774:97::o;5334:173::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;5410:5:::1;:11:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;5432:19;;-1:-1:-1;5432:19:0::1;::::0;;;;;;;;:26;;;::::1;::::0;;::::1;::::0;;5474:25;::::1;::::0;::::1;::::0;5410:11;;5474:25:::1;:::i;:::-;;;;;;;;5334:173:::0;:::o;49781:91::-;4317:19;4325:10;4317:7;:19::i;:::-;4309:38;;;;;;;;;;;;:::i;:::-;49846:7:::1;:18:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;49781:91::o;30247:22::-;;;;;;;;;:::o;30313:25::-;;;;;;:::o;50472:85::-;4487:24;4500:10;4487:12;:24::i;:::-;4479:48;;;;;;;;;;;;:::i;:::-;50534:7:::1;;50544:5;50534:7:::0;;;:2:::1;:7;::::0;;;;:15;;;::::1;::::0;;50472:85::o;5107:107::-;5187:19;;5163:4;5187:19;;;:14;:19;;;;;;;;;5107:107::o;37010:624::-;37066:17;;37052:11;37136:494;37160:1;37156;:5;37136:494;;;37199:4;;37186:9;;37199:4;37186:9;;;37199:4;;37186:17;37183:99;;;37226:1;37220:7;;37183:99;;;37268:1;37262:7;;37183:99;37367:216;;;;;;;;37296:55;37437:14;;;:11;:14;;;;;;;;:22;37367:216;;37489:10;;;;;;;;;37367:216;;;;;;;;;;;;;;;;;;;;;37597:5;;:21;;;;;37367:216;;37597:5;;:13;;:21;;37367:216;;37597:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37136:494;37163:3;;;;;37136:494;;44931:906;30941:6;:13;;;;30950:4;30941:13;;;45046:8:::1;::::0;45034:6:::1;::::0;30941;;45022:40:::1;::::0;45060:1:::1;::::0;45022:33:::1;::::0;;;:7;;:11:::1;:19::i;:40::-;44996:66:::0;-1:-1:-1;45073:20:0::1;45096:28;:7:::0;44996:66;45096:11:::1;:28::i;:::-;45245:189;::::0;;::::1;::::0;::::1;::::0;;45298:4:::1;45245:189:::0;;;45314:4:::1;::::0;45245:189:::1;45314:4:::0;;::::1;45245:189;::::0;::::1;::::0;45329:7:::1;::::0;::::1;;45245:189:::0;;;;;;;;;;;45371:15:::1;45245:189:::0;;;;;;;;;;45135:21:::1;45245:189:::0;;;;;;;;;;45447:6:::1;::::0;:31;;;;;45073:51;;-1:-1:-1;45159:21:0::1;::::0;45245:189;;45447:6:::1;::::0;:23:::1;::::0;:31:::1;::::0;45245:189;;45447:31:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;45513:4:0::1;::::0;45506:37:::1;::::0;;;;45489:55:::1;::::0;45513:4:::1;;::::0;45506:22:::1;::::0;:37:::1;::::0;45537:4:::1;::::0;45506:37:::1;;;:::i;45489:55::-;45557:17;45577:40;:21;45603:13:::0;45577:25:::1;:40::i;:::-;45557:60;;45628:19;45650:27;45663:13;45674:1;45663:6;;:10;;:13;;;;:::i;:::-;45650:8;::::0;;:12:::1;:27::i;:::-;45628:49;;45688:21;45712:38;45738:11;45712:21;45726:6;;45712:9;:13;;:21;;;;:::i;:38::-;45769:10;::::0;45761:43:::1;::::0;45688:62;;-1:-1:-1;45769:10:0;;::::1;;;::::0;45761:43:::1;::::0;::::1;;::::0;45688:62;;45761:43:::1;::::0;;;45688:62;45769:10;45761:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45815:12;:10;:12::i;437:193::-:0;523:7;559:12;551:6;;;;543:29;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;595:5:0;;;437:193::o;41259:1649::-;41378:10;;;41351:4;41378:10;;;:2;:10;;;;;;;;41377:11;41368:21;;;;;;41403:6;;;;;:31;;-1:-1:-1;41412:22:0;;;;;;;:11;:22;;;;;;;;41403:31;:54;;;-1:-1:-1;41438:19:0;;;;;;;:11;:19;;;;;;;;41403:54;41400:111;;;41467:42;41483:6;41491:9;41502:6;41467:15;:42::i;:::-;41460:49;;;;41400:111;41531:10;:8;:10::i;:::-;41523:19;;;;;;41574:12;41556:10;;41569:1;41556:14;:30;41553:65;;41588:28;41601:6;41609;41588:12;:28::i;:::-;41633:33;41648:6;41656:9;41633:14;:33::i;:::-;41630:52;;;41669:10;:8;:10::i;:::-;41712:53;;;;;;;;;;;;;;;;;;;;:17;;;-1:-1:-1;41712:17:0;;;:9;:17;;;;;;;;:53;;41734:6;;41712:21;:53::i;:::-;41692:17;;;;;;;;:9;:17;;;;;:73;;;;41829:4;;;;;41811:23;;;;:42;;-1:-1:-1;41839:14:0;;;;;;;:6;:14;;;;;;;;41838:15;41811:42;41808:126;;;41877:27;;;;;;;:19;:27;;;;;;41907:12;-1:-1:-1;41869:51:0;;;;;;41966:12;41949:10;;41962:1;41949:14;:29;:59;;;;-1:-1:-1;42003:4:0;;;41982:26;;;42003:4;;41982:26;;41949:59;41946:147;;;42025:13;;;;;;;:2;:13;;;;;;:20;;42041:4;42025:20;;;;;;;;;42064:9;42061:13;;;;;;:20;;;;;;;;;;41946:147;42112:7;;;;;;;:37;;;;-1:-1:-1;42144:4:0;;;42123:26;;;42144:4;;42123:26;;42112:37;:59;;;;-1:-1:-1;42154:17:0;;;;;;;:6;:17;;;;;;;;42153:18;42112:59;42109:359;;;42190:17;42197:9;42190:6;:17::i;:::-;42187:112;;;42227:13;;;;;;;:2;:13;;;;;;:20;;42243:4;42227:20;;;;;;;;;42266:9;42263:13;;;;;;:20;;;;;;;;;;42187:112;42319:30;;;;;;;:19;:30;;;;;;42353:12;42319:46;42315:142;;;42385:13;;;;;;;:2;:13;;;;;;:20;;42401:4;42385:20;;;;;;;;;42424:9;42421:13;;;;;;:20;;;;;;;;;;42315:142;42501:4;;;42480:26;;;42501:4;;42480:26;42477:197;;;-1:-1:-1;42533:6:0;42477:197;;;42575:4;;;42557:23;;;42575:4;;42557:23;;:39;;-1:-1:-1;42582:14:0;;;;;;;:6;:14;;;;;;;;42557:39;:58;;;-1:-1:-1;42598:17:0;;;;;;;:6;:17;;;;;;;;42557:58;42554:120;;;42642:23;42650:6;42658;42642:7;:23::i;:::-;42625:40;;42554:120;42722:20;;;;;;;:9;:20;;;;;;:40;;42747:14;42722:24;:40::i;:::-;42699:20;;;;;;;;:9;:20;;;;;;;;:63;;;;42773:19;:30;;;;;42806:12;42773:45;;42835:43;;;;;;;;;;42863:14;;42835:43;:::i;:::-;;;;;;;;-1:-1:-1;42896:4:0;;41259:1649;-1:-1:-1;;;;41259:1649:0:o;36163:419::-;36312:230;;;;;;;;;;;;;;;;;;;36461:17;36312:230;;;;;;;;;;36556:5;;:21;;;;;36312:230;;36556:5;;:13;;:21;;36312:230;;36556:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36163:419;;;:::o;46506:90::-;46573:10;;:15;;46506:90;:::o;33153:362::-;33217:4;;:12;;;;;;;;33199:10;;33217:4;;;:10;;:12;;;;;;;;;;;;;;:4;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33197:32;;;;;;;;33240:10;;;;;;;;;;;33237:271;;;33269:3;;;;;;;33266:107;;;33292:14;33301:4;33292:8;:14::i;:::-;33266:107;;;33343:14;33352:4;33343:8;:14::i;:::-;33237:271;;;33401:3;;;;;;;33398:99;;;33420:14;33429:4;33420:8;:14::i;33398:99::-;33467:14;33476:4;33467:8;:14::i;34357:1798::-;34428:4;34394:13;34410:24;;;:9;:24;;;;;;:32;;34439:2;34410:28;:32::i;:::-;34394:48;;34453:37;34468:21;34453:14;:37::i;:::-;34527:4;;34520:37;;;;;34527:4;;;;;34520:22;;:37;;34551:4;;34520:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34501:16;;;:13;:16;;;:56;34584:12;:5;34594:1;34584:9;:12::i;:::-;34579:1;34565:16;;:13;:16;;;:31;34623:12;:5;34633:1;34623:9;:12::i;:::-;34618:1;34604:16;;:13;:16;;;:31;34662:12;:5;34672:1;34662:9;:12::i;:::-;34657:1;34643:16;;;;:13;:16;;;:31;;;;:16;;;;34810:1341;34834:1;34830;:5;34810:1341;;;34986:10;;34872:1;;-1:-1:-1;34872:1:0;;-1:-1:-1;34872:1:0;;-1:-1:-1;34872:1:0;;-1:-1:-1;34986:10:0;;;;;:19;;;;;35004:1;35000;:5;34986:19;34983:356;;;35034:16;;;;:13;:16;;;;;;;-1:-1:-1;34983:356:0;;;35072:10;;;;;;;:20;;;;-1:-1:-1;35086:6:0;;35072:20;35069:270;;;35121:16;;;;:13;:16;;;;;;;-1:-1:-1;35069:270:0;;;35173:10;;;;;;;35172:11;:21;;;;-1:-1:-1;35187:6:0;;35172:21;35169:170;;;35222:16;;;;:13;:16;;;;;;;-1:-1:-1;35169:170:0;;;35262:10;;;;;;;35261:11;:20;;;;;35280:1;35276;:5;35261:20;35258:81;;;35310:16;;;;:13;:16;;;;;;;-1:-1:-1;35258:81:0;35358:15;;35355:60;;35394:19;:12;35411:1;35394:16;:19::i;:::-;35375:38;;35355:60;35432:15;;35429:60;;35468:19;:12;35485:1;35468:16;:19::i;:::-;35449:38;;35429:60;35575:459;;;;;;;;35636:9;;;;;;35575:459;;35668:10;;;;;35575:459;;;;;;;;35701:7;;;;35575:459;;;;35503:52;35731:14;;;:11;:14;;;;;;35636:9;35731:17;;;;;;;;;35575:459;;;;;;35771:14;;;;;;;:17;;;35575:459;;;;;;;;;;;;;;;;;;;;;;;;;35636:9;35575:459;;;;;35967:4;35575:459;;;;36013:2;35995:15;:20;35575:459;;;;36073:5;;:18;;;;;35575:459;;35503:52;;36073:5;;;:10;;:18;;35575:459;;36073:18;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;36106:14:0;;;;:11;:14;;;;;:33;-1:-1:-1;;34837:3:0;;34810:1341;;;;34357:1798;;;;;:::o;636:252::-;694:7;718:6;714:47;;-1:-1:-1;748:1:0;741:8;;714:47;786:5;;;790:1;786;:5;:1;810:5;;;;;:10;802:56;;;;;;;;;;;;:::i;894:132::-;952:7;979:39;983:1;986;979:39;;;;;;;;;;;;;;;;;:3;:39::i;33523:189::-;33568:9;33563:100;33587:1;33583;:5;33563:100;;;33628:14;;;;:11;:14;;;;;:22;33610:41;;:17;:41::i;:::-;33590:3;;33563:100;;;;33670:18;:16;:18::i;42918:331::-;43049:53;;;;;;;;;;;;;;;;;;;;:17;;;43012:4;43049:17;;;:9;:17;;;;;;;:53;;43071:6;;43049:21;:53::i;:::-;43029:17;;;;;;;;:9;:17;;;;;;:73;;;;43136:20;;;;;;;:32;;43161:6;43136:24;:32::i;:::-;43113:20;;;;;;;;:9;:20;;;;;;;:55;;;;43184:35;;;;;;;;;;43212:6;;43184:35;:::i;:::-;;;;;;;;-1:-1:-1;43237:4:0;42918:331;;;;;:::o;107:182::-;165:7;197:5;;;221:6;;;;213:46;;;;;;;;;;;;:::i;37642:627::-;37701:17;;37687:11;37771:494;37795:1;37791;:5;37771:494;;;37834:4;;37821:9;;37834:4;37821:9;;;37834:4;;37821:17;37818:99;;;37861:1;37855:7;;37818:99;;;37903:1;37897:7;;37818:99;38002:216;;;;;;;;37931:55;38072:14;;;:11;:14;;;;;;;;:22;38002:216;;38124:10;38002:216;;;;;;;;;;;;;;;;;;38232:5;;:21;;;;;38002:216;;;38232:5;;:13;;:21;;38002:216;;38232:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37771:494;37798:3;;;;;37771:494;;3057:81;3109:21;;;;;2794:42;;3109:13;;:21;;3123:6;;3109:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295:136;353:7;380:43;384:1;387;380:43;;;;;;;;;;;;;;;;;:3;:43::i;43257:166::-;43354:12;;43344:6;:22;;:49;;;-1:-1:-1;43370:23:0;;;;;;;:15;:23;;;;;;;;43344:49;43336:79;;;;;;;;;;;;:::i;:::-;43257:166;;:::o;44193:650::-;44275:4;44294:10;44312:4;;;;;;;;;;;:10;;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;44335:11:0;;44292:32;;-1:-1:-1;;44335:11:0;;;;;-1:-1:-1;;44335:38:0;;;-1:-1:-1;44335:38:0;;-1:-1:-1;44368:4:0;;;44350:23;;;44368:4;;44350:23;;44335:38;:68;;;;-1:-1:-1;44398:4:0;;;44377:26;;;44398:4;;44377:26;;44335:68;44332:504;;;44436:10;;;;;;;44433:351;;;44474:6;;;;44473:7;:66;;;;-1:-1:-1;44526:13:0;;44516:4;44498:24;;;;:9;:24;;;;;;:41;;44473:66;:111;;;;-1:-1:-1;44567:14:0;;;:11;:14;;:17;;;;;;;;;44560:24;;;;;;;44473:111;44466:118;;;;;44433:351;44647:6;;;;44646:7;:66;;;;-1:-1:-1;44699:13:0;;44689:4;44671:24;;;;:9;:24;;;;;;:41;;44646:66;:111;;;;-1:-1:-1;44740:14:0;;;:11;:14;;:17;;;;;;44733:24;;;;;;;-1:-1:-1;44639:118:0;;44332:504;44822:5;44815:12;;;;;44852:71;44891:24;44901:13;;44891:9;:24::i;52026:161::-;52135:20;52171:8;;;52026:161::o;43851:333::-;43917:7;43937:17;43957:45;43987:14;;43957:25;43968:13;:11;:13::i;:::-;43957:6;;:10;:25::i;:45::-;44058:4;44040:24;;;;:9;:24;;;;;;43937:65;;-1:-1:-1;44040:39:0;;43937:65;44040:28;:39::i;:::-;44031:4;44013:24;;;;:9;:24;;;;;;;:66;;;;44095:42;;44013:24;44095:42;;;;;;;44127:9;;44095:42;:::i;:::-;;;;;;;;44155:21;:6;44166:9;44155:10;:21::i;:::-;44148:28;43851:333;-1:-1:-1;;;;43851:333:0:o;39850:482::-;39932:9;;39899:11;:14;;:17;:42;;39972:12;39932:9;;;;;;;;;39919:22;;;;39972:24;;;39952:44;;39899:42;39952:44;;;;;;39919:9;:22;;39899:42;;;;;;;;;39952:44;;;;;;;;;40007:17;:44;;39926:2;40082:21;;40062:41;;;;;;39979:5;40027:24;;40007:44;;;;;;;;;40062:41;;;;;;40114:17;:44;;40169;;;40141:5;40134:24;;40114:44;;;;;;;;;40169;;;;;39932:9;39899:14;40224;:17;:44;;40279;;;;40251:5;40244:24;;;40224:44;;;;;;;;;;;;40279;;;;;;;39850:482::o;39360:::-;39444:9;;39409:11;:14;;:17;:44;;39491:2;39444:9;;;;;;;;;39429:24;;;39484:21;;;39464:41;;39409:44;39464:41;;;;;;39436:5;39429:24;;39409:44;;;;;;;;;39464:41;;;;;;;;;39516:17;:41;;39588:12;:24;;39568:44;;;;;;;39536:9;:21;;39516:41;;;;;;;;;;;39568:44;;;;;;;;;39623:17;:44;;39698:12;:24;;39678:44;;;;;;;39623;;;;;;39678;;;;;39444:9;39409:14;39733;:17;:44;;39808:12;:24;;;39788:44;;;;;;;;;39733;;;;;39788;;;;39360:482::o;2962:87::-;2794:42;3012:12;;;3032:6;3012:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1032:346;1118:7;1220:12;1213:5;1205:28;;;;;;;;;;;;;:::i;:::-;;1244:9;1260:1;1256;:5;;;;;;;1032:346;-1:-1:-1;;;;;1032:346:0:o;38616:613::-;38707:5;;:25;;;;;38685:14;;38707:5;;;:15;;:25;;38723:8;;38707:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;38821:248:0;;;;;;;;;;;;;;;;;;38740:65;38821:248;;;;;;;;;;39038:15;38821:248;;;;39079:5;;:31;;;;;38677:55;;-1:-1:-1;38821:248:0;-1:-1:-1;39079:5:0;;;-1:-1:-1;39079:23:0;;-1:-1:-1;39079:31:0;;-1:-1:-1;38821:248:0;;-1:-1:-1;;39079:31:0;;;;;-1:-1:-1;39079:31:0;;-1:-1:-1;;39079:31:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39121:37;39134:8;39152:4;39121:11;:37::i;:::-;39193:4;;39186:37;;;;;39169:55;;39193:4;;;39186:22;;:37;;39217:4;;39186:37;;;:::i;14:142:1:-;95:13;;117:33;95:13;117:33;:::i;161:404::-;;;294:3;287:4;279:6;275:17;271:27;261:2;;319:8;309;302:26;261:2;-1:-1:-1;349:20:1;;392:18;381:30;;378:2;;;431:8;421;414:26;378:2;475:4;467:6;463:17;451:29;;538:3;531:4;523;515:6;511:17;503:6;499:30;495:41;492:50;489:2;;;555:1;552;545:12;489:2;251:314;;;;;:::o;570:138::-;649:13;;671:31;649:13;671:31;:::i;713:194::-;794:13;;847:34;836:46;;826:57;;816:2;;897:1;894;887:12;912:165;992:13;;1045:6;1034:18;;1024:29;;1014:2;;1067:1;1064;1057:12;1082:167;1162:13;;1215:8;1204:20;;1194:31;;1184:2;;1239:1;1236;1229:12;1254:259;;1366:2;1354:9;1345:7;1341:23;1337:32;1334:2;;;1387:6;1379;1372:22;1334:2;1431:9;1418:23;1450:33;1477:5;1450:33;:::i;1790:402::-;;;1919:2;1907:9;1898:7;1894:23;1890:32;1887:2;;;1940:6;1932;1925:22;1887:2;1984:9;1971:23;2003:33;2030:5;2003:33;:::i;:::-;2055:5;-1:-1:-1;2112:2:1;2097:18;;2084:32;2125:35;2084:32;2125:35;:::i;:::-;2179:7;2169:17;;;1877:315;;;;;:::o;2197:470::-;;;;2343:2;2331:9;2322:7;2318:23;2314:32;2311:2;;;2364:6;2356;2349:22;2311:2;2408:9;2395:23;2427:33;2454:5;2427:33;:::i;:::-;2479:5;-1:-1:-1;2536:2:1;2521:18;;2508:32;2549:35;2508:32;2549:35;:::i;:::-;2301:366;;2603:7;;-1:-1:-1;;;2657:2:1;2642:18;;;;2629:32;;2301:366::o;2672:990::-;;;;;;2854:3;2842:9;2833:7;2829:23;2825:33;2822:2;;;2876:6;2868;2861:22;2822:2;2920:9;2907:23;2939:33;2966:5;2939:33;:::i;:::-;2991:5;-1:-1:-1;3048:2:1;3033:18;;3020:32;3061:35;3020:32;3061:35;:::i;:::-;3115:7;-1:-1:-1;3169:2:1;3154:18;;3141:32;;-1:-1:-1;3224:2:1;3209:18;;3196:32;3247:18;3277:14;;;3274:2;;;3309:6;3301;3294:22;3274:2;3352:6;3341:9;3337:22;3327:32;;3397:7;3390:4;3386:2;3382:13;3378:27;3368:2;;3424:6;3416;3409:22;3368:2;3469;3456:16;3495:2;3487:6;3484:14;3481:2;;;3516:6;3508;3501:22;3481:2;3566:7;3561:2;3552:6;3548:2;3544:15;3540:24;3537:37;3534:2;;;3592:6;3584;3577:22;3534:2;2812:850;;;;-1:-1:-1;2812:850:1;;-1:-1:-1;3628:2:1;3620:11;;3650:6;2812:850;-1:-1:-1;;;2812:850:1:o;3667:396::-;;;3793:2;3781:9;3772:7;3768:23;3764:32;3761:2;;;3814:6;3806;3799:22;3761:2;3858:9;3845:23;3877:33;3904:5;3877:33;:::i;:::-;3929:5;-1:-1:-1;3986:2:1;3971:18;;3958:32;3999;3958;3999;:::i;4068:327::-;;;4197:2;4185:9;4176:7;4172:23;4168:32;4165:2;;;4218:6;4210;4203:22;4165:2;4262:9;4249:23;4281:33;4308:5;4281:33;:::i;:::-;4333:5;4385:2;4370:18;;;;4357:32;;-1:-1:-1;;;4155:240:1:o;4400:463::-;;;4547:2;4535:9;4526:7;4522:23;4518:32;4515:2;;;4568:6;4560;4553:22;4515:2;4613:9;4600:23;4646:18;4638:6;4635:30;4632:2;;;4683:6;4675;4668:22;4632:2;4727:76;4795:7;4786:6;4775:9;4771:22;4727:76;:::i;:::-;4822:8;;4701:102;;-1:-1:-1;4505:358:1;-1:-1:-1;;;;4505:358:1:o;4868:531::-;;;;5032:2;5020:9;5011:7;5007:23;5003:32;5000:2;;;5053:6;5045;5038:22;5000:2;5098:9;5085:23;5131:18;5123:6;5120:30;5117:2;;;5168:6;5160;5153:22;5117:2;5212:76;5280:7;5271:6;5260:9;5256:22;5212:76;:::i;:::-;5307:8;;5186:102;;-1:-1:-1;5389:2:1;5374:18;;;;5361:32;;4990:409;-1:-1:-1;;;;4990:409:1:o;5404:253::-;;5513:2;5501:9;5492:7;5488:23;5484:32;5481:2;;;5534:6;5526;5519:22;5481:2;5578:9;5565:23;5597:30;5621:5;5597:30;:::i;5662:257::-;;5782:2;5770:9;5761:7;5757:23;5753:32;5750:2;;;5803:6;5795;5788:22;5750:2;5840:9;5834:16;5859:30;5883:5;5859:30;:::i;6550:255::-;;6660:2;6648:9;6639:7;6635:23;6631:32;6628:2;;;6681:6;6673;6666:22;6628:2;6725:9;6712:23;6744:31;6769:5;6744:31;:::i;6810:259::-;;6931:2;6919:9;6910:7;6906:23;6902:32;6899:2;;;6952:6;6944;6937:22;6899:2;6989:9;6983:16;7008:31;7033:5;7008:31;:::i;7074:1233::-;;;;;;;;;7289:3;7277:9;7268:7;7264:23;7260:33;7257:2;;;7311:6;7303;7296:22;7257:2;7355:9;7342:23;7374:31;7399:5;7374:31;:::i;:::-;7424:5;-1:-1:-1;7481:2:1;7466:18;;7453:32;7494:33;7453:32;7494:33;:::i;:::-;7546:7;-1:-1:-1;7605:2:1;7590:18;;7577:32;7618:33;7577:32;7618:33;:::i;:::-;7670:7;-1:-1:-1;7729:2:1;7714:18;;7701:32;7742:33;7701:32;7742:33;:::i;:::-;7794:7;-1:-1:-1;7853:3:1;7838:19;;7825:33;7867;7825;7867;:::i;:::-;7919:7;-1:-1:-1;7978:3:1;7963:19;;7950:33;7992;7950;7992;:::i;:::-;8044:7;-1:-1:-1;8103:3:1;8088:19;;8075:33;8117;8075;8117;:::i;:::-;8169:7;-1:-1:-1;8228:3:1;8213:19;;8200:33;8242;8200;8242;:::i;:::-;8294:7;8284:17;;;7247:1060;;;;;;;;;;;:::o;8312:189::-;;8423:2;8411:9;8402:7;8398:23;8394:32;8391:2;;;8444:6;8436;8429:22;8391:2;-1:-1:-1;8472:23:1;;8381:120;-1:-1:-1;8381:120:1:o;8506:952::-;;;;;;;;8721:3;8709:9;8700:7;8696:23;8692:33;8689:2;;;8743:6;8735;8728:22;8689:2;8780:9;8774:16;8799:33;8826:5;8799:33;:::i;:::-;8901:2;8886:18;;8880:25;8851:5;;-1:-1:-1;8914:33:1;8880:25;8914:33;:::i;:::-;8966:7;-1:-1:-1;8992:50:1;9038:2;9023:18;;8992:50;:::i;:::-;8982:60;;9061:50;9107:2;9096:9;9092:18;9061:50;:::i;:::-;9051:60;;9130:51;9176:3;9165:9;9161:19;9130:51;:::i;:::-;9120:61;;9226:3;9215:9;9211:19;9205:26;9275:4;9266:7;9262:18;9253:7;9250:31;9240:2;;9300:6;9292;9285:22;9240:2;9380:3;9365:19;;9359:26;9328:7;;-1:-1:-1;9394:32:1;9359:26;9394:32;:::i;:::-;9445:7;9435:17;;;8679:779;;;;;;;;;;:::o;9658:194::-;;9781:2;9769:9;9760:7;9756:23;9752:32;9749:2;;;9802:6;9794;9787:22;9749:2;-1:-1:-1;9830:16:1;;9739:113;-1:-1:-1;9739:113:1:o;9857:404::-;;;;;10031:3;10019:9;10010:7;10006:23;10002:33;9999:2;;;10053:6;10045;10038:22;9999:2;10087:9;10081:16;10071:26;;10116:51;10163:2;10152:9;10148:18;10116:51;:::i;:::-;10207:2;10192:18;;10186:25;10251:2;10236:18;;;10230:25;9989:272;;10106:61;;-1:-1:-1;9989:272:1;-1:-1:-1;;;9989:272:1:o;10266:255::-;;;10406:2;10394:9;10385:7;10381:23;10377:32;10374:2;;;10427:6;10419;10412:22;10374:2;-1:-1:-1;;10455:16:1;;10511:2;10496:18;;;10490:25;10455:16;;10490:25;;-1:-1:-1;10364:157:1:o;10526:326::-;;;;10672:2;10660:9;10651:7;10647:23;10643:32;10640:2;;;10693:6;10685;10678:22;10640:2;-1:-1:-1;;10721:23:1;;;10791:2;10776:18;;10763:32;;-1:-1:-1;10842:2:1;10827:18;;;10814:32;;10630:222;-1:-1:-1;10630:222:1:o;10857:1224::-;;;;;;;;;;;;;11163:3;11151:9;11142:7;11138:23;11134:33;11131:2;;;11185:6;11177;11170:22;11131:2;11222:9;11216:16;11272:26;11265:5;11261:38;11254:5;11251:49;11241:2;;11319:6;11311;11304:22;11241:2;11347:5;-1:-1:-1;11371:51:1;11418:2;11403:18;;11371:51;:::i;:::-;11361:61;;11441:51;11488:2;11477:9;11473:18;11441:51;:::i;:::-;11431:61;;11511:51;11558:2;11547:9;11543:18;11511:51;:::i;:::-;11501:61;;11581:51;11627:3;11616:9;11612:19;11581:51;:::i;:::-;11571:61;;11651:50;11696:3;11685:9;11681:19;11651:50;:::i;:::-;11641:60;;11720:50;11765:3;11754:9;11750:19;11720:50;:::i;:::-;11710:60;;11789:52;11836:3;11825:9;11821:19;11789:52;:::i;:::-;11779:62;;11881:3;11870:9;11866:19;11860:26;11850:36;;11926:3;11915:9;11911:19;11905:26;11895:36;;11951:52;11998:3;11987:9;11983:19;11951:52;:::i;:::-;11940:63;;12023:52;12070:3;12059:9;12055:19;12023:52;:::i;:::-;12012:63;;11121:960;;;;;;;;;;;;;;:::o;12086:129::-;12165:42;12154:54;12142:67;;12132:83::o;12220:93::-;12297:1;12286:20;12274:33;;12264:49::o;12318:94::-;12396:8;12385:20;12373:33;;12363:49::o;12417:226::-;12593:42;12581:55;;;;12563:74;;12551:2;12536:18;;12518:125::o;12887:305::-;13099:42;13087:55;;;;13069:74;;13174:2;13159:18;;13152:34;13057:2;13042:18;;13024:168::o;13197:411::-;13407:42;13476:15;;;13458:34;;13528:15;;;;13523:2;13508:18;;13501:43;13592:8;13580:21;;;13575:2;13560:18;;13553:49;13385:2;13370:18;;13352:256::o;13915:187::-;14080:14;;14073:22;14055:41;;14043:2;14028:18;;14010:92::o;14107:248::-;14281:66;14269:79;;;;14251:98;;14239:2;14224:18;;14206:149::o;14611:188::-;14782:1;14771:21;;;;14753:40;;14741:2;14726:18;;14708:91::o;14804:662::-;;14945:2;14974;14963:9;14956:21;15006:6;15000:13;15049:6;15044:2;15033:9;15029:18;15022:34;15074:4;15087:140;15101:6;15098:1;15095:13;15087:140;;;15196:14;;;15192:23;;15186:30;15162:17;;;15181:2;15158:26;15151:66;15116:10;;15087:140;;;15245:6;15242:1;15239:13;15236:2;;;15315:4;15310:2;15301:6;15290:9;15286:22;15282:31;15275:45;15236:2;-1:-1:-1;15382:2:1;15370:15;15387:66;15366:88;15351:104;;;;15457:2;15347:113;;14925:541;-1:-1:-1;;;14925:541:1:o;15471:341::-;15673:2;15655:21;;;15712:2;15692:18;;;15685:30;15751:19;15746:2;15731:18;;15724:47;15803:2;15788:18;;15645:167::o;15817:351::-;16019:2;16001:21;;;16058:2;16038:18;;;16031:30;16097:29;16092:2;16077:18;;16070:57;16159:2;16144:18;;15991:177::o;16173:397::-;16375:2;16357:21;;;16414:2;16394:18;;;16387:30;16453:34;16448:2;16433:18;;16426:62;16524:3;16519:2;16504:18;;16497:31;16560:3;16545:19;;16347:223::o;16575:329::-;16777:2;16759:21;;;16816:1;16796:18;;;16789:29;16854:8;16849:2;16834:18;;16827:36;16895:2;16880:18;;16749:155::o;16909:335::-;17111:2;17093:21;;;17150:2;17130:18;;;17123:30;17189:13;17184:2;17169:18;;17162:41;17235:2;17220:18;;17083:161::o;17249:597::-;17476:13;;17458:32;;17550:4;17538:17;;;17532:24;17558:42;17528:73;17506:20;;;17499:103;17649:4;17637:17;;;17631:24;17674:34;17746:21;;;17724:20;;;17717:51;;;;17828:4;17816:17;;;17810:24;17806:33;17784:20;;;17777:63;;;;17445:3;17430:19;;17412:434::o;17851:560::-;;18067:3;18056:9;18052:19;18044:27;;18104:6;18098:13;18087:9;18080:32;18180:34;18172:4;18164:6;18160:17;18154:24;18150:65;18143:4;18132:9;18128:20;18121:95;18272:4;18264:6;18260:17;18254:24;18247:4;18236:9;18232:20;18225:54;18335:4;18327:6;18323:17;18317:24;18310:4;18299:9;18295:20;18288:54;18398:4;18390:6;18386:17;18380:24;18373:4;18362:9;18358:20;18351:54;18034:377;;;;:::o;18416:818::-;;18630:3;18619:9;18615:19;18607:27;;18653:42;18741:2;18732:6;18726:13;18722:22;18711:9;18704:41;18813:2;18805:4;18797:6;18793:17;18787:24;18783:33;18776:4;18765:9;18761:20;18754:63;18885:8;18877:4;18869:6;18865:17;18859:24;18855:39;18848:4;18837:9;18833:20;18826:69;18963:2;18955:4;18947:6;18943:17;18937:24;18933:33;18926:4;18915:9;18911:20;18904:63;19023:4;19015:6;19011:17;19005:24;18998:4;18987:9;18983:20;18976:54;19086:4;19078:6;19074:17;19068:24;19061:4;19050:9;19046:20;19039:54;19149:4;19141:6;19137:17;19131:24;19124:4;19113:9;19109:20;19102:54;19224:2;19216:4;19208:6;19204:17;19198:24;19194:33;19187:4;19176:9;19172:20;19165:63;;18597:637;;;;:::o;19239:1232::-;;19427:3;19416:9;19412:19;19404:27;;19440:46;19476:9;19467:6;19461:13;19440:46;:::i;:::-;19533:4;19525:6;19521:17;19515:24;19548:56;19598:4;19587:9;19583:20;19569:12;19548:56;:::i;:::-;;19653:4;19645:6;19641:17;19635:24;19668:57;19719:4;19708:9;19704:20;19688:14;19668:57;:::i;:::-;;19774:4;19766:6;19762:17;19756:24;19789:56;19839:4;19828:9;19824:20;19808:14;19789:56;:::i;:::-;;19894:4;19886:6;19882:17;19876:24;19909:56;19959:4;19948:9;19944:20;19928:14;19909:56;:::i;:::-;;20021:4;20013:6;20009:17;20003:24;19996:4;19985:9;19981:20;19974:54;20084:4;20076:6;20072:17;20066:24;20059:4;20048:9;20044:20;20037:54;20147:4;20139:6;20135:17;20129:24;20122:4;20111:9;20107:20;20100:54;20173:6;20233:2;20225:6;20221:15;20215:22;20210:2;20199:9;20195:18;20188:50;;20257:6;20312:2;20304:6;20300:15;20294:22;20325:56;20377:2;20366:9;20362:18;20346:14;20325:56;:::i;:::-;-1:-1:-1;;20400:6:1;20448:15;;;20442:22;20422:18;;;;20415:50;19394:1077;:::o;20476:730::-;20801:42;20789:55;;;;20771:74;;20892:1;20881:21;;;;20876:2;20861:18;;20854:49;20922:6;20964:15;;;20959:2;20944:18;;20937:43;21016:15;;;21011:2;20996:18;;20989:43;21069:15;;;21063:3;21048:19;;21041:44;21134:4;21122:17;21116:3;21101:19;;21094:46;21184:14;21177:22;21171:3;21156:19;;21149:51;20758:3;20743:19;;20725:481::o;21211:190::-;21385:8;21373:21;;;;21355:40;;21343:2;21328:18;;21310:91::o;21406:177::-;21552:25;;;21540:2;21525:18;;21507:76::o;21588:341::-;21782:25;;;21854:1;21843:21;;;21838:2;21823:18;;21816:49;21901:21;;21896:2;21881:18;;21874:49;21770:2;21755:18;;21737:192::o;21934:184::-;22106:4;22094:17;;;;22076:36;;22064:2;22049:18;;22031:87::o;22123:156::-;22211:42;22204:5;22200:54;22193:5;22190:65;22180:2;;22269:1;22266;22259:12;22284:120;22372:5;22365:13;22358:21;22351:5;22348:32;22338:2;;22394:1;22391;22384:12;22409:120;22498:5;22495:1;22484:20;22477:5;22474:31;22464:2;;22519:1;22516;22509:12

Swarm Source

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