ETH Price: $2,546.09 (+3.43%)

Token

Alienoids (AL)
 

Overview

Max Total Supply

534 AL

Holders

217

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
foulplane.eth
Balance
1 AL
0x192fa76bc10e9fd4908d4fa8e3a6ad5508c85acb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Alienoids

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-09-29
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
//Written 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
            );
    }
}


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

    uint256 public _currentTokenId = 0;

    uint256 MAX_SUPPLY =  9900;
    string public baseTokenURI;
    
    uint256 public presale_Startdate;
    uint256 public presale_Enddate;
    bool public end_presale = false;
    
    uint256 public NFT_price = 0.05 ether; 

    uint256 public startTime = block.timestamp;
    string _name = "Alienoids";
    string _symbol = "AL";
    
  address[] public whitelistedAddresses;
    


    constructor() ERC721(_name, _symbol) {
        // baseTokenURI = _uri;
        _initializeEIP712(_name);
    }
    
    function set_start_time(uint256 time) external onlyOwner{
        startTime = time;
    }
    function set_presale_dates(uint256 start, uint256 end) external onlyOwner{
        presale_Startdate = start;
        presale_Enddate = end;
    }
    function end_presale_manually() external onlyOwner{
        end_presale = true;
    }
    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        require(_currentTokenId < MAX_SUPPLY, "Max Supply Reached");
        uint256 newTokenId = _getNextTokenId();
        _mint(_to, newTokenId);
        _incrementTokenId();
    }
    
    function mintPresale() external payable{
        require(block.timestamp > presale_Startdate, "Presale have not started yet.");
        require(block.timestamp < presale_Enddate, "Presale Ended.");
        require(_currentTokenId < MAX_SUPPLY, "Max Supply Reached");
        require(end_presale == false,"Presale Ended");
        require(isWhitelisted(_msgSender()) , "You are not Whitelisted.");
        require(msg.value == NFT_price, "Sent Amount Not Enough");

        _mint(msg.sender, _getNextTokenId());
        _incrementTokenId();
    }
    
    function mintManyPresale(uint256 num, address _to) external payable{
        require(block.timestamp > presale_Startdate, "Presale have not started yet.");
        require(block.timestamp < presale_Enddate, "Presale Ended.");
        require(_currentTokenId < MAX_SUPPLY, "Max Supply Reached");
        require(end_presale == false,"Presale Ended");
        require(isWhitelisted(_msgSender()) , "You are not Whitelisted.");
        require(num <= 20, "Max 20 Allowed.");
        require(msg.value == NFT_price.mul(num), "Sent Amount Not Enough");
        
        for(uint256 i=0; i<num; i++){
            _mint(_to,  _getNextTokenId());
            _incrementTokenId();
        }
    }
    
    function mintMany(uint256 num, address _to) public onlyOwner {
        require(_currentTokenId + num < MAX_SUPPLY, "Max Supply Reached");
        require(num <= 20, "Max 20 Allowed.");
        for(uint256 i=0; i<num; i++){

            _mint(_to, _getNextTokenId());
            _incrementTokenId();
        }
    }
    

    function buy() public payable {
        require(block.timestamp >= startTime, "It's not time yet");
        require(msg.value == NFT_price, "Sent Amount Not Enough");
        require(_currentTokenId < MAX_SUPPLY, "Max Supply Reached");
    

            _mint(msg.sender, _getNextTokenId());
            _incrementTokenId();
    }
    
    function buyMany(uint256 num, address _to) public payable {
        require(block.timestamp >= startTime, "It's not time yet");
        require(msg.value == NFT_price.mul(num), "Sent Amount Wrong");
        require(_currentTokenId + num < MAX_SUPPLY, "Max Supply Reached");
        
        require(num <= 20, "Max 20 Allowed.");
        for(uint256 i=0; i<num; i++){

            _mint(_to, _getNextTokenId());
            _incrementTokenId();
        }
    }
  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 isPresaleActive() external view returns (bool){

      if(block.timestamp > presale_Startdate && block.timestamp < presale_Enddate && end_presale == false ){
          return true;
      }else{
          return false;
      }
  }
  
  function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }

    function _incrementTokenId() private {
        require(_currentTokenId < MAX_SUPPLY);

        _currentTokenId++;
    }

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

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return
            string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId)));
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    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":"NFT_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_currentTokenId","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":[],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"buyMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"end_presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"end_presale_manually","outputs":[],"stateMutability":"nonpayable","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":[],"name":"isPresaleActive","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":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintManyPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","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":"presale_Enddate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_Startdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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_presale_dates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"set_start_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","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":[{"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"}]

600a805460ff199081169091556000600e556126ac600f5560138054909116905566b1a2bc2ec500006014554260155560c06040526009608081905268416c69656e6f69647360b81b60a09081526200005c91601691906200047c565b5060408051808201909152600280825261105360f21b602090920191825262000088916017916200047c565b503480156200009657600080fd5b5060168054620000a69062000522565b80601f0160208091040260200160405190810160405280929190818152602001828054620000d49062000522565b8015620001255780601f10620000f95761010080835404028352916020019162000125565b820191906000526020600020905b8154815290600101906020018083116200010757829003601f168201915b505050505060178054620001399062000522565b80601f0160208091040260200160405190810160405280929190818152602001828054620001679062000522565b8015620001b85780601f106200018c57610100808354040283529160200191620001b8565b820191906000526020600020905b8154815290600101906020018083116200019a57829003601f168201915b50508451620001d29350600092506020860191506200047c565b508051620001e89060019060208401906200047c565b50505062000205620001ff620002a960201b60201c565b620002c5565b620002a360168054620002189062000522565b80601f0160208091040260200160405190810160405280929190818152602001828054620002469062000522565b8015620002975780601f106200026b5761010080835404028352916020019162000297565b820191906000526020600020905b8154815290600101906020018083116200027957829003601f168201915b50506200031792505050565b6200055f565b6000620002c06200037b60201b62001baa1760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620003605760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b6200036b81620003da565b50600a805460ff19166001179055565b600033301415620003d457600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620003d79050565b50335b90565b6040518060800160405280604f8152602001620036fb604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b8280546200048a9062000522565b90600052602060002090601f016020900481019282620004ae5760008555620004f9565b82601f10620004c957805160ff1916838001178555620004f9565b82800160010185558215620004f9579182015b82811115620004f9578251825591602001919060010190620004dc565b50620005079291506200050b565b5090565b5b808211156200050757600081556001016200050c565b600181811c908216806200053757607f821691505b602082108114156200055957634e487b7160e01b600052602260045260246000fd5b50919050565b61318c806200056f6000396000f3fe6080604052600436106102885760003560e01c8063748973151161015a578063b8c73cc2116100c1578063d9bf49361161007a578063d9bf49361461073e578063db5996981461075e578063e985e9c514610766578063ec5e0039146107af578063edec5f27146107c2578063f2fde38b146107e257600080fd5b8063b8c73cc2146106a7578063ba4e5c49146106bd578063c87b56dd146106dd578063c963483c146106fd578063d547cfb714610713578063d71ac32e1461072857600080fd5b806395d89b411161011357806395d89b411461060a578063a0bcfc7f1461061f578063a22cb4651461063f578063a6f2ae3a1461065f578063b27b1a6d14610667578063b88d4fde1461068757600080fd5b80637489731514610563578063755edd171461058357806378e97925146105a35780638da5cb5b146105b95780638f28f06e146105d757806390edbfee146105ea57600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146104c457806360d938dc146104e457806362422612146104f95780636352211e1461050e57806370a082311461052e578063715018a61461054e57600080fd5b80632f745c59146104225780633408e470146104425780633af32abf146104555780633ccfd60b146104755780634114e8a41461048a57806342842e0e146104a457600080fd5b80630f7e5970116102505780630f7e59701461035157806316c8c21b1461037e57806318160ddd146103a257806320379ee5146103b757806323b872dd146103cc5780632d0335ab146103ec57600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630c53c51c1461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612b9b565b610802565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d761082d565b6040516102b99190612e27565b3480156102f057600080fd5b506103046102ff366004612c1e565b6108bf565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612afc565b610959565b005b6102d761034c366004612a80565b610a81565b34801561035d57600080fd5b506102d7604051806040016040528060018152602001603160f81b81525081565b34801561038a57600080fd5b5061039460115481565b6040519081526020016102b9565b3480156103ae57600080fd5b50600854610394565b3480156103c357600080fd5b50600b54610394565b3480156103d857600080fd5b5061033c6103e73660046129a0565b610c6b565b3480156103f857600080fd5b50610394610407366004612952565b6001600160a01b03166000908152600c602052604090205490565b34801561042e57600080fd5b5061039461043d366004612afc565b610ca3565b34801561044e57600080fd5b5046610394565b34801561046157600080fd5b506102ad610470366004612952565b610d39565b34801561048157600080fd5b5061033c610da3565b34801561049657600080fd5b506013546102ad9060ff1681565b3480156104b057600080fd5b5061033c6104bf3660046129a0565b610e28565b3480156104d057600080fd5b506103946104df366004612c1e565b610e43565b3480156104f057600080fd5b506102ad610ed6565b34801561050557600080fd5b5061033c610f0d565b34801561051a57600080fd5b50610304610529366004612c1e565b610f65565b34801561053a57600080fd5b50610394610549366004612952565b610fdc565b34801561055a57600080fd5b5061033c611063565b34801561056f57600080fd5b5061033c61057e366004612c37565b6110b8565b34801561058f57600080fd5b5061033c61059e366004612952565b611186565b3480156105af57600080fd5b5061039460155481565b3480156105c557600080fd5b50600d546001600160a01b0316610304565b61033c6105e5366004612c37565b611214565b3480156105f657600080fd5b5061033c610605366004612c1e565b611329565b34801561061657600080fd5b506102d7611386565b34801561062b57600080fd5b5061033c61063a366004612bd5565b611395565b34801561064b57600080fd5b5061033c61065a366004612a44565b6113f1565b61033c6114f3565b34801561067357600080fd5b5061033c610682366004612c1e565b611591565b34801561069357600080fd5b5061033c6106a23660046129dc565b6115df565b3480156106b357600080fd5b5061039460125481565b3480156106c957600080fd5b506103046106d8366004612c1e565b61161e565b3480156106e957600080fd5b506102d76106f8366004612c1e565b611648565b34801561070957600080fd5b50610394600e5481565b34801561071f57600080fd5b506102d761167c565b34801561073457600080fd5b5061039460145481565b34801561074a57600080fd5b5061033c610759366004612c5a565b61170a565b61033c61175e565b34801561077257600080fd5b506102ad61078136600461296d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61033c6107bd366004612c37565b6118ca565b3480156107ce57600080fd5b5061033c6107dd366004612b26565b611a92565b3480156107ee57600080fd5b5061033c6107fd366004612952565b611af3565b60006001600160e01b0319821663780e9d6360e01b1480610827575061082782611c06565b92915050565b60606000805461083c90613025565b80601f016020809104026020016040519081016040528092919081815260200182805461086890613025565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661093d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096482610f65565b9050806001600160a01b0316836001600160a01b031614156109d25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610934565b806001600160a01b03166109e4611c56565b6001600160a01b03161480610a005750610a0081610781611c56565b610a725760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610934565b610a7c8383611c65565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610abf8782878787611cd3565b610b155760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610934565b6001600160a01b0387166000908152600c6020526040902054610b39906001611dc3565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610b8990899033908a90612dbe565b60405180910390a1600080306001600160a01b0316888a604051602001610bb1929190612ce0565b60408051601f1981840301815290829052610bcb91612cc4565b6000604051808303816000865af19150503d8060008114610c08576040519150601f19603f3d011682016040523d82523d6000602084013e610c0d565b606091505b509150915081610c5f5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610934565b98975050505050505050565b610c7c610c76611c56565b82611dd6565b610c985760405162461bcd60e51b815260040161093490612f1a565b610a7c838383611ecd565b6000610cae83610fdc565b8210610d105760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610934565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601854811015610d9a57826001600160a01b031660188281548110610d6457610d646130d1565b6000918252602090912001546001600160a01b03161415610d885750600192915050565b80610d9281613060565b915050610d3d565b50600092915050565b610dab611c56565b6001600160a01b0316610dc6600d546001600160a01b031690565b6001600160a01b031614610dec5760405162461bcd60e51b815260040161093490612eb5565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e25573d6000803e3d6000fd5b50565b610a7c838383604051806020016040528060008152506115df565b6000610e4e60085490565b8210610eb15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610934565b60088281548110610ec457610ec46130d1565b90600052602060002001549050919050565b600060115442118015610eea575060125442105b8015610ef9575060135460ff16155b15610f045750600190565b50600090565b90565b610f15611c56565b6001600160a01b0316610f30600d546001600160a01b031690565b6001600160a01b031614610f565760405162461bcd60e51b815260040161093490612eb5565b6013805460ff19166001179055565b6000818152600260205260408120546001600160a01b0316806108275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610934565b60006001600160a01b0382166110475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610934565b506001600160a01b031660009081526003602052604090205490565b61106b611c56565b6001600160a01b0316611086600d546001600160a01b031690565b6001600160a01b0316146110ac5760405162461bcd60e51b815260040161093490612eb5565b6110b66000612078565b565b6110c0611c56565b6001600160a01b03166110db600d546001600160a01b031690565b6001600160a01b0316146111015760405162461bcd60e51b815260040161093490612eb5565b600f5482600e546111129190612f97565b1061112f5760405162461bcd60e51b815260040161093490612f6b565b60148211156111505760405162461bcd60e51b815260040161093490612e8c565b60005b82811015610a7c5761116c826111676120ca565b6120db565b611174612229565b8061117e81613060565b915050611153565b61118e611c56565b6001600160a01b03166111a9600d546001600160a01b031690565b6001600160a01b0316146111cf5760405162461bcd60e51b815260040161093490612eb5565b600f54600e54106111f25760405162461bcd60e51b815260040161093490612f6b565b60006111fc6120ca565b905061120882826120db565b611210612229565b5050565b60155442101561125a5760405162461bcd60e51b8152602060048201526011602482015270125d09dcc81b9bdd081d1a5b59481e595d607a1b6044820152606401610934565b6014546112679083612250565b34146112a95760405162461bcd60e51b815260206004820152601160248201527053656e7420416d6f756e742057726f6e6760781b6044820152606401610934565b600f5482600e546112ba9190612f97565b106112d75760405162461bcd60e51b815260040161093490612f6b565b60148211156112f85760405162461bcd60e51b815260040161093490612e8c565b60005b82811015610a7c5761130f826111676120ca565b611317612229565b8061132181613060565b9150506112fb565b611331611c56565b6001600160a01b031661134c600d546001600160a01b031690565b6001600160a01b0316146113725760405162461bcd60e51b815260040161093490612eb5565b80600f546113809190612f97565b600f5550565b60606001805461083c90613025565b61139d611c56565b6001600160a01b03166113b8600d546001600160a01b031690565b6001600160a01b0316146113de5760405162461bcd60e51b815260040161093490612eb5565b8051611210906010906020840190612796565b6113f9611c56565b6001600160a01b0316826001600160a01b0316141561145a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610934565b8060056000611467611c56565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556114ab611c56565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e7911515815260200190565b60405180910390a35050565b6015544210156115395760405162461bcd60e51b8152602060048201526011602482015270125d09dcc81b9bdd081d1a5b59481e595d607a1b6044820152606401610934565b601454341461155a5760405162461bcd60e51b815260040161093490612eea565b600f54600e541061157d5760405162461bcd60e51b815260040161093490612f6b565b611589336111676120ca565b6110b6612229565b611599611c56565b6001600160a01b03166115b4600d546001600160a01b031690565b6001600160a01b0316146115da5760405162461bcd60e51b815260040161093490612eb5565b601555565b6115f06115ea611c56565b83611dd6565b61160c5760405162461bcd60e51b815260040161093490612f1a565b6116188484848461225c565b50505050565b6018818154811061162e57600080fd5b6000918252602090912001546001600160a01b0316905081565b606060106116558361228f565b604051602001611666929190612d17565b6040516020818303038152906040529050919050565b6010805461168990613025565b80601f01602080910402602001604051908101604052809291908181526020018280546116b590613025565b80156117025780601f106116d757610100808354040283529160200191611702565b820191906000526020600020905b8154815290600101906020018083116116e557829003601f168201915b505050505081565b611712611c56565b6001600160a01b031661172d600d546001600160a01b031690565b6001600160a01b0316146117535760405162461bcd60e51b815260040161093490612eb5565b601191909155601255565b60115442116117af5760405162461bcd60e51b815260206004820152601d60248201527f50726573616c652068617665206e6f742073746172746564207965742e0000006044820152606401610934565b60125442106117f15760405162461bcd60e51b815260206004820152600e60248201526d283932b9b0b6329022b73232b21760911b6044820152606401610934565b600f54600e54106118145760405162461bcd60e51b815260040161093490612f6b565b60135460ff16156118575760405162461bcd60e51b815260206004820152600d60248201526c141c995cd85b1948115b991959609a1b6044820152606401610934565b611862610470611c56565b6118a95760405162461bcd60e51b81526020600482015260186024820152772cb7ba9030b932903737ba102bb434ba32b634b9ba32b21760411b6044820152606401610934565b601454341461157d5760405162461bcd60e51b815260040161093490612eea565b601154421161191b5760405162461bcd60e51b815260206004820152601d60248201527f50726573616c652068617665206e6f742073746172746564207965742e0000006044820152606401610934565b601254421061195d5760405162461bcd60e51b815260206004820152600e60248201526d283932b9b0b6329022b73232b21760911b6044820152606401610934565b600f54600e54106119805760405162461bcd60e51b815260040161093490612f6b565b60135460ff16156119c35760405162461bcd60e51b815260206004820152600d60248201526c141c995cd85b1948115b991959609a1b6044820152606401610934565b6119ce610470611c56565b611a155760405162461bcd60e51b81526020600482015260186024820152772cb7ba9030b932903737ba102bb434ba32b634b9ba32b21760411b6044820152606401610934565b6014821115611a365760405162461bcd60e51b815260040161093490612e8c565b601454611a439083612250565b3414611a615760405162461bcd60e51b815260040161093490612eea565b60005b82811015610a7c57611a78826111676120ca565b611a80612229565b80611a8a81613060565b915050611a64565b611a9a611c56565b6001600160a01b0316611ab5600d546001600160a01b031690565b6001600160a01b031614611adb5760405162461bcd60e51b815260040161093490612eb5565b611ae76018600061281a565b610a7c60188383612838565b611afb611c56565b6001600160a01b0316611b16600d546001600160a01b031690565b6001600160a01b031614611b3c5760405162461bcd60e51b815260040161093490612eb5565b6001600160a01b038116611ba15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610934565b610e2581612078565b600033301415611c0157600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150610f0a9050565b503390565b60006001600160e01b031982166380ac58cd60e01b1480611c3757506001600160e01b03198216635b5e139f60e01b145b8061082757506301ffc9a760e01b6001600160e01b0319831614610827565b6000611c60611baa565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c9a82610f65565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611d395760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610934565b6001611d4c611d478761238d565b61240a565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611d9a573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611dcf8284612f97565b9392505050565b6000818152600260205260408120546001600160a01b0316611e4f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610934565b6000611e5a83610f65565b9050806001600160a01b0316846001600160a01b03161480611e955750836001600160a01b0316611e8a846108bf565b6001600160a01b0316145b80611ec557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ee082610f65565b6001600160a01b031614611f485760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610934565b6001600160a01b038216611faa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610934565b611fb583838361243a565b611fc0600082611c65565b6001600160a01b0383166000908152600360205260408120805460019290611fe9908490612fe2565b90915550506001600160a01b0382166000908152600360205260408120805460019290612017908490612f97565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e54600090611c60906001611dc3565b6001600160a01b0382166121315760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610934565b6000818152600260205260409020546001600160a01b0316156121965760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610934565b6121a26000838361243a565b6001600160a01b03821660009081526003602052604081208054600192906121cb908490612f97565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f54600e541061223957600080fd5b600e805490600061224983613060565b9190505550565b6000611dcf8284612fc3565b612267848484611ecd565b612273848484846124f2565b6116185760405162461bcd60e51b815260040161093490612e3a565b6060816122b35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122dd57806122c781613060565b91506122d69050600a83612faf565b91506122b7565b60008167ffffffffffffffff8111156122f8576122f86130e7565b6040519080825280601f01601f191660200182016040528015612322576020820181803683370190505b5090505b8415611ec557612337600183612fe2565b9150612344600a8661307b565b61234f906030612f97565b60f81b818381518110612364576123646130d1565b60200101906001600160f81b031916908160001a905350612386600a86612faf565b9450612326565b600060405180608001604052806043815260200161311460439139805160209182012083518483015160408087015180519086012090516123ed950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612415600b5490565b60405161190160f01b60208201526022810191909152604281018390526062016123ed565b6001600160a01b0383166124955761249081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124b8565b816001600160a01b0316836001600160a01b0316146124b8576124b88382612606565b6001600160a01b0382166124cf57610a7c816126a3565b826001600160a01b0316826001600160a01b031614610a7c57610a7c8282612752565b60006001600160a01b0384163b156125fb57836001600160a01b031663150b7a0261251b611c56565b8786866040518563ffffffff1660e01b815260040161253d9493929190612dea565b602060405180830381600087803b15801561255757600080fd5b505af1925050508015612587575060408051601f3d908101601f1916820190925261258491810190612bb8565b60015b6125e1573d8080156125b5576040519150601f19603f3d011682016040523d82523d6000602084013e6125ba565b606091505b5080516125d95760405162461bcd60e51b815260040161093490612e3a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ec5565b506001949350505050565b6000600161261384610fdc565b61261d9190612fe2565b600083815260076020526040902054909150808214612670576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126b590600190612fe2565b600083815260096020526040812054600880549394509092849081106126dd576126dd6130d1565b9060005260206000200154905080600883815481106126fe576126fe6130d1565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612736576127366130bb565b6001900381819060005260206000200160009055905550505050565b600061275d83610fdc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546127a290613025565b90600052602060002090601f0160209004810192826127c4576000855561280a565b82601f106127dd57805160ff191683800117855561280a565b8280016001018555821561280a579182015b8281111561280a5782518255916020019190600101906127ef565b5061281692915061288b565b5090565b5080546000825590600052602060002090810190610e25919061288b565b82805482825590600052602060002090810192821561280a579160200282015b8281111561280a5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612858565b5b80821115612816576000815560010161288c565b600067ffffffffffffffff808411156128bb576128bb6130e7565b604051601f8501601f19908116603f011681019082821181831017156128e3576128e36130e7565b816040528093508581528686860111156128fc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461292d57600080fd5b919050565b600082601f83011261294357600080fd5b611dcf838335602085016128a0565b60006020828403121561296457600080fd5b611dcf82612916565b6000806040838503121561298057600080fd5b61298983612916565b915061299760208401612916565b90509250929050565b6000806000606084860312156129b557600080fd5b6129be84612916565b92506129cc60208501612916565b9150604084013590509250925092565b600080600080608085870312156129f257600080fd5b6129fb85612916565b9350612a0960208601612916565b925060408501359150606085013567ffffffffffffffff811115612a2c57600080fd5b612a3887828801612932565b91505092959194509250565b60008060408385031215612a5757600080fd5b612a6083612916565b915060208301358015158114612a7557600080fd5b809150509250929050565b600080600080600060a08688031215612a9857600080fd5b612aa186612916565b9450602086013567ffffffffffffffff811115612abd57600080fd5b612ac988828901612932565b9450506040860135925060608601359150608086013560ff81168114612aee57600080fd5b809150509295509295909350565b60008060408385031215612b0f57600080fd5b612b1883612916565b946020939093013593505050565b60008060208385031215612b3957600080fd5b823567ffffffffffffffff80821115612b5157600080fd5b818501915085601f830112612b6557600080fd5b813581811115612b7457600080fd5b8660208260051b8501011115612b8957600080fd5b60209290920196919550909350505050565b600060208284031215612bad57600080fd5b8135611dcf816130fd565b600060208284031215612bca57600080fd5b8151611dcf816130fd565b600060208284031215612be757600080fd5b813567ffffffffffffffff811115612bfe57600080fd5b8201601f81018413612c0f57600080fd5b611ec5848235602084016128a0565b600060208284031215612c3057600080fd5b5035919050565b60008060408385031215612c4a57600080fd5b8235915061299760208401612916565b60008060408385031215612c6d57600080fd5b50508035926020909101359150565b60008151808452612c94816020860160208601612ff9565b601f01601f19169290920160200192915050565b60008151612cba818560208601612ff9565b9290920192915050565b60008251612cd6818460208701612ff9565b9190910192915050565b60008351612cf2818460208801612ff9565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600080845481600182811c915080831680612d3357607f831692505b6020808410821415612d5357634e487b7160e01b86526022600452602486fd5b818015612d675760018114612d7857612da5565b60ff19861689528489019650612da5565b60008b81526020902060005b86811015612d9d5781548b820152908501908301612d84565b505084890196505b505050505050612db58185612ca8565b95945050505050565b6001600160a01b03848116825283166020820152606060408201819052600090612db590830184612c7c565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e1d90830184612c7c565b9695505050505050565b602081526000611dcf6020830184612c7c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e26b0bc1019181020b63637bbb2b21760891b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152750a6cadce84082dadeeadce8409cdee8408adcdeeaced60531b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526012908201527113585e0814dd5c1c1b1e4814995858da195960721b604082015260600190565b60008219821115612faa57612faa61308f565b500190565b600082612fbe57612fbe6130a5565b500490565b6000816000190483118215151615612fdd57612fdd61308f565b500290565b600082821015612ff457612ff461308f565b500390565b60005b83811015613014578181015183820152602001612ffc565b838111156116185750506000910152565b600181811c9082168061303957607f821691505b6020821081141561305a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130745761307461308f565b5060010190565b60008261308a5761308a6130a5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e2557600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212208ab7f3d922032eaa938667aeb07ef1b9de22f8bca0132d2de2a82d9ca65dc6ce64736f6c63430008070033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429

Deployed Bytecode

0x6080604052600436106102885760003560e01c8063748973151161015a578063b8c73cc2116100c1578063d9bf49361161007a578063d9bf49361461073e578063db5996981461075e578063e985e9c514610766578063ec5e0039146107af578063edec5f27146107c2578063f2fde38b146107e257600080fd5b8063b8c73cc2146106a7578063ba4e5c49146106bd578063c87b56dd146106dd578063c963483c146106fd578063d547cfb714610713578063d71ac32e1461072857600080fd5b806395d89b411161011357806395d89b411461060a578063a0bcfc7f1461061f578063a22cb4651461063f578063a6f2ae3a1461065f578063b27b1a6d14610667578063b88d4fde1461068757600080fd5b80637489731514610563578063755edd171461058357806378e97925146105a35780638da5cb5b146105b95780638f28f06e146105d757806390edbfee146105ea57600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146104c457806360d938dc146104e457806362422612146104f95780636352211e1461050e57806370a082311461052e578063715018a61461054e57600080fd5b80632f745c59146104225780633408e470146104425780633af32abf146104555780633ccfd60b146104755780634114e8a41461048a57806342842e0e146104a457600080fd5b80630f7e5970116102505780630f7e59701461035157806316c8c21b1461037e57806318160ddd146103a257806320379ee5146103b757806323b872dd146103cc5780632d0335ab146103ec57600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630c53c51c1461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612b9b565b610802565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d761082d565b6040516102b99190612e27565b3480156102f057600080fd5b506103046102ff366004612c1e565b6108bf565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612afc565b610959565b005b6102d761034c366004612a80565b610a81565b34801561035d57600080fd5b506102d7604051806040016040528060018152602001603160f81b81525081565b34801561038a57600080fd5b5061039460115481565b6040519081526020016102b9565b3480156103ae57600080fd5b50600854610394565b3480156103c357600080fd5b50600b54610394565b3480156103d857600080fd5b5061033c6103e73660046129a0565b610c6b565b3480156103f857600080fd5b50610394610407366004612952565b6001600160a01b03166000908152600c602052604090205490565b34801561042e57600080fd5b5061039461043d366004612afc565b610ca3565b34801561044e57600080fd5b5046610394565b34801561046157600080fd5b506102ad610470366004612952565b610d39565b34801561048157600080fd5b5061033c610da3565b34801561049657600080fd5b506013546102ad9060ff1681565b3480156104b057600080fd5b5061033c6104bf3660046129a0565b610e28565b3480156104d057600080fd5b506103946104df366004612c1e565b610e43565b3480156104f057600080fd5b506102ad610ed6565b34801561050557600080fd5b5061033c610f0d565b34801561051a57600080fd5b50610304610529366004612c1e565b610f65565b34801561053a57600080fd5b50610394610549366004612952565b610fdc565b34801561055a57600080fd5b5061033c611063565b34801561056f57600080fd5b5061033c61057e366004612c37565b6110b8565b34801561058f57600080fd5b5061033c61059e366004612952565b611186565b3480156105af57600080fd5b5061039460155481565b3480156105c557600080fd5b50600d546001600160a01b0316610304565b61033c6105e5366004612c37565b611214565b3480156105f657600080fd5b5061033c610605366004612c1e565b611329565b34801561061657600080fd5b506102d7611386565b34801561062b57600080fd5b5061033c61063a366004612bd5565b611395565b34801561064b57600080fd5b5061033c61065a366004612a44565b6113f1565b61033c6114f3565b34801561067357600080fd5b5061033c610682366004612c1e565b611591565b34801561069357600080fd5b5061033c6106a23660046129dc565b6115df565b3480156106b357600080fd5b5061039460125481565b3480156106c957600080fd5b506103046106d8366004612c1e565b61161e565b3480156106e957600080fd5b506102d76106f8366004612c1e565b611648565b34801561070957600080fd5b50610394600e5481565b34801561071f57600080fd5b506102d761167c565b34801561073457600080fd5b5061039460145481565b34801561074a57600080fd5b5061033c610759366004612c5a565b61170a565b61033c61175e565b34801561077257600080fd5b506102ad61078136600461296d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61033c6107bd366004612c37565b6118ca565b3480156107ce57600080fd5b5061033c6107dd366004612b26565b611a92565b3480156107ee57600080fd5b5061033c6107fd366004612952565b611af3565b60006001600160e01b0319821663780e9d6360e01b1480610827575061082782611c06565b92915050565b60606000805461083c90613025565b80601f016020809104026020016040519081016040528092919081815260200182805461086890613025565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661093d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096482610f65565b9050806001600160a01b0316836001600160a01b031614156109d25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610934565b806001600160a01b03166109e4611c56565b6001600160a01b03161480610a005750610a0081610781611c56565b610a725760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610934565b610a7c8383611c65565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610abf8782878787611cd3565b610b155760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610934565b6001600160a01b0387166000908152600c6020526040902054610b39906001611dc3565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610b8990899033908a90612dbe565b60405180910390a1600080306001600160a01b0316888a604051602001610bb1929190612ce0565b60408051601f1981840301815290829052610bcb91612cc4565b6000604051808303816000865af19150503d8060008114610c08576040519150601f19603f3d011682016040523d82523d6000602084013e610c0d565b606091505b509150915081610c5f5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610934565b98975050505050505050565b610c7c610c76611c56565b82611dd6565b610c985760405162461bcd60e51b815260040161093490612f1a565b610a7c838383611ecd565b6000610cae83610fdc565b8210610d105760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610934565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601854811015610d9a57826001600160a01b031660188281548110610d6457610d646130d1565b6000918252602090912001546001600160a01b03161415610d885750600192915050565b80610d9281613060565b915050610d3d565b50600092915050565b610dab611c56565b6001600160a01b0316610dc6600d546001600160a01b031690565b6001600160a01b031614610dec5760405162461bcd60e51b815260040161093490612eb5565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e25573d6000803e3d6000fd5b50565b610a7c838383604051806020016040528060008152506115df565b6000610e4e60085490565b8210610eb15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610934565b60088281548110610ec457610ec46130d1565b90600052602060002001549050919050565b600060115442118015610eea575060125442105b8015610ef9575060135460ff16155b15610f045750600190565b50600090565b90565b610f15611c56565b6001600160a01b0316610f30600d546001600160a01b031690565b6001600160a01b031614610f565760405162461bcd60e51b815260040161093490612eb5565b6013805460ff19166001179055565b6000818152600260205260408120546001600160a01b0316806108275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610934565b60006001600160a01b0382166110475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610934565b506001600160a01b031660009081526003602052604090205490565b61106b611c56565b6001600160a01b0316611086600d546001600160a01b031690565b6001600160a01b0316146110ac5760405162461bcd60e51b815260040161093490612eb5565b6110b66000612078565b565b6110c0611c56565b6001600160a01b03166110db600d546001600160a01b031690565b6001600160a01b0316146111015760405162461bcd60e51b815260040161093490612eb5565b600f5482600e546111129190612f97565b1061112f5760405162461bcd60e51b815260040161093490612f6b565b60148211156111505760405162461bcd60e51b815260040161093490612e8c565b60005b82811015610a7c5761116c826111676120ca565b6120db565b611174612229565b8061117e81613060565b915050611153565b61118e611c56565b6001600160a01b03166111a9600d546001600160a01b031690565b6001600160a01b0316146111cf5760405162461bcd60e51b815260040161093490612eb5565b600f54600e54106111f25760405162461bcd60e51b815260040161093490612f6b565b60006111fc6120ca565b905061120882826120db565b611210612229565b5050565b60155442101561125a5760405162461bcd60e51b8152602060048201526011602482015270125d09dcc81b9bdd081d1a5b59481e595d607a1b6044820152606401610934565b6014546112679083612250565b34146112a95760405162461bcd60e51b815260206004820152601160248201527053656e7420416d6f756e742057726f6e6760781b6044820152606401610934565b600f5482600e546112ba9190612f97565b106112d75760405162461bcd60e51b815260040161093490612f6b565b60148211156112f85760405162461bcd60e51b815260040161093490612e8c565b60005b82811015610a7c5761130f826111676120ca565b611317612229565b8061132181613060565b9150506112fb565b611331611c56565b6001600160a01b031661134c600d546001600160a01b031690565b6001600160a01b0316146113725760405162461bcd60e51b815260040161093490612eb5565b80600f546113809190612f97565b600f5550565b60606001805461083c90613025565b61139d611c56565b6001600160a01b03166113b8600d546001600160a01b031690565b6001600160a01b0316146113de5760405162461bcd60e51b815260040161093490612eb5565b8051611210906010906020840190612796565b6113f9611c56565b6001600160a01b0316826001600160a01b0316141561145a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610934565b8060056000611467611c56565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556114ab611c56565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e7911515815260200190565b60405180910390a35050565b6015544210156115395760405162461bcd60e51b8152602060048201526011602482015270125d09dcc81b9bdd081d1a5b59481e595d607a1b6044820152606401610934565b601454341461155a5760405162461bcd60e51b815260040161093490612eea565b600f54600e541061157d5760405162461bcd60e51b815260040161093490612f6b565b611589336111676120ca565b6110b6612229565b611599611c56565b6001600160a01b03166115b4600d546001600160a01b031690565b6001600160a01b0316146115da5760405162461bcd60e51b815260040161093490612eb5565b601555565b6115f06115ea611c56565b83611dd6565b61160c5760405162461bcd60e51b815260040161093490612f1a565b6116188484848461225c565b50505050565b6018818154811061162e57600080fd5b6000918252602090912001546001600160a01b0316905081565b606060106116558361228f565b604051602001611666929190612d17565b6040516020818303038152906040529050919050565b6010805461168990613025565b80601f01602080910402602001604051908101604052809291908181526020018280546116b590613025565b80156117025780601f106116d757610100808354040283529160200191611702565b820191906000526020600020905b8154815290600101906020018083116116e557829003601f168201915b505050505081565b611712611c56565b6001600160a01b031661172d600d546001600160a01b031690565b6001600160a01b0316146117535760405162461bcd60e51b815260040161093490612eb5565b601191909155601255565b60115442116117af5760405162461bcd60e51b815260206004820152601d60248201527f50726573616c652068617665206e6f742073746172746564207965742e0000006044820152606401610934565b60125442106117f15760405162461bcd60e51b815260206004820152600e60248201526d283932b9b0b6329022b73232b21760911b6044820152606401610934565b600f54600e54106118145760405162461bcd60e51b815260040161093490612f6b565b60135460ff16156118575760405162461bcd60e51b815260206004820152600d60248201526c141c995cd85b1948115b991959609a1b6044820152606401610934565b611862610470611c56565b6118a95760405162461bcd60e51b81526020600482015260186024820152772cb7ba9030b932903737ba102bb434ba32b634b9ba32b21760411b6044820152606401610934565b601454341461157d5760405162461bcd60e51b815260040161093490612eea565b601154421161191b5760405162461bcd60e51b815260206004820152601d60248201527f50726573616c652068617665206e6f742073746172746564207965742e0000006044820152606401610934565b601254421061195d5760405162461bcd60e51b815260206004820152600e60248201526d283932b9b0b6329022b73232b21760911b6044820152606401610934565b600f54600e54106119805760405162461bcd60e51b815260040161093490612f6b565b60135460ff16156119c35760405162461bcd60e51b815260206004820152600d60248201526c141c995cd85b1948115b991959609a1b6044820152606401610934565b6119ce610470611c56565b611a155760405162461bcd60e51b81526020600482015260186024820152772cb7ba9030b932903737ba102bb434ba32b634b9ba32b21760411b6044820152606401610934565b6014821115611a365760405162461bcd60e51b815260040161093490612e8c565b601454611a439083612250565b3414611a615760405162461bcd60e51b815260040161093490612eea565b60005b82811015610a7c57611a78826111676120ca565b611a80612229565b80611a8a81613060565b915050611a64565b611a9a611c56565b6001600160a01b0316611ab5600d546001600160a01b031690565b6001600160a01b031614611adb5760405162461bcd60e51b815260040161093490612eb5565b611ae76018600061281a565b610a7c60188383612838565b611afb611c56565b6001600160a01b0316611b16600d546001600160a01b031690565b6001600160a01b031614611b3c5760405162461bcd60e51b815260040161093490612eb5565b6001600160a01b038116611ba15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610934565b610e2581612078565b600033301415611c0157600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150610f0a9050565b503390565b60006001600160e01b031982166380ac58cd60e01b1480611c3757506001600160e01b03198216635b5e139f60e01b145b8061082757506301ffc9a760e01b6001600160e01b0319831614610827565b6000611c60611baa565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c9a82610f65565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611d395760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610934565b6001611d4c611d478761238d565b61240a565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611d9a573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611dcf8284612f97565b9392505050565b6000818152600260205260408120546001600160a01b0316611e4f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610934565b6000611e5a83610f65565b9050806001600160a01b0316846001600160a01b03161480611e955750836001600160a01b0316611e8a846108bf565b6001600160a01b0316145b80611ec557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ee082610f65565b6001600160a01b031614611f485760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610934565b6001600160a01b038216611faa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610934565b611fb583838361243a565b611fc0600082611c65565b6001600160a01b0383166000908152600360205260408120805460019290611fe9908490612fe2565b90915550506001600160a01b0382166000908152600360205260408120805460019290612017908490612f97565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e54600090611c60906001611dc3565b6001600160a01b0382166121315760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610934565b6000818152600260205260409020546001600160a01b0316156121965760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610934565b6121a26000838361243a565b6001600160a01b03821660009081526003602052604081208054600192906121cb908490612f97565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f54600e541061223957600080fd5b600e805490600061224983613060565b9190505550565b6000611dcf8284612fc3565b612267848484611ecd565b612273848484846124f2565b6116185760405162461bcd60e51b815260040161093490612e3a565b6060816122b35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122dd57806122c781613060565b91506122d69050600a83612faf565b91506122b7565b60008167ffffffffffffffff8111156122f8576122f86130e7565b6040519080825280601f01601f191660200182016040528015612322576020820181803683370190505b5090505b8415611ec557612337600183612fe2565b9150612344600a8661307b565b61234f906030612f97565b60f81b818381518110612364576123646130d1565b60200101906001600160f81b031916908160001a905350612386600a86612faf565b9450612326565b600060405180608001604052806043815260200161311460439139805160209182012083518483015160408087015180519086012090516123ed950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612415600b5490565b60405161190160f01b60208201526022810191909152604281018390526062016123ed565b6001600160a01b0383166124955761249081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124b8565b816001600160a01b0316836001600160a01b0316146124b8576124b88382612606565b6001600160a01b0382166124cf57610a7c816126a3565b826001600160a01b0316826001600160a01b031614610a7c57610a7c8282612752565b60006001600160a01b0384163b156125fb57836001600160a01b031663150b7a0261251b611c56565b8786866040518563ffffffff1660e01b815260040161253d9493929190612dea565b602060405180830381600087803b15801561255757600080fd5b505af1925050508015612587575060408051601f3d908101601f1916820190925261258491810190612bb8565b60015b6125e1573d8080156125b5576040519150601f19603f3d011682016040523d82523d6000602084013e6125ba565b606091505b5080516125d95760405162461bcd60e51b815260040161093490612e3a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ec5565b506001949350505050565b6000600161261384610fdc565b61261d9190612fe2565b600083815260076020526040902054909150808214612670576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126b590600190612fe2565b600083815260096020526040812054600880549394509092849081106126dd576126dd6130d1565b9060005260206000200154905080600883815481106126fe576126fe6130d1565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612736576127366130bb565b6001900381819060005260206000200160009055905550505050565b600061275d83610fdc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546127a290613025565b90600052602060002090601f0160209004810192826127c4576000855561280a565b82601f106127dd57805160ff191683800117855561280a565b8280016001018555821561280a579182015b8281111561280a5782518255916020019190600101906127ef565b5061281692915061288b565b5090565b5080546000825590600052602060002090810190610e25919061288b565b82805482825590600052602060002090810192821561280a579160200282015b8281111561280a5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612858565b5b80821115612816576000815560010161288c565b600067ffffffffffffffff808411156128bb576128bb6130e7565b604051601f8501601f19908116603f011681019082821181831017156128e3576128e36130e7565b816040528093508581528686860111156128fc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461292d57600080fd5b919050565b600082601f83011261294357600080fd5b611dcf838335602085016128a0565b60006020828403121561296457600080fd5b611dcf82612916565b6000806040838503121561298057600080fd5b61298983612916565b915061299760208401612916565b90509250929050565b6000806000606084860312156129b557600080fd5b6129be84612916565b92506129cc60208501612916565b9150604084013590509250925092565b600080600080608085870312156129f257600080fd5b6129fb85612916565b9350612a0960208601612916565b925060408501359150606085013567ffffffffffffffff811115612a2c57600080fd5b612a3887828801612932565b91505092959194509250565b60008060408385031215612a5757600080fd5b612a6083612916565b915060208301358015158114612a7557600080fd5b809150509250929050565b600080600080600060a08688031215612a9857600080fd5b612aa186612916565b9450602086013567ffffffffffffffff811115612abd57600080fd5b612ac988828901612932565b9450506040860135925060608601359150608086013560ff81168114612aee57600080fd5b809150509295509295909350565b60008060408385031215612b0f57600080fd5b612b1883612916565b946020939093013593505050565b60008060208385031215612b3957600080fd5b823567ffffffffffffffff80821115612b5157600080fd5b818501915085601f830112612b6557600080fd5b813581811115612b7457600080fd5b8660208260051b8501011115612b8957600080fd5b60209290920196919550909350505050565b600060208284031215612bad57600080fd5b8135611dcf816130fd565b600060208284031215612bca57600080fd5b8151611dcf816130fd565b600060208284031215612be757600080fd5b813567ffffffffffffffff811115612bfe57600080fd5b8201601f81018413612c0f57600080fd5b611ec5848235602084016128a0565b600060208284031215612c3057600080fd5b5035919050565b60008060408385031215612c4a57600080fd5b8235915061299760208401612916565b60008060408385031215612c6d57600080fd5b50508035926020909101359150565b60008151808452612c94816020860160208601612ff9565b601f01601f19169290920160200192915050565b60008151612cba818560208601612ff9565b9290920192915050565b60008251612cd6818460208701612ff9565b9190910192915050565b60008351612cf2818460208801612ff9565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600080845481600182811c915080831680612d3357607f831692505b6020808410821415612d5357634e487b7160e01b86526022600452602486fd5b818015612d675760018114612d7857612da5565b60ff19861689528489019650612da5565b60008b81526020902060005b86811015612d9d5781548b820152908501908301612d84565b505084890196505b505050505050612db58185612ca8565b95945050505050565b6001600160a01b03848116825283166020820152606060408201819052600090612db590830184612c7c565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e1d90830184612c7c565b9695505050505050565b602081526000611dcf6020830184612c7c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e26b0bc1019181020b63637bbb2b21760891b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152750a6cadce84082dadeeadce8409cdee8408adcdeeaced60531b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526012908201527113585e0814dd5c1c1b1e4814995858da195960721b604082015260600190565b60008219821115612faa57612faa61308f565b500190565b600082612fbe57612fbe6130a5565b500490565b6000816000190483118215151615612fdd57612fdd61308f565b500290565b600082821015612ff457612ff461308f565b500390565b60005b83811015613014578181015183820152602001612ffc565b838111156116185750506000910152565b600181811c9082168061303957607f821691505b6020821081141561305a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130745761307461308f565b5060010190565b60008261308a5761308a6130a5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e2557600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212208ab7f3d922032eaa938667aeb07ef1b9de22f8bca0132d2de2a82d9ca65dc6ce64736f6c63430008070033

Deployed Bytecode Sourcemap

54012:5758:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41815:300;;;;;;;;;;-1:-1:-1;41815:300:0;;;;;:::i;:::-;;:::i;:::-;;;10025:14:1;;10018:22;10000:41;;9988:2;9973:18;41815:300:0;;;;;;;;29294:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30987:308::-;;;;;;;;;;-1:-1:-1;30987:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8865:32:1;;;8847:51;;8835:2;8820:18;30987:308:0;8701:203:1;30510:411:0;;;;;;;;;;-1:-1:-1;30510:411:0;;;;;:::i;:::-;;:::i;:::-;;51825:1151;;;;;;:::i;:::-;;:::i;49081:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49081:43:0;;;;;54275:32;;;;;;;;;;;;;;;;;;;10198:25:1;;;10186:2;10171:18;54275:32:0;10052:177:1;42618:113:0;;;;;;;;;;-1:-1:-1;42706:10:0;:17;42618:113;;50076:101;;;;;;;;;;-1:-1:-1;50154:15:0;;50076:101;;32046:376;;;;;;;;;;-1:-1:-1;32046:376:0;;;;;:::i;:::-;;:::i;53402:107::-;;;;;;;;;;-1:-1:-1;53402:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;53489:12:0;53455:13;53489:12;;;:6;:12;;;;;;;53402:107;42199:343;;;;;;;;;;-1:-1:-1;42199:343:0;;;;;:::i;:::-;;:::i;50185:161::-;;;;;;;;;;-1:-1:-1;50299:9:0;50185:161;;57905:239;;;;;;;;;;-1:-1:-1;57905:239:0;;;;;:::i;:::-;;:::i;58557:106::-;;;;;;;;;;;;;:::i;54351:31::-;;;;;;;;;;-1:-1:-1;54351:31:0;;;;;;;;32493:185;;;;;;;;;;-1:-1:-1;32493:185:0;;;;;:::i;:::-;;:::i;42808:320::-;;;;;;;;;;-1:-1:-1;42808:320:0;;;;;:::i;:::-;;:::i;58304:245::-;;;;;;;;;;;;;:::i;54987:87::-;;;;;;;;;;;;;:::i;28901:326::-;;;;;;;;;;-1:-1:-1;28901:326:0;;;;;:::i;:::-;;:::i;28544:295::-;;;;;;;;;;-1:-1:-1;28544:295:0;;;;;:::i;:::-;;:::i;26165:94::-;;;;;;;;;;;;;:::i;56743:323::-;;;;;;;;;;-1:-1:-1;56743:323:0;;;;;:::i;:::-;;:::i;55216:236::-;;;;;;;;;;-1:-1:-1;55216:236:0;;;;;:::i;:::-;;:::i;54442:42::-;;;;;;;;;;;;;;;;25514:87;;;;;;;;;;-1:-1:-1;25587:6:0;;-1:-1:-1;;;;;25587:6:0;25514:87;;57430:471;;;;;;:::i;:::-;;:::i;59658:109::-;;;;;;;;;;-1:-1:-1;59658:109:0;;;;;:::i;:::-;;:::i;29463:104::-;;;;;;;;;;;;;:::i;59056:97::-;;;;;;;;;;-1:-1:-1;59056:97:0;;;;;:::i;:::-;;:::i;31367:327::-;;;;;;;;;;-1:-1:-1;31367:327:0;;;;;:::i;:::-;;:::i;57080:338::-;;;:::i;54735:91::-;;;;;;;;;;-1:-1:-1;54735:91:0;;;;;:::i;:::-;;:::i;32749:365::-;;;;;;;;;;-1:-1:-1;32749:365:0;;;;;:::i;:::-;;:::i;54314:30::-;;;;;;;;;;;;;;;;54556:37;;;;;;;;;;-1:-1:-1;54556:37:0;;;;;:::i;:::-;;:::i;59161:227::-;;;;;;;;;;-1:-1:-1;59161:227:0;;;;;:::i;:::-;;:::i;54160:34::-;;;;;;;;;;;;;;;;54236:26;;;;;;;;;;;;;:::i;54395:37::-;;;;;;;;;;;;;;;;54832:149;;;;;;;;;;-1:-1:-1;54832:149:0;;;;;:::i;:::-;;:::i;55464:555::-;;;:::i;31765:214::-;;;;;;;;;;-1:-1:-1;31765:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;31936:25:0;;;31907:4;31936:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31765:214;56031:700;;;;;;:::i;:::-;;:::i;58152:144::-;;;;;;;;;;-1:-1:-1;58152:144:0;;;;;:::i;:::-;;:::i;26414:229::-;;;;;;;;;;-1:-1:-1;26414:229:0;;;;;:::i;:::-;;:::i;41815:300::-;41962:4;-1:-1:-1;;;;;;42004:50:0;;-1:-1:-1;;;42004:50:0;;:103;;;42071:36;42095:11;42071:23;:36::i;:::-;41984:123;41815:300;-1:-1:-1;;41815:300:0:o;29294:100::-;29348:13;29381:5;29374:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29294:100;:::o;30987:308::-;31108:7;34750:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34750:16:0;31133:110;;;;-1:-1:-1;;;31133:110:0;;17210:2:1;31133:110:0;;;17192:21:1;17249:2;17229:18;;;17222:30;17288:34;17268:18;;;17261:62;-1:-1:-1;;;17339:18:1;;;17332:42;17391:19;;31133:110:0;;;;;;;;;-1:-1:-1;31263:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31263:24:0;;30987:308::o;30510:411::-;30591:13;30607:23;30622:7;30607:14;:23::i;:::-;30591:39;;30655:5;-1:-1:-1;;;;;30649:11:0;:2;-1:-1:-1;;;;;30649:11:0;;;30641:57;;;;-1:-1:-1;;;30641:57:0;;19853:2:1;30641:57:0;;;19835:21:1;19892:2;19872:18;;;19865:30;19931:34;19911:18;;;19904:62;-1:-1:-1;;;19982:18:1;;;19975:31;20023:19;;30641:57:0;19651:397:1;30641:57:0;30749:5;-1:-1:-1;;;;;30733:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;30733:21:0;;:62;;;;30758:37;30775:5;30782:12;:10;:12::i;30758:37::-;30711:168;;;;-1:-1:-1;;;30711:168:0;;15603:2:1;30711:168:0;;;15585:21:1;15642:2;15622:18;;;15615:30;15681:34;15661:18;;;15654:62;15752:26;15732:18;;;15725:54;15796:19;;30711:168:0;15401:420:1;30711:168:0;30892:21;30901:2;30905:7;30892:8;:21::i;:::-;30580:341;30510:411;;:::o;51825:1151::-;52083:152;;;52026:12;52083:152;;;;;-1:-1:-1;;;;;52121:19:0;;52051:29;52121:19;;;:6;:19;;;;;;;;;52083:152;;;;;;;;;;;52270:45;52128:11;52083:152;52298:4;52304;52310;52270:6;:45::i;:::-;52248:128;;;;-1:-1:-1;;;52248:128:0;;19098:2:1;52248:128:0;;;19080:21:1;19137:2;19117:18;;;19110:30;19176:34;19156:18;;;19149:62;-1:-1:-1;;;19227:18:1;;;19220:31;19268:19;;52248:128:0;18896:397:1;52248:128:0;-1:-1:-1;;;;;52465:19:0;;;;;;:6;:19;;;;;;:26;;52489:1;52465:23;:26::i;:::-;-1:-1:-1;;;;;52443:19:0;;;;;;:6;:19;;;;;;;:48;;;;52509:126;;;;;52450:11;;52581:10;;52607:17;;52509:126;:::i;:::-;;;;;;;;52746:12;52760:23;52795:4;-1:-1:-1;;;;;52787:18:0;52837:17;52856:11;52820:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;52820:48:0;;;;;;;;;;52787:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52745:134;;;;52898:7;52890:48;;;;-1:-1:-1;;;52890:48:0;;12967:2:1;52890:48:0;;;12949:21:1;13006:2;12986:18;;;12979:30;13045;13025:18;;;13018:58;13093:18;;52890:48:0;12765:352:1;52890:48:0;52958:10;51825:1151;-1:-1:-1;;;;;;;;51825:1151:0:o;32046:376::-;32255:41;32274:12;:10;:12::i;:::-;32288:7;32255:18;:41::i;:::-;32233:140;;;;-1:-1:-1;;;32233:140:0;;;;;;;:::i;:::-;32386:28;32396:4;32402:2;32406:7;32386:9;:28::i;42199:343::-;42341:7;42396:23;42413:5;42396:16;:23::i;:::-;42388:5;:31;42366:124;;;;-1:-1:-1;;;42366:124:0;;11729:2:1;42366:124:0;;;11711:21:1;11768:2;11748:18;;;11741:30;11807:34;11787:18;;;11780:62;-1:-1:-1;;;11858:18:1;;;11851:41;11909:19;;42366:124:0;11527:407:1;42366:124:0;-1:-1:-1;;;;;;42508:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42199:343::o;57905:239::-;57964:4;;57977:143;57998:20;:27;57994:31;;57977:143;;;58072:5;-1:-1:-1;;;;;58045:32:0;:20;58066:1;58045:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;58045:23:0;:32;58041:72;;;-1:-1:-1;58099:4:0;;57905:239;-1:-1:-1;;57905:239:0:o;58041:72::-;58027:3;;;;:::i;:::-;;;;57977:143;;;-1:-1:-1;58133:5:0;;57905:239;-1:-1:-1;;57905:239:0:o;58557:106::-;25745:12;:10;:12::i;:::-;-1:-1:-1;;;;;25734:23:0;:7;25587:6;;-1:-1:-1;;;;;25587:6:0;;25514:87;25734:7;-1:-1:-1;;;;;25734:23:0;;25726:68;;;;-1:-1:-1;;;25726:68:0;;;;;;;:::i;:::-;25587:6;;58607:48:::1;::::0;-1:-1:-1;;;;;25587:6:0;;;;58633:21:::1;58607:48:::0;::::1;;;::::0;::::1;::::0;;;58633:21;25587:6;58607:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;58557:106::o:0;32493:185::-;32631:39;32648:4;32654:2;32658:7;32631:39;;;;;;;;;;;;:16;:39::i;42808:320::-;42928:7;42983:30;42706:10;:17;;42618:113;42983:30;42975:5;:38;42953:132;;;;-1:-1:-1;;;42953:132:0;;21713:2:1;42953:132:0;;;21695:21:1;21752:2;21732:18;;;21725:30;21791:34;21771:18;;;21764:62;-1:-1:-1;;;21842:18:1;;;21835:42;21894:19;;42953:132:0;21511:408:1;42953:132:0;43103:10;43114:5;43103:17;;;;;;;;:::i;:::-;;;;;;;;;43096:24;;42808:320;;;:::o;58304:245::-;58354:4;58391:17;;58373:15;:35;:72;;;;;58430:15;;58412;:33;58373:72;:96;;;;-1:-1:-1;58449:11:0;;;;:20;58373:96;58370:174;;;-1:-1:-1;58491:4:0;;58304:245::o;58370:174::-;-1:-1:-1;58529:5:0;;58304:245::o;58370:174::-;58304:245;:::o;54987:87::-;25745:12;:10;:12::i;:::-;-1:-1:-1;;;;;25734:23:0;:7;25587:6;;-1:-1:-1;;;;;25587:6:0;;25514:87;25734:7;-1:-1:-1;;;;;25734:23:0;;25726:68;;;;-1:-1:-1;;;25726:68:0;;;;;;;:::i;:::-;55048:11:::1;:18:::0;;-1:-1:-1;;55048:18:0::1;55062:4;55048:18;::::0;;54987:87::o;28901:326::-;29018:7;29059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29059:16:0;29108:19;29086:110;;;;-1:-1:-1;;;29086:110:0;;16439:2:1;29086:110:0;;;16421:21:1;16478:2;16458:18;;;16451:30;16517:34;16497:18;;;16490:62;-1:-1:-1;;;16568:18:1;;;16561:39;16617:19;;29086:110:0;16237:405:1;28544:295:0;28661:7;-1:-1:-1;;;;;28708:19:0;;28686:111;;;;-1:-1:-1;;;28686:111:0;;16028:2:1;28686:111:0;;;16010:21:1;16067:2;16047:18;;;16040:30;16106:34;16086:18;;;16079:62;-1:-1:-1;;;16157:18:1;;;16150:40;16207:19;;28686:111:0;15826:406:1;28686:111:0;-1:-1:-1;;;;;;28815:16:0;;;;;:9;:16;;;;;;;28544:295::o;26165:94::-;25745:12;:10;:12::i;:::-;-1:-1:-1;;;;;25734:23:0;:7;25587:6;;-1:-1:-1;;;;;25587:6:0;;25514:87;25734:7;-1:-1:-1;;;;;25734:23:0;;25726:68;;;;-1:-1:-1;;;25726:68:0;;;;;;;:::i;:::-;26230:21:::1;26248:1;26230:9;:21::i;:::-;26165:94::o:0;56743:323::-;25745:12;:10;:12::i;:::-;-1:-1:-1;;;;;25734:23:0;:7;25587:6;;-1:-1:-1;;;;;25587:6:0;;25514:87;25734:7;-1:-1:-1;;;;;25734:23:0;;25726:68;;;;-1:-1:-1;;;25726:68:0;;;;;;;:::i;:::-;56847:10:::1;;56841:3;56823:15;;:21;;;;:::i;:::-;:34;56815:65;;;;-1:-1:-1::0;;;56815:65:0::1;;;;;;;:::i;:::-;56906:2;56899:3;:9;;56891:37;;;;-1:-1:-1::0;;;56891:37:0::1;;;;;;;:::i;:::-;56943:9;56939:120;56958:3;56956:1;:5;56939:120;;;56984:29;56990:3;56995:17;:15;:17::i;:::-;56984:5;:29::i;:::-;57028:19;:17;:19::i;:::-;56963:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56939:120;;55216:236:::0;25745:12;:10;:12::i;:::-;-1:-1:-1;;;;;25734:23:0;:7;25587:6;;-1:-1:-1;;;;;25587:6:0;;25514:87;25734:7;-1:-1:-1;;;;;25734:23:0;;25726:68;;;;-1:-1:-1;;;25726:68:0;;;;;;;:::i;:::-;55299:10:::1;;55281:15;;:28;55273:59;;;;-1:-1:-1::0;;;55273:59:0::1;;;;;;;:::i;:::-;55343:18;55364:17;:15;:17::i;:::-;55343:38;;55392:22;55398:3;55403:10;55392:5;:22::i;:::-;55425:19;:17;:19::i;:::-;55262:190;55216:236:::0;:::o;57430:471::-;57526:9;;57507:15;:28;;57499:58;;;;-1:-1:-1;;;57499:58:0;;21367:2:1;57499:58:0;;;21349:21:1;21406:2;21386:18;;;21379:30;-1:-1:-1;;;21425:18:1;;;21418:47;21482:18;;57499:58:0;21165:341:1;57499:58:0;57589:9;;:18;;57603:3;57589:13;:18::i;:::-;57576:9;:31;57568:61;;;;-1:-1:-1;;;57568:61:0;;18342:2:1;57568:61:0;;;18324:21:1;18381:2;18361:18;;;18354:30;-1:-1:-1;;;18400:18:1;;;18393:47;18457:18;;57568:61:0;18140:341:1;57568:61:0;57672:10;;57666:3;57648:15;;:21;;;;:::i;:::-;:34;57640:65;;;;-1:-1:-1;;;57640:65:0;;;;;;;:::i;:::-;57741:2;57734:3;:9;;57726:37;;;;-1:-1:-1;;;57726:37:0;;;;;;;:::i;:::-;57778:9;57774:120;57793:3;57791:1;:5;57774:120;;;57819:29;57825:3;57830:17;:15;:17::i;57819:29::-;57863:19;:17;:19::i;:::-;57798:3;;;;:::i;:::-;;;;57774:120;;59658:109;25745:12;:10;:12::i;:::-;-1:-1:-1;;;;;25734:23:0;:7;25587:6;;-1:-1:-1;;;;;25587:6:0;;25514:87;25734:7;-1:-1:-1;;;;;25734:23:0;;25726:68;;;;-1:-1:-1;;;25726:68:0;;;;;;;:::i;:::-;59755:4:::1;59742:10;;:17;;;;:::i;:::-;59729:10;:30:::0;-1:-1:-1;59658:109:0:o;29463:104::-;29519:13;29552:7;29545:14;;;;;:::i;59056:97::-;25745:12;:10;:12::i;:::-;-1:-1:-1;;;;;25734:23:0;:7;25587:6;;-1:-1:-1;;;;;25587:6:0;;25514:87;25734:7;-1:-1:-1;;;;;25734:23:0;;25726:68;;;;-1:-1:-1;;;25726:68:0;;;;;;;:::i;:::-;59126:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;31367:327::-:0;31514:12;:10;:12::i;:::-;-1:-1:-1;;;;;31502:24:0;:8;-1:-1:-1;;;;;31502:24:0;;;31494:62;;;;-1:-1:-1;;;31494:62:0;;14086:2:1;31494:62:0;;;14068:21:1;14125:2;14105:18;;;14098:30;14164:27;14144:18;;;14137:55;14209:18;;31494:62:0;13884:349:1;31494:62:0;31614:8;31569:18;:32;31588:12;:10;:12::i;:::-;-1:-1:-1;;;;;31569:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;31569:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;31569:53:0;;;;;;;;;;;31653:12;:10;:12::i;:::-;-1:-1:-1;;;;;31638:48:0;;31677:8;31638:48;;;;10025:14:1;10018:22;10000:41;;9988:2;9973:18;;9860:187;31638:48:0;;;;;;;;31367:327;;:::o;57080:338::-;57148:9;;57129:15;:28;;57121:58;;;;-1:-1:-1;;;57121:58:0;;21367:2:1;57121:58:0;;;21349:21:1;21406:2;21386:18;;;21379:30;-1:-1:-1;;;21425:18:1;;;21418:47;21482:18;;57121:58:0;21165:341:1;57121:58:0;57211:9;;57198;:22;57190:57;;;;-1:-1:-1;;;57190:57:0;;;;;;;:::i;:::-;57284:10;;57266:15;;:28;57258:59;;;;-1:-1:-1;;;57258:59:0;;;;;;;:::i;:::-;57340:36;57346:10;57358:17;:15;:17::i;57340:36::-;57391:19;:17;:19::i;54735:91::-;25745:12;:10;:12::i;:::-;-1:-1:-1;;;;;25734:23:0;:7;25587:6;;-1:-1:-1;;;;;25587:6:0;;25514:87;25734:7;-1:-1:-1;;;;;25734:23:0;;25726:68;;;;-1:-1:-1;;;25726:68:0;;;;;;;:::i;:::-;54802:9:::1;:16:::0;54735:91::o;32749:365::-;32938:41;32957:12;:10;:12::i;:::-;32971:7;32938:18;:41::i;:::-;32916:140;;;;-1:-1:-1;;;32916:140:0;;;;;;;:::i;:::-;33067:39;33081:4;33087:2;33091:7;33100:5;33067:13;:39::i;:::-;32749:365;;;;:::o;54556:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54556:37:0;;-1:-1:-1;54556:37:0;:::o;59161:227::-;59263:13;59338:12;59352:26;59369:8;59352:16;:26::i;:::-;59321:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59294:86;;59161:227;;;:::o;54236:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54832:149::-;25745:12;:10;:12::i;:::-;-1:-1:-1;;;;;25734:23:0;:7;25587:6;;-1:-1:-1;;;;;25587:6:0;;25514:87;25734:7;-1:-1:-1;;;;;25734:23:0;;25726:68;;;;-1:-1:-1;;;25726:68:0;;;;;;;:::i;:::-;54916:17:::1;:25:::0;;;;54952:15:::1;:21:::0;54832:149::o;55464:555::-;55540:17;;55522:15;:35;55514:77;;;;-1:-1:-1;;;55514:77:0;;17984:2:1;55514:77:0;;;17966:21:1;18023:2;18003:18;;;17996:30;18062:31;18042:18;;;18035:59;18111:18;;55514:77:0;17782:353:1;55514:77:0;55628:15;;55610;:33;55602:60;;;;-1:-1:-1;;;55602:60:0;;20606:2:1;55602:60:0;;;20588:21:1;20645:2;20625:18;;;20618:30;-1:-1:-1;;;20664:18:1;;;20657:44;20718:18;;55602:60:0;20404:338:1;55602:60:0;55699:10;;55681:15;;:28;55673:59;;;;-1:-1:-1;;;55673:59:0;;;;;;;:::i;:::-;55751:11;;;;:20;55743:45;;;;-1:-1:-1;;;55743:45:0;;22473:2:1;55743:45:0;;;22455:21:1;22512:2;22492:18;;;22485:30;-1:-1:-1;;;22531:18:1;;;22524:43;22584:18;;55743:45:0;22271:337:1;55743:45:0;55807:27;55821:12;:10;:12::i;55807:27::-;55799:65;;;;-1:-1:-1;;;55799:65:0;;19500:2:1;55799:65:0;;;19482:21:1;19539:2;19519:18;;;19512:30;-1:-1:-1;;;19558:18:1;;;19551:54;19622:18;;55799:65:0;19298:348:1;55799:65:0;55896:9;;55883;:22;55875:57;;;;-1:-1:-1;;;55875:57:0;;;;;;;:::i;56031:700::-;56135:17;;56117:15;:35;56109:77;;;;-1:-1:-1;;;56109:77:0;;17984:2:1;56109:77:0;;;17966:21:1;18023:2;18003:18;;;17996:30;18062:31;18042:18;;;18035:59;18111:18;;56109:77:0;17782:353:1;56109:77:0;56223:15;;56205;:33;56197:60;;;;-1:-1:-1;;;56197:60:0;;20606:2:1;56197:60:0;;;20588:21:1;20645:2;20625:18;;;20618:30;-1:-1:-1;;;20664:18:1;;;20657:44;20718:18;;56197:60:0;20404:338:1;56197:60:0;56294:10;;56276:15;;:28;56268:59;;;;-1:-1:-1;;;56268:59:0;;;;;;;:::i;:::-;56346:11;;;;:20;56338:45;;;;-1:-1:-1;;;56338:45:0;;22473:2:1;56338:45:0;;;22455:21:1;22512:2;22492:18;;;22485:30;-1:-1:-1;;;22531:18:1;;;22524:43;22584:18;;56338:45:0;22271:337:1;56338:45:0;56402:27;56416:12;:10;:12::i;56402:27::-;56394:65;;;;-1:-1:-1;;;56394:65:0;;19500:2:1;56394:65:0;;;19482:21:1;19539:2;19519:18;;;19512:30;-1:-1:-1;;;19558:18:1;;;19551:54;19622:18;;56394:65:0;19298:348:1;56394:65:0;56485:2;56478:3;:9;;56470:37;;;;-1:-1:-1;;;56470:37:0;;;;;;;:::i;:::-;56539:9;;:18;;56553:3;56539:13;:18::i;:::-;56526:9;:31;56518:66;;;;-1:-1:-1;;;56518:66:0;;;;;;;:::i;:::-;56609:9;56605:119;56624:3;56622:1;:5;56605:119;;;56648:30;56654:3;56660:17;:15;:17::i;56648:30::-;56693:19;:17;:19::i;:::-;56629:3;;;;:::i;:::-;;;;56605:119;;58152:144;25745:12;:10;:12::i;:::-;-1:-1:-1;;;;;25734:23:0;:7;25587:6;;-1:-1:-1;;;;;25587:6:0;;25514:87;25734:7;-1:-1:-1;;;;;25734:23:0;;25726:68;;;;-1:-1:-1;;;25726:68:0;;;;;;;:::i;:::-;58227:27:::1;58234:20;;58227:27;:::i;:::-;58261:29;:20;58284:6:::0;;58261:29:::1;:::i;26414:229::-:0;25745:12;:10;:12::i;:::-;-1:-1:-1;;;;;25734:23:0;:7;25587:6;;-1:-1:-1;;;;;25587:6:0;;25514:87;25734:7;-1:-1:-1;;;;;25734:23:0;;25726:68;;;;-1:-1:-1;;;25726:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26517:22:0;::::1;26495:110;;;::::0;-1:-1:-1;;;26495:110:0;;12560:2:1;26495:110:0::1;::::0;::::1;12542:21:1::0;12599:2;12579:18;;;12572:30;12638:34;12618:18;;;12611:62;-1:-1:-1;;;12689:18:1;;;12682:36;12735:19;;26495:110:0::1;12358:402:1::0;26495:110:0::1;26616:19;26626:8;26616:9;:19::i;24218:618::-:0;24262:22;24301:10;24323:4;24301:27;24297:508;;;24345:18;24366:8;;24345:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;24405:8:0;24616:17;24610:24;-1:-1:-1;;;;;24584:134:0;;-1:-1:-1;24297:508:0;;-1:-1:-1;24297:508:0;;-1:-1:-1;24782:10:0;24218:618;:::o;28125:355::-;28272:4;-1:-1:-1;;;;;;28314:40:0;;-1:-1:-1;;;28314:40:0;;:105;;-1:-1:-1;;;;;;;28371:48:0;;-1:-1:-1;;;28371:48:0;28314:105;:158;;;-1:-1:-1;;;;;;;;;;27095:40:0;;;28436:36;26936:207;59532:120;59586:14;59620:24;:22;:24::i;:::-;59613:31;;59532:120;:::o;38784:174::-;38859:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38859:29:0;-1:-1:-1;;;;;38859:29:0;;;;;;;;:24;;38913:23;38859:24;38913:14;:23::i;:::-;-1:-1:-1;;;;;38904:46:0;;;;;;;;;;;38784:174;;:::o;53517:486::-;53695:4;-1:-1:-1;;;;;53720:20:0;;53712:70;;;;-1:-1:-1;;;53712:70:0;;15197:2:1;53712:70:0;;;15179:21:1;15236:2;15216:18;;;15209:30;15275:34;15255:18;;;15248:62;-1:-1:-1;;;15326:18:1;;;15319:35;15371:19;;53712:70:0;14995:401:1;53712:70:0;53836:159;53864:47;53883:27;53903:6;53883:19;:27::i;:::-;53864:18;:47::i;:::-;53836:159;;;;;;;;;;;;10883:25:1;;;;10956:4;10944:17;;10924:18;;;10917:45;10978:18;;;10971:34;;;11021:18;;;11014:34;;;10855:19;;53836:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53813:182:0;:6;-1:-1:-1;;;;;53813:182:0;;53793:202;;53517:486;;;;;;;:::o;2441:98::-;2499:7;2526:5;2530:1;2526;:5;:::i;:::-;2519:12;2441:98;-1:-1:-1;;;2441:98:0:o;34955:452::-;35084:4;34750:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34750:16:0;35106:110;;;;-1:-1:-1;;;35106:110:0;;14784:2:1;35106:110:0;;;14766:21:1;14823:2;14803:18;;;14796:30;14862:34;14842:18;;;14835:62;-1:-1:-1;;;14913:18:1;;;14906:42;14965:19;;35106:110:0;14582:408:1;35106:110:0;35227:13;35243:23;35258:7;35243:14;:23::i;:::-;35227:39;;35296:5;-1:-1:-1;;;;;35285:16:0;:7;-1:-1:-1;;;;;35285:16:0;;:64;;;;35342:7;-1:-1:-1;;;;;35318:31:0;:20;35330:7;35318:11;:20::i;:::-;-1:-1:-1;;;;;35318:31:0;;35285:64;:113;;;-1:-1:-1;;;;;;31936:25:0;;;31907:4;31936:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35366:32;35277:122;34955:452;-1:-1:-1;;;;34955:452:0:o;38051:615::-;38224:4;-1:-1:-1;;;;;38197:31:0;:23;38212:7;38197:14;:23::i;:::-;-1:-1:-1;;;;;38197:31:0;;38175:122;;;;-1:-1:-1;;;38175:122:0;;18688:2:1;38175:122:0;;;18670:21:1;18727:2;18707:18;;;18700:30;18766:34;18746:18;;;18739:62;-1:-1:-1;;;18817:18:1;;;18810:39;18866:19;;38175:122:0;18486:405:1;38175:122:0;-1:-1:-1;;;;;38316:16:0;;38308:65;;;;-1:-1:-1;;;38308:65:0;;13681:2:1;38308:65:0;;;13663:21:1;13720:2;13700:18;;;13693:30;13759:34;13739:18;;;13732:62;-1:-1:-1;;;13810:18:1;;;13803:34;13854:19;;38308:65:0;13479:400:1;38308:65:0;38386:39;38407:4;38413:2;38417:7;38386:20;:39::i;:::-;38490:29;38507:1;38511:7;38490:8;:29::i;:::-;-1:-1:-1;;;;;38532:15:0;;;;;;:9;:15;;;;;:20;;38551:1;;38532:15;:20;;38551:1;;38532:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38563:13:0;;;;;;:9;:13;;;;;:18;;38580:1;;38563:13;:18;;38580:1;;38563:18;:::i;:::-;;;;-1:-1:-1;;38592:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38592:21:0;-1:-1:-1;;;;;38592:21:0;;;;;;;;;38631:27;;38592:16;;38631:27;;;;;;;38051:615;;;:::o;26651:173::-;26726:6;;;-1:-1:-1;;;;;26743:17:0;;;-1:-1:-1;;;;;;26743:17:0;;;;;;;26776:40;;26726:6;;;26743:17;26726:6;;26776:40;;26707:16;;26776:40;26696:128;26651:173;:::o;58811:106::-;58887:15;;58860:7;;58887:22;;58907:1;58887:19;:22::i;36743:382::-;-1:-1:-1;;;;;36823:16:0;;36815:61;;;;-1:-1:-1;;;36815:61:0;;16849:2:1;36815:61:0;;;16831:21:1;;;16868:18;;;16861:30;16927:34;16907:18;;;16900:62;16979:18;;36815:61:0;16647:356:1;36815:61:0;34726:4;34750:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34750:16:0;:30;36887:58;;;;-1:-1:-1;;;36887:58:0;;13324:2:1;36887:58:0;;;13306:21:1;13363:2;13343:18;;;13336:30;13402;13382:18;;;13375:58;13450:18;;36887:58:0;13122:352:1;36887:58:0;36958:45;36987:1;36991:2;36995:7;36958:20;:45::i;:::-;-1:-1:-1;;;;;37016:13:0;;;;;;:9;:13;;;;;:18;;37033:1;;37016:13;:18;;37033:1;;37016:18;:::i;:::-;;;;-1:-1:-1;;37045:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37045:21:0;-1:-1:-1;;;;;37045:21:0;;;;;;;;37084:33;;37045:16;;;37084:33;;37045:16;;37084:33;36743:382;;:::o;58925:123::-;58999:10;;58981:15;;:28;58973:37;;;;;;59023:15;:17;;;:15;:17;;;:::i;:::-;;;;;;58925:123::o;3179:98::-;3237:7;3264:5;3268:1;3264;:5;:::i;33996:352::-;34153:28;34163:4;34169:2;34173:7;34153:9;:28::i;:::-;34214:48;34237:4;34243:2;34247:7;34256:5;34214:22;:48::i;:::-;34192:148;;;;-1:-1:-1;;;34192:148:0;;;;;;;:::i;6792:723::-;6848:13;7069:10;7065:53;;-1:-1:-1;;7096:10:0;;;;;;;;;;;;-1:-1:-1;;;7096:10:0;;;;;6792:723::o;7065:53::-;7143:5;7128:12;7184:78;7191:9;;7184:78;;7217:8;;;;:::i;:::-;;-1:-1:-1;7240:10:0;;-1:-1:-1;7248:2:0;7240:10;;:::i;:::-;;;7184:78;;;7272:19;7304:6;7294:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7294:17:0;;7272:39;;7322:154;7329:10;;7322:154;;7356:11;7366:1;7356:11;;:::i;:::-;;-1:-1:-1;7425:10:0;7433:2;7425:5;:10;:::i;:::-;7412:24;;:2;:24;:::i;:::-;7399:39;;7382:6;7389;7382:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7382:56:0;;;;;;;;-1:-1:-1;7453:11:0;7462:2;7453:11;;:::i;:::-;;;7322:154;;52984:410;53094:7;51149:108;;;;;;;;;;;;;;;;;51125:143;;;;;;;53248:12;;53283:11;;;;53327:24;;;;;53317:35;;;;;;53167:204;;;;;10465:25:1;;;10521:2;10506:18;;10499:34;;;;-1:-1:-1;;;;;10569:32:1;10564:2;10549:18;;10542:60;10633:2;10618:18;;10611:34;10452:3;10437:19;;10234:417;53167:204:0;;;;;;;;;;;;;53139:247;;;;;;53119:267;;52984:410;;;:::o;50715:258::-;50814:7;50916:20;50154:15;;;50076:101;50916:20;50887:63;;-1:-1:-1;;;50887:63:0;;;8562:27:1;8605:11;;;8598:27;;;;8641:12;;;8634:28;;;8678:12;;50887:63:0;8304:392:1;43741:589:0;-1:-1:-1;;;;;43947:18:0;;43943:187;;43982:40;44014:7;45157:10;:17;;45130:24;;;;:15;:24;;;;;:44;;;45185:24;;;;;;;;;;;;45053:164;43982:40;43943:187;;;44052:2;-1:-1:-1;;;;;44044:10:0;:4;-1:-1:-1;;;;;44044:10:0;;44040:90;;44071:47;44104:4;44110:7;44071:32;:47::i;:::-;-1:-1:-1;;;;;44144:16:0;;44140:183;;44177:45;44214:7;44177:36;:45::i;44140:183::-;44250:4;-1:-1:-1;;;;;44244:10:0;:2;-1:-1:-1;;;;;44244:10:0;;44240:83;;44271:40;44299:2;44303:7;44271:27;:40::i;39523:980::-;39678:4;-1:-1:-1;;;;;39699:13:0;;16707:20;16755:8;39695:801;;39768:2;-1:-1:-1;;;;;39752:36:0;;39811:12;:10;:12::i;:::-;39846:4;39873:7;39903:5;39752:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39752:175:0;;;;;;;;-1:-1:-1;;39752:175:0;;;;;;;;;;;;:::i;:::-;;;39731:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40110:13:0;;40106:320;;40153:108;;-1:-1:-1;;;40153:108:0;;;;;;;:::i;40106:320::-;40376:6;40370:13;40361:6;40357:2;40353:15;40346:38;39731:710;-1:-1:-1;;;;;;39991:51:0;-1:-1:-1;;;39991:51:0;;-1:-1:-1;39984:58:0;;39695:801;-1:-1:-1;40480:4:0;39523:980;;;;;;:::o;45844:1002::-;46124:22;46174:1;46149:22;46166:4;46149:16;:22::i;:::-;:26;;;;:::i;:::-;46186:18;46207:26;;;:17;:26;;;;;;46124:51;;-1:-1:-1;46340:28:0;;;46336:328;;-1:-1:-1;;;;;46407:18:0;;46385:19;46407:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46458:30;;;;;;:44;;;46575:30;;:17;:30;;;;;:43;;;46336:328;-1:-1:-1;46760:26:0;;;;:17;:26;;;;;;;;46753:33;;;-1:-1:-1;;;;;46804:18:0;;;;;:12;:18;;;;;:34;;;;;;;46797:41;45844:1002::o;47141:1079::-;47419:10;:17;47394:22;;47419:21;;47439:1;;47419:21;:::i;:::-;47451:18;47472:24;;;:15;:24;;;;;;47845:10;:26;;47394:46;;-1:-1:-1;47472:24:0;;47394:46;;47845:26;;;;;;:::i;:::-;;;;;;;;;47823:48;;47909:11;47884:10;47895;47884:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47989:28;;;:15;:28;;;;;;;:41;;;48161:24;;;;;48154:31;48196:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47212:1008;;;47141:1079;:::o;44631:221::-;44716:14;44733:20;44750:2;44733:16;:20::i;:::-;-1:-1:-1;;;;;44764:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44809:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44631: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:220::-;870:5;923:3;916:4;908:6;904:17;900:27;890:55;;941:1;938;931:12;890:55;963:79;1038:3;1029:6;1016:20;1009:4;1001:6;997:17;963:79;:::i;1053:186::-;1112:6;1165:2;1153:9;1144:7;1140:23;1136:32;1133:52;;;1181:1;1178;1171:12;1133:52;1204:29;1223:9;1204:29;:::i;1244:260::-;1312:6;1320;1373:2;1361:9;1352:7;1348:23;1344:32;1341:52;;;1389:1;1386;1379:12;1341:52;1412:29;1431:9;1412:29;:::i;:::-;1402:39;;1460:38;1494:2;1483:9;1479:18;1460:38;:::i;:::-;1450:48;;1244:260;;;;;:::o;1509:328::-;1586:6;1594;1602;1655:2;1643:9;1634:7;1630:23;1626:32;1623:52;;;1671:1;1668;1661:12;1623:52;1694:29;1713:9;1694:29;:::i;:::-;1684:39;;1742:38;1776:2;1765:9;1761:18;1742:38;:::i;:::-;1732:48;;1827:2;1816:9;1812:18;1799:32;1789:42;;1509:328;;;;;:::o;1842:537::-;1937:6;1945;1953;1961;2014:3;2002:9;1993:7;1989:23;1985:33;1982:53;;;2031:1;2028;2021:12;1982:53;2054:29;2073:9;2054:29;:::i;:::-;2044:39;;2102:38;2136:2;2125:9;2121:18;2102:38;:::i;:::-;2092:48;;2187:2;2176:9;2172:18;2159:32;2149:42;;2242:2;2231:9;2227:18;2214:32;2269:18;2261:6;2258:30;2255:50;;;2301:1;2298;2291:12;2255:50;2324:49;2365:7;2356:6;2345:9;2341:22;2324:49;:::i;:::-;2314:59;;;1842:537;;;;;;;:::o;2384:347::-;2449:6;2457;2510:2;2498:9;2489:7;2485:23;2481:32;2478:52;;;2526:1;2523;2516:12;2478:52;2549:29;2568:9;2549:29;:::i;:::-;2539:39;;2628:2;2617:9;2613:18;2600:32;2675:5;2668:13;2661:21;2654:5;2651:32;2641:60;;2697:1;2694;2687:12;2641:60;2720:5;2710:15;;;2384:347;;;;;:::o;2736:689::-;2838:6;2846;2854;2862;2870;2923:3;2911:9;2902:7;2898:23;2894:33;2891:53;;;2940:1;2937;2930:12;2891:53;2963:29;2982:9;2963:29;:::i;:::-;2953:39;;3043:2;3032:9;3028:18;3015:32;3070:18;3062:6;3059:30;3056:50;;;3102:1;3099;3092:12;3056:50;3125:49;3166:7;3157:6;3146:9;3142:22;3125:49;:::i;:::-;3115:59;;;3221:2;3210:9;3206:18;3193:32;3183:42;;3272:2;3261:9;3257:18;3244:32;3234:42;;3326:3;3315:9;3311:19;3298:33;3371:4;3364:5;3360:16;3353:5;3350:27;3340:55;;3391:1;3388;3381:12;3340:55;3414:5;3404:15;;;2736:689;;;;;;;;:::o;3430:254::-;3498:6;3506;3559:2;3547:9;3538:7;3534:23;3530:32;3527:52;;;3575:1;3572;3565:12;3527:52;3598:29;3617:9;3598:29;:::i;:::-;3588:39;3674:2;3659:18;;;;3646:32;;-1:-1:-1;;;3430:254:1:o;3689:615::-;3775:6;3783;3836:2;3824:9;3815:7;3811:23;3807:32;3804:52;;;3852:1;3849;3842:12;3804:52;3892:9;3879:23;3921:18;3962:2;3954:6;3951:14;3948:34;;;3978:1;3975;3968:12;3948:34;4016:6;4005:9;4001:22;3991:32;;4061:7;4054:4;4050:2;4046:13;4042:27;4032:55;;4083:1;4080;4073:12;4032:55;4123:2;4110:16;4149:2;4141:6;4138:14;4135:34;;;4165:1;4162;4155:12;4135:34;4218:7;4213:2;4203:6;4200:1;4196:14;4192:2;4188:23;4184:32;4181:45;4178:65;;;4239:1;4236;4229:12;4178:65;4270:2;4262:11;;;;;4292:6;;-1:-1:-1;3689:615:1;;-1:-1:-1;;;;3689:615:1:o;4309:245::-;4367:6;4420:2;4408:9;4399:7;4395:23;4391:32;4388:52;;;4436:1;4433;4426:12;4388:52;4475:9;4462:23;4494:30;4518:5;4494:30;:::i;4559:249::-;4628:6;4681:2;4669:9;4660:7;4656:23;4652:32;4649:52;;;4697:1;4694;4687:12;4649:52;4729:9;4723:16;4748:30;4772:5;4748:30;:::i;4813:450::-;4882:6;4935:2;4923:9;4914:7;4910:23;4906:32;4903:52;;;4951:1;4948;4941:12;4903:52;4991:9;4978:23;5024:18;5016:6;5013:30;5010:50;;;5056:1;5053;5046:12;5010:50;5079:22;;5132:4;5124:13;;5120:27;-1:-1:-1;5110:55:1;;5161:1;5158;5151:12;5110:55;5184:73;5249:7;5244:2;5231:16;5226:2;5222;5218:11;5184:73;:::i;5268:180::-;5327:6;5380:2;5368:9;5359:7;5355:23;5351:32;5348:52;;;5396:1;5393;5386:12;5348:52;-1:-1:-1;5419:23:1;;5268:180;-1:-1:-1;5268:180:1:o;5453:254::-;5521:6;5529;5582:2;5570:9;5561:7;5557:23;5553:32;5550:52;;;5598:1;5595;5588:12;5550:52;5634:9;5621:23;5611:33;;5663:38;5697:2;5686:9;5682:18;5663:38;:::i;5712:248::-;5780:6;5788;5841:2;5829:9;5820:7;5816:23;5812:32;5809:52;;;5857:1;5854;5847:12;5809:52;-1:-1:-1;;5880:23:1;;;5950:2;5935:18;;;5922:32;;-1:-1:-1;5712:248:1:o;5965:268::-;6017:3;6055:5;6049:12;6082:6;6077:3;6070:19;6098:63;6154:6;6147:4;6142:3;6138:14;6131:4;6124:5;6120:16;6098:63;:::i;:::-;6215:2;6194:15;-1:-1:-1;;6190:29:1;6181:39;;;;6222:4;6177:50;;5965:268;-1:-1:-1;;5965:268:1:o;6238:184::-;6279:3;6317:5;6311:12;6332:52;6377:6;6372:3;6365:4;6358:5;6354:16;6332:52;:::i;:::-;6400:16;;;;;6238:184;-1:-1:-1;;6238:184:1:o;6427:274::-;6556:3;6594:6;6588:13;6610:53;6656:6;6651:3;6644:4;6636:6;6632:17;6610:53;:::i;:::-;6679:16;;;;;6427:274;-1:-1:-1;;6427:274:1:o;6706:415::-;6863:3;6901:6;6895:13;6917:53;6963:6;6958:3;6951:4;6943:6;6939:17;6917:53;:::i;:::-;7039:2;7035:15;;;;-1:-1:-1;;7031:53:1;6992:16;;;;7017:68;;;7112:2;7101:14;;6706:415;-1:-1:-1;;6706:415:1:o;7126:1173::-;7302:3;7331:1;7364:6;7358:13;7394:3;7416:1;7444:9;7440:2;7436:18;7426:28;;7504:2;7493:9;7489:18;7526;7516:61;;7570:4;7562:6;7558:17;7548:27;;7516:61;7596:2;7644;7636:6;7633:14;7613:18;7610:38;7607:165;;;-1:-1:-1;;;7671:33:1;;7727:4;7724:1;7717:15;7757:4;7678:3;7745:17;7607:165;7788:18;7815:104;;;;7933:1;7928:320;;;;7781:467;;7815:104;-1:-1:-1;;7848:24:1;;7836:37;;7893:16;;;;-1:-1:-1;7815:104:1;;7928:320;22868:1;22861:14;;;22905:4;22892:18;;8023:1;8037:165;8051:6;8048:1;8045:13;8037:165;;;8129:14;;8116:11;;;8109:35;8172:16;;;;8066:10;;8037:165;;;8041:3;;8231:6;8226:3;8222:16;8215:23;;7781:467;;;;;;;8264:29;8289:3;8281:6;8264:29;:::i;:::-;8257:36;7126:1173;-1:-1:-1;;;;;7126:1173:1:o;8909:442::-;-1:-1:-1;;;;;9166:15:1;;;9148:34;;9218:15;;9213:2;9198:18;;9191:43;9270:2;9265;9250:18;;9243:30;;;9091:4;;9290:55;;9326:18;;9318:6;9290:55;:::i;9356:499::-;-1:-1:-1;;;;;9625:15:1;;;9607:34;;9677:15;;9672:2;9657:18;;9650:43;9724:2;9709:18;;9702:34;;;9772:3;9767:2;9752:18;;9745:31;;;9550:4;;9793:56;;9829:19;;9821:6;9793:56;:::i;:::-;9785:64;9356:499;-1:-1:-1;;;;;;9356:499:1:o;11059:228::-;11206:2;11195:9;11188:21;11169:4;11226:55;11277:2;11266:9;11262:18;11254:6;11226:55;:::i;11939:414::-;12141:2;12123:21;;;12180:2;12160:18;;;12153:30;12219:34;12214:2;12199:18;;12192:62;-1:-1:-1;;;12285:2:1;12270:18;;12263:48;12343:3;12328:19;;11939:414::o;14238:339::-;14440:2;14422:21;;;14479:2;14459:18;;;14452:30;-1:-1:-1;;;14513:2:1;14498:18;;14491:45;14568:2;14553:18;;14238:339::o;17421:356::-;17623:2;17605:21;;;17642:18;;;17635:30;17701:34;17696:2;17681:18;;17674:62;17768:2;17753:18;;17421:356::o;20053:346::-;20255:2;20237:21;;;20294:2;20274:18;;;20267:30;-1:-1:-1;;;20328:2:1;20313:18;;20306:52;20390:2;20375:18;;20053:346::o;20747:413::-;20949:2;20931:21;;;20988:2;20968:18;;;20961:30;21027:34;21022:2;21007:18;;21000:62;-1:-1:-1;;;21093:2:1;21078:18;;21071:47;21150:3;21135:19;;20747:413::o;21924:342::-;22126:2;22108:21;;;22165:2;22145:18;;;22138:30;-1:-1:-1;;;22199:2:1;22184:18;;22177:48;22257:2;22242:18;;21924:342::o;22921:128::-;22961:3;22992:1;22988:6;22985:1;22982:13;22979:39;;;22998:18;;:::i;:::-;-1:-1:-1;23034:9:1;;22921:128::o;23054:120::-;23094:1;23120;23110:35;;23125:18;;:::i;:::-;-1:-1:-1;23159:9:1;;23054:120::o;23179:168::-;23219:7;23285:1;23281;23277:6;23273:14;23270:1;23267:21;23262:1;23255:9;23248:17;23244:45;23241:71;;;23292:18;;:::i;:::-;-1:-1:-1;23332:9:1;;23179:168::o;23352:125::-;23392:4;23420:1;23417;23414:8;23411:34;;;23425:18;;:::i;:::-;-1:-1:-1;23462:9:1;;23352:125::o;23482:258::-;23554:1;23564:113;23578:6;23575:1;23572:13;23564:113;;;23654:11;;;23648:18;23635:11;;;23628:39;23600:2;23593:10;23564:113;;;23695:6;23692:1;23689:13;23686:48;;;-1:-1:-1;;23730:1:1;23712:16;;23705:27;23482:258::o;23745:380::-;23824:1;23820:12;;;;23867;;;23888:61;;23942:4;23934:6;23930:17;23920:27;;23888:61;23995:2;23987:6;23984:14;23964:18;23961:38;23958:161;;;24041:10;24036:3;24032:20;24029:1;24022:31;24076:4;24073:1;24066:15;24104:4;24101:1;24094:15;23958:161;;23745:380;;;:::o;24130:135::-;24169:3;-1:-1:-1;;24190:17:1;;24187:43;;;24210:18;;:::i;:::-;-1:-1:-1;24257:1:1;24246:13;;24130:135::o;24270:112::-;24302:1;24328;24318:35;;24333:18;;:::i;:::-;-1:-1:-1;24367:9:1;;24270:112::o;24387:127::-;24448:10;24443:3;24439:20;24436:1;24429:31;24479:4;24476:1;24469:15;24503:4;24500:1;24493:15;24519:127;24580:10;24575:3;24571:20;24568:1;24561:31;24611:4;24608:1;24601:15;24635:4;24632:1;24625:15;24651:127;24712:10;24707:3;24703:20;24700:1;24693:31;24743:4;24740:1;24733:15;24767:4;24764:1;24757:15;24783:127;24844:10;24839:3;24835:20;24832:1;24825:31;24875:4;24872:1;24865:15;24899:4;24896:1;24889:15;24915:127;24976:10;24971:3;24967:20;24964:1;24957:31;25007:4;25004:1;24997:15;25031:4;25028:1;25021:15;25047:131;-1:-1:-1;;;;;;25121:32:1;;25111:43;;25101:71;;25168:1;25165;25158:12

Swarm Source

ipfs://8ab7f3d922032eaa938667aeb07ef1b9de22f8bca0132d2de2a82d9ca65dc6ce
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.