ETH Price: $3,503.51 (+2.61%)
Gas: 5 Gwei

Token

Scimmiacci (SCIMMIA)
 

Overview

Max Total Supply

102 SCIMMIA

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mongoon.eth
Balance
1 SCIMMIA
0x5b5b71687e7cb013ae35ac9928dbd5393ea36c63
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:
Scimmiacci

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Scimmiacci is a art porject by artist Boucheron.
// All 300 Scimmiacci's are made with love and care.
// 300 Scimmiacci's free to be claimed by each of the 300 Pagliacci's.
// To mint go to, PagliacciMint, enter 0 for ether amount and your Pagliacci tokenId at (uint256).
// To multi mint go to PagliacciMultiMint, enter 0 for ether amount and your Pagliacci tokenId's in (uint256[]) seperated by commas. ex 1,2,11,36 etc.

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



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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



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



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() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/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



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



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/interfaces/IERC165.sol



pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/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



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



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



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



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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/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: contracts/Scimmiacci.sol

// Scimmiacci is a art porject by artist Boucheron.
// All 300 Scimmiacci's are made with love and care.
// 300 Scimmiacci's free to be claimed by each of the 300 Pagliacci's.
// To mint go to, PagliacciMint, enter 0 for ether amount and your Pagliacci tokenId at (uint256).
// To multi mint go to PagliacciMultiMint, enter 0 for ether amount and your Pagliacci tokenId's in (uint256[]) seperated by commas. ex 1,2,11,36 etc.

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface PagliacciInterface {
    function ownerOf(uint256 tokenId) external view returns (address owner);
    function balanceOf(address owner) external view returns (uint256 balance);
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);
}

contract Scimmiacci is ERC721Enumerable, Ownable, IERC2981 {
  using Strings for uint256;
  using SafeMath for uint256;
 
  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.00 ether;
  uint256 public maxScimmiacciSupply = 300;
  uint256 public maxMintAmount = 10;
  bool public paused = false;
  bool public revealed = true;
  
  uint16 internal royalty = 700; // base 10000, 7%
  uint16 public constant BASE = 10000;

  address public PagliacciAddress = 0x718BeCbd7676Adf05E6CA668Aef001c6735F8a11;
  PagliacciInterface PagliacciContract = PagliacciInterface(PagliacciAddress);
  uint public PagliacciOwnersSupplyMinted = 0;

  constructor( 
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721("Scimmiacci", "SCIMMIA") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  function PagliacciMint(uint PagliacciId) public payable {
    require(PagliacciId > 0 && PagliacciId <= 300, "Token ID invalid");
    require(PagliacciContract.ownerOf(PagliacciId) == msg.sender, "Not the owner of this Pagliacci");

    _safeMint(msg.sender, PagliacciId);
  }
  
  function PagliacciMultiMint(uint256[] memory pagliacciIds) public payable {
    for (uint256 i = 0; i < pagliacciIds.length; i++) {
    require(PagliacciContract.ownerOf(pagliacciIds[i]) == msg.sender, "Not the owner of this Pagliacci");
    
    _safeMint(_msgSender(), pagliacciIds[i]);
    }    
}

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }
  
  //onlyOwner
  
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function royaltyInfo(uint256, uint256 _salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        return (address(this), (_salePrice * royalty) / BASE);
    }

  function setRoyalty(uint16 _royalty) public virtual onlyOwner {
        require(_royalty >= 0 && _royalty <= 1000, 'Royalty must be between 0% and 10%.');

        royalty = _royalty;
    }

  function withdraw() public payable onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
  }
  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PagliacciAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"PagliacciId","type":"uint256"}],"name":"PagliacciMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"pagliacciIds","type":"uint256[]"}],"name":"PagliacciMultiMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PagliacciOwnersSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[{"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxScimmiacciSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620002aa565b506000600e81905561012c600f55600a6010556011805461010061ffff199091161763ffff000019166302bc000017600160201b600160c01b03191677718becbd7676adf05e6ca668aef001c6735f8a11000000001790819055601280546001600160a01b03640100000000909304929092166001600160a01b0319909216919091179055601355348015620000bd57600080fd5b5060405162002dfd38038062002dfd833981016040819052620000e091620003fb565b604080518082018252600a8152695363696d6d696163636960b01b6020808301918252835180850190945260078452665343494d4d494160c81b9084015281519192916200013191600091620002aa565b50805162000147906001906020840190620002aa565b505050620001646200015e6200018260201b60201c565b62000186565b6200016f82620001d8565b6200017a8162000240565b5050620004ea565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001e262000182565b6001600160a01b0316620001f56200029b565b6001600160a01b031614620002275760405162461bcd60e51b81526004016200021e9062000462565b60405180910390fd5b80516200023c90600b906020840190620002aa565b5050565b6200024a62000182565b6001600160a01b03166200025d6200029b565b6001600160a01b031614620002865760405162461bcd60e51b81526004016200021e9062000462565b80516200023c90600d906020840190620002aa565b600a546001600160a01b031690565b828054620002b89062000497565b90600052602060002090601f016020900481019282620002dc576000855562000327565b82601f10620002f757805160ff191683800117855562000327565b8280016001018555821562000327579182015b82811115620003275782518255916020019190600101906200030a565b506200033592915062000339565b5090565b5b808211156200033557600081556001016200033a565b600082601f83011262000361578081fd5b81516001600160401b03808211156200037e576200037e620004d4565b6040516020601f8401601f1916820181018381118382101715620003a657620003a6620004d4565b6040528382528584018101871015620003bd578485fd5b8492505b83831015620003e05785830181015182840182015291820191620003c1565b83831115620003f157848185840101525b5095945050505050565b600080604083850312156200040e578182fd5b82516001600160401b038082111562000425578384fd5b620004338683870162000350565b9350602085015191508082111562000449578283fd5b50620004588582860162000350565b9150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620004ac57607f821691505b60208210811415620004ce57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61290380620004fa6000396000f3fe60806040526004361061023b5760003560e01c806355f804b31161012e578063a475b5dd116100ab578063da3ef23f1161006f578063da3ef23f1461060b578063e985e9c51461062b578063ec342ad01461064b578063f2c4ce1e1461066d578063f2fde38b1461068d5761023b565b8063a475b5dd1461058e578063b88d4fde146105a3578063c6682862146105c3578063c87b56dd146105d8578063cf9010d8146105f85761023b565b8063715018a6116100f2578063715018a61461051a5780637b9910eb1461052f5780638da5cb5b1461054457806395d89b4114610559578063a22cb4651461056e5761023b565b806355f804b3146104905780635c975abb146104b05780636352211e146104c55780636c0360eb146104e557806370a08231146104fa5761023b565b806323b872dd116101bc5780633ccfd60b116101805780633ccfd60b1461041e57806342842e0e146104265780634f6ccce714610446578063518302271461046657806355c99bee1461047b5761023b565b806323b872dd1461037b5780632a55205a1461039b5780632f745c59146103c95780633622dd55146103e957806336e79a5a146103fe5761023b565b8063081c8c4411610203578063081c8c44146102fa578063095ea7b31461030f57806313faede61461032f57806318160ddd14610351578063239c70ae146103665761023b565b8063010d549e1461024057806301ffc9a71461025557806302329a291461028b57806306fdde03146102ab578063081812fc146102cd575b600080fd5b61025361024e366004611e69565b6106ad565b005b34801561026157600080fd5b50610275610270366004611f2a565b6107e1565b604051610282919061215b565b60405180910390f35b34801561029757600080fd5b506102536102a6366004611f10565b61080e565b3480156102b757600080fd5b506102c0610860565b6040516102829190612166565b3480156102d957600080fd5b506102ed6102e8366004611fca565b6108f2565b60405161028291906120f1565b34801561030657600080fd5b506102c0610935565b34801561031b57600080fd5b5061025361032a366004611e3e565b6109c3565b34801561033b57600080fd5b50610344610a5b565b6040516102829190612729565b34801561035d57600080fd5b50610344610a61565b34801561037257600080fd5b50610344610a67565b34801561038757600080fd5b50610253610396366004611d4d565b610a6d565b3480156103a757600080fd5b506103bb6103b6366004611fe2565b610aa5565b604051610282929190612142565b3480156103d557600080fd5b506103446103e4366004611e3e565b610adc565b3480156103f557600080fd5b50610344610b2e565b34801561040a57600080fd5b50610253610419366004611fa8565b610b34565b610253610bb9565b34801561043257600080fd5b50610253610441366004611d4d565b610c1e565b34801561045257600080fd5b50610344610461366004611fca565b610c39565b34801561047257600080fd5b50610275610c94565b34801561048757600080fd5b50610344610ca2565b34801561049c57600080fd5b506102536104ab366004611f62565b610ca8565b3480156104bc57600080fd5b50610275610cfa565b3480156104d157600080fd5b506102ed6104e0366004611fca565b610d03565b3480156104f157600080fd5b506102c0610d38565b34801561050657600080fd5b50610344610515366004611cdd565b610d45565b34801561052657600080fd5b50610253610d89565b34801561053b57600080fd5b506102ed610dd2565b34801561055057600080fd5b506102ed610de9565b34801561056557600080fd5b506102c0610df8565b34801561057a57600080fd5b50610253610589366004611e0a565b610e07565b34801561059a57600080fd5b50610253610ed5565b3480156105af57600080fd5b506102536105be366004611d8d565b610f25565b3480156105cf57600080fd5b506102c0610f64565b3480156105e457600080fd5b506102c06105f3366004611fca565b610f71565b610253610606366004611fca565b611098565b34801561061757600080fd5b50610253610626366004611f62565b611179565b34801561063757600080fd5b50610275610646366004611d15565b6111cb565b34801561065757600080fd5b506106606111f9565b604051610282919061271a565b34801561067957600080fd5b50610253610688366004611f62565b6111ff565b34801561069957600080fd5b506102536106a8366004611cdd565b611251565b60005b81518110156107dd57601254825133916001600160a01b031690636352211e908590859081106106f057634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b81526004016107149190612729565b60206040518083038186803b15801561072c57600080fd5b505afa158015610740573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107649190611cf9565b6001600160a01b0316146107935760405162461bcd60e51b815260040161078a906123fa565b60405180910390fd5b6107cb61079e6112bf565b8383815181106107be57634e487b7160e01b600052603260045260246000fd5b60200260200101516112c3565b806107d581612831565b9150506106b0565b5050565b60006001600160e01b0319821663780e9d6360e01b14806108065750610806826112dd565b90505b919050565b6108166112bf565b6001600160a01b0316610827610de9565b6001600160a01b03161461084d5760405162461bcd60e51b815260040161078a90612545565b6011805460ff1916911515919091179055565b60606000805461086f906127f6565b80601f016020809104026020016040519081016040528092919081815260200182805461089b906127f6565b80156108e85780601f106108bd576101008083540402835291602001916108e8565b820191906000526020600020905b8154815290600101906020018083116108cb57829003601f168201915b5050505050905090565b60006108fd8261131d565b6109195760405162461bcd60e51b815260040161078a906124f9565b506000908152600460205260409020546001600160a01b031690565b600d8054610942906127f6565b80601f016020809104026020016040519081016040528092919081815260200182805461096e906127f6565b80156109bb5780601f10610990576101008083540402835291602001916109bb565b820191906000526020600020905b81548152906001019060200180831161099e57829003601f168201915b505050505081565b60006109ce82610d03565b9050806001600160a01b0316836001600160a01b03161415610a025760405162461bcd60e51b815260040161078a9061263c565b806001600160a01b0316610a146112bf565b6001600160a01b03161480610a305750610a30816106466112bf565b610a4c5760405162461bcd60e51b815260040161078a9061239d565b610a56838361133a565b505050565b600e5481565b60085490565b60105481565b610a7e610a786112bf565b826113a8565b610a9a5760405162461bcd60e51b815260040161078a9061267d565b610a5683838361142d565b6011546000908190309061271090610ac79062010000900461ffff1686612794565b610ad19190612780565b915091509250929050565b6000610ae783610d45565b8210610b055760405162461bcd60e51b815260040161078a90612179565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60135481565b610b3c6112bf565b6001600160a01b0316610b4d610de9565b6001600160a01b031614610b735760405162461bcd60e51b815260040161078a90612545565b6103e88161ffff161115610b995760405162461bcd60e51b815260040161078a9061235a565b6011805461ffff909216620100000263ffff000019909216919091179055565b610bc16112bf565b6001600160a01b0316610bd2610de9565b6001600160a01b031614610bf85760405162461bcd60e51b815260040161078a90612545565b60405133904780156108fc02916000818181858888f19350505050610c1c57600080fd5b565b610a5683838360405180602001604052806000815250610f25565b6000610c43610a61565b8210610c615760405162461bcd60e51b815260040161078a906126ce565b60088281548110610c8257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601154610100900460ff1681565b600f5481565b610cb06112bf565b6001600160a01b0316610cc1610de9565b6001600160a01b031614610ce75760405162461bcd60e51b815260040161078a90612545565b80516107dd90600b906020840190611bdc565b60115460ff1681565b6000818152600260205260408120546001600160a01b0316806108065760405162461bcd60e51b815260040161078a9061247b565b600b8054610942906127f6565b60006001600160a01b038216610d6d5760405162461bcd60e51b815260040161078a90612431565b506001600160a01b031660009081526003602052604090205490565b610d916112bf565b6001600160a01b0316610da2610de9565b6001600160a01b031614610dc85760405162461bcd60e51b815260040161078a90612545565b610c1c600061155a565b60115464010000000090046001600160a01b031681565b600a546001600160a01b031690565b60606001805461086f906127f6565b610e0f6112bf565b6001600160a01b0316826001600160a01b03161415610e405760405162461bcd60e51b815260040161078a906122d7565b8060056000610e4d6112bf565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e916112bf565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ec9919061215b565b60405180910390a35050565b610edd6112bf565b6001600160a01b0316610eee610de9565b6001600160a01b031614610f145760405162461bcd60e51b815260040161078a90612545565b6011805461ff001916610100179055565b610f36610f306112bf565b836113a8565b610f525760405162461bcd60e51b815260040161078a9061267d565b610f5e848484846115ac565b50505050565b600c8054610942906127f6565b6060610f7c8261131d565b610f985760405162461bcd60e51b815260040161078a906125ed565b601154610100900460ff1661103957600d8054610fb4906127f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe0906127f6565b801561102d5780601f106110025761010080835404028352916020019161102d565b820191906000526020600020905b81548152906001019060200180831161101057829003601f168201915b50505050509050610809565b60006110436115df565b905060008151116110635760405180602001604052806000815250611091565b8061106d846115ee565b600c6040516020016110819392919061202f565b6040516020818303038152906040525b9392505050565b6000811180156110aa575061012c8111155b6110c65760405162461bcd60e51b815260040161078a9061257a565b6012546040516331a9108f60e11b815233916001600160a01b031690636352211e906110f6908590600401612729565b60206040518083038186803b15801561110e57600080fd5b505afa158015611122573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111469190611cf9565b6001600160a01b03161461116c5760405162461bcd60e51b815260040161078a906123fa565b61117633826112c3565b50565b6111816112bf565b6001600160a01b0316611192610de9565b6001600160a01b0316146111b85760405162461bcd60e51b815260040161078a90612545565b80516107dd90600c906020840190611bdc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61271081565b6112076112bf565b6001600160a01b0316611218610de9565b6001600160a01b03161461123e5760405162461bcd60e51b815260040161078a90612545565b80516107dd90600d906020840190611bdc565b6112596112bf565b6001600160a01b031661126a610de9565b6001600160a01b0316146112905760405162461bcd60e51b815260040161078a90612545565b6001600160a01b0381166112b65760405162461bcd60e51b815260040161078a90612216565b6111768161155a565b3390565b6107dd828260405180602001604052806000815250611709565b60006001600160e01b031982166380ac58cd60e01b148061130e57506001600160e01b03198216635b5e139f60e01b145b8061080657506108068261173c565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136f82610d03565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113b38261131d565b6113cf5760405162461bcd60e51b815260040161078a9061230e565b60006113da83610d03565b9050806001600160a01b0316846001600160a01b031614806114155750836001600160a01b031661140a846108f2565b6001600160a01b0316145b80611425575061142581856111cb565b949350505050565b826001600160a01b031661144082610d03565b6001600160a01b0316146114665760405162461bcd60e51b815260040161078a906125a4565b6001600160a01b03821661148c5760405162461bcd60e51b815260040161078a90612293565b611497838383611755565b6114a260008261133a565b6001600160a01b03831660009081526003602052604081208054600192906114cb9084906127b3565b90915550506001600160a01b03821660009081526003602052604081208054600192906114f9908490612768565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115b784848461142d565b6115c3848484846117de565b610f5e5760405162461bcd60e51b815260040161078a906121c4565b6060600b805461086f906127f6565b60608161161357506040805180820190915260018152600360fc1b6020820152610809565b8160005b811561163d578061162781612831565b91506116369050600a83612780565b9150611617565b60008167ffffffffffffffff81111561166657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611690576020820181803683370190505b5090505b8415611425576116a56001836127b3565b91506116b2600a8661284c565b6116bd906030612768565b60f81b8183815181106116e057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611702600a86612780565b9450611694565b61171383836118f9565b61172060008484846117de565b610a565760405162461bcd60e51b815260040161078a906121c4565b6001600160e01b031981166301ffc9a760e01b14919050565b611760838383610a56565b6001600160a01b03831661177c57611777816119d8565b61179f565b816001600160a01b0316836001600160a01b03161461179f5761179f8382611a1c565b6001600160a01b0382166117bb576117b681611ab9565b610a56565b826001600160a01b0316826001600160a01b031614610a5657610a568282611b92565b60006117f2846001600160a01b0316611bd6565b156118ee57836001600160a01b031663150b7a0261180e6112bf565b8786866040518563ffffffff1660e01b81526004016118309493929190612105565b602060405180830381600087803b15801561184a57600080fd5b505af192505050801561187a575060408051601f3d908101601f1916820190925261187791810190611f46565b60015b6118d4573d8080156118a8576040519150601f19603f3d011682016040523d82523d6000602084013e6118ad565b606091505b5080516118cc5760405162461bcd60e51b815260040161078a906121c4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611425565b506001949350505050565b6001600160a01b03821661191f5760405162461bcd60e51b815260040161078a906124c4565b6119288161131d565b156119455760405162461bcd60e51b815260040161078a9061225c565b61195160008383611755565b6001600160a01b038216600090815260036020526040812080546001929061197a908490612768565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a2984610d45565b611a3391906127b3565b600083815260076020526040902054909150808214611a86576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611acb906001906127b3565b60008381526009602052604081205460088054939450909284908110611b0157634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b3057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b7657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b9d83610d45565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b828054611be8906127f6565b90600052602060002090601f016020900481019282611c0a5760008555611c50565b82601f10611c2357805160ff1916838001178555611c50565b82800160010185558215611c50579182015b82811115611c50578251825591602001919060010190611c35565b50611c5c929150611c60565b5090565b5b80821115611c5c5760008155600101611c61565b600067ffffffffffffffff831115611c8f57611c8f61288c565b611ca2601f8401601f1916602001612732565b9050828152838383011115611cb657600080fd5b828260208301376000602084830101529392505050565b8035801515811461080957600080fd5b600060208284031215611cee578081fd5b8135611091816128a2565b600060208284031215611d0a578081fd5b8151611091816128a2565b60008060408385031215611d27578081fd5b8235611d32816128a2565b91506020830135611d42816128a2565b809150509250929050565b600080600060608486031215611d61578081fd5b8335611d6c816128a2565b92506020840135611d7c816128a2565b929592945050506040919091013590565b60008060008060808587031215611da2578081fd5b8435611dad816128a2565b93506020850135611dbd816128a2565b925060408501359150606085013567ffffffffffffffff811115611ddf578182fd5b8501601f81018713611def578182fd5b611dfe87823560208401611c75565b91505092959194509250565b60008060408385031215611e1c578182fd5b8235611e27816128a2565b9150611e3560208401611ccd565b90509250929050565b60008060408385031215611e50578182fd5b8235611e5b816128a2565b946020939093013593505050565b60006020808385031215611e7b578182fd5b823567ffffffffffffffff80821115611e92578384fd5b818501915085601f830112611ea5578384fd5b813581811115611eb757611eb761288c565b8381029150611ec7848301612732565b8181528481019084860184860187018a1015611ee1578788fd5b8795505b83861015611f03578035835260019590950194918601918601611ee5565b5098975050505050505050565b600060208284031215611f21578081fd5b61109182611ccd565b600060208284031215611f3b578081fd5b8135611091816128b7565b600060208284031215611f57578081fd5b8151611091816128b7565b600060208284031215611f73578081fd5b813567ffffffffffffffff811115611f89578182fd5b8201601f81018413611f99578182fd5b61142584823560208401611c75565b600060208284031215611fb9578081fd5b813561ffff81168114611091578182fd5b600060208284031215611fdb578081fd5b5035919050565b60008060408385031215611ff4578182fd5b50508035926020909101359150565b6000815180845261201b8160208601602086016127ca565b601f01601f19169290920160200192915050565b6000845160206120428285838a016127ca565b8551918401916120558184848a016127ca565b855492019183906002810460018083168061207157607f831692505b85831081141561208f57634e487b7160e01b88526022600452602488fd5b8080156120a357600181146120b4576120e0565b60ff198516885283880195506120e0565b6120bd8b61275c565b895b858110156120d85781548a8201529084019088016120bf565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061213890830184612003565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526110916020830184612003565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526023908201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160408201526218129760e91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601f908201527f4e6f7420746865206f776e6572206f662074686973205061676c696163636900604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f151bdad95b881251081a5b9d985b1a5960821b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b61ffff91909116815260200190565b90815260200190565b60405181810167ffffffffffffffff811182821017156127545761275461288c565b604052919050565b60009081526020902090565b6000821982111561277b5761277b612860565b500190565b60008261278f5761278f612876565b500490565b60008160001904831182151516156127ae576127ae612860565b500290565b6000828210156127c5576127c5612860565b500390565b60005b838110156127e55781810151838201526020016127cd565b83811115610f5e5750506000910152565b60028104600182168061280a57607f821691505b6020821081141561282b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561284557612845612860565b5060010190565b60008261285b5761285b612876565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461117657600080fd5b6001600160e01b03198116811461117657600080fdfea2646970667358221220cf1757d505c0392444022d8c85cddfc6780cf7aad6cbaae8b2a466242ff3cc3064736f6c63430008000033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5a7159544532586e574e6a74707150647a394c62683652647576784d7465794d69674b7258784159535454382f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806355f804b31161012e578063a475b5dd116100ab578063da3ef23f1161006f578063da3ef23f1461060b578063e985e9c51461062b578063ec342ad01461064b578063f2c4ce1e1461066d578063f2fde38b1461068d5761023b565b8063a475b5dd1461058e578063b88d4fde146105a3578063c6682862146105c3578063c87b56dd146105d8578063cf9010d8146105f85761023b565b8063715018a6116100f2578063715018a61461051a5780637b9910eb1461052f5780638da5cb5b1461054457806395d89b4114610559578063a22cb4651461056e5761023b565b806355f804b3146104905780635c975abb146104b05780636352211e146104c55780636c0360eb146104e557806370a08231146104fa5761023b565b806323b872dd116101bc5780633ccfd60b116101805780633ccfd60b1461041e57806342842e0e146104265780634f6ccce714610446578063518302271461046657806355c99bee1461047b5761023b565b806323b872dd1461037b5780632a55205a1461039b5780632f745c59146103c95780633622dd55146103e957806336e79a5a146103fe5761023b565b8063081c8c4411610203578063081c8c44146102fa578063095ea7b31461030f57806313faede61461032f57806318160ddd14610351578063239c70ae146103665761023b565b8063010d549e1461024057806301ffc9a71461025557806302329a291461028b57806306fdde03146102ab578063081812fc146102cd575b600080fd5b61025361024e366004611e69565b6106ad565b005b34801561026157600080fd5b50610275610270366004611f2a565b6107e1565b604051610282919061215b565b60405180910390f35b34801561029757600080fd5b506102536102a6366004611f10565b61080e565b3480156102b757600080fd5b506102c0610860565b6040516102829190612166565b3480156102d957600080fd5b506102ed6102e8366004611fca565b6108f2565b60405161028291906120f1565b34801561030657600080fd5b506102c0610935565b34801561031b57600080fd5b5061025361032a366004611e3e565b6109c3565b34801561033b57600080fd5b50610344610a5b565b6040516102829190612729565b34801561035d57600080fd5b50610344610a61565b34801561037257600080fd5b50610344610a67565b34801561038757600080fd5b50610253610396366004611d4d565b610a6d565b3480156103a757600080fd5b506103bb6103b6366004611fe2565b610aa5565b604051610282929190612142565b3480156103d557600080fd5b506103446103e4366004611e3e565b610adc565b3480156103f557600080fd5b50610344610b2e565b34801561040a57600080fd5b50610253610419366004611fa8565b610b34565b610253610bb9565b34801561043257600080fd5b50610253610441366004611d4d565b610c1e565b34801561045257600080fd5b50610344610461366004611fca565b610c39565b34801561047257600080fd5b50610275610c94565b34801561048757600080fd5b50610344610ca2565b34801561049c57600080fd5b506102536104ab366004611f62565b610ca8565b3480156104bc57600080fd5b50610275610cfa565b3480156104d157600080fd5b506102ed6104e0366004611fca565b610d03565b3480156104f157600080fd5b506102c0610d38565b34801561050657600080fd5b50610344610515366004611cdd565b610d45565b34801561052657600080fd5b50610253610d89565b34801561053b57600080fd5b506102ed610dd2565b34801561055057600080fd5b506102ed610de9565b34801561056557600080fd5b506102c0610df8565b34801561057a57600080fd5b50610253610589366004611e0a565b610e07565b34801561059a57600080fd5b50610253610ed5565b3480156105af57600080fd5b506102536105be366004611d8d565b610f25565b3480156105cf57600080fd5b506102c0610f64565b3480156105e457600080fd5b506102c06105f3366004611fca565b610f71565b610253610606366004611fca565b611098565b34801561061757600080fd5b50610253610626366004611f62565b611179565b34801561063757600080fd5b50610275610646366004611d15565b6111cb565b34801561065757600080fd5b506106606111f9565b604051610282919061271a565b34801561067957600080fd5b50610253610688366004611f62565b6111ff565b34801561069957600080fd5b506102536106a8366004611cdd565b611251565b60005b81518110156107dd57601254825133916001600160a01b031690636352211e908590859081106106f057634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b81526004016107149190612729565b60206040518083038186803b15801561072c57600080fd5b505afa158015610740573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107649190611cf9565b6001600160a01b0316146107935760405162461bcd60e51b815260040161078a906123fa565b60405180910390fd5b6107cb61079e6112bf565b8383815181106107be57634e487b7160e01b600052603260045260246000fd5b60200260200101516112c3565b806107d581612831565b9150506106b0565b5050565b60006001600160e01b0319821663780e9d6360e01b14806108065750610806826112dd565b90505b919050565b6108166112bf565b6001600160a01b0316610827610de9565b6001600160a01b03161461084d5760405162461bcd60e51b815260040161078a90612545565b6011805460ff1916911515919091179055565b60606000805461086f906127f6565b80601f016020809104026020016040519081016040528092919081815260200182805461089b906127f6565b80156108e85780601f106108bd576101008083540402835291602001916108e8565b820191906000526020600020905b8154815290600101906020018083116108cb57829003601f168201915b5050505050905090565b60006108fd8261131d565b6109195760405162461bcd60e51b815260040161078a906124f9565b506000908152600460205260409020546001600160a01b031690565b600d8054610942906127f6565b80601f016020809104026020016040519081016040528092919081815260200182805461096e906127f6565b80156109bb5780601f10610990576101008083540402835291602001916109bb565b820191906000526020600020905b81548152906001019060200180831161099e57829003601f168201915b505050505081565b60006109ce82610d03565b9050806001600160a01b0316836001600160a01b03161415610a025760405162461bcd60e51b815260040161078a9061263c565b806001600160a01b0316610a146112bf565b6001600160a01b03161480610a305750610a30816106466112bf565b610a4c5760405162461bcd60e51b815260040161078a9061239d565b610a56838361133a565b505050565b600e5481565b60085490565b60105481565b610a7e610a786112bf565b826113a8565b610a9a5760405162461bcd60e51b815260040161078a9061267d565b610a5683838361142d565b6011546000908190309061271090610ac79062010000900461ffff1686612794565b610ad19190612780565b915091509250929050565b6000610ae783610d45565b8210610b055760405162461bcd60e51b815260040161078a90612179565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60135481565b610b3c6112bf565b6001600160a01b0316610b4d610de9565b6001600160a01b031614610b735760405162461bcd60e51b815260040161078a90612545565b6103e88161ffff161115610b995760405162461bcd60e51b815260040161078a9061235a565b6011805461ffff909216620100000263ffff000019909216919091179055565b610bc16112bf565b6001600160a01b0316610bd2610de9565b6001600160a01b031614610bf85760405162461bcd60e51b815260040161078a90612545565b60405133904780156108fc02916000818181858888f19350505050610c1c57600080fd5b565b610a5683838360405180602001604052806000815250610f25565b6000610c43610a61565b8210610c615760405162461bcd60e51b815260040161078a906126ce565b60088281548110610c8257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601154610100900460ff1681565b600f5481565b610cb06112bf565b6001600160a01b0316610cc1610de9565b6001600160a01b031614610ce75760405162461bcd60e51b815260040161078a90612545565b80516107dd90600b906020840190611bdc565b60115460ff1681565b6000818152600260205260408120546001600160a01b0316806108065760405162461bcd60e51b815260040161078a9061247b565b600b8054610942906127f6565b60006001600160a01b038216610d6d5760405162461bcd60e51b815260040161078a90612431565b506001600160a01b031660009081526003602052604090205490565b610d916112bf565b6001600160a01b0316610da2610de9565b6001600160a01b031614610dc85760405162461bcd60e51b815260040161078a90612545565b610c1c600061155a565b60115464010000000090046001600160a01b031681565b600a546001600160a01b031690565b60606001805461086f906127f6565b610e0f6112bf565b6001600160a01b0316826001600160a01b03161415610e405760405162461bcd60e51b815260040161078a906122d7565b8060056000610e4d6112bf565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e916112bf565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ec9919061215b565b60405180910390a35050565b610edd6112bf565b6001600160a01b0316610eee610de9565b6001600160a01b031614610f145760405162461bcd60e51b815260040161078a90612545565b6011805461ff001916610100179055565b610f36610f306112bf565b836113a8565b610f525760405162461bcd60e51b815260040161078a9061267d565b610f5e848484846115ac565b50505050565b600c8054610942906127f6565b6060610f7c8261131d565b610f985760405162461bcd60e51b815260040161078a906125ed565b601154610100900460ff1661103957600d8054610fb4906127f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe0906127f6565b801561102d5780601f106110025761010080835404028352916020019161102d565b820191906000526020600020905b81548152906001019060200180831161101057829003601f168201915b50505050509050610809565b60006110436115df565b905060008151116110635760405180602001604052806000815250611091565b8061106d846115ee565b600c6040516020016110819392919061202f565b6040516020818303038152906040525b9392505050565b6000811180156110aa575061012c8111155b6110c65760405162461bcd60e51b815260040161078a9061257a565b6012546040516331a9108f60e11b815233916001600160a01b031690636352211e906110f6908590600401612729565b60206040518083038186803b15801561110e57600080fd5b505afa158015611122573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111469190611cf9565b6001600160a01b03161461116c5760405162461bcd60e51b815260040161078a906123fa565b61117633826112c3565b50565b6111816112bf565b6001600160a01b0316611192610de9565b6001600160a01b0316146111b85760405162461bcd60e51b815260040161078a90612545565b80516107dd90600c906020840190611bdc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61271081565b6112076112bf565b6001600160a01b0316611218610de9565b6001600160a01b03161461123e5760405162461bcd60e51b815260040161078a90612545565b80516107dd90600d906020840190611bdc565b6112596112bf565b6001600160a01b031661126a610de9565b6001600160a01b0316146112905760405162461bcd60e51b815260040161078a90612545565b6001600160a01b0381166112b65760405162461bcd60e51b815260040161078a90612216565b6111768161155a565b3390565b6107dd828260405180602001604052806000815250611709565b60006001600160e01b031982166380ac58cd60e01b148061130e57506001600160e01b03198216635b5e139f60e01b145b8061080657506108068261173c565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136f82610d03565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113b38261131d565b6113cf5760405162461bcd60e51b815260040161078a9061230e565b60006113da83610d03565b9050806001600160a01b0316846001600160a01b031614806114155750836001600160a01b031661140a846108f2565b6001600160a01b0316145b80611425575061142581856111cb565b949350505050565b826001600160a01b031661144082610d03565b6001600160a01b0316146114665760405162461bcd60e51b815260040161078a906125a4565b6001600160a01b03821661148c5760405162461bcd60e51b815260040161078a90612293565b611497838383611755565b6114a260008261133a565b6001600160a01b03831660009081526003602052604081208054600192906114cb9084906127b3565b90915550506001600160a01b03821660009081526003602052604081208054600192906114f9908490612768565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115b784848461142d565b6115c3848484846117de565b610f5e5760405162461bcd60e51b815260040161078a906121c4565b6060600b805461086f906127f6565b60608161161357506040805180820190915260018152600360fc1b6020820152610809565b8160005b811561163d578061162781612831565b91506116369050600a83612780565b9150611617565b60008167ffffffffffffffff81111561166657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611690576020820181803683370190505b5090505b8415611425576116a56001836127b3565b91506116b2600a8661284c565b6116bd906030612768565b60f81b8183815181106116e057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611702600a86612780565b9450611694565b61171383836118f9565b61172060008484846117de565b610a565760405162461bcd60e51b815260040161078a906121c4565b6001600160e01b031981166301ffc9a760e01b14919050565b611760838383610a56565b6001600160a01b03831661177c57611777816119d8565b61179f565b816001600160a01b0316836001600160a01b03161461179f5761179f8382611a1c565b6001600160a01b0382166117bb576117b681611ab9565b610a56565b826001600160a01b0316826001600160a01b031614610a5657610a568282611b92565b60006117f2846001600160a01b0316611bd6565b156118ee57836001600160a01b031663150b7a0261180e6112bf565b8786866040518563ffffffff1660e01b81526004016118309493929190612105565b602060405180830381600087803b15801561184a57600080fd5b505af192505050801561187a575060408051601f3d908101601f1916820190925261187791810190611f46565b60015b6118d4573d8080156118a8576040519150601f19603f3d011682016040523d82523d6000602084013e6118ad565b606091505b5080516118cc5760405162461bcd60e51b815260040161078a906121c4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611425565b506001949350505050565b6001600160a01b03821661191f5760405162461bcd60e51b815260040161078a906124c4565b6119288161131d565b156119455760405162461bcd60e51b815260040161078a9061225c565b61195160008383611755565b6001600160a01b038216600090815260036020526040812080546001929061197a908490612768565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a2984610d45565b611a3391906127b3565b600083815260076020526040902054909150808214611a86576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611acb906001906127b3565b60008381526009602052604081205460088054939450909284908110611b0157634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b3057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b7657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b9d83610d45565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b828054611be8906127f6565b90600052602060002090601f016020900481019282611c0a5760008555611c50565b82601f10611c2357805160ff1916838001178555611c50565b82800160010185558215611c50579182015b82811115611c50578251825591602001919060010190611c35565b50611c5c929150611c60565b5090565b5b80821115611c5c5760008155600101611c61565b600067ffffffffffffffff831115611c8f57611c8f61288c565b611ca2601f8401601f1916602001612732565b9050828152838383011115611cb657600080fd5b828260208301376000602084830101529392505050565b8035801515811461080957600080fd5b600060208284031215611cee578081fd5b8135611091816128a2565b600060208284031215611d0a578081fd5b8151611091816128a2565b60008060408385031215611d27578081fd5b8235611d32816128a2565b91506020830135611d42816128a2565b809150509250929050565b600080600060608486031215611d61578081fd5b8335611d6c816128a2565b92506020840135611d7c816128a2565b929592945050506040919091013590565b60008060008060808587031215611da2578081fd5b8435611dad816128a2565b93506020850135611dbd816128a2565b925060408501359150606085013567ffffffffffffffff811115611ddf578182fd5b8501601f81018713611def578182fd5b611dfe87823560208401611c75565b91505092959194509250565b60008060408385031215611e1c578182fd5b8235611e27816128a2565b9150611e3560208401611ccd565b90509250929050565b60008060408385031215611e50578182fd5b8235611e5b816128a2565b946020939093013593505050565b60006020808385031215611e7b578182fd5b823567ffffffffffffffff80821115611e92578384fd5b818501915085601f830112611ea5578384fd5b813581811115611eb757611eb761288c565b8381029150611ec7848301612732565b8181528481019084860184860187018a1015611ee1578788fd5b8795505b83861015611f03578035835260019590950194918601918601611ee5565b5098975050505050505050565b600060208284031215611f21578081fd5b61109182611ccd565b600060208284031215611f3b578081fd5b8135611091816128b7565b600060208284031215611f57578081fd5b8151611091816128b7565b600060208284031215611f73578081fd5b813567ffffffffffffffff811115611f89578182fd5b8201601f81018413611f99578182fd5b61142584823560208401611c75565b600060208284031215611fb9578081fd5b813561ffff81168114611091578182fd5b600060208284031215611fdb578081fd5b5035919050565b60008060408385031215611ff4578182fd5b50508035926020909101359150565b6000815180845261201b8160208601602086016127ca565b601f01601f19169290920160200192915050565b6000845160206120428285838a016127ca565b8551918401916120558184848a016127ca565b855492019183906002810460018083168061207157607f831692505b85831081141561208f57634e487b7160e01b88526022600452602488fd5b8080156120a357600181146120b4576120e0565b60ff198516885283880195506120e0565b6120bd8b61275c565b895b858110156120d85781548a8201529084019088016120bf565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061213890830184612003565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526110916020830184612003565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526023908201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160408201526218129760e91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601f908201527f4e6f7420746865206f776e6572206f662074686973205061676c696163636900604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f151bdad95b881251081a5b9d985b1a5960821b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b61ffff91909116815260200190565b90815260200190565b60405181810167ffffffffffffffff811182821017156127545761275461288c565b604052919050565b60009081526020902090565b6000821982111561277b5761277b612860565b500190565b60008261278f5761278f612876565b500490565b60008160001904831182151516156127ae576127ae612860565b500290565b6000828210156127c5576127c5612860565b500390565b60005b838110156127e55781810151838201526020016127cd565b83811115610f5e5750506000910152565b60028104600182168061280a57607f821691505b6020821081141561282b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561284557612845612860565b5060010190565b60008261285b5761285b612876565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461117657600080fd5b6001600160e01b03198116811461117657600080fdfea2646970667358221220cf1757d505c0392444022d8c85cddfc6780cf7aad6cbaae8b2a466242ff3cc3064736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5a7159544532586e574e6a74707150647a394c62683652647576784d7465794d69674b7258784159535454382f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://ipfs.io/ipfs/QmZqYTE2XnWNjtpqPdz9Lbh6RduvxMteyMigKrXxAYSTT8/
Arg [1] : _initNotRevealedUri (string):

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d5a7159544532586e57
Arg [4] : 4e6a74707150647a394c62683652647576784d7465794d69674b725878415953
Arg [5] : 5454382f00000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

52212:3256:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53556:306;;;;;;:::i;:::-;;:::i;:::-;;45206:224;;;;;;;;;;-1:-1:-1;45206:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54825:73;;;;;;;;;;-1:-1:-1;54825:73:0;;;;;:::i;:::-;;:::i;33098:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34657:221::-;;;;;;;;;;-1:-1:-1;34657:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52408:28::-;;;;;;;;;;;;;:::i;34180:411::-;;;;;;;;;;-1:-1:-1;34180:411:0;;;;;:::i;:::-;;:::i;52441:32::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45846:113::-;;;;;;;;;;;;;:::i;52523:33::-;;;;;;;;;;;;;:::i;35547:339::-;;;;;;;;;;-1:-1:-1;35547:339:0;;;;;:::i;:::-;;:::i;54906:236::-;;;;;;;;;;-1:-1:-1;54906:236:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;45514:256::-;;;;;;;;;;-1:-1:-1;45514:256:0;;;;;:::i;:::-;;:::i;52883:43::-;;;;;;;;;;;;;:::i;55148:193::-;;;;;;;;;;-1:-1:-1;55148:193:0;;;;;:::i;:::-;;:::i;55347:114::-;;;:::i;35957:185::-;;;;;;;;;;-1:-1:-1;35957:185:0;;;;;:::i;:::-;;:::i;46036:233::-;;;;;;;;;;-1:-1:-1;46036:233:0;;;;;:::i;:::-;;:::i;52592:27::-;;;;;;;;;;;;;:::i;52478:40::-;;;;;;;;;;;;;:::i;54465:98::-;;;;;;;;;;-1:-1:-1;54465:98:0;;;;;:::i;:::-;;:::i;52561:26::-;;;;;;;;;;;;;:::i;32792:239::-;;;;;;;;;;-1:-1:-1;32792:239:0;;;;;:::i;:::-;;:::i;52340:21::-;;;;;;;;;;;;;:::i;32522:208::-;;;;;;;;;;-1:-1:-1;32522:208:0;;;;;:::i;:::-;;:::i;11948:94::-;;;;;;;;;;;;;:::i;52722:76::-;;;;;;;;;;;;;:::i;11297:87::-;;;;;;;;;;;;;:::i;33267:104::-;;;;;;;;;;;;;:::i;34950:295::-;;;;;;;;;;-1:-1:-1;34950:295:0;;;;;:::i;:::-;;:::i;54392:65::-;;;;;;;;;;;;;:::i;36213:328::-;;;;;;;;;;-1:-1:-1;36213:328:0;;;;;:::i;:::-;;:::i;52366:37::-;;;;;;;;;;;;;:::i;53868:497::-;;;;;;;;;;-1:-1:-1;53868:497:0;;;;;:::i;:::-;;:::i;53267:281::-;;;;;;:::i;:::-;;:::i;54569:122::-;;;;;;;;;;-1:-1:-1;54569:122:0;;;;;:::i;:::-;;:::i;35316:164::-;;;;;;;;;;-1:-1:-1;35316:164:0;;;;;:::i;:::-;;:::i;52680:35::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54699:120::-;;;;;;;;;;-1:-1:-1;54699:120:0;;;;;:::i;:::-;;:::i;12197:192::-;;;;;;;;;;-1:-1:-1;12197:192:0;;;;;:::i;:::-;;:::i;53556:306::-;53642:9;53637:218;53661:12;:19;53657:1;:23;53637:218;;;53702:17;;53728:15;;53748:10;;-1:-1:-1;;;;;53702:17:0;;:25;;53728:12;;53741:1;;53728:15;;;;-1:-1:-1;;;53728:15:0;;;;;;;;;;;;;;;53702:42;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;53702:56:0;;53694:100;;;;-1:-1:-1;;;53694:100:0;;;;;;;:::i;:::-;;;;;;;;;53807:40;53817:12;:10;:12::i;:::-;53831;53844:1;53831:15;;;;;;-1:-1:-1;;;53831:15:0;;;;;;;;;;;;;;;53807:9;:40::i;:::-;53682:3;;;;:::i;:::-;;;;53637:218;;;;53556:306;:::o;45206:224::-;45308:4;-1:-1:-1;;;;;;45332:50:0;;-1:-1:-1;;;45332:50:0;;:90;;;45386:36;45410:11;45386:23;:36::i;:::-;45325:97;;45206:224;;;;:::o;54825:73::-;11528:12;:10;:12::i;:::-;-1:-1:-1;;;;;11517:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11517:23:0;;11509:68;;;;-1:-1:-1;;;11509:68:0;;;;;;;:::i;:::-;54877:6:::1;:15:::0;;-1:-1:-1;;54877:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54825:73::o;33098:100::-;33152:13;33185:5;33178:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33098:100;:::o;34657:221::-;34733:7;34761:16;34769:7;34761;:16::i;:::-;34753:73;;;;-1:-1:-1;;;34753:73:0;;;;;;;:::i;:::-;-1:-1:-1;34846:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34846:24:0;;34657:221::o;52408:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34180:411::-;34261:13;34277:23;34292:7;34277:14;:23::i;:::-;34261:39;;34325:5;-1:-1:-1;;;;;34319:11:0;:2;-1:-1:-1;;;;;34319:11:0;;;34311:57;;;;-1:-1:-1;;;34311:57:0;;;;;;;:::i;:::-;34419:5;-1:-1:-1;;;;;34403:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;34403:21:0;;:62;;;;34428:37;34445:5;34452:12;:10;:12::i;34428:37::-;34381:168;;;;-1:-1:-1;;;34381:168:0;;;;;;;:::i;:::-;34562:21;34571:2;34575:7;34562:8;:21::i;:::-;34180:411;;;:::o;52441:32::-;;;;:::o;45846:113::-;45934:10;:17;45846:113;:::o;52523:33::-;;;;:::o;35547:339::-;35742:41;35761:12;:10;:12::i;:::-;35775:7;35742:18;:41::i;:::-;35734:103;;;;-1:-1:-1;;;35734:103:0;;;;;;;:::i;:::-;35850:28;35860:4;35866:2;35870:7;35850:9;:28::i;54906:236::-;55118:7;;55024:16;;;;55097:4;;52710:5;;55105:20;;55118:7;;;55104:29;55118:7;55105:10;:20;:::i;:::-;55104:29;;;;:::i;:::-;55081:53;;;;54906:236;;;;;:::o;45514:256::-;45611:7;45647:23;45664:5;45647:16;:23::i;:::-;45639:5;:31;45631:87;;;;-1:-1:-1;;;45631:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;45736:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45514:256::o;52883:43::-;;;;:::o;55148:193::-;11528:12;:10;:12::i;:::-;-1:-1:-1;;;;;11517:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11517:23:0;;11509:68;;;;-1:-1:-1;;;11509:68:0;;;;;;;:::i;:::-;55258:4:::1;55246:8;:16;;;;55221:81;;;;-1:-1:-1::0;;;55221:81:0::1;;;;;;;:::i;:::-;55315:7;:18:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;55315:18:0;;::::1;::::0;;;::::1;::::0;;55148:193::o;55347:114::-;11528:12;:10;:12::i;:::-;-1:-1:-1;;;;;11517:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11517:23:0;;11509:68;;;;-1:-1:-1;;;11509:68:0;;;;;;;:::i;:::-;55407:47:::1;::::0;55415:10:::1;::::0;55432:21:::1;55407:47:::0;::::1;;;::::0;::::1;::::0;;;55432:21;55415:10;55407:47;::::1;;;;;;55399:56;;;::::0;::::1;;55347:114::o:0;35957:185::-;36095:39;36112:4;36118:2;36122:7;36095:39;;;;;;;;;;;;:16;:39::i;46036:233::-;46111:7;46147:30;:28;:30::i;:::-;46139:5;:38;46131:95;;;;-1:-1:-1;;;46131:95:0;;;;;;;:::i;:::-;46244:10;46255:5;46244:17;;;;;;-1:-1:-1;;;46244:17:0;;;;;;;;;;;;;;;;;46237:24;;46036:233;;;:::o;52592:27::-;;;;;;;;;:::o;52478:40::-;;;;:::o;54465:98::-;11528:12;:10;:12::i;:::-;-1:-1:-1;;;;;11517:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11517:23:0;;11509:68;;;;-1:-1:-1;;;11509:68:0;;;;;;;:::i;:::-;54536:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;52561:26::-:0;;;;;;:::o;32792:239::-;32864:7;32900:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32900:16:0;32935:19;32927:73;;;;-1:-1:-1;;;32927:73:0;;;;;;;:::i;52340:21::-;;;;;;;:::i;32522:208::-;32594:7;-1:-1:-1;;;;;32622:19:0;;32614:74;;;;-1:-1:-1;;;32614:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;32706:16:0;;;;;:9;:16;;;;;;;32522:208::o;11948:94::-;11528:12;:10;:12::i;:::-;-1:-1:-1;;;;;11517:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11517:23:0;;11509:68;;;;-1:-1:-1;;;11509:68:0;;;;;;;:::i;:::-;12013:21:::1;12031:1;12013:9;:21::i;52722:76::-:0;;;;;;-1:-1:-1;;;;;52722:76:0;;:::o;11297:87::-;11370:6;;-1:-1:-1;;;;;11370:6:0;11297:87;:::o;33267:104::-;33323:13;33356:7;33349:14;;;;;:::i;34950:295::-;35065:12;:10;:12::i;:::-;-1:-1:-1;;;;;35053:24:0;:8;-1:-1:-1;;;;;35053:24:0;;;35045:62;;;;-1:-1:-1;;;35045:62:0;;;;;;;:::i;:::-;35165:8;35120:18;:32;35139:12;:10;:12::i;:::-;-1:-1:-1;;;;;35120:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;35120:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;35120:53:0;;;;;;;;;;;35204:12;:10;:12::i;:::-;-1:-1:-1;;;;;35189:48:0;;35228:8;35189:48;;;;;;:::i;:::-;;;;;;;;34950:295;;:::o;54392:65::-;11528:12;:10;:12::i;:::-;-1:-1:-1;;;;;11517:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11517:23:0;;11509:68;;;;-1:-1:-1;;;11509:68:0;;;;;;;:::i;:::-;54436:8:::1;:15:::0;;-1:-1:-1;;54436:15:0::1;;;::::0;;54392:65::o;36213:328::-;36388:41;36407:12;:10;:12::i;:::-;36421:7;36388:18;:41::i;:::-;36380:103;;;;-1:-1:-1;;;36380:103:0;;;;;;;:::i;:::-;36494:39;36508:4;36514:2;36518:7;36527:5;36494:13;:39::i;:::-;36213:328;;;;:::o;52366:37::-;;;;;;;:::i;53868:497::-;53966:13;54007:16;54015:7;54007;:16::i;:::-;53991:97;;;;-1:-1:-1;;;53991:97:0;;;;;;;:::i;:::-;54104:8;;;;;;;54101:62;;54141:14;54134:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54101:62;54171:28;54202:10;:8;:10::i;:::-;54171:41;;54257:1;54232:14;54226:28;:32;:133;;;;;;;;;;;;;;;;;54294:14;54310:18;:7;:16;:18::i;:::-;54330:13;54277:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54226:133;54219:140;53868:497;-1:-1:-1;;;53868:497:0:o;53267:281::-;53352:1;53338:11;:15;:37;;;;;53372:3;53357:11;:18;;53338:37;53330:66;;;;-1:-1:-1;;;53330:66:0;;;;;;;:::i;:::-;53411:17;;:38;;-1:-1:-1;;;53411:38:0;;53453:10;;-1:-1:-1;;;;;53411:17:0;;:25;;:38;;53437:11;;53411:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;53411:52:0;;53403:96;;;;-1:-1:-1;;;53403:96:0;;;;;;;:::i;:::-;53508:34;53518:10;53530:11;53508:9;:34::i;:::-;53267:281;:::o;54569:122::-;11528:12;:10;:12::i;:::-;-1:-1:-1;;;;;11517:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11517:23:0;;11509:68;;;;-1:-1:-1;;;11509:68:0;;;;;;;:::i;:::-;54652:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;35316:164::-:0;-1:-1:-1;;;;;35437:25:0;;;35413:4;35437:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35316:164::o;52680:35::-;52710:5;52680:35;:::o;54699:120::-;11528:12;:10;:12::i;:::-;-1:-1:-1;;;;;11517:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11517:23:0;;11509:68;;;;-1:-1:-1;;;11509:68:0;;;;;;;:::i;:::-;54781:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;12197:192::-:0;11528:12;:10;:12::i;:::-;-1:-1:-1;;;;;11517:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11517:23:0;;11509:68;;;;-1:-1:-1;;;11509:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12286:22:0;::::1;12278:73;;;;-1:-1:-1::0;;;12278:73:0::1;;;;;;;:::i;:::-;12362:19;12372:8;12362:9;:19::i;10085:98::-:0;10165:10;10085:98;:::o;39035:110::-;39111:26;39121:2;39125:7;39111:26;;;;;;;;;;;;:9;:26::i;32153:305::-;32255:4;-1:-1:-1;;;;;;32292:40:0;;-1:-1:-1;;;32292:40:0;;:105;;-1:-1:-1;;;;;;;32349:48:0;;-1:-1:-1;;;32349:48:0;32292:105;:158;;;;32414:36;32438:11;32414:23;:36::i;38051:127::-;38116:4;38140:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38140:16:0;:30;;;38051:127::o;42033:174::-;42108:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42108:29:0;-1:-1:-1;;;;;42108:29:0;;;;;;;;:24;;42162:23;42108:24;42162:14;:23::i;:::-;-1:-1:-1;;;;;42153:46:0;;;;;;;;;;;42033:174;;:::o;38345:348::-;38438:4;38463:16;38471:7;38463;:16::i;:::-;38455:73;;;;-1:-1:-1;;;38455:73:0;;;;;;;:::i;:::-;38539:13;38555:23;38570:7;38555:14;:23::i;:::-;38539:39;;38608:5;-1:-1:-1;;;;;38597:16:0;:7;-1:-1:-1;;;;;38597:16:0;;:51;;;;38641:7;-1:-1:-1;;;;;38617:31:0;:20;38629:7;38617:11;:20::i;:::-;-1:-1:-1;;;;;38617:31:0;;38597:51;:87;;;;38652:32;38669:5;38676:7;38652:16;:32::i;:::-;38589:96;38345:348;-1:-1:-1;;;;38345:348:0:o;41337:578::-;41496:4;-1:-1:-1;;;;;41469:31:0;:23;41484:7;41469:14;:23::i;:::-;-1:-1:-1;;;;;41469:31:0;;41461:85;;;;-1:-1:-1;;;41461:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41565:16:0;;41557:65;;;;-1:-1:-1;;;41557:65:0;;;;;;;:::i;:::-;41635:39;41656:4;41662:2;41666:7;41635:20;:39::i;:::-;41739:29;41756:1;41760:7;41739:8;:29::i;:::-;-1:-1:-1;;;;;41781:15:0;;;;;;:9;:15;;;;;:20;;41800:1;;41781:15;:20;;41800:1;;41781:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41812:13:0;;;;;;:9;:13;;;;;:18;;41829:1;;41812:13;:18;;41829:1;;41812:18;:::i;:::-;;;;-1:-1:-1;;41841:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41841:21:0;-1:-1:-1;;;;;41841:21:0;;;;;;;;;41880:27;;41841:16;;41880:27;;;;;;;41337:578;;;:::o;12397:173::-;12472:6;;;-1:-1:-1;;;;;12489:17:0;;;-1:-1:-1;;;;;;12489:17:0;;;;;;;12522:40;;12472:6;;;12489:17;12472:6;;12522:40;;12453:16;;12522:40;12397:173;;:::o;37423:315::-;37580:28;37590:4;37596:2;37600:7;37580:9;:28::i;:::-;37627:48;37650:4;37656:2;37660:7;37669:5;37627:22;:48::i;:::-;37619:111;;;;-1:-1:-1;;;37619:111:0;;;;;;;:::i;53159:102::-;53219:13;53248:7;53241:14;;;;;:::i;7701:723::-;7757:13;7978:10;7974:53;;-1:-1:-1;8005:10:0;;;;;;;;;;;;-1:-1:-1;;;8005:10:0;;;;;;7974:53;8052:5;8037:12;8093:78;8100:9;;8093:78;;8126:8;;;;:::i;:::-;;-1:-1:-1;8149:10:0;;-1:-1:-1;8157:2:0;8149:10;;:::i;:::-;;;8093:78;;;8181:19;8213:6;8203:17;;;;;;-1:-1:-1;;;8203:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8203:17:0;;8181:39;;8231:154;8238:10;;8231:154;;8265:11;8275:1;8265:11;;:::i;:::-;;-1:-1:-1;8334:10:0;8342:2;8334:5;:10;:::i;:::-;8321:24;;:2;:24;:::i;:::-;8308:39;;8291:6;8298;8291:14;;;;;;-1:-1:-1;;;8291:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8291:56:0;;;;;;;;-1:-1:-1;8362:11:0;8371:2;8362:11;;:::i;:::-;;;8231:154;;39372:321;39502:18;39508:2;39512:7;39502:5;:18::i;:::-;39553:54;39584:1;39588:2;39592:7;39601:5;39553:22;:54::i;:::-;39531:154;;;;-1:-1:-1;;;39531:154:0;;;;;;;:::i;24132:157::-;-1:-1:-1;;;;;;24241:40:0;;-1:-1:-1;;;24241:40:0;24132:157;;;:::o;46882:589::-;47026:45;47053:4;47059:2;47063:7;47026:26;:45::i;:::-;-1:-1:-1;;;;;47088:18:0;;47084:187;;47123:40;47155:7;47123:31;:40::i;:::-;47084:187;;;47193:2;-1:-1:-1;;;;;47185:10:0;:4;-1:-1:-1;;;;;47185:10:0;;47181:90;;47212:47;47245:4;47251:7;47212:32;:47::i;:::-;-1:-1:-1;;;;;47285:16:0;;47281:183;;47318:45;47355:7;47318:36;:45::i;:::-;47281:183;;;47391:4;-1:-1:-1;;;;;47385:10:0;:2;-1:-1:-1;;;;;47385:10:0;;47381:83;;47412:40;47440:2;47444:7;47412:27;:40::i;42772:799::-;42927:4;42948:15;:2;-1:-1:-1;;;;;42948:13:0;;:15::i;:::-;42944:620;;;43000:2;-1:-1:-1;;;;;42984:36:0;;43021:12;:10;:12::i;:::-;43035:4;43041:7;43050:5;42984:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42984:72:0;;;;;;;;-1:-1:-1;;42984:72:0;;;;;;;;;;;;:::i;:::-;;;42980:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43226:13:0;;43222:272;;43269:60;;-1:-1:-1;;;43269:60:0;;;;;;;:::i;43222:272::-;43444:6;43438:13;43429:6;43425:2;43421:15;43414:38;42980:529;-1:-1:-1;;;;;;43107:51:0;-1:-1:-1;;;43107:51:0;;-1:-1:-1;43100:58:0;;42944:620;-1:-1:-1;43548:4:0;42772:799;;;;;;:::o;40029:382::-;-1:-1:-1;;;;;40109:16:0;;40101:61;;;;-1:-1:-1;;;40101:61:0;;;;;;;:::i;:::-;40182:16;40190:7;40182;:16::i;:::-;40181:17;40173:58;;;;-1:-1:-1;;;40173:58:0;;;;;;;:::i;:::-;40244:45;40273:1;40277:2;40281:7;40244:20;:45::i;:::-;-1:-1:-1;;;;;40302:13:0;;;;;;:9;:13;;;;;:18;;40319:1;;40302:13;:18;;40319:1;;40302:18;:::i;:::-;;;;-1:-1:-1;;40331:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40331:21:0;-1:-1:-1;;;;;40331:21:0;;;;;;;;40370:33;;40331:16;;;40370:33;;40331:16;;40370:33;40029:382;;:::o;48194:164::-;48298:10;:17;;48271:24;;;;:15;:24;;;;;:44;;;48326:24;;;;;;;;;;;;48194:164::o;48985:988::-;49251:22;49301:1;49276:22;49293:4;49276:16;:22::i;:::-;:26;;;;:::i;:::-;49313:18;49334:26;;;:17;:26;;;;;;49251:51;;-1:-1:-1;49467:28:0;;;49463:328;;-1:-1:-1;;;;;49534:18:0;;49512:19;49534:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49585:30;;;;;;:44;;;49702:30;;:17;:30;;;;;:43;;;49463:328;-1:-1:-1;49887:26:0;;;;:17;:26;;;;;;;;49880:33;;;-1:-1:-1;;;;;49931:18:0;;;;;:12;:18;;;;;:34;;;;;;;49924:41;48985:988::o;50268:1079::-;50546:10;:17;50521:22;;50546:21;;50566:1;;50546:21;:::i;:::-;50578:18;50599:24;;;:15;:24;;;;;;50972:10;:26;;50521:46;;-1:-1:-1;50599:24:0;;50521:46;;50972:26;;;;-1:-1:-1;;;50972:26:0;;;;;;;;;;;;;;;;;50950:48;;51036:11;51011:10;51022;51011:22;;;;;;-1:-1:-1;;;51011:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;51116:28;;;:15;:28;;;;;;;:41;;;51288:24;;;;;51281:31;51323:10;:16;;;;;-1:-1:-1;;;51323:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;50268:1079;;;;:::o;47772:221::-;47857:14;47874:20;47891:2;47874:16;:20::i;:::-;-1:-1:-1;;;;;47905:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47950:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47772:221:0:o;13343:387::-;13666:20;13714:8;;;13343:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:162::-;495:20;;551:13;;544:21;534:32;;524:2;;580:1;577;570:12;595:259;;707:2;695:9;686:7;682:23;678:32;675:2;;;728:6;720;713:22;675:2;772:9;759:23;791:33;818:5;791:33;:::i;859:263::-;;982:2;970:9;961:7;957:23;953:32;950:2;;;1003:6;995;988:22;950:2;1040:9;1034:16;1059:33;1086:5;1059:33;:::i;1127:402::-;;;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1277:6;1269;1262:22;1224:2;1321:9;1308:23;1340:33;1367:5;1340:33;:::i;:::-;1392:5;-1:-1:-1;1449:2:1;1434:18;;1421:32;1462:35;1421:32;1462:35;:::i;:::-;1516:7;1506:17;;;1214:315;;;;;:::o;1534:470::-;;;;1680:2;1668:9;1659:7;1655:23;1651:32;1648:2;;;1701:6;1693;1686:22;1648:2;1745:9;1732:23;1764:33;1791:5;1764:33;:::i;:::-;1816:5;-1:-1:-1;1873:2:1;1858:18;;1845:32;1886:35;1845:32;1886:35;:::i;:::-;1638:366;;1940:7;;-1:-1:-1;;;1994:2:1;1979:18;;;;1966:32;;1638:366::o;2009:830::-;;;;;2181:3;2169:9;2160:7;2156:23;2152:33;2149:2;;;2203:6;2195;2188:22;2149:2;2247:9;2234:23;2266:33;2293:5;2266:33;:::i;:::-;2318:5;-1:-1:-1;2375:2:1;2360:18;;2347:32;2388:35;2347:32;2388:35;:::i;:::-;2442:7;-1:-1:-1;2496:2:1;2481:18;;2468:32;;-1:-1:-1;2551:2:1;2536:18;;2523:32;2578:18;2567:30;;2564:2;;;2615:6;2607;2600:22;2564:2;2643:22;;2696:4;2688:13;;2684:27;-1:-1:-1;2674:2:1;;2730:6;2722;2715:22;2674:2;2758:75;2825:7;2820:2;2807:16;2802:2;2798;2794:11;2758:75;:::i;:::-;2748:85;;;2139:700;;;;;;;:::o;2844:329::-;;;2970:2;2958:9;2949:7;2945:23;2941:32;2938:2;;;2991:6;2983;2976:22;2938:2;3035:9;3022:23;3054:33;3081:5;3054:33;:::i;:::-;3106:5;-1:-1:-1;3130:37:1;3163:2;3148:18;;3130:37;:::i;:::-;3120:47;;2928:245;;;;;:::o;3178:327::-;;;3307:2;3295:9;3286:7;3282:23;3278:32;3275:2;;;3328:6;3320;3313:22;3275:2;3372:9;3359:23;3391:33;3418:5;3391:33;:::i;:::-;3443:5;3495:2;3480:18;;;;3467:32;;-1:-1:-1;;;3265:240:1:o;3510:1002::-;;3625:2;3668;3656:9;3647:7;3643:23;3639:32;3636:2;;;3689:6;3681;3674:22;3636:2;3734:9;3721:23;3763:18;3804:2;3796:6;3793:14;3790:2;;;3825:6;3817;3810:22;3790:2;3868:6;3857:9;3853:22;3843:32;;3913:7;3906:4;3902:2;3898:13;3894:27;3884:2;;3940:6;3932;3925:22;3884:2;3981;3968:16;4003:2;3999;3996:10;3993:2;;;4009:18;;:::i;:::-;4056:2;4052;4048:11;4038:21;;4079:27;4102:2;4098;4094:11;4079:27;:::i;:::-;4140:15;;;4171:12;;;;4203:11;;;4233;;;4229:20;;4226:33;-1:-1:-1;4223:2:1;;;4277:6;4269;4262:22;4223:2;4304:6;4295:15;;4319:163;4333:2;4330:1;4327:9;4319:163;;;4390:17;;4378:30;;4351:1;4344:9;;;;;4428:12;;;;4460;;4319:163;;;-1:-1:-1;4501:5:1;3605:907;-1:-1:-1;;;;;;;;3605:907:1:o;4517:192::-;;4626:2;4614:9;4605:7;4601:23;4597:32;4594:2;;;4647:6;4639;4632:22;4594:2;4675:28;4693:9;4675:28;:::i;4714:257::-;;4825:2;4813:9;4804:7;4800:23;4796:32;4793:2;;;4846:6;4838;4831:22;4793:2;4890:9;4877:23;4909:32;4935:5;4909:32;:::i;4976:261::-;;5098:2;5086:9;5077:7;5073:23;5069:32;5066:2;;;5119:6;5111;5104:22;5066:2;5156:9;5150:16;5175:32;5201:5;5175:32;:::i;5242:482::-;;5364:2;5352:9;5343:7;5339:23;5335:32;5332:2;;;5385:6;5377;5370:22;5332:2;5430:9;5417:23;5463:18;5455:6;5452:30;5449:2;;;5500:6;5492;5485:22;5449:2;5528:22;;5581:4;5573:13;;5569:27;-1:-1:-1;5559:2:1;;5615:6;5607;5600:22;5559:2;5643:75;5710:7;5705:2;5692:16;5687:2;5683;5679:11;5643:75;:::i;5729:292::-;;5840:2;5828:9;5819:7;5815:23;5811:32;5808:2;;;5861:6;5853;5846:22;5808:2;5905:9;5892:23;5955:6;5948:5;5944:18;5937:5;5934:29;5924:2;;5982:6;5974;5967:22;6026:190;;6138:2;6126:9;6117:7;6113:23;6109:32;6106:2;;;6159:6;6151;6144:22;6106:2;-1:-1:-1;6187:23:1;;6096:120;-1:-1:-1;6096:120:1:o;6221:258::-;;;6350:2;6338:9;6329:7;6325:23;6321:32;6318:2;;;6371:6;6363;6356:22;6318:2;-1:-1:-1;;6399:23:1;;;6469:2;6454:18;;;6441:32;;-1:-1:-1;6308:171:1:o;6484:259::-;;6565:5;6559:12;6592:6;6587:3;6580:19;6608:63;6664:6;6657:4;6652:3;6648:14;6641:4;6634:5;6630:16;6608:63;:::i;:::-;6725:2;6704:15;-1:-1:-1;;6700:29:1;6691:39;;;;6732:4;6687:50;;6535:208;-1:-1:-1;;6535:208:1:o;6748:1532::-;;7010:6;7004:13;7036:4;7049:51;7093:6;7088:3;7083:2;7075:6;7071:15;7049:51;:::i;:::-;7163:13;;7122:16;;;;7185:55;7163:13;7122:16;7207:15;;;7185:55;:::i;:::-;7331:13;;7262:20;;;7302:3;;7408:1;7393:17;;7429:1;7465:18;;;;7492:2;;7570:4;7560:8;7556:19;7544:31;;7492:2;7633;7623:8;7620:16;7600:18;7597:40;7594:2;;;-1:-1:-1;;;7660:33:1;;7716:4;7713:1;7706:15;7746:4;7667:3;7734:17;7594:2;7777:18;7804:110;;;;7928:1;7923:332;;;;7770:485;;7804:110;-1:-1:-1;;7839:24:1;;7825:39;;7884:20;;;;-1:-1:-1;7804:110:1;;7923:332;7959:39;7991:6;7959:39;:::i;:::-;8020:3;8036:169;8050:8;8047:1;8044:15;8036:169;;;8132:14;;8117:13;;;8110:37;8175:16;;;;8067:10;;8036:169;;;8040:3;;8236:8;8229:5;8225:20;8218:27;;7770:485;-1:-1:-1;8271:3:1;;6980:1300;-1:-1:-1;;;;;;;;;;;6980:1300:1:o;8285:203::-;-1:-1:-1;;;;;8449:32:1;;;;8431:51;;8419:2;8404:18;;8386:102::o;8493:490::-;-1:-1:-1;;;;;8762:15:1;;;8744:34;;8814:15;;8809:2;8794:18;;8787:43;8861:2;8846:18;;8839:34;;;8909:3;8904:2;8889:18;;8882:31;;;8493:490;;8930:47;;8957:19;;8949:6;8930:47;:::i;:::-;8922:55;8696:287;-1:-1:-1;;;;;;8696:287:1:o;8988:274::-;-1:-1:-1;;;;;9180:32:1;;;;9162:51;;9244:2;9229:18;;9222:34;9150:2;9135:18;;9117:145::o;9267:187::-;9432:14;;9425:22;9407:41;;9395:2;9380:18;;9362:92::o;9459:221::-;;9608:2;9597:9;9590:21;9628:46;9670:2;9659:9;9655:18;9647:6;9628:46;:::i;9685:407::-;9887:2;9869:21;;;9926:2;9906:18;;;9899:30;9965:34;9960:2;9945:18;;9938:62;-1:-1:-1;;;10031:2:1;10016:18;;10009:41;10082:3;10067:19;;9859:233::o;10097:414::-;10299:2;10281:21;;;10338:2;10318:18;;;10311:30;10377:34;10372:2;10357:18;;10350:62;-1:-1:-1;;;10443:2:1;10428:18;;10421:48;10501:3;10486:19;;10271:240::o;10516:402::-;10718:2;10700:21;;;10757:2;10737:18;;;10730:30;10796:34;10791:2;10776:18;;10769:62;-1:-1:-1;;;10862:2:1;10847:18;;10840:36;10908:3;10893:19;;10690:228::o;10923:352::-;11125:2;11107:21;;;11164:2;11144:18;;;11137:30;11203;11198:2;11183:18;;11176:58;11266:2;11251:18;;11097:178::o;11280:400::-;11482:2;11464:21;;;11521:2;11501:18;;;11494:30;11560:34;11555:2;11540:18;;11533:62;-1:-1:-1;;;11626:2:1;11611:18;;11604:34;11670:3;11655:19;;11454:226::o;11685:349::-;11887:2;11869:21;;;11926:2;11906:18;;;11899:30;11965:27;11960:2;11945:18;;11938:55;12025:2;12010:18;;11859:175::o;12039:408::-;12241:2;12223:21;;;12280:2;12260:18;;;12253:30;12319:34;12314:2;12299:18;;12292:62;-1:-1:-1;;;12385:2:1;12370:18;;12363:42;12437:3;12422:19;;12213:234::o;12452:399::-;12654:2;12636:21;;;12693:2;12673:18;;;12666:30;12732:34;12727:2;12712:18;;12705:62;-1:-1:-1;;;12798:2:1;12783:18;;12776:33;12841:3;12826:19;;12626:225::o;12856:420::-;13058:2;13040:21;;;13097:2;13077:18;;;13070:30;13136:34;13131:2;13116:18;;13109:62;13207:26;13202:2;13187:18;;13180:54;13266:3;13251:19;;13030:246::o;13281:355::-;13483:2;13465:21;;;13522:2;13502:18;;;13495:30;13561:33;13556:2;13541:18;;13534:61;13627:2;13612:18;;13455:181::o;13641:406::-;13843:2;13825:21;;;13882:2;13862:18;;;13855:30;13921:34;13916:2;13901:18;;13894:62;-1:-1:-1;;;13987:2:1;13972:18;;13965:40;14037:3;14022:19;;13815:232::o;14052:405::-;14254:2;14236:21;;;14293:2;14273:18;;;14266:30;14332:34;14327:2;14312:18;;14305:62;-1:-1:-1;;;14398:2:1;14383:18;;14376:39;14447:3;14432:19;;14226:231::o;14462:356::-;14664:2;14646:21;;;14683:18;;;14676:30;14742:34;14737:2;14722:18;;14715:62;14809:2;14794:18;;14636:182::o;14823:408::-;15025:2;15007:21;;;15064:2;15044:18;;;15037:30;15103:34;15098:2;15083:18;;15076:62;-1:-1:-1;;;15169:2:1;15154:18;;15147:42;15221:3;15206:19;;14997:234::o;15236:356::-;15438:2;15420:21;;;15457:18;;;15450:30;15516:34;15511:2;15496:18;;15489:62;15583:2;15568:18;;15410:182::o;15597:340::-;15799:2;15781:21;;;15838:2;15818:18;;;15811:30;-1:-1:-1;;;15872:2:1;15857:18;;15850:46;15928:2;15913:18;;15771:166::o;15942:405::-;16144:2;16126:21;;;16183:2;16163:18;;;16156:30;16222:34;16217:2;16202:18;;16195:62;-1:-1:-1;;;16288:2:1;16273:18;;16266:39;16337:3;16322:19;;16116:231::o;16352:411::-;16554:2;16536:21;;;16593:2;16573:18;;;16566:30;16632:34;16627:2;16612:18;;16605:62;-1:-1:-1;;;16698:2:1;16683:18;;16676:45;16753:3;16738:19;;16526:237::o;16768:397::-;16970:2;16952:21;;;17009:2;16989:18;;;16982:30;17048:34;17043:2;17028:18;;17021:62;-1:-1:-1;;;17114:2:1;17099:18;;17092:31;17155:3;17140:19;;16942:223::o;17170:413::-;17372:2;17354:21;;;17411:2;17391:18;;;17384:30;17450:34;17445:2;17430:18;;17423:62;-1:-1:-1;;;17516:2:1;17501:18;;17494:47;17573:3;17558:19;;17344:239::o;17588:408::-;17790:2;17772:21;;;17829:2;17809:18;;;17802:30;17868:34;17863:2;17848:18;;17841:62;-1:-1:-1;;;17934:2:1;17919:18;;17912:42;17986:3;17971:19;;17762:234::o;18001:188::-;18175:6;18163:19;;;;18145:38;;18133:2;18118:18;;18100:89::o;18194:177::-;18340:25;;;18328:2;18313:18;;18295:76::o;18376:251::-;18446:2;18440:9;18476:17;;;18523:18;18508:34;;18544:22;;;18505:62;18502:2;;;18570:18;;:::i;:::-;18606:2;18599:22;18420:207;;-1:-1:-1;18420:207:1:o;18632:129::-;;18700:17;;;18750:4;18734:21;;;18690:71::o;18766:128::-;;18837:1;18833:6;18830:1;18827:13;18824:2;;;18843:18;;:::i;:::-;-1:-1:-1;18879:9:1;;18814:80::o;18899:120::-;;18965:1;18955:2;;18970:18;;:::i;:::-;-1:-1:-1;19004:9:1;;18945:74::o;19024:168::-;;19130:1;19126;19122:6;19118:14;19115:1;19112:21;19107:1;19100:9;19093:17;19089:45;19086:2;;;19137:18;;:::i;:::-;-1:-1:-1;19177:9:1;;19076:116::o;19197:125::-;;19265:1;19262;19259:8;19256:2;;;19270:18;;:::i;:::-;-1:-1:-1;19307:9:1;;19246:76::o;19327:258::-;19399:1;19409:113;19423:6;19420:1;19417:13;19409:113;;;19499:11;;;19493:18;19480:11;;;19473:39;19445:2;19438:10;19409:113;;;19540:6;19537:1;19534:13;19531:2;;;-1:-1:-1;;19575:1:1;19557:16;;19550:27;19380:205::o;19590:380::-;19675:1;19665:12;;19722:1;19712:12;;;19733:2;;19787:4;19779:6;19775:17;19765:27;;19733:2;19840;19832:6;19829:14;19809:18;19806:38;19803:2;;;19886:10;19881:3;19877:20;19874:1;19867:31;19921:4;19918:1;19911:15;19949:4;19946:1;19939:15;19803:2;;19645:325;;;:::o;19975:135::-;;-1:-1:-1;;20035:17:1;;20032:2;;;20055:18;;:::i;:::-;-1:-1:-1;20102:1:1;20091:13;;20022:88::o;20115:112::-;;20173:1;20163:2;;20178:18;;:::i;:::-;-1:-1:-1;20212:9:1;;20153:74::o;20232:127::-;20293:10;20288:3;20284:20;20281:1;20274:31;20324:4;20321:1;20314:15;20348:4;20345:1;20338:15;20364:127;20425:10;20420:3;20416:20;20413:1;20406:31;20456:4;20453:1;20446:15;20480:4;20477:1;20470:15;20496:127;20557:10;20552:3;20548:20;20545:1;20538:31;20588:4;20585:1;20578:15;20612:4;20609:1;20602:15;20628:133;-1:-1:-1;;;;;20705:31:1;;20695:42;;20685:2;;20751:1;20748;20741:12;20766:133;-1:-1:-1;;;;;;20842:32:1;;20832:43;;20822:2;;20889:1;20886;20879:12

Swarm Source

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