ETH Price: $3,053.20 (+2.39%)
Gas: 1 Gwei

SpaceAliensNFT (SANFT)
 

Overview

TokenID

1353

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

SpaceAliens is an exclusive generative NFT collection in the SpaceBoys metaverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SpaceAliens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-14
*/

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
//Developed by blockchainguy.net
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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 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 IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}
contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}
contract Migrations {
  address public owner;
  uint public last_completed_migration;

  constructor() {
    owner = msg.sender;
  }

  modifier restricted() {
    if (msg.sender == owner) _;
  }

  function setCompleted(uint completed) public restricted {
    last_completed_migration = completed;
  }

  function upgrade(address new_address) public restricted {
    Migrations upgraded = Migrations(new_address);
    upgraded.setCompleted(last_completed_migration);
  }
}
contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string public constant ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH =
        keccak256(
            bytes(
                "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
            )
        );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(string memory name) internal initializer {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}
contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

interface ISpaceBoy {
    function balanceOf(address owner) external view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 tokenIndex) external view returns (uint256);
}


contract SpaceAliens is
    ContextMixin,
    ERC721Enumerable,
    NativeMetaTransaction,
    Ownable
{
    using SafeMath for uint256;

    uint256 public special = 4;

    bool public reveal_special_1 = false;
    bool public reveal_special_2 = false;
    bool public reveal_special_3 = false;
    bool public reveal_special_4 = false;
    bool public reveal_all = false;

    uint256 public _currentGroup1TokenId = special;
    uint256 public _currentGroup2TokenId = 1000;

    uint256 MAX_SUPPLY =  3000;
    uint256 Group1_MAX_SUPPLY =  1000;
    
    string public baseTokenURI = "https://gateway.pinata.cloud/ipfs/QmTA1TvKGRGfeYKYWM87Bs2CrBauNmXkNm11Hk2di1rew8/";
    string public waiting_special_url = "https://gateway.pinata.cloud/ipfs/QmeeVrEW44rvVhhzUTJkPEv95h5sMArYRm59qxP4yxSEQA";
    string public waiting_url = "https://gateway.pinata.cloud/ipfs/QmS6wFpvTh8mMV6tmatjssz5ysp7rqCJ52ahxdmrzWENS6";
   
    uint256 public Startdate = 1634174383; // Oct 15, 16:00:00 UTC - 1634313600
    uint256 public Enddate = 1634197253; // Oct 16, 16:00:00 UTC - 1634400000

    string _name = "SpaceAliensNFT";
    string _symbol = "SANFT";
    
    address SB_address = 0x672C1f1C978b8FD1E9AE18e25D0E55176824989c; // mainnet SB address 
    ISpaceBoy SpaceBoyContract = ISpaceBoy(SB_address);
    
    address[] public whitelistedAddresses;
    mapping(uint256 => uint256) public SB_claimed_token_list;

    constructor() ERC721(_name, _symbol) {
        _initializeEIP712(_name);
        mintSpecial(_msgSender());
    }

    function set_reveal_special_1(bool result) external onlyOwner{
        reveal_special_1 = result;
    }
    function set_reveal_special_2(bool result) external onlyOwner{
        reveal_special_2 = result;
    }
    function set_reveal_special_3(bool result) external onlyOwner{
        reveal_special_3 = result;
    }
    function set_reveal_special_4(bool result) external onlyOwner{
        reveal_special_4 = result;
    }
    function set_reveal_all(bool result) external onlyOwner{
        reveal_all = result;
    }
    
    function _checkSBTokenClaim(uint256 SB_balance) private view returns (uint256[] memory) {
        uint256[] memory SB_unclaim_token_list = new uint[](SB_balance);
        uint256 SB_unclaim_token_index = 0;
        uint256 SB_claimed_token_count = 0;
        
        
        for (uint i = 0; i < SB_balance; i++) {
          uint256 SB_tokenID = SpaceBoyContract.tokenOfOwnerByIndex(_msgSender(), i);
          if (SB_tokenID > 0 && SB_claimed_token_list[SB_tokenID] == 0) { // never claim before
              SB_unclaim_token_list[SB_unclaim_token_index] = SB_tokenID;
              SB_unclaim_token_index++;
          } else {
              SB_claimed_token_count ++;
          }
        }
        
        if(SB_claimed_token_count > 0) {
            return SB_unclaim_token_list = new uint[](0);
        } else {
            return SB_unclaim_token_list;
        }
    }
    
    function _setSBTokenClaim(uint256[] memory SB_unclaimed_token_list) private {
        for (uint i = 0; i < SB_unclaimed_token_list.length; i++) {
            SB_claimed_token_list[SB_unclaimed_token_list[i]] = 1;  
        }
    }
    
    function mintGroup1() public {
        require(block.timestamp > Startdate, "The claim have not started yet.");
        require(block.timestamp < Enddate, "The claim have Ended.");
        require(_currentGroup1TokenId + 1 < Group1_MAX_SUPPLY, "Max Supply Reached");
        require(balanceOf(_msgSender()) == 0, "You have already Claimed Nft.");
        
        //only owner of >= 7 spaceboys
        uint256 SB_balance = SpaceBoyContract.balanceOf(_msgSender());
        uint256 [] memory SB_unclaimed_token_list = _checkSBTokenClaim(SB_balance);
        require(SB_unclaimed_token_list.length >= 7, 'only owners of 7 or more spaceboys could mint!');
        
        _setSBTokenClaim(SB_unclaimed_token_list);
        _mint(_msgSender(), _getNextGroup1TokenId());
        _incrementGroup1TokenId();
    }
    
    function mintGroup2() external {
        require(block.timestamp > Startdate, "The claim have not started yet.");
        require(block.timestamp < Enddate, "The claim have Ended.");
        require(_currentGroup2TokenId + 1 < MAX_SUPPLY, "Max Supply Reached");
        require(balanceOf(_msgSender()) == 0, "You have already Claimed Nft.");
        
        //only owner of 3-6 spaceboys
        uint256 SB_balance = SpaceBoyContract.balanceOf(_msgSender());
        uint256 [] memory SB_unclaimed_token_list = _checkSBTokenClaim(SB_balance);
        require(SB_unclaimed_token_list.length >= 3, 'only owners of 3 - 6 spaceboys could mint!');
        require(SB_unclaimed_token_list.length < 7, 'only owners of 3 - 6 spaceboys could mint!');
        
        _setSBTokenClaim(SB_unclaimed_token_list);
        _mint(_msgSender(), _getNextGroup2TokenId());
        _incrementGroup2TokenId();
    }
    
    function mintGroup3() external {
        require(block.timestamp > Startdate, "The claim have not started yet.");
        require(block.timestamp < Enddate, "The claim have Ended.");
        require(_currentGroup2TokenId + 1 < MAX_SUPPLY, "Max Supply Reached");
        require(isWhitelisted(_msgSender()) , "You are not in this group.");
        require(balanceOf(_msgSender()) == 0, "You have already Claimed Nft.");

        _mint(_msgSender(), _getNextGroup2TokenId());
        _incrementGroup2TokenId();
    }
    
    ////////
    
    //Owner Mint Functions
    function mintSpecial(address _to) public onlyOwner {
        for(uint256 i=0; i<special; i++){
            _mint(_to, i+1);
        }
    }
    
    function mintManyGroup1(uint256 num, address _to) public onlyOwner {
        require(_currentGroup1TokenId + num < Group1_MAX_SUPPLY, "Max Supply Reached");
        require(num <= 20, "Max 20 Allowed.");
        
        for(uint256 i=0; i<num; i++){
            _mint(_to, _getNextGroup1TokenId());
            _incrementGroup1TokenId();
        }
    }
    
    function mintManyGroup2(uint256 num, address _to) public onlyOwner {
        require(_currentGroup2TokenId + num < MAX_SUPPLY, "Max Supply Reached");
        require(num <= 20, "Max 20 Allowed.");
        
        for(uint256 i=0; i<num; i++){
            _mint(_to, _getNextGroup2TokenId());
            _incrementGroup2TokenId();
        }
    }
    
    
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
  
  
  function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function _getNextGroup1TokenId() private view returns (uint256) {
        return _currentGroup1TokenId.add(1);
    }


    function _incrementGroup1TokenId() private {
        require(_currentGroup1TokenId < Group1_MAX_SUPPLY);

        _currentGroup1TokenId++;
    }
    
    function _getNextGroup2TokenId() private view returns (uint256) {
        return _currentGroup2TokenId.add(1);
    }

    function _incrementGroup2TokenId() private {
        require(_currentGroup2TokenId < MAX_SUPPLY);

        _currentGroup2TokenId++;
    }

    function setBaseUri(string memory _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function set_dates(uint256 start, uint256 end) external onlyOwner{
        Startdate = start;
        Enddate = end;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        if (_tokenId == 1 && reveal_special_1 == false) {
            return waiting_special_url;
        }
        else if(_tokenId == 2 && reveal_special_2 == false) {
            return waiting_special_url;
        }
        else if(_tokenId == 3 && reveal_special_3 == false) {
            return waiting_special_url;
        }
        else if(_tokenId == 4 && reveal_special_4 == false) {
            return waiting_special_url;
        }
        else if(reveal_all == false) {
            return waiting_url;
        }
        
        return string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId), ".json"));
    }

    function _msgSender() internal view override returns (address sender) {
        return ContextMixin.msgSender();
    }
    function increaseMaxSupply(uint256 temp) external onlyOwner {
        MAX_SUPPLY = MAX_SUPPLY + temp;
    }
  
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Enddate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"SB_claimed_token_list","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Startdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_currentGroup1TokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_currentGroup2TokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"temp","type":"uint256"}],"name":"increaseMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintGroup1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintGroup2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintGroup3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintManyGroup1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintManyGroup2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintSpecial","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal_all","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal_special_1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal_special_2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal_special_3","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal_special_4","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"set_dates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"result","type":"bool"}],"name":"set_reveal_all","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"result","type":"bool"}],"name":"set_reveal_special_1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"result","type":"bool"}],"name":"set_reveal_special_2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"result","type":"bool"}],"name":"set_reveal_special_3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"result","type":"bool"}],"name":"set_reveal_special_4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"special","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"waiting_special_url","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"waiting_url","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a805460ff191690556004600e819055600f805464ffffffffff191690556010556103e86011819055610bb860125560135561010060405260516080818152906200469860a03980516200005d9160149160209091019062000aaa565b50604051806080016040528060508152602001620045a96050913980516200008e9160159160209091019062000aaa565b5060405180608001604052806050815260200162004648605091398051620000bf9160169160209091019062000aaa565b5063616785af601755636167df0560185560408051808201909152600e8082526d14dc1858d9505b1a595b9cd3919560921b6020909201918252620001079160199162000aaa565b506040805180820190915260058082526414d053919560da1b60209092019182526200013691601a9162000aaa565b50601b805473672c1f1c978b8fd1e9ae18e25d0e55176824989c6001600160a01b03199182168117909255601c805490911690911790553480156200017a57600080fd5b50601980546200018a9062000b85565b80601f0160208091040260200160405190810160405280929190818152602001828054620001b89062000b85565b8015620002095780601f10620001dd5761010080835404028352916020019162000209565b820191906000526020600020905b815481529060010190602001808311620001eb57829003601f168201915b5050505050601a80546200021d9062000b85565b80601f01602080910402602001604051908101604052809291908181526020018280546200024b9062000b85565b80156200029c5780601f1062000270576101008083540402835291602001916200029c565b820191906000526020600020905b8154815290600101906020018083116200027e57829003601f168201915b50508451620002b693506000925060208601915062000aaa565b508051620002cc90600190602084019062000aaa565b505050620002e9620002e3620003a160201b60201c565b620003bd565b6200038760198054620002fc9062000b85565b80601f01602080910402602001604051908101604052809291908181526020018280546200032a9062000b85565b80156200037b5780601f106200034f576101008083540402835291602001916200037b565b820191906000526020600020905b8154815290600101906020018083116200035d57829003601f168201915b50506200040f92505050565b6200039b62000395620003a1565b62000474565b62000c22565b6000620003b86200053160201b620020dc1760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620004595760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b60448201526064015b60405180910390fd5b620004648162000590565b50600a805460ff19166001179055565b6200047e620003a1565b6001600160a01b03166200049a600d546001600160a01b031690565b6001600160a01b031614620004f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000450565b60005b600e548110156200052d5762000518826200051283600162000b50565b62000632565b80620005248162000bc2565b915050620004f5565b5050565b6000333014156200058a57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200058d9050565b50335b90565b6040518060800160405280604f8152602001620045f9604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b6001600160a01b0382166200068a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000450565b6000818152600260205260409020546001600160a01b031615620006f15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000450565b620006ff6000838362000788565b6001600160a01b03821660009081526003602052604081208054600192906200072a90849062000b50565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b620007a08383836200083e60201b62000d661760201c565b6001600160a01b038316620007fe57620007f881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000824565b816001600160a01b0316836001600160a01b031614620008245762000824838262000869565b6001600160a01b03821662000843576200083e8162000916565b505050565b826001600160a01b0316826001600160a01b0316146200083e576200083e8282620009d0565b60006001620008838462000a2160201b6200170a1760201c565b6200088f919062000b6b565b600083815260076020526040902054909150808214620008e3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906200092a9060019062000b6b565b6000838152600960205260408120546008805493945090928490811062000955576200095562000c0c565b90600052602060002001549050806008838154811062000979576200097962000c0c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480620009b457620009b462000bf6565b6001900381819060005260206000200160009055905550505050565b6000620009e88362000a2160201b6200170a1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000a8e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840162000450565b506001600160a01b031660009081526003602052604090205490565b82805462000ab89062000b85565b90600052602060002090601f01602090048101928262000adc576000855562000b27565b82601f1062000af757805160ff191683800117855562000b27565b8280016001018555821562000b27579182015b8281111562000b2757825182559160200191906001019062000b0a565b5062000b3592915062000b39565b5090565b5b8082111562000b35576000815560010162000b3a565b6000821982111562000b665762000b6662000be0565b500190565b60008282101562000b805762000b8062000be0565b500390565b600181811c9082168062000b9a57607f821691505b6020821081141562000bbc57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000bd95762000bd962000be0565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6139778062000c326000396000f3fe60806040526004361061036a5760003560e01c80638a5c50ae116101c6578063ba4e5c49116100f7578063e985e9c511610095578063ee8e00c41161006f578063ee8e00c4146109c3578063f2fde38b146109e2578063f4fe167b14610a02578063fa7b71ac14610a2257600080fd5b8063e985e9c51461092d578063edec5f2714610976578063ee014b311461099657600080fd5b8063ce9a3b0f116100d1578063ce9a3b0f146108c0578063d547cfb7146108d6578063de5c58a5146108eb578063e878cd471461090b57600080fd5b8063ba4e5c4914610860578063c446788d14610880578063c87b56dd146108a057600080fd5b80639d3b6a9d11610164578063b475c0d71161013e578063b475c0d7146107f5578063b74ee59514610815578063b88d4fde1461082a578063b9cd1f801461084a57600080fd5b80639d3b6a9d1461079f578063a0bcfc7f146107b5578063a22cb465146107d557600080fd5b80639110796e116101a05780639110796e1461073b57806395d89b4114610750578063974941371461076557806399b74de11461078557600080fd5b80638a5c50ae146106e85780638da5cb5b146106fd57806390edbfee1461071b57600080fd5b80632d0335ab116102a057806353a691dd1161023e5780636352211e116102185780636352211e1461067357806363fe5cca1461069357806370a08231146106b3578063715018a6146106d357600080fd5b806353a691dd146106295780635749f8f414610649578063577e46b91461065e57600080fd5b80633af32abf1161027a5780633af32abf146105b45780633ccfd60b146105d457806342842e0e146105e95780634f6ccce71461060957600080fd5b80632d0335ab1461054b5780632f745c59146105815780633408e470146105a157600080fd5b80630f7e59701161030d5780631ff8393a116102e75780631ff8393a146104e057806320379ee51461050057806323b872dd1461051557806327ca003b1461053557600080fd5b80630f7e597014610473578063171f1851146104a057806318160ddd146104c157600080fd5b806307fe357f1161034957806307fe357f146103e8578063081812fc14610408578063095ea7b3146104405780630c53c51c1461046057600080fd5b80625442ce1461036f57806301ffc9a71461039157806306fdde03146103c6575b600080fd5b34801561037b57600080fd5b5061038f61038a3660046132cf565b610a38565b005b34801561039d57600080fd5b506103b16103ac3660046132ea565b610a9d565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103db610ac8565b6040516103bd91906135a3565b3480156103f457600080fd5b5061038f6104033660046133c2565b610b5a565b34801561041457600080fd5b5061042861042336600461336d565b610bae565b6040516001600160a01b0390911681526020016103bd565b34801561044c57600080fd5b5061038f61045b366004613230565b610c43565b6103db61046e3660046131b4565b610d6b565b34801561047f57600080fd5b506103db604051806040016040528060018152602001603160f81b81525081565b3480156104ac57600080fd5b50600f546103b1906301000000900460ff1681565b3480156104cd57600080fd5b506008545b6040519081526020016103bd565b3480156104ec57600080fd5b50600f546103b19062010000900460ff1681565b34801561050c57600080fd5b50600b546104d2565b34801561052157600080fd5b5061038f6105303660046130e6565b610f55565b34801561054157600080fd5b506104d260185481565b34801561055757600080fd5b506104d2610566366004613098565b6001600160a01b03166000908152600c602052604090205490565b34801561058d57600080fd5b506104d261059c366004613230565b610f8d565b3480156105ad57600080fd5b50466104d2565b3480156105c057600080fd5b506103b16105cf366004613098565b611023565b3480156105e057600080fd5b5061038f61108d565b3480156105f557600080fd5b5061038f6106043660046130e6565b611112565b34801561061557600080fd5b506104d261062436600461336d565b61112d565b34801561063557600080fd5b5061038f61064436600461339f565b6111c0565b34801561065557600080fd5b5061038f6112b0565b34801561066a57600080fd5b5061038f61147b565b34801561067f57600080fd5b5061042861068e36600461336d565b61161c565b34801561069f57600080fd5b5061038f6106ae366004613098565b611693565b3480156106bf57600080fd5b506104d26106ce366004613098565b61170a565b3480156106df57600080fd5b5061038f611791565b3480156106f457600080fd5b506103db6117e6565b34801561070957600080fd5b50600d546001600160a01b0316610428565b34801561072757600080fd5b5061038f61073636600461336d565b611874565b34801561074757600080fd5b5061038f6118d1565b34801561075c57600080fd5b506103db6119d3565b34801561077157600080fd5b5061038f6107803660046132cf565b6119e2565b34801561079157600080fd5b50600f546103b19060ff1681565b3480156107ab57600080fd5b506104d260175481565b3480156107c157600080fd5b5061038f6107d0366004613324565b611a45565b3480156107e157600080fd5b5061038f6107f036600461318a565b611aa1565b34801561080157600080fd5b5061038f6108103660046132cf565b611ba3565b34801561082157600080fd5b506103db611c0a565b34801561083657600080fd5b5061038f610845366004613122565b611c17565b34801561085657600080fd5b506104d260105481565b34801561086c57600080fd5b5061042861087b36600461336d565b611c56565b34801561088c57600080fd5b5061038f61089b36600461339f565b611c80565b3480156108ac57600080fd5b506103db6108bb36600461336d565b611d6b565b3480156108cc57600080fd5b506104d2600e5481565b3480156108e257600080fd5b506103db611ee9565b3480156108f757600080fd5b5061038f6109063660046132cf565b611ef6565b34801561091757600080fd5b50600f546103b190640100000000900460ff1681565b34801561093957600080fd5b506103b16109483660046130b3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561098257600080fd5b5061038f61099136600461325a565b611f5f565b3480156109a257600080fd5b506104d26109b136600461336d565b601e6020526000908152604090205481565b3480156109cf57600080fd5b50600f546103b190610100900460ff1681565b3480156109ee57600080fd5b5061038f6109fd366004613098565b611fc0565b348015610a0e57600080fd5b5061038f610a1d3660046132cf565b612077565b348015610a2e57600080fd5b506104d260115481565b610a40612139565b6001600160a01b0316610a5b600d546001600160a01b031690565b6001600160a01b031614610a8a5760405162461bcd60e51b8152600401610a81906136ef565b60405180910390fd5b600f805460ff1916911515919091179055565b60006001600160e01b0319821663780e9d6360e01b1480610ac25750610ac282612148565b92915050565b606060008054610ad790613810565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0390613810565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b5050505050905090565b610b62612139565b6001600160a01b0316610b7d600d546001600160a01b031690565b6001600160a01b031614610ba35760405162461bcd60e51b8152600401610a81906136ef565b601791909155601855565b6000818152600260205260408120546001600160a01b0316610c275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a81565b506000908152600460205260409020546001600160a01b031690565b6000610c4e8261161c565b9050806001600160a01b0316836001600160a01b03161415610cbc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a81565b806001600160a01b0316610cce612139565b6001600160a01b03161480610cea5750610cea81610948612139565b610d5c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a81565b610d668383612198565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610da98782878787612206565b610dff5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610a81565b6001600160a01b0387166000908152600c6020526040902054610e239060016122f6565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610e7390899033908a9061353a565b60405180910390a1600080306001600160a01b0316888a604051602001610e9b929190613448565b60408051601f1981840301815290829052610eb59161342c565b6000604051808303816000865af19150503d8060008114610ef2576040519150601f19603f3d011682016040523d82523d6000602084013e610ef7565b606091505b509150915081610f495760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610a81565b98975050505050505050565b610f66610f60612139565b82612309565b610f825760405162461bcd60e51b8152600401610a8190613724565b610d66838383612400565b6000610f988361170a565b8210610ffa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a81565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601d5481101561108457826001600160a01b0316601d828154811061104e5761104e6138bc565b6000918252602090912001546001600160a01b031614156110725750600192915050565b8061107c8161384b565b915050611027565b50600092915050565b611095612139565b6001600160a01b03166110b0600d546001600160a01b031690565b6001600160a01b0316146110d65760405162461bcd60e51b8152600401610a81906136ef565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561110f573d6000803e3d6000fd5b50565b610d6683838360405180602001604052806000815250611c17565b600061113860085490565b821061119b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a81565b600882815481106111ae576111ae6138bc565b90600052602060002001549050919050565b6111c8612139565b6001600160a01b03166111e3600d546001600160a01b031690565b6001600160a01b0316146112095760405162461bcd60e51b8152600401610a81906136ef565b6012548260115461121a91906137a1565b106112375760405162461bcd60e51b8152600401610a8190613775565b601482111561127a5760405162461bcd60e51b815260206004820152600f60248201526e26b0bc1019181020b63637bbb2b21760891b6044820152606401610a81565b60005b82811015610d6657611296826112916125ab565b6125bc565b61129e61270a565b806112a88161384b565b91505061127d565b60175442116112d15760405162461bcd60e51b8152600401610a8190613652565b60185442106112f25760405162461bcd60e51b8152600401610a81906136c0565b6013546010546113039060016137a1565b106113205760405162461bcd60e51b8152600401610a8190613775565b61132b6106ce612139565b156113485760405162461bcd60e51b8152600401610a8190613689565b601c546000906001600160a01b03166370a08231611364612139565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156113a357600080fd5b505afa1580156113b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113db9190613386565b905060006113e882612731565b90506007815110156114535760405162461bcd60e51b815260206004820152602e60248201527f6f6e6c79206f776e657273206f662037206f72206d6f7265207370616365626f60448201526d797320636f756c64206d696e742160901b6064820152608401610a81565b61145c816128be565b61146f611467612139565b61129161290f565b611477612920565b5050565b601754421161149c5760405162461bcd60e51b8152600401610a8190613652565b60185442106114bd5760405162461bcd60e51b8152600401610a81906136c0565b6012546011546114ce9060016137a1565b106114eb5760405162461bcd60e51b8152600401610a8190613775565b6114f66106ce612139565b156115135760405162461bcd60e51b8152600401610a8190613689565b601c546000906001600160a01b03166370a0823161152f612139565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b15801561156e57600080fd5b505afa158015611582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a69190613386565b905060006115b382612731565b90506003815110156115d75760405162461bcd60e51b8152600401610a8190613608565b60078151106115f85760405162461bcd60e51b8152600401610a8190613608565b611601816128be565b61161461160c612139565b6112916125ab565b61147761270a565b6000818152600260205260408120546001600160a01b031680610ac25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a81565b61169b612139565b6001600160a01b03166116b6600d546001600160a01b031690565b6001600160a01b0316146116dc5760405162461bcd60e51b8152600401610a81906136ef565b60005b600e54811015611477576116f8826112918360016137a1565b806117028161384b565b9150506116df565b60006001600160a01b0382166117755760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a81565b506001600160a01b031660009081526003602052604090205490565b611799612139565b6001600160a01b03166117b4600d546001600160a01b031690565b6001600160a01b0316146117da5760405162461bcd60e51b8152600401610a81906136ef565b6117e46000612940565b565b601680546117f390613810565b80601f016020809104026020016040519081016040528092919081815260200182805461181f90613810565b801561186c5780601f106118415761010080835404028352916020019161186c565b820191906000526020600020905b81548152906001019060200180831161184f57829003601f168201915b505050505081565b61187c612139565b6001600160a01b0316611897600d546001600160a01b031690565b6001600160a01b0316146118bd5760405162461bcd60e51b8152600401610a81906136ef565b806012546118cb91906137a1565b60125550565b60175442116118f25760405162461bcd60e51b8152600401610a8190613652565b60185442106119135760405162461bcd60e51b8152600401610a81906136c0565b6012546011546119249060016137a1565b106119415760405162461bcd60e51b8152600401610a8190613775565b61194c6105cf612139565b6119985760405162461bcd60e51b815260206004820152601a60248201527f596f7520617265206e6f7420696e20746869732067726f75702e0000000000006044820152606401610a81565b6119a36106ce612139565b156119c05760405162461bcd60e51b8152600401610a8190613689565b6119cb61160c612139565b6117e461270a565b606060018054610ad790613810565b6119ea612139565b6001600160a01b0316611a05600d546001600160a01b031690565b6001600160a01b031614611a2b5760405162461bcd60e51b8152600401610a81906136ef565b600f80549115156101000261ff0019909216919091179055565b611a4d612139565b6001600160a01b0316611a68600d546001600160a01b031690565b6001600160a01b031614611a8e5760405162461bcd60e51b8152600401610a81906136ef565b8051611477906014906020840190612ecc565b611aa9612139565b6001600160a01b0316826001600160a01b03161415611b0a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a81565b8060056000611b17612139565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611b5b612139565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b97911515815260200190565b60405180910390a35050565b611bab612139565b6001600160a01b0316611bc6600d546001600160a01b031690565b6001600160a01b031614611bec5760405162461bcd60e51b8152600401610a81906136ef565b600f805491151563010000000263ff00000019909216919091179055565b601580546117f390613810565b611c28611c22612139565b83612309565b611c445760405162461bcd60e51b8152600401610a8190613724565b611c5084848484612992565b50505050565b601d8181548110611c6657600080fd5b6000918252602090912001546001600160a01b0316905081565b611c88612139565b6001600160a01b0316611ca3600d546001600160a01b031690565b6001600160a01b031614611cc95760405162461bcd60e51b8152600401610a81906136ef565b60135482601054611cda91906137a1565b10611cf75760405162461bcd60e51b8152600401610a8190613775565b6014821115611d3a5760405162461bcd60e51b815260206004820152600f60248201526e26b0bc1019181020b63637bbb2b21760891b6044820152606401610a81565b60005b82811015610d6657611d518261129161290f565b611d59612920565b80611d638161384b565b915050611d3d565b6060816001148015611d805750600f5460ff16155b15611e175760158054611d9290613810565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbe90613810565b8015611e0b5780601f10611de057610100808354040283529160200191611e0b565b820191906000526020600020905b815481529060010190602001808311611dee57829003601f168201915b50505050509050919050565b816002148015611e2f5750600f54610100900460ff16155b15611e415760158054611d9290613810565b816003148015611e5a5750600f5462010000900460ff16155b15611e6c5760158054611d9290613810565b816004148015611e865750600f546301000000900460ff16155b15611e985760158054611d9290613810565b600f54640100000000900460ff16611eb75760168054611d9290613810565b6014611ec2836129c5565b604051602001611ed392919061347f565b6040516020818303038152906040529050919050565b601480546117f390613810565b611efe612139565b6001600160a01b0316611f19600d546001600160a01b031690565b6001600160a01b031614611f3f5760405162461bcd60e51b8152600401610a81906136ef565b600f80549115156401000000000264ff0000000019909216919091179055565b611f67612139565b6001600160a01b0316611f82600d546001600160a01b031690565b6001600160a01b031614611fa85760405162461bcd60e51b8152600401610a81906136ef565b611fb4601d6000612f50565b610d66601d8383612f6e565b611fc8612139565b6001600160a01b0316611fe3600d546001600160a01b031690565b6001600160a01b0316146120095760405162461bcd60e51b8152600401610a81906136ef565b6001600160a01b03811661206e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a81565b61110f81612940565b61207f612139565b6001600160a01b031661209a600d546001600160a01b031690565b6001600160a01b0316146120c05760405162461bcd60e51b8152600401610a81906136ef565b600f8054911515620100000262ff000019909216919091179055565b60003330141561213357600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506121369050565b50335b90565b60006121436120dc565b905090565b60006001600160e01b031982166380ac58cd60e01b148061217957506001600160e01b03198216635b5e139f60e01b145b80610ac257506301ffc9a760e01b6001600160e01b0319831614610ac2565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906121cd8261161c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661226c5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610a81565b600161227f61227a87612ac3565b612b40565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156122cd573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b600061230282846137a1565b9392505050565b6000818152600260205260408120546001600160a01b03166123825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a81565b600061238d8361161c565b9050806001600160a01b0316846001600160a01b031614806123c85750836001600160a01b03166123bd84610bae565b6001600160a01b0316145b806123f857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124138261161c565b6001600160a01b03161461247b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a81565b6001600160a01b0382166124dd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a81565b6124e8838383612b70565b6124f3600082612198565b6001600160a01b038316600090815260036020526040812080546001929061251c9084906137cd565b90915550506001600160a01b038216600090815260036020526040812080546001929061254a9084906137a1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6011546000906121439060016122f6565b6001600160a01b0382166126125760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a81565b6000818152600260205260409020546001600160a01b0316156126775760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a81565b61268360008383612b70565b6001600160a01b03821660009081526003602052604081208054600192906126ac9084906137a1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6012546011541061271a57600080fd5b6011805490600061272a8361384b565b9190505550565b606060008267ffffffffffffffff81111561274e5761274e6138d2565b604051908082528060200260200182016040528015612777578160200160208202803683370190505b50905060008060005b8581101561289657601c546000906001600160a01b0316632f745c596127a4612139565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024810185905260440160206040518083038186803b1580156127ea57600080fd5b505afa1580156127fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128229190613386565b905060008111801561284057506000818152601e6020526040902054155b156128755780858581518110612858576128586138bc565b60209081029190910101528361286d8161384b565b945050612883565b8261287f8161384b565b9350505b508061288e8161384b565b915050612780565b5080156128b55750506040805160008152602081019091529392505050565b50909392505050565b60005b8151811015611477576001601e60008484815181106128e2576128e26138bc565b602002602001015181526020019081526020016000208190555080806129079061384b565b9150506128c1565b6010546000906121439060016122f6565b6013546010541061293057600080fd5b6010805490600061272a8361384b565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61299d848484612400565b6129a984848484612c28565b611c505760405162461bcd60e51b8152600401610a81906135b6565b6060816129e95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a1357806129fd8161384b565b9150612a0c9050600a836137b9565b91506129ed565b60008167ffffffffffffffff811115612a2e57612a2e6138d2565b6040519080825280601f01601f191660200182016040528015612a58576020820181803683370190505b5090505b84156123f857612a6d6001836137cd565b9150612a7a600a86613866565b612a859060306137a1565b60f81b818381518110612a9a57612a9a6138bc565b60200101906001600160f81b031916908160001a905350612abc600a866137b9565b9450612a5c565b60006040518060800160405280604381526020016138ff6043913980516020918201208351848301516040808701518051908601209051612b23950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612b4b600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201612b23565b6001600160a01b038316612bcb57612bc681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612bee565b816001600160a01b0316836001600160a01b031614612bee57612bee8382612d3c565b6001600160a01b038216612c0557610d6681612dd9565b826001600160a01b0316826001600160a01b031614610d6657610d668282612e88565b60006001600160a01b0384163b15612d3157836001600160a01b031663150b7a02612c51612139565b8786866040518563ffffffff1660e01b8152600401612c739493929190613566565b602060405180830381600087803b158015612c8d57600080fd5b505af1925050508015612cbd575060408051601f3d908101601f19168201909252612cba91810190613307565b60015b612d17573d808015612ceb576040519150601f19603f3d011682016040523d82523d6000602084013e612cf0565b606091505b508051612d0f5760405162461bcd60e51b8152600401610a81906135b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123f8565b506001949350505050565b60006001612d498461170a565b612d5391906137cd565b600083815260076020526040902054909150808214612da6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612deb906001906137cd565b60008381526009602052604081205460088054939450909284908110612e1357612e136138bc565b906000526020600020015490508060088381548110612e3457612e346138bc565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612e6c57612e6c6138a6565b6001900381819060005260206000200160009055905550505050565b6000612e938361170a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612ed890613810565b90600052602060002090601f016020900481019282612efa5760008555612f40565b82601f10612f1357805160ff1916838001178555612f40565b82800160010185558215612f40579182015b82811115612f40578251825591602001919060010190612f25565b50612f4c929150612fc1565b5090565b508054600082559060005260206000209081019061110f9190612fc1565b828054828255906000526020600020908101928215612f40579160200282015b82811115612f405781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612f8e565b5b80821115612f4c5760008155600101612fc2565b600067ffffffffffffffff80841115612ff157612ff16138d2565b604051601f8501601f19908116603f01168101908282118183101715613019576130196138d2565b8160405280935085815286868601111561303257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461306357600080fd5b919050565b8035801515811461306357600080fd5b600082601f83011261308957600080fd5b61230283833560208501612fd6565b6000602082840312156130aa57600080fd5b6123028261304c565b600080604083850312156130c657600080fd5b6130cf8361304c565b91506130dd6020840161304c565b90509250929050565b6000806000606084860312156130fb57600080fd5b6131048461304c565b92506131126020850161304c565b9150604084013590509250925092565b6000806000806080858703121561313857600080fd5b6131418561304c565b935061314f6020860161304c565b925060408501359150606085013567ffffffffffffffff81111561317257600080fd5b61317e87828801613078565b91505092959194509250565b6000806040838503121561319d57600080fd5b6131a68361304c565b91506130dd60208401613068565b600080600080600060a086880312156131cc57600080fd5b6131d58661304c565b9450602086013567ffffffffffffffff8111156131f157600080fd5b6131fd88828901613078565b9450506040860135925060608601359150608086013560ff8116811461322257600080fd5b809150509295509295909350565b6000806040838503121561324357600080fd5b61324c8361304c565b946020939093013593505050565b6000806020838503121561326d57600080fd5b823567ffffffffffffffff8082111561328557600080fd5b818501915085601f83011261329957600080fd5b8135818111156132a857600080fd5b8660208260051b85010111156132bd57600080fd5b60209290920196919550909350505050565b6000602082840312156132e157600080fd5b61230282613068565b6000602082840312156132fc57600080fd5b8135612302816138e8565b60006020828403121561331957600080fd5b8151612302816138e8565b60006020828403121561333657600080fd5b813567ffffffffffffffff81111561334d57600080fd5b8201601f8101841361335e57600080fd5b6123f884823560208401612fd6565b60006020828403121561337f57600080fd5b5035919050565b60006020828403121561339857600080fd5b5051919050565b600080604083850312156133b257600080fd5b823591506130dd6020840161304c565b600080604083850312156133d557600080fd5b50508035926020909101359150565b600081518084526133fc8160208601602086016137e4565b601f01601f19169290920160200192915050565b600081516134228185602086016137e4565b9290920192915050565b6000825161343e8184602087016137e4565b9190910192915050565b6000835161345a8184602088016137e4565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600080845481600182811c91508083168061349b57607f831692505b60208084108214156134bb57634e487b7160e01b86526022600452602486fd5b8180156134cf57600181146134e05761350d565b60ff1986168952848901965061350d565b60008b81526020902060005b868110156135055781548b8201529085019083016134ec565b505084890196505b5050505050506135316135208286613410565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03848116825283166020820152606060408201819052600090613531908301846133e4565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613599908301846133e4565b9695505050505050565b60208152600061230260208301846133e4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602a908201527f6f6e6c79206f776e657273206f662033202d2036207370616365626f797320636040820152696f756c64206d696e742160b01b606082015260800190565b6020808252601f908201527f54686520636c61696d2068617665206e6f742073746172746564207965742e00604082015260600190565b6020808252601d908201527f596f75206861766520616c726561647920436c61696d6564204e66742e000000604082015260600190565b6020808252601590820152742a34329031b630b4b6903430bb329022b73232b21760591b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526012908201527113585e0814dd5c1c1b1e4814995858da195960721b604082015260600190565b600082198211156137b4576137b461387a565b500190565b6000826137c8576137c8613890565b500490565b6000828210156137df576137df61387a565b500390565b60005b838110156137ff5781810151838201526020016137e7565b83811115611c505750506000910152565b600181811c9082168061382457607f821691505b6020821081141561384557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561385f5761385f61387a565b5060010190565b60008261387557613875613890565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461110f57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220caabfbd322aa6d862c9b8cd5419893b64ef08fa45cd014b01e3878fba96157e964736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d656556724557343472765668687a55544a6b50457639356835734d417259526d353971785034797853455141454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742968747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5336774670765468386d4d5636746d61746a73737a35797370377271434a3532616878646d727a57454e533668747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d54413154764b4752476665594b59574d383742733243724261754e6d586b4e6d3131486b32646931726577382f

Deployed Bytecode

0x60806040526004361061036a5760003560e01c80638a5c50ae116101c6578063ba4e5c49116100f7578063e985e9c511610095578063ee8e00c41161006f578063ee8e00c4146109c3578063f2fde38b146109e2578063f4fe167b14610a02578063fa7b71ac14610a2257600080fd5b8063e985e9c51461092d578063edec5f2714610976578063ee014b311461099657600080fd5b8063ce9a3b0f116100d1578063ce9a3b0f146108c0578063d547cfb7146108d6578063de5c58a5146108eb578063e878cd471461090b57600080fd5b8063ba4e5c4914610860578063c446788d14610880578063c87b56dd146108a057600080fd5b80639d3b6a9d11610164578063b475c0d71161013e578063b475c0d7146107f5578063b74ee59514610815578063b88d4fde1461082a578063b9cd1f801461084a57600080fd5b80639d3b6a9d1461079f578063a0bcfc7f146107b5578063a22cb465146107d557600080fd5b80639110796e116101a05780639110796e1461073b57806395d89b4114610750578063974941371461076557806399b74de11461078557600080fd5b80638a5c50ae146106e85780638da5cb5b146106fd57806390edbfee1461071b57600080fd5b80632d0335ab116102a057806353a691dd1161023e5780636352211e116102185780636352211e1461067357806363fe5cca1461069357806370a08231146106b3578063715018a6146106d357600080fd5b806353a691dd146106295780635749f8f414610649578063577e46b91461065e57600080fd5b80633af32abf1161027a5780633af32abf146105b45780633ccfd60b146105d457806342842e0e146105e95780634f6ccce71461060957600080fd5b80632d0335ab1461054b5780632f745c59146105815780633408e470146105a157600080fd5b80630f7e59701161030d5780631ff8393a116102e75780631ff8393a146104e057806320379ee51461050057806323b872dd1461051557806327ca003b1461053557600080fd5b80630f7e597014610473578063171f1851146104a057806318160ddd146104c157600080fd5b806307fe357f1161034957806307fe357f146103e8578063081812fc14610408578063095ea7b3146104405780630c53c51c1461046057600080fd5b80625442ce1461036f57806301ffc9a71461039157806306fdde03146103c6575b600080fd5b34801561037b57600080fd5b5061038f61038a3660046132cf565b610a38565b005b34801561039d57600080fd5b506103b16103ac3660046132ea565b610a9d565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103db610ac8565b6040516103bd91906135a3565b3480156103f457600080fd5b5061038f6104033660046133c2565b610b5a565b34801561041457600080fd5b5061042861042336600461336d565b610bae565b6040516001600160a01b0390911681526020016103bd565b34801561044c57600080fd5b5061038f61045b366004613230565b610c43565b6103db61046e3660046131b4565b610d6b565b34801561047f57600080fd5b506103db604051806040016040528060018152602001603160f81b81525081565b3480156104ac57600080fd5b50600f546103b1906301000000900460ff1681565b3480156104cd57600080fd5b506008545b6040519081526020016103bd565b3480156104ec57600080fd5b50600f546103b19062010000900460ff1681565b34801561050c57600080fd5b50600b546104d2565b34801561052157600080fd5b5061038f6105303660046130e6565b610f55565b34801561054157600080fd5b506104d260185481565b34801561055757600080fd5b506104d2610566366004613098565b6001600160a01b03166000908152600c602052604090205490565b34801561058d57600080fd5b506104d261059c366004613230565b610f8d565b3480156105ad57600080fd5b50466104d2565b3480156105c057600080fd5b506103b16105cf366004613098565b611023565b3480156105e057600080fd5b5061038f61108d565b3480156105f557600080fd5b5061038f6106043660046130e6565b611112565b34801561061557600080fd5b506104d261062436600461336d565b61112d565b34801561063557600080fd5b5061038f61064436600461339f565b6111c0565b34801561065557600080fd5b5061038f6112b0565b34801561066a57600080fd5b5061038f61147b565b34801561067f57600080fd5b5061042861068e36600461336d565b61161c565b34801561069f57600080fd5b5061038f6106ae366004613098565b611693565b3480156106bf57600080fd5b506104d26106ce366004613098565b61170a565b3480156106df57600080fd5b5061038f611791565b3480156106f457600080fd5b506103db6117e6565b34801561070957600080fd5b50600d546001600160a01b0316610428565b34801561072757600080fd5b5061038f61073636600461336d565b611874565b34801561074757600080fd5b5061038f6118d1565b34801561075c57600080fd5b506103db6119d3565b34801561077157600080fd5b5061038f6107803660046132cf565b6119e2565b34801561079157600080fd5b50600f546103b19060ff1681565b3480156107ab57600080fd5b506104d260175481565b3480156107c157600080fd5b5061038f6107d0366004613324565b611a45565b3480156107e157600080fd5b5061038f6107f036600461318a565b611aa1565b34801561080157600080fd5b5061038f6108103660046132cf565b611ba3565b34801561082157600080fd5b506103db611c0a565b34801561083657600080fd5b5061038f610845366004613122565b611c17565b34801561085657600080fd5b506104d260105481565b34801561086c57600080fd5b5061042861087b36600461336d565b611c56565b34801561088c57600080fd5b5061038f61089b36600461339f565b611c80565b3480156108ac57600080fd5b506103db6108bb36600461336d565b611d6b565b3480156108cc57600080fd5b506104d2600e5481565b3480156108e257600080fd5b506103db611ee9565b3480156108f757600080fd5b5061038f6109063660046132cf565b611ef6565b34801561091757600080fd5b50600f546103b190640100000000900460ff1681565b34801561093957600080fd5b506103b16109483660046130b3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561098257600080fd5b5061038f61099136600461325a565b611f5f565b3480156109a257600080fd5b506104d26109b136600461336d565b601e6020526000908152604090205481565b3480156109cf57600080fd5b50600f546103b190610100900460ff1681565b3480156109ee57600080fd5b5061038f6109fd366004613098565b611fc0565b348015610a0e57600080fd5b5061038f610a1d3660046132cf565b612077565b348015610a2e57600080fd5b506104d260115481565b610a40612139565b6001600160a01b0316610a5b600d546001600160a01b031690565b6001600160a01b031614610a8a5760405162461bcd60e51b8152600401610a81906136ef565b60405180910390fd5b600f805460ff1916911515919091179055565b60006001600160e01b0319821663780e9d6360e01b1480610ac25750610ac282612148565b92915050565b606060008054610ad790613810565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0390613810565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b5050505050905090565b610b62612139565b6001600160a01b0316610b7d600d546001600160a01b031690565b6001600160a01b031614610ba35760405162461bcd60e51b8152600401610a81906136ef565b601791909155601855565b6000818152600260205260408120546001600160a01b0316610c275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a81565b506000908152600460205260409020546001600160a01b031690565b6000610c4e8261161c565b9050806001600160a01b0316836001600160a01b03161415610cbc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a81565b806001600160a01b0316610cce612139565b6001600160a01b03161480610cea5750610cea81610948612139565b610d5c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a81565b610d668383612198565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610da98782878787612206565b610dff5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610a81565b6001600160a01b0387166000908152600c6020526040902054610e239060016122f6565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610e7390899033908a9061353a565b60405180910390a1600080306001600160a01b0316888a604051602001610e9b929190613448565b60408051601f1981840301815290829052610eb59161342c565b6000604051808303816000865af19150503d8060008114610ef2576040519150601f19603f3d011682016040523d82523d6000602084013e610ef7565b606091505b509150915081610f495760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610a81565b98975050505050505050565b610f66610f60612139565b82612309565b610f825760405162461bcd60e51b8152600401610a8190613724565b610d66838383612400565b6000610f988361170a565b8210610ffa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a81565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601d5481101561108457826001600160a01b0316601d828154811061104e5761104e6138bc565b6000918252602090912001546001600160a01b031614156110725750600192915050565b8061107c8161384b565b915050611027565b50600092915050565b611095612139565b6001600160a01b03166110b0600d546001600160a01b031690565b6001600160a01b0316146110d65760405162461bcd60e51b8152600401610a81906136ef565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561110f573d6000803e3d6000fd5b50565b610d6683838360405180602001604052806000815250611c17565b600061113860085490565b821061119b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a81565b600882815481106111ae576111ae6138bc565b90600052602060002001549050919050565b6111c8612139565b6001600160a01b03166111e3600d546001600160a01b031690565b6001600160a01b0316146112095760405162461bcd60e51b8152600401610a81906136ef565b6012548260115461121a91906137a1565b106112375760405162461bcd60e51b8152600401610a8190613775565b601482111561127a5760405162461bcd60e51b815260206004820152600f60248201526e26b0bc1019181020b63637bbb2b21760891b6044820152606401610a81565b60005b82811015610d6657611296826112916125ab565b6125bc565b61129e61270a565b806112a88161384b565b91505061127d565b60175442116112d15760405162461bcd60e51b8152600401610a8190613652565b60185442106112f25760405162461bcd60e51b8152600401610a81906136c0565b6013546010546113039060016137a1565b106113205760405162461bcd60e51b8152600401610a8190613775565b61132b6106ce612139565b156113485760405162461bcd60e51b8152600401610a8190613689565b601c546000906001600160a01b03166370a08231611364612139565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156113a357600080fd5b505afa1580156113b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113db9190613386565b905060006113e882612731565b90506007815110156114535760405162461bcd60e51b815260206004820152602e60248201527f6f6e6c79206f776e657273206f662037206f72206d6f7265207370616365626f60448201526d797320636f756c64206d696e742160901b6064820152608401610a81565b61145c816128be565b61146f611467612139565b61129161290f565b611477612920565b5050565b601754421161149c5760405162461bcd60e51b8152600401610a8190613652565b60185442106114bd5760405162461bcd60e51b8152600401610a81906136c0565b6012546011546114ce9060016137a1565b106114eb5760405162461bcd60e51b8152600401610a8190613775565b6114f66106ce612139565b156115135760405162461bcd60e51b8152600401610a8190613689565b601c546000906001600160a01b03166370a0823161152f612139565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b15801561156e57600080fd5b505afa158015611582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a69190613386565b905060006115b382612731565b90506003815110156115d75760405162461bcd60e51b8152600401610a8190613608565b60078151106115f85760405162461bcd60e51b8152600401610a8190613608565b611601816128be565b61161461160c612139565b6112916125ab565b61147761270a565b6000818152600260205260408120546001600160a01b031680610ac25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a81565b61169b612139565b6001600160a01b03166116b6600d546001600160a01b031690565b6001600160a01b0316146116dc5760405162461bcd60e51b8152600401610a81906136ef565b60005b600e54811015611477576116f8826112918360016137a1565b806117028161384b565b9150506116df565b60006001600160a01b0382166117755760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a81565b506001600160a01b031660009081526003602052604090205490565b611799612139565b6001600160a01b03166117b4600d546001600160a01b031690565b6001600160a01b0316146117da5760405162461bcd60e51b8152600401610a81906136ef565b6117e46000612940565b565b601680546117f390613810565b80601f016020809104026020016040519081016040528092919081815260200182805461181f90613810565b801561186c5780601f106118415761010080835404028352916020019161186c565b820191906000526020600020905b81548152906001019060200180831161184f57829003601f168201915b505050505081565b61187c612139565b6001600160a01b0316611897600d546001600160a01b031690565b6001600160a01b0316146118bd5760405162461bcd60e51b8152600401610a81906136ef565b806012546118cb91906137a1565b60125550565b60175442116118f25760405162461bcd60e51b8152600401610a8190613652565b60185442106119135760405162461bcd60e51b8152600401610a81906136c0565b6012546011546119249060016137a1565b106119415760405162461bcd60e51b8152600401610a8190613775565b61194c6105cf612139565b6119985760405162461bcd60e51b815260206004820152601a60248201527f596f7520617265206e6f7420696e20746869732067726f75702e0000000000006044820152606401610a81565b6119a36106ce612139565b156119c05760405162461bcd60e51b8152600401610a8190613689565b6119cb61160c612139565b6117e461270a565b606060018054610ad790613810565b6119ea612139565b6001600160a01b0316611a05600d546001600160a01b031690565b6001600160a01b031614611a2b5760405162461bcd60e51b8152600401610a81906136ef565b600f80549115156101000261ff0019909216919091179055565b611a4d612139565b6001600160a01b0316611a68600d546001600160a01b031690565b6001600160a01b031614611a8e5760405162461bcd60e51b8152600401610a81906136ef565b8051611477906014906020840190612ecc565b611aa9612139565b6001600160a01b0316826001600160a01b03161415611b0a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a81565b8060056000611b17612139565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611b5b612139565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b97911515815260200190565b60405180910390a35050565b611bab612139565b6001600160a01b0316611bc6600d546001600160a01b031690565b6001600160a01b031614611bec5760405162461bcd60e51b8152600401610a81906136ef565b600f805491151563010000000263ff00000019909216919091179055565b601580546117f390613810565b611c28611c22612139565b83612309565b611c445760405162461bcd60e51b8152600401610a8190613724565b611c5084848484612992565b50505050565b601d8181548110611c6657600080fd5b6000918252602090912001546001600160a01b0316905081565b611c88612139565b6001600160a01b0316611ca3600d546001600160a01b031690565b6001600160a01b031614611cc95760405162461bcd60e51b8152600401610a81906136ef565b60135482601054611cda91906137a1565b10611cf75760405162461bcd60e51b8152600401610a8190613775565b6014821115611d3a5760405162461bcd60e51b815260206004820152600f60248201526e26b0bc1019181020b63637bbb2b21760891b6044820152606401610a81565b60005b82811015610d6657611d518261129161290f565b611d59612920565b80611d638161384b565b915050611d3d565b6060816001148015611d805750600f5460ff16155b15611e175760158054611d9290613810565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbe90613810565b8015611e0b5780601f10611de057610100808354040283529160200191611e0b565b820191906000526020600020905b815481529060010190602001808311611dee57829003601f168201915b50505050509050919050565b816002148015611e2f5750600f54610100900460ff16155b15611e415760158054611d9290613810565b816003148015611e5a5750600f5462010000900460ff16155b15611e6c5760158054611d9290613810565b816004148015611e865750600f546301000000900460ff16155b15611e985760158054611d9290613810565b600f54640100000000900460ff16611eb75760168054611d9290613810565b6014611ec2836129c5565b604051602001611ed392919061347f565b6040516020818303038152906040529050919050565b601480546117f390613810565b611efe612139565b6001600160a01b0316611f19600d546001600160a01b031690565b6001600160a01b031614611f3f5760405162461bcd60e51b8152600401610a81906136ef565b600f80549115156401000000000264ff0000000019909216919091179055565b611f67612139565b6001600160a01b0316611f82600d546001600160a01b031690565b6001600160a01b031614611fa85760405162461bcd60e51b8152600401610a81906136ef565b611fb4601d6000612f50565b610d66601d8383612f6e565b611fc8612139565b6001600160a01b0316611fe3600d546001600160a01b031690565b6001600160a01b0316146120095760405162461bcd60e51b8152600401610a81906136ef565b6001600160a01b03811661206e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a81565b61110f81612940565b61207f612139565b6001600160a01b031661209a600d546001600160a01b031690565b6001600160a01b0316146120c05760405162461bcd60e51b8152600401610a81906136ef565b600f8054911515620100000262ff000019909216919091179055565b60003330141561213357600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506121369050565b50335b90565b60006121436120dc565b905090565b60006001600160e01b031982166380ac58cd60e01b148061217957506001600160e01b03198216635b5e139f60e01b145b80610ac257506301ffc9a760e01b6001600160e01b0319831614610ac2565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906121cd8261161c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661226c5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610a81565b600161227f61227a87612ac3565b612b40565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156122cd573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b600061230282846137a1565b9392505050565b6000818152600260205260408120546001600160a01b03166123825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a81565b600061238d8361161c565b9050806001600160a01b0316846001600160a01b031614806123c85750836001600160a01b03166123bd84610bae565b6001600160a01b0316145b806123f857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124138261161c565b6001600160a01b03161461247b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a81565b6001600160a01b0382166124dd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a81565b6124e8838383612b70565b6124f3600082612198565b6001600160a01b038316600090815260036020526040812080546001929061251c9084906137cd565b90915550506001600160a01b038216600090815260036020526040812080546001929061254a9084906137a1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6011546000906121439060016122f6565b6001600160a01b0382166126125760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a81565b6000818152600260205260409020546001600160a01b0316156126775760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a81565b61268360008383612b70565b6001600160a01b03821660009081526003602052604081208054600192906126ac9084906137a1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6012546011541061271a57600080fd5b6011805490600061272a8361384b565b9190505550565b606060008267ffffffffffffffff81111561274e5761274e6138d2565b604051908082528060200260200182016040528015612777578160200160208202803683370190505b50905060008060005b8581101561289657601c546000906001600160a01b0316632f745c596127a4612139565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024810185905260440160206040518083038186803b1580156127ea57600080fd5b505afa1580156127fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128229190613386565b905060008111801561284057506000818152601e6020526040902054155b156128755780858581518110612858576128586138bc565b60209081029190910101528361286d8161384b565b945050612883565b8261287f8161384b565b9350505b508061288e8161384b565b915050612780565b5080156128b55750506040805160008152602081019091529392505050565b50909392505050565b60005b8151811015611477576001601e60008484815181106128e2576128e26138bc565b602002602001015181526020019081526020016000208190555080806129079061384b565b9150506128c1565b6010546000906121439060016122f6565b6013546010541061293057600080fd5b6010805490600061272a8361384b565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61299d848484612400565b6129a984848484612c28565b611c505760405162461bcd60e51b8152600401610a81906135b6565b6060816129e95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a1357806129fd8161384b565b9150612a0c9050600a836137b9565b91506129ed565b60008167ffffffffffffffff811115612a2e57612a2e6138d2565b6040519080825280601f01601f191660200182016040528015612a58576020820181803683370190505b5090505b84156123f857612a6d6001836137cd565b9150612a7a600a86613866565b612a859060306137a1565b60f81b818381518110612a9a57612a9a6138bc565b60200101906001600160f81b031916908160001a905350612abc600a866137b9565b9450612a5c565b60006040518060800160405280604381526020016138ff6043913980516020918201208351848301516040808701518051908601209051612b23950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612b4b600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201612b23565b6001600160a01b038316612bcb57612bc681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612bee565b816001600160a01b0316836001600160a01b031614612bee57612bee8382612d3c565b6001600160a01b038216612c0557610d6681612dd9565b826001600160a01b0316826001600160a01b031614610d6657610d668282612e88565b60006001600160a01b0384163b15612d3157836001600160a01b031663150b7a02612c51612139565b8786866040518563ffffffff1660e01b8152600401612c739493929190613566565b602060405180830381600087803b158015612c8d57600080fd5b505af1925050508015612cbd575060408051601f3d908101601f19168201909252612cba91810190613307565b60015b612d17573d808015612ceb576040519150601f19603f3d011682016040523d82523d6000602084013e612cf0565b606091505b508051612d0f5760405162461bcd60e51b8152600401610a81906135b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123f8565b506001949350505050565b60006001612d498461170a565b612d5391906137cd565b600083815260076020526040902054909150808214612da6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612deb906001906137cd565b60008381526009602052604081205460088054939450909284908110612e1357612e136138bc565b906000526020600020015490508060088381548110612e3457612e346138bc565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612e6c57612e6c6138a6565b6001900381819060005260206000200160009055905550505050565b6000612e938361170a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612ed890613810565b90600052602060002090601f016020900481019282612efa5760008555612f40565b82601f10612f1357805160ff1916838001178555612f40565b82800160010185558215612f40579182015b82811115612f40578251825591602001919060010190612f25565b50612f4c929150612fc1565b5090565b508054600082559060005260206000209081019061110f9190612fc1565b828054828255906000526020600020908101928215612f40579160200282015b82811115612f405781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612f8e565b5b80821115612f4c5760008155600101612fc2565b600067ffffffffffffffff80841115612ff157612ff16138d2565b604051601f8501601f19908116603f01168101908282118183101715613019576130196138d2565b8160405280935085815286868601111561303257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461306357600080fd5b919050565b8035801515811461306357600080fd5b600082601f83011261308957600080fd5b61230283833560208501612fd6565b6000602082840312156130aa57600080fd5b6123028261304c565b600080604083850312156130c657600080fd5b6130cf8361304c565b91506130dd6020840161304c565b90509250929050565b6000806000606084860312156130fb57600080fd5b6131048461304c565b92506131126020850161304c565b9150604084013590509250925092565b6000806000806080858703121561313857600080fd5b6131418561304c565b935061314f6020860161304c565b925060408501359150606085013567ffffffffffffffff81111561317257600080fd5b61317e87828801613078565b91505092959194509250565b6000806040838503121561319d57600080fd5b6131a68361304c565b91506130dd60208401613068565b600080600080600060a086880312156131cc57600080fd5b6131d58661304c565b9450602086013567ffffffffffffffff8111156131f157600080fd5b6131fd88828901613078565b9450506040860135925060608601359150608086013560ff8116811461322257600080fd5b809150509295509295909350565b6000806040838503121561324357600080fd5b61324c8361304c565b946020939093013593505050565b6000806020838503121561326d57600080fd5b823567ffffffffffffffff8082111561328557600080fd5b818501915085601f83011261329957600080fd5b8135818111156132a857600080fd5b8660208260051b85010111156132bd57600080fd5b60209290920196919550909350505050565b6000602082840312156132e157600080fd5b61230282613068565b6000602082840312156132fc57600080fd5b8135612302816138e8565b60006020828403121561331957600080fd5b8151612302816138e8565b60006020828403121561333657600080fd5b813567ffffffffffffffff81111561334d57600080fd5b8201601f8101841361335e57600080fd5b6123f884823560208401612fd6565b60006020828403121561337f57600080fd5b5035919050565b60006020828403121561339857600080fd5b5051919050565b600080604083850312156133b257600080fd5b823591506130dd6020840161304c565b600080604083850312156133d557600080fd5b50508035926020909101359150565b600081518084526133fc8160208601602086016137e4565b601f01601f19169290920160200192915050565b600081516134228185602086016137e4565b9290920192915050565b6000825161343e8184602087016137e4565b9190910192915050565b6000835161345a8184602088016137e4565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600080845481600182811c91508083168061349b57607f831692505b60208084108214156134bb57634e487b7160e01b86526022600452602486fd5b8180156134cf57600181146134e05761350d565b60ff1986168952848901965061350d565b60008b81526020902060005b868110156135055781548b8201529085019083016134ec565b505084890196505b5050505050506135316135208286613410565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03848116825283166020820152606060408201819052600090613531908301846133e4565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613599908301846133e4565b9695505050505050565b60208152600061230260208301846133e4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602a908201527f6f6e6c79206f776e657273206f662033202d2036207370616365626f797320636040820152696f756c64206d696e742160b01b606082015260800190565b6020808252601f908201527f54686520636c61696d2068617665206e6f742073746172746564207965742e00604082015260600190565b6020808252601d908201527f596f75206861766520616c726561647920436c61696d6564204e66742e000000604082015260600190565b6020808252601590820152742a34329031b630b4b6903430bb329022b73232b21760591b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526012908201527113585e0814dd5c1c1b1e4814995858da195960721b604082015260600190565b600082198211156137b4576137b461387a565b500190565b6000826137c8576137c8613890565b500490565b6000828210156137df576137df61387a565b500390565b60005b838110156137ff5781810151838201526020016137e7565b83811115611c505750506000910152565b600181811c9082168061382457607f821691505b6020821081141561384557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561385f5761385f61387a565b5060010190565b60008261387557613875613890565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461110f57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220caabfbd322aa6d862c9b8cd5419893b64ef08fa45cd014b01e3878fba96157e964736f6c63430008070033

Deployed Bytecode Sourcemap

54287:8865:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55859:105;;;;;;;;;;-1:-1:-1;55859:105:0;;;;;:::i;:::-;;:::i;:::-;;41888:300;;;;;;;;;;-1:-1:-1;41888:300:0;;;;;:::i;:::-;;:::i;:::-;;;10995:14:1;;10988:22;10970:41;;10958:2;10943:18;41888:300:0;;;;;;;;29367:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;61990:125::-;;;;;;;;;;-1:-1:-1;61990:125:0;;;;;:::i;:::-;;:::i;31060:308::-;;;;;;;;;;-1:-1:-1;31060:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9556:32:1;;;9538:51;;9526:2;9511:18;31060:308:0;9392:203:1;30583:411:0;;;;;;;;;;-1:-1:-1;30583:411:0;;;;;:::i;:::-;;:::i;51898:1151::-;;;;;;:::i;:::-;;:::i;49154:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49154:43:0;;;;;54601:36;;;;;;;;;;-1:-1:-1;54601:36:0;;;;;;;;;;;42691:113;;;;;;;;;;-1:-1:-1;42779:10:0;:17;42691:113;;;11168:25:1;;;11156:2;11141:18;42691:113:0;11022:177:1;54558:36:0;;;;;;;;;;-1:-1:-1;54558:36:0;;;;;;;;;;;50149:101;;;;;;;;;;-1:-1:-1;50227:15:0;;50149:101;;32119:376;;;;;;;;;;-1:-1:-1;32119:376:0;;;;;:::i;:::-;;:::i;55314:35::-;;;;;;;;;;;;;;;;53475:107;;;;;;;;;;-1:-1:-1;53475:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;53562:12:0;53528:13;53562:12;;;:6;:12;;;;;;;53475:107;42272:343;;;;;;;;;;-1:-1:-1;42272:343:0;;;;;:::i;:::-;;:::i;50258:161::-;;;;;;;;;;-1:-1:-1;50372:9:0;50258:161;;60805:239;;;;;;;;;;-1:-1:-1;60805:239:0;;;;;:::i;:::-;;:::i;61208:106::-;;;;;;;;;;;;;:::i;32566:185::-;;;;;;;;;;-1:-1:-1;32566:185:0;;;;;:::i;:::-;;:::i;42881:320::-;;;;;;;;;;-1:-1:-1;42881:320:0;;;;;:::i;:::-;;:::i;60434:355::-;;;;;;;;;;-1:-1:-1;60434:355:0;;;;;:::i;:::-;;:::i;57564:822::-;;;;;;;;;;;;;:::i;58398:912::-;;;;;;;;;;;;;:::i;28974:326::-;;;;;;;;;;-1:-1:-1;28974:326:0;;;;;:::i;:::-;;:::i;59905:143::-;;;;;;;;;;-1:-1:-1;59905:143:0;;;;;:::i;:::-;;:::i;28617:295::-;;;;;;;;;;-1:-1:-1;28617:295:0;;;;;:::i;:::-;;:::i;26238:94::-;;;;;;;;;;;;;:::i;55111:110::-;;;;;;;;;;;;;:::i;25587:87::-;;;;;;;;;;-1:-1:-1;25660:6:0;;-1:-1:-1;;;;;25660:6:0;25587:87;;63030:109;;;;;;;;;;-1:-1:-1;63030:109:0;;;;;:::i;:::-;;:::i;59322:523::-;;;;;;;;;;;;;:::i;29536:104::-;;;;;;;;;;;;;:::i;55970:105::-;;;;;;;;;;-1:-1:-1;55970:105:0;;;;;:::i;:::-;;:::i;54472:36::-;;;;;;;;;;-1:-1:-1;54472:36:0;;;;;;;;55233:37;;;;;;;;;;;;;;;;61885:97;;;;;;;;;;-1:-1:-1;61885:97:0;;;;;:::i;:::-;;:::i;31440:327::-;;;;;;;;;;-1:-1:-1;31440:327:0;;;;;:::i;:::-;;:::i;56192:105::-;;;;;;;;;;-1:-1:-1;56192:105:0;;;;;:::i;:::-;;:::i;54986:118::-;;;;;;;;;;;;;:::i;32822:365::-;;;;;;;;;;-1:-1:-1;32822:365:0;;;;;:::i;:::-;;:::i;54683:46::-;;;;;;;;;;;;;;;;55626:37;;;;;;;;;;-1:-1:-1;55626:37:0;;;;;:::i;:::-;;:::i;60060:362::-;;;;;;;;;;-1:-1:-1;60060:362:0;;;;;:::i;:::-;;:::i;62123:773::-;;;;;;;;;;-1:-1:-1;62123:773:0;;;;;:::i;:::-;;:::i;54437:26::-;;;;;;;;;;;;;;;;54867:112;;;;;;;;;;;;;:::i;56303:93::-;;;;;;;;;;-1:-1:-1;56303:93:0;;;;;:::i;:::-;;:::i;54644:30::-;;;;;;;;;;-1:-1:-1;54644:30:0;;;;;;;;;;;31838:214;;;;;;;;;;-1:-1:-1;31838:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;32009:25:0;;;31980:4;32009:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31838:214;61052:144;;;;;;;;;;-1:-1:-1;61052:144:0;;;;;:::i;:::-;;:::i;55670:56::-;;;;;;;;;;-1:-1:-1;55670:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;54515:36;;;;;;;;;;-1:-1:-1;54515:36:0;;;;;;;;;;;26487:229;;;;;;;;;;-1:-1:-1;26487:229:0;;;;;:::i;:::-;;:::i;56081:105::-;;;;;;;;;;-1:-1:-1;56081:105:0;;;;;:::i;:::-;;:::i;54736:43::-;;;;;;;;;;;;;;;;55859:105;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;;;;;;;;;55931:16:::1;:25:::0;;-1:-1:-1;;55931:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55859:105::o;41888:300::-;42035:4;-1:-1:-1;;;;;;42077:50:0;;-1:-1:-1;;;42077:50:0;;:103;;;42144:36;42168:11;42144:23;:36::i;:::-;42057:123;41888:300;-1:-1:-1;;41888:300:0:o;29367:100::-;29421:13;29454:5;29447:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29367:100;:::o;61990:125::-;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;62066:9:::1;:17:::0;;;;62094:7:::1;:13:::0;61990:125::o;31060:308::-;31181:7;34823:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34823:16:0;31206:110;;;;-1:-1:-1;;;31206:110:0;;19664:2:1;31206:110:0;;;19646:21:1;19703:2;19683:18;;;19676:30;19742:34;19722:18;;;19715:62;-1:-1:-1;;;19793:18:1;;;19786:42;19845:19;;31206:110:0;19462:408:1;31206:110:0;-1:-1:-1;31336:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31336:24:0;;31060:308::o;30583:411::-;30664:13;30680:23;30695:7;30680:14;:23::i;:::-;30664:39;;30728:5;-1:-1:-1;;;;;30722:11:0;:2;-1:-1:-1;;;;;30722:11:0;;;30714:57;;;;-1:-1:-1;;;30714:57:0;;22015:2:1;30714:57:0;;;21997:21:1;22054:2;22034:18;;;22027:30;22093:34;22073:18;;;22066:62;-1:-1:-1;;;22144:18:1;;;22137:31;22185:19;;30714:57:0;21813:397:1;30714:57:0;30822:5;-1:-1:-1;;;;;30806:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;30806:21:0;;:62;;;;30831:37;30848:5;30855:12;:10;:12::i;30831:37::-;30784:168;;;;-1:-1:-1;;;30784:168:0;;17699:2:1;30784:168:0;;;17681:21:1;17738:2;17718:18;;;17711:30;17777:34;17757:18;;;17750:62;17848:26;17828:18;;;17821:54;17892:19;;30784:168:0;17497:420:1;30784:168:0;30965:21;30974:2;30978:7;30965:8;:21::i;:::-;30653:341;30583:411;;:::o;51898:1151::-;52156:152;;;52099:12;52156:152;;;;;-1:-1:-1;;;;;52194:19:0;;52124:29;52194:19;;;:6;:19;;;;;;;;;52156:152;;;;;;;;;;;52343:45;52201:11;52156:152;52371:4;52377;52383;52343:6;:45::i;:::-;52321:128;;;;-1:-1:-1;;;52321:128:0;;21198:2:1;52321:128:0;;;21180:21:1;21237:2;21217:18;;;21210:30;21276:34;21256:18;;;21249:62;-1:-1:-1;;;21327:18:1;;;21320:31;21368:19;;52321:128:0;20996:397:1;52321:128:0;-1:-1:-1;;;;;52538:19:0;;;;;;:6;:19;;;;;;:26;;52562:1;52538:23;:26::i;:::-;-1:-1:-1;;;;;52516:19:0;;;;;;:6;:19;;;;;;;:48;;;;52582:126;;;;;52523:11;;52654:10;;52680:17;;52582:126;:::i;:::-;;;;;;;;52819:12;52833:23;52868:4;-1:-1:-1;;;;;52860:18:0;52910:17;52929:11;52893:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;52893:48:0;;;;;;;;;;52860:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52818:134;;;;52971:7;52963:48;;;;-1:-1:-1;;;52963:48:0;;13937:2:1;52963:48:0;;;13919:21:1;13976:2;13956:18;;;13949:30;14015;13995:18;;;13988:58;14063:18;;52963:48:0;13735:352:1;52963:48:0;53031:10;51898:1151;-1:-1:-1;;;;;;;;51898:1151:0:o;32119:376::-;32328:41;32347:12;:10;:12::i;:::-;32361:7;32328:18;:41::i;:::-;32306:140;;;;-1:-1:-1;;;32306:140:0;;;;;;;:::i;:::-;32459:28;32469:4;32475:2;32479:7;32459:9;:28::i;42272:343::-;42414:7;42469:23;42486:5;42469:16;:23::i;:::-;42461:5;:31;42439:124;;;;-1:-1:-1;;;42439:124:0;;12699:2:1;42439:124:0;;;12681:21:1;12738:2;12718:18;;;12711:30;12777:34;12757:18;;;12750:62;-1:-1:-1;;;12828:18:1;;;12821:41;12879:19;;42439:124:0;12497:407:1;42439:124:0;-1:-1:-1;;;;;;42581:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42272:343::o;60805:239::-;60864:4;;60877:143;60898:20;:27;60894:31;;60877:143;;;60972:5;-1:-1:-1;;;;;60945:32:0;:20;60966:1;60945:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;60945:23:0;:32;60941:72;;;-1:-1:-1;60999:4:0;;60805:239;-1:-1:-1;;60805:239:0:o;60941:72::-;60927:3;;;;:::i;:::-;;;;60877:143;;;-1:-1:-1;61033:5:0;;60805:239;-1:-1:-1;;60805:239:0:o;61208:106::-;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;25660:6;;61258:48:::1;::::0;-1:-1:-1;;;;;25660:6:0;;;;61284:21:::1;61258:48:::0;::::1;;;::::0;::::1;::::0;;;61284:21;25660:6;61258:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;61208:106::o:0;32566:185::-;32704:39;32721:4;32727:2;32731:7;32704:39;;;;;;;;;;;;:16;:39::i;42881:320::-;43001:7;43056:30;42779:10;:17;;42691:113;43056:30;43048:5;:38;43026:132;;;;-1:-1:-1;;;43026:132:0;;22835:2:1;43026:132:0;;;22817:21:1;22874:2;22854:18;;;22847:30;22913:34;22893:18;;;22886:62;-1:-1:-1;;;22964:18:1;;;22957:42;23016:19;;43026:132:0;22633:408:1;43026:132:0;43176:10;43187:5;43176:17;;;;;;;;:::i;:::-;;;;;;;;;43169:24;;42881:320;;;:::o;60434:355::-;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;60550:10:::1;;60544:3;60520:21;;:27;;;;:::i;:::-;:40;60512:71;;;;-1:-1:-1::0;;;60512:71:0::1;;;;;;;:::i;:::-;60609:2;60602:3;:9;;60594:37;;;::::0;-1:-1:-1;;;60594:37:0;;15821:2:1;60594:37:0::1;::::0;::::1;15803:21:1::0;15860:2;15840:18;;;15833:30;-1:-1:-1;;;15879:18:1;;;15872:45;15934:18;;60594:37:0::1;15619:339:1::0;60594:37:0::1;60656:9;60652:130;60671:3;60669:1;:5;60652:130;;;60695:35;60701:3;60706:23;:21;:23::i;:::-;60695:5;:35::i;:::-;60745:25;:23;:25::i;:::-;60676:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60652:130;;57564:822:::0;57630:9;;57612:15;:27;57604:71;;;;-1:-1:-1;;;57604:71:0;;;;;;;:::i;:::-;57712:7;;57694:15;:25;57686:59;;;;-1:-1:-1;;;57686:59:0;;;;;;;:::i;:::-;57792:17;;57764:21;;:25;;57788:1;57764:25;:::i;:::-;:45;57756:76;;;;-1:-1:-1;;;57756:76:0;;;;;;;:::i;:::-;57851:23;57861:12;:10;:12::i;57851:23::-;:28;57843:70;;;;-1:-1:-1;;;57843:70:0;;;;;;;:::i;:::-;57995:16;;57974:18;;-1:-1:-1;;;;;57995:16:0;:26;58022:12;:10;:12::i;:::-;57995:40;;-1:-1:-1;;;;;;57995:40:0;;;;;;;-1:-1:-1;;;;;9556:32:1;;;57995:40:0;;;9538:51:1;9511:18;;57995:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57974:61;;58046:41;58090:30;58109:10;58090:18;:30::i;:::-;58046:74;;58173:1;58139:23;:30;:35;;58131:94;;;;-1:-1:-1;;;58131:94:0;;21600:2:1;58131:94:0;;;21582:21:1;21639:2;21619:18;;;21612:30;21678:34;21658:18;;;21651:62;-1:-1:-1;;;21729:18:1;;;21722:44;21783:19;;58131:94:0;21398:410:1;58131:94:0;58246:41;58263:23;58246:16;:41::i;:::-;58298:44;58304:12;:10;:12::i;:::-;58318:23;:21;:23::i;58298:44::-;58353:25;:23;:25::i;:::-;57593:793;;57564:822::o;58398:912::-;58466:9;;58448:15;:27;58440:71;;;;-1:-1:-1;;;58440:71:0;;;;;;;:::i;:::-;58548:7;;58530:15;:25;58522:59;;;;-1:-1:-1;;;58522:59:0;;;;;;;:::i;:::-;58628:10;;58600:21;;:25;;58624:1;58600:25;:::i;:::-;:38;58592:69;;;;-1:-1:-1;;;58592:69:0;;;;;;;:::i;:::-;58680:23;58690:12;:10;:12::i;58680:23::-;:28;58672:70;;;;-1:-1:-1;;;58672:70:0;;;;;;;:::i;:::-;58823:16;;58802:18;;-1:-1:-1;;;;;58823:16:0;:26;58850:12;:10;:12::i;:::-;58823:40;;-1:-1:-1;;;;;;58823:40:0;;;;;;;-1:-1:-1;;;;;9556:32:1;;;58823:40:0;;;9538:51:1;9511:18;;58823:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58802:61;;58874:41;58918:30;58937:10;58918:18;:30::i;:::-;58874:74;;59001:1;58967:23;:30;:35;;58959:90;;;;-1:-1:-1;;;58959:90:0;;;;;;;:::i;:::-;59101:1;59068:23;:30;:34;59060:89;;;;-1:-1:-1;;;59060:89:0;;;;;;;:::i;:::-;59170:41;59187:23;59170:16;:41::i;:::-;59222:44;59228:12;:10;:12::i;:::-;59242:23;:21;:23::i;59222:44::-;59277:25;:23;:25::i;28974:326::-;29091:7;29132:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29132:16:0;29181:19;29159:110;;;;-1:-1:-1;;;29159:110:0;;18535:2:1;29159:110:0;;;18517:21:1;18574:2;18554:18;;;18547:30;18613:34;18593:18;;;18586:62;-1:-1:-1;;;18664:18:1;;;18657:39;18713:19;;29159:110:0;18333:405:1;59905:143:0;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;59971:9:::1;59967:74;59986:7;;59984:1;:9;59967:74;;;60014:15;60020:3:::0;60025::::1;:1:::0;60027::::1;60025:3;:::i;60014:15::-;59995:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59967:74;;28617:295:::0;28734:7;-1:-1:-1;;;;;28781:19:0;;28759:111;;;;-1:-1:-1;;;28759:111:0;;18124:2:1;28759:111:0;;;18106:21:1;18163:2;18143:18;;;18136:30;18202:34;18182:18;;;18175:62;-1:-1:-1;;;18253:18:1;;;18246:40;18303:19;;28759:111:0;17922:406:1;28759:111:0;-1:-1:-1;;;;;;28888:16:0;;;;;:9;:16;;;;;;;28617:295::o;26238:94::-;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;26303:21:::1;26321:1;26303:9;:21::i;:::-;26238:94::o:0;55111:110::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63030:109::-;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;63127:4:::1;63114:10;;:17;;;;:::i;:::-;63101:10;:30:::0;-1:-1:-1;63030:109:0:o;59322:523::-;59390:9;;59372:15;:27;59364:71;;;;-1:-1:-1;;;59364:71:0;;;;;;;:::i;:::-;59472:7;;59454:15;:25;59446:59;;;;-1:-1:-1;;;59446:59:0;;;;;;;:::i;:::-;59552:10;;59524:21;;:25;;59548:1;59524:25;:::i;:::-;:38;59516:69;;;;-1:-1:-1;;;59516:69:0;;;;;;;:::i;:::-;59604:27;59618:12;:10;:12::i;59604:27::-;59596:67;;;;-1:-1:-1;;;59596:67:0;;16578:2:1;59596:67:0;;;16560:21:1;16617:2;16597:18;;;16590:30;16656:28;16636:18;;;16629:56;16702:18;;59596:67:0;16376:350:1;59596:67:0;59682:23;59692:12;:10;:12::i;59682:23::-;:28;59674:70;;;;-1:-1:-1;;;59674:70:0;;;;;;;:::i;:::-;59757:44;59763:12;:10;:12::i;59757:44::-;59812:25;:23;:25::i;29536:104::-;29592:13;29625:7;29618:14;;;;;:::i;55970:105::-;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;56042:16:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;56042:25:0;;::::1;::::0;;;::::1;::::0;;55970:105::o;61885:97::-;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;61955:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;31440:327::-:0;31587:12;:10;:12::i;:::-;-1:-1:-1;;;;;31575:24:0;:8;-1:-1:-1;;;;;31575:24:0;;;31567:62;;;;-1:-1:-1;;;31567:62:0;;15467:2:1;31567:62:0;;;15449:21:1;15506:2;15486:18;;;15479:30;15545:27;15525:18;;;15518:55;15590:18;;31567:62:0;15265:349:1;31567:62:0;31687:8;31642:18;:32;31661:12;:10;:12::i;:::-;-1:-1:-1;;;;;31642:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;31642:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;31642:53:0;;;;;;;;;;;31726:12;:10;:12::i;:::-;-1:-1:-1;;;;;31711:48:0;;31750:8;31711:48;;;;10995:14:1;10988:22;10970:41;;10958:2;10943:18;;10830:187;31711:48:0;;;;;;;;31440:327;;:::o;56192:105::-;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;56264:16:::1;:25:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56264:25:0;;::::1;::::0;;;::::1;::::0;;56192:105::o;54986:118::-;;;;;;;:::i;32822:365::-;33011:41;33030:12;:10;:12::i;:::-;33044:7;33011:18;:41::i;:::-;32989:140;;;;-1:-1:-1;;;32989:140:0;;;;;;;:::i;:::-;33140:39;33154:4;33160:2;33164:7;33173:5;33140:13;:39::i;:::-;32822:365;;;;:::o;55626:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55626:37:0;;-1:-1:-1;55626:37:0;:::o;60060:362::-;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;60176:17:::1;;60170:3;60146:21;;:27;;;;:::i;:::-;:47;60138:78;;;;-1:-1:-1::0;;;60138:78:0::1;;;;;;;:::i;:::-;60242:2;60235:3;:9;;60227:37;;;::::0;-1:-1:-1;;;60227:37:0;;15821:2:1;60227:37:0::1;::::0;::::1;15803:21:1::0;15860:2;15840:18;;;15833:30;-1:-1:-1;;;15879:18:1;;;15872:45;15934:18;;60227:37:0::1;15619:339:1::0;60227:37:0::1;60289:9;60285:130;60304:3;60302:1;:5;60285:130;;;60328:35;60334:3;60339:23;:21;:23::i;60328:35::-;60378:25;:23;:25::i;:::-;60309:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60285:130;;62123:773:::0;62225:13;62260:8;62272:1;62260:13;:42;;;;-1:-1:-1;62277:16:0;;;;:25;62260:42;62256:530;;;62326:19;62319:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62123:773;;;:::o;62256:530::-;62375:8;62387:1;62375:13;:42;;;;-1:-1:-1;62392:16:0;;;;;;;:25;62375:42;62372:414;;;62441:19;62434:26;;;;;:::i;62372:414::-;62490:8;62502:1;62490:13;:42;;;;-1:-1:-1;62507:16:0;;;;;;;:25;62490:42;62487:299;;;62556:19;62549:26;;;;;:::i;62487:299::-;62605:8;62617:1;62605:13;:42;;;;-1:-1:-1;62622:16:0;;;;;;;:25;62605:42;62602:184;;;62671:19;62664:26;;;;;:::i;62602:184::-;62720:10;;;;;;;62717:69;;62763:11;62756:18;;;;;:::i;62717:69::-;62837:12;62851:26;62868:8;62851:16;:26::i;:::-;62820:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62806:82;;62123:773;;;:::o;54867:112::-;;;;;;;:::i;56303:93::-;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;56369:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56369:19:0;;::::1;::::0;;;::::1;::::0;;56303:93::o;61052:144::-;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;61127:27:::1;61134:20;;61127:27;:::i;:::-;61161:29;:20;61184:6:::0;;61161:29:::1;:::i;26487:229::-:0;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26590:22:0;::::1;26568:110;;;::::0;-1:-1:-1;;;26568:110:0;;13530:2:1;26568:110:0::1;::::0;::::1;13512:21:1::0;13569:2;13549:18;;;13542:30;13608:34;13588:18;;;13581:62;-1:-1:-1;;;13659:18:1;;;13652:36;13705:19;;26568:110:0::1;13328:402:1::0;26568:110:0::1;26689:19;26699:8;26689:9;:19::i;56081:105::-:0;25818:12;:10;:12::i;:::-;-1:-1:-1;;;;;25807:23:0;:7;25660:6;;-1:-1:-1;;;;;25660:6:0;;25587:87;25807:7;-1:-1:-1;;;;;25807:23:0;;25799:68;;;;-1:-1:-1;;;25799:68:0;;;;;;;:::i;:::-;56153:16:::1;:25:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56153:25:0;;::::1;::::0;;;::::1;::::0;;56081:105::o;24291:618::-;24335:22;24374:10;24396:4;24374:27;24370:508;;;24418:18;24439:8;;24418:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;24478:8:0;24689:17;24683:24;-1:-1:-1;;;;;24657:134:0;;-1:-1:-1;24370:508:0;;-1:-1:-1;24370:508:0;;-1:-1:-1;24855:10:0;24370:508;24291:618;:::o;62904:120::-;62958:14;62992:24;:22;:24::i;:::-;62985:31;;62904:120;:::o;28198:355::-;28345:4;-1:-1:-1;;;;;;28387:40:0;;-1:-1:-1;;;28387:40:0;;:105;;-1:-1:-1;;;;;;;28444:48:0;;-1:-1:-1;;;28444:48:0;28387:105;:158;;;-1:-1:-1;;;;;;;;;;27168:40:0;;;28509:36;27009:207;38857:174;38932:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38932:29:0;-1:-1:-1;;;;;38932:29:0;;;;;;;;:24;;38986:23;38932:24;38986:14;:23::i;:::-;-1:-1:-1;;;;;38977:46:0;;;;;;;;;;;38857:174;;:::o;53590:486::-;53768:4;-1:-1:-1;;;;;53793:20:0;;53785:70;;;;-1:-1:-1;;;53785:70:0;;17293:2:1;53785:70:0;;;17275:21:1;17332:2;17312:18;;;17305:30;17371:34;17351:18;;;17344:62;-1:-1:-1;;;17422:18:1;;;17415:35;17467:19;;53785:70:0;17091:401:1;53785:70:0;53909:159;53937:47;53956:27;53976:6;53956:19;:27::i;:::-;53937:18;:47::i;:::-;53909:159;;;;;;;;;;;;11853:25:1;;;;11926:4;11914:17;;11894:18;;;11887:45;11948:18;;;11941:34;;;11991:18;;;11984:34;;;11825:19;;53909:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53886:182:0;:6;-1:-1:-1;;;;;53886:182:0;;53866:202;;53590:486;;;;;;;:::o;2514:98::-;2572:7;2599:5;2603:1;2599;:5;:::i;:::-;2592:12;2514:98;-1:-1:-1;;;2514:98:0:o;35028:452::-;35157:4;34823:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34823:16:0;35179:110;;;;-1:-1:-1;;;35179:110:0;;16165:2:1;35179:110:0;;;16147:21:1;16204:2;16184:18;;;16177:30;16243:34;16223:18;;;16216:62;-1:-1:-1;;;16294:18:1;;;16287:42;16346:19;;35179:110:0;15963:408:1;35179:110:0;35300:13;35316:23;35331:7;35316:14;:23::i;:::-;35300:39;;35369:5;-1:-1:-1;;;;;35358:16:0;:7;-1:-1:-1;;;;;35358:16:0;;:64;;;;35415:7;-1:-1:-1;;;;;35391:31:0;:20;35403:7;35391:11;:20::i;:::-;-1:-1:-1;;;;;35391:31:0;;35358:64;:113;;;-1:-1:-1;;;;;;32009:25:0;;;31980:4;32009:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35439:32;35350:122;35028:452;-1:-1:-1;;;;35028:452:0:o;38124:615::-;38297:4;-1:-1:-1;;;;;38270:31:0;:23;38285:7;38270:14;:23::i;:::-;-1:-1:-1;;;;;38270:31:0;;38248:122;;;;-1:-1:-1;;;38248:122:0;;20788:2:1;38248:122:0;;;20770:21:1;20827:2;20807:18;;;20800:30;20866:34;20846:18;;;20839:62;-1:-1:-1;;;20917:18:1;;;20910:39;20966:19;;38248:122:0;20586:405:1;38248:122:0;-1:-1:-1;;;;;38389:16:0;;38381:65;;;;-1:-1:-1;;;38381:65:0;;15062:2:1;38381:65:0;;;15044:21:1;15101:2;15081:18;;;15074:30;15140:34;15120:18;;;15113:62;-1:-1:-1;;;15191:18:1;;;15184:34;15235:19;;38381:65:0;14860:400:1;38381:65:0;38459:39;38480:4;38486:2;38490:7;38459:20;:39::i;:::-;38563:29;38580:1;38584:7;38563:8;:29::i;:::-;-1:-1:-1;;;;;38605:15:0;;;;;;:9;:15;;;;;:20;;38624:1;;38605:15;:20;;38624:1;;38605:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38636:13:0;;;;;;:9;:13;;;;;:18;;38653:1;;38636:13;:18;;38653:1;;38636:18;:::i;:::-;;;;-1:-1:-1;;38665:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38665:21:0;-1:-1:-1;;;;;38665:21:0;;;;;;;;;38704:27;;38665:16;;38704:27;;;;;;;38124:615;;;:::o;61610:118::-;61692:21;;61665:7;;61692:28;;61718:1;61692:25;:28::i;36816:382::-;-1:-1:-1;;;;;36896:16:0;;36888:61;;;;-1:-1:-1;;;36888:61:0;;18945:2:1;36888:61:0;;;18927:21:1;;;18964:18;;;18957:30;19023:34;19003:18;;;18996:62;19075:18;;36888:61:0;18743:356:1;36888:61:0;34799:4;34823:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34823:16:0;:30;36960:58;;;;-1:-1:-1;;;36960:58:0;;14294:2:1;36960:58:0;;;14276:21:1;14333:2;14313:18;;;14306:30;14372;14352:18;;;14345:58;14420:18;;36960:58:0;14092:352:1;36960:58:0;37031:45;37060:1;37064:2;37068:7;37031:20;:45::i;:::-;-1:-1:-1;;;;;37089:13:0;;;;;;:9;:13;;;;;:18;;37106:1;;37089:13;:18;;37106:1;;37089:18;:::i;:::-;;;;-1:-1:-1;;37118:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37118:21:0;-1:-1:-1;;;;;37118:21:0;;;;;;;;37157:33;;37118:16;;;37157:33;;37118:16;;37157:33;36816:382;;:::o;61736:141::-;61822:10;;61798:21;;:34;61790:43;;;;;;61846:21;:23;;;:21;:23;;;:::i;:::-;;;;;;61736:141::o;56408:898::-;56478:16;56507:38;56559:10;56548:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56548:22:0;;56507:63;;56581:30;56626;56696:6;56691:425;56712:10;56708:1;:14;56691:425;;;56763:16;;56742:18;;-1:-1:-1;;;;;56763:16:0;:36;56800:12;:10;:12::i;:::-;56763:53;;-1:-1:-1;;;;;;56763:53:0;;;;;;;-1:-1:-1;;;;;10743:32:1;;;56763:53:0;;;10725:51:1;10792:18;;;10785:34;;;10698:18;;56763:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56742:74;;56846:1;56833:10;:14;:56;;;;-1:-1:-1;56851:33:0;;;;:21;:33;;;;;;:38;56833:56;56829:276;;;56978:10;56930:21;56952:22;56930:45;;;;;;;;:::i;:::-;;;;;;;;;;:58;57005:24;;;;:::i;:::-;;;;56829:276;;;57066:25;;;;:::i;:::-;;;;56829:276;-1:-1:-1;56724:3:0;;;;:::i;:::-;;;;56691:425;;;-1:-1:-1;57139:26:0;;57136:163;;-1:-1:-1;;57213:13:0;;;57224:1;57213:13;;;;;;;;;57189:37;-1:-1:-1;;;56408:898:0:o;57136:163::-;-1:-1:-1;57266:21:0;;56408:898;-1:-1:-1;;;56408:898:0:o;57318:234::-;57410:6;57405:140;57426:23;:30;57422:1;:34;57405:140;;;57530:1;57478:21;:49;57500:23;57524:1;57500:26;;;;;;;;:::i;:::-;;;;;;;57478:49;;;;;;;;;;;:53;;;;57458:3;;;;;:::i;:::-;;;;57405:140;;61322:118;61404:21;;61377:7;;61404:28;;61430:1;61404:25;:28::i;61450:148::-;61536:17;;61512:21;;:41;61504:50;;;;;;61567:21;:23;;;:21;:23;;;:::i;26724:173::-;26799:6;;;-1:-1:-1;;;;;26816:17:0;;;-1:-1:-1;;;;;;26816:17:0;;;;;;;26849:40;;26799:6;;;26816:17;26799:6;;26849:40;;26780:16;;26849:40;26769:128;26724:173;:::o;34069:352::-;34226:28;34236:4;34242:2;34246:7;34226:9;:28::i;:::-;34287:48;34310:4;34316:2;34320:7;34329:5;34287:22;:48::i;:::-;34265:148;;;;-1:-1:-1;;;34265:148:0;;;;;;;:::i;6865:723::-;6921:13;7142:10;7138:53;;-1:-1:-1;;7169:10:0;;;;;;;;;;;;-1:-1:-1;;;7169:10:0;;;;;6865:723::o;7138:53::-;7216:5;7201:12;7257:78;7264:9;;7257:78;;7290:8;;;;:::i;:::-;;-1:-1:-1;7313:10:0;;-1:-1:-1;7321:2:0;7313:10;;:::i;:::-;;;7257:78;;;7345:19;7377:6;7367:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7367:17:0;;7345:39;;7395:154;7402:10;;7395:154;;7429:11;7439:1;7429:11;;:::i;:::-;;-1:-1:-1;7498:10:0;7506:2;7498:5;:10;:::i;:::-;7485:24;;:2;:24;:::i;:::-;7472:39;;7455:6;7462;7455:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7455:56:0;;;;;;;;-1:-1:-1;7526:11:0;7535:2;7526:11;;:::i;:::-;;;7395:154;;53057:410;53167:7;51222:108;;;;;;;;;;;;;;;;;51198:143;;;;;;;53321:12;;53356:11;;;;53400:24;;;;;53390:35;;;;;;53240:204;;;;;11435:25:1;;;11491:2;11476:18;;11469:34;;;;-1:-1:-1;;;;;11539:32:1;11534:2;11519:18;;11512:60;11603:2;11588:18;;11581:34;11422:3;11407:19;;11204:417;53240:204:0;;;;;;;;;;;;;53212:247;;;;;;53192:267;;53057:410;;;:::o;50788:258::-;50887:7;50989:20;50227:15;;;50149:101;50989:20;50960:63;;-1:-1:-1;;;50960:63:0;;;9253:27:1;9296:11;;;9289:27;;;;9332:12;;;9325:28;;;9369:12;;50960:63:0;8995:392:1;43814:589:0;-1:-1:-1;;;;;44020:18:0;;44016:187;;44055:40;44087:7;45230:10;:17;;45203:24;;;;:15;:24;;;;;:44;;;45258:24;;;;;;;;;;;;45126:164;44055:40;44016:187;;;44125:2;-1:-1:-1;;;;;44117:10:0;:4;-1:-1:-1;;;;;44117:10:0;;44113:90;;44144:47;44177:4;44183:7;44144:32;:47::i;:::-;-1:-1:-1;;;;;44217:16:0;;44213:183;;44250:45;44287:7;44250:36;:45::i;44213:183::-;44323:4;-1:-1:-1;;;;;44317:10:0;:2;-1:-1:-1;;;;;44317:10:0;;44313:83;;44344:40;44372:2;44376:7;44344:27;:40::i;39596:980::-;39751:4;-1:-1:-1;;;;;39772:13:0;;16780:20;16828:8;39768:801;;39841:2;-1:-1:-1;;;;;39825:36:0;;39884:12;:10;:12::i;:::-;39919:4;39946:7;39976:5;39825:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39825:175:0;;;;;;;;-1:-1:-1;;39825:175:0;;;;;;;;;;;;:::i;:::-;;;39804:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40183:13:0;;40179:320;;40226:108;;-1:-1:-1;;;40226:108:0;;;;;;;:::i;40179:320::-;40449:6;40443:13;40434:6;40430:2;40426:15;40419:38;39804:710;-1:-1:-1;;;;;;40064:51:0;-1:-1:-1;;;40064:51:0;;-1:-1:-1;40057:58:0;;39768:801;-1:-1:-1;40553:4:0;39596:980;;;;;;:::o;45917:1002::-;46197:22;46247:1;46222:22;46239:4;46222:16;:22::i;:::-;:26;;;;:::i;:::-;46259:18;46280:26;;;:17;:26;;;;;;46197:51;;-1:-1:-1;46413:28:0;;;46409:328;;-1:-1:-1;;;;;46480:18:0;;46458:19;46480:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46531:30;;;;;;:44;;;46648:30;;:17;:30;;;;;:43;;;46409:328;-1:-1:-1;46833:26:0;;;;:17;:26;;;;;;;;46826:33;;;-1:-1:-1;;;;;46877:18:0;;;;;:12;:18;;;;;:34;;;;;;;46870:41;45917:1002::o;47214:1079::-;47492:10;:17;47467:22;;47492:21;;47512:1;;47492:21;:::i;:::-;47524:18;47545:24;;;:15;:24;;;;;;47918:10;:26;;47467:46;;-1:-1:-1;47545:24:0;;47467:46;;47918:26;;;;;;:::i;:::-;;;;;;;;;47896:48;;47982:11;47957:10;47968;47957:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48062:28;;;:15;:28;;;;;;;:41;;;48234:24;;;;;48227:31;48269:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47285:1008;;;47214:1079;:::o;44704:221::-;44789:14;44806:20;44823:2;44806:16;:20::i;:::-;-1:-1:-1;;;;;44837:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44882:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44704:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:220;1035:5;1088:3;1081:4;1073:6;1069:17;1065:27;1055:55;;1106:1;1103;1096:12;1055:55;1128:79;1203:3;1194:6;1181:20;1174:4;1166:6;1162:17;1128:79;:::i;1218:186::-;1277:6;1330:2;1318:9;1309:7;1305:23;1301:32;1298:52;;;1346:1;1343;1336:12;1298:52;1369:29;1388:9;1369:29;:::i;1409:260::-;1477:6;1485;1538:2;1526:9;1517:7;1513:23;1509:32;1506:52;;;1554:1;1551;1544:12;1506:52;1577:29;1596:9;1577:29;:::i;:::-;1567:39;;1625:38;1659:2;1648:9;1644:18;1625:38;:::i;:::-;1615:48;;1409:260;;;;;:::o;1674:328::-;1751:6;1759;1767;1820:2;1808:9;1799:7;1795:23;1791:32;1788:52;;;1836:1;1833;1826:12;1788:52;1859:29;1878:9;1859:29;:::i;:::-;1849:39;;1907:38;1941:2;1930:9;1926:18;1907:38;:::i;:::-;1897:48;;1992:2;1981:9;1977:18;1964:32;1954:42;;1674:328;;;;;:::o;2007:537::-;2102:6;2110;2118;2126;2179:3;2167:9;2158:7;2154:23;2150:33;2147:53;;;2196:1;2193;2186:12;2147:53;2219:29;2238:9;2219:29;:::i;:::-;2209:39;;2267:38;2301:2;2290:9;2286:18;2267:38;:::i;:::-;2257:48;;2352:2;2341:9;2337:18;2324:32;2314:42;;2407:2;2396:9;2392:18;2379:32;2434:18;2426:6;2423:30;2420:50;;;2466:1;2463;2456:12;2420:50;2489:49;2530:7;2521:6;2510:9;2506:22;2489:49;:::i;:::-;2479:59;;;2007:537;;;;;;;:::o;2549:254::-;2614:6;2622;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;2714:29;2733:9;2714:29;:::i;:::-;2704:39;;2762:35;2793:2;2782:9;2778:18;2762:35;:::i;2808:689::-;2910:6;2918;2926;2934;2942;2995:3;2983:9;2974:7;2970:23;2966:33;2963:53;;;3012:1;3009;3002:12;2963:53;3035:29;3054:9;3035:29;:::i;:::-;3025:39;;3115:2;3104:9;3100:18;3087:32;3142:18;3134:6;3131:30;3128:50;;;3174:1;3171;3164:12;3128:50;3197:49;3238:7;3229:6;3218:9;3214:22;3197:49;:::i;:::-;3187:59;;;3293:2;3282:9;3278:18;3265:32;3255:42;;3344:2;3333:9;3329:18;3316:32;3306:42;;3398:3;3387:9;3383:19;3370:33;3443:4;3436:5;3432:16;3425:5;3422:27;3412:55;;3463:1;3460;3453:12;3412:55;3486:5;3476:15;;;2808:689;;;;;;;;:::o;3502:254::-;3570:6;3578;3631:2;3619:9;3610:7;3606:23;3602:32;3599:52;;;3647:1;3644;3637:12;3599:52;3670:29;3689:9;3670:29;:::i;:::-;3660:39;3746:2;3731:18;;;;3718:32;;-1:-1:-1;;;3502:254:1:o;3761:615::-;3847:6;3855;3908:2;3896:9;3887:7;3883:23;3879:32;3876:52;;;3924:1;3921;3914:12;3876:52;3964:9;3951:23;3993:18;4034:2;4026:6;4023:14;4020:34;;;4050:1;4047;4040:12;4020:34;4088:6;4077:9;4073:22;4063:32;;4133:7;4126:4;4122:2;4118:13;4114:27;4104:55;;4155:1;4152;4145:12;4104:55;4195:2;4182:16;4221:2;4213:6;4210:14;4207:34;;;4237:1;4234;4227:12;4207:34;4290:7;4285:2;4275:6;4272:1;4268:14;4264:2;4260:23;4256:32;4253:45;4250:65;;;4311:1;4308;4301:12;4250:65;4342:2;4334:11;;;;;4364:6;;-1:-1:-1;3761:615:1;;-1:-1:-1;;;;3761:615:1:o;4381:180::-;4437:6;4490:2;4478:9;4469:7;4465:23;4461:32;4458:52;;;4506:1;4503;4496:12;4458:52;4529:26;4545:9;4529:26;:::i;4566:245::-;4624:6;4677:2;4665:9;4656:7;4652:23;4648:32;4645:52;;;4693:1;4690;4683:12;4645:52;4732:9;4719:23;4751:30;4775:5;4751:30;:::i;4816:249::-;4885:6;4938:2;4926:9;4917:7;4913:23;4909:32;4906:52;;;4954:1;4951;4944:12;4906:52;4986:9;4980:16;5005:30;5029:5;5005:30;:::i;5070:450::-;5139:6;5192:2;5180:9;5171:7;5167:23;5163:32;5160:52;;;5208:1;5205;5198:12;5160:52;5248:9;5235:23;5281:18;5273:6;5270:30;5267:50;;;5313:1;5310;5303:12;5267:50;5336:22;;5389:4;5381:13;;5377:27;-1:-1:-1;5367:55:1;;5418:1;5415;5408:12;5367:55;5441:73;5506:7;5501:2;5488:16;5483:2;5479;5475:11;5441:73;:::i;5525:180::-;5584:6;5637:2;5625:9;5616:7;5612:23;5608:32;5605:52;;;5653:1;5650;5643:12;5605:52;-1:-1:-1;5676:23:1;;5525:180;-1:-1:-1;5525:180:1:o;5710:184::-;5780:6;5833:2;5821:9;5812:7;5808:23;5804:32;5801:52;;;5849:1;5846;5839:12;5801:52;-1:-1:-1;5872:16:1;;5710:184;-1:-1:-1;5710:184:1:o;5899:254::-;5967:6;5975;6028:2;6016:9;6007:7;6003:23;5999:32;5996:52;;;6044:1;6041;6034:12;5996:52;6080:9;6067:23;6057:33;;6109:38;6143:2;6132:9;6128:18;6109:38;:::i;6158:248::-;6226:6;6234;6287:2;6275:9;6266:7;6262:23;6258:32;6255:52;;;6303:1;6300;6293:12;6255:52;-1:-1:-1;;6326:23:1;;;6396:2;6381:18;;;6368:32;;-1:-1:-1;6158:248:1:o;6411:268::-;6463:3;6501:5;6495:12;6528:6;6523:3;6516:19;6544:63;6600:6;6593:4;6588:3;6584:14;6577:4;6570:5;6566:16;6544:63;:::i;:::-;6661:2;6640:15;-1:-1:-1;;6636:29:1;6627:39;;;;6668:4;6623:50;;6411:268;-1:-1:-1;;6411:268:1:o;6684:184::-;6725:3;6763:5;6757:12;6778:52;6823:6;6818:3;6811:4;6804:5;6800:16;6778:52;:::i;:::-;6846:16;;;;;6684:184;-1:-1:-1;;6684:184:1:o;6991:274::-;7120:3;7158:6;7152:13;7174:53;7220:6;7215:3;7208:4;7200:6;7196:17;7174:53;:::i;:::-;7243:16;;;;;6991:274;-1:-1:-1;;6991:274:1:o;7270:415::-;7427:3;7465:6;7459:13;7481:53;7527:6;7522:3;7515:4;7507:6;7503:17;7481:53;:::i;:::-;7603:2;7599:15;;;;-1:-1:-1;;7595:53:1;7556:16;;;;7581:68;;;7676:2;7665:14;;7270:415;-1:-1:-1;;7270:415:1:o;7690:1300::-;7967:3;7996:1;8029:6;8023:13;8059:3;8081:1;8109:9;8105:2;8101:18;8091:28;;8169:2;8158:9;8154:18;8191;8181:61;;8235:4;8227:6;8223:17;8213:27;;8181:61;8261:2;8309;8301:6;8298:14;8278:18;8275:38;8272:165;;;-1:-1:-1;;;8336:33:1;;8392:4;8389:1;8382:15;8422:4;8343:3;8410:17;8272:165;8453:18;8480:104;;;;8598:1;8593:320;;;;8446:467;;8480:104;-1:-1:-1;;8513:24:1;;8501:37;;8558:16;;;;-1:-1:-1;8480:104:1;;8593:320;23648:1;23641:14;;;23685:4;23672:18;;8688:1;8702:165;8716:6;8713:1;8710:13;8702:165;;;8794:14;;8781:11;;;8774:35;8837:16;;;;8731:10;;8702:165;;;8706:3;;8896:6;8891:3;8887:16;8880:23;;8446:467;;;;;;;8929:55;8954:29;8979:3;8971:6;8954:29;:::i;:::-;-1:-1:-1;;;6933:20:1;;6978:1;6969:11;;6873:113;8929:55;8922:62;7690:1300;-1:-1:-1;;;;;7690:1300:1:o;9600:442::-;-1:-1:-1;;;;;9857:15:1;;;9839:34;;9909:15;;9904:2;9889:18;;9882:43;9961:2;9956;9941:18;;9934:30;;;9782:4;;9981:55;;10017:18;;10009:6;9981:55;:::i;10047:499::-;-1:-1:-1;;;;;10316:15:1;;;10298:34;;10368:15;;10363:2;10348:18;;10341:43;10415:2;10400:18;;10393:34;;;10463:3;10458:2;10443:18;;10436:31;;;10241:4;;10484:56;;10520:19;;10512:6;10484:56;:::i;:::-;10476:64;10047:499;-1:-1:-1;;;;;;10047:499:1:o;12029:228::-;12176:2;12165:9;12158:21;12139:4;12196:55;12247:2;12236:9;12232:18;12224:6;12196:55;:::i;12909:414::-;13111:2;13093:21;;;13150:2;13130:18;;;13123:30;13189:34;13184:2;13169:18;;13162:62;-1:-1:-1;;;13255:2:1;13240:18;;13233:48;13313:3;13298:19;;12909:414::o;14449:406::-;14651:2;14633:21;;;14690:2;14670:18;;;14663:30;14729:34;14724:2;14709:18;;14702:62;-1:-1:-1;;;14795:2:1;14780:18;;14773:40;14845:3;14830:19;;14449:406::o;16731:355::-;16933:2;16915:21;;;16972:2;16952:18;;;16945:30;17011:33;17006:2;16991:18;;16984:61;17077:2;17062:18;;16731:355::o;19104:353::-;19306:2;19288:21;;;19345:2;19325:18;;;19318:30;19384:31;19379:2;19364:18;;19357:59;19448:2;19433:18;;19104:353::o;19875:345::-;20077:2;20059:21;;;20116:2;20096:18;;;20089:30;-1:-1:-1;;;20150:2:1;20135:18;;20128:51;20211:2;20196:18;;19875:345::o;20225:356::-;20427:2;20409:21;;;20446:18;;;20439:30;20505:34;20500:2;20485:18;;20478:62;20572:2;20557:18;;20225:356::o;22215:413::-;22417:2;22399:21;;;22456:2;22436:18;;;22429:30;22495:34;22490:2;22475:18;;22468:62;-1:-1:-1;;;22561:2:1;22546:18;;22539:47;22618:3;22603:19;;22215:413::o;23046:342::-;23248:2;23230:21;;;23287:2;23267:18;;;23260:30;-1:-1:-1;;;23321:2:1;23306:18;;23299:48;23379:2;23364:18;;23046:342::o;23701:128::-;23741:3;23772:1;23768:6;23765:1;23762:13;23759:39;;;23778:18;;:::i;:::-;-1:-1:-1;23814:9:1;;23701:128::o;23834:120::-;23874:1;23900;23890:35;;23905:18;;:::i;:::-;-1:-1:-1;23939:9:1;;23834:120::o;23959:125::-;23999:4;24027:1;24024;24021:8;24018:34;;;24032:18;;:::i;:::-;-1:-1:-1;24069:9:1;;23959:125::o;24089:258::-;24161:1;24171:113;24185:6;24182:1;24179:13;24171:113;;;24261:11;;;24255:18;24242:11;;;24235:39;24207:2;24200:10;24171:113;;;24302:6;24299:1;24296:13;24293:48;;;-1:-1:-1;;24337:1:1;24319:16;;24312:27;24089:258::o;24352:380::-;24431:1;24427:12;;;;24474;;;24495:61;;24549:4;24541:6;24537:17;24527:27;;24495:61;24602:2;24594:6;24591:14;24571:18;24568:38;24565:161;;;24648:10;24643:3;24639:20;24636:1;24629:31;24683:4;24680:1;24673:15;24711:4;24708:1;24701:15;24565:161;;24352:380;;;:::o;24737:135::-;24776:3;-1:-1:-1;;24797:17:1;;24794:43;;;24817:18;;:::i;:::-;-1:-1:-1;24864:1:1;24853:13;;24737:135::o;24877:112::-;24909:1;24935;24925:35;;24940:18;;:::i;:::-;-1:-1:-1;24974:9:1;;24877:112::o;24994:127::-;25055:10;25050:3;25046:20;25043:1;25036:31;25086:4;25083:1;25076:15;25110:4;25107:1;25100:15;25126:127;25187:10;25182:3;25178:20;25175:1;25168:31;25218:4;25215:1;25208:15;25242:4;25239:1;25232:15;25258:127;25319:10;25314:3;25310:20;25307:1;25300:31;25350:4;25347:1;25340:15;25374:4;25371:1;25364:15;25390:127;25451:10;25446:3;25442:20;25439:1;25432:31;25482:4;25479:1;25472:15;25506:4;25503:1;25496:15;25522:127;25583:10;25578:3;25574:20;25571:1;25564:31;25614:4;25611:1;25604:15;25638:4;25635:1;25628:15;25654:131;-1:-1:-1;;;;;;25728:32:1;;25718:43;;25708:71;;25775:1;25772;25765:12

Swarm Source

ipfs://caabfbd322aa6d862c9b8cd5419893b64ef08fa45cd014b01e3878fba96157e9
Loading...
Loading
Loading...
Loading
[ 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.