ETH Price: $3,274.82 (+0.89%)
Gas: 2 Gwei

Token

In Crowd Alpha (INCROWD)
 

Overview

Max Total Supply

344 INCROWD

Holders

280

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 INCROWD
0xE6F2B600fd7df131b832F781174DB4CBc70a1131
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:
Incrowd

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-09
*/

// SPDX-License-Identifier: MIT

pragma solidity = 0.8.9;

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

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

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

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

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

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

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

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

/**
 * @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 Solipragma solidity >=0.6.0 <0.8.0;dity 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);
            }
        }
    }
}

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

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

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

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

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

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

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

}

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

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

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () {
        _status = _NOT_ENTERED;
    }

    /**voucherPresaleNfts
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    modifier isHuman() {
        require(tx.origin == msg.sender, "sorry humans only");
        _;
    }
}

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

    uint256 public nftPrice = .45 ether;
    uint256 public wlNftPrice = .45 ether;

    uint public maxNftPurchase = 3;
    uint public maxNftWallet = 3;

    uint256 public MAX_NFTS;

    bool public saleIsActive = false;
    bool public presaleIsActive = false;

   
    mapping (address => bool) private _isWhitelisted;
    mapping (address => bool) private _isTokenAdmin;

    constructor() ERC721("In Crowd Alpha", "INCROWD") {
        MAX_NFTS = 1850;
        setBaseURI("https://incrowdalpha.mypinata.cloud/ipfs/QmVPBFgudeSBWryruoyXT3t5uurCZm25DQtBCJdi2Qh8Y8/");
    }

    modifier OnlyTokenAdmin() {
        require(_isTokenAdmin[_msgSender()] || _msgSender() == owner(), "Sorry: You are not a Token Admin");
        _;
    }

    function setNftPrice(uint256 price) external onlyOwner {
        nftPrice = price;
    }

    function setMax(uint256 qty) external onlyOwner {
        MAX_NFTS = qty;
    }

    function setWlNftPrice(uint256 price) external onlyOwner {
        wlNftPrice = price;
    }

    function setMaxPurchase(uint256 amount) external onlyOwner {
        maxNftPurchase = amount;
    }

    function setMaxWallet(uint256 amount) external onlyOwner {
        maxNftWallet = amount;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(owner()).transfer(balance);
    }

    function setTokenAdmin(address account, bool enabled) public onlyOwner {
        _isTokenAdmin[account] = enabled;
    }

    function reserveNfts(uint256 _count) public OnlyTokenAdmin {        
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < _count; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

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

    /*
    * Pause sale if active, make active if paused
    */
    function flipSaleState() public OnlyTokenAdmin {
        saleIsActive = !saleIsActive;
    }

    function flipPreSaleState() public OnlyTokenAdmin {
        presaleIsActive = !presaleIsActive;
    }

    function addToPresale(address[] calldata addresses) external OnlyTokenAdmin {
        for (uint256 i = 0; i < addresses.length; i++) {
            _isWhitelisted[addresses[i]] = true;
        }
    }

    function removeFromPresale(address[] calldata addresses) external OnlyTokenAdmin {
        for (uint256 i = 0; i < addresses.length; i++) {
            _isWhitelisted[addresses[i]] = false;
        }
    }

    function isWhiteListed(address account) public view returns (bool) {
        return _isWhitelisted[account];
    }

    function isTokenAdmin(address account) public view returns (bool) {
        return _isTokenAdmin[account] || _msgSender() == owner();
    }

    function mint(uint numberOfTokens) isHuman nonReentrant external payable {
        require(saleIsActive || (presaleIsActive && _isWhitelisted[msg.sender]), "Sale must be active to mint");
        require(balanceOf(_msgSender()).add(numberOfTokens) <= maxNftWallet, "Can only mint 3 per wallet");
        require(numberOfTokens <= maxNftPurchase, "Can only mint 2 at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_NFTS, "Purchase would exceed max supply");
        require(nftPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_NFTS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function preMint(uint numberOfTokens) isHuman nonReentrant external payable {
        require(presaleIsActive, "Presale must be active to mint");
        require(balanceOf(_msgSender()).add(numberOfTokens) <= maxNftWallet, "Can only mint 3 per wallet");
        require(_isWhitelisted[_msgSender()], "Account is not White Listed");
        require(numberOfTokens <= maxNftPurchase, "Can only mint 12 at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_NFTS, "Purchase would exceed max supply");
        require(wlNftPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");      
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_NFTS) {
                _safeMint(msg.sender, mintIndex);
            }
        }       
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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_NFTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresale","outputs":[],"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":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":"account","type":"address"}],"name":"isTokenAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNftPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNftWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"numberOfTokens","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveNfts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"qty","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setNftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setTokenAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWlNftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlNftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405267063eb89da4ed0000600c819055600d556003600e819055600f556011805461ffff191690553480156200003757600080fd5b50604080518082018252600e81526d496e2043726f776420416c70686160901b60208083019190915282518084019093526007835266125390d493d5d160ca1b90830152906200008e6301ffc9a760e01b6200016b565b8151620000a390600690602085019062000273565b508051620000b990600790602084019062000273565b50620000cc6380ac58cd60e01b6200016b565b620000de635b5e139f60e01b6200016b565b620000f063780e9d6360e01b6200016b565b5050600a80546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600b5561073a601055604080516080810190915260588082526200016591906200312f6020830139620001f0565b62000356565b6001600160e01b03198082161415620001cb5760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e746572666163652069640000000060448201526064015b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b600a546001600160a01b031633146200024c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001c2565b62000257816200025a565b50565b80516200026f90600990602084019062000273565b5050565b828054620002819062000319565b90600052602060002090601f016020900481019282620002a55760008555620002f0565b82601f10620002c057805160ff1916838001178555620002f0565b82800160010185558215620002f0579182015b82811115620002f0578251825591602001919060010190620002d3565b50620002fe92915062000302565b5090565b5b80821115620002fe576000815560010162000303565b600181811c908216806200032e57607f821691505b602082108114156200035057634e487b7160e01b600052602260045260246000fd5b50919050565b612dc980620003666000396000f3fe6080604052600436106102675760003560e01c80636f9170f611610144578063a2bdde3d116100b6578063c87b56dd1161007a578063c87b56dd14610717578063e985e9c514610737578063eb8d244414610780578063f03255491461079a578063f2fde38b146107af578063fd25b2ba146107cf57600080fd5b8063a2bdde3d14610681578063aef6ee1f146106a1578063b6a379ec146106c1578063b88d4fde146106e1578063bde708f41461070157600080fd5b80638ad433ac116101085780638ad433ac146105e85780638da5cb5b146105fb57806395d89b41146106195780639c8169551461062e578063a0712d681461064e578063a22cb4651461066157600080fd5b80636f9170f61461053a57806370a08231146105735780637118974214610593578063715018a6146105b35780637d9a7a4c146105c857600080fd5b806330f72cd4116101dd57806342842e0e116101a157806342842e0e146104855780634f6ccce7146104a557806355f804b3146104c55780635d0044ca146104e55780636352211e146105055780636c0360eb1461052557600080fd5b806330f72cd41461040657806334918dfd146104255780633492d7a71461043a5780633789f8d1146104505780633ccfd60b1461047057600080fd5b80630d39fc811161022f5780630d39fc811461035b57806318160ddd146103715780631b7cfa09146103865780631fe9eabc146103a657806323b872dd146103c65780632f745c59146103e657600080fd5b806301ffc9a71461026c57806306fdde03146102bb578063081812fc146102dd578063093d8c6414610315578063095ea7b314610339575b600080fd5b34801561027857600080fd5b506102a66102873660046126ef565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b3480156102c757600080fd5b506102d06107e5565b6040516102b29190612764565b3480156102e957600080fd5b506102fd6102f8366004612777565b610877565b6040516001600160a01b0390911681526020016102b2565b34801561032157600080fd5b5061032b60105481565b6040519081526020016102b2565b34801561034557600080fd5b506103596103543660046127ac565b610904565b005b34801561036757600080fd5b5061032b600c5481565b34801561037d57600080fd5b5061032b610a1a565b34801561039257600080fd5b506103596103a1366004612777565b610a2b565b3480156103b257600080fd5b506103596103c1366004612777565b610aab565b3480156103d257600080fd5b506103596103e13660046127d6565b610ada565b3480156103f257600080fd5b5061032b6104013660046127ac565b610b0b565b34801561041257600080fd5b506011546102a690610100900460ff1681565b34801561043157600080fd5b50610359610b36565b34801561044657600080fd5b5061032b600f5481565b34801561045c57600080fd5b5061035961046b366004612812565b610b8e565b34801561047c57600080fd5b50610359610be3565b34801561049157600080fd5b506103596104a03660046127d6565b610c5c565b3480156104b157600080fd5b5061032b6104c0366004612777565b610c77565b3480156104d157600080fd5b506103596104e03660046128da565b610c8d565b3480156104f157600080fd5b50610359610500366004612777565b610cc3565b34801561051157600080fd5b506102fd610520366004612777565b610cf2565b34801561053157600080fd5b506102d0610d1a565b34801561054657600080fd5b506102a6610555366004612923565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561057f57600080fd5b5061032b61058e366004612923565b610d29565b34801561059f57600080fd5b506103596105ae366004612777565b610db5565b3480156105bf57600080fd5b50610359610de4565b3480156105d457600080fd5b506103596105e3366004612777565b610e58565b6103596105f6366004612777565b610e87565b34801561060757600080fd5b50600a546001600160a01b03166102fd565b34801561062557600080fd5b506102d0611196565b34801561063a57600080fd5b5061035961064936600461293e565b6111a5565b61035961065c366004612777565b61125b565b34801561066d57600080fd5b5061035961067c366004612812565b611523565b34801561068d57600080fd5b506102a661069c366004612923565b6115e8565b3480156106ad57600080fd5b506103596106bc36600461293e565b61161e565b3480156106cd57600080fd5b506103596106dc366004612777565b6116d4565b3480156106ed57600080fd5b506103596106fc3660046129b3565b611703565b34801561070d57600080fd5b5061032b600e5481565b34801561072357600080fd5b506102d0610732366004612777565b61173b565b34801561074357600080fd5b506102a6610752366004612a2f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078c57600080fd5b506011546102a69060ff1681565b3480156107a657600080fd5b506103596118ad565b3480156107bb57600080fd5b506103596107ca366004612923565b61190e565b3480156107db57600080fd5b5061032b600d5481565b6060600680546107f490612a62565b80601f016020809104026020016040519081016040528092919081815260200182805461082090612a62565b801561086d5780601f106108425761010080835404028352916020019161086d565b820191906000526020600020905b81548152906001019060200180831161085057829003601f168201915b5050505050905090565b6000610882826119f9565b6108e85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061090f82610cf2565b9050806001600160a01b0316836001600160a01b0316141561097d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108df565b336001600160a01b038216148061099957506109998133610752565b610a0b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108df565b610a158383611a06565b505050565b6000610a266002611a74565b905090565b3360009081526013602052604090205460ff1680610a535750600a546001600160a01b031633145b610a6f5760405162461bcd60e51b81526004016108df90612a9d565b6000610a79610a1a565b905060005b82811015610a1557610a9933610a948385612ae8565b611a7e565b80610aa381612b00565b915050610a7e565b600a546001600160a01b03163314610ad55760405162461bcd60e51b81526004016108df90612b1b565b601055565b610ae43382611a98565b610b005760405162461bcd60e51b81526004016108df90612b50565b610a15838383611b82565b6001600160a01b0382166000908152600160205260408120610b2d9083611d03565b90505b92915050565b3360009081526013602052604090205460ff1680610b5e5750600a546001600160a01b031633145b610b7a5760405162461bcd60e51b81526004016108df90612a9d565b6011805460ff19811660ff90911615179055565b600a546001600160a01b03163314610bb85760405162461bcd60e51b81526004016108df90612b1b565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b600a546001600160a01b03163314610c0d5760405162461bcd60e51b81526004016108df90612b1b565b47610c20600a546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610c58573d6000803e3d6000fd5b5050565b610a1583838360405180602001604052806000815250611703565b600080610c85600284611d0f565b509392505050565b600a546001600160a01b03163314610cb75760405162461bcd60e51b81526004016108df90612b1b565b610cc081611d2b565b50565b600a546001600160a01b03163314610ced5760405162461bcd60e51b81526004016108df90612b1b565b600f55565b6000610b3082604051806060016040528060298152602001612d6b6029913960029190611d3e565b6060600980546107f490612a62565b60006001600160a01b038216610d945760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108df565b6001600160a01b0382166000908152600160205260409020610b3090611a74565b600a546001600160a01b03163314610ddf5760405162461bcd60e51b81526004016108df90612b1b565b600e55565b600a546001600160a01b03163314610e0e5760405162461bcd60e51b81526004016108df90612b1b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610e825760405162461bcd60e51b81526004016108df90612b1b565b600c55565b323314610eca5760405162461bcd60e51b8152602060048201526011602482015270736f7272792068756d616e73206f6e6c7960781b60448201526064016108df565b6002600b541415610f1d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108df565b6002600b55601154610100900460ff16610f795760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65206d7573742062652061637469766520746f206d696e74000060448201526064016108df565b600f54610f8f82610f8933610d29565b90611d55565b1115610fdd5760405162461bcd60e51b815260206004820152601a60248201527f43616e206f6e6c79206d696e742033207065722077616c6c657400000000000060448201526064016108df565b3360009081526012602052604090205460ff1661103c5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e74206973206e6f74205768697465204c6973746564000000000060448201526064016108df565b600e5481111561108e5760405162461bcd60e51b815260206004820152601a60248201527f43616e206f6e6c79206d696e7420313220617420612074696d6500000000000060448201526064016108df565b60105461109d82610f89610a1a565b11156110eb5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016108df565b600d5434906110fa9083611db4565b11156111485760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016108df565b60005b8181101561118d57600061115d610a1a565b905060105461116a610a1a565b101561117a5761117a3382611a7e565b508061118581612b00565b91505061114b565b50506001600b55565b6060600780546107f490612a62565b3360009081526013602052604090205460ff16806111cd5750600a546001600160a01b031633145b6111e95760405162461bcd60e51b81526004016108df90612a9d565b60005b81811015610a155760006012600085858581811061120c5761120c612ba1565b90506020020160208101906112219190612923565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061125381612b00565b9150506111ec565b32331461129e5760405162461bcd60e51b8152602060048201526011602482015270736f7272792068756d616e73206f6e6c7960781b60448201526064016108df565b6002600b5414156112f15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108df565b6002600b5560115460ff16806113285750601154610100900460ff16801561132857503360009081526012602052604090205460ff165b6113745760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016108df565b600f5461138482610f8933610d29565b11156113d25760405162461bcd60e51b815260206004820152601a60248201527f43616e206f6e6c79206d696e742033207065722077616c6c657400000000000060448201526064016108df565b600e548111156114245760405162461bcd60e51b815260206004820152601960248201527f43616e206f6e6c79206d696e74203220617420612074696d650000000000000060448201526064016108df565b60105461143382610f89610a1a565b11156114815760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016108df565b600c5434906114909083611db4565b11156114de5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016108df565b60005b8181101561118d5760006114f3610a1a565b9050601054611500610a1a565b1015611510576115103382611a7e565b508061151b81612b00565b9150506114e1565b6001600160a01b03821633141561157c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108df565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b03811660009081526013602052604081205460ff1680610b30575050600a546001600160a01b03163314919050565b3360009081526013602052604090205460ff16806116465750600a546001600160a01b031633145b6116625760405162461bcd60e51b81526004016108df90612a9d565b60005b81811015610a155760016012600085858581811061168557611685612ba1565b905060200201602081019061169a9190612923565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806116cc81612b00565b915050611665565b600a546001600160a01b031633146116fe5760405162461bcd60e51b81526004016108df90612b1b565b600d55565b61170d3383611a98565b6117295760405162461bcd60e51b81526004016108df90612b50565b61173584848484611e33565b50505050565b6060611746826119f9565b6117aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108df565b600082815260086020526040812080546117c390612a62565b80601f01602080910402602001604051908101604052809291908181526020018280546117ef90612a62565b801561183c5780601f106118115761010080835404028352916020019161183c565b820191906000526020600020905b81548152906001019060200180831161181f57829003601f168201915b50505050509050600061184d610d1a565b9050805160001415611860575092915050565b81511561189257808260405160200161187a929190612bb7565b60405160208183030381529060405292505050919050565b8061189c85611e66565b60405160200161187a929190612bb7565b3360009081526013602052604090205460ff16806118d55750600a546001600160a01b031633145b6118f15760405162461bcd60e51b81526004016108df90612a9d565b6011805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146119385760405162461bcd60e51b81526004016108df90612b1b565b6001600160a01b03811661199d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108df565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b30600283611f64565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a3b82610cf2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610b30825490565b610c58828260405180602001604052806000815250611f7c565b6000611aa3826119f9565b611b045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108df565b6000611b0f83610cf2565b9050806001600160a01b0316846001600160a01b03161480611b4a5750836001600160a01b0316611b3f84610877565b6001600160a01b0316145b80611b7a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b9582610cf2565b6001600160a01b031614611bfd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108df565b6001600160a01b038216611c5f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108df565b611c6a600082611a06565b6001600160a01b0383166000908152600160205260409020611c8c9082611faf565b506001600160a01b0382166000908152600160205260409020611caf9082611fbb565b50611cbc60028284611fc7565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610b2d8383611fdd565b6000808080611d1e8686612063565b9097909650945050505050565b8051610c58906009906020840190612640565b6000611d4b848484612100565b90505b9392505050565b600080611d628385612ae8565b905083811015610b2d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108df565b600082611dc357506000610b30565b6000611dcf8385612be6565b905082611ddc8583612c1b565b14610b2d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108df565b611e3e848484611b82565b611e4a84848484612169565b6117355760405162461bcd60e51b81526004016108df90612c2f565b606081611e8a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eb45780611e9e81612b00565b9150611ead9050600a83612c1b565b9150611e8e565b60008167ffffffffffffffff811115611ecf57611ecf61284e565b6040519080825280601f01601f191660200182016040528015611ef9576020820181803683370190505b5090505b8415611b7a57611f0e600183612c81565b9150611f1b600a86612c98565b611f26906030612ae8565b60f81b818381518110611f3b57611f3b612ba1565b60200101906001600160f81b031916908160001a905350611f5d600a86612c1b565b9450611efd565b60008181526001830160205260408120541515610b2d565b611f86838361223a565b611f936000848484612169565b610a155760405162461bcd60e51b81526004016108df90612c2f565b6000610b2d8383612352565b6000610b2d8383612445565b6000611d4b84846001600160a01b038516612494565b8154600090821061203b5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108df565b82600001828154811061205057612050612ba1565b9060005260206000200154905092915050565b8154600090819083106120c35760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108df565b60008460000184815481106120da576120da612ba1565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816121305760405162461bcd60e51b81526004016108df9190612764565b508461213d600183612c81565b8154811061214d5761214d612ba1565b9060005260206000209060020201600101549150509392505050565b60006001600160a01b0384163b61218257506001611b7a565b6000612203630a85bd0160e11b338887876040516024016121a69493929190612cac565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612d39603291396001600160a01b0388169190612535565b905060008180602001905181019061221b9190612ce9565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b0382166122905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108df565b612299816119f9565b156122e65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108df565b6001600160a01b03821660009081526001602052604090206123089082611fbb565b5061231560028284611fc7565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600183016020526040812054801561243b576000612376600183612c81565b855490915060009061238a90600190612c81565b905060008660000182815481106123a3576123a3612ba1565b90600052602060002001549050808760000184815481106123c6576123c6612ba1565b6000918252602090912001556123dd836001612ae8565b600082815260018901602052604090205586548790806123ff576123ff612d06565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610b30565b6000915050610b30565b600081815260018301602052604081205461248c57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b30565b506000610b30565b6000828152600184016020526040812054806124f9575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611d4e565b8285612506600184612c81565b8154811061251657612516612ba1565b9060005260206000209060020201600101819055506000915050611d4e565b6060611d4b848460008585843b61258e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108df565b600080866001600160a01b031685876040516125aa9190612d1c565b60006040518083038185875af1925050503d80600081146125e7576040519150601f19603f3d011682016040523d82523d6000602084013e6125ec565b606091505b50915091506125fc828286612607565b979650505050505050565b60608315612616575081611d4e565b8251156126265782518084602001fd5b8160405162461bcd60e51b81526004016108df9190612764565b82805461264c90612a62565b90600052602060002090601f01602090048101928261266e57600085556126b4565b82601f1061268757805160ff19168380011785556126b4565b828001600101855582156126b4579182015b828111156126b4578251825591602001919060010190612699565b506126c09291506126c4565b5090565b5b808211156126c057600081556001016126c5565b6001600160e01b031981168114610cc057600080fd5b60006020828403121561270157600080fd5b8135610b2d816126d9565b60005b8381101561272757818101518382015260200161270f565b838111156117355750506000910152565b6000815180845261275081602086016020860161270c565b601f01601f19169290920160200192915050565b602081526000610b2d6020830184612738565b60006020828403121561278957600080fd5b5035919050565b80356001600160a01b03811681146127a757600080fd5b919050565b600080604083850312156127bf57600080fd5b6127c883612790565b946020939093013593505050565b6000806000606084860312156127eb57600080fd5b6127f484612790565b925061280260208501612790565b9150604084013590509250925092565b6000806040838503121561282557600080fd5b61282e83612790565b91506020830135801515811461284357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561287f5761287f61284e565b604051601f8501601f19908116603f011681019082821181831017156128a7576128a761284e565b816040528093508581528686860111156128c057600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156128ec57600080fd5b813567ffffffffffffffff81111561290357600080fd5b8201601f8101841361291457600080fd5b611b7a84823560208401612864565b60006020828403121561293557600080fd5b610b2d82612790565b6000806020838503121561295157600080fd5b823567ffffffffffffffff8082111561296957600080fd5b818501915085601f83011261297d57600080fd5b81358181111561298c57600080fd5b8660208260051b85010111156129a157600080fd5b60209290920196919550909350505050565b600080600080608085870312156129c957600080fd5b6129d285612790565b93506129e060208601612790565b925060408501359150606085013567ffffffffffffffff811115612a0357600080fd5b8501601f81018713612a1457600080fd5b612a2387823560208401612864565b91505092959194509250565b60008060408385031215612a4257600080fd5b612a4b83612790565b9150612a5960208401612790565b90509250929050565b600181811c90821680612a7657607f821691505b60208210811415612a9757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f536f7272793a20596f7520617265206e6f74206120546f6b656e2041646d696e604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612afb57612afb612ad2565b500190565b6000600019821415612b1457612b14612ad2565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008351612bc981846020880161270c565b835190830190612bdd81836020880161270c565b01949350505050565b6000816000190483118215151615612c0057612c00612ad2565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612c2a57612c2a612c05565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082821015612c9357612c93612ad2565b500390565b600082612ca757612ca7612c05565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cdf90830184612738565b9695505050505050565b600060208284031215612cfb57600080fd5b8151610b2d816126d9565b634e487b7160e01b600052603160045260246000fd5b60008251612d2e81846020870161270c565b919091019291505056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212206aca483f755f57ba6b0b5b84c4d7bd518d06108c8ce8fd1efeb0f56ddae2222764736f6c6343000809003368747470733a2f2f696e63726f7764616c7068612e6d7970696e6174612e636c6f75642f697066732f516d5650424667756465534257727972756f795854337435757572435a6d323544517442434a64693251683859382f

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636f9170f611610144578063a2bdde3d116100b6578063c87b56dd1161007a578063c87b56dd14610717578063e985e9c514610737578063eb8d244414610780578063f03255491461079a578063f2fde38b146107af578063fd25b2ba146107cf57600080fd5b8063a2bdde3d14610681578063aef6ee1f146106a1578063b6a379ec146106c1578063b88d4fde146106e1578063bde708f41461070157600080fd5b80638ad433ac116101085780638ad433ac146105e85780638da5cb5b146105fb57806395d89b41146106195780639c8169551461062e578063a0712d681461064e578063a22cb4651461066157600080fd5b80636f9170f61461053a57806370a08231146105735780637118974214610593578063715018a6146105b35780637d9a7a4c146105c857600080fd5b806330f72cd4116101dd57806342842e0e116101a157806342842e0e146104855780634f6ccce7146104a557806355f804b3146104c55780635d0044ca146104e55780636352211e146105055780636c0360eb1461052557600080fd5b806330f72cd41461040657806334918dfd146104255780633492d7a71461043a5780633789f8d1146104505780633ccfd60b1461047057600080fd5b80630d39fc811161022f5780630d39fc811461035b57806318160ddd146103715780631b7cfa09146103865780631fe9eabc146103a657806323b872dd146103c65780632f745c59146103e657600080fd5b806301ffc9a71461026c57806306fdde03146102bb578063081812fc146102dd578063093d8c6414610315578063095ea7b314610339575b600080fd5b34801561027857600080fd5b506102a66102873660046126ef565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b3480156102c757600080fd5b506102d06107e5565b6040516102b29190612764565b3480156102e957600080fd5b506102fd6102f8366004612777565b610877565b6040516001600160a01b0390911681526020016102b2565b34801561032157600080fd5b5061032b60105481565b6040519081526020016102b2565b34801561034557600080fd5b506103596103543660046127ac565b610904565b005b34801561036757600080fd5b5061032b600c5481565b34801561037d57600080fd5b5061032b610a1a565b34801561039257600080fd5b506103596103a1366004612777565b610a2b565b3480156103b257600080fd5b506103596103c1366004612777565b610aab565b3480156103d257600080fd5b506103596103e13660046127d6565b610ada565b3480156103f257600080fd5b5061032b6104013660046127ac565b610b0b565b34801561041257600080fd5b506011546102a690610100900460ff1681565b34801561043157600080fd5b50610359610b36565b34801561044657600080fd5b5061032b600f5481565b34801561045c57600080fd5b5061035961046b366004612812565b610b8e565b34801561047c57600080fd5b50610359610be3565b34801561049157600080fd5b506103596104a03660046127d6565b610c5c565b3480156104b157600080fd5b5061032b6104c0366004612777565b610c77565b3480156104d157600080fd5b506103596104e03660046128da565b610c8d565b3480156104f157600080fd5b50610359610500366004612777565b610cc3565b34801561051157600080fd5b506102fd610520366004612777565b610cf2565b34801561053157600080fd5b506102d0610d1a565b34801561054657600080fd5b506102a6610555366004612923565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561057f57600080fd5b5061032b61058e366004612923565b610d29565b34801561059f57600080fd5b506103596105ae366004612777565b610db5565b3480156105bf57600080fd5b50610359610de4565b3480156105d457600080fd5b506103596105e3366004612777565b610e58565b6103596105f6366004612777565b610e87565b34801561060757600080fd5b50600a546001600160a01b03166102fd565b34801561062557600080fd5b506102d0611196565b34801561063a57600080fd5b5061035961064936600461293e565b6111a5565b61035961065c366004612777565b61125b565b34801561066d57600080fd5b5061035961067c366004612812565b611523565b34801561068d57600080fd5b506102a661069c366004612923565b6115e8565b3480156106ad57600080fd5b506103596106bc36600461293e565b61161e565b3480156106cd57600080fd5b506103596106dc366004612777565b6116d4565b3480156106ed57600080fd5b506103596106fc3660046129b3565b611703565b34801561070d57600080fd5b5061032b600e5481565b34801561072357600080fd5b506102d0610732366004612777565b61173b565b34801561074357600080fd5b506102a6610752366004612a2f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078c57600080fd5b506011546102a69060ff1681565b3480156107a657600080fd5b506103596118ad565b3480156107bb57600080fd5b506103596107ca366004612923565b61190e565b3480156107db57600080fd5b5061032b600d5481565b6060600680546107f490612a62565b80601f016020809104026020016040519081016040528092919081815260200182805461082090612a62565b801561086d5780601f106108425761010080835404028352916020019161086d565b820191906000526020600020905b81548152906001019060200180831161085057829003601f168201915b5050505050905090565b6000610882826119f9565b6108e85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061090f82610cf2565b9050806001600160a01b0316836001600160a01b0316141561097d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108df565b336001600160a01b038216148061099957506109998133610752565b610a0b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108df565b610a158383611a06565b505050565b6000610a266002611a74565b905090565b3360009081526013602052604090205460ff1680610a535750600a546001600160a01b031633145b610a6f5760405162461bcd60e51b81526004016108df90612a9d565b6000610a79610a1a565b905060005b82811015610a1557610a9933610a948385612ae8565b611a7e565b80610aa381612b00565b915050610a7e565b600a546001600160a01b03163314610ad55760405162461bcd60e51b81526004016108df90612b1b565b601055565b610ae43382611a98565b610b005760405162461bcd60e51b81526004016108df90612b50565b610a15838383611b82565b6001600160a01b0382166000908152600160205260408120610b2d9083611d03565b90505b92915050565b3360009081526013602052604090205460ff1680610b5e5750600a546001600160a01b031633145b610b7a5760405162461bcd60e51b81526004016108df90612a9d565b6011805460ff19811660ff90911615179055565b600a546001600160a01b03163314610bb85760405162461bcd60e51b81526004016108df90612b1b565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b600a546001600160a01b03163314610c0d5760405162461bcd60e51b81526004016108df90612b1b565b47610c20600a546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610c58573d6000803e3d6000fd5b5050565b610a1583838360405180602001604052806000815250611703565b600080610c85600284611d0f565b509392505050565b600a546001600160a01b03163314610cb75760405162461bcd60e51b81526004016108df90612b1b565b610cc081611d2b565b50565b600a546001600160a01b03163314610ced5760405162461bcd60e51b81526004016108df90612b1b565b600f55565b6000610b3082604051806060016040528060298152602001612d6b6029913960029190611d3e565b6060600980546107f490612a62565b60006001600160a01b038216610d945760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108df565b6001600160a01b0382166000908152600160205260409020610b3090611a74565b600a546001600160a01b03163314610ddf5760405162461bcd60e51b81526004016108df90612b1b565b600e55565b600a546001600160a01b03163314610e0e5760405162461bcd60e51b81526004016108df90612b1b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610e825760405162461bcd60e51b81526004016108df90612b1b565b600c55565b323314610eca5760405162461bcd60e51b8152602060048201526011602482015270736f7272792068756d616e73206f6e6c7960781b60448201526064016108df565b6002600b541415610f1d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108df565b6002600b55601154610100900460ff16610f795760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65206d7573742062652061637469766520746f206d696e74000060448201526064016108df565b600f54610f8f82610f8933610d29565b90611d55565b1115610fdd5760405162461bcd60e51b815260206004820152601a60248201527f43616e206f6e6c79206d696e742033207065722077616c6c657400000000000060448201526064016108df565b3360009081526012602052604090205460ff1661103c5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e74206973206e6f74205768697465204c6973746564000000000060448201526064016108df565b600e5481111561108e5760405162461bcd60e51b815260206004820152601a60248201527f43616e206f6e6c79206d696e7420313220617420612074696d6500000000000060448201526064016108df565b60105461109d82610f89610a1a565b11156110eb5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016108df565b600d5434906110fa9083611db4565b11156111485760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016108df565b60005b8181101561118d57600061115d610a1a565b905060105461116a610a1a565b101561117a5761117a3382611a7e565b508061118581612b00565b91505061114b565b50506001600b55565b6060600780546107f490612a62565b3360009081526013602052604090205460ff16806111cd5750600a546001600160a01b031633145b6111e95760405162461bcd60e51b81526004016108df90612a9d565b60005b81811015610a155760006012600085858581811061120c5761120c612ba1565b90506020020160208101906112219190612923565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061125381612b00565b9150506111ec565b32331461129e5760405162461bcd60e51b8152602060048201526011602482015270736f7272792068756d616e73206f6e6c7960781b60448201526064016108df565b6002600b5414156112f15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108df565b6002600b5560115460ff16806113285750601154610100900460ff16801561132857503360009081526012602052604090205460ff165b6113745760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016108df565b600f5461138482610f8933610d29565b11156113d25760405162461bcd60e51b815260206004820152601a60248201527f43616e206f6e6c79206d696e742033207065722077616c6c657400000000000060448201526064016108df565b600e548111156114245760405162461bcd60e51b815260206004820152601960248201527f43616e206f6e6c79206d696e74203220617420612074696d650000000000000060448201526064016108df565b60105461143382610f89610a1a565b11156114815760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016108df565b600c5434906114909083611db4565b11156114de5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016108df565b60005b8181101561118d5760006114f3610a1a565b9050601054611500610a1a565b1015611510576115103382611a7e565b508061151b81612b00565b9150506114e1565b6001600160a01b03821633141561157c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108df565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b03811660009081526013602052604081205460ff1680610b30575050600a546001600160a01b03163314919050565b3360009081526013602052604090205460ff16806116465750600a546001600160a01b031633145b6116625760405162461bcd60e51b81526004016108df90612a9d565b60005b81811015610a155760016012600085858581811061168557611685612ba1565b905060200201602081019061169a9190612923565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806116cc81612b00565b915050611665565b600a546001600160a01b031633146116fe5760405162461bcd60e51b81526004016108df90612b1b565b600d55565b61170d3383611a98565b6117295760405162461bcd60e51b81526004016108df90612b50565b61173584848484611e33565b50505050565b6060611746826119f9565b6117aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108df565b600082815260086020526040812080546117c390612a62565b80601f01602080910402602001604051908101604052809291908181526020018280546117ef90612a62565b801561183c5780601f106118115761010080835404028352916020019161183c565b820191906000526020600020905b81548152906001019060200180831161181f57829003601f168201915b50505050509050600061184d610d1a565b9050805160001415611860575092915050565b81511561189257808260405160200161187a929190612bb7565b60405160208183030381529060405292505050919050565b8061189c85611e66565b60405160200161187a929190612bb7565b3360009081526013602052604090205460ff16806118d55750600a546001600160a01b031633145b6118f15760405162461bcd60e51b81526004016108df90612a9d565b6011805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146119385760405162461bcd60e51b81526004016108df90612b1b565b6001600160a01b03811661199d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108df565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b30600283611f64565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a3b82610cf2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610b30825490565b610c58828260405180602001604052806000815250611f7c565b6000611aa3826119f9565b611b045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108df565b6000611b0f83610cf2565b9050806001600160a01b0316846001600160a01b03161480611b4a5750836001600160a01b0316611b3f84610877565b6001600160a01b0316145b80611b7a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b9582610cf2565b6001600160a01b031614611bfd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108df565b6001600160a01b038216611c5f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108df565b611c6a600082611a06565b6001600160a01b0383166000908152600160205260409020611c8c9082611faf565b506001600160a01b0382166000908152600160205260409020611caf9082611fbb565b50611cbc60028284611fc7565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610b2d8383611fdd565b6000808080611d1e8686612063565b9097909650945050505050565b8051610c58906009906020840190612640565b6000611d4b848484612100565b90505b9392505050565b600080611d628385612ae8565b905083811015610b2d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108df565b600082611dc357506000610b30565b6000611dcf8385612be6565b905082611ddc8583612c1b565b14610b2d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108df565b611e3e848484611b82565b611e4a84848484612169565b6117355760405162461bcd60e51b81526004016108df90612c2f565b606081611e8a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eb45780611e9e81612b00565b9150611ead9050600a83612c1b565b9150611e8e565b60008167ffffffffffffffff811115611ecf57611ecf61284e565b6040519080825280601f01601f191660200182016040528015611ef9576020820181803683370190505b5090505b8415611b7a57611f0e600183612c81565b9150611f1b600a86612c98565b611f26906030612ae8565b60f81b818381518110611f3b57611f3b612ba1565b60200101906001600160f81b031916908160001a905350611f5d600a86612c1b565b9450611efd565b60008181526001830160205260408120541515610b2d565b611f86838361223a565b611f936000848484612169565b610a155760405162461bcd60e51b81526004016108df90612c2f565b6000610b2d8383612352565b6000610b2d8383612445565b6000611d4b84846001600160a01b038516612494565b8154600090821061203b5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108df565b82600001828154811061205057612050612ba1565b9060005260206000200154905092915050565b8154600090819083106120c35760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108df565b60008460000184815481106120da576120da612ba1565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816121305760405162461bcd60e51b81526004016108df9190612764565b508461213d600183612c81565b8154811061214d5761214d612ba1565b9060005260206000209060020201600101549150509392505050565b60006001600160a01b0384163b61218257506001611b7a565b6000612203630a85bd0160e11b338887876040516024016121a69493929190612cac565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612d39603291396001600160a01b0388169190612535565b905060008180602001905181019061221b9190612ce9565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b0382166122905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108df565b612299816119f9565b156122e65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108df565b6001600160a01b03821660009081526001602052604090206123089082611fbb565b5061231560028284611fc7565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600183016020526040812054801561243b576000612376600183612c81565b855490915060009061238a90600190612c81565b905060008660000182815481106123a3576123a3612ba1565b90600052602060002001549050808760000184815481106123c6576123c6612ba1565b6000918252602090912001556123dd836001612ae8565b600082815260018901602052604090205586548790806123ff576123ff612d06565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610b30565b6000915050610b30565b600081815260018301602052604081205461248c57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b30565b506000610b30565b6000828152600184016020526040812054806124f9575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611d4e565b8285612506600184612c81565b8154811061251657612516612ba1565b9060005260206000209060020201600101819055506000915050611d4e565b6060611d4b848460008585843b61258e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108df565b600080866001600160a01b031685876040516125aa9190612d1c565b60006040518083038185875af1925050503d80600081146125e7576040519150601f19603f3d011682016040523d82523d6000602084013e6125ec565b606091505b50915091506125fc828286612607565b979650505050505050565b60608315612616575081611d4e565b8251156126265782518084602001fd5b8160405162461bcd60e51b81526004016108df9190612764565b82805461264c90612a62565b90600052602060002090601f01602090048101928261266e57600085556126b4565b82601f1061268757805160ff19168380011785556126b4565b828001600101855582156126b4579182015b828111156126b4578251825591602001919060010190612699565b506126c09291506126c4565b5090565b5b808211156126c057600081556001016126c5565b6001600160e01b031981168114610cc057600080fd5b60006020828403121561270157600080fd5b8135610b2d816126d9565b60005b8381101561272757818101518382015260200161270f565b838111156117355750506000910152565b6000815180845261275081602086016020860161270c565b601f01601f19169290920160200192915050565b602081526000610b2d6020830184612738565b60006020828403121561278957600080fd5b5035919050565b80356001600160a01b03811681146127a757600080fd5b919050565b600080604083850312156127bf57600080fd5b6127c883612790565b946020939093013593505050565b6000806000606084860312156127eb57600080fd5b6127f484612790565b925061280260208501612790565b9150604084013590509250925092565b6000806040838503121561282557600080fd5b61282e83612790565b91506020830135801515811461284357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561287f5761287f61284e565b604051601f8501601f19908116603f011681019082821181831017156128a7576128a761284e565b816040528093508581528686860111156128c057600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156128ec57600080fd5b813567ffffffffffffffff81111561290357600080fd5b8201601f8101841361291457600080fd5b611b7a84823560208401612864565b60006020828403121561293557600080fd5b610b2d82612790565b6000806020838503121561295157600080fd5b823567ffffffffffffffff8082111561296957600080fd5b818501915085601f83011261297d57600080fd5b81358181111561298c57600080fd5b8660208260051b85010111156129a157600080fd5b60209290920196919550909350505050565b600080600080608085870312156129c957600080fd5b6129d285612790565b93506129e060208601612790565b925060408501359150606085013567ffffffffffffffff811115612a0357600080fd5b8501601f81018713612a1457600080fd5b612a2387823560208401612864565b91505092959194509250565b60008060408385031215612a4257600080fd5b612a4b83612790565b9150612a5960208401612790565b90509250929050565b600181811c90821680612a7657607f821691505b60208210811415612a9757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f536f7272793a20596f7520617265206e6f74206120546f6b656e2041646d696e604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612afb57612afb612ad2565b500190565b6000600019821415612b1457612b14612ad2565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008351612bc981846020880161270c565b835190830190612bdd81836020880161270c565b01949350505050565b6000816000190483118215151615612c0057612c00612ad2565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612c2a57612c2a612c05565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082821015612c9357612c93612ad2565b500390565b600082612ca757612ca7612c05565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cdf90830184612738565b9695505050505050565b600060208284031215612cfb57600080fd5b8151610b2d816126d9565b634e487b7160e01b600052603160045260246000fd5b60008251612d2e81846020870161270c565b919091019291505056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212206aca483f755f57ba6b0b5b84c4d7bd518d06108c8ce8fd1efeb0f56ddae2222764736f6c63430008090033

Deployed Bytecode Sourcemap

68539:4651:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9530:150;;;;;;;;;;-1:-1:-1;9530:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;;9639:33:0;9615:4;9639:33;;;;;;;;;;;;;;9530:150;;;;565:14:1;;558:22;540:41;;528:2;513:18;9530:150:0;;;;;;;;51336:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54122:221::-;;;;;;;;;;-1:-1:-1;54122:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;54122:221:0;1528:203:1;68796:23:0;;;;;;;;;;;;;;;;;;;1882:25:1;;;1870:2;1855:18;68796:23:0;1736:177:1;53652:404:0;;;;;;;;;;-1:-1:-1;53652:404:0;;;;;:::i;:::-;;:::i;:::-;;68634:35;;;;;;;;;;;;;;;;53130:211;;;;;;;;;;;;;:::i;70179:229::-;;;;;;;;;;-1:-1:-1;70179:229:0;;;;;:::i;:::-;;:::i;69494:81::-;;;;;;;;;;-1:-1:-1;69494:81:0;;;;;:::i;:::-;;:::i;55012:305::-;;;;;;;;;;-1:-1:-1;55012:305:0;;;;;:::i;:::-;;:::i;52892:162::-;;;;;;;;;;-1:-1:-1;52892:162:0;;;;;:::i;:::-;;:::i;68867:35::-;;;;;;;;;;-1:-1:-1;68867:35:0;;;;;;;;;;;70590:94;;;;;;;;;;;;;:::i;68759:28::-;;;;;;;;;;;;;;;;70049:122;;;;;;;;;;-1:-1:-1;70049:122:0;;;;;:::i;:::-;;:::i;69899:142::-;;;;;;;;;;;;;:::i;55388:151::-;;;;;;;;;;-1:-1:-1;55388:151:0;;;;;:::i;:::-;;:::i;53418:172::-;;;;;;;;;;-1:-1:-1;53418:172:0;;;;;:::i;:::-;;:::i;70416:99::-;;;;;;;;;;-1:-1:-1;70416:99:0;;;;;:::i;:::-;;:::i;69794:97::-;;;;;;;;;;-1:-1:-1;69794:97:0;;;;;:::i;:::-;;:::i;51092:177::-;;;;;;;;;;-1:-1:-1;51092:177:0;;;;;:::i;:::-;;:::i;52711:97::-;;;;;;;;;;;;;:::i;71231:116::-;;;;;;;;;;-1:-1:-1;71231:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;71316:23:0;71292:4;71316:23;;;:14;:23;;;;;;;;;71231:116;50809:221;;;;;;;;;;-1:-1:-1;50809:221:0;;;;;:::i;:::-;;:::i;69685:101::-;;;;;;;;;;-1:-1:-1;69685:101:0;;;;;:::i;:::-;;:::i;65944:148::-;;;;;;;;;;;;;:::i;69396:90::-;;;;;;;;;;-1:-1:-1;69396:90:0;;;;;:::i;:::-;;:::i;72323:864::-;;;;;;:::i;:::-;;:::i;65293:87::-;;;;;;;;;;-1:-1:-1;65366:6:0;;-1:-1:-1;;;;;65366:6:0;65293:87;;51505:104;;;;;;;;;;;;;:::i;71014:209::-;;;;;;;;;;-1:-1:-1;71014:209:0;;;;;:::i;:::-;;:::i;71504:811::-;;;;;;:::i;:::-;;:::i;54415:295::-;;;;;;;;;;-1:-1:-1;54415:295:0;;;;;:::i;:::-;;:::i;71355:141::-;;;;;;;;;;-1:-1:-1;71355:141:0;;;;;:::i;:::-;;:::i;70803:203::-;;;;;;;;;;-1:-1:-1;70803:203:0;;;;;:::i;:::-;;:::i;69583:94::-;;;;;;;;;;-1:-1:-1;69583:94:0;;;;;:::i;:::-;;:::i;55610:285::-;;;;;;;;;;-1:-1:-1;55610:285:0;;;;;:::i;:::-;;:::i;68722:30::-;;;;;;;;;;;;;;;;51680:792;;;;;;;;;;-1:-1:-1;51680:792:0;;;;;:::i;:::-;;:::i;54781:164::-;;;;;;;;;;-1:-1:-1;54781:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;54902:25:0;;;54878:4;54902:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54781:164;68828:32;;;;;;;;;;-1:-1:-1;68828:32:0;;;;;;;;70692:103;;;;;;;;;;;;;:::i;66247:244::-;;;;;;;;;;-1:-1:-1;66247:244:0;;;;;:::i;:::-;;:::i;68676:37::-;;;;;;;;;;;;;;;;51336:100;51390:13;51423:5;51416:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51336:100;:::o;54122:221::-;54198:7;54226:16;54234:7;54226;:16::i;:::-;54218:73;;;;-1:-1:-1;;;54218:73:0;;6600:2:1;54218:73:0;;;6582:21:1;6639:2;6619:18;;;6612:30;6678:34;6658:18;;;6651:62;-1:-1:-1;;;6729:18:1;;;6722:42;6781:19;;54218:73:0;;;;;;;;;-1:-1:-1;54311:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;54311:24:0;;54122:221::o;53652:404::-;53733:13;53749:23;53764:7;53749:14;:23::i;:::-;53733:39;;53797:5;-1:-1:-1;;;;;53791:11:0;:2;-1:-1:-1;;;;;53791:11:0;;;53783:57;;;;-1:-1:-1;;;53783:57:0;;7013:2:1;53783:57:0;;;6995:21:1;7052:2;7032:18;;;7025:30;7091:34;7071:18;;;7064:62;-1:-1:-1;;;7142:18:1;;;7135:31;7183:19;;53783:57:0;6811:397:1;53783:57:0;686:10;-1:-1:-1;;;;;53861:21:0;;;;:69;;-1:-1:-1;53886:44:0;53910:5;686:10;54781:164;:::i;53886:44::-;53853:161;;;;-1:-1:-1;;;53853:161:0;;7415:2:1;53853:161:0;;;7397:21:1;7454:2;7434:18;;;7427:30;7493:34;7473:18;;;7466:62;7564:26;7544:18;;;7537:54;7608:19;;53853:161:0;7213:420:1;53853:161:0;54027:21;54036:2;54040:7;54027:8;:21::i;:::-;53722:334;53652:404;;:::o;53130:211::-;53191:7;53312:21;:12;:19;:21::i;:::-;53305:28;;53130:211;:::o;70179:229::-;686:10;69277:27;;;;:13;:27;;;;;;;;;:54;;-1:-1:-1;65366:6:0;;-1:-1:-1;;;;;65366:6:0;686:10;69308:23;69277:54;69269:99;;;;-1:-1:-1;;;69269:99:0;;;;;;;:::i;:::-;70257:11:::1;70271:13;:11;:13::i;:::-;70257:27;;70295:6;70312:89;70328:6;70324:1;:10;70312:89;;;70356:33;70366:10;70378;70387:1:::0;70378:6;:10:::1;:::i;:::-;70356:9;:33::i;:::-;70336:3:::0;::::1;::::0;::::1;:::i;:::-;;;;70312:89;;69494:81:::0;65366:6;;-1:-1:-1;;;;;65366:6:0;686:10;65513:23;65505:68;;;;-1:-1:-1;;;65505:68:0;;;;;;;:::i;:::-;69553:8:::1;:14:::0;69494:81::o;55012:305::-;55173:41;686:10;55206:7;55173:18;:41::i;:::-;55165:103;;;;-1:-1:-1;;;55165:103:0;;;;;;;:::i;:::-;55281:28;55291:4;55297:2;55301:7;55281:9;:28::i;52892:162::-;-1:-1:-1;;;;;53016:20:0;;52989:7;53016:20;;;:13;:20;;;;;:30;;53040:5;53016:23;:30::i;:::-;53009:37;;52892:162;;;;;:::o;70590:94::-;686:10;69277:27;;;;:13;:27;;;;;;;;;:54;;-1:-1:-1;65366:6:0;;-1:-1:-1;;;;;65366:6:0;686:10;69308:23;69277:54;69269:99;;;;-1:-1:-1;;;69269:99:0;;;;;;;:::i;:::-;70664:12:::1;::::0;;-1:-1:-1;;70648:28:0;::::1;70664:12;::::0;;::::1;70663:13;70648:28;::::0;;70590:94::o;70049:122::-;65366:6;;-1:-1:-1;;;;;65366:6:0;686:10;65513:23;65505:68;;;;-1:-1:-1;;;65505:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;70131:22:0;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:32;;-1:-1:-1;;70131:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;70049:122::o;69899:142::-;65366:6;;-1:-1:-1;;;;;65366:6:0;686:10;65513:23;65505:68;;;;-1:-1:-1;;;65505:68:0;;;;;;;:::i;:::-;69967:21:::1;70007:7;65366:6:::0;;-1:-1:-1;;;;;65366:6:0;;65293:87;70007:7:::1;-1:-1:-1::0;;;;;69999:25:0::1;:34;70025:7;69999:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;69938:103;69899:142::o:0;55388:151::-;55492:39;55509:4;55515:2;55519:7;55492:39;;;;;;;;;;;;:16;:39::i;53418:172::-;53493:7;;53535:22;:12;53551:5;53535:15;:22::i;:::-;-1:-1:-1;53513:44:0;53418:172;-1:-1:-1;;;53418:172:0:o;70416:99::-;65366:6;;-1:-1:-1;;;;;65366:6:0;686:10;65513:23;65505:68;;;;-1:-1:-1;;;65505:68:0;;;;;;;:::i;:::-;70487:20:::1;70499:7;70487:11;:20::i;:::-;70416:99:::0;:::o;69794:97::-;65366:6;;-1:-1:-1;;;;;65366:6:0;686:10;65513:23;65505:68;;;;-1:-1:-1;;;65505:68:0;;;;;;;:::i;:::-;69862:12:::1;:21:::0;69794:97::o;51092:177::-;51164:7;51191:70;51208:7;51191:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;52711:97::-;52759:13;52792:8;52785:15;;;;;:::i;50809:221::-;50881:7;-1:-1:-1;;;;;50909:19:0;;50901:74;;;;-1:-1:-1;;;50901:74:0;;9385:2:1;50901:74:0;;;9367:21:1;9424:2;9404:18;;;9397:30;9463:34;9443:18;;;9436:62;-1:-1:-1;;;9514:18:1;;;9507:40;9564:19;;50901:74:0;9183:406:1;50901:74:0;-1:-1:-1;;;;;50993:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;69685:101::-;65366:6;;-1:-1:-1;;;;;65366:6:0;686:10;65513:23;65505:68;;;;-1:-1:-1;;;65505:68:0;;;;;;;:::i;:::-;69755:14:::1;:23:::0;69685:101::o;65944:148::-;65366:6;;-1:-1:-1;;;;;65366:6:0;686:10;65513:23;65505:68;;;;-1:-1:-1;;;65505:68:0;;;;;;;:::i;:::-;66035:6:::1;::::0;66014:40:::1;::::0;66051:1:::1;::::0;-1:-1:-1;;;;;66035:6:0::1;::::0;66014:40:::1;::::0;66051:1;;66014:40:::1;66065:6;:19:::0;;-1:-1:-1;;;;;;66065:19:0::1;::::0;;65944:148::o;69396:90::-;65366:6;;-1:-1:-1;;;;;65366:6:0;686:10;65513:23;65505:68;;;;-1:-1:-1;;;65505:68:0;;;;;;;:::i;:::-;69462:8:::1;:16:::0;69396:90::o;72323:864::-;68385:9;68398:10;68385:23;68377:53;;;;-1:-1:-1;;;68377:53:0;;9796:2:1;68377:53:0;;;9778:21:1;9835:2;9815:18;;;9808:30;-1:-1:-1;;;9854:18:1;;;9847:47;9911:18;;68377:53:0;9594:341:1;68377:53:0;67382:1:::1;67997:7;;:19;;67989:63;;;::::0;-1:-1:-1;;;67989:63:0;;10142:2:1;67989:63:0::1;::::0;::::1;10124:21:1::0;10181:2;10161:18;;;10154:30;10220:33;10200:18;;;10193:61;10271:18;;67989:63:0::1;9940:355:1::0;67989:63:0::1;67382:1;68130:7;:18:::0;72418:15:::2;::::0;::::2;::::0;::::2;;;72410:58;;;::::0;-1:-1:-1;;;72410:58:0;;10502:2:1;72410:58:0::2;::::0;::::2;10484:21:1::0;10541:2;10521:18;;;10514:30;10580:32;10560:18;;;10553:60;10630:18;;72410:58:0::2;10300:354:1::0;72410:58:0::2;72534:12;::::0;72487:43:::2;72515:14:::0;72487:23:::2;686:10:::0;50809:221;:::i;72487:23::-:2;:27:::0;::::2;:43::i;:::-;:59;;72479:98;;;::::0;-1:-1:-1;;;72479:98:0;;10861:2:1;72479:98:0::2;::::0;::::2;10843:21:1::0;10900:2;10880:18;;;10873:30;10939:28;10919:18;;;10912:56;10985:18;;72479:98:0::2;10659:350:1::0;72479:98:0::2;686:10:::0;72596:28:::2;::::0;;;:14:::2;:28;::::0;;;;;::::2;;72588:68;;;::::0;-1:-1:-1;;;72588:68:0;;11216:2:1;72588:68:0::2;::::0;::::2;11198:21:1::0;11255:2;11235:18;;;11228:30;11294:29;11274:18;;;11267:57;11341:18;;72588:68:0::2;11014:351:1::0;72588:68:0::2;72693:14;;72675;:32;;72667:71;;;::::0;-1:-1:-1;;;72667:71:0;;11572:2:1;72667:71:0::2;::::0;::::2;11554:21:1::0;11611:2;11591:18;;;11584:30;11650:28;11630:18;;;11623:56;11696:18;;72667:71:0::2;11370:350:1::0;72667:71:0::2;72794:8;;72757:33;72775:14;72757:13;:11;:13::i;:33::-;:45;;72749:90;;;::::0;-1:-1:-1;;;72749:90:0;;11927:2:1;72749:90:0::2;::::0;::::2;11909:21:1::0;;;11946:18;;;11939:30;12005:34;11985:18;;;11978:62;12057:18;;72749:90:0::2;11725:356:1::0;72749:90:0::2;72858:10;::::0;72892:9:::2;::::0;72858:30:::2;::::0;72873:14;72858::::2;:30::i;:::-;:43;;72850:87;;;::::0;-1:-1:-1;;;72850:87:0;;12288:2:1;72850:87:0::2;::::0;::::2;12270:21:1::0;12327:2;12307:18;;;12300:30;12366:33;12346:18;;;12339:61;12417:18;;72850:87:0::2;12086:355:1::0;72850:87:0::2;72968:6;72964:209;72984:14;72980:1;:18;72964:209;;;73020:14;73037:13;:11;:13::i;:::-;73020:30;;73085:8;;73069:13;:11;:13::i;:::-;:24;73065:97;;;73114:32;73124:10;73136:9;73114;:32::i;:::-;-1:-1:-1::0;73000:3:0;::::2;::::0;::::2;:::i;:::-;;;;72964:209;;;-1:-1:-1::0;;67338:1:0::1;68309:7;:22:::0;72323:864::o;51505:104::-;51561:13;51594:7;51587:14;;;;;:::i;71014:209::-;686:10;69277:27;;;;:13;:27;;;;;;;;;:54;;-1:-1:-1;65366:6:0;;-1:-1:-1;;;;;65366:6:0;686:10;69308:23;69277:54;69269:99;;;;-1:-1:-1;;;69269:99:0;;;;;;;:::i;:::-;71111:9:::1;71106:110;71126:20:::0;;::::1;71106:110;;;71199:5;71168:14;:28;71183:9;;71193:1;71183:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;71168:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;71168:28:0;:36;;-1:-1:-1;;71168:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;71148:3;::::1;::::0;::::1;:::i;:::-;;;;71106:110;;71504:811:::0;68385:9;68398:10;68385:23;68377:53;;;;-1:-1:-1;;;68377:53:0;;9796:2:1;68377:53:0;;;9778:21:1;9835:2;9815:18;;;9808:30;-1:-1:-1;;;9854:18:1;;;9847:47;9911:18;;68377:53:0;9594:341:1;68377:53:0;67382:1:::1;67997:7;;:19;;67989:63;;;::::0;-1:-1:-1;;;67989:63:0;;10142:2:1;67989:63:0::1;::::0;::::1;10124:21:1::0;10181:2;10161:18;;;10154:30;10220:33;10200:18;;;10193:61;10271:18;;67989:63:0::1;9940:355:1::0;67989:63:0::1;67382:1;68130:7;:18:::0;71596:12:::2;::::0;::::2;;::::0;:63:::2;;-1:-1:-1::0;71613:15:0::2;::::0;::::2;::::0;::::2;;;:45:::0;::::2;;;-1:-1:-1::0;71647:10:0::2;71632:26;::::0;;;:14:::2;:26;::::0;;;;;::::2;;71613:45;71588:103;;;::::0;-1:-1:-1;;;71588:103:0;;12780:2:1;71588:103:0::2;::::0;::::2;12762:21:1::0;12819:2;12799:18;;;12792:30;12858:29;12838:18;;;12831:57;12905:18;;71588:103:0::2;12578:351:1::0;71588:103:0::2;71757:12;::::0;71710:43:::2;71738:14:::0;71710:23:::2;686:10:::0;50809:221;:::i;71710:43::-:2;:59;;71702:98;;;::::0;-1:-1:-1;;;71702:98:0;;10861:2:1;71702:98:0::2;::::0;::::2;10843:21:1::0;10900:2;10880:18;;;10873:30;10939:28;10919:18;;;10912:56;10985:18;;71702:98:0::2;10659:350:1::0;71702:98:0::2;71837:14;;71819;:32;;71811:70;;;::::0;-1:-1:-1;;;71811:70:0;;13136:2:1;71811:70:0::2;::::0;::::2;13118:21:1::0;13175:2;13155:18;;;13148:30;13214:27;13194:18;;;13187:55;13259:18;;71811:70:0::2;12934:349:1::0;71811:70:0::2;71937:8;;71900:33;71918:14;71900:13;:11;:13::i;:33::-;:45;;71892:90;;;::::0;-1:-1:-1;;;71892:90:0;;11927:2:1;71892:90:0::2;::::0;::::2;11909:21:1::0;;;11946:18;;;11939:30;12005:34;11985:18;;;11978:62;12057:18;;71892:90:0::2;11725:356:1::0;71892:90:0::2;72001:8;::::0;72033:9:::2;::::0;72001:28:::2;::::0;72014:14;72001:12:::2;:28::i;:::-;:41;;71993:85;;;::::0;-1:-1:-1;;;71993:85:0;;12288:2:1;71993:85:0::2;::::0;::::2;12270:21:1::0;12327:2;12307:18;;;12300:30;12366:33;12346:18;;;12339:61;12417:18;;71993:85:0::2;12086:355:1::0;71993:85:0::2;72103:6;72099:209;72119:14;72115:1;:18;72099:209;;;72155:14;72172:13;:11;:13::i;:::-;72155:30;;72220:8;;72204:13;:11;:13::i;:::-;:24;72200:97;;;72249:32;72259:10;72271:9;72249;:32::i;:::-;-1:-1:-1::0;72135:3:0;::::2;::::0;::::2;:::i;:::-;;;;72099:209;;54415:295:::0;-1:-1:-1;;;;;54518:24:0;;686:10;54518:24;;54510:62;;;;-1:-1:-1;;;54510:62:0;;13490:2:1;54510:62:0;;;13472:21:1;13529:2;13509:18;;;13502:30;13568:27;13548:18;;;13541:55;13613:18;;54510:62:0;13288:349:1;54510:62:0;686:10;54585:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;54585:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;54585:53:0;;;;;;;;;;54654:48;;540:41:1;;;54585:42:0;;686:10;54654:48;;513:18:1;54654:48:0;;;;;;;54415:295;;:::o;71355:141::-;-1:-1:-1;;;;;71439:22:0;;71415:4;71439:22;;;:13;:22;;;;;;;;;:49;;-1:-1:-1;;65366:6:0;;-1:-1:-1;;;;;65366:6:0;686:10;71465:23;;;-1:-1:-1;71355:141:0:o;70803:203::-;686:10;69277:27;;;;:13;:27;;;;;;;;;:54;;-1:-1:-1;65366:6:0;;-1:-1:-1;;;;;65366:6:0;686:10;69308:23;69277:54;69269:99;;;;-1:-1:-1;;;69269:99:0;;;;;;;:::i;:::-;70895:9:::1;70890:109;70910:20:::0;;::::1;70890:109;;;70983:4;70952:14;:28;70967:9;;70977:1;70967:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;70952:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;70952:28:0;:35;;-1:-1:-1;;70952:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;70932:3;::::1;::::0;::::1;:::i;:::-;;;;70890:109;;69583:94:::0;65366:6;;-1:-1:-1;;;;;65366:6:0;686:10;65513:23;65505:68;;;;-1:-1:-1;;;65505:68:0;;;;;;;:::i;:::-;69651:10:::1;:18:::0;69583:94::o;55610:285::-;55742:41;686:10;55775:7;55742:18;:41::i;:::-;55734:103;;;;-1:-1:-1;;;55734:103:0;;;;;;;:::i;:::-;55848:39;55862:4;55868:2;55872:7;55881:5;55848:13;:39::i;:::-;55610:285;;;;:::o;51680:792::-;51753:13;51787:16;51795:7;51787;:16::i;:::-;51779:76;;;;-1:-1:-1;;;51779:76:0;;13844:2:1;51779:76:0;;;13826:21:1;13883:2;13863:18;;;13856:30;13922:34;13902:18;;;13895:62;-1:-1:-1;;;13973:18:1;;;13966:45;14028:19;;51779:76:0;13642:411:1;51779:76:0;51868:23;51894:19;;;:10;:19;;;;;51868:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51924:18;51945:9;:7;:9::i;:::-;51924:30;;52036:4;52030:18;52052:1;52030:23;52026:72;;;-1:-1:-1;52077:9:0;51680:792;-1:-1:-1;;51680:792:0:o;52026:72::-;52202:23;;:27;52198:108;;52277:4;52283:9;52260:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52246:48;;;;51680:792;;;:::o;52198:108::-;52438:4;52444:18;:7;:16;:18::i;:::-;52421:42;;;;;;;;;:::i;70692:103::-;686:10;69277:27;;;;:13;:27;;;;;;;;;:54;;-1:-1:-1;65366:6:0;;-1:-1:-1;;;;;65366:6:0;686:10;69308:23;69277:54;69269:99;;;;-1:-1:-1;;;69269:99:0;;;;;;;:::i;:::-;70772:15:::1;::::0;;-1:-1:-1;;70753:34:0;::::1;70772:15;::::0;;;::::1;;;70771:16;70753:34:::0;;::::1;;::::0;;70692:103::o;66247:244::-;65366:6;;-1:-1:-1;;;;;65366:6:0;686:10;65513:23;65505:68;;;;-1:-1:-1;;;65505:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66336:22:0;::::1;66328:73;;;::::0;-1:-1:-1;;;66328:73:0;;14735:2:1;66328:73:0::1;::::0;::::1;14717:21:1::0;14774:2;14754:18;;;14747:30;14813:34;14793:18;;;14786:62;-1:-1:-1;;;14864:18:1;;;14857:36;14910:19;;66328:73:0::1;14533:402:1::0;66328:73:0::1;66438:6;::::0;66417:38:::1;::::0;-1:-1:-1;;;;;66417:38:0;;::::1;::::0;66438:6:::1;::::0;66417:38:::1;::::0;66438:6:::1;::::0;66417:38:::1;66466:6;:17:::0;;-1:-1:-1;;;;;;66466:17:0::1;-1:-1:-1::0;;;;;66466:17:0;;;::::1;::::0;;;::::1;::::0;;66247:244::o;57362:127::-;57427:4;57451:30;:12;57473:7;57451:21;:30::i;63380:192::-;63455:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63455:29:0;-1:-1:-1;;;;;63455:29:0;;;;;;;;:24;;63509:23;63455:24;63509:14;:23::i;:::-;-1:-1:-1;;;;;63500:46:0;;;;;;;;;;;63380:192;;:::o;43220:123::-;43289:7;43316:19;43324:3;39882:19;;39799:110;58354;58430:26;58440:2;58444:7;58430:26;;;;;;;;;;;;:9;:26::i;57656:355::-;57749:4;57774:16;57782:7;57774;:16::i;:::-;57766:73;;;;-1:-1:-1;;;57766:73:0;;15142:2:1;57766:73:0;;;15124:21:1;15181:2;15161:18;;;15154:30;15220:34;15200:18;;;15193:62;-1:-1:-1;;;15271:18:1;;;15264:42;15323:19;;57766:73:0;14940:408:1;57766:73:0;57850:13;57866:23;57881:7;57866:14;:23::i;:::-;57850:39;;57919:5;-1:-1:-1;;;;;57908:16:0;:7;-1:-1:-1;;;;;57908:16:0;;:51;;;;57952:7;-1:-1:-1;;;;;57928:31:0;:20;57940:7;57928:11;:20::i;:::-;-1:-1:-1;;;;;57928:31:0;;57908:51;:94;;;-1:-1:-1;;;;;;54902:25:0;;;54878:4;54902:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;57963:39;57900:103;57656:355;-1:-1:-1;;;;57656:355:0:o;60792:599::-;60917:4;-1:-1:-1;;;;;60890:31:0;:23;60905:7;60890:14;:23::i;:::-;-1:-1:-1;;;;;60890:31:0;;60882:85;;;;-1:-1:-1;;;60882:85:0;;15555:2:1;60882:85:0;;;15537:21:1;15594:2;15574:18;;;15567:30;15633:34;15613:18;;;15606:62;-1:-1:-1;;;15684:18:1;;;15677:39;15733:19;;60882:85:0;15353:405:1;60882:85:0;-1:-1:-1;;;;;61004:16:0;;60996:65;;;;-1:-1:-1;;;60996:65:0;;15965:2:1;60996:65:0;;;15947:21:1;16004:2;15984:18;;;15977:30;16043:34;16023:18;;;16016:62;-1:-1:-1;;;16094:18:1;;;16087:34;16138:19;;60996:65:0;15763:400:1;60996:65:0;61178:29;61195:1;61199:7;61178:8;:29::i;:::-;-1:-1:-1;;;;;61220:19:0;;;;;;:13;:19;;;;;:35;;61247:7;61220:26;:35::i;:::-;-1:-1:-1;;;;;;61266:17:0;;;;;;:13;:17;;;;;:30;;61288:7;61266:21;:30::i;:::-;-1:-1:-1;61309:29:0;:12;61326:7;61335:2;61309:16;:29::i;:::-;;61375:7;61371:2;-1:-1:-1;;;;;61356:27:0;61365:4;-1:-1:-1;;;;;61356:27:0;;;;;;;;;;;60792:599;;;:::o;35110:137::-;35181:7;35216:22;35220:3;35232:5;35216:3;:22::i;43682:236::-;43762:7;;;;43822:22;43826:3;43838:5;43822:3;:22::i;:::-;43791:53;;;;-1:-1:-1;43682:236:0;-1:-1:-1;;;;;43682:236:0:o;61992:100::-;62065:19;;;;:8;;:19;;;;;:::i;44968:213::-;45075:7;45126:44;45131:3;45151;45157:12;45126:4;:44::i;:::-;45118:53;-1:-1:-1;44968:213:0;;;;;;:::o;12999:179::-;13057:7;;13089:5;13093:1;13089;:5;:::i;:::-;13077:17;;13118:1;13113;:6;;13105:46;;;;-1:-1:-1;;;13105:46:0;;16370:2:1;13105:46:0;;;16352:21:1;16409:2;16389:18;;;16382:30;16448:29;16428:18;;;16421:57;16495:18;;13105:46:0;16168:351:1;13878:220:0;13936:7;13960:6;13956:20;;-1:-1:-1;13975:1:0;13968:8;;13956:20;13987:9;13999:5;14003:1;13999;:5;:::i;:::-;13987:17;-1:-1:-1;14032:1:0;14023:5;14027:1;13987:17;14023:5;:::i;:::-;:10;14015:56;;;;-1:-1:-1;;;14015:56:0;;17156:2:1;14015:56:0;;;17138:21:1;17195:2;17175:18;;;17168:30;17234:34;17214:18;;;17207:62;-1:-1:-1;;;17285:18:1;;;17278:31;17326:19;;14015:56:0;16954:397:1;56777:272:0;56891:28;56901:4;56907:2;56911:7;56891:9;:28::i;:::-;56938:48;56961:4;56967:2;56971:7;56980:5;56938:22;:48::i;:::-;56930:111;;;;-1:-1:-1;;;56930:111:0;;;;;;;:::i;45410:723::-;45466:13;45687:10;45683:53;;-1:-1:-1;;45714:10:0;;;;;;;;;;;;-1:-1:-1;;;45714:10:0;;;;;45410:723::o;45683:53::-;45761:5;45746:12;45802:78;45809:9;;45802:78;;45835:8;;;;:::i;:::-;;-1:-1:-1;45858:10:0;;-1:-1:-1;45866:2:0;45858:10;;:::i;:::-;;;45802:78;;;45890:19;45922:6;45912:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45912:17:0;;45890:39;;45940:154;45947:10;;45940:154;;45974:11;45984:1;45974:11;;:::i;:::-;;-1:-1:-1;46043:10:0;46051:2;46043:5;:10;:::i;:::-;46030:24;;:2;:24;:::i;:::-;46017:39;;46000:6;46007;46000:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;46000:56:0;;;;;;;;-1:-1:-1;46071:11:0;46080:2;46071:11;;:::i;:::-;;;45940:154;;42981:151;43065:4;39674:17;;;:12;;;:17;;;;;;:22;;43089:35;39579:125;58691:250;58787:18;58793:2;58797:7;58787:5;:18::i;:::-;58824:54;58855:1;58859:2;58863:7;58872:5;58824:22;:54::i;:::-;58816:117;;;;-1:-1:-1;;;58816:117:0;;;;;;;:::i;34197:137::-;34267:4;34291:35;34299:3;34319:5;34291:7;:35::i;33890:131::-;33957:4;33981:32;33986:3;34006:5;33981:4;:32::i;42404:185::-;42493:4;42517:64;42522:3;42542;-1:-1:-1;;;;;42556:23:0;;42517:4;:64::i;30148:204::-;30243:18;;30215:7;;30243:26;-1:-1:-1;30235:73:0;;;;-1:-1:-1;;;30235:73:0;;18224:2:1;30235:73:0;;;18206:21:1;18263:2;18243:18;;;18236:30;18302:34;18282:18;;;18275:62;-1:-1:-1;;;18353:18:1;;;18346:32;18395:19;;30235:73:0;18022:398:1;30235:73:0;30326:3;:11;;30338:5;30326:18;;;;;;;;:::i;:::-;;;;;;;;;30319:25;;30148:204;;;;:::o;40264:279::-;40368:19;;40331:7;;;;40368:27;-1:-1:-1;40360:74:0;;;;-1:-1:-1;;;40360:74:0;;18627:2:1;40360:74:0;;;18609:21:1;18666:2;18646:18;;;18639:30;18705:34;18685:18;;;18678:62;-1:-1:-1;;;18756:18:1;;;18749:32;18798:19;;40360:74:0;18425:398:1;40360:74:0;40447:22;40472:3;:12;;40485:5;40472:19;;;;;;;;:::i;:::-;;;;;;;;;;;40447:44;;40510:5;:10;;;40522:5;:12;;;40502:33;;;;;40264:279;;;;;:::o;41761:319::-;41855:7;41894:17;;;:12;;;:17;;;;;;41945:12;41930:13;41922:36;;;;-1:-1:-1;;;41922:36:0;;;;;;;;:::i;:::-;-1:-1:-1;42012:3:0;42025:12;42036:1;42025:8;:12;:::i;:::-;42012:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;42005:40;;;41761:319;;;;;:::o;62657:604::-;62778:4;-1:-1:-1;;;;;62805:13:0;;18714:20;62800:60;;-1:-1:-1;62844:4:0;62837:11;;62800:60;62870:23;62896:252;-1:-1:-1;;;686:10:0;63036:4;63055:7;63077:5;62912:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;62912:181:0;;;;;;;-1:-1:-1;;;;;62912:181:0;;;;;;;;;;;62896:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62896:15:0;;;:252;:15;:252::i;:::-;62870:278;;63159:13;63186:10;63175:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;63226:26:0;-1:-1:-1;;;63226:26:0;;-1:-1:-1;;;62657:604:0;;;;;;:::o;59277:404::-;-1:-1:-1;;;;;59357:16:0;;59349:61;;;;-1:-1:-1;;;59349:61:0;;19778:2:1;59349:61:0;;;19760:21:1;;;19797:18;;;19790:30;19856:34;19836:18;;;19829:62;19908:18;;59349:61:0;19576:356:1;59349:61:0;59430:16;59438:7;59430;:16::i;:::-;59429:17;59421:58;;;;-1:-1:-1;;;59421:58:0;;20139:2:1;59421:58:0;;;20121:21:1;20178:2;20158:18;;;20151:30;20217;20197:18;;;20190:58;20265:18;;59421:58:0;19937:352:1;59421:58:0;-1:-1:-1;;;;;59550:17:0;;;;;;:13;:17;;;;;:30;;59572:7;59550:21;:30::i;:::-;-1:-1:-1;59593:29:0;:12;59610:7;59619:2;59593:16;:29::i;:::-;-1:-1:-1;59640:33:0;;59665:7;;-1:-1:-1;;;;;59640:33:0;;;59657:1;;59640:33;;59657:1;;59640:33;59277:404;;:::o;27850:1544::-;27916:4;28055:19;;;:12;;;:19;;;;;;28091:15;;28087:1300;;28453:21;28477:14;28490:1;28477:10;:14;:::i;:::-;28526:18;;28453:38;;-1:-1:-1;28506:17:0;;28526:22;;28547:1;;28526:22;:::i;:::-;28506:42;;28793:17;28813:3;:11;;28825:9;28813:22;;;;;;;;:::i;:::-;;;;;;;;;28793:42;;28959:9;28930:3;:11;;28942:13;28930:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;29062:17;:13;29078:1;29062:17;:::i;:::-;29036:23;;;;:12;;;:23;;;;;:43;29188:17;;29036:3;;29188:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29283:3;:12;;:19;29296:5;29283:19;;;;;;;;;;;29276:26;;;29326:4;29319:11;;;;;;;;28087:1300;29370:5;29363:12;;;;;27260:414;27323:4;39674:17;;;:12;;;:17;;;;;;27340:327;;-1:-1:-1;27383:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;27566:18;;27544:19;;;:12;;;:19;;;;;;:40;;;;27599:11;;27340:327;-1:-1:-1;27650:5:0;27643:12;;37079:692;37155:4;37290:17;;;:12;;;:17;;;;;;37324:13;37320:444;;-1:-1:-1;;37409:38:0;;;;;;;;;;;;;;;;;;37391:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;37606:19;;37586:17;;;:12;;;:17;;;;;;;:39;37640:11;;37320:444;37720:5;37684:3;37697:12;37708:1;37697:8;:12;:::i;:::-;37684:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;:41;;;;37747:5;37740:12;;;;;21296:195;21399:12;21431:52;21453:6;21461:4;21467:1;21470:12;21399;18714:20;;22592:60;;;;-1:-1:-1;;;22592:60:0;;21035:2:1;22592:60:0;;;21017:21:1;21074:2;21054:18;;;21047:30;21113:31;21093:18;;;21086:59;21162:18;;22592:60:0;20833:353:1;22592:60:0;22726:12;22740:23;22767:6;-1:-1:-1;;;;;22767:11:0;22787:5;22795:4;22767:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22725:75;;;;22818:52;22836:7;22845:10;22857:12;22818:17;:52::i;:::-;22811:59;22348:530;-1:-1:-1;;;;;;;22348:530:0:o;24888:742::-;25003:12;25032:7;25028:595;;;-1:-1:-1;25063:10:0;25056:17;;25028:595;25177:17;;:21;25173:439;;25440:10;25434:17;25501:15;25488:10;25484:2;25480:19;25473:44;25173:439;25583:12;25576:20;;-1:-1:-1;;;25576:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:347::-;2753:6;2761;2814:2;2802:9;2793:7;2789:23;2785:32;2782:52;;;2830:1;2827;2820:12;2782:52;2853:29;2872:9;2853:29;:::i;:::-;2843:39;;2932:2;2921:9;2917:18;2904:32;2979:5;2972:13;2965:21;2958:5;2955:32;2945:60;;3001:1;2998;2991:12;2945:60;3024:5;3014:15;;;2688:347;;;;;:::o;3040:127::-;3101:10;3096:3;3092:20;3089:1;3082:31;3132:4;3129:1;3122:15;3156:4;3153:1;3146:15;3172:632;3237:5;3267:18;3308:2;3300:6;3297:14;3294:40;;;3314:18;;:::i;:::-;3389:2;3383:9;3357:2;3443:15;;-1:-1:-1;;3439:24:1;;;3465:2;3435:33;3431:42;3419:55;;;3489:18;;;3509:22;;;3486:46;3483:72;;;3535:18;;:::i;:::-;3575:10;3571:2;3564:22;3604:6;3595:15;;3634:6;3626;3619:22;3674:3;3665:6;3660:3;3656:16;3653:25;3650:45;;;3691:1;3688;3681:12;3650:45;3741:6;3736:3;3729:4;3721:6;3717:17;3704:44;3796:1;3789:4;3780:6;3772;3768:19;3764:30;3757:41;;;;3172:632;;;;;:::o;3809:451::-;3878:6;3931:2;3919:9;3910:7;3906:23;3902:32;3899:52;;;3947:1;3944;3937:12;3899:52;3987:9;3974:23;4020:18;4012:6;4009:30;4006:50;;;4052:1;4049;4042:12;4006:50;4075:22;;4128:4;4120:13;;4116:27;-1:-1:-1;4106:55:1;;4157:1;4154;4147:12;4106:55;4180:74;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4180:74;:::i;4265:186::-;4324:6;4377:2;4365:9;4356:7;4352:23;4348:32;4345:52;;;4393:1;4390;4383:12;4345:52;4416:29;4435:9;4416:29;:::i;4456:615::-;4542:6;4550;4603:2;4591:9;4582:7;4578:23;4574:32;4571:52;;;4619:1;4616;4609:12;4571:52;4659:9;4646:23;4688:18;4729:2;4721:6;4718:14;4715:34;;;4745:1;4742;4735:12;4715:34;4783:6;4772:9;4768:22;4758:32;;4828:7;4821:4;4817:2;4813:13;4809:27;4799:55;;4850:1;4847;4840:12;4799:55;4890:2;4877:16;4916:2;4908:6;4905:14;4902:34;;;4932:1;4929;4922:12;4902:34;4985:7;4980:2;4970:6;4967:1;4963:14;4959:2;4955:23;4951:32;4948:45;4945:65;;;5006:1;5003;4996:12;4945:65;5037:2;5029:11;;;;;5059:6;;-1:-1:-1;4456:615:1;;-1:-1:-1;;;;4456:615:1:o;5076:667::-;5171:6;5179;5187;5195;5248:3;5236:9;5227:7;5223:23;5219:33;5216:53;;;5265:1;5262;5255:12;5216:53;5288:29;5307:9;5288:29;:::i;:::-;5278:39;;5336:38;5370:2;5359:9;5355:18;5336:38;:::i;:::-;5326:48;;5421:2;5410:9;5406:18;5393:32;5383:42;;5476:2;5465:9;5461:18;5448:32;5503:18;5495:6;5492:30;5489:50;;;5535:1;5532;5525:12;5489:50;5558:22;;5611:4;5603:13;;5599:27;-1:-1:-1;5589:55:1;;5640:1;5637;5630:12;5589:55;5663:74;5729:7;5724:2;5711:16;5706:2;5702;5698:11;5663:74;:::i;:::-;5653:84;;;5076:667;;;;;;;:::o;5748:260::-;5816:6;5824;5877:2;5865:9;5856:7;5852:23;5848:32;5845:52;;;5893:1;5890;5883:12;5845:52;5916:29;5935:9;5916:29;:::i;:::-;5906:39;;5964:38;5998:2;5987:9;5983:18;5964:38;:::i;:::-;5954:48;;5748:260;;;;;:::o;6013:380::-;6092:1;6088:12;;;;6135;;;6156:61;;6210:4;6202:6;6198:17;6188:27;;6156:61;6263:2;6255:6;6252:14;6232:18;6229:38;6226:161;;;6309:10;6304:3;6300:20;6297:1;6290:31;6344:4;6341:1;6334:15;6372:4;6369:1;6362:15;6226:161;;6013:380;;;:::o;7638:356::-;7840:2;7822:21;;;7859:18;;;7852:30;7918:34;7913:2;7898:18;;7891:62;7985:2;7970:18;;7638:356::o;7999:127::-;8060:10;8055:3;8051:20;8048:1;8041:31;8091:4;8088:1;8081:15;8115:4;8112:1;8105:15;8131:128;8171:3;8202:1;8198:6;8195:1;8192:13;8189:39;;;8208:18;;:::i;:::-;-1:-1:-1;8244:9:1;;8131:128::o;8264:135::-;8303:3;-1:-1:-1;;8324:17:1;;8321:43;;;8344:18;;:::i;:::-;-1:-1:-1;8391:1:1;8380:13;;8264:135::o;8404:356::-;8606:2;8588:21;;;8625:18;;;8618:30;8684:34;8679:2;8664:18;;8657:62;8751:2;8736:18;;8404:356::o;8765:413::-;8967:2;8949:21;;;9006:2;8986:18;;;8979:30;9045:34;9040:2;9025:18;;9018:62;-1:-1:-1;;;9111:2:1;9096:18;;9089:47;9168:3;9153:19;;8765:413::o;12446:127::-;12507:10;12502:3;12498:20;12495:1;12488:31;12538:4;12535:1;12528:15;12562:4;12559:1;12552:15;14058:470;14237:3;14275:6;14269:13;14291:53;14337:6;14332:3;14325:4;14317:6;14313:17;14291:53;:::i;:::-;14407:13;;14366:16;;;;14429:57;14407:13;14366:16;14463:4;14451:17;;14429:57;:::i;:::-;14502:20;;14058:470;-1:-1:-1;;;;14058:470:1:o;16524:168::-;16564:7;16630:1;16626;16622:6;16618:14;16615:1;16612:21;16607:1;16600:9;16593:17;16589:45;16586:71;;;16637:18;;:::i;:::-;-1:-1:-1;16677:9:1;;16524:168::o;16697:127::-;16758:10;16753:3;16749:20;16746:1;16739:31;16789:4;16786:1;16779:15;16813:4;16810:1;16803:15;16829:120;16869:1;16895;16885:35;;16900:18;;:::i;:::-;-1:-1:-1;16934:9:1;;16829:120::o;17356:414::-;17558:2;17540:21;;;17597:2;17577:18;;;17570:30;17636:34;17631:2;17616:18;;17609:62;-1:-1:-1;;;17702:2:1;17687:18;;17680:48;17760:3;17745:19;;17356:414::o;17775:125::-;17815:4;17843:1;17840;17837:8;17834:34;;;17848:18;;:::i;:::-;-1:-1:-1;17885:9:1;;17775:125::o;17905:112::-;17937:1;17963;17953:35;;17968:18;;:::i;:::-;-1:-1:-1;18002:9:1;;17905:112::o;18828:489::-;-1:-1:-1;;;;;19097:15:1;;;19079:34;;19149:15;;19144:2;19129:18;;19122:43;19196:2;19181:18;;19174:34;;;19244:3;19239:2;19224:18;;19217:31;;;19022:4;;19265:46;;19291:19;;19283:6;19265:46;:::i;:::-;19257:54;18828:489;-1:-1:-1;;;;;;18828:489:1:o;19322:249::-;19391:6;19444:2;19432:9;19423:7;19419:23;19415:32;19412:52;;;19460:1;19457;19450:12;19412:52;19492:9;19486:16;19511:30;19535:5;19511:30;:::i;20294:127::-;20355:10;20350:3;20346:20;20343:1;20336:31;20386:4;20383:1;20376:15;20410:4;20407:1;20400:15;21191:274;21320:3;21358:6;21352:13;21374:53;21420:6;21415:3;21408:4;21400:6;21396:17;21374:53;:::i;:::-;21443:16;;;;;21191:274;-1:-1:-1;;21191:274:1:o

Swarm Source

ipfs://6aca483f755f57ba6b0b5b84c4d7bd518d06108c8ce8fd1efeb0f56ddae22227
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.