ETH Price: $2,759.10 (-0.45%)
Gas: 1.34 Gwei

Token

Scarpanion (SCAR)
 

Overview

Max Total Supply

75 SCAR

Holders

21

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jfellz.eth
Balance
5 SCAR
0xb5696e4057b9ba76616cecb5a537eaca7b3cdf54
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:
Scarpanion

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-15
*/

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
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;
    }

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

// File: contracts/Scarpanion.sol



pragma solidity ^0.8.9;







contract Scarpanion is ERC721Enumerable, ReentrancyGuard, Ownable {
  using Counters for Counters.Counter;

  string public hiddenMetadataUri;

  constructor () ERC721("Scarpanion", "SCAR") {
    setHiddenMetadataUri("ipfs://QmUiJBz6rza8dvC419xDHzC18gJKRBP4QTsnEaiguHxVFY/hidden.json");        
  }

  uint256 public constant MAX_SUPPLY = 1150;
  uint256 public constant SCAR_RESERVE = 145;
  uint256 public constant MAX_MULTIMINT = 5;
  uint256 public constant PRICE = 0.1 ether;

  bool public isMintEnabled;
  bool public isDevMintEnabled;

  bool public isRevealed = false;

  /* Minting */

  function mint(uint256 count) public payable nonReentrant {
    uint256 PUBLIC_MINT = MAX_SUPPLY - SCAR_RESERVE;
    
    require(isMintEnabled, "Minting not active");
    require(totalSupply() + count - 1 < PUBLIC_MINT, "Exceeds max supply");
    require(count <= MAX_MULTIMINT, "Mint at most 5 at a time");
    require(
      msg.value >= PRICE * count, "Insufficient payment, 0.1 ETH per item"
    );

    for (uint256 i = 0; i < count; i++) {
      _safeMint(_msgSender(), totalSupply());
    }
  }

  /* Smart Contract Administation - Owner Only */


  function reserve(uint256 count) public onlyOwner {
    require(isDevMintEnabled, "Dev Minting not active");
    require(totalSupply() + count - 1 < MAX_SUPPLY, "Exceeds max supply");
 
    for (uint256 i = 0; i < count; i++) {
      _safeMint(_msgSender(), totalSupply());
    }
  }

  function toggleIsMintEnabled() external onlyOwner {
    isMintEnabled = !isMintEnabled;
  }

  function toggleIsDevMintEnabled() external onlyOwner {
    isDevMintEnabled = !isDevMintEnabled;
  }

  function reveal() external onlyOwner {
    isRevealed = true;
  }

  string private customBaseURI;

  mapping(uint256 => string) private tokenURIMap;

  function setTokenURI(uint256 tokenId, string memory tokenURI_) external onlyOwner
  {
    tokenURIMap[tokenId] = tokenURI_;
  }

  function setHiddenMetadataUri(string memory hiddenMetadataUri_) public onlyOwner {
    hiddenMetadataUri = hiddenMetadataUri_;
  }

  function setBaseURI(string memory customBaseURI_) external onlyOwner {
    customBaseURI = customBaseURI_;
  }

  /* Metadata */

  function _baseURI() internal view virtual override returns (string memory) {
    return customBaseURI;
  }

  function tokenURI(uint256 tokenId) public view override returns (string memory)
  {

    if (isRevealed == false) {
      return hiddenMetadataUri;
    }

    string memory tokenURI_ = tokenURIMap[tokenId];

    if (bytes(tokenURI_).length > 0) {
      return tokenURI_;
    }

    return string(abi.encodePacked(super.tokenURI(tokenId), ".json"));
  }

  /* withdrawal */

  function withdraw() external onlyOwner {
    uint256 balance = address(this).balance;

    Address.sendValue(payable(owner()), balance);
  }
}

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_MULTIMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SCAR_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"isDevMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hiddenMetadataUri_","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"setTokenURI","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":[],"name":"toggleIsDevMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleIsMintEnabled","outputs":[],"stateMutability":"nonpayable","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"}]

6080604052600d805462ff0000191690553480156200001d57600080fd5b50604080518082018252600a81526929b1b0b93830b734b7b760b11b60208083019182528351808501909452600484526329a1a0a960e11b9084015281519192916200006c9160009162000189565b5080516200008290600190602084019062000189565b50506001600a55506200009533620000bf565b620000b9604051806080016040528060418152602001620030c86041913962000111565b6200026c565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b546001600160a01b03163314620001705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200018590600c90602084019062000189565b5050565b82805462000197906200022f565b90600052602060002090601f016020900481019282620001bb576000855562000206565b82601f10620001d657805160ff191683800117855562000206565b8280016001018555821562000206579182015b8281111562000206578251825591602001919060010190620001e9565b506200021492915062000218565b5090565b5b8082111562000214576000815560010162000219565b600181811c908216806200024457607f821691505b602082108114156200026657634e487b7160e01b600052602260045260246000fd5b50919050565b612e4c806200027c6000396000f3fe60806040526004361061024f5760003560e01c806370a0823111610138578063a45ba8e7116100b0578063c40732171161007f578063e985e9c511610064578063e985e9c514610628578063ebfe5e0414610671578063f2fde38b1461068657600080fd5b8063c4073217146105f3578063c87b56dd1461060857600080fd5b8063a45ba8e714610594578063a475b5dd146105a9578063b88d4fde146105be578063b8fc1051146105de57600080fd5b80638d859f3e1161010757806395d89b41116100ec57806395d89b411461054c578063a0712d6814610561578063a22cb4651461057457600080fd5b80638d859f3e146105125780638da5cb5b1461052e57600080fd5b806370a082311461049e578063715018a6146104be57806380c0abf4146104d3578063819b25ba146104f257600080fd5b806332cb6b0c116101cb5780634f6ccce71161019a57806354214f691161017f57806354214f691461043e57806355f804b31461045e5780636352211e1461047e57600080fd5b80634f6ccce7146103fe5780634fdd43cb1461041e57600080fd5b806332cb6b0c14610399578063346de50a146103af5780633ccfd60b146103c957806342842e0e146103de57600080fd5b8063162094c41161022257806323b872dd1161020757806323b872dd146103445780632a39b160146103645780632f745c591461037957600080fd5b8063162094c41461030557806318160ddd1461032557600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f3660046127ca565b6106a6565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e610702565b604051610280919061285d565b3480156102b757600080fd5b506102cb6102c6366004612870565b610794565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe3660046128a5565b61083f565b005b34801561031157600080fd5b506103036103203660046129b2565b610971565b34801561033157600080fd5b506008545b604051908152602001610280565b34801561035057600080fd5b5061030361035f3660046129f9565b6109ea565b34801561037057600080fd5b50610303610a71565b34801561038557600080fd5b506103366103943660046128a5565b610b05565b3480156103a557600080fd5b5061033661047e81565b3480156103bb57600080fd5b50600d546102749060ff1681565b3480156103d557600080fd5b50610303610bad565b3480156103ea57600080fd5b506103036103f93660046129f9565b610c26565b34801561040a57600080fd5b50610336610419366004612870565b610c41565b34801561042a57600080fd5b50610303610439366004612a35565b610ce5565b34801561044a57600080fd5b50600d546102749062010000900460ff1681565b34801561046a57600080fd5b50610303610479366004612a35565b610d56565b34801561048a57600080fd5b506102cb610499366004612870565b610dc3565b3480156104aa57600080fd5b506103366104b9366004612a6a565b610e4e565b3480156104ca57600080fd5b50610303610ee8565b3480156104df57600080fd5b50600d5461027490610100900460ff1681565b3480156104fe57600080fd5b5061030361050d366004612870565b610f4e565b34801561051e57600080fd5b5061033667016345785d8a000081565b34801561053a57600080fd5b50600b546001600160a01b03166102cb565b34801561055857600080fd5b5061029e611099565b61030361056f366004612870565b6110a8565b34801561058057600080fd5b5061030361058f366004612a85565b6112da565b3480156105a057600080fd5b5061029e6112e5565b3480156105b557600080fd5b50610303611373565b3480156105ca57600080fd5b506103036105d9366004612ac1565b6113fc565b3480156105ea57600080fd5b50610336600581565b3480156105ff57600080fd5b5061030361148a565b34801561061457600080fd5b5061029e610623366004612870565b611516565b34801561063457600080fd5b50610274610643366004612b3d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067d57600080fd5b50610336609181565b34801561069257600080fd5b506103036106a1366004612a6a565b611694565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806106fc57506106fc82611773565b92915050565b60606000805461071190612b70565b80601f016020809104026020016040519081016040528092919081815260200182805461073d90612b70565b801561078a5780601f1061075f5761010080835404028352916020019161078a565b820191906000526020600020905b81548152906001019060200180831161076d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108235760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061084a82610dc3565b9050806001600160a01b0316836001600160a01b031614156108d45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161081a565b336001600160a01b03821614806108f057506108f08133610643565b6109625760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081a565b61096c8383611856565b505050565b600b546001600160a01b031633146109cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b6000828152600f60209081526040909120825161096c92840190612703565b6109f433826118dc565b610a665760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161081a565b61096c8383836119e4565b600b546001600160a01b03163314610acb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b6000610b1083610e4e565b8210610b845760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161081a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610c075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b47610c23610c1d600b546001600160a01b031690565b82611bd4565b50565b61096c838383604051806020016040528060008152506113fc565b6000610c4c60085490565b8210610cc05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161081a565b60088281548110610cd357610cd3612bc4565b90600052602060002001549050919050565b600b546001600160a01b03163314610d3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b8051610d5290600c906020840190612703565b5050565b600b546001600160a01b03163314610db05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b8051610d5290600e906020840190612703565b6000818152600260205260408120546001600160a01b0316806106fc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161081a565b60006001600160a01b038216610ecc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161081a565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610f425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b610f4c6000611ced565b565b600b546001600160a01b03163314610fa85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b600d54610100900460ff16610fff5760405162461bcd60e51b815260206004820152601660248201527f446576204d696e74696e67206e6f742061637469766500000000000000000000604482015260640161081a565b61047e60018261100e60085490565b6110189190612c22565b6110229190612c3a565b1061106f5760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c790000000000000000000000000000604482015260640161081a565b60005b81811015610d5257611087335b600854611d57565b8061109181612c51565b915050611072565b60606001805461071190612b70565b6002600a5414156110fb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161081a565b6002600a55600061110f609161047e612c3a565b600d5490915060ff166111645760405162461bcd60e51b815260206004820152601260248201527f4d696e74696e67206e6f74206163746976650000000000000000000000000000604482015260640161081a565b8060018361117160085490565b61117b9190612c22565b6111859190612c3a565b106111d25760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c790000000000000000000000000000604482015260640161081a565b60058211156112235760405162461bcd60e51b815260206004820152601860248201527f4d696e74206174206d6f7374203520617420612074696d650000000000000000604482015260640161081a565b6112358267016345785d8a0000612c8a565b3410156112aa5760405162461bcd60e51b815260206004820152602660248201527f496e73756666696369656e74207061796d656e742c20302e312045544820706560448201527f72206974656d0000000000000000000000000000000000000000000000000000606482015260840161081a565b60005b828110156112d0576112be3361107f565b806112c881612c51565b9150506112ad565b50506001600a5550565b610d52338383611d71565b600c80546112f290612b70565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90612b70565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b505050505081565b600b546001600160a01b031633146113cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000179055565b61140633836118dc565b6114785760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161081a565b61148484848484611e5e565b50505050565b600b546001600160a01b031633146114e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b600d5460609062010000900460ff166115bb57600c805461153690612b70565b80601f016020809104026020016040519081016040528092919081815260200182805461156290612b70565b80156115af5780601f10611584576101008083540402835291602001916115af565b820191906000526020600020905b81548152906001019060200180831161159257829003601f168201915b50505050509050919050565b6000828152600f6020526040812080546115d490612b70565b80601f016020809104026020016040519081016040528092919081815260200182805461160090612b70565b801561164d5780601f106116225761010080835404028352916020019161164d565b820191906000526020600020905b81548152906001019060200180831161163057829003601f168201915b505050505090506000815111156116645792915050565b61166d83611ee7565b60405160200161167d9190612cc7565b604051602081830303815290604052915050919050565b600b546001600160a01b031633146116ee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b6001600160a01b03811661176a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161081a565b610c2381611ced565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061180657507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106fc57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146106fc565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906118a382610dc3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161081a565b600061197183610dc3565b9050806001600160a01b0316846001600160a01b031614806119ac5750836001600160a01b03166119a184610794565b6001600160a01b0316145b806119dc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119f782610dc3565b6001600160a01b031614611a735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161081a565b6001600160a01b038216611aee5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161081a565b611af9838383611fc0565b611b04600082611856565b6001600160a01b0383166000908152600360205260408120805460019290611b2d908490612c3a565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b5b908490612c22565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b80471015611c245760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161081a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611c71576040519150601f19603f3d011682016040523d82523d6000602084013e611c76565b606091505b505090508061096c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161081a565b600b80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d52828260405180602001604052806000815250612078565b816001600160a01b0316836001600160a01b03161415611dd35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081a565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e698484846119e4565b611e7584848484612101565b6114845760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161081a565b6000818152600260205260409020546060906001600160a01b0316611f745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161081a565b6000611f7e6122cc565b90506000815111611f9e5760405180602001604052806000815250611fb9565b80611fa8846122db565b60405160200161167d929190612d08565b9392505050565b6001600160a01b03831661201b5761201681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61203e565b816001600160a01b0316836001600160a01b03161461203e5761203e838261240d565b6001600160a01b0382166120555761096c816124aa565b826001600160a01b0316826001600160a01b03161461096c5761096c8282612559565b612082838361259d565b61208f6000848484612101565b61096c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161081a565b60006001600160a01b0384163b156122c1576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061215e903390899088908890600401612d37565b602060405180830381600087803b15801561217857600080fd5b505af19250505080156121c6575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526121c391810190612d73565b60015b612276573d8080156121f4576040519150601f19603f3d011682016040523d82523d6000602084013e6121f9565b606091505b50805161226e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161081a565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506119dc565b506001949350505050565b6060600e805461071190612b70565b60608161231b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612345578061232f81612c51565b915061233e9050600a83612dbf565b915061231f565b60008167ffffffffffffffff811115612360576123606128cf565b6040519080825280601f01601f19166020018201604052801561238a576020820181803683370190505b5090505b84156119dc5761239f600183612c3a565b91506123ac600a86612dd3565b6123b7906030612c22565b60f81b8183815181106123cc576123cc612bc4565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612406600a86612dbf565b945061238e565b6000600161241a84610e4e565b6124249190612c3a565b600083815260076020526040902054909150808214612477576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124bc90600190612c3a565b600083815260096020526040812054600880549394509092849081106124e4576124e4612bc4565b90600052602060002001549050806008838154811061250557612505612bc4565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061253d5761253d612de7565b6001900381819060005260206000200160009055905550505050565b600061256483610e4e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166125f35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081a565b6000818152600260205260409020546001600160a01b0316156126585760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081a565b61266460008383611fc0565b6001600160a01b038216600090815260036020526040812080546001929061268d908490612c22565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461270f90612b70565b90600052602060002090601f0160209004810192826127315760008555612777565b82601f1061274a57805160ff1916838001178555612777565b82800160010185558215612777579182015b8281111561277757825182559160200191906001019061275c565b50612783929150612787565b5090565b5b808211156127835760008155600101612788565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610c2357600080fd5b6000602082840312156127dc57600080fd5b8135611fb98161279c565b60005b838110156128025781810151838201526020016127ea565b838111156114845750506000910152565b6000815180845261282b8160208601602086016127e7565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611fb96020830184612813565b60006020828403121561288257600080fd5b5035919050565b80356001600160a01b03811681146128a057600080fd5b919050565b600080604083850312156128b857600080fd5b6128c183612889565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612919576129196128cf565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561295f5761295f6128cf565b8160405280935085815286868601111561297857600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126129a357600080fd5b611fb9838335602085016128fe565b600080604083850312156129c557600080fd5b82359150602083013567ffffffffffffffff8111156129e357600080fd5b6129ef85828601612992565b9150509250929050565b600080600060608486031215612a0e57600080fd5b612a1784612889565b9250612a2560208501612889565b9150604084013590509250925092565b600060208284031215612a4757600080fd5b813567ffffffffffffffff811115612a5e57600080fd5b6119dc84828501612992565b600060208284031215612a7c57600080fd5b611fb982612889565b60008060408385031215612a9857600080fd5b612aa183612889565b915060208301358015158114612ab657600080fd5b809150509250929050565b60008060008060808587031215612ad757600080fd5b612ae085612889565b9350612aee60208601612889565b925060408501359150606085013567ffffffffffffffff811115612b1157600080fd5b8501601f81018713612b2257600080fd5b612b31878235602084016128fe565b91505092959194509250565b60008060408385031215612b5057600080fd5b612b5983612889565b9150612b6760208401612889565b90509250929050565b600181811c90821680612b8457607f821691505b60208210811415612bbe577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115612c3557612c35612bf3565b500190565b600082821015612c4c57612c4c612bf3565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c8357612c83612bf3565b5060010190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cc257612cc2612bf3565b500290565b60008251612cd98184602087016127e7565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000920191825250600501919050565b60008351612d1a8184602088016127e7565b835190830190612d2e8183602088016127e7565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612d696080830184612813565b9695505050505050565b600060208284031215612d8557600080fd5b8151611fb98161279c565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612dce57612dce612d90565b500490565b600082612de257612de2612d90565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122003fc941d19d23bcb9b957a8226d82b2de2b4cd829306a257a792136f173f9a8064736f6c63430008090033697066733a2f2f516d55694a427a36727a61386476433431397844487a433138674a4b524250345154736e456169677548785646592f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061024f5760003560e01c806370a0823111610138578063a45ba8e7116100b0578063c40732171161007f578063e985e9c511610064578063e985e9c514610628578063ebfe5e0414610671578063f2fde38b1461068657600080fd5b8063c4073217146105f3578063c87b56dd1461060857600080fd5b8063a45ba8e714610594578063a475b5dd146105a9578063b88d4fde146105be578063b8fc1051146105de57600080fd5b80638d859f3e1161010757806395d89b41116100ec57806395d89b411461054c578063a0712d6814610561578063a22cb4651461057457600080fd5b80638d859f3e146105125780638da5cb5b1461052e57600080fd5b806370a082311461049e578063715018a6146104be57806380c0abf4146104d3578063819b25ba146104f257600080fd5b806332cb6b0c116101cb5780634f6ccce71161019a57806354214f691161017f57806354214f691461043e57806355f804b31461045e5780636352211e1461047e57600080fd5b80634f6ccce7146103fe5780634fdd43cb1461041e57600080fd5b806332cb6b0c14610399578063346de50a146103af5780633ccfd60b146103c957806342842e0e146103de57600080fd5b8063162094c41161022257806323b872dd1161020757806323b872dd146103445780632a39b160146103645780632f745c591461037957600080fd5b8063162094c41461030557806318160ddd1461032557600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f3660046127ca565b6106a6565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e610702565b604051610280919061285d565b3480156102b757600080fd5b506102cb6102c6366004612870565b610794565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe3660046128a5565b61083f565b005b34801561031157600080fd5b506103036103203660046129b2565b610971565b34801561033157600080fd5b506008545b604051908152602001610280565b34801561035057600080fd5b5061030361035f3660046129f9565b6109ea565b34801561037057600080fd5b50610303610a71565b34801561038557600080fd5b506103366103943660046128a5565b610b05565b3480156103a557600080fd5b5061033661047e81565b3480156103bb57600080fd5b50600d546102749060ff1681565b3480156103d557600080fd5b50610303610bad565b3480156103ea57600080fd5b506103036103f93660046129f9565b610c26565b34801561040a57600080fd5b50610336610419366004612870565b610c41565b34801561042a57600080fd5b50610303610439366004612a35565b610ce5565b34801561044a57600080fd5b50600d546102749062010000900460ff1681565b34801561046a57600080fd5b50610303610479366004612a35565b610d56565b34801561048a57600080fd5b506102cb610499366004612870565b610dc3565b3480156104aa57600080fd5b506103366104b9366004612a6a565b610e4e565b3480156104ca57600080fd5b50610303610ee8565b3480156104df57600080fd5b50600d5461027490610100900460ff1681565b3480156104fe57600080fd5b5061030361050d366004612870565b610f4e565b34801561051e57600080fd5b5061033667016345785d8a000081565b34801561053a57600080fd5b50600b546001600160a01b03166102cb565b34801561055857600080fd5b5061029e611099565b61030361056f366004612870565b6110a8565b34801561058057600080fd5b5061030361058f366004612a85565b6112da565b3480156105a057600080fd5b5061029e6112e5565b3480156105b557600080fd5b50610303611373565b3480156105ca57600080fd5b506103036105d9366004612ac1565b6113fc565b3480156105ea57600080fd5b50610336600581565b3480156105ff57600080fd5b5061030361148a565b34801561061457600080fd5b5061029e610623366004612870565b611516565b34801561063457600080fd5b50610274610643366004612b3d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067d57600080fd5b50610336609181565b34801561069257600080fd5b506103036106a1366004612a6a565b611694565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806106fc57506106fc82611773565b92915050565b60606000805461071190612b70565b80601f016020809104026020016040519081016040528092919081815260200182805461073d90612b70565b801561078a5780601f1061075f5761010080835404028352916020019161078a565b820191906000526020600020905b81548152906001019060200180831161076d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108235760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061084a82610dc3565b9050806001600160a01b0316836001600160a01b031614156108d45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161081a565b336001600160a01b03821614806108f057506108f08133610643565b6109625760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081a565b61096c8383611856565b505050565b600b546001600160a01b031633146109cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b6000828152600f60209081526040909120825161096c92840190612703565b6109f433826118dc565b610a665760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161081a565b61096c8383836119e4565b600b546001600160a01b03163314610acb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b6000610b1083610e4e565b8210610b845760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161081a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610c075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b47610c23610c1d600b546001600160a01b031690565b82611bd4565b50565b61096c838383604051806020016040528060008152506113fc565b6000610c4c60085490565b8210610cc05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161081a565b60088281548110610cd357610cd3612bc4565b90600052602060002001549050919050565b600b546001600160a01b03163314610d3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b8051610d5290600c906020840190612703565b5050565b600b546001600160a01b03163314610db05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b8051610d5290600e906020840190612703565b6000818152600260205260408120546001600160a01b0316806106fc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161081a565b60006001600160a01b038216610ecc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161081a565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610f425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b610f4c6000611ced565b565b600b546001600160a01b03163314610fa85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b600d54610100900460ff16610fff5760405162461bcd60e51b815260206004820152601660248201527f446576204d696e74696e67206e6f742061637469766500000000000000000000604482015260640161081a565b61047e60018261100e60085490565b6110189190612c22565b6110229190612c3a565b1061106f5760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c790000000000000000000000000000604482015260640161081a565b60005b81811015610d5257611087335b600854611d57565b8061109181612c51565b915050611072565b60606001805461071190612b70565b6002600a5414156110fb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161081a565b6002600a55600061110f609161047e612c3a565b600d5490915060ff166111645760405162461bcd60e51b815260206004820152601260248201527f4d696e74696e67206e6f74206163746976650000000000000000000000000000604482015260640161081a565b8060018361117160085490565b61117b9190612c22565b6111859190612c3a565b106111d25760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c790000000000000000000000000000604482015260640161081a565b60058211156112235760405162461bcd60e51b815260206004820152601860248201527f4d696e74206174206d6f7374203520617420612074696d650000000000000000604482015260640161081a565b6112358267016345785d8a0000612c8a565b3410156112aa5760405162461bcd60e51b815260206004820152602660248201527f496e73756666696369656e74207061796d656e742c20302e312045544820706560448201527f72206974656d0000000000000000000000000000000000000000000000000000606482015260840161081a565b60005b828110156112d0576112be3361107f565b806112c881612c51565b9150506112ad565b50506001600a5550565b610d52338383611d71565b600c80546112f290612b70565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90612b70565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b505050505081565b600b546001600160a01b031633146113cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000179055565b61140633836118dc565b6114785760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161081a565b61148484848484611e5e565b50505050565b600b546001600160a01b031633146114e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b600d5460609062010000900460ff166115bb57600c805461153690612b70565b80601f016020809104026020016040519081016040528092919081815260200182805461156290612b70565b80156115af5780601f10611584576101008083540402835291602001916115af565b820191906000526020600020905b81548152906001019060200180831161159257829003601f168201915b50505050509050919050565b6000828152600f6020526040812080546115d490612b70565b80601f016020809104026020016040519081016040528092919081815260200182805461160090612b70565b801561164d5780601f106116225761010080835404028352916020019161164d565b820191906000526020600020905b81548152906001019060200180831161163057829003601f168201915b505050505090506000815111156116645792915050565b61166d83611ee7565b60405160200161167d9190612cc7565b604051602081830303815290604052915050919050565b600b546001600160a01b031633146116ee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081a565b6001600160a01b03811661176a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161081a565b610c2381611ced565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061180657507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106fc57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146106fc565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906118a382610dc3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161081a565b600061197183610dc3565b9050806001600160a01b0316846001600160a01b031614806119ac5750836001600160a01b03166119a184610794565b6001600160a01b0316145b806119dc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119f782610dc3565b6001600160a01b031614611a735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161081a565b6001600160a01b038216611aee5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161081a565b611af9838383611fc0565b611b04600082611856565b6001600160a01b0383166000908152600360205260408120805460019290611b2d908490612c3a565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b5b908490612c22565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b80471015611c245760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161081a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611c71576040519150601f19603f3d011682016040523d82523d6000602084013e611c76565b606091505b505090508061096c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161081a565b600b80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d52828260405180602001604052806000815250612078565b816001600160a01b0316836001600160a01b03161415611dd35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081a565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e698484846119e4565b611e7584848484612101565b6114845760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161081a565b6000818152600260205260409020546060906001600160a01b0316611f745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161081a565b6000611f7e6122cc565b90506000815111611f9e5760405180602001604052806000815250611fb9565b80611fa8846122db565b60405160200161167d929190612d08565b9392505050565b6001600160a01b03831661201b5761201681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61203e565b816001600160a01b0316836001600160a01b03161461203e5761203e838261240d565b6001600160a01b0382166120555761096c816124aa565b826001600160a01b0316826001600160a01b03161461096c5761096c8282612559565b612082838361259d565b61208f6000848484612101565b61096c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161081a565b60006001600160a01b0384163b156122c1576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061215e903390899088908890600401612d37565b602060405180830381600087803b15801561217857600080fd5b505af19250505080156121c6575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526121c391810190612d73565b60015b612276573d8080156121f4576040519150601f19603f3d011682016040523d82523d6000602084013e6121f9565b606091505b50805161226e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161081a565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506119dc565b506001949350505050565b6060600e805461071190612b70565b60608161231b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612345578061232f81612c51565b915061233e9050600a83612dbf565b915061231f565b60008167ffffffffffffffff811115612360576123606128cf565b6040519080825280601f01601f19166020018201604052801561238a576020820181803683370190505b5090505b84156119dc5761239f600183612c3a565b91506123ac600a86612dd3565b6123b7906030612c22565b60f81b8183815181106123cc576123cc612bc4565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612406600a86612dbf565b945061238e565b6000600161241a84610e4e565b6124249190612c3a565b600083815260076020526040902054909150808214612477576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124bc90600190612c3a565b600083815260096020526040812054600880549394509092849081106124e4576124e4612bc4565b90600052602060002001549050806008838154811061250557612505612bc4565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061253d5761253d612de7565b6001900381819060005260206000200160009055905550505050565b600061256483610e4e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166125f35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081a565b6000818152600260205260409020546001600160a01b0316156126585760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081a565b61266460008383611fc0565b6001600160a01b038216600090815260036020526040812080546001929061268d908490612c22565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461270f90612b70565b90600052602060002090601f0160209004810192826127315760008555612777565b82601f1061274a57805160ff1916838001178555612777565b82800160010185558215612777579182015b8281111561277757825182559160200191906001019061275c565b50612783929150612787565b5090565b5b808211156127835760008155600101612788565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610c2357600080fd5b6000602082840312156127dc57600080fd5b8135611fb98161279c565b60005b838110156128025781810151838201526020016127ea565b838111156114845750506000910152565b6000815180845261282b8160208601602086016127e7565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611fb96020830184612813565b60006020828403121561288257600080fd5b5035919050565b80356001600160a01b03811681146128a057600080fd5b919050565b600080604083850312156128b857600080fd5b6128c183612889565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612919576129196128cf565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561295f5761295f6128cf565b8160405280935085815286868601111561297857600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126129a357600080fd5b611fb9838335602085016128fe565b600080604083850312156129c557600080fd5b82359150602083013567ffffffffffffffff8111156129e357600080fd5b6129ef85828601612992565b9150509250929050565b600080600060608486031215612a0e57600080fd5b612a1784612889565b9250612a2560208501612889565b9150604084013590509250925092565b600060208284031215612a4757600080fd5b813567ffffffffffffffff811115612a5e57600080fd5b6119dc84828501612992565b600060208284031215612a7c57600080fd5b611fb982612889565b60008060408385031215612a9857600080fd5b612aa183612889565b915060208301358015158114612ab657600080fd5b809150509250929050565b60008060008060808587031215612ad757600080fd5b612ae085612889565b9350612aee60208601612889565b925060408501359150606085013567ffffffffffffffff811115612b1157600080fd5b8501601f81018713612b2257600080fd5b612b31878235602084016128fe565b91505092959194509250565b60008060408385031215612b5057600080fd5b612b5983612889565b9150612b6760208401612889565b90509250929050565b600181811c90821680612b8457607f821691505b60208210811415612bbe577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115612c3557612c35612bf3565b500190565b600082821015612c4c57612c4c612bf3565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c8357612c83612bf3565b5060010190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cc257612cc2612bf3565b500290565b60008251612cd98184602087016127e7565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000920191825250600501919050565b60008351612d1a8184602088016127e7565b835190830190612d2e8183602088016127e7565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612d696080830184612813565b9695505050505050565b600060208284031215612d8557600080fd5b8151611fb98161279c565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612dce57612dce612d90565b500490565b600082612de257612de2612d90565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122003fc941d19d23bcb9b957a8226d82b2de2b4cd829306a257a792136f173f9a8064736f6c63430008090033

Deployed Bytecode Sourcemap

48753:2924:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39766:224;;;;;;;;;;-1:-1:-1;39766:224:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;39766:224:0;;;;;;;;27260:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28819:221::-;;;;;;;;;;-1:-1:-1;28819:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1797:55:1;;;1779:74;;1767:2;1752:18;28819:221:0;1633:226:1;28342:411:0;;;;;;;;;;-1:-1:-1;28342:411:0;;;;;:::i;:::-;;:::i;:::-;;50610:130;;;;;;;;;;-1:-1:-1;50610:130:0;;;;;:::i;:::-;;:::i;40406:113::-;;;;;;;;;;-1:-1:-1;40494:10:0;:17;40406:113;;;3977:25:1;;;3965:2;3950:18;40406:113:0;3831:177:1;29569:339:0;;;;;;;;;;-1:-1:-1;29569:339:0;;;;;:::i;:::-;;:::i;50341:102::-;;;;;;;;;;;;;:::i;40074:256::-;;;;;;;;;;-1:-1:-1;40074:256:0;;;;;:::i;:::-;;:::i;49064:41::-;;;;;;;;;;;;49101:4;49064:41;;49251:25;;;;;;;;;;-1:-1:-1;49251:25:0;;;;;;;;51530:144;;;;;;;;;;;;;:::i;29979:185::-;;;;;;;;;;-1:-1:-1;29979:185:0;;;;;:::i;:::-;;:::i;40596:233::-;;;;;;;;;;-1:-1:-1;40596:233:0;;;;;:::i;:::-;;:::i;50746:132::-;;;;;;;;;;-1:-1:-1;50746:132:0;;;;;:::i;:::-;;:::i;49316:30::-;;;;;;;;;;-1:-1:-1;49316:30:0;;;;;;;;;;;50884:112;;;;;;;;;;-1:-1:-1;50884:112:0;;;;;:::i;:::-;;:::i;26954:239::-;;;;;;;;;;-1:-1:-1;26954:239:0;;;;;:::i;:::-;;:::i;26684:208::-;;;;;;;;;;-1:-1:-1;26684:208:0;;;;;:::i;:::-;;:::i;6230:103::-;;;;;;;;;;;;;:::i;49281:28::-;;;;;;;;;;-1:-1:-1;49281:28:0;;;;;;;;;;;49947:289;;;;;;;;;;-1:-1:-1;49947:289:0;;;;;:::i;:::-;;:::i;49203:41::-;;;;;;;;;;;;49235:9;49203:41;;5579:87;;;;;;;;;;-1:-1:-1;5652:6:0;;-1:-1:-1;;;;;5652:6:0;5579:87;;27429:104;;;;;;;;;;;;;:::i;49372:514::-;;;;;;:::i;:::-;;:::i;29112:155::-;;;;;;;;;;-1:-1:-1;29112:155:0;;;;;:::i;:::-;;:::i;48866:31::-;;;;;;;;;;;;;:::i;50449:67::-;;;;;;;;;;;;;:::i;30235:328::-;;;;;;;;;;-1:-1:-1;30235:328:0;;;;;:::i;:::-;;:::i;49157:41::-;;;;;;;;;;;;49197:1;49157:41;;50242:93;;;;;;;;;;;;;:::i;51136:366::-;;;;;;;;;;-1:-1:-1;51136:366:0;;;;;:::i;:::-;;:::i;29338:164::-;;;;;;;;;;-1:-1:-1;29338:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29459:25:0;;;29435:4;29459:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29338:164;49110:42;;;;;;;;;;;;49149:3;49110:42;;6488:201;;;;;;;;;;-1:-1:-1;6488:201:0;;;;;:::i;:::-;;:::i;39766:224::-;39868:4;39892:50;;;39907:35;39892:50;;:90;;;39946:36;39970:11;39946:23;:36::i;:::-;39885:97;39766:224;-1:-1:-1;;39766:224:0:o;27260:100::-;27314:13;27347:5;27340:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27260:100;:::o;28819:221::-;28895:7;32162:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32162:16:0;28915:73;;;;-1:-1:-1;;;28915:73:0;;6797:2:1;28915:73:0;;;6779:21:1;6836:2;6816:18;;;6809:30;6875:34;6855:18;;;6848:62;6946:14;6926:18;;;6919:42;6978:19;;28915:73:0;;;;;;;;;-1:-1:-1;29008:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29008:24:0;;28819:221::o;28342:411::-;28423:13;28439:23;28454:7;28439:14;:23::i;:::-;28423:39;;28487:5;-1:-1:-1;;;;;28481:11:0;:2;-1:-1:-1;;;;;28481:11:0;;;28473:57;;;;-1:-1:-1;;;28473:57:0;;7210:2:1;28473:57:0;;;7192:21:1;7249:2;7229:18;;;7222:30;7288:34;7268:18;;;7261:62;7359:3;7339:18;;;7332:31;7380:19;;28473:57:0;7008:397:1;28473:57:0;4383:10;-1:-1:-1;;;;;28565:21:0;;;;:62;;-1:-1:-1;28590:37:0;28607:5;4383:10;29338:164;:::i;28590:37::-;28543:168;;;;-1:-1:-1;;;28543:168:0;;7612:2:1;28543:168:0;;;7594:21:1;7651:2;7631:18;;;7624:30;7690:34;7670:18;;;7663:62;7761:26;7741:18;;;7734:54;7805:19;;28543:168:0;7410:420:1;28543:168:0;28724:21;28733:2;28737:7;28724:8;:21::i;:::-;28412:341;28342:411;;:::o;50610:130::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;8037:2:1;5791:68:0;;;8019:21:1;;;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;8167:18;;5791:68:0;7835:356:1;5791:68:0;50702:20:::1;::::0;;;:11:::1;:20;::::0;;;;;;;:32;;::::1;::::0;;::::1;::::0;::::1;:::i;29569:339::-:0;29764:41;4383:10;29797:7;29764:18;:41::i;:::-;29756:103;;;;-1:-1:-1;;;29756:103:0;;8398:2:1;29756:103:0;;;8380:21:1;8437:2;8417:18;;;8410:30;8476:34;8456:18;;;8449:62;8547:19;8527:18;;;8520:47;8584:19;;29756:103:0;8196:413:1;29756:103:0;29872:28;29882:4;29888:2;29892:7;29872:9;:28::i;50341:102::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;8037:2:1;5791:68:0;;;8019:21:1;;;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;8167:18;;5791:68:0;7835:356:1;5791:68:0;50421:16:::1;::::0;;50401:36;;::::1;50421:16;::::0;;;::::1;;;50420:17;50401:36:::0;;::::1;;::::0;;50341:102::o;40074:256::-;40171:7;40207:23;40224:5;40207:16;:23::i;:::-;40199:5;:31;40191:87;;;;-1:-1:-1;;;40191:87:0;;8816:2:1;40191:87:0;;;8798:21:1;8855:2;8835:18;;;8828:30;8894:34;8874:18;;;8867:62;8965:13;8945:18;;;8938:41;8996:19;;40191:87:0;8614:407:1;40191:87:0;-1:-1:-1;;;;;;40296:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40074:256::o;51530:144::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;8037:2:1;5791:68:0;;;8019:21:1;;;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;8167:18;;5791:68:0;7835:356:1;5791:68:0;51594:21:::1;51624:44;51650:7;5652:6:::0;;-1:-1:-1;;;;;5652:6:0;;5579:87;51650:7:::1;51660;51624:17;:44::i;:::-;51569:105;51530:144::o:0;29979:185::-;30117:39;30134:4;30140:2;30144:7;30117:39;;;;;;;;;;;;:16;:39::i;40596:233::-;40671:7;40707:30;40494:10;:17;;40406:113;40707:30;40699:5;:38;40691:95;;;;-1:-1:-1;;;40691:95:0;;9228:2:1;40691:95:0;;;9210:21:1;9267:2;9247:18;;;9240:30;9306:34;9286:18;;;9279:62;9377:14;9357:18;;;9350:42;9409:19;;40691:95:0;9026:408:1;40691:95:0;40804:10;40815:5;40804:17;;;;;;;;:::i;:::-;;;;;;;;;40797:24;;40596:233;;;:::o;50746:132::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;8037:2:1;5791:68:0;;;8019:21:1;;;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;8167:18;;5791:68:0;7835:356:1;5791:68:0;50834:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50746:132:::0;:::o;50884:112::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;8037:2:1;5791:68:0;;;8019:21:1;;;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;8167:18;;5791:68:0;7835:356:1;5791:68:0;50960:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;26954:239::-:0;27026:7;27062:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27062:16:0;27097:19;27089:73;;;;-1:-1:-1;;;27089:73:0;;9830:2:1;27089:73:0;;;9812:21:1;9869:2;9849:18;;;9842:30;9908:34;9888:18;;;9881:62;9979:11;9959:18;;;9952:39;10008:19;;27089:73:0;9628:405:1;26684:208:0;26756:7;-1:-1:-1;;;;;26784:19:0;;26776:74;;;;-1:-1:-1;;;26776:74:0;;10240:2:1;26776:74:0;;;10222:21:1;10279:2;10259:18;;;10252:30;10318:34;10298:18;;;10291:62;10389:12;10369:18;;;10362:40;10419:19;;26776:74:0;10038:406:1;26776:74:0;-1:-1:-1;;;;;;26868:16:0;;;;;:9;:16;;;;;;;26684:208::o;6230:103::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;8037:2:1;5791:68:0;;;8019:21:1;;;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;8167:18;;5791:68:0;7835:356:1;5791:68:0;6295:30:::1;6322:1;6295:18;:30::i;:::-;6230:103::o:0;49947:289::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;8037:2:1;5791:68:0;;;8019:21:1;;;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;8167:18;;5791:68:0;7835:356:1;5791:68:0;50011:16:::1;::::0;::::1;::::0;::::1;;;50003:51;;;::::0;-1:-1:-1;;;50003:51:0;;10651:2:1;50003:51:0::1;::::0;::::1;10633:21:1::0;10690:2;10670:18;;;10663:30;10729:24;10709:18;;;10702:52;10771:18;;50003:51:0::1;10449:346:1::0;50003:51:0::1;49101:4;50093:1;50085:5;50069:13;40494:10:::0;:17;;40406:113;50069:13:::1;:21;;;;:::i;:::-;:25;;;;:::i;:::-;:38;50061:69;;;::::0;-1:-1:-1;;;50061:69:0;;11454:2:1;50061:69:0::1;::::0;::::1;11436:21:1::0;11493:2;11473:18;;;11466:30;11532:20;11512:18;;;11505:48;11570:18;;50061:69:0::1;11252:342:1::0;50061:69:0::1;50145:9;50140:91;50164:5;50160:1;:9;50140:91;;;50185:38;4383:10:::0;50195:12:::1;40494:10:::0;:17;50185:9:::1;:38::i;:::-;50171:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50140:91;;27429:104:::0;27485:13;27518:7;27511:14;;;;;:::i;49372:514::-;47726:1;48324:7;;:19;;48316:63;;;;-1:-1:-1;;;48316:63:0;;12001:2:1;48316:63:0;;;11983:21:1;12040:2;12020:18;;;12013:30;12079:33;12059:18;;;12052:61;12130:18;;48316:63:0;11799:355:1;48316:63:0;47726:1;48457:7;:18;49436:19:::1;49458:25;49149:3;49101:4;49458:25;:::i;:::-;49504:13;::::0;49436:47;;-1:-1:-1;49504:13:0::1;;49496:44;;;::::0;-1:-1:-1;;;49496:44:0;;12361:2:1;49496:44:0::1;::::0;::::1;12343:21:1::0;12400:2;12380:18;;;12373:30;12439:20;12419:18;;;12412:48;12477:18;;49496:44:0::1;12159:342:1::0;49496:44:0::1;49583:11;49579:1;49571:5;49555:13;40494:10:::0;:17;;40406:113;49555:13:::1;:21;;;;:::i;:::-;:25;;;;:::i;:::-;:39;49547:70;;;::::0;-1:-1:-1;;;49547:70:0;;11454:2:1;49547:70:0::1;::::0;::::1;11436:21:1::0;11493:2;11473:18;;;11466:30;11532:20;11512:18;;;11505:48;11570:18;;49547:70:0::1;11252:342:1::0;49547:70:0::1;49197:1;49632:5;:22;;49624:59;;;::::0;-1:-1:-1;;;49624:59:0;;12708:2:1;49624:59:0::1;::::0;::::1;12690:21:1::0;12747:2;12727:18;;;12720:30;12786:26;12766:18;;;12759:54;12830:18;;49624:59:0::1;12506:348:1::0;49624:59:0::1;49719:13;49727:5:::0;49235:9:::1;49719:13;:::i;:::-;49706:9;:26;;49690:91;;;::::0;-1:-1:-1;;;49690:91:0;;13294:2:1;49690:91:0::1;::::0;::::1;13276:21:1::0;13333:2;13313:18;;;13306:30;13372:34;13352:18;;;13345:62;13443:8;13423:18;;;13416:36;13469:19;;49690:91:0::1;13092:402:1::0;49690:91:0::1;49795:9;49790:91;49814:5;49810:1;:9;49790:91;;;49835:38;4383:10:::0;49845:12:::1;4303:98:::0;49835:38:::1;49821:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49790:91;;;-1:-1:-1::0;;47682:1:0;48636:7;:22;-1:-1:-1;49372:514:0:o;29112:155::-;29207:52;4383:10;29240:8;29250;29207:18;:52::i;48866:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50449:67::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;8037:2:1;5791:68:0;;;8019:21:1;;;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;8167:18;;5791:68:0;7835:356:1;5791:68:0;50493:10:::1;:17:::0;;;::::1;::::0;::::1;::::0;;50449:67::o;30235:328::-;30410:41;4383:10;30443:7;30410:18;:41::i;:::-;30402:103;;;;-1:-1:-1;;;30402:103:0;;8398:2:1;30402:103:0;;;8380:21:1;8437:2;8417:18;;;8410:30;8476:34;8456:18;;;8449:62;8547:19;8527:18;;;8520:47;8584:19;;30402:103:0;8196:413:1;30402:103:0;30516:39;30530:4;30536:2;30540:7;30549:5;30516:13;:39::i;:::-;30235:328;;;;:::o;50242:93::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;8037:2:1;5791:68:0;;;8019:21:1;;;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;8167:18;;5791:68:0;7835:356:1;5791:68:0;50316:13:::1;::::0;;50299:30;;::::1;50316:13;::::0;;::::1;50315:14;50299:30;::::0;;50242:93::o;51136:366::-;51232:10;;51201:13;;51232:10;;;;;51228:66;;51269:17;51262:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51136:366;;;:::o;51228:66::-;51302:23;51328:20;;;:11;:20;;;;;51302:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51387:1;51367:9;51361:23;:27;51357:66;;;51406:9;51136:366;-1:-1:-1;;51136:366:0:o;51357:66::-;51462:23;51477:7;51462:14;:23::i;:::-;51445:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;51431:65;;;51136:366;;;:::o;6488:201::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;8037:2:1;5791:68:0;;;8019:21:1;;;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;8167:18;;5791:68:0;7835:356:1;5791:68:0;-1:-1:-1;;;;;6577:22:0;::::1;6569:73;;;::::0;-1:-1:-1;;;6569:73:0;;14149:2:1;6569:73:0::1;::::0;::::1;14131:21:1::0;14188:2;14168:18;;;14161:30;14227:34;14207:18;;;14200:62;14298:8;14278:18;;;14271:36;14324:19;;6569:73:0::1;13947:402:1::0;6569:73:0::1;6653:28;6672:8;6653:18;:28::i;26315:305::-:0;26417:4;26454:40;;;26469:25;26454:40;;:105;;-1:-1:-1;26511:48:0;;;26526:33;26511:48;26454:105;:158;;;-1:-1:-1;18135:25:0;18120:40;;;;26576:36;18011:157;36055:174;36130:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;36130:29:0;;;;;;;;:24;;36184:23;36130:24;36184:14;:23::i;:::-;-1:-1:-1;;;;;36175:46:0;;;;;;;;;;;36055:174;;:::o;32367:348::-;32460:4;32162:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32162:16:0;32477:73;;;;-1:-1:-1;;;32477:73:0;;14556:2:1;32477:73:0;;;14538:21:1;14595:2;14575:18;;;14568:30;14634:34;14614:18;;;14607:62;14705:14;14685:18;;;14678:42;14737:19;;32477:73:0;14354:408:1;32477:73:0;32561:13;32577:23;32592:7;32577:14;:23::i;:::-;32561:39;;32630:5;-1:-1:-1;;;;;32619:16:0;:7;-1:-1:-1;;;;;32619:16:0;;:51;;;;32663:7;-1:-1:-1;;;;;32639:31:0;:20;32651:7;32639:11;:20::i;:::-;-1:-1:-1;;;;;32639:31:0;;32619:51;:87;;;-1:-1:-1;;;;;;29459:25:0;;;29435:4;29459:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32674:32;32611:96;32367:348;-1:-1:-1;;;;32367:348:0:o;35359:578::-;35518:4;-1:-1:-1;;;;;35491:31:0;:23;35506:7;35491:14;:23::i;:::-;-1:-1:-1;;;;;35491:31:0;;35483:85;;;;-1:-1:-1;;;35483:85:0;;14969:2:1;35483:85:0;;;14951:21:1;15008:2;14988:18;;;14981:30;15047:34;15027:18;;;15020:62;15118:11;15098:18;;;15091:39;15147:19;;35483:85:0;14767:405:1;35483:85:0;-1:-1:-1;;;;;35587:16:0;;35579:65;;;;-1:-1:-1;;;35579:65:0;;15379:2:1;35579:65:0;;;15361:21:1;15418:2;15398:18;;;15391:30;15457:34;15437:18;;;15430:62;15528:6;15508:18;;;15501:34;15552:19;;35579:65:0;15177:400:1;35579:65:0;35657:39;35678:4;35684:2;35688:7;35657:20;:39::i;:::-;35761:29;35778:1;35782:7;35761:8;:29::i;:::-;-1:-1:-1;;;;;35803:15:0;;;;;;:9;:15;;;;;:20;;35822:1;;35803:15;:20;;35822:1;;35803:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35834:13:0;;;;;;:9;:13;;;;;:18;;35851:1;;35834:13;:18;;35851:1;;35834:18;:::i;:::-;;;;-1:-1:-1;;35863:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;35863:21:0;;;;;;;;;35902:27;;35863:16;;35902:27;;;;;;;35359:578;;;:::o;9189:317::-;9304:6;9279:21;:31;;9271:73;;;;-1:-1:-1;;;9271:73:0;;15784:2:1;9271:73:0;;;15766:21:1;15823:2;15803:18;;;15796:30;15862:31;15842:18;;;15835:59;15911:18;;9271:73:0;15582:353:1;9271:73:0;9358:12;9376:9;-1:-1:-1;;;;;9376:14:0;9398:6;9376:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9357:52;;;9428:7;9420:78;;;;-1:-1:-1;;;9420:78:0;;16352:2:1;9420:78:0;;;16334:21:1;16391:2;16371:18;;;16364:30;16430:34;16410:18;;;16403:62;16501:28;16481:18;;;16474:56;16547:19;;9420:78:0;16150:422:1;6849:191:0;6942:6;;;-1:-1:-1;;;;;6959:17:0;;;;;;;;;;;6992:40;;6942:6;;;6959:17;6942:6;;6992:40;;6923:16;;6992:40;6912:128;6849:191;:::o;33057:110::-;33133:26;33143:2;33147:7;33133:26;;;;;;;;;;;;:9;:26::i;36371:315::-;36526:8;-1:-1:-1;;;;;36517:17:0;:5;-1:-1:-1;;;;;36517:17:0;;;36509:55;;;;-1:-1:-1;;;36509:55:0;;16779:2:1;36509:55:0;;;16761:21:1;16818:2;16798:18;;;16791:30;16857:27;16837:18;;;16830:55;16902:18;;36509:55:0;16577:349:1;36509:55:0;-1:-1:-1;;;;;36575:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;36637:41;;586::1;;;36637::0;;559:18:1;36637:41:0;;;;;;;36371:315;;;:::o;31445:::-;31602:28;31612:4;31618:2;31622:7;31602:9;:28::i;:::-;31649:48;31672:4;31678:2;31682:7;31691:5;31649:22;:48::i;:::-;31641:111;;;;-1:-1:-1;;;31641:111:0;;17133:2:1;31641:111:0;;;17115:21:1;17172:2;17152:18;;;17145:30;17211:34;17191:18;;;17184:62;17282:20;17262:18;;;17255:48;17320:19;;31641:111:0;16931:414:1;27604:334:0;32138:4;32162:16;;;:7;:16;;;;;;27677:13;;-1:-1:-1;;;;;32162:16:0;27703:76;;;;-1:-1:-1;;;27703:76:0;;17552:2:1;27703:76:0;;;17534:21:1;17591:2;17571:18;;;17564:30;17630:34;17610:18;;;17603:62;17701:17;17681:18;;;17674:45;17736:19;;27703:76:0;17350:411:1;27703:76:0;27792:21;27816:10;:8;:10::i;:::-;27792:34;;27868:1;27850:7;27844:21;:25;:86;;;;;;;;;;;;;;;;;27896:7;27905:18;:7;:16;:18::i;:::-;27879:45;;;;;;;;;:::i;27844:86::-;27837:93;27604:334;-1:-1:-1;;;27604:334:0:o;41442:589::-;-1:-1:-1;;;;;41648:18:0;;41644:187;;41683:40;41715:7;42858:10;:17;;42831:24;;;;:15;:24;;;;;:44;;;42886:24;;;;;;;;;;;;42754:164;41683:40;41644:187;;;41753:2;-1:-1:-1;;;;;41745:10:0;:4;-1:-1:-1;;;;;41745:10:0;;41741:90;;41772:47;41805:4;41811:7;41772:32;:47::i;:::-;-1:-1:-1;;;;;41845:16:0;;41841:183;;41878:45;41915:7;41878:36;:45::i;41841:183::-;41951:4;-1:-1:-1;;;;;41945:10:0;:2;-1:-1:-1;;;;;41945:10:0;;41941:83;;41972:40;42000:2;42004:7;41972:27;:40::i;33394:321::-;33524:18;33530:2;33534:7;33524:5;:18::i;:::-;33575:54;33606:1;33610:2;33614:7;33623:5;33575:22;:54::i;:::-;33553:154;;;;-1:-1:-1;;;33553:154:0;;17133:2:1;33553:154:0;;;17115:21:1;17172:2;17152:18;;;17145:30;17211:34;17191:18;;;17184:62;17282:20;17262:18;;;17255:48;17320:19;;33553:154:0;16931:414:1;37251:799:0;37406:4;-1:-1:-1;;;;;37427:13:0;;8190:20;8238:8;37423:620;;37463:72;;;;;-1:-1:-1;;;;;37463:36:0;;;;;:72;;4383:10;;37514:4;;37520:7;;37529:5;;37463:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37463:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37459:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37705:13:0;;37701:272;;37748:60;;-1:-1:-1;;;37748:60:0;;17133:2:1;37748:60:0;;;17115:21:1;17172:2;17152:18;;;17145:30;17211:34;17191:18;;;17184:62;17282:20;17262:18;;;17255:48;17320:19;;37748:60:0;16931:414:1;37701:272:0;37923:6;37917:13;37908:6;37904:2;37900:15;37893:38;37459:529;37586:51;;37596:41;37586:51;;-1:-1:-1;37579:58:0;;37423:620;-1:-1:-1;38027:4:0;37251:799;;;;;;:::o;51022:108::-;51082:13;51111;51104:20;;;;;:::i;1865:723::-;1921:13;2142:10;2138:53;;-1:-1:-1;;2169:10:0;;;;;;;;;;;;;;;;;;1865:723::o;2138:53::-;2216:5;2201:12;2257:78;2264:9;;2257:78;;2290:8;;;;:::i;:::-;;-1:-1:-1;2313:10:0;;-1:-1:-1;2321:2:0;2313:10;;:::i;:::-;;;2257:78;;;2345:19;2377:6;2367:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2367:17:0;;2345:39;;2395:154;2402:10;;2395:154;;2429:11;2439:1;2429:11;;:::i;:::-;;-1:-1:-1;2498:10:0;2506:2;2498:5;:10;:::i;:::-;2485:24;;:2;:24;:::i;:::-;2472:39;;2455:6;2462;2455:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;2526:11:0;2535:2;2526:11;;:::i;:::-;;;2395:154;;43545:988;43811:22;43861:1;43836:22;43853:4;43836:16;:22::i;:::-;:26;;;;:::i;:::-;43873:18;43894:26;;;:17;:26;;;;;;43811:51;;-1:-1:-1;44027:28:0;;;44023:328;;-1:-1:-1;;;;;44094:18:0;;44072:19;44094:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44145:30;;;;;;:44;;;44262:30;;:17;:30;;;;;:43;;;44023:328;-1:-1:-1;44447:26:0;;;;:17;:26;;;;;;;;44440:33;;;-1:-1:-1;;;;;44491:18:0;;;;;:12;:18;;;;;:34;;;;;;;44484:41;43545:988::o;44828:1079::-;45106:10;:17;45081:22;;45106:21;;45126:1;;45106:21;:::i;:::-;45138:18;45159:24;;;:15;:24;;;;;;45532:10;:26;;45081:46;;-1:-1:-1;45159:24:0;;45081:46;;45532:26;;;;;;:::i;:::-;;;;;;;;;45510:48;;45596:11;45571:10;45582;45571:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45676:28;;;:15;:28;;;;;;;:41;;;45848:24;;;;;45841:31;45883:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44899:1008;;;44828:1079;:::o;42332:221::-;42417:14;42434:20;42451:2;42434:16;:20::i;:::-;-1:-1:-1;;;;;42465:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42510:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42332:221:0:o;34051:382::-;-1:-1:-1;;;;;34131:16:0;;34123:61;;;;-1:-1:-1;;;34123:61:0;;19834:2:1;34123:61:0;;;19816:21:1;;;19853:18;;;19846:30;19912:34;19892:18;;;19885:62;19964:18;;34123:61:0;19632:356:1;34123:61:0;32138:4;32162:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32162:16:0;:30;34195:58;;;;-1:-1:-1;;;34195:58:0;;20195:2:1;34195:58:0;;;20177:21:1;20234:2;20214:18;;;20207:30;20273;20253:18;;;20246:58;20321:18;;34195:58:0;19993:352:1;34195:58:0;34266:45;34295:1;34299:2;34303:7;34266:20;:45::i;:::-;-1:-1:-1;;;;;34324:13:0;;;;;;:9;:13;;;;;:18;;34341:1;;34324:13;:18;;34341:1;;34324:18;:::i;:::-;;;;-1:-1:-1;;34353:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;34353:21:0;;;;;;;;34392:33;;34353:16;;;34392:33;;34353:16;;34392:33;34051:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;1137:66;1116:88;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:1:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:1;;1448:180;-1:-1:-1;1448:180:1:o;1864:196::-;1932:20;;-1:-1:-1;;;;;1981:54:1;;1971:65;;1961:93;;2050:1;2047;2040:12;1961:93;1864:196;;;:::o;2065:254::-;2133:6;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2233:29;2252:9;2233:29;:::i;:::-;2223:39;2309:2;2294:18;;;;2281:32;;-1:-1:-1;;;2065:254:1:o;2324:184::-;2376:77;2373:1;2366:88;2473:4;2470:1;2463:15;2497:4;2494:1;2487:15;2513:691;2578:5;2608:18;2649:2;2641:6;2638:14;2635:40;;;2655:18;;:::i;:::-;2789:2;2783:9;2855:2;2843:15;;2694:66;2839:24;;;2865:2;2835:33;2831:42;2819:55;;;2889:18;;;2909:22;;;2886:46;2883:72;;;2935:18;;:::i;:::-;2975:10;2971:2;2964:22;3004:6;2995:15;;3034:6;3026;3019:22;3074:3;3065:6;3060:3;3056:16;3053:25;3050:45;;;3091:1;3088;3081:12;3050:45;3141:6;3136:3;3129:4;3121:6;3117:17;3104:44;3196:1;3189:4;3180:6;3172;3168:19;3164:30;3157:41;;;;2513:691;;;;;:::o;3209:222::-;3252:5;3305:3;3298:4;3290:6;3286:17;3282:27;3272:55;;3323:1;3320;3313:12;3272:55;3345:80;3421:3;3412:6;3399:20;3392:4;3384:6;3380:17;3345:80;:::i;3436:390::-;3514:6;3522;3575:2;3563:9;3554:7;3550:23;3546:32;3543:52;;;3591:1;3588;3581:12;3543:52;3627:9;3614:23;3604:33;;3688:2;3677:9;3673:18;3660:32;3715:18;3707:6;3704:30;3701:50;;;3747:1;3744;3737:12;3701:50;3770;3812:7;3803:6;3792:9;3788:22;3770:50;:::i;:::-;3760:60;;;3436:390;;;;;:::o;4013:328::-;4090:6;4098;4106;4159:2;4147:9;4138:7;4134:23;4130:32;4127:52;;;4175:1;4172;4165:12;4127:52;4198:29;4217:9;4198:29;:::i;:::-;4188:39;;4246:38;4280:2;4269:9;4265:18;4246:38;:::i;:::-;4236:48;;4331:2;4320:9;4316:18;4303:32;4293:42;;4013:328;;;;;:::o;4346:322::-;4415:6;4468:2;4456:9;4447:7;4443:23;4439:32;4436:52;;;4484:1;4481;4474:12;4436:52;4524:9;4511:23;4557:18;4549:6;4546:30;4543:50;;;4589:1;4586;4579:12;4543:50;4612;4654:7;4645:6;4634:9;4630:22;4612:50;:::i;4673:186::-;4732:6;4785:2;4773:9;4764:7;4760:23;4756:32;4753:52;;;4801:1;4798;4791:12;4753:52;4824:29;4843:9;4824:29;:::i;4864:347::-;4929:6;4937;4990:2;4978:9;4969:7;4965:23;4961:32;4958:52;;;5006:1;5003;4996:12;4958:52;5029:29;5048:9;5029:29;:::i;:::-;5019:39;;5108:2;5097:9;5093:18;5080:32;5155:5;5148:13;5141:21;5134:5;5131:32;5121:60;;5177:1;5174;5167:12;5121:60;5200:5;5190:15;;;4864:347;;;;;:::o;5216:667::-;5311:6;5319;5327;5335;5388:3;5376:9;5367:7;5363:23;5359:33;5356:53;;;5405:1;5402;5395:12;5356:53;5428:29;5447:9;5428:29;:::i;:::-;5418:39;;5476:38;5510:2;5499:9;5495:18;5476:38;:::i;:::-;5466:48;;5561:2;5550:9;5546:18;5533:32;5523:42;;5616:2;5605:9;5601:18;5588:32;5643:18;5635:6;5632:30;5629:50;;;5675:1;5672;5665:12;5629:50;5698:22;;5751:4;5743:13;;5739:27;-1:-1:-1;5729:55:1;;5780:1;5777;5770:12;5729:55;5803:74;5869:7;5864:2;5851:16;5846:2;5842;5838:11;5803:74;:::i;:::-;5793:84;;;5216:667;;;;;;;:::o;5888:260::-;5956:6;5964;6017:2;6005:9;5996:7;5992:23;5988:32;5985:52;;;6033:1;6030;6023:12;5985:52;6056:29;6075:9;6056:29;:::i;:::-;6046:39;;6104:38;6138:2;6127:9;6123:18;6104:38;:::i;:::-;6094:48;;5888:260;;;;;:::o;6153:437::-;6232:1;6228:12;;;;6275;;;6296:61;;6350:4;6342:6;6338:17;6328:27;;6296:61;6403:2;6395:6;6392:14;6372:18;6369:38;6366:218;;;6440:77;6437:1;6430:88;6541:4;6538:1;6531:15;6569:4;6566:1;6559:15;6366:218;;6153:437;;;:::o;9439:184::-;9491:77;9488:1;9481:88;9588:4;9585:1;9578:15;9612:4;9609:1;9602:15;10800:184;10852:77;10849:1;10842:88;10949:4;10946:1;10939:15;10973:4;10970:1;10963:15;10989:128;11029:3;11060:1;11056:6;11053:1;11050:13;11047:39;;;11066:18;;:::i;:::-;-1:-1:-1;11102:9:1;;10989:128::o;11122:125::-;11162:4;11190:1;11187;11184:8;11181:34;;;11195:18;;:::i;:::-;-1:-1:-1;11232:9:1;;11122:125::o;11599:195::-;11638:3;11669:66;11662:5;11659:77;11656:103;;;11739:18;;:::i;:::-;-1:-1:-1;11786:1:1;11775:13;;11599:195::o;12859:228::-;12899:7;13025:1;12957:66;12953:74;12950:1;12947:81;12942:1;12935:9;12928:17;12924:105;12921:131;;;13032:18;;:::i;:::-;-1:-1:-1;13072:9:1;;12859:228::o;13499:443::-;13731:3;13769:6;13763:13;13785:53;13831:6;13826:3;13819:4;13811:6;13807:17;13785:53;:::i;:::-;13899:7;13860:16;;13885:22;;;-1:-1:-1;13934:1:1;13923:13;;13499:443;-1:-1:-1;13499:443:1:o;17766:470::-;17945:3;17983:6;17977:13;17999:53;18045:6;18040:3;18033:4;18025:6;18021:17;17999:53;:::i;:::-;18115:13;;18074:16;;;;18137:57;18115:13;18074:16;18171:4;18159:17;;18137:57;:::i;:::-;18210:20;;17766:470;-1:-1:-1;;;;17766:470:1:o;18241:512::-;18435:4;-1:-1:-1;;;;;18545:2:1;18537:6;18533:15;18522:9;18515:34;18597:2;18589:6;18585:15;18580:2;18569:9;18565:18;18558:43;;18637:6;18632:2;18621:9;18617:18;18610:34;18680:3;18675:2;18664:9;18660:18;18653:31;18701:46;18742:3;18731:9;18727:19;18719:6;18701:46;:::i;:::-;18693:54;18241:512;-1:-1:-1;;;;;;18241:512:1:o;18758:249::-;18827:6;18880:2;18868:9;18859:7;18855:23;18851:32;18848:52;;;18896:1;18893;18886:12;18848:52;18928:9;18922:16;18947:30;18971:5;18947:30;:::i;19012:184::-;19064:77;19061:1;19054:88;19161:4;19158:1;19151:15;19185:4;19182:1;19175:15;19201:120;19241:1;19267;19257:35;;19272:18;;:::i;:::-;-1:-1:-1;19306:9:1;;19201:120::o;19326:112::-;19358:1;19384;19374:35;;19389:18;;:::i;:::-;-1:-1:-1;19423:9:1;;19326:112::o;19443:184::-;19495:77;19492:1;19485:88;19592:4;19589:1;19582:15;19616:4;19613:1;19606:15

Swarm Source

ipfs://03fc941d19d23bcb9b957a8226d82b2de2b4cd829306a257a792136f173f9a80
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.