ETH Price: $2,689.89 (-3.26%)

Token

Packdawgz (DOM)
 

Overview

Max Total Supply

132 DOM

Holders

77

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 DOM
0xe6AC0069ee75B4A9bc1f1A669983e52cF0F1cB15
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:
TheCyborx

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-08
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this;
        // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/introspection/IERC165.sol

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
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);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
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;
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
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);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
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);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
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);
}

// File: @openzeppelin/contracts/introspection/ERC165.sol

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor() {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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)
    {
        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)
    {
        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)
    {
        // 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)
    {
        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)
    {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1;
            // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value)
        private
        view
        returns (bool)
    {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index)
        private
        view
        returns (bytes32)
    {
        require(
            set._values.length > index,
            "EnumerableSet: index out of bounds"
        );
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index)
        internal
        view
        returns (bytes32)
    {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index)
        internal
        view
        returns (uint256)
    {
        return uint256(_at(set._inner, index));
    }
}

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

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(
        Map storage map,
        bytes32 key,
        bytes32 value
    ) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) {
            // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({_key: key, _value: value}));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) {
            // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1;
            // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key)
        private
        view
        returns (bool)
    {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

    /**
     * @dev Returns the key-value pair stored at position `index` in the map. O(1).
     *
     * Note that there are no guarantees on the ordering of entries inside the
     * array, and it may change when more entries are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Map storage map, uint256 index)
        private
        view
        returns (bytes32, bytes32)
    {
        require(
            map._entries.length > index,
            "EnumerableMap: index out of bounds"
        );

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key)
        private
        view
        returns (bool, bytes32)
    {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0);
        // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value);
        // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key");
        // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value;
        // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(
        Map storage map,
        bytes32 key,
        string memory errorMessage
    ) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage);
        // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value;
        // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        UintToAddressMap storage map,
        uint256 key,
        address value
    ) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key)
        internal
        returns (bool)
    {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool)
    {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map)
        internal
        view
        returns (uint256)
    {
        return _length(map._inner);
    }

    /**
     * @dev Returns the element stored at position `index` in the set. O(1).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintToAddressMap storage map, uint256 index)
        internal
        view
        returns (uint256, address)
    {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool, address)
    {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        UintToAddressMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (address) {
        return
            address(
                uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))
            );
    }
}

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

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping(address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        return
            _tokenOwners.get(
                tokenId,
                "ERC721: owner query for nonexistent token"
            );
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
     * @dev Returns the base URI set via {_setBaseURI}. This will be
     * automatically added as a prefix in {tokenURI} to each token's URI, or
     * to the token ID if no specific URI is set for that token ID.
     */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 ||
                ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 ||
            ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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);
        // internal owner

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"
        );
        // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(
            abi.encodeWithSelector(
                IERC721Receiver(to).onERC721Received.selector,
                _msgSender(),
                from,
                tokenId,
                _data
            ),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/TheCyborx.sol

/**
 * @title TheCyborx contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract TheCyborx is ERC721, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public startingIndexBlock;
    uint256 public startingIndex;
    uint256 public privateMintPrice = 0.045 ether;
    uint256 public publicMintPrice = 0.06 ether;
    uint256 public maxToMint = 200;
    uint256 public MAX_MINT_WHITELIST = 200;
    uint256 public MAX_ELEMENTS = 1000;
    uint256 public REVEAL_TIMESTAMP;

    bool public revealed = true;

    string public notRevealedUri = "";

    string public PROVENANCE_HASH = "";
    bool public saleIsActive = true;
    bool public privateSaleIsActive = true;

    struct Whitelist {
        address addr;
        uint256 claimAmount;
        uint256 hasMinted;
    }

    mapping(address => Whitelist) public whitelist;
    mapping(address => Whitelist) public winnerlist;

    address[] whitelistAddr;
    address[] winnerlistAddr;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721(_name, _symbol) {
        REVEAL_TIMESTAMP = block.timestamp;
        _setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

    /**
     * Get the array of token for owner.
     */
    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            for (uint256 index; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    /**
     * Check if certain token id is exists.
     */
    function exists(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }

    /**
     * Set presell price to mint
     */
    function setPrivateMintPrice(uint256 _price) external onlyOwner {
        privateMintPrice = _price;
    }

    /**
     * Set publicsell price to mint
     */
    function setPublicMintPrice(uint256 _price) external onlyOwner {
        publicMintPrice = _price;
    }

    /**
     * Set maximum count to mint per once.
     */
    function setMaxToMint(uint256 _maxValue) external onlyOwner {
        maxToMint = _maxValue;
    }

    /**
     * reserve by owner
     */

    function reserve(uint256 _count) public onlyOwner {
        uint256 total = totalSupply();
        require(total + _count <= MAX_ELEMENTS, "Exceeded");
        for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, total + i);
        }
    }

    /**
     * Set reveal timestamp when finished the sale.
     */
    function setRevealTimestamp(uint256 _revealTimeStamp) external onlyOwner {
        REVEAL_TIMESTAMP = _revealTimeStamp;
    }

    /*
     * Set provenance once it's calculated
     */
    function setProvenanceHash(string memory _provenanceHash)
        external
        onlyOwner
    {
        PROVENANCE_HASH = _provenanceHash;
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        _setBaseURI(baseURI);
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    //only owner
    function reveal() public onlyOwner {
        revealed = true;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        require(tokenId <= totalSupply(), "URI query for nonexistent token");
        if (revealed == false) {
            return notRevealedUri;
        }
        string memory base = baseURI();
        return string(abi.encodePacked(base, "/", tokenId.toString(), ".json"));
    }

    /*
     * Pause sale if active, make active if paused
     */

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipPrivateSaleState() public onlyOwner {
        privateSaleIsActive = !privateSaleIsActive;
    }

    /**
     * Mints tokens
     */
    function mint(uint256 _count) public payable {
        uint256 total = totalSupply();
        require(saleIsActive, "Sale must be active to mint");
        require((total + _count) <= MAX_ELEMENTS, "Max limit");

        if (privateSaleIsActive) {
            require(
                (privateMintPrice * _count) <= msg.value,
                "Value below price"
            );
            require(_count <= MAX_MINT_WHITELIST, "Above max tx count");
            require(isWhitelisted(msg.sender), "Is not whitelisted");
            require(
                whitelist[msg.sender].hasMinted.add(_count) <=
                    MAX_MINT_WHITELIST,
                "Can only mint 200 while whitelisted"
            );
            whitelist[msg.sender].hasMinted = whitelist[msg.sender]
                .hasMinted
                .add(_count);
        } else {
            if (isWhitelisted(msg.sender)) {
                require((balanceOf(msg.sender) - whitelist[msg.sender].hasMinted + _count) <= maxToMint, "Can only mint 200 tokens");
            } else {
                require((balanceOf(msg.sender) + _count) <= maxToMint, "Can only mint 200 tokens");
            }
            require(
                (publicMintPrice * _count) <= msg.value,
                "Value below price"
            );
        }

        for (uint256 i = 0; i < _count; i++) {
            uint256 mintIndex = totalSupply() + 1;
            if (totalSupply() < MAX_ELEMENTS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

        // If we haven't set the starting index and this is either
        // 1) the last saleable token or
        // 2) the first token to be sold after the end of pre-sale, set the starting index block
        if (
            startingIndexBlock == 0 &&
            (totalSupply() == MAX_ELEMENTS ||
                block.timestamp >= REVEAL_TIMESTAMP)
        ) {
            startingIndexBlock = block.number;
        }
    }

    function freeMint(uint256 _count) public {
        uint256 total = totalSupply();
        require(isWinnerlisted(msg.sender), "Is not winnerlisted");
        require(saleIsActive, "Sale must be active to mint");
        require((total + _count) <= MAX_ELEMENTS, "Exceeds max supply");
        require(
            winnerlist[msg.sender].claimAmount > 0,
            "You have no amount to claim"
        );
        require(
            _count <= winnerlist[msg.sender].claimAmount,
            "You claim amount exceeded"
        );

        for (uint256 i = 0; i < _count; i++) {
            uint256 mintIndex = totalSupply() + 1;
            if (totalSupply() < MAX_ELEMENTS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

        winnerlist[msg.sender].claimAmount =
            winnerlist[msg.sender].claimAmount -
            _count;

        // If we haven't set the starting index and this is either
        // 1) the last saleable token or
        // 2) the first token to be sold after the end of pre-sale, set the starting index block
        if (
            startingIndexBlock == 0 &&
            (totalSupply() == MAX_ELEMENTS ||
                block.timestamp >= REVEAL_TIMESTAMP)
        ) {
            startingIndexBlock = block.number;
        }
    }

    /**
     * Set the starting index for the collection
     */
    function setStartingIndex() external onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");

        startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_ELEMENTS;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if ((block.number - startingIndexBlock) > 255) {
            startingIndex = uint256(blockhash(block.number - 1)) % MAX_ELEMENTS;
        }
        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex + 1;
        }
    }

    function setWhitelistAddr(address[] memory addrs) public onlyOwner {
        whitelistAddr = addrs;
        for (uint256 i = 0; i < whitelistAddr.length; i++) {
            addAddressToWhitelist(whitelistAddr[i]);
        }
    }

    /**
     * Set the starting index block for the collection, essentially unblocking
     * setting starting index
     */
    function emergencySetStartingIndexBlock() external onlyOwner {
        require(startingIndex == 0, "Starting index is already set");

        startingIndexBlock = block.number;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = msg.sender.call{value: balance}("");
        require(success);
    }

    function partialWithdraw(uint256 _amount, address payable _to)
        external
        onlyOwner
    {
        require(_amount > 0, "Withdraw must be greater than 0");
        require(_amount <= address(this).balance, "Amount too high");
        (bool success, ) = _to.call{value: _amount}("");
        require(success);
    }

    function addAddressToWhitelist(address addr)
        public
        onlyOwner
        returns (bool success)
    {
        require(!isWhitelisted(addr), "Already whitelisted");
        whitelist[addr].addr = addr;
        success = true;
    }

    function isWhitelisted(address addr)
        public
        view
        returns (bool isWhiteListed)
    {
        return whitelist[addr].addr == addr;
    }

    function addAddressToWinnerlist(address addr, uint256 claimAmount)
        public
        onlyOwner
        returns (bool success)
    {
        require(!isWinnerlisted(addr), "Already winnerlisted");
        winnerlist[addr].addr = addr;
        winnerlist[addr].claimAmount = claimAmount;
        winnerlist[addr].hasMinted = 0;
        success = true;
    }

    function isWinnerlisted(address addr)
        public
        view
        returns (bool isWinnerListed)
    {
        return winnerlist[addr].addr == addr;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":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":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"}],"name":"addAddressToWinnerlist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPrivateSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"isWhiteListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWinnerlisted","outputs":[{"internalType":"bool","name":"isWinnerListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_to","type":"address"}],"name":"partialWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"privateMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxValue","type":"uint256"}],"name":"setMaxToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrivateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"setWhitelistAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"hasMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"winnerlist","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"hasMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

669fdf42f6e48000600d5566d529ae9e860000600e5560c8600f8190556010556103e86011556013805460ff1916600117905560a06040819052600060808190526200004e9160149162000291565b506040805160208101918290526000908190526200006f9160159162000291565b506016805461ff001960ff19909116600117166101001790553480156200009557600080fd5b5060405162003fc938038062003fc9833981016040819052620000b891620003e2565b8383620000cc6301ffc9a760e01b620001af565b8151620000e190600690602085019062000291565b508051620000f790600790602084019062000291565b506200010a6380ac58cd60e01b620001af565b6200011c635b5e139f60e01b620001af565b6200012e63780e9d6360e01b620001af565b50600090506200013d6200020a565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350426012556200019a826200020e565b620001a58162000227565b5050505062000555565b6001600160e01b03198082161415620001e55760405162461bcd60e51b8152600401620001dc9062000496565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b80516200022390600990602084019062000291565b5050565b620002316200020a565b6001600160a01b03166200024462000282565b6001600160a01b0316146200026d5760405162461bcd60e51b8152600401620001dc90620004cd565b80516200022390601490602084019062000291565b600a546001600160a01b031690565b8280546200029f9062000502565b90600052602060002090601f016020900481019282620002c357600085556200030e565b82601f10620002de57805160ff19168380011785556200030e565b828001600101855582156200030e579182015b828111156200030e578251825591602001919060010190620002f1565b506200031c92915062000320565b5090565b5b808211156200031c576000815560010162000321565b600082601f83011262000348578081fd5b81516001600160401b03808211156200036557620003656200053f565b6040516020601f8401601f19168201810183811183821017156200038d576200038d6200053f565b6040528382528584018101871015620003a4578485fd5b8492505b83831015620003c75785830181015182840182015291820191620003a8565b83831115620003d857848185840101525b5095945050505050565b60008060008060808587031215620003f8578384fd5b84516001600160401b03808211156200040f578586fd5b6200041d8883890162000337565b9550602087015191508082111562000433578485fd5b620004418883890162000337565b9450604087015191508082111562000457578384fd5b620004658883890162000337565b935060608701519150808211156200047b578283fd5b506200048a8782880162000337565b91505092959194509250565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200051757607f821691505b602082108114156200053957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613a6480620005656000396000f3fe60806040526004361061038b5760003560e01c80636352211e116101dc578063a22cb46511610102578063e36d6498116100a0578063f2c4ce1e1161006f578063f2c4ce1e146109b6578063f2fde38b146109d6578063f571d67c146109f6578063ff1b655614610a165761038b565b8063e36d649814610957578063e985e9c51461096c578063e98665501461098c578063eb8d2444146109a15761038b565b8063c87b56dd116100dc578063c87b56dd146108ed578063cb774d471461090d578063cd7d508f14610922578063dc53fd92146109425761038b565b8063a22cb46514610898578063a475b5dd146108b8578063b88d4fde146108cd5761038b565b80637c928fe91161017a5780638da5cb5b116101495780638da5cb5b1461083b57806395d89b41146108505780639b19251a14610865578063a0712d68146108855761038b565b80637c928fe9146107b95780637d17fcbe146107d9578063819b25ba146107ee5780638462151c1461080e5761038b565b806370a08231116101b657806370a0823114610735578063715018a614610755578063738c69a61461076a5780637b9417c8146107995761038b565b80636352211e146106e05780636c0360eb146107005780637084b2b7146107155761038b565b80631d97f38e116102c15780633ccfd60b1161025f578063518302271161022e578063518302271461067657806355f804b31461068b57806358941a4d146106ab5780635d82cf6e146106c05761038b565b80633ccfd60b1461060157806342842e0e146106165780634f558e79146106365780634f6ccce7146106565761038b565b806334918dfd1161029b57806334918dfd146105a25780633502a716146105b75780633719e3b0146105cc5780633af32abf146105e15761038b565b80631d97f38e1461054257806323b872dd146105625780632f745c59146105825761038b565b8063095ea7b31161032e578063149678371161030857806314967837146104d857806318160ddd146104f857806318e20a381461050d5780631970d1fb146105225761038b565b8063095ea7b3146104835780630ba133c5146104a357806310969523146104b85761038b565b806304737a011161036a57806304737a011461040a57806306fdde031461041f578063081812fc14610441578063081c8c441461046e5761038b565b806204348e14610390578063018a2c37146103bb57806301ffc9a7146103dd575b600080fd5b34801561039c57600080fd5b506103a5610a2b565b6040516103b29190613841565b60405180910390f35b3480156103c757600080fd5b506103db6103d6366004612deb565b610a31565b005b3480156103e957600080fd5b506103fd6103f8366004612d6d565b610a7e565b6040516103b29190612f76565b34801561041657600080fd5b506103fd610aa1565b34801561042b57600080fd5b50610434610aaf565b6040516103b29190612f81565b34801561044d57600080fd5b5061046161045c366004612deb565b610b41565b6040516103b29190612ec0565b34801561047a57600080fd5b50610434610b84565b34801561048f57600080fd5b506103db61049e366004612c8f565b610c12565b3480156104af57600080fd5b506103a5610caa565b3480156104c457600080fd5b506103db6104d3366004612da5565b610cb0565b3480156104e457600080fd5b506103fd6104f3366004612c8f565b610d06565b34801561050457600080fd5b506103a5610daa565b34801561051957600080fd5b506103a5610dbb565b34801561052e57600080fd5b506103db61053d366004612deb565b610dc1565b34801561054e57600080fd5b506103db61055d366004612e03565b610e05565b34801561056e57600080fd5b506103db61057d366004612ba1565b610eed565b34801561058e57600080fd5b506103a561059d366004612c8f565b610f25565b3480156105ae57600080fd5b506103db610f50565b3480156105c357600080fd5b506103a5610fa3565b3480156105d857600080fd5b506103db610fa9565b3480156105ed57600080fd5b506103fd6105fc366004612b4d565b611005565b34801561060d57600080fd5b506103db611026565b34801561062257600080fd5b506103db610631366004612ba1565b6110ca565b34801561064257600080fd5b506103fd610651366004612deb565b6110e5565b34801561066257600080fd5b506103a5610671366004612deb565b6110f0565b34801561068257600080fd5b506103fd611106565b34801561069757600080fd5b506103db6106a6366004612da5565b61110f565b3480156106b757600080fd5b506103a561115a565b3480156106cc57600080fd5b506103db6106db366004612deb565b611160565b3480156106ec57600080fd5b506104616106fb366004612deb565b6111a4565b34801561070c57600080fd5b506104346111cc565b34801561072157600080fd5b506103db610730366004612deb565b6111db565b34801561074157600080fd5b506103a5610750366004612b4d565b61121f565b34801561076157600080fd5b506103db611268565b34801561077657600080fd5b5061078a610785366004612b4d565b6112f1565b6040516103b293929190612f11565b3480156107a557600080fd5b506103fd6107b4366004612b4d565b61131c565b3480156107c557600080fd5b506103db6107d4366004612deb565b6113b1565b3480156107e557600080fd5b506103db611543565b3480156107fa57600080fd5b506103db610809366004612deb565b6115a8565b34801561081a57600080fd5b5061082e610829366004612b4d565b61164f565b6040516103b29190612f32565b34801561084757600080fd5b50610461611730565b34801561085c57600080fd5b5061043461173f565b34801561087157600080fd5b5061078a610880366004612b4d565b61174e565b6103db610893366004612deb565b611779565b3480156108a457600080fd5b506103db6108b3366004612c5e565b6119f9565b3480156108c457600080fd5b506103db611ac7565b3480156108d957600080fd5b506103db6108e8366004612be1565b611b15565b3480156108f957600080fd5b50610434610908366004612deb565b611b54565b34801561091957600080fd5b506103a5611c7c565b34801561092e57600080fd5b506103db61093d366004612cba565b611c82565b34801561094e57600080fd5b506103a5611d33565b34801561096357600080fd5b506103a5611d39565b34801561097857600080fd5b506103fd610987366004612b69565b611d3f565b34801561099857600080fd5b506103db611d6d565b3480156109ad57600080fd5b506103fd611e4d565b3480156109c257600080fd5b506103db6109d1366004612da5565b611e56565b3480156109e257600080fd5b506103db6109f1366004612b4d565b611ea8565b348015610a0257600080fd5b506103fd610a11366004612b4d565b611f69565b348015610a2257600080fd5b50610434611f8a565b600d5481565b610a39611f97565b6001600160a01b0316610a4a611730565b6001600160a01b031614610a795760405162461bcd60e51b8152600401610a709061353e565b60405180910390fd5b601255565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b601654610100900460ff1681565b606060068054610abe90613902565b80601f0160208091040260200160405190810160405280929190818152602001828054610aea90613902565b8015610b375780601f10610b0c57610100808354040283529160200191610b37565b820191906000526020600020905b815481529060010190602001808311610b1a57829003601f168201915b5050505050905090565b6000610b4c82611f9b565b610b685760405162461bcd60e51b8152600401610a70906134f2565b506000908152600460205260409020546001600160a01b031690565b60148054610b9190613902565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbd90613902565b8015610c0a5780601f10610bdf57610100808354040283529160200191610c0a565b820191906000526020600020905b815481529060010190602001808311610bed57829003601f168201915b505050505081565b6000610c1d826111a4565b9050806001600160a01b0316836001600160a01b03161415610c515760405162461bcd60e51b8152600401610a7090613691565b806001600160a01b0316610c63611f97565b6001600160a01b03161480610c7f5750610c7f81610987611f97565b610c9b5760405162461bcd60e51b8152600401610a709061337f565b610ca58383611fa8565b505050565b600f5481565b610cb8611f97565b6001600160a01b0316610cc9611730565b6001600160a01b031614610cef5760405162461bcd60e51b8152600401610a709061353e565b8051610d02906015906020840190612a07565b5050565b6000610d10611f97565b6001600160a01b0316610d21611730565b6001600160a01b031614610d475760405162461bcd60e51b8152600401610a709061353e565b610d5083611f69565b15610d6d5760405162461bcd60e51b8152600401610a7090613663565b506001600160a01b03909116600081815260186020526040812080546001600160a01b031916909217825560018083019390935560029091015590565b6000610db66002612016565b905090565b60125481565b610dc9611f97565b6001600160a01b0316610dda611730565b6001600160a01b031614610e005760405162461bcd60e51b8152600401610a709061353e565b600d55565b610e0d611f97565b6001600160a01b0316610e1e611730565b6001600160a01b031614610e445760405162461bcd60e51b8152600401610a709061353e565b60008211610e645760405162461bcd60e51b8152600401610a7090613311565b47821115610e845760405162461bcd60e51b8152600401610a70906133dc565b6000816001600160a01b031683604051610e9d90612ebd565b60006040518083038185875af1925050503d8060008114610eda576040519150601f19603f3d011682016040523d82523d6000602084013e610edf565b606091505b5050905080610ca557600080fd5b610efe610ef8611f97565b82612021565b610f1a5760405162461bcd60e51b8152600401610a7090613707565b610ca58383836120a6565b6001600160a01b0382166000908152600160205260408120610f4790836121b4565b90505b92915050565b610f58611f97565b6001600160a01b0316610f69611730565b6001600160a01b031614610f8f5760405162461bcd60e51b8152600401610a709061353e565b6016805460ff19811660ff90911615179055565b60115481565b610fb1611f97565b6001600160a01b0316610fc2611730565b6001600160a01b031614610fe85760405162461bcd60e51b8152600401610a709061353e565b6016805461ff001981166101009182900460ff1615909102179055565b6001600160a01b039081166000818152601760205260409020549091161490565b61102e611f97565b6001600160a01b031661103f611730565b6001600160a01b0316146110655760405162461bcd60e51b8152600401610a709061353e565b60405147906000903390839061107a90612ebd565b60006040518083038185875af1925050503d80600081146110b7576040519150601f19603f3d011682016040523d82523d6000602084013e6110bc565b606091505b5050905080610d0257600080fd5b610ca583838360405180602001604052806000815250611b15565b6000610f4a82611f9b565b6000806110fe6002846121c0565b509392505050565b60135460ff1681565b611117611f97565b6001600160a01b0316611128611730565b6001600160a01b03161461114e5760405162461bcd60e51b8152600401610a709061353e565b611157816121dc565b50565b60105481565b611168611f97565b6001600160a01b0316611179611730565b6001600160a01b03161461119f5760405162461bcd60e51b8152600401610a709061353e565b600e55565b6000610f4a82604051806060016040528060298152602001613a0660299139600291906121ef565b606060098054610abe90613902565b6111e3611f97565b6001600160a01b03166111f4611730565b6001600160a01b03161461121a5760405162461bcd60e51b8152600401610a709061353e565b600f55565b60006001600160a01b0382166112475760405162461bcd60e51b8152600401610a7090613405565b6001600160a01b0382166000908152600160205260409020610f4a90612016565b611270611f97565b6001600160a01b0316611281611730565b6001600160a01b0316146112a75760405162461bcd60e51b8152600401610a709061353e565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6018602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b6000611326611f97565b6001600160a01b0316611337611730565b6001600160a01b03161461135d5760405162461bcd60e51b8152600401610a709061353e565b61136682611005565b156113835760405162461bcd60e51b8152600401610a709061360b565b506001600160a01b0316600081815260176020526040902080546001600160a01b0319169091179055600190565b60006113bb610daa565b90506113c633611f69565b6113e25760405162461bcd60e51b8152600401610a7090613814565b60165460ff166114045760405162461bcd60e51b8152600401610a709061326b565b6011546114118383613874565b111561142f5760405162461bcd60e51b8152600401610a709061344f565b3360009081526018602052604090206001015461145e5760405162461bcd60e51b8152600401610a70906137dd565b336000908152601860205260409020600101548211156114905760405162461bcd60e51b8152600401610a7090613156565b60005b828110156114e05760006114a5610daa565b6114b0906001613874565b90506011546114bd610daa565b10156114cd576114cd3382612206565b50806114d881613937565b915050611493565b50336000908152601860205260409020600101546114ff9083906138bf565b33600090815260186020526040902060010155600b541580156115365750601154611528610daa565b148061153657506012544210155b15610d025743600b555050565b61154b611f97565b6001600160a01b031661155c611730565b6001600160a01b0316146115825760405162461bcd60e51b8152600401610a709061353e565b600c54156115a25760405162461bcd60e51b8152600401610a7090613348565b43600b55565b6115b0611f97565b6001600160a01b03166115c1611730565b6001600160a01b0316146115e75760405162461bcd60e51b8152600401610a709061353e565b60006115f1610daa565b6011549091506116018383613874565b111561161f5760405162461bcd60e51b8152600401610a70906137bb565b60005b82811015610ca55761163d336116388385613874565b612206565b8061164781613937565b915050611622565b6060600061165c8361121f565b905080611679575050604080516000815260208101909152610a9c565b60008167ffffffffffffffff8111156116a257634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156116cb578160200160208202803683370190505b50905060005b82811015611720576116e38582610f25565b82828151811061170357634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061171881613937565b9150506116d1565b509150610a9c9050565b50919050565b600a546001600160a01b031690565b606060078054610abe90613902565b6017602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b6000611783610daa565b60165490915060ff166117a85760405162461bcd60e51b8152600401610a709061326b565b6011546117b58383613874565b11156117d35760405162461bcd60e51b8152600401610a70906132a2565b601654610100900460ff16156118ca573482600d546117f291906138a0565b11156118105760405162461bcd60e51b8152600401610a7090613638565b6010548211156118325760405162461bcd60e51b8152600401610a709061323f565b61183b33611005565b6118575760405162461bcd60e51b8152600401610a709061378f565b601054336000908152601760205260409020600201546118779084612220565b11156118955760405162461bcd60e51b8152600401610a709061300d565b336000908152601760205260409020600201546118b29083612220565b33600090815260176020526040902060020155611992565b6118d333611005565b1561193057600f543360008181526017602052604090206002015484916118f99061121f565b61190391906138bf565b61190d9190613874565b111561192b5760405162461bcd60e51b8152600401610a7090612f94565b611965565b600f548261193d3361121f565b6119479190613874565b11156119655760405162461bcd60e51b8152600401610a7090612f94565b3482600e5461197491906138a0565b11156119925760405162461bcd60e51b8152600401610a7090613638565b60005b828110156119e25760006119a7610daa565b6119b2906001613874565b90506011546119bf610daa565b10156119cf576119cf3382612206565b50806119da81613937565b915050611995565b50600b541580156115365750601154611528610daa565b611a01611f97565b6001600160a01b0316826001600160a01b03161415611a325760405162461bcd60e51b8152600401610a7090613208565b8060056000611a3f611f97565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611a83611f97565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611abb9190612f76565b60405180910390a35050565b611acf611f97565b6001600160a01b0316611ae0611730565b6001600160a01b031614611b065760405162461bcd60e51b8152600401610a709061353e565b6013805460ff19166001179055565b611b26611b20611f97565b83612021565b611b425760405162461bcd60e51b8152600401610a7090613707565b611b4e8484848461224f565b50505050565b6060611b5f82611f9b565b611b7b5760405162461bcd60e51b8152600401610a70906135bc565b611b83610daa565b821115611ba25760405162461bcd60e51b8152600401610a7090613050565b60135460ff16611c3e5760148054611bb990613902565b80601f0160208091040260200160405190810160405280929190818152602001828054611be590613902565b8015611c325780601f10611c0757610100808354040283529160200191611c32565b820191906000526020600020905b815481529060010190602001808311611c1557829003601f168201915b50505050509050610a9c565b6000611c486111cc565b905080611c5484612282565b604051602001611c65929190612e6f565b604051602081830303815290604052915050919050565b600c5481565b611c8a611f97565b6001600160a01b0316611c9b611730565b6001600160a01b031614611cc15760405162461bcd60e51b8152600401610a709061353e565b8051611cd4906019906020840190612a8b565b5060005b601954811015610d0257611d2060198281548110611d0657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031661131c565b5080611d2b81613937565b915050611cd8565b600e5481565b600b5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611d75611f97565b6001600160a01b0316611d86611730565b6001600160a01b031614611dac5760405162461bcd60e51b8152600401610a709061353e565b600c5415611dcc5760405162461bcd60e51b8152600401610a7090613348565b600b54611deb5760405162461bcd60e51b8152600401610a70906136d2565b601154600b54611dfc919040613952565b600c55600b5460ff90611e0f90436138bf565b1115611e3257601154611e236001436138bf565b611e2e919040613952565b600c555b600c54611e4b57600c54611e47906001613874565b600c555b565b60165460ff1681565b611e5e611f97565b6001600160a01b0316611e6f611730565b6001600160a01b031614611e955760405162461bcd60e51b8152600401610a709061353e565b8051610d02906014906020840190612a07565b611eb0611f97565b6001600160a01b0316611ec1611730565b6001600160a01b031614611ee75760405162461bcd60e51b8152600401610a709061353e565b6001600160a01b038116611f0d5760405162461bcd60e51b8152600401610a70906130d9565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b039081166000818152601860205260409020549091161490565b60158054610b9190613902565b3390565b6000610f4a60028361239d565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fdd826111a4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f4a826123a9565b600061202c82611f9b565b6120485760405162461bcd60e51b8152600401610a70906132c5565b6000612053836111a4565b9050806001600160a01b0316846001600160a01b0316148061208e5750836001600160a01b031661208384610b41565b6001600160a01b0316145b8061209e575061209e8185611d3f565b949350505050565b826001600160a01b03166120b9826111a4565b6001600160a01b0316146120df5760405162461bcd60e51b8152600401610a7090613573565b6001600160a01b0382166121055760405162461bcd60e51b8152600401610a70906131c4565b612110838383610ca5565b61211b600082611fa8565b6001600160a01b038316600090815260016020526040902061213d90826123ad565b506001600160a01b038216600090815260016020526040902061216090826123b9565b5061216d600282846123c5565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610f4783836123db565b60008080806121cf8686612434565b9097909650945050505050565b8051610d02906009906020840190612a07565b60006121fc8484846124a4565b90505b9392505050565b610d0282826040518060200160405280600081525061251b565b60008061222d8385613874565b905083811015610f475760405162461bcd60e51b8152600401610a709061318d565b61225a8484846120a6565b6122668484848461254e565b611b4e5760405162461bcd60e51b8152600401610a7090613087565b6060816122a757506040805180820190915260018152600360fc1b6020820152610a9c565b8160005b81156122d157806122bb81613937565b91506122ca9050600a8361388c565b91506122ab565b60008167ffffffffffffffff8111156122fa57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612324576020820181803683370190505b5090505b841561209e576123396001836138bf565b9150612346600a86613952565b612351906030613874565b60f81b81838151811061237457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612396600a8661388c565b9450612328565b6000610f47838361262d565b5490565b6000610f478383612645565b6000610f478383612762565b60006121fc84846001600160a01b0385166127ac565b815460009082106123fe5760405162461bcd60e51b8152600401610a7090612fcb565b82600001828154811061242157634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b8154600090819083106124595760405162461bcd60e51b8152600401610a709061347b565b600084600001848154811061247e57634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816124d45760405162461bcd60e51b8152600401610a709190612f81565b50846124e16001836138bf565b815481106124ff57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b612525838361285b565b612532600084848461254e565b610ca55760405162461bcd60e51b8152600401610a7090613087565b6000612562846001600160a01b031661291f565b61256e5750600161209e565b60006125f6630a85bd0160e11b612583611f97565b8887876040516024016125999493929190612ed4565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016139d4603291396001600160a01b0388169190612925565b905060008180602001905181019061260e9190612d89565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b600081815260018301602052604081205480156127585760006126696001836138bf565b855490915060009061267d906001906138bf565b905060008660000182815481106126a457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106126d557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001556126ec836001613874565b6000828152600189016020526040902055865487908061271c57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610f4a565b6000915050610f4a565b600061276e838361262d565b6127a457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610f4a565b506000610f4a565b6000828152600184016020526040812054806128115750506040805180820182528381526020808201848152865460018181018955600089815284812095516002909302909501918255915190820155865486845281880190925292909120556121ff565b828561281e6001846138bf565b8154811061283c57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600202016001018190555060009150506121ff565b6001600160a01b0382166128815760405162461bcd60e51b8152600401610a70906134bd565b61288a81611f9b565b156128a75760405162461bcd60e51b8152600401610a709061311f565b6128b360008383610ca5565b6001600160a01b03821660009081526001602052604090206128d590826123b9565b506128e2600282846123c5565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b60606121fc8484600085856129398561291f565b6129555760405162461bcd60e51b8152600401610a7090613758565b600080866001600160a01b031685876040516129719190612e53565b60006040518083038185875af1925050503d80600081146129ae576040519150601f19603f3d011682016040523d82523d6000602084013e6129b3565b606091505b50915091506129c38282866129ce565b979650505050505050565b606083156129dd5750816121ff565b8251156129ed5782518084602001fd5b8160405162461bcd60e51b8152600401610a709190612f81565b828054612a1390613902565b90600052602060002090601f016020900481019282612a355760008555612a7b565b82601f10612a4e57805160ff1916838001178555612a7b565b82800160010185558215612a7b579182015b82811115612a7b578251825591602001919060010190612a60565b50612a87929150612ae0565b5090565b828054828255906000526020600020908101928215612a7b579160200282015b82811115612a7b57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612aab565b5b80821115612a875760008155600101612ae1565b600067ffffffffffffffff831115612b0f57612b0f613992565b612b22601f8401601f191660200161384a565b9050828152838383011115612b3657600080fd5b828260208301376000602084830101529392505050565b600060208284031215612b5e578081fd5b8135610f47816139a8565b60008060408385031215612b7b578081fd5b8235612b86816139a8565b91506020830135612b96816139a8565b809150509250929050565b600080600060608486031215612bb5578081fd5b8335612bc0816139a8565b92506020840135612bd0816139a8565b929592945050506040919091013590565b60008060008060808587031215612bf6578081fd5b8435612c01816139a8565b93506020850135612c11816139a8565b925060408501359150606085013567ffffffffffffffff811115612c33578182fd5b8501601f81018713612c43578182fd5b612c5287823560208401612af5565b91505092959194509250565b60008060408385031215612c70578182fd5b8235612c7b816139a8565b915060208301358015158114612b96578182fd5b60008060408385031215612ca1578182fd5b8235612cac816139a8565b946020939093013593505050565b60006020808385031215612ccc578182fd5b823567ffffffffffffffff80821115612ce3578384fd5b818501915085601f830112612cf6578384fd5b813581811115612d0857612d08613992565b8381029150612d1884830161384a565b8181528481019084860184860187018a1015612d32578788fd5b8795505b83861015612d605780359450612d4b856139a8565b84835260019590950194918601918601612d36565b5098975050505050505050565b600060208284031215612d7e578081fd5b8135610f47816139bd565b600060208284031215612d9a578081fd5b8151610f47816139bd565b600060208284031215612db6578081fd5b813567ffffffffffffffff811115612dcc578182fd5b8201601f81018413612ddc578182fd5b61209e84823560208401612af5565b600060208284031215612dfc578081fd5b5035919050565b60008060408385031215612e15578182fd5b823591506020830135612b96816139a8565b60008151808452612e3f8160208601602086016138d6565b601f01601f19169290920160200192915050565b60008251612e658184602087016138d6565b9190910192915050565b60008351612e818184602088016138d6565b602f60f81b9083019081528351612e9f8160018401602088016138d6565b64173539b7b760d91b60019290910191820152600601949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f0790830184612e27565b9695505050505050565b6001600160a01b039390931683526020830191909152604082015260600190565b6020808252825182820181905260009190848201906040850190845b81811015612f6a57835183529284019291840191600101612f4e565b50909695505050505050565b901515815260200190565b600060208252610f476020830184612e27565b60208082526018908201527f43616e206f6e6c79206d696e742032303020746f6b656e730000000000000000604082015260600190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526023908201527f43616e206f6e6c79206d696e7420323030207768696c652077686974656c69736040820152621d195960ea1b606082015260800190565b6020808252601f908201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526019908201527f596f7520636c61696d20616d6f756e7420657863656564656400000000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527110589bdd99481b585e081d1e0818dbdd5b9d60721b604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601f908201527f5769746864726177206d7573742062652067726561746572207468616e203000604082015260600190565b6020808252601d908201527f5374617274696e6720696e64657820697320616c726561647920736574000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252600f908201526e082dadeeadce840e8dede40d0d2ced608b1b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b602080825260139082015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b604082015260600190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b602080825260149082015273105b1c9958591e481dda5b9b995c9b1a5cdd195960621b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b602080825260129082015271125cc81b9bdd081dda1a5d195b1a5cdd195960721b604082015260600190565b602080825260089082015267115e18d95959195960c21b604082015260600190565b6020808252601b908201527f596f752068617665206e6f20616d6f756e7420746f20636c61696d0000000000604082015260600190565b602080825260139082015272125cc81b9bdd081dda5b9b995c9b1a5cdd1959606a1b604082015260600190565b90815260200190565b60405181810167ffffffffffffffff8111828210171561386c5761386c613992565b604052919050565b6000821982111561388757613887613966565b500190565b60008261389b5761389b61397c565b500490565b60008160001904831182151516156138ba576138ba613966565b500290565b6000828210156138d1576138d1613966565b500390565b60005b838110156138f15781810151838201526020016138d9565b83811115611b4e5750506000910152565b60028104600182168061391657607f821691505b6020821081141561172a57634e487b7160e01b600052602260045260246000fd5b600060001982141561394b5761394b613966565b5060010190565b6000826139615761396161397c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461115757600080fd5b6001600160e01b03198116811461115757600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212209036468e1faa4533078d353b438bec2218aec902df91b50de4ea54f8622a93af64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000095061636b646177677a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444f4d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d505757566863766d6f4c32344d7a526438427969346d4a4c47393269756f46645950377770596f34317173742f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061038b5760003560e01c80636352211e116101dc578063a22cb46511610102578063e36d6498116100a0578063f2c4ce1e1161006f578063f2c4ce1e146109b6578063f2fde38b146109d6578063f571d67c146109f6578063ff1b655614610a165761038b565b8063e36d649814610957578063e985e9c51461096c578063e98665501461098c578063eb8d2444146109a15761038b565b8063c87b56dd116100dc578063c87b56dd146108ed578063cb774d471461090d578063cd7d508f14610922578063dc53fd92146109425761038b565b8063a22cb46514610898578063a475b5dd146108b8578063b88d4fde146108cd5761038b565b80637c928fe91161017a5780638da5cb5b116101495780638da5cb5b1461083b57806395d89b41146108505780639b19251a14610865578063a0712d68146108855761038b565b80637c928fe9146107b95780637d17fcbe146107d9578063819b25ba146107ee5780638462151c1461080e5761038b565b806370a08231116101b657806370a0823114610735578063715018a614610755578063738c69a61461076a5780637b9417c8146107995761038b565b80636352211e146106e05780636c0360eb146107005780637084b2b7146107155761038b565b80631d97f38e116102c15780633ccfd60b1161025f578063518302271161022e578063518302271461067657806355f804b31461068b57806358941a4d146106ab5780635d82cf6e146106c05761038b565b80633ccfd60b1461060157806342842e0e146106165780634f558e79146106365780634f6ccce7146106565761038b565b806334918dfd1161029b57806334918dfd146105a25780633502a716146105b75780633719e3b0146105cc5780633af32abf146105e15761038b565b80631d97f38e1461054257806323b872dd146105625780632f745c59146105825761038b565b8063095ea7b31161032e578063149678371161030857806314967837146104d857806318160ddd146104f857806318e20a381461050d5780631970d1fb146105225761038b565b8063095ea7b3146104835780630ba133c5146104a357806310969523146104b85761038b565b806304737a011161036a57806304737a011461040a57806306fdde031461041f578063081812fc14610441578063081c8c441461046e5761038b565b806204348e14610390578063018a2c37146103bb57806301ffc9a7146103dd575b600080fd5b34801561039c57600080fd5b506103a5610a2b565b6040516103b29190613841565b60405180910390f35b3480156103c757600080fd5b506103db6103d6366004612deb565b610a31565b005b3480156103e957600080fd5b506103fd6103f8366004612d6d565b610a7e565b6040516103b29190612f76565b34801561041657600080fd5b506103fd610aa1565b34801561042b57600080fd5b50610434610aaf565b6040516103b29190612f81565b34801561044d57600080fd5b5061046161045c366004612deb565b610b41565b6040516103b29190612ec0565b34801561047a57600080fd5b50610434610b84565b34801561048f57600080fd5b506103db61049e366004612c8f565b610c12565b3480156104af57600080fd5b506103a5610caa565b3480156104c457600080fd5b506103db6104d3366004612da5565b610cb0565b3480156104e457600080fd5b506103fd6104f3366004612c8f565b610d06565b34801561050457600080fd5b506103a5610daa565b34801561051957600080fd5b506103a5610dbb565b34801561052e57600080fd5b506103db61053d366004612deb565b610dc1565b34801561054e57600080fd5b506103db61055d366004612e03565b610e05565b34801561056e57600080fd5b506103db61057d366004612ba1565b610eed565b34801561058e57600080fd5b506103a561059d366004612c8f565b610f25565b3480156105ae57600080fd5b506103db610f50565b3480156105c357600080fd5b506103a5610fa3565b3480156105d857600080fd5b506103db610fa9565b3480156105ed57600080fd5b506103fd6105fc366004612b4d565b611005565b34801561060d57600080fd5b506103db611026565b34801561062257600080fd5b506103db610631366004612ba1565b6110ca565b34801561064257600080fd5b506103fd610651366004612deb565b6110e5565b34801561066257600080fd5b506103a5610671366004612deb565b6110f0565b34801561068257600080fd5b506103fd611106565b34801561069757600080fd5b506103db6106a6366004612da5565b61110f565b3480156106b757600080fd5b506103a561115a565b3480156106cc57600080fd5b506103db6106db366004612deb565b611160565b3480156106ec57600080fd5b506104616106fb366004612deb565b6111a4565b34801561070c57600080fd5b506104346111cc565b34801561072157600080fd5b506103db610730366004612deb565b6111db565b34801561074157600080fd5b506103a5610750366004612b4d565b61121f565b34801561076157600080fd5b506103db611268565b34801561077657600080fd5b5061078a610785366004612b4d565b6112f1565b6040516103b293929190612f11565b3480156107a557600080fd5b506103fd6107b4366004612b4d565b61131c565b3480156107c557600080fd5b506103db6107d4366004612deb565b6113b1565b3480156107e557600080fd5b506103db611543565b3480156107fa57600080fd5b506103db610809366004612deb565b6115a8565b34801561081a57600080fd5b5061082e610829366004612b4d565b61164f565b6040516103b29190612f32565b34801561084757600080fd5b50610461611730565b34801561085c57600080fd5b5061043461173f565b34801561087157600080fd5b5061078a610880366004612b4d565b61174e565b6103db610893366004612deb565b611779565b3480156108a457600080fd5b506103db6108b3366004612c5e565b6119f9565b3480156108c457600080fd5b506103db611ac7565b3480156108d957600080fd5b506103db6108e8366004612be1565b611b15565b3480156108f957600080fd5b50610434610908366004612deb565b611b54565b34801561091957600080fd5b506103a5611c7c565b34801561092e57600080fd5b506103db61093d366004612cba565b611c82565b34801561094e57600080fd5b506103a5611d33565b34801561096357600080fd5b506103a5611d39565b34801561097857600080fd5b506103fd610987366004612b69565b611d3f565b34801561099857600080fd5b506103db611d6d565b3480156109ad57600080fd5b506103fd611e4d565b3480156109c257600080fd5b506103db6109d1366004612da5565b611e56565b3480156109e257600080fd5b506103db6109f1366004612b4d565b611ea8565b348015610a0257600080fd5b506103fd610a11366004612b4d565b611f69565b348015610a2257600080fd5b50610434611f8a565b600d5481565b610a39611f97565b6001600160a01b0316610a4a611730565b6001600160a01b031614610a795760405162461bcd60e51b8152600401610a709061353e565b60405180910390fd5b601255565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b601654610100900460ff1681565b606060068054610abe90613902565b80601f0160208091040260200160405190810160405280929190818152602001828054610aea90613902565b8015610b375780601f10610b0c57610100808354040283529160200191610b37565b820191906000526020600020905b815481529060010190602001808311610b1a57829003601f168201915b5050505050905090565b6000610b4c82611f9b565b610b685760405162461bcd60e51b8152600401610a70906134f2565b506000908152600460205260409020546001600160a01b031690565b60148054610b9190613902565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbd90613902565b8015610c0a5780601f10610bdf57610100808354040283529160200191610c0a565b820191906000526020600020905b815481529060010190602001808311610bed57829003601f168201915b505050505081565b6000610c1d826111a4565b9050806001600160a01b0316836001600160a01b03161415610c515760405162461bcd60e51b8152600401610a7090613691565b806001600160a01b0316610c63611f97565b6001600160a01b03161480610c7f5750610c7f81610987611f97565b610c9b5760405162461bcd60e51b8152600401610a709061337f565b610ca58383611fa8565b505050565b600f5481565b610cb8611f97565b6001600160a01b0316610cc9611730565b6001600160a01b031614610cef5760405162461bcd60e51b8152600401610a709061353e565b8051610d02906015906020840190612a07565b5050565b6000610d10611f97565b6001600160a01b0316610d21611730565b6001600160a01b031614610d475760405162461bcd60e51b8152600401610a709061353e565b610d5083611f69565b15610d6d5760405162461bcd60e51b8152600401610a7090613663565b506001600160a01b03909116600081815260186020526040812080546001600160a01b031916909217825560018083019390935560029091015590565b6000610db66002612016565b905090565b60125481565b610dc9611f97565b6001600160a01b0316610dda611730565b6001600160a01b031614610e005760405162461bcd60e51b8152600401610a709061353e565b600d55565b610e0d611f97565b6001600160a01b0316610e1e611730565b6001600160a01b031614610e445760405162461bcd60e51b8152600401610a709061353e565b60008211610e645760405162461bcd60e51b8152600401610a7090613311565b47821115610e845760405162461bcd60e51b8152600401610a70906133dc565b6000816001600160a01b031683604051610e9d90612ebd565b60006040518083038185875af1925050503d8060008114610eda576040519150601f19603f3d011682016040523d82523d6000602084013e610edf565b606091505b5050905080610ca557600080fd5b610efe610ef8611f97565b82612021565b610f1a5760405162461bcd60e51b8152600401610a7090613707565b610ca58383836120a6565b6001600160a01b0382166000908152600160205260408120610f4790836121b4565b90505b92915050565b610f58611f97565b6001600160a01b0316610f69611730565b6001600160a01b031614610f8f5760405162461bcd60e51b8152600401610a709061353e565b6016805460ff19811660ff90911615179055565b60115481565b610fb1611f97565b6001600160a01b0316610fc2611730565b6001600160a01b031614610fe85760405162461bcd60e51b8152600401610a709061353e565b6016805461ff001981166101009182900460ff1615909102179055565b6001600160a01b039081166000818152601760205260409020549091161490565b61102e611f97565b6001600160a01b031661103f611730565b6001600160a01b0316146110655760405162461bcd60e51b8152600401610a709061353e565b60405147906000903390839061107a90612ebd565b60006040518083038185875af1925050503d80600081146110b7576040519150601f19603f3d011682016040523d82523d6000602084013e6110bc565b606091505b5050905080610d0257600080fd5b610ca583838360405180602001604052806000815250611b15565b6000610f4a82611f9b565b6000806110fe6002846121c0565b509392505050565b60135460ff1681565b611117611f97565b6001600160a01b0316611128611730565b6001600160a01b03161461114e5760405162461bcd60e51b8152600401610a709061353e565b611157816121dc565b50565b60105481565b611168611f97565b6001600160a01b0316611179611730565b6001600160a01b03161461119f5760405162461bcd60e51b8152600401610a709061353e565b600e55565b6000610f4a82604051806060016040528060298152602001613a0660299139600291906121ef565b606060098054610abe90613902565b6111e3611f97565b6001600160a01b03166111f4611730565b6001600160a01b03161461121a5760405162461bcd60e51b8152600401610a709061353e565b600f55565b60006001600160a01b0382166112475760405162461bcd60e51b8152600401610a7090613405565b6001600160a01b0382166000908152600160205260409020610f4a90612016565b611270611f97565b6001600160a01b0316611281611730565b6001600160a01b0316146112a75760405162461bcd60e51b8152600401610a709061353e565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6018602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b6000611326611f97565b6001600160a01b0316611337611730565b6001600160a01b03161461135d5760405162461bcd60e51b8152600401610a709061353e565b61136682611005565b156113835760405162461bcd60e51b8152600401610a709061360b565b506001600160a01b0316600081815260176020526040902080546001600160a01b0319169091179055600190565b60006113bb610daa565b90506113c633611f69565b6113e25760405162461bcd60e51b8152600401610a7090613814565b60165460ff166114045760405162461bcd60e51b8152600401610a709061326b565b6011546114118383613874565b111561142f5760405162461bcd60e51b8152600401610a709061344f565b3360009081526018602052604090206001015461145e5760405162461bcd60e51b8152600401610a70906137dd565b336000908152601860205260409020600101548211156114905760405162461bcd60e51b8152600401610a7090613156565b60005b828110156114e05760006114a5610daa565b6114b0906001613874565b90506011546114bd610daa565b10156114cd576114cd3382612206565b50806114d881613937565b915050611493565b50336000908152601860205260409020600101546114ff9083906138bf565b33600090815260186020526040902060010155600b541580156115365750601154611528610daa565b148061153657506012544210155b15610d025743600b555050565b61154b611f97565b6001600160a01b031661155c611730565b6001600160a01b0316146115825760405162461bcd60e51b8152600401610a709061353e565b600c54156115a25760405162461bcd60e51b8152600401610a7090613348565b43600b55565b6115b0611f97565b6001600160a01b03166115c1611730565b6001600160a01b0316146115e75760405162461bcd60e51b8152600401610a709061353e565b60006115f1610daa565b6011549091506116018383613874565b111561161f5760405162461bcd60e51b8152600401610a70906137bb565b60005b82811015610ca55761163d336116388385613874565b612206565b8061164781613937565b915050611622565b6060600061165c8361121f565b905080611679575050604080516000815260208101909152610a9c565b60008167ffffffffffffffff8111156116a257634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156116cb578160200160208202803683370190505b50905060005b82811015611720576116e38582610f25565b82828151811061170357634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061171881613937565b9150506116d1565b509150610a9c9050565b50919050565b600a546001600160a01b031690565b606060078054610abe90613902565b6017602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b6000611783610daa565b60165490915060ff166117a85760405162461bcd60e51b8152600401610a709061326b565b6011546117b58383613874565b11156117d35760405162461bcd60e51b8152600401610a70906132a2565b601654610100900460ff16156118ca573482600d546117f291906138a0565b11156118105760405162461bcd60e51b8152600401610a7090613638565b6010548211156118325760405162461bcd60e51b8152600401610a709061323f565b61183b33611005565b6118575760405162461bcd60e51b8152600401610a709061378f565b601054336000908152601760205260409020600201546118779084612220565b11156118955760405162461bcd60e51b8152600401610a709061300d565b336000908152601760205260409020600201546118b29083612220565b33600090815260176020526040902060020155611992565b6118d333611005565b1561193057600f543360008181526017602052604090206002015484916118f99061121f565b61190391906138bf565b61190d9190613874565b111561192b5760405162461bcd60e51b8152600401610a7090612f94565b611965565b600f548261193d3361121f565b6119479190613874565b11156119655760405162461bcd60e51b8152600401610a7090612f94565b3482600e5461197491906138a0565b11156119925760405162461bcd60e51b8152600401610a7090613638565b60005b828110156119e25760006119a7610daa565b6119b2906001613874565b90506011546119bf610daa565b10156119cf576119cf3382612206565b50806119da81613937565b915050611995565b50600b541580156115365750601154611528610daa565b611a01611f97565b6001600160a01b0316826001600160a01b03161415611a325760405162461bcd60e51b8152600401610a7090613208565b8060056000611a3f611f97565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611a83611f97565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611abb9190612f76565b60405180910390a35050565b611acf611f97565b6001600160a01b0316611ae0611730565b6001600160a01b031614611b065760405162461bcd60e51b8152600401610a709061353e565b6013805460ff19166001179055565b611b26611b20611f97565b83612021565b611b425760405162461bcd60e51b8152600401610a7090613707565b611b4e8484848461224f565b50505050565b6060611b5f82611f9b565b611b7b5760405162461bcd60e51b8152600401610a70906135bc565b611b83610daa565b821115611ba25760405162461bcd60e51b8152600401610a7090613050565b60135460ff16611c3e5760148054611bb990613902565b80601f0160208091040260200160405190810160405280929190818152602001828054611be590613902565b8015611c325780601f10611c0757610100808354040283529160200191611c32565b820191906000526020600020905b815481529060010190602001808311611c1557829003601f168201915b50505050509050610a9c565b6000611c486111cc565b905080611c5484612282565b604051602001611c65929190612e6f565b604051602081830303815290604052915050919050565b600c5481565b611c8a611f97565b6001600160a01b0316611c9b611730565b6001600160a01b031614611cc15760405162461bcd60e51b8152600401610a709061353e565b8051611cd4906019906020840190612a8b565b5060005b601954811015610d0257611d2060198281548110611d0657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031661131c565b5080611d2b81613937565b915050611cd8565b600e5481565b600b5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611d75611f97565b6001600160a01b0316611d86611730565b6001600160a01b031614611dac5760405162461bcd60e51b8152600401610a709061353e565b600c5415611dcc5760405162461bcd60e51b8152600401610a7090613348565b600b54611deb5760405162461bcd60e51b8152600401610a70906136d2565b601154600b54611dfc919040613952565b600c55600b5460ff90611e0f90436138bf565b1115611e3257601154611e236001436138bf565b611e2e919040613952565b600c555b600c54611e4b57600c54611e47906001613874565b600c555b565b60165460ff1681565b611e5e611f97565b6001600160a01b0316611e6f611730565b6001600160a01b031614611e955760405162461bcd60e51b8152600401610a709061353e565b8051610d02906014906020840190612a07565b611eb0611f97565b6001600160a01b0316611ec1611730565b6001600160a01b031614611ee75760405162461bcd60e51b8152600401610a709061353e565b6001600160a01b038116611f0d5760405162461bcd60e51b8152600401610a70906130d9565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b039081166000818152601860205260409020549091161490565b60158054610b9190613902565b3390565b6000610f4a60028361239d565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fdd826111a4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f4a826123a9565b600061202c82611f9b565b6120485760405162461bcd60e51b8152600401610a70906132c5565b6000612053836111a4565b9050806001600160a01b0316846001600160a01b0316148061208e5750836001600160a01b031661208384610b41565b6001600160a01b0316145b8061209e575061209e8185611d3f565b949350505050565b826001600160a01b03166120b9826111a4565b6001600160a01b0316146120df5760405162461bcd60e51b8152600401610a7090613573565b6001600160a01b0382166121055760405162461bcd60e51b8152600401610a70906131c4565b612110838383610ca5565b61211b600082611fa8565b6001600160a01b038316600090815260016020526040902061213d90826123ad565b506001600160a01b038216600090815260016020526040902061216090826123b9565b5061216d600282846123c5565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610f4783836123db565b60008080806121cf8686612434565b9097909650945050505050565b8051610d02906009906020840190612a07565b60006121fc8484846124a4565b90505b9392505050565b610d0282826040518060200160405280600081525061251b565b60008061222d8385613874565b905083811015610f475760405162461bcd60e51b8152600401610a709061318d565b61225a8484846120a6565b6122668484848461254e565b611b4e5760405162461bcd60e51b8152600401610a7090613087565b6060816122a757506040805180820190915260018152600360fc1b6020820152610a9c565b8160005b81156122d157806122bb81613937565b91506122ca9050600a8361388c565b91506122ab565b60008167ffffffffffffffff8111156122fa57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612324576020820181803683370190505b5090505b841561209e576123396001836138bf565b9150612346600a86613952565b612351906030613874565b60f81b81838151811061237457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612396600a8661388c565b9450612328565b6000610f47838361262d565b5490565b6000610f478383612645565b6000610f478383612762565b60006121fc84846001600160a01b0385166127ac565b815460009082106123fe5760405162461bcd60e51b8152600401610a7090612fcb565b82600001828154811061242157634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b8154600090819083106124595760405162461bcd60e51b8152600401610a709061347b565b600084600001848154811061247e57634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816124d45760405162461bcd60e51b8152600401610a709190612f81565b50846124e16001836138bf565b815481106124ff57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b612525838361285b565b612532600084848461254e565b610ca55760405162461bcd60e51b8152600401610a7090613087565b6000612562846001600160a01b031661291f565b61256e5750600161209e565b60006125f6630a85bd0160e11b612583611f97565b8887876040516024016125999493929190612ed4565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016139d4603291396001600160a01b0388169190612925565b905060008180602001905181019061260e9190612d89565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b600081815260018301602052604081205480156127585760006126696001836138bf565b855490915060009061267d906001906138bf565b905060008660000182815481106126a457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106126d557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001556126ec836001613874565b6000828152600189016020526040902055865487908061271c57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610f4a565b6000915050610f4a565b600061276e838361262d565b6127a457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610f4a565b506000610f4a565b6000828152600184016020526040812054806128115750506040805180820182528381526020808201848152865460018181018955600089815284812095516002909302909501918255915190820155865486845281880190925292909120556121ff565b828561281e6001846138bf565b8154811061283c57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600202016001018190555060009150506121ff565b6001600160a01b0382166128815760405162461bcd60e51b8152600401610a70906134bd565b61288a81611f9b565b156128a75760405162461bcd60e51b8152600401610a709061311f565b6128b360008383610ca5565b6001600160a01b03821660009081526001602052604090206128d590826123b9565b506128e2600282846123c5565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b60606121fc8484600085856129398561291f565b6129555760405162461bcd60e51b8152600401610a7090613758565b600080866001600160a01b031685876040516129719190612e53565b60006040518083038185875af1925050503d80600081146129ae576040519150601f19603f3d011682016040523d82523d6000602084013e6129b3565b606091505b50915091506129c38282866129ce565b979650505050505050565b606083156129dd5750816121ff565b8251156129ed5782518084602001fd5b8160405162461bcd60e51b8152600401610a709190612f81565b828054612a1390613902565b90600052602060002090601f016020900481019282612a355760008555612a7b565b82601f10612a4e57805160ff1916838001178555612a7b565b82800160010185558215612a7b579182015b82811115612a7b578251825591602001919060010190612a60565b50612a87929150612ae0565b5090565b828054828255906000526020600020908101928215612a7b579160200282015b82811115612a7b57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612aab565b5b80821115612a875760008155600101612ae1565b600067ffffffffffffffff831115612b0f57612b0f613992565b612b22601f8401601f191660200161384a565b9050828152838383011115612b3657600080fd5b828260208301376000602084830101529392505050565b600060208284031215612b5e578081fd5b8135610f47816139a8565b60008060408385031215612b7b578081fd5b8235612b86816139a8565b91506020830135612b96816139a8565b809150509250929050565b600080600060608486031215612bb5578081fd5b8335612bc0816139a8565b92506020840135612bd0816139a8565b929592945050506040919091013590565b60008060008060808587031215612bf6578081fd5b8435612c01816139a8565b93506020850135612c11816139a8565b925060408501359150606085013567ffffffffffffffff811115612c33578182fd5b8501601f81018713612c43578182fd5b612c5287823560208401612af5565b91505092959194509250565b60008060408385031215612c70578182fd5b8235612c7b816139a8565b915060208301358015158114612b96578182fd5b60008060408385031215612ca1578182fd5b8235612cac816139a8565b946020939093013593505050565b60006020808385031215612ccc578182fd5b823567ffffffffffffffff80821115612ce3578384fd5b818501915085601f830112612cf6578384fd5b813581811115612d0857612d08613992565b8381029150612d1884830161384a565b8181528481019084860184860187018a1015612d32578788fd5b8795505b83861015612d605780359450612d4b856139a8565b84835260019590950194918601918601612d36565b5098975050505050505050565b600060208284031215612d7e578081fd5b8135610f47816139bd565b600060208284031215612d9a578081fd5b8151610f47816139bd565b600060208284031215612db6578081fd5b813567ffffffffffffffff811115612dcc578182fd5b8201601f81018413612ddc578182fd5b61209e84823560208401612af5565b600060208284031215612dfc578081fd5b5035919050565b60008060408385031215612e15578182fd5b823591506020830135612b96816139a8565b60008151808452612e3f8160208601602086016138d6565b601f01601f19169290920160200192915050565b60008251612e658184602087016138d6565b9190910192915050565b60008351612e818184602088016138d6565b602f60f81b9083019081528351612e9f8160018401602088016138d6565b64173539b7b760d91b60019290910191820152600601949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f0790830184612e27565b9695505050505050565b6001600160a01b039390931683526020830191909152604082015260600190565b6020808252825182820181905260009190848201906040850190845b81811015612f6a57835183529284019291840191600101612f4e565b50909695505050505050565b901515815260200190565b600060208252610f476020830184612e27565b60208082526018908201527f43616e206f6e6c79206d696e742032303020746f6b656e730000000000000000604082015260600190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526023908201527f43616e206f6e6c79206d696e7420323030207768696c652077686974656c69736040820152621d195960ea1b606082015260800190565b6020808252601f908201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526019908201527f596f7520636c61696d20616d6f756e7420657863656564656400000000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527110589bdd99481b585e081d1e0818dbdd5b9d60721b604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601f908201527f5769746864726177206d7573742062652067726561746572207468616e203000604082015260600190565b6020808252601d908201527f5374617274696e6720696e64657820697320616c726561647920736574000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252600f908201526e082dadeeadce840e8dede40d0d2ced608b1b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b602080825260139082015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b604082015260600190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b602080825260149082015273105b1c9958591e481dda5b9b995c9b1a5cdd195960621b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b602080825260129082015271125cc81b9bdd081dda1a5d195b1a5cdd195960721b604082015260600190565b602080825260089082015267115e18d95959195960c21b604082015260600190565b6020808252601b908201527f596f752068617665206e6f20616d6f756e7420746f20636c61696d0000000000604082015260600190565b602080825260139082015272125cc81b9bdd081dda5b9b995c9b1a5cdd1959606a1b604082015260600190565b90815260200190565b60405181810167ffffffffffffffff8111828210171561386c5761386c613992565b604052919050565b6000821982111561388757613887613966565b500190565b60008261389b5761389b61397c565b500490565b60008160001904831182151516156138ba576138ba613966565b500290565b6000828210156138d1576138d1613966565b500390565b60005b838110156138f15781810151838201526020016138d9565b83811115611b4e5750506000910152565b60028104600182168061391657607f821691505b6020821081141561172a57634e487b7160e01b600052602260045260246000fd5b600060001982141561394b5761394b613966565b5060010190565b6000826139615761396161397c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461115757600080fd5b6001600160e01b03198116811461115757600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212209036468e1faa4533078d353b438bec2218aec902df91b50de4ea54f8622a93af64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000095061636b646177677a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444f4d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d505757566863766d6f4c32344d7a526438427969346d4a4c47393269756f46645950377770596f34317173742f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Packdawgz
Arg [1] : _symbol (string): DOM
Arg [2] : _initBaseURI (string): ipfs://QmPWWVhcvmoL24MzRd8Byi4mJLG92iuoFdYP7wpYo41qst/
Arg [3] : _initNotRevealedUri (string):

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 5061636b646177677a0000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 444f4d0000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d505757566863766d6f4c32344d7a526438427969346d4a
Arg [10] : 4c47393269756f46645950377770596f34317173742f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

70157:10713:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70344:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73081:127;;;;;;;;;;-1:-1:-1;73081:127:0;;;;;:::i;:::-;;:::i;:::-;;10295:200;;;;;;;;;;-1:-1:-1;10295:200:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;70767:38::-;;;;;;;;;;;;;:::i;53618:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56626:308::-;;;;;;;;;;-1:-1:-1;56626:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;70646:33::-;;;;;;;;;;;;;:::i;56125:435::-;;;;;;;;;;-1:-1:-1;56125:435:0;;;;;:::i;:::-;;:::i;70446:30::-;;;;;;;;;;;;;:::i;73277:152::-;;;;;;;;;;-1:-1:-1;73277:152:0;;;;;:::i;:::-;;:::i;80322:370::-;;;;;;;;;;-1:-1:-1;80322:370:0;;;;;:::i;:::-;;:::i;55553:211::-;;;;;;;;;;;;;:::i;70570:31::-;;;;;;;;;;;;;:::i;72236:108::-;;;;;;;;;;-1:-1:-1;72236:108:0;;;;;:::i;:::-;;:::i;79548:335::-;;;;;;;;;;-1:-1:-1;79548:335:0;;;;;:::i;:::-;;:::i;57685:376::-;;;;;;;;;;-1:-1:-1;57685:376:0;;;;;:::i;:::-;;:::i;55265:212::-;;;;;;;;;;-1:-1:-1;55265:212:0;;;;;:::i;:::-;;:::i;74407:89::-;;;;;;;;;;;;;:::i;70529:34::-;;;;;;;;;;;;;:::i;74504:110::-;;;;;;;;;;;;;:::i;80150:164::-;;;;;;;;;;-1:-1:-1;80150:164:0;;;;;:::i;:::-;;:::i;79353:187::-;;;;;;;;;;;;;:::i;58132:185::-;;;;;;;;;;-1:-1:-1;58132:185:0;;;;;:::i;:::-;;:::i;72072:104::-;;;;;;;;;;-1:-1:-1;72072:104:0;;;;;:::i;:::-;;:::i;55841:222::-;;;;;;;;;;-1:-1:-1;55841:222:0;;;;;:::i;:::-;;:::i;70610:27::-;;;;;;;;;;;;;:::i;73437:101::-;;;;;;;;;;-1:-1:-1;73437:101:0;;;;;:::i;:::-;;:::i;70483:39::-;;;;;;;;;;;;;:::i;72407:106::-;;;;;;;;;;-1:-1:-1;72407:106:0;;;;;:::i;:::-;;:::i;53262:289::-;;;;;;;;;;-1:-1:-1;53262:289:0;;;;;:::i;:::-;;:::i;55084:97::-;;;;;;;;;;;;;:::i;72583:100::-;;;;;;;;;;-1:-1:-1;72583:100:0;;;;;:::i;:::-;;:::i;52892:308::-;;;;;;;;;;-1:-1:-1;52892:308:0;;;;;:::i;:::-;;:::i;69417:148::-;;;;;;;;;;;;;:::i;70981:47::-;;;;;;;;;;-1:-1:-1;70981:47:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;79891:251::-;;;;;;;;;;-1:-1:-1;79891:251:0;;;;;:::i;:::-;;:::i;76679:1335::-;;;;;;;;;;-1:-1:-1;76679:1335:0;;;;;:::i;:::-;;:::i;79159:186::-;;;;;;;;;;;;;:::i;72736:266::-;;;;;;;;;;-1:-1:-1;72736:266:0;;;;;:::i;:::-;;:::i;71491:510::-;;;;;;;;;;-1:-1:-1;71491:510:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;68766:87::-;;;;;;;;;;;;;:::i;53787:104::-;;;;;;;;;;;;;:::i;70928:46::-;;;;;;;;;;-1:-1:-1;70928:46:0;;;;;:::i;:::-;;:::i;74661:2010::-;;;;;;:::i;:::-;;:::i;57006:327::-;;;;;;;;;;-1:-1:-1;57006:327:0;;;;;:::i;:::-;;:::i;73698:69::-;;;;;;;;;;;;;:::i;58388:365::-;;;;;;;;;;-1:-1:-1;58388:365:0;;;;;:::i;:::-;;:::i;73775:553::-;;;;;;;;;;-1:-1:-1;73775:553:0;;;;;:::i;:::-;;:::i;70309:28::-;;;;;;;;;;;;;:::i;78788:234::-;;;;;;;;;;-1:-1:-1;78788:234:0;;;;;:::i;:::-;;:::i;70396:43::-;;;;;;;;;;;;;:::i;70269:33::-;;;;;;;;;;;;;:::i;57404:214::-;;;;;;;;;;-1:-1:-1;57404:214:0;;;;;:::i;:::-;;:::i;78090:690::-;;;;;;;;;;;;;:::i;70729:31::-;;;;;;;;;;;;;:::i;73546:126::-;;;;;;;;;;-1:-1:-1;73546:126:0;;;;;:::i;:::-;;:::i;69720:281::-;;;;;;;;;;-1:-1:-1;69720:281:0;;;;;:::i;:::-;;:::i;80700:167::-;;;;;;;;;;-1:-1:-1;80700:167:0;;;;;:::i;:::-;;:::i;70688:34::-;;;;;;;;;;;;;:::i;70344:45::-;;;;:::o;73081:127::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;;;;;;;;;73165:16:::1;:35:::0;73081:127::o;10295:200::-;-1:-1:-1;;;;;;10454:33:0;;10425:4;10454:33;;;;;;;;;;;;;10295:200;;;;:::o;70767:38::-;;;;;;;;;:::o;53618:100::-;53672:13;53705:5;53698:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53618:100;:::o;56626:308::-;56747:7;56794:16;56802:7;56794;:16::i;:::-;56772:110;;;;-1:-1:-1;;;56772:110:0;;;;;;;:::i;:::-;-1:-1:-1;56902:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;56902:24:0;;56626:308::o;70646:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56125:435::-;56206:13;56222:23;56237:7;56222:14;:23::i;:::-;56206:39;;56270:5;-1:-1:-1;;;;;56264:11:0;:2;-1:-1:-1;;;;;56264:11:0;;;56256:57;;;;-1:-1:-1;;;56256:57:0;;;;;;;:::i;:::-;56364:5;-1:-1:-1;;;;;56348:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;56348:21:0;;:86;;;;56390:44;56414:5;56421:12;:10;:12::i;56390:44::-;56326:192;;;;-1:-1:-1;;;56326:192:0;;;;;;;:::i;:::-;56531:21;56540:2;56544:7;56531:8;:21::i;:::-;56125:435;;;:::o;70446:30::-;;;;:::o;73277:152::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;73388:33;;::::1;::::0;:15:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;:::-;;73277:152:::0;:::o;80322:370::-;80442:12;68997;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;80481:20:::1;80496:4;80481:14;:20::i;:::-;80480:21;80472:54;;;;-1:-1:-1::0;;;80472:54:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;80537:16:0;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:28;;-1:-1:-1;;;;;;80537:28:0::1;::::0;;::::1;::::0;;;80576;;::::1;:42:::0;;;;80629:26:::1;::::0;;::::1;:30:::0;80537:28;80322:370::o;55553:211::-;55614:7;55735:21;:12;:19;:21::i;:::-;55728:28;;55553:211;:::o;70570:31::-;;;;:::o;72236:108::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;72311:16:::1;:25:::0;72236:108::o;79548:335::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;79682:1:::1;79672:7;:11;79664:55;;;;-1:-1:-1::0;;;79664:55:0::1;;;;;;;:::i;:::-;79749:21;79738:7;:32;;79730:60;;;;-1:-1:-1::0;;;79730:60:0::1;;;;;;;:::i;:::-;79802:12;79820:3;-1:-1:-1::0;;;;;79820:8:0::1;79836:7;79820:28;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79801:47;;;79867:7;79859:16;;;::::0;::::1;57685:376:::0;57894:41;57913:12;:10;:12::i;:::-;57927:7;57894:18;:41::i;:::-;57872:140;;;;-1:-1:-1;;;57872:140:0;;;;;;;:::i;:::-;58025:28;58035:4;58041:2;58045:7;58025:9;:28::i;55265:212::-;-1:-1:-1;;;;;55439:20:0;;55407:7;55439:20;;;:13;:20;;;;;:30;;55463:5;55439:23;:30::i;:::-;55432:37;;55265:212;;;;;:::o;74407:89::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;74476:12:::1;::::0;;-1:-1:-1;;74460:28:0;::::1;74476:12;::::0;;::::1;74475:13;74460:28;::::0;;74407:89::o;70529:34::-;;;;:::o;74504:110::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;74587:19:::1;::::0;;-1:-1:-1;;74564:42:0;::::1;74587:19;::::0;;;::::1;;;74586:20;74564:42:::0;;::::1;;::::0;;74504:110::o;80150:164::-;-1:-1:-1;;;;;80278:28:0;;;80235:18;80278:15;;;:9;:15;;;;;:20;;;;:28;;80150:164::o;79353:187::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;79470:35:::1;::::0;79419:21:::1;::::0;79401:15:::1;::::0;79470:10:::1;::::0;79419:21;;79470:35:::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79451:54;;;79524:7;79516:16;;;::::0;::::1;58132:185:::0;58270:39;58287:4;58293:2;58297:7;58270:39;;;;;;;;;;;;:16;:39::i;72072:104::-;72127:4;72151:17;72159:8;72151:7;:17::i;55841:222::-;55961:7;;56008:22;:12;56024:5;56008:15;:22::i;:::-;-1:-1:-1;55986:44:0;55841:222;-1:-1:-1;;;55841:222:0:o;70610:27::-;;;;;;:::o;73437:101::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;73510:20:::1;73522:7;73510:11;:20::i;:::-;73437:101:::0;:::o;70483:39::-;;;;:::o;72407:106::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;72481:15:::1;:24:::0;72407:106::o;53262:289::-;53379:7;53424:119;53459:7;53424:119;;;;;;;;;;;;;;;;;:12;;:119;:16;:119::i;55084:97::-;55132:13;55165:8;55158:15;;;;;:::i;72583:100::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;72654:9:::1;:21:::0;72583:100::o;52892:308::-;53009:7;-1:-1:-1;;;;;53056:19:0;;53034:111;;;;-1:-1:-1;;;53034:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53163:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;69417:148::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;69508:6:::1;::::0;69487:40:::1;::::0;69524:1:::1;::::0;-1:-1:-1;;;;;69508:6:0::1;::::0;69487:40:::1;::::0;69524:1;;69487:40:::1;69538:6;:19:::0;;-1:-1:-1;;;;;;69538:19:0::1;::::0;;69417:148::o;70981:47::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;70981:47:0;;;;;;:::o;79891:251::-;79989:12;68997;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;80028:19:::1;80042:4;80028:13;:19::i;:::-;80027:20;80019:52;;;;-1:-1:-1::0;;;80019:52:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;80082:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;:27;;-1:-1:-1;;;;;;80082:27:0::1;::::0;;::::1;::::0;;;;79891:251::o;76679:1335::-;76731:13;76747;:11;:13::i;:::-;76731:29;;76779:26;76794:10;76779:14;:26::i;:::-;76771:58;;;;-1:-1:-1;;;76771:58:0;;;;;;;:::i;:::-;76848:12;;;;76840:52;;;;-1:-1:-1;;;76840:52:0;;;;;;;:::i;:::-;76931:12;;76912:14;76920:6;76912:5;:14;:::i;:::-;76911:32;;76903:63;;;;-1:-1:-1;;;76903:63:0;;;;;;;:::i;:::-;77010:10;77036:1;76999:22;;;:10;:22;;;;;:34;;;76977:115;;;;-1:-1:-1;;;76977:115:0;;;;;;;:::i;:::-;77146:10;77135:22;;;;:10;:22;;;;;:34;;;77125:44;;;77103:119;;;;-1:-1:-1;;;77103:119:0;;;;;;;:::i;:::-;77240:9;77235:216;77259:6;77255:1;:10;77235:216;;;77287:17;77307:13;:11;:13::i;:::-;:17;;77323:1;77307:17;:::i;:::-;77287:37;;77359:12;;77343:13;:11;:13::i;:::-;:28;77339:101;;;77392:32;77402:10;77414:9;77392;:32::i;:::-;-1:-1:-1;77267:3:0;;;;:::i;:::-;;;;77235:216;;;-1:-1:-1;77524:10:0;77513:22;;;;:10;:22;;;;;:34;;;:56;;77563:6;;77513:56;:::i;:::-;77474:10;77463:22;;;;:10;:22;;;;;:34;;:106;77808:18;;:23;:127;;;;;77866:12;;77849:13;:11;:13::i;:::-;:29;:85;;;;77918:16;;77899:15;:35;;77849:85;77790:217;;;77983:12;77962:18;:33;76679:1335;;:::o;79159:186::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;79239:13:::1;::::0;:18;79231:60:::1;;;;-1:-1:-1::0;;;79231:60:0::1;;;;;;;:::i;:::-;79325:12;79304:18;:33:::0;79159:186::o;72736:266::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;72797:13:::1;72813;:11;:13::i;:::-;72863:12;::::0;72797:29;;-1:-1:-1;72845:14:0::1;72853:6:::0;72797:29;72845:14:::1;:::i;:::-;:30;;72837:51;;;;-1:-1:-1::0;;;72837:51:0::1;;;;;;;:::i;:::-;72904:9;72899:96;72923:6;72919:1;:10;72899:96;;;72951:32;72961:10;72973:9;72981:1:::0;72973:5;:9:::1;:::i;:::-;72951;:32::i;:::-;72931:3:::0;::::1;::::0;::::1;:::i;:::-;;;;72899:96;;71491:510:::0;71580:16;71614:18;71635:17;71645:6;71635:9;:17::i;:::-;71614:38;-1:-1:-1;71667:15:0;71663:331;;-1:-1:-1;;71706:16:0;;;71720:1;71706:16;;;;;;;;71699:23;;71663:331;71755:23;71795:10;71781:25;;;;;;-1:-1:-1;;;71781:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71781:25:0;;71755:51;;71826:13;71821:134;71849:10;71841:5;:18;71821:134;;;71905:34;71925:6;71933:5;71905:19;:34::i;:::-;71889:6;71896:5;71889:13;;;;;;-1:-1:-1;;;71889:13:0;;;;;;;;;;;;;;;;;;:50;71861:7;;;;:::i;:::-;;;;71821:134;;;-1:-1:-1;71976:6:0;-1:-1:-1;71969:13:0;;-1:-1:-1;71969:13:0;71663:331;71491:510;;;;:::o;68766:87::-;68839:6;;-1:-1:-1;;;;;68839:6:0;68766:87;:::o;53787:104::-;53843:13;53876:7;53869:14;;;;;:::i;70928:46::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;70928:46:0;;;;;;:::o;74661:2010::-;74717:13;74733;:11;:13::i;:::-;74765:12;;74717:29;;-1:-1:-1;74765:12:0;;74757:52;;;;-1:-1:-1;;;74757:52:0;;;;;;;:::i;:::-;74848:12;;74829:14;74837:6;74829:5;:14;:::i;:::-;74828:32;;74820:54;;;;-1:-1:-1;;;74820:54:0;;;;;;;:::i;:::-;74891:19;;;;;;;74887:1112;;;74984:9;74973:6;74954:16;;:25;;;;:::i;:::-;74953:40;;74927:119;;;;-1:-1:-1;;;74927:119:0;;;;;;;:::i;:::-;75079:18;;75069:6;:28;;75061:59;;;;-1:-1:-1;;;75061:59:0;;;;;;;:::i;:::-;75143:25;75157:10;75143:13;:25::i;:::-;75135:56;;;;-1:-1:-1;;;75135:56:0;;;;;;;:::i;:::-;75300:18;;75242:10;75232:21;;;;:9;:21;;;;;:31;;;:43;;75268:6;75232:35;:43::i;:::-;:86;;75206:183;;;;-1:-1:-1;;;75206:183:0;;;;;;;:::i;:::-;75448:10;75438:21;;;;:9;:21;;;;;:49;;;:79;;75510:6;75438:71;:79::i;:::-;75414:10;75404:21;;;;:9;:21;;;;;:31;;:113;74887:1112;;;75554:25;75568:10;75554:13;:25::i;:::-;75550:305;;;75678:9;;75643:10;75633:21;;;;:9;:21;;;;;:31;;;75667:6;;75609:21;;:9;:21::i;:::-;:55;;;;:::i;:::-;:64;;;;:::i;:::-;75608:79;;75600:116;;;;-1:-1:-1;;;75600:116:0;;;;;;;:::i;:::-;75550:305;;;75801:9;;75790:6;75766:21;75776:10;75766:9;:21::i;:::-;:30;;;;:::i;:::-;75765:45;;75757:82;;;;-1:-1:-1;;;75757:82:0;;;;;;;:::i;:::-;75925:9;75914:6;75896:15;;:24;;;;:::i;:::-;75895:39;;75869:118;;;;-1:-1:-1;;;75869:118:0;;;;;;;:::i;:::-;76016:9;76011:216;76035:6;76031:1;:10;76011:216;;;76063:17;76083:13;:11;:13::i;:::-;:17;;76099:1;76083:17;:::i;:::-;76063:37;;76135:12;;76119:13;:11;:13::i;:::-;:28;76115:101;;;76168:32;76178:10;76190:9;76168;:32::i;:::-;-1:-1:-1;76043:3:0;;;;:::i;:::-;;;;76011:216;;;-1:-1:-1;76465:18:0;;:23;:127;;;;;76523:12;;76506:13;:11;:13::i;57006:327::-;57153:12;:10;:12::i;:::-;-1:-1:-1;;;;;57141:24:0;:8;-1:-1:-1;;;;;57141:24:0;;;57133:62;;;;-1:-1:-1;;;57133:62:0;;;;;;;:::i;:::-;57253:8;57208:18;:32;57227:12;:10;:12::i;:::-;-1:-1:-1;;;;;57208:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;57208:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;57208:53:0;;;;;;;;;;;57292:12;:10;:12::i;:::-;-1:-1:-1;;;;;57277:48:0;;57316:8;57277:48;;;;;;:::i;:::-;;;;;;;;57006:327;;:::o;73698:69::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;73744:8:::1;:15:::0;;-1:-1:-1;;73744:15:0::1;73755:4;73744:15;::::0;;73698:69::o;58388:365::-;58577:41;58596:12;:10;:12::i;:::-;58610:7;58577:18;:41::i;:::-;58555:140;;;;-1:-1:-1;;;58555:140:0;;;;;;;:::i;:::-;58706:39;58720:4;58726:2;58730:7;58739:5;58706:13;:39::i;:::-;58388:365;;;;:::o;73775:553::-;73893:13;73946:16;73954:7;73946;:16::i;:::-;73924:113;;;;-1:-1:-1;;;73924:113:0;;;;;;;:::i;:::-;74067:13;:11;:13::i;:::-;74056:7;:24;;74048:68;;;;-1:-1:-1;;;74048:68:0;;;;;;;:::i;:::-;74131:8;;;;74127:71;;74172:14;74165:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74127:71;74208:18;74229:9;:7;:9::i;:::-;74208:30;;74280:4;74291:18;:7;:16;:18::i;:::-;74263:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74249:71;;;73775:553;;;:::o;70309:28::-;;;;:::o;78788:234::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;78866:21;;::::1;::::0;:13:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;78903:9;78898:117;78922:13;:20:::0;78918:24;::::1;78898:117;;;78964:39;78986:13;79000:1;78986:16;;;;;;-1:-1:-1::0;;;78986:16:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;78986:16:0::1;78964:21;:39::i;:::-;-1:-1:-1::0;78944:3:0;::::1;::::0;::::1;:::i;:::-;;;;78898:117;;70396:43:::0;;;;:::o;70269:33::-;;;;:::o;57404:214::-;-1:-1:-1;;;;;57575:25:0;;;57546:4;57575:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57404:214::o;78090:690::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;78156:13:::1;::::0;:18;78148:60:::1;;;;-1:-1:-1::0;;;78148:60:0::1;;;;;;;:::i;:::-;78227:18;::::0;78219:68:::1;;;;-1:-1:-1::0;;;78219:68:0::1;;;;;;;:::i;:::-;78357:12;::::0;78334:18:::1;::::0;78316:53:::1;::::0;78357:12;78324:29:::1;78316:53;:::i;:::-;78300:13;:69:::0;78521:18:::1;::::0;78543:3:::1;::::0;78506:33:::1;::::0;:12:::1;:33;:::i;:::-;78505:41;78501:141;;;78618:12;::::0;78597:16:::1;78612:1;78597:12;:16;:::i;:::-;78579:51;::::0;;78587:27:::1;78579:51;:::i;:::-;78563:13;:67:::0;78501:141:::1;78693:13;::::0;78689:84:::1;;78744:13;::::0;:17:::1;::::0;78760:1:::1;78744:17;:::i;:::-;78728:13;:33:::0;78689:84:::1;78090:690::o:0;70729:31::-;;;;;;:::o;73546:126::-;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;73632:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;69720:281::-:0;68997:12;:10;:12::i;:::-;-1:-1:-1;;;;;68986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;68986:23:0;;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;69823:22:0;::::1;69801:110;;;;-1:-1:-1::0;;;69801:110:0::1;;;;;;;:::i;:::-;69948:6;::::0;69927:38:::1;::::0;-1:-1:-1;;;;;69927:38:0;;::::1;::::0;69948:6:::1;::::0;69927:38:::1;::::0;69948:6:::1;::::0;69927:38:::1;69976:6;:17:::0;;-1:-1:-1;;;;;;69976:17:0::1;-1:-1:-1::0;;;;;69976:17:0;;;::::1;::::0;;;::::1;::::0;;69720:281::o;80700:167::-;-1:-1:-1;;;;;80830:29:0;;;80786:19;80830:16;;;:10;:16;;;;;:21;;;;:29;;80700:167::o;70688:34::-;;;;;;;:::i;655:98::-;735:10;655:98;:::o;60300:127::-;60365:4;60389:30;:12;60411:7;60389:21;:30::i;66732:201::-;66807:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;66807:29:0;-1:-1:-1;;;;;66807:29:0;;;;;;;;:24;;66861:23;66807:24;66861:14;:23::i;:::-;-1:-1:-1;;;;;66852:46:0;;;;;;;;;;;66732:201;;:::o;46052:155::-;46148:7;46180:19;46188:3;46180:7;:19::i;60594:459::-;60723:4;60767:16;60775:7;60767;:16::i;:::-;60745:110;;;;-1:-1:-1;;;60745:110:0;;;;;;;:::i;:::-;60866:13;60882:23;60897:7;60882:14;:23::i;:::-;60866:39;;60935:5;-1:-1:-1;;;;;60924:16:0;:7;-1:-1:-1;;;;;60924:16:0;;:64;;;;60981:7;-1:-1:-1;;;;;60957:31:0;:20;60969:7;60957:11;:20::i;:::-;-1:-1:-1;;;;;60957:31:0;;60924:64;:120;;;;61005:39;61029:5;61036:7;61005:23;:39::i;:::-;60916:129;60594:459;-1:-1:-1;;;;60594:459:0:o;63914:679::-;64087:4;-1:-1:-1;;;;;64060:31:0;:23;64075:7;64060:14;:23::i;:::-;-1:-1:-1;;;;;64060:31:0;;64038:122;;;;-1:-1:-1;;;64038:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;64206:16:0;;64198:65;;;;-1:-1:-1;;;64198:65:0;;;;;;;:::i;:::-;64276:39;64297:4;64303:2;64307:7;64276:20;:39::i;:::-;64380:29;64397:1;64401:7;64380:8;:29::i;:::-;-1:-1:-1;;;;;64422:19:0;;;;;;:13;:19;;;;;:35;;64449:7;64422:26;:35::i;:::-;-1:-1:-1;;;;;;64468:17:0;;;;;;:13;:17;;;;;:30;;64490:7;64468:21;:30::i;:::-;-1:-1:-1;64511:29:0;:12;64528:7;64537:2;64511:16;:29::i;:::-;;64577:7;64573:2;-1:-1:-1;;;;;64558:27:0;64567:4;-1:-1:-1;;;;;64558:27:0;;;;;;;;;;;63914:679;;;:::o;37462:169::-;37560:7;37600:22;37604:3;37616:5;37600:3;:22::i;46555:268::-;46662:7;;;;46727:22;46731:3;46743:5;46727:3;:22::i;:::-;46696:53;;;;-1:-1:-1;46555:268:0;-1:-1:-1;;;;;46555:268:0:o;65254:100::-;65327:19;;;;:8;;:19;;;;;:::i;47937:292::-;48078:7;48160:44;48165:3;48185;48191:12;48160:4;:44::i;:::-;48152:53;-1:-1:-1;47937:292:0;;;;;;:::o;61396:110::-;61472:26;61482:2;61486:7;61472:26;;;;;;;;;;;;:9;:26::i;14028:179::-;14086:7;;14118:5;14122:1;14118;:5;:::i;:::-;14106:17;;14147:1;14142;:6;;14134:46;;;;-1:-1:-1;;;14134:46:0;;;;;;;:::i;59635:352::-;59792:28;59802:4;59808:2;59812:7;59792:9;:28::i;:::-;59853:48;59876:4;59882:2;59886:7;59895:5;59853:22;:48::i;:::-;59831:148;;;;-1:-1:-1;;;59831:148:0;;;;;;;:::i;48441:723::-;48497:13;48718:10;48714:53;;-1:-1:-1;48745:10:0;;;;;;;;;;;;-1:-1:-1;;;48745:10:0;;;;;;48714:53;48792:5;48777:12;48833:78;48840:9;;48833:78;;48866:8;;;;:::i;:::-;;-1:-1:-1;48889:10:0;;-1:-1:-1;48897:2:0;48889:10;;:::i;:::-;;;48833:78;;;48921:19;48953:6;48943:17;;;;;;-1:-1:-1;;;48943:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48943:17:0;;48921:39;;48971:154;48978:10;;48971:154;;49005:11;49015:1;49005:11;;:::i;:::-;;-1:-1:-1;49074:10:0;49082:2;49074:5;:10;:::i;:::-;49061:24;;:2;:24;:::i;:::-;49048:39;;49031:6;49038;49031:14;;;;;;-1:-1:-1;;;49031:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;49031:56:0;;;;;;;;-1:-1:-1;49102:11:0;49111:2;49102:11;;:::i;:::-;;;48971:154;;45781:183;45892:4;45921:35;45931:3;45951;45921:9;:35::i;42343:110::-;42426:19;;42343:110::o;36484:160::-;36572:4;36601:35;36609:3;36629:5;36601:7;:35::i;36177:131::-;36244:4;36268:32;36273:3;36293:5;36268:4;:32::i;45147:219::-;45270:4;45294:64;45299:3;45319;-1:-1:-1;;;;;45333:23:0;;45294:4;:64::i;32128:273::-;32269:18;;32222:7;;32269:26;-1:-1:-1;32247:110:0;;;;-1:-1:-1;;;32247:110:0;;;;;;;:::i;:::-;32375:3;:11;;32387:5;32375:18;;;;;;-1:-1:-1;;;32375:18:0;;;;;;;;;;;;;;;;;32368:25;;32128:273;;;;:::o;42818:348::-;42968:19;;42912:7;;;;42968:27;-1:-1:-1;42946:111:0;;;;-1:-1:-1;;;42946:111:0;;;;;;;:::i;:::-;43070:22;43095:3;:12;;43108:5;43095:19;;;;;;-1:-1:-1;;;43095:19:0;;;;;;;;;;;;;;;;;;;43070:44;;43133:5;:10;;;43145:5;:12;;;43125:33;;;;;42818:348;;;;;:::o;44452:371::-;44580:7;44619:17;;;:12;;;:17;;;;;;44670:12;44655:13;44647:36;;;;-1:-1:-1;;;44647:36:0;;;;;;;;:::i;:::-;-1:-1:-1;44746:3:0;44759:12;44770:1;44759:8;:12;:::i;:::-;44746:26;;;;;;-1:-1:-1;;;44746:26:0;;;;;;;;;;;;;;;;;;;:33;;;44739:40;;;44452:371;;;;;:::o;61733:321::-;61863:18;61869:2;61873:7;61863:5;:18::i;:::-;61914:54;61945:1;61949:2;61953:7;61962:5;61914:22;:54::i;:::-;61892:154;;;;-1:-1:-1;;;61892:154:0;;;;;;;:::i;65919:694::-;66074:4;66096:15;:2;-1:-1:-1;;;;;66096:13:0;;:15::i;:::-;66091:60;;-1:-1:-1;66135:4:0;66128:11;;66091:60;66161:23;66187:313;-1:-1:-1;;;66322:12:0;:10;:12::i;:::-;66353:4;66376:7;66402:5;66217:205;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;66217:205:0;;;;;;;-1:-1:-1;;;;;66217:205:0;;;;;;;;;;;66187:313;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66187:15:0;;;:313;:15;:313::i;:::-;66161:339;;66511:13;66538:10;66527:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;66578:26:0;-1:-1:-1;;;66578:26:0;;-1:-1:-1;;;65919:694:0;;;;;;:::o;42091:157::-;42189:4;42218:17;;;:12;;;;;:17;;;;;;:22;;;42091:157::o;29762:1570::-;29828:4;29967:19;;;:12;;;:19;;;;;;30003:15;;29999:1326;;30378:21;30402:14;30415:1;30402:10;:14;:::i;:::-;30451:18;;30378:38;;-1:-1:-1;30431:17:0;;30451:22;;30472:1;;30451:22;:::i;:::-;30431:42;;30718:17;30738:3;:11;;30750:9;30738:22;;;;;;-1:-1:-1;;;30738:22:0;;;;;;;;;;;;;;;;;30718:42;;30884:9;30855:3;:11;;30867:13;30855:26;;;;;;-1:-1:-1;;;30855:26:0;;;;;;;;;;;;;;;;;;:38;30987:17;:13;31003:1;30987:17;:::i;:::-;30961:23;;;;:12;;;:23;;;;;:43;31126:17;;30961:3;;31126:17;;;-1:-1:-1;;;31126:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;31221:3;:12;;:19;31234:5;31221:19;;;;;;;;;;;31214:26;;;31264:4;31257:11;;;;;;;;29999:1326;31308:5;31301:12;;;;;29172:414;29235:4;29257:21;29267:3;29272:5;29257:9;:21::i;:::-;29252:327;;-1:-1:-1;29295:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;29478:18;;29456:19;;;:12;;;:19;;;;;;:40;;;;29511:11;;29252:327;-1:-1:-1;29562:5:0;29555:12;;39520:737;39630:4;39765:17;;;:12;;;:17;;;;;;39799:13;39795:455;;-1:-1:-1;;39897:36:0;;;;;;;;;;;;;;;;;;39879:55;;;;;;;;:12;:55;;;;;;;;;;;;;;;;;;;;;;;;40092:19;;40072:17;;;:12;;;:17;;;;;;;:39;40126:11;;39795:455;40206:5;40170:3;40183:12;40194:1;40183:8;:12;:::i;:::-;40170:26;;;;;;-1:-1:-1;;;40170:26:0;;;;;;;;;;;;;;;;;;;:33;;:41;;;;40233:5;40226:12;;;;;62390:404;-1:-1:-1;;;;;62470:16:0;;62462:61;;;;-1:-1:-1;;;62462:61:0;;;;;;;:::i;:::-;62543:16;62551:7;62543;:16::i;:::-;62542:17;62534:58;;;;-1:-1:-1;;;62534:58:0;;;;;;;:::i;:::-;62605:45;62634:1;62638:2;62642:7;62605:20;:45::i;:::-;-1:-1:-1;;;;;62663:17:0;;;;;;:13;:17;;;;;:30;;62685:7;62663:21;:30::i;:::-;-1:-1:-1;62706:29:0;:12;62723:7;62732:2;62706:16;:29::i;:::-;-1:-1:-1;62753:33:0;;62778:7;;-1:-1:-1;;;;;62753:33:0;;;62770:1;;62753:33;;62770:1;;62753:33;62390:404;;:::o;19532:444::-;19912:20;19960:8;;;19532:444::o;22569:229::-;22706:12;22738:52;22760:6;22768:4;22774:1;22777:12;22706;24117:18;24128:6;24117:10;:18::i;:::-;24109:60;;;;-1:-1:-1;;;24109:60:0;;;;;;;:::i;:::-;24243:12;24257:23;24284:6;-1:-1:-1;;;;;24284:11:0;24303:5;24324:4;24284:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24242:97;;;;24357:52;24375:7;24384:10;24396:12;24357:17;:52::i;:::-;24350:59;23785:632;-1:-1:-1;;;;;;;23785:632:0:o;26708:777::-;26858:12;26887:7;26883:595;;;-1:-1:-1;26918:10:0;26911:17;;26883:595;27032:17;;:21;27028:439;;27295:10;27289:17;27356:15;27343:10;27339:2;27335:19;27328:44;27243:148;27438:12;27431:20;;-1:-1:-1;;;27431:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:259::-;;540:2;528:9;519:7;515:23;511:32;508:2;;;561:6;553;546:22;508:2;605:9;592:23;624:33;651:5;624:33;:::i;692:402::-;;;821:2;809:9;800:7;796:23;792:32;789:2;;;842:6;834;827:22;789:2;886:9;873:23;905:33;932:5;905:33;:::i;:::-;957:5;-1:-1:-1;1014:2:1;999:18;;986:32;1027:35;986:32;1027:35;:::i;:::-;1081:7;1071:17;;;779:315;;;;;:::o;1099:470::-;;;;1245:2;1233:9;1224:7;1220:23;1216:32;1213:2;;;1266:6;1258;1251:22;1213:2;1310:9;1297:23;1329:33;1356:5;1329:33;:::i;:::-;1381:5;-1:-1:-1;1438:2:1;1423:18;;1410:32;1451:35;1410:32;1451:35;:::i;:::-;1203:366;;1505:7;;-1:-1:-1;;;1559:2:1;1544:18;;;;1531:32;;1203:366::o;1574:830::-;;;;;1746:3;1734:9;1725:7;1721:23;1717:33;1714:2;;;1768:6;1760;1753:22;1714:2;1812:9;1799:23;1831:33;1858:5;1831:33;:::i;:::-;1883:5;-1:-1:-1;1940:2:1;1925:18;;1912:32;1953:35;1912:32;1953:35;:::i;:::-;2007:7;-1:-1:-1;2061:2:1;2046:18;;2033:32;;-1:-1:-1;2116:2:1;2101:18;;2088:32;2143:18;2132:30;;2129:2;;;2180:6;2172;2165:22;2129:2;2208:22;;2261:4;2253:13;;2249:27;-1:-1:-1;2239:2:1;;2295:6;2287;2280:22;2239:2;2323:75;2390:7;2385:2;2372:16;2367:2;2363;2359:11;2323:75;:::i;:::-;2313:85;;;1704:700;;;;;;;:::o;2409:438::-;;;2535:2;2523:9;2514:7;2510:23;2506:32;2503:2;;;2556:6;2548;2541:22;2503:2;2600:9;2587:23;2619:33;2646:5;2619:33;:::i;:::-;2671:5;-1:-1:-1;2728:2:1;2713:18;;2700:32;2770:15;;2763:23;2751:36;;2741:2;;2806:6;2798;2791:22;2852:327;;;2981:2;2969:9;2960:7;2956:23;2952:32;2949:2;;;3002:6;2994;2987:22;2949:2;3046:9;3033:23;3065:33;3092:5;3065:33;:::i;:::-;3117:5;3169:2;3154:18;;;;3141:32;;-1:-1:-1;;;2939:240:1:o;3184:1079::-;;3299:2;3342;3330:9;3321:7;3317:23;3313:32;3310:2;;;3363:6;3355;3348:22;3310:2;3408:9;3395:23;3437:18;3478:2;3470:6;3467:14;3464:2;;;3499:6;3491;3484:22;3464:2;3542:6;3531:9;3527:22;3517:32;;3587:7;3580:4;3576:2;3572:13;3568:27;3558:2;;3614:6;3606;3599:22;3558:2;3655;3642:16;3677:2;3673;3670:10;3667:2;;;3683:18;;:::i;:::-;3730:2;3726;3722:11;3712:21;;3753:27;3776:2;3772;3768:11;3753:27;:::i;:::-;3814:15;;;3845:12;;;;3877:11;;;3907;;;3903:20;;3900:33;-1:-1:-1;3897:2:1;;;3951:6;3943;3936:22;3897:2;3978:6;3969:15;;3993:240;4007:2;4004:1;4001:9;3993:240;;;4078:3;4065:17;4052:30;;4095:33;4122:5;4095:33;:::i;:::-;4141:18;;;4025:1;4018:9;;;;;4179:12;;;;4211;;3993:240;;;-1:-1:-1;4252:5:1;3279:984;-1:-1:-1;;;;;;;;3279:984:1:o;4268:257::-;;4379:2;4367:9;4358:7;4354:23;4350:32;4347:2;;;4400:6;4392;4385:22;4347:2;4444:9;4431:23;4463:32;4489:5;4463:32;:::i;4530:261::-;;4652:2;4640:9;4631:7;4627:23;4623:32;4620:2;;;4673:6;4665;4658:22;4620:2;4710:9;4704:16;4729:32;4755:5;4729:32;:::i;4796:482::-;;4918:2;4906:9;4897:7;4893:23;4889:32;4886:2;;;4939:6;4931;4924:22;4886:2;4984:9;4971:23;5017:18;5009:6;5006:30;5003:2;;;5054:6;5046;5039:22;5003:2;5082:22;;5135:4;5127:13;;5123:27;-1:-1:-1;5113:2:1;;5169:6;5161;5154:22;5113:2;5197:75;5264:7;5259:2;5246:16;5241:2;5237;5233:11;5197:75;:::i;5283:190::-;;5395:2;5383:9;5374:7;5370:23;5366:32;5363:2;;;5416:6;5408;5401:22;5363:2;-1:-1:-1;5444:23:1;;5353:120;-1:-1:-1;5353:120:1:o;5478:335::-;;;5615:2;5603:9;5594:7;5590:23;5586:32;5583:2;;;5636:6;5628;5621:22;5583:2;5677:9;5664:23;5654:33;;5737:2;5726:9;5722:18;5709:32;5750:33;5777:5;5750:33;:::i;5818:259::-;;5899:5;5893:12;5926:6;5921:3;5914:19;5942:63;5998:6;5991:4;5986:3;5982:14;5975:4;5968:5;5964:16;5942:63;:::i;:::-;6059:2;6038:15;-1:-1:-1;;6034:29:1;6025:39;;;;6066:4;6021:50;;5869:208;-1:-1:-1;;5869:208:1:o;6082:274::-;;6249:6;6243:13;6265:53;6311:6;6306:3;6299:4;6291:6;6287:17;6265:53;:::i;:::-;6334:16;;;;;6219:137;-1:-1:-1;;6219:137:1:o;6361:772::-;;6780:6;6774:13;6796:53;6842:6;6837:3;6830:4;6822:6;6818:17;6796:53;:::i;:::-;-1:-1:-1;;;6871:16:1;;;6896:18;;;6939:13;;6961:65;6939:13;7013:1;7002:13;;6995:4;6983:17;;6961:65;:::i;:::-;-1:-1:-1;;;7089:1:1;7045:20;;;;7081:10;;;7074:27;7125:1;7117:10;;6750:383;-1:-1:-1;;;;6750:383:1:o;7138:205::-;7338:3;7329:14::o;7348:203::-;-1:-1:-1;;;;;7512:32:1;;;;7494:51;;7482:2;7467:18;;7449:102::o;7556:490::-;-1:-1:-1;;;;;7825:15:1;;;7807:34;;7877:15;;7872:2;7857:18;;7850:43;7924:2;7909:18;;7902:34;;;7972:3;7967:2;7952:18;;7945:31;;;7556:490;;7993:47;;8020:19;;8012:6;7993:47;:::i;:::-;7985:55;7759:287;-1:-1:-1;;;;;;7759:287:1:o;8051:345::-;-1:-1:-1;;;;;8271:32:1;;;;8253:51;;8335:2;8320:18;;8313:34;;;;8378:2;8363:18;;8356:34;8241:2;8226:18;;8208:188::o;8401:635::-;8572:2;8624:21;;;8694:13;;8597:18;;;8716:22;;;8401:635;;8572:2;8795:15;;;;8769:2;8754:18;;;8401:635;8841:169;8855:6;8852:1;8849:13;8841:169;;;8916:13;;8904:26;;8985:15;;;;8950:12;;;;8877:1;8870:9;8841:169;;;-1:-1:-1;9027:3:1;;8552:484;-1:-1:-1;;;;;;8552:484:1:o;9041:187::-;9206:14;;9199:22;9181:41;;9169:2;9154:18;;9136:92::o;9233:221::-;;9382:2;9371:9;9364:21;9402:46;9444:2;9433:9;9429:18;9421:6;9402:46;:::i;9459:348::-;9661:2;9643:21;;;9700:2;9680:18;;;9673:30;9739:26;9734:2;9719:18;;9712:54;9798:2;9783:18;;9633:174::o;9812:398::-;10014:2;9996:21;;;10053:2;10033:18;;;10026:30;10092:34;10087:2;10072:18;;10065:62;-1:-1:-1;;;10158:2:1;10143:18;;10136:32;10200:3;10185:19;;9986:224::o;10215:399::-;10417:2;10399:21;;;10456:2;10436:18;;;10429:30;10495:34;10490:2;10475:18;;10468:62;-1:-1:-1;;;10561:2:1;10546:18;;10539:33;10604:3;10589:19;;10389:225::o;10619:355::-;10821:2;10803:21;;;10860:2;10840:18;;;10833:30;10899:33;10894:2;10879:18;;10872:61;10965:2;10950:18;;10793:181::o;10979:414::-;11181:2;11163:21;;;11220:2;11200:18;;;11193:30;11259:34;11254:2;11239:18;;11232:62;-1:-1:-1;;;11325:2:1;11310:18;;11303:48;11383:3;11368:19;;11153:240::o;11398:402::-;11600:2;11582:21;;;11639:2;11619:18;;;11612:30;11678:34;11673:2;11658:18;;11651:62;-1:-1:-1;;;11744:2:1;11729:18;;11722:36;11790:3;11775:19;;11572:228::o;11805:352::-;12007:2;11989:21;;;12046:2;12026:18;;;12019:30;12085;12080:2;12065:18;;12058:58;12148:2;12133:18;;11979:178::o;12162:349::-;12364:2;12346:21;;;12403:2;12383:18;;;12376:30;12442:27;12437:2;12422:18;;12415:55;12502:2;12487:18;;12336:175::o;12516:351::-;12718:2;12700:21;;;12757:2;12737:18;;;12730:30;12796:29;12791:2;12776:18;;12769:57;12858:2;12843:18;;12690:177::o;12872:400::-;13074:2;13056:21;;;13113:2;13093:18;;;13086:30;13152:34;13147:2;13132:18;;13125:62;-1:-1:-1;;;13218:2:1;13203:18;;13196:34;13262:3;13247:19;;13046:226::o;13277:349::-;13479:2;13461:21;;;13518:2;13498:18;;;13491:30;13557:27;13552:2;13537:18;;13530:55;13617:2;13602:18;;13451:175::o;13631:342::-;13833:2;13815:21;;;13872:2;13852:18;;;13845:30;-1:-1:-1;;;13906:2:1;13891:18;;13884:48;13964:2;13949:18;;13805:168::o;13978:351::-;14180:2;14162:21;;;14219:2;14199:18;;;14192:30;14258:29;14253:2;14238:18;;14231:57;14320:2;14305:18;;14152:177::o;14334:332::-;14536:2;14518:21;;;14575:1;14555:18;;;14548:29;-1:-1:-1;;;14608:2:1;14593:18;;14586:39;14657:2;14642:18;;14508:158::o;15078:408::-;15280:2;15262:21;;;15319:2;15299:18;;;15292:30;15358:34;15353:2;15338:18;;15331:62;-1:-1:-1;;;15424:2:1;15409:18;;15402:42;15476:3;15461:19;;15252:234::o;15491:355::-;15693:2;15675:21;;;15732:2;15712:18;;;15705:30;15771:33;15766:2;15751:18;;15744:61;15837:2;15822:18;;15665:181::o;15851:353::-;16053:2;16035:21;;;16092:2;16072:18;;;16065:30;16131:31;16126:2;16111:18;;16104:59;16195:2;16180:18;;16025:179::o;16209:420::-;16411:2;16393:21;;;16450:2;16430:18;;;16423:30;16489:34;16484:2;16469:18;;16462:62;16560:26;16555:2;16540:18;;16533:54;16619:3;16604:19;;16383:246::o;16634:339::-;16836:2;16818:21;;;16875:2;16855:18;;;16848:30;-1:-1:-1;;;16909:2:1;16894:18;;16887:45;16964:2;16949:18;;16808:165::o;16978:406::-;17180:2;17162:21;;;17219:2;17199:18;;;17192:30;17258:34;17253:2;17238:18;;17231:62;-1:-1:-1;;;17324:2:1;17309:18;;17302:40;17374:3;17359:19;;17152:232::o;17389:342::-;17591:2;17573:21;;;17630:2;17610:18;;;17603:30;-1:-1:-1;;;17664:2:1;17649:18;;17642:48;17722:2;17707:18;;17563:168::o;17736:398::-;17938:2;17920:21;;;17977:2;17957:18;;;17950:30;18016:34;18011:2;17996:18;;17989:62;-1:-1:-1;;;18082:2:1;18067:18;;18060:32;18124:3;18109:19;;17910:224::o;18139:356::-;18341:2;18323:21;;;18360:18;;;18353:30;18419:34;18414:2;18399:18;;18392:62;18486:2;18471:18;;18313:182::o;18500:408::-;18702:2;18684:21;;;18741:2;18721:18;;;18714:30;18780:34;18775:2;18760:18;;18753:62;-1:-1:-1;;;18846:2:1;18831:18;;18824:42;18898:3;18883:19;;18674:234::o;18913:356::-;19115:2;19097:21;;;19134:18;;;19127:30;19193:34;19188:2;19173:18;;19166:62;19260:2;19245:18;;19087:182::o;19274:405::-;19476:2;19458:21;;;19515:2;19495:18;;;19488:30;19554:34;19549:2;19534:18;;19527:62;-1:-1:-1;;;19620:2:1;19605:18;;19598:39;19669:3;19654:19;;19448:231::o;19684:411::-;19886:2;19868:21;;;19925:2;19905:18;;;19898:30;19964:34;19959:2;19944:18;;19937:62;-1:-1:-1;;;20030:2:1;20015:18;;20008:45;20085:3;20070:19;;19858:237::o;20100:343::-;20302:2;20284:21;;;20341:2;20321:18;;;20314:30;-1:-1:-1;;;20375:2:1;20360:18;;20353:49;20434:2;20419:18;;20274:169::o;20448:341::-;20650:2;20632:21;;;20689:2;20669:18;;;20662:30;-1:-1:-1;;;20723:2:1;20708:18;;20701:47;20780:2;20765:18;;20622:167::o;20794:344::-;20996:2;20978:21;;;21035:2;21015:18;;;21008:30;-1:-1:-1;;;21069:2:1;21054:18;;21047:50;21129:2;21114:18;;20968:170::o;21143:397::-;21345:2;21327:21;;;21384:2;21364:18;;;21357:30;21423:34;21418:2;21403:18;;21396:62;-1:-1:-1;;;21489:2:1;21474:18;;21467:31;21530:3;21515:19;;21317:223::o;21545:356::-;21747:2;21729:21;;;21766:18;;;21759:30;21825:34;21820:2;21805:18;;21798:62;21892:2;21877:18;;21719:182::o;21906:413::-;22108:2;22090:21;;;22147:2;22127:18;;;22120:30;22186:34;22181:2;22166:18;;22159:62;-1:-1:-1;;;22252:2:1;22237:18;;22230:47;22309:3;22294:19;;22080:239::o;22324:353::-;22526:2;22508:21;;;22565:2;22545:18;;;22538:30;22604:31;22599:2;22584:18;;22577:59;22668:2;22653:18;;22498:179::o;22682:342::-;22884:2;22866:21;;;22923:2;22903:18;;;22896:30;-1:-1:-1;;;22957:2:1;22942:18;;22935:48;23015:2;23000:18;;22856:168::o;23029:331::-;23231:2;23213:21;;;23270:1;23250:18;;;23243:29;-1:-1:-1;;;23303:2:1;23288:18;;23281:38;23351:2;23336:18;;23203:157::o;23365:351::-;23567:2;23549:21;;;23606:2;23586:18;;;23579:30;23645:29;23640:2;23625:18;;23618:57;23707:2;23692:18;;23539:177::o;23721:343::-;23923:2;23905:21;;;23962:2;23942:18;;;23935:30;-1:-1:-1;;;23996:2:1;23981:18;;23974:49;24055:2;24040:18;;23895:169::o;24069:177::-;24215:25;;;24203:2;24188:18;;24170:76::o;24251:251::-;24321:2;24315:9;24351:17;;;24398:18;24383:34;;24419:22;;;24380:62;24377:2;;;24445:18;;:::i;:::-;24481:2;24474:22;24295:207;;-1:-1:-1;24295:207:1:o;24507:128::-;;24578:1;24574:6;24571:1;24568:13;24565:2;;;24584:18;;:::i;:::-;-1:-1:-1;24620:9:1;;24555:80::o;24640:120::-;;24706:1;24696:2;;24711:18;;:::i;:::-;-1:-1:-1;24745:9:1;;24686:74::o;24765:168::-;;24871:1;24867;24863:6;24859:14;24856:1;24853:21;24848:1;24841:9;24834:17;24830:45;24827:2;;;24878:18;;:::i;:::-;-1:-1:-1;24918:9:1;;24817:116::o;24938:125::-;;25006:1;25003;25000:8;24997:2;;;25011:18;;:::i;:::-;-1:-1:-1;25048:9:1;;24987:76::o;25068:258::-;25140:1;25150:113;25164:6;25161:1;25158:13;25150:113;;;25240:11;;;25234:18;25221:11;;;25214:39;25186:2;25179:10;25150:113;;;25281:6;25278:1;25275:13;25272:2;;;-1:-1:-1;;25316:1:1;25298:16;;25291:27;25121:205::o;25331:380::-;25416:1;25406:12;;25463:1;25453:12;;;25474:2;;25528:4;25520:6;25516:17;25506:27;;25474:2;25581;25573:6;25570:14;25550:18;25547:38;25544:2;;;25627:10;25622:3;25618:20;25615:1;25608:31;25662:4;25659:1;25652:15;25690:4;25687:1;25680:15;25716:135;;-1:-1:-1;;25776:17:1;;25773:2;;;25796:18;;:::i;:::-;-1:-1:-1;25843:1:1;25832:13;;25763:88::o;25856:112::-;;25914:1;25904:2;;25919:18;;:::i;:::-;-1:-1:-1;25953:9:1;;25894:74::o;25973:127::-;26034:10;26029:3;26025:20;26022:1;26015:31;26065:4;26062:1;26055:15;26089:4;26086:1;26079:15;26105:127;26166:10;26161:3;26157:20;26154:1;26147:31;26197:4;26194:1;26187:15;26221:4;26218:1;26211:15;26237:127;26298:10;26293:3;26289:20;26286:1;26279:31;26329:4;26326:1;26319:15;26353:4;26350:1;26343:15;26369:133;-1:-1:-1;;;;;26446:31:1;;26436:42;;26426:2;;26492:1;26489;26482:12;26507:133;-1:-1:-1;;;;;;26583:32:1;;26573:43;;26563:2;;26630:1;26627;26620:12

Swarm Source

ipfs://9036468e1faa4533078d353b438bec2218aec902df91b50de4ea54f8622a93af
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.