ETH Price: $3,451.61 (+1.77%)
Gas: 4 Gwei

Token

INCEPTIONPASS Collective (INCEPTIONPASS)
 

Overview

Max Total Supply

3,375 INCEPTIONPASS

Holders

1,365

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cvd.eth
Balance
1 INCEPTIONPASS
0xdaa7c1b5feaca5d1bc1bea7e7c07d91d3e6dfe51
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:
INCEPTIONPASSCollective

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

File 2 of 17 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 3 of 17 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 4 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 5 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 7 of 17 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Pausable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 8 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 10 of 17 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 11 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 13 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 14 of 17 : INCEPTIONPASSCollective.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./erc721/ERC721Common.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract INCEPTIONPASSCollective is ERC721Common, ReentrancyGuard {
    using Strings for uint256;

    bool public saleActive;
    uint8 public constant MAX_STANDARD_MINT = 2;
    uint8 public constant MAX_GOLD_MINT = 5;
    uint16 public _standardTokenIdTracker;
    uint16 public _goldTokenIdTracker;
    uint16 public constant MAX_ITEMS = 5_000;
    uint16 public constant MAX_STANDARD_ITEMS = 4_500;
    uint16 public constant MAX_GOLD_ITEMS = 500;
    uint256 public STANDARD_PRICE = 0.02 ether;
    uint256 public GOLD_PRICE = 0.08 ether;

    address constant w1 = 0x79792bF612bf456ff9ED70F5016C1c01Ee9c7598;
    address constant w2 = 0xDE4CD210246271a3595870cE5442298550C0a263;

    constructor(
        string memory name,
        string memory symbol
    )
        ERC721Common(name, symbol)
    {}

    function standardMint(address _to, uint16 _count) public payable 
        nonReentrant
        whenNotPaused {
        require(saleActive == true, "Sale has not yet started");
        require(_standardTokenIdTracker + _count <= MAX_STANDARD_ITEMS, "Max limit");
        require(_count <= MAX_STANDARD_MINT, "Exceeds number");
        if(_standardTokenIdTracker > 2500) require(msg.value >= STANDARD_PRICE * _count, "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            uint16 id = _standardTokenIdTracker;
            _standardTokenIdTracker++;
            _safeMint(_to, id);
        }
    }

    function goldMint(address _to, uint16 _count) public payable 
        nonReentrant
        whenNotPaused {
        require(saleActive == true, "Sale has not yet started");
        require(_goldTokenIdTracker + _count <= MAX_GOLD_ITEMS, "Max limit");
        require(_count <= MAX_GOLD_MINT, "Exceeds number");
        require(msg.value >= GOLD_PRICE * _count, "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            uint16 id = MAX_STANDARD_ITEMS + _goldTokenIdTracker;
            _goldTokenIdTracker++;
            _safeMint(_to, id);
        }
    }

    function setSaleStatus(bool _status) external onlyOwner {
        saleActive = _status;
    }

    function setStandardPrice(uint256 _price) external onlyOwner {
        STANDARD_PRICE = _price;
    }

    function setGoldPrice(uint256 _price) external onlyOwner {
        GOLD_PRICE = _price;
    }

    /// @notice Prefix for tokenURI return values.
    string public baseTokenURI;

    /// @notice Set the baseTokenURI.
    function setBaseTokenURI(string memory baseTokenURI_) external onlyOwner {
        baseTokenURI = baseTokenURI_;
    }

    /// @notice Returns the token's metadata URI.
    function tokenURI(uint256 tokenId)
        public
        view
        override
        tokenExists(tokenId)
        returns (string memory)
    {
        return bytes(baseTokenURI).length > 0 ? string(abi.encodePacked(baseTokenURI, tokenId.toString())) : "";
    }

    /**
    @notice Returns total number of existing tokens.
    @dev Using ERC721Enumerable is unnecessarily expensive wrt gas. However
    Etherscan uses totalSupply() so we provide it here.
     */
    function totalSupply() external view returns (uint256) {
        return _goldTokenIdTracker + _standardTokenIdTracker;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(w1, balance * 80 / 100);
        _widthdraw(w2, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success,) = _address.call{value : _amount}("");
        require(success, "Transfer failed.");
    }
}

File 15 of 17 : ERC721Common.sol
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;

import "./OpenSeaGasFreeListing.sol";
import "../utils/OwnerPausable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/utils/Context.sol";

/**
@notice An ERC721 contract with common functionality:
 - OpenSea gas-free listings
 - OpenZeppelin Pausable
 - OpenZeppelin Pausable with functions exposed to Owner only
 */
contract ERC721Common is Context, ERC721Pausable, OwnerPausable {
    constructor(string memory name, string memory symbol)
        ERC721(name, symbol)
    {}

    /// @notice Requires that the token exists.
    modifier tokenExists(uint256 tokenId) {
        require(ERC721._exists(tokenId), "ERC721Common: Token doesn't exist");
        _;
    }

    /// @notice Requires that msg.sender owns or is approved for the token.
    modifier onlyApprovedOrOwner(uint256 tokenId) {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Common: Not approved nor owner"
        );
        _;
    }

    /// @notice Overrides _beforeTokenTransfer as required by inheritance.
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    /// @notice Overrides supportsInterface as required by inheritance.
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    /**
    @notice Returns true if either standard isApprovedForAll() returns true or
    the operator is the OpenSea proxy for the owner.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            super.isApprovedForAll(owner, operator) ||
            OpenSeaGasFreeListing.isApprovedForAll(owner, operator);
    }
}

File 16 of 17 : OpenSeaGasFreeListing.sol
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;

// Inspired by BaseOpenSea by Simon Fremaux (@dievardump) but without the need
// to pass specific addresses depending on deployment network.
// https://gist.github.com/dievardump/483eb43bc6ed30b14f01e01842e3339b/

/// @notice Library to achieve gas-free listings on OpenSea.
library OpenSeaGasFreeListing {
    /**
    @notice Returns whether the operator is an OpenSea proxy for the owner, thus
    allowing it to list without the token owner paying gas.
    @dev ERC{721,1155}.isApprovedForAll should be overriden to also check if
    this function returns true.
     */
    function isApprovedForAll(address owner, address operator)
        internal
        view
        returns (bool)
    {
        ProxyRegistry registry;
        assembly {
            switch chainid()
            case 1 {
                // mainnet
                registry := 0xa5409ec958c83c3f309868babaca7c86dcb077c1
            }
            case 4 {
                // rinkeby
                registry := 0xf57b2c51ded3a29e6891aba85459d600256cf317
            }
        }

        return
            address(registry) != address(0) &&
            address(registry.proxies(owner)) == operator;
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

File 17 of 17 : OwnerPausable.sol
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

/// @notice A Pausable contract that can only be toggled by the Owner.
contract OwnerPausable is Ownable, Pausable {
    /// @notice Pauses the contract.
    function pause() public onlyOwner {
        Pausable._pause();
    }

    /// @notice Unpauses the contract.
    function unpause() public onlyOwner {
        Pausable._unpause();
    }
}

Settings
{
  "evmVersion": "istanbul",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"GOLD_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GOLD_ITEMS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GOLD_MINT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ITEMS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_STANDARD_ITEMS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_STANDARD_MINT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STANDARD_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_goldTokenIdTracker","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_standardTokenIdTracker","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_count","type":"uint16"}],"name":"goldMint","outputs":[],"stateMutability":"payable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI_","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setGoldPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setStandardPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_count","type":"uint16"}],"name":"standardMint","outputs":[],"stateMutability":"payable","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":"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266470de4df82000060095567011c37937e080000600a553480156200002857600080fd5b5060405162004b6538038062004b6583398181016040528101906200004e9190620002c3565b8181818181600090805190602001906200006a929190620001a1565b50806001908051906020019062000083929190620001a1565b505050620000a66200009a620000d360201b60201c565b620000db60201b60201c565b6000600660146101000a81548160ff021916908315150217905550505060016007819055505050620004a6565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001af90620003cb565b90600052602060002090601f016020900481019282620001d357600085556200021f565b82601f10620001ee57805160ff19168380011785556200021f565b828001600101855582156200021f579182015b828111156200021e57825182559160200191906001019062000201565b5b5090506200022e919062000232565b5090565b5b808211156200024d57600081600090555060010162000233565b5090565b60006200026862000262846200035f565b62000336565b9050828152602081018484840111156200028157600080fd5b6200028e84828562000395565b509392505050565b600082601f830112620002a857600080fd5b8151620002ba84826020860162000251565b91505092915050565b60008060408385031215620002d757600080fd5b600083015167ffffffffffffffff811115620002f257600080fd5b620003008582860162000296565b925050602083015167ffffffffffffffff8111156200031e57600080fd5b6200032c8582860162000296565b9150509250929050565b60006200034262000355565b905062000350828262000401565b919050565b6000604051905090565b600067ffffffffffffffff8211156200037d576200037c62000466565b5b620003888262000495565b9050602081019050919050565b60005b83811015620003b557808201518184015260208101905062000398565b83811115620003c5576000848401525b50505050565b60006002820490506001821680620003e457607f821691505b60208210811415620003fb57620003fa62000437565b5b50919050565b6200040c8262000495565b810181811067ffffffffffffffff821117156200042e576200042d62000466565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6146af80620004b66000396000f3fe6080604052600436106102255760003560e01c806369f66cb71161012357806395d89b41116100ab578063d547cfb71161006f578063d547cfb714610793578063d897833e146107be578063e985e9c5146107e7578063f2fde38b14610824578063f69d399a1461084d57610225565b806395d89b41146106ae5780639a735041146106d9578063a22cb46514610704578063b88d4fde1461072d578063c87b56dd1461075657610225565b80638281b3ac116100f25780638281b3ac1461060c5780638456cb5914610637578063853828b61461064e5780638b2189a0146106585780638da5cb5b1461068357610225565b806369f66cb7146105625780636fae29ff1461058d57806370a08231146105b8578063715018a6146105f557610225565b806330176e13116101b1578063578664f611610175578063578664f61461047957806357d4c4ee146104a45780635c975abb146104cf5780636352211e146104fa57806368428a1b1461053757610225565b806330176e13146103cb5780633cf5d242146103f45780633f4ba83a1461041057806342842e0e1461042757806349d429a01461045057610225565b806318160ddd116101f857806318160ddd146102f85780631fc1b1041461032357806323b872dd1461034e57806325264cbe146103775780632d02a5b2146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906130e0565b610869565b60405161025e9190613760565b60405180910390f35b34801561027357600080fd5b5061027c61087b565b604051610289919061377b565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061319c565b61090d565b6040516102c691906136f9565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061307b565b610992565b005b34801561030457600080fd5b5061030d610aaa565b60405161031a9190613ad8565b60405180910390f35b34801561032f57600080fd5b50610338610ae1565b6040516103459190613abd565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612f39565b610af5565b005b34801561038357600080fd5b5061038c610b55565b6040516103999190613abd565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c4919061319c565b610b5b565b005b3480156103d757600080fd5b506103f260048036038101906103ed919061315b565b610be1565b005b61040e6004803603810190610409919061303f565b610c77565b005b34801561041c57600080fd5b50610425610f17565b005b34801561043357600080fd5b5061044e60048036038101906104499190612f39565b610f9d565b005b34801561045c57600080fd5b506104776004803603810190610472919061319c565b610fbd565b005b34801561048557600080fd5b5061048e611043565b60405161049b9190613abd565b60405180910390f35b3480156104b057600080fd5b506104b9611057565b6040516104c69190613abd565b60405180910390f35b3480156104db57600080fd5b506104e461105d565b6040516104f19190613760565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061319c565b611074565b60405161052e91906136f9565b60405180910390f35b34801561054357600080fd5b5061054c611126565b6040516105599190613760565b60405180910390f35b34801561056e57600080fd5b50610577611139565b6040516105849190613ad8565b60405180910390f35b34801561059957600080fd5b506105a261113f565b6040516105af9190613abd565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190612ed4565b611145565b6040516105ec9190613ad8565b60405180910390f35b34801561060157600080fd5b5061060a6111fd565b005b34801561061857600080fd5b50610621611285565b60405161062e9190613ad8565b60405180910390f35b34801561064357600080fd5b5061064c61128b565b005b610656611311565b005b34801561066457600080fd5b5061066d6113f6565b60405161067a9190613af3565b60405180910390f35b34801561068f57600080fd5b506106986113fb565b6040516106a591906136f9565b60405180910390f35b3480156106ba57600080fd5b506106c3611425565b6040516106d0919061377b565b60405180910390f35b3480156106e557600080fd5b506106ee6114b7565b6040516106fb9190613af3565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613003565b6114bc565b005b34801561073957600080fd5b50610754600480360381019061074f9190612f88565b6114d2565b005b34801561076257600080fd5b5061077d6004803603810190610778919061319c565b611534565b60405161078a919061377b565b60405180910390f35b34801561079f57600080fd5b506107a86115de565b6040516107b5919061377b565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e091906130b7565b61166c565b005b3480156107f357600080fd5b5061080e60048036038101906108099190612efd565b611705565b60405161081b9190613760565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190612ed4565b61172a565b005b6108676004803603810190610862919061303f565b611822565b005b600061087482611ab0565b9050919050565b60606000805461088a90613e28565b80601f01602080910402602001604051908101604052809291908181526020018280546108b690613e28565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b5050505050905090565b600061091882611b92565b610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e9061399d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099d82611074565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590613a1d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2d611bfe565b73ffffffffffffffffffffffffffffffffffffffff161480610a5c5750610a5b81610a56611bfe565b611705565b5b610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a929061391d565b60405180910390fd5b610aa58383611c06565b505050565b6000600860019054906101000a900461ffff16600860039054906101000a900461ffff16610ad89190613bf8565b61ffff16905090565b600860019054906101000a900461ffff1681565b610b06610b00611bfe565b82611cbf565b610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90613a7d565b60405180910390fd5b610b50838383611d9d565b505050565b61119481565b610b63611bfe565b73ffffffffffffffffffffffffffffffffffffffff16610b816113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906139bd565b60405180910390fd5b80600a8190555050565b610be9611bfe565b73ffffffffffffffffffffffffffffffffffffffff16610c076113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c54906139bd565b60405180910390fd5b80600b9080519060200190610c73929190612cce565b5050565b60026007541415610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490613a9d565b60405180910390fd5b6002600781905550610ccd61105d565b15610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906138fd565b60405180910390fd5b60011515600860009054906101000a900460ff16151514610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90613a3d565b60405180910390fd5b61119461ffff1681600860019054906101000a900461ffff16610d869190613bf8565b61ffff161115610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906138bd565b60405180910390fd5b600260ff168161ffff161115610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d906137fd565b60405180910390fd5b6109c4600860019054906101000a900461ffff1661ffff161115610e89578061ffff16600954610e469190613cb7565b341015610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f906139fd565b60405180910390fd5b5b60005b8161ffff16811015610f0a576000600860019054906101000a900461ffff1690506008600181819054906101000a900461ffff1680929190610ecd90613e8b565b91906101000a81548161ffff021916908361ffff16021790555050610ef6848261ffff16611ff9565b508080610f0290613eb6565b915050610e8c565b5060016007819055505050565b610f1f611bfe565b73ffffffffffffffffffffffffffffffffffffffff16610f3d6113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a906139bd565b60405180910390fd5b610f9b612017565b565b610fb8838383604051806020016040528060008152506114d2565b505050565b610fc5611bfe565b73ffffffffffffffffffffffffffffffffffffffff16610fe36113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611030906139bd565b60405180910390fd5b8060098190555050565b600860039054906101000a900461ffff1681565b61138881565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561111d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111149061395d565b60405180910390fd5b80915050919050565b600860009054906101000a900460ff1681565b60095481565b6101f481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad9061393d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611205611bfe565b73ffffffffffffffffffffffffffffffffffffffff166112236113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611270906139bd565b60405180910390fd5b61128360006120b9565b565b600a5481565b611293611bfe565b73ffffffffffffffffffffffffffffffffffffffff166112b16113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906139bd565b60405180910390fd5b61130f61217f565b565b611319611bfe565b73ffffffffffffffffffffffffffffffffffffffff166113376113fb565b73ffffffffffffffffffffffffffffffffffffffff161461138d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611384906139bd565b60405180910390fd5b60004790506000811161139f57600080fd5b6113d57379792bf612bf456ff9ed70f5016c1c01ee9c759860646050846113c69190613cb7565b6113d09190613c86565b612222565b6113f373de4cd210246271a3595870ce5442298550c0a26347612222565b50565b600581565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461143490613e28565b80601f016020809104026020016040519081016040528092919081815260200182805461146090613e28565b80156114ad5780601f10611482576101008083540402835291602001916114ad565b820191906000526020600020905b81548152906001019060200180831161149057829003601f168201915b5050505050905090565b600281565b6114ce6114c7611bfe565b83836122d3565b5050565b6114e36114dd611bfe565b83611cbf565b611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990613a7d565b60405180910390fd5b61152e84848484612440565b50505050565b60608161154081611b92565b61157f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115769061379d565b60405180910390fd5b6000600b805461158e90613e28565b9050116115aa57604051806020016040528060008152506115d6565b600b6115b58461249c565b6040516020016115c69291906136c0565b6040516020818303038152906040525b915050919050565b600b80546115eb90613e28565b80601f016020809104026020016040519081016040528092919081815260200182805461161790613e28565b80156116645780601f1061163957610100808354040283529160200191611664565b820191906000526020600020905b81548152906001019060200180831161164757829003601f168201915b505050505081565b611674611bfe565b73ffffffffffffffffffffffffffffffffffffffff166116926113fb565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df906139bd565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b60006117118383612649565b80611722575061172183836126dd565b5b905092915050565b611732611bfe565b73ffffffffffffffffffffffffffffffffffffffff166117506113fb565b73ffffffffffffffffffffffffffffffffffffffff16146117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d906139bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d9061383d565b60405180910390fd5b61181f816120b9565b50565b60026007541415611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f90613a9d565b60405180910390fd5b600260078190555061187861105d565b156118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af906138fd565b60405180910390fd5b60011515600860009054906101000a900460ff1615151461190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590613a3d565b60405180910390fd5b6101f461ffff1681600860039054906101000a900461ffff166119319190613bf8565b61ffff161115611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d906138bd565b60405180910390fd5b600560ff168161ffff1611156119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b8906137fd565b60405180910390fd5b8061ffff16600a546119d39190613cb7565b341015611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c906139fd565b60405180910390fd5b60005b8161ffff16811015611aa3576000600860039054906101000a900461ffff16611194611a449190613bf8565b90506008600381819054906101000a900461ffff1680929190611a6690613e8b565b91906101000a81548161ffff021916908361ffff16021790555050611a8f848261ffff16611ff9565b508080611a9b90613eb6565b915050611a18565b5060016007819055505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b7b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b8b5750611b8a82612824565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c7983611074565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cca82611b92565b611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906138dd565b60405180910390fd5b6000611d1483611074565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d8357508373ffffffffffffffffffffffffffffffffffffffff16611d6b8461090d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d945750611d938185611705565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dbd82611074565b73ffffffffffffffffffffffffffffffffffffffff1614611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a906139dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a9061387d565b60405180910390fd5b611e8e83838361288e565b611e99600082611c06565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee99190613d11565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f409190613c30565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61201382826040518060200160405280600081525061289e565b5050565b61201f61105d565b61205e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612055906137dd565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120a2611bfe565b6040516120af91906136f9565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61218761105d565b156121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be906138fd565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861220b611bfe565b60405161221891906136f9565b60405180910390a1565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612248906136e4565b60006040518083038185875af1925050503d8060008114612285576040519150601f19603f3d011682016040523d82523d6000602084013e61228a565b606091505b50509050806122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c590613a5d565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612342576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123399061389d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124339190613760565b60405180910390a3505050565b61244b848484611d9d565b612457848484846128f9565b612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d9061381d565b60405180910390fd5b50505050565b606060008214156124e4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612644565b600082905060005b600082146125165780806124ff90613eb6565b915050600a8261250f9190613c86565b91506124ec565b60008167ffffffffffffffff811115612558577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561258a5781602001600182028036833780820191505090505b5090505b6000851461263d576001826125a39190613d11565b9150600a856125b29190613eff565b60306125be9190613c30565b60f81b8183815181106125fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126369190613c86565b945061258e565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008046600181146126f657600481146127125761272a565b73a5409ec958c83c3f309868babaca7c86dcb077c1915061272a565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b50600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561281b57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016127b391906136f9565b60206040518083038186803b1580156127cb57600080fd5b505afa1580156127df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128039190613132565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612899838383612a90565b505050565b6128a88383612ae8565b6128b560008484846128f9565b6128f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128eb9061381d565b60405180910390fd5b505050565b600061291a8473ffffffffffffffffffffffffffffffffffffffff16612cb6565b15612a83578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612943611bfe565b8786866040518563ffffffff1660e01b81526004016129659493929190613714565b602060405180830381600087803b15801561297f57600080fd5b505af19250505080156129b057506040513d601f19601f820116820180604052508101906129ad9190613109565b60015b612a33573d80600081146129e0576040519150601f19603f3d011682016040523d82523d6000602084013e6129e5565b606091505b50600081511415612a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a229061381d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a88565b600190505b949350505050565b612a9b838383612cc9565b612aa361105d565b15612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada906137bd565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4f9061397d565b60405180910390fd5b612b6181611b92565b15612ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b989061385d565b60405180910390fd5b612bad6000838361288e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bfd9190613c30565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b828054612cda90613e28565b90600052602060002090601f016020900481019282612cfc5760008555612d43565b82601f10612d1557805160ff1916838001178555612d43565b82800160010185558215612d43579182015b82811115612d42578251825591602001919060010190612d27565b5b509050612d509190612d54565b5090565b5b80821115612d6d576000816000905550600101612d55565b5090565b6000612d84612d7f84613b33565b613b0e565b905082815260208101848484011115612d9c57600080fd5b612da7848285613de6565b509392505050565b6000612dc2612dbd84613b64565b613b0e565b905082815260208101848484011115612dda57600080fd5b612de5848285613de6565b509392505050565b600081359050612dfc816145ef565b92915050565b600081359050612e1181614606565b92915050565b600081359050612e268161461d565b92915050565b600081519050612e3b8161461d565b92915050565b600082601f830112612e5257600080fd5b8135612e62848260208601612d71565b91505092915050565b600081519050612e7a81614634565b92915050565b600082601f830112612e9157600080fd5b8135612ea1848260208601612daf565b91505092915050565b600081359050612eb98161464b565b92915050565b600081359050612ece81614662565b92915050565b600060208284031215612ee657600080fd5b6000612ef484828501612ded565b91505092915050565b60008060408385031215612f1057600080fd5b6000612f1e85828601612ded565b9250506020612f2f85828601612ded565b9150509250929050565b600080600060608486031215612f4e57600080fd5b6000612f5c86828701612ded565b9350506020612f6d86828701612ded565b9250506040612f7e86828701612ebf565b9150509250925092565b60008060008060808587031215612f9e57600080fd5b6000612fac87828801612ded565b9450506020612fbd87828801612ded565b9350506040612fce87828801612ebf565b925050606085013567ffffffffffffffff811115612feb57600080fd5b612ff787828801612e41565b91505092959194509250565b6000806040838503121561301657600080fd5b600061302485828601612ded565b925050602061303585828601612e02565b9150509250929050565b6000806040838503121561305257600080fd5b600061306085828601612ded565b925050602061307185828601612eaa565b9150509250929050565b6000806040838503121561308e57600080fd5b600061309c85828601612ded565b92505060206130ad85828601612ebf565b9150509250929050565b6000602082840312156130c957600080fd5b60006130d784828501612e02565b91505092915050565b6000602082840312156130f257600080fd5b600061310084828501612e17565b91505092915050565b60006020828403121561311b57600080fd5b600061312984828501612e2c565b91505092915050565b60006020828403121561314457600080fd5b600061315284828501612e6b565b91505092915050565b60006020828403121561316d57600080fd5b600082013567ffffffffffffffff81111561318757600080fd5b61319384828501612e80565b91505092915050565b6000602082840312156131ae57600080fd5b60006131bc84828501612ebf565b91505092915050565b6131ce81613d45565b82525050565b6131dd81613d57565b82525050565b60006131ee82613baa565b6131f88185613bc0565b9350613208818560208601613df5565b61321181613fec565b840191505092915050565b600061322782613bb5565b6132318185613bdc565b9350613241818560208601613df5565b61324a81613fec565b840191505092915050565b600061326082613bb5565b61326a8185613bed565b935061327a818560208601613df5565b80840191505092915050565b6000815461329381613e28565b61329d8186613bed565b945060018216600081146132b857600181146132c9576132fc565b60ff198316865281860193506132fc565b6132d285613b95565b60005b838110156132f4578154818901526001820191506020810190506132d5565b838801955050505b50505092915050565b6000613312602183613bdc565b915061331d82613ffd565b604082019050919050565b6000613335602b83613bdc565b91506133408261404c565b604082019050919050565b6000613358601483613bdc565b91506133638261409b565b602082019050919050565b600061337b600e83613bdc565b9150613386826140c4565b602082019050919050565b600061339e603283613bdc565b91506133a9826140ed565b604082019050919050565b60006133c1602683613bdc565b91506133cc8261413c565b604082019050919050565b60006133e4601c83613bdc565b91506133ef8261418b565b602082019050919050565b6000613407602483613bdc565b9150613412826141b4565b604082019050919050565b600061342a601983613bdc565b915061343582614203565b602082019050919050565b600061344d600983613bdc565b91506134588261422c565b602082019050919050565b6000613470602c83613bdc565b915061347b82614255565b604082019050919050565b6000613493601083613bdc565b915061349e826142a4565b602082019050919050565b60006134b6603883613bdc565b91506134c1826142cd565b604082019050919050565b60006134d9602a83613bdc565b91506134e48261431c565b604082019050919050565b60006134fc602983613bdc565b91506135078261436b565b604082019050919050565b600061351f602083613bdc565b915061352a826143ba565b602082019050919050565b6000613542602c83613bdc565b915061354d826143e3565b604082019050919050565b6000613565602083613bdc565b915061357082614432565b602082019050919050565b6000613588602983613bdc565b91506135938261445b565b604082019050919050565b60006135ab601183613bdc565b91506135b6826144aa565b602082019050919050565b60006135ce602183613bdc565b91506135d9826144d3565b604082019050919050565b60006135f1601883613bdc565b91506135fc82614522565b602082019050919050565b6000613614600083613bd1565b915061361f8261454b565b600082019050919050565b6000613637601083613bdc565b91506136428261454e565b602082019050919050565b600061365a603183613bdc565b915061366582614577565b604082019050919050565b600061367d601f83613bdc565b9150613688826145c6565b602082019050919050565b61369c81613da1565b82525050565b6136ab81613dcf565b82525050565b6136ba81613dd9565b82525050565b60006136cc8285613286565b91506136d88284613255565b91508190509392505050565b60006136ef82613607565b9150819050919050565b600060208201905061370e60008301846131c5565b92915050565b600060808201905061372960008301876131c5565b61373660208301866131c5565b61374360408301856136a2565b818103606083015261375581846131e3565b905095945050505050565b600060208201905061377560008301846131d4565b92915050565b60006020820190508181036000830152613795818461321c565b905092915050565b600060208201905081810360008301526137b681613305565b9050919050565b600060208201905081810360008301526137d681613328565b9050919050565b600060208201905081810360008301526137f68161334b565b9050919050565b600060208201905081810360008301526138168161336e565b9050919050565b6000602082019050818103600083015261383681613391565b9050919050565b60006020820190508181036000830152613856816133b4565b9050919050565b60006020820190508181036000830152613876816133d7565b9050919050565b60006020820190508181036000830152613896816133fa565b9050919050565b600060208201905081810360008301526138b68161341d565b9050919050565b600060208201905081810360008301526138d681613440565b9050919050565b600060208201905081810360008301526138f681613463565b9050919050565b6000602082019050818103600083015261391681613486565b9050919050565b60006020820190508181036000830152613936816134a9565b9050919050565b60006020820190508181036000830152613956816134cc565b9050919050565b60006020820190508181036000830152613976816134ef565b9050919050565b6000602082019050818103600083015261399681613512565b9050919050565b600060208201905081810360008301526139b681613535565b9050919050565b600060208201905081810360008301526139d681613558565b9050919050565b600060208201905081810360008301526139f68161357b565b9050919050565b60006020820190508181036000830152613a168161359e565b9050919050565b60006020820190508181036000830152613a36816135c1565b9050919050565b60006020820190508181036000830152613a56816135e4565b9050919050565b60006020820190508181036000830152613a768161362a565b9050919050565b60006020820190508181036000830152613a968161364d565b9050919050565b60006020820190508181036000830152613ab681613670565b9050919050565b6000602082019050613ad26000830184613693565b92915050565b6000602082019050613aed60008301846136a2565b92915050565b6000602082019050613b0860008301846136b1565b92915050565b6000613b18613b29565b9050613b248282613e5a565b919050565b6000604051905090565b600067ffffffffffffffff821115613b4e57613b4d613fbd565b5b613b5782613fec565b9050602081019050919050565b600067ffffffffffffffff821115613b7f57613b7e613fbd565b5b613b8882613fec565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c0382613da1565b9150613c0e83613da1565b92508261ffff03821115613c2557613c24613f30565b5b828201905092915050565b6000613c3b82613dcf565b9150613c4683613dcf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7b57613c7a613f30565b5b828201905092915050565b6000613c9182613dcf565b9150613c9c83613dcf565b925082613cac57613cab613f5f565b5b828204905092915050565b6000613cc282613dcf565b9150613ccd83613dcf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0657613d05613f30565b5b828202905092915050565b6000613d1c82613dcf565b9150613d2783613dcf565b925082821015613d3a57613d39613f30565b5b828203905092915050565b6000613d5082613daf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613d9a82613d45565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613e13578082015181840152602081019050613df8565b83811115613e22576000848401525b50505050565b60006002820490506001821680613e4057607f821691505b60208210811415613e5457613e53613f8e565b5b50919050565b613e6382613fec565b810181811067ffffffffffffffff82111715613e8257613e81613fbd565b5b80604052505050565b6000613e9682613da1565b915061ffff821415613eab57613eaa613f30565b5b600182019050919050565b6000613ec182613dcf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ef457613ef3613f30565b5b600182019050919050565b6000613f0a82613dcf565b9150613f1583613dcf565b925082613f2557613f24613f5f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231436f6d6d6f6e3a20546f6b656e20646f65736e2774206578697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45786365656473206e756d626572000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742079657420737461727465640000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6145f881613d45565b811461460357600080fd5b50565b61460f81613d57565b811461461a57600080fd5b50565b61462681613d63565b811461463157600080fd5b50565b61463d81613d8f565b811461464857600080fd5b50565b61465481613da1565b811461465f57600080fd5b50565b61466b81613dcf565b811461467657600080fd5b5056fea264697066735822122045d976b130f56cec52f334d1b435bbce76e5ce017afd98de409f22a727c0816c64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000018494e43455054494f4e5041535320436f6c6c6563746976650000000000000000000000000000000000000000000000000000000000000000000000000000000d494e43455054494f4e5041535300000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c806369f66cb71161012357806395d89b41116100ab578063d547cfb71161006f578063d547cfb714610793578063d897833e146107be578063e985e9c5146107e7578063f2fde38b14610824578063f69d399a1461084d57610225565b806395d89b41146106ae5780639a735041146106d9578063a22cb46514610704578063b88d4fde1461072d578063c87b56dd1461075657610225565b80638281b3ac116100f25780638281b3ac1461060c5780638456cb5914610637578063853828b61461064e5780638b2189a0146106585780638da5cb5b1461068357610225565b806369f66cb7146105625780636fae29ff1461058d57806370a08231146105b8578063715018a6146105f557610225565b806330176e13116101b1578063578664f611610175578063578664f61461047957806357d4c4ee146104a45780635c975abb146104cf5780636352211e146104fa57806368428a1b1461053757610225565b806330176e13146103cb5780633cf5d242146103f45780633f4ba83a1461041057806342842e0e1461042757806349d429a01461045057610225565b806318160ddd116101f857806318160ddd146102f85780631fc1b1041461032357806323b872dd1461034e57806325264cbe146103775780632d02a5b2146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906130e0565b610869565b60405161025e9190613760565b60405180910390f35b34801561027357600080fd5b5061027c61087b565b604051610289919061377b565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061319c565b61090d565b6040516102c691906136f9565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061307b565b610992565b005b34801561030457600080fd5b5061030d610aaa565b60405161031a9190613ad8565b60405180910390f35b34801561032f57600080fd5b50610338610ae1565b6040516103459190613abd565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612f39565b610af5565b005b34801561038357600080fd5b5061038c610b55565b6040516103999190613abd565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c4919061319c565b610b5b565b005b3480156103d757600080fd5b506103f260048036038101906103ed919061315b565b610be1565b005b61040e6004803603810190610409919061303f565b610c77565b005b34801561041c57600080fd5b50610425610f17565b005b34801561043357600080fd5b5061044e60048036038101906104499190612f39565b610f9d565b005b34801561045c57600080fd5b506104776004803603810190610472919061319c565b610fbd565b005b34801561048557600080fd5b5061048e611043565b60405161049b9190613abd565b60405180910390f35b3480156104b057600080fd5b506104b9611057565b6040516104c69190613abd565b60405180910390f35b3480156104db57600080fd5b506104e461105d565b6040516104f19190613760565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061319c565b611074565b60405161052e91906136f9565b60405180910390f35b34801561054357600080fd5b5061054c611126565b6040516105599190613760565b60405180910390f35b34801561056e57600080fd5b50610577611139565b6040516105849190613ad8565b60405180910390f35b34801561059957600080fd5b506105a261113f565b6040516105af9190613abd565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190612ed4565b611145565b6040516105ec9190613ad8565b60405180910390f35b34801561060157600080fd5b5061060a6111fd565b005b34801561061857600080fd5b50610621611285565b60405161062e9190613ad8565b60405180910390f35b34801561064357600080fd5b5061064c61128b565b005b610656611311565b005b34801561066457600080fd5b5061066d6113f6565b60405161067a9190613af3565b60405180910390f35b34801561068f57600080fd5b506106986113fb565b6040516106a591906136f9565b60405180910390f35b3480156106ba57600080fd5b506106c3611425565b6040516106d0919061377b565b60405180910390f35b3480156106e557600080fd5b506106ee6114b7565b6040516106fb9190613af3565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613003565b6114bc565b005b34801561073957600080fd5b50610754600480360381019061074f9190612f88565b6114d2565b005b34801561076257600080fd5b5061077d6004803603810190610778919061319c565b611534565b60405161078a919061377b565b60405180910390f35b34801561079f57600080fd5b506107a86115de565b6040516107b5919061377b565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e091906130b7565b61166c565b005b3480156107f357600080fd5b5061080e60048036038101906108099190612efd565b611705565b60405161081b9190613760565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190612ed4565b61172a565b005b6108676004803603810190610862919061303f565b611822565b005b600061087482611ab0565b9050919050565b60606000805461088a90613e28565b80601f01602080910402602001604051908101604052809291908181526020018280546108b690613e28565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b5050505050905090565b600061091882611b92565b610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e9061399d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099d82611074565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590613a1d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2d611bfe565b73ffffffffffffffffffffffffffffffffffffffff161480610a5c5750610a5b81610a56611bfe565b611705565b5b610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a929061391d565b60405180910390fd5b610aa58383611c06565b505050565b6000600860019054906101000a900461ffff16600860039054906101000a900461ffff16610ad89190613bf8565b61ffff16905090565b600860019054906101000a900461ffff1681565b610b06610b00611bfe565b82611cbf565b610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90613a7d565b60405180910390fd5b610b50838383611d9d565b505050565b61119481565b610b63611bfe565b73ffffffffffffffffffffffffffffffffffffffff16610b816113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906139bd565b60405180910390fd5b80600a8190555050565b610be9611bfe565b73ffffffffffffffffffffffffffffffffffffffff16610c076113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c54906139bd565b60405180910390fd5b80600b9080519060200190610c73929190612cce565b5050565b60026007541415610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490613a9d565b60405180910390fd5b6002600781905550610ccd61105d565b15610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906138fd565b60405180910390fd5b60011515600860009054906101000a900460ff16151514610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90613a3d565b60405180910390fd5b61119461ffff1681600860019054906101000a900461ffff16610d869190613bf8565b61ffff161115610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906138bd565b60405180910390fd5b600260ff168161ffff161115610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d906137fd565b60405180910390fd5b6109c4600860019054906101000a900461ffff1661ffff161115610e89578061ffff16600954610e469190613cb7565b341015610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f906139fd565b60405180910390fd5b5b60005b8161ffff16811015610f0a576000600860019054906101000a900461ffff1690506008600181819054906101000a900461ffff1680929190610ecd90613e8b565b91906101000a81548161ffff021916908361ffff16021790555050610ef6848261ffff16611ff9565b508080610f0290613eb6565b915050610e8c565b5060016007819055505050565b610f1f611bfe565b73ffffffffffffffffffffffffffffffffffffffff16610f3d6113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a906139bd565b60405180910390fd5b610f9b612017565b565b610fb8838383604051806020016040528060008152506114d2565b505050565b610fc5611bfe565b73ffffffffffffffffffffffffffffffffffffffff16610fe36113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611030906139bd565b60405180910390fd5b8060098190555050565b600860039054906101000a900461ffff1681565b61138881565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561111d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111149061395d565b60405180910390fd5b80915050919050565b600860009054906101000a900460ff1681565b60095481565b6101f481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad9061393d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611205611bfe565b73ffffffffffffffffffffffffffffffffffffffff166112236113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611270906139bd565b60405180910390fd5b61128360006120b9565b565b600a5481565b611293611bfe565b73ffffffffffffffffffffffffffffffffffffffff166112b16113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906139bd565b60405180910390fd5b61130f61217f565b565b611319611bfe565b73ffffffffffffffffffffffffffffffffffffffff166113376113fb565b73ffffffffffffffffffffffffffffffffffffffff161461138d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611384906139bd565b60405180910390fd5b60004790506000811161139f57600080fd5b6113d57379792bf612bf456ff9ed70f5016c1c01ee9c759860646050846113c69190613cb7565b6113d09190613c86565b612222565b6113f373de4cd210246271a3595870ce5442298550c0a26347612222565b50565b600581565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461143490613e28565b80601f016020809104026020016040519081016040528092919081815260200182805461146090613e28565b80156114ad5780601f10611482576101008083540402835291602001916114ad565b820191906000526020600020905b81548152906001019060200180831161149057829003601f168201915b5050505050905090565b600281565b6114ce6114c7611bfe565b83836122d3565b5050565b6114e36114dd611bfe565b83611cbf565b611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990613a7d565b60405180910390fd5b61152e84848484612440565b50505050565b60608161154081611b92565b61157f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115769061379d565b60405180910390fd5b6000600b805461158e90613e28565b9050116115aa57604051806020016040528060008152506115d6565b600b6115b58461249c565b6040516020016115c69291906136c0565b6040516020818303038152906040525b915050919050565b600b80546115eb90613e28565b80601f016020809104026020016040519081016040528092919081815260200182805461161790613e28565b80156116645780601f1061163957610100808354040283529160200191611664565b820191906000526020600020905b81548152906001019060200180831161164757829003601f168201915b505050505081565b611674611bfe565b73ffffffffffffffffffffffffffffffffffffffff166116926113fb565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df906139bd565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b60006117118383612649565b80611722575061172183836126dd565b5b905092915050565b611732611bfe565b73ffffffffffffffffffffffffffffffffffffffff166117506113fb565b73ffffffffffffffffffffffffffffffffffffffff16146117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d906139bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d9061383d565b60405180910390fd5b61181f816120b9565b50565b60026007541415611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f90613a9d565b60405180910390fd5b600260078190555061187861105d565b156118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af906138fd565b60405180910390fd5b60011515600860009054906101000a900460ff1615151461190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590613a3d565b60405180910390fd5b6101f461ffff1681600860039054906101000a900461ffff166119319190613bf8565b61ffff161115611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d906138bd565b60405180910390fd5b600560ff168161ffff1611156119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b8906137fd565b60405180910390fd5b8061ffff16600a546119d39190613cb7565b341015611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c906139fd565b60405180910390fd5b60005b8161ffff16811015611aa3576000600860039054906101000a900461ffff16611194611a449190613bf8565b90506008600381819054906101000a900461ffff1680929190611a6690613e8b565b91906101000a81548161ffff021916908361ffff16021790555050611a8f848261ffff16611ff9565b508080611a9b90613eb6565b915050611a18565b5060016007819055505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b7b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b8b5750611b8a82612824565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c7983611074565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cca82611b92565b611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906138dd565b60405180910390fd5b6000611d1483611074565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d8357508373ffffffffffffffffffffffffffffffffffffffff16611d6b8461090d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d945750611d938185611705565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dbd82611074565b73ffffffffffffffffffffffffffffffffffffffff1614611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a906139dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a9061387d565b60405180910390fd5b611e8e83838361288e565b611e99600082611c06565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee99190613d11565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f409190613c30565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61201382826040518060200160405280600081525061289e565b5050565b61201f61105d565b61205e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612055906137dd565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120a2611bfe565b6040516120af91906136f9565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61218761105d565b156121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be906138fd565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861220b611bfe565b60405161221891906136f9565b60405180910390a1565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612248906136e4565b60006040518083038185875af1925050503d8060008114612285576040519150601f19603f3d011682016040523d82523d6000602084013e61228a565b606091505b50509050806122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c590613a5d565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612342576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123399061389d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124339190613760565b60405180910390a3505050565b61244b848484611d9d565b612457848484846128f9565b612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d9061381d565b60405180910390fd5b50505050565b606060008214156124e4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612644565b600082905060005b600082146125165780806124ff90613eb6565b915050600a8261250f9190613c86565b91506124ec565b60008167ffffffffffffffff811115612558577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561258a5781602001600182028036833780820191505090505b5090505b6000851461263d576001826125a39190613d11565b9150600a856125b29190613eff565b60306125be9190613c30565b60f81b8183815181106125fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126369190613c86565b945061258e565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008046600181146126f657600481146127125761272a565b73a5409ec958c83c3f309868babaca7c86dcb077c1915061272a565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b50600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561281b57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016127b391906136f9565b60206040518083038186803b1580156127cb57600080fd5b505afa1580156127df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128039190613132565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612899838383612a90565b505050565b6128a88383612ae8565b6128b560008484846128f9565b6128f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128eb9061381d565b60405180910390fd5b505050565b600061291a8473ffffffffffffffffffffffffffffffffffffffff16612cb6565b15612a83578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612943611bfe565b8786866040518563ffffffff1660e01b81526004016129659493929190613714565b602060405180830381600087803b15801561297f57600080fd5b505af19250505080156129b057506040513d601f19601f820116820180604052508101906129ad9190613109565b60015b612a33573d80600081146129e0576040519150601f19603f3d011682016040523d82523d6000602084013e6129e5565b606091505b50600081511415612a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a229061381d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a88565b600190505b949350505050565b612a9b838383612cc9565b612aa361105d565b15612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada906137bd565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4f9061397d565b60405180910390fd5b612b6181611b92565b15612ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b989061385d565b60405180910390fd5b612bad6000838361288e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bfd9190613c30565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b828054612cda90613e28565b90600052602060002090601f016020900481019282612cfc5760008555612d43565b82601f10612d1557805160ff1916838001178555612d43565b82800160010185558215612d43579182015b82811115612d42578251825591602001919060010190612d27565b5b509050612d509190612d54565b5090565b5b80821115612d6d576000816000905550600101612d55565b5090565b6000612d84612d7f84613b33565b613b0e565b905082815260208101848484011115612d9c57600080fd5b612da7848285613de6565b509392505050565b6000612dc2612dbd84613b64565b613b0e565b905082815260208101848484011115612dda57600080fd5b612de5848285613de6565b509392505050565b600081359050612dfc816145ef565b92915050565b600081359050612e1181614606565b92915050565b600081359050612e268161461d565b92915050565b600081519050612e3b8161461d565b92915050565b600082601f830112612e5257600080fd5b8135612e62848260208601612d71565b91505092915050565b600081519050612e7a81614634565b92915050565b600082601f830112612e9157600080fd5b8135612ea1848260208601612daf565b91505092915050565b600081359050612eb98161464b565b92915050565b600081359050612ece81614662565b92915050565b600060208284031215612ee657600080fd5b6000612ef484828501612ded565b91505092915050565b60008060408385031215612f1057600080fd5b6000612f1e85828601612ded565b9250506020612f2f85828601612ded565b9150509250929050565b600080600060608486031215612f4e57600080fd5b6000612f5c86828701612ded565b9350506020612f6d86828701612ded565b9250506040612f7e86828701612ebf565b9150509250925092565b60008060008060808587031215612f9e57600080fd5b6000612fac87828801612ded565b9450506020612fbd87828801612ded565b9350506040612fce87828801612ebf565b925050606085013567ffffffffffffffff811115612feb57600080fd5b612ff787828801612e41565b91505092959194509250565b6000806040838503121561301657600080fd5b600061302485828601612ded565b925050602061303585828601612e02565b9150509250929050565b6000806040838503121561305257600080fd5b600061306085828601612ded565b925050602061307185828601612eaa565b9150509250929050565b6000806040838503121561308e57600080fd5b600061309c85828601612ded565b92505060206130ad85828601612ebf565b9150509250929050565b6000602082840312156130c957600080fd5b60006130d784828501612e02565b91505092915050565b6000602082840312156130f257600080fd5b600061310084828501612e17565b91505092915050565b60006020828403121561311b57600080fd5b600061312984828501612e2c565b91505092915050565b60006020828403121561314457600080fd5b600061315284828501612e6b565b91505092915050565b60006020828403121561316d57600080fd5b600082013567ffffffffffffffff81111561318757600080fd5b61319384828501612e80565b91505092915050565b6000602082840312156131ae57600080fd5b60006131bc84828501612ebf565b91505092915050565b6131ce81613d45565b82525050565b6131dd81613d57565b82525050565b60006131ee82613baa565b6131f88185613bc0565b9350613208818560208601613df5565b61321181613fec565b840191505092915050565b600061322782613bb5565b6132318185613bdc565b9350613241818560208601613df5565b61324a81613fec565b840191505092915050565b600061326082613bb5565b61326a8185613bed565b935061327a818560208601613df5565b80840191505092915050565b6000815461329381613e28565b61329d8186613bed565b945060018216600081146132b857600181146132c9576132fc565b60ff198316865281860193506132fc565b6132d285613b95565b60005b838110156132f4578154818901526001820191506020810190506132d5565b838801955050505b50505092915050565b6000613312602183613bdc565b915061331d82613ffd565b604082019050919050565b6000613335602b83613bdc565b91506133408261404c565b604082019050919050565b6000613358601483613bdc565b91506133638261409b565b602082019050919050565b600061337b600e83613bdc565b9150613386826140c4565b602082019050919050565b600061339e603283613bdc565b91506133a9826140ed565b604082019050919050565b60006133c1602683613bdc565b91506133cc8261413c565b604082019050919050565b60006133e4601c83613bdc565b91506133ef8261418b565b602082019050919050565b6000613407602483613bdc565b9150613412826141b4565b604082019050919050565b600061342a601983613bdc565b915061343582614203565b602082019050919050565b600061344d600983613bdc565b91506134588261422c565b602082019050919050565b6000613470602c83613bdc565b915061347b82614255565b604082019050919050565b6000613493601083613bdc565b915061349e826142a4565b602082019050919050565b60006134b6603883613bdc565b91506134c1826142cd565b604082019050919050565b60006134d9602a83613bdc565b91506134e48261431c565b604082019050919050565b60006134fc602983613bdc565b91506135078261436b565b604082019050919050565b600061351f602083613bdc565b915061352a826143ba565b602082019050919050565b6000613542602c83613bdc565b915061354d826143e3565b604082019050919050565b6000613565602083613bdc565b915061357082614432565b602082019050919050565b6000613588602983613bdc565b91506135938261445b565b604082019050919050565b60006135ab601183613bdc565b91506135b6826144aa565b602082019050919050565b60006135ce602183613bdc565b91506135d9826144d3565b604082019050919050565b60006135f1601883613bdc565b91506135fc82614522565b602082019050919050565b6000613614600083613bd1565b915061361f8261454b565b600082019050919050565b6000613637601083613bdc565b91506136428261454e565b602082019050919050565b600061365a603183613bdc565b915061366582614577565b604082019050919050565b600061367d601f83613bdc565b9150613688826145c6565b602082019050919050565b61369c81613da1565b82525050565b6136ab81613dcf565b82525050565b6136ba81613dd9565b82525050565b60006136cc8285613286565b91506136d88284613255565b91508190509392505050565b60006136ef82613607565b9150819050919050565b600060208201905061370e60008301846131c5565b92915050565b600060808201905061372960008301876131c5565b61373660208301866131c5565b61374360408301856136a2565b818103606083015261375581846131e3565b905095945050505050565b600060208201905061377560008301846131d4565b92915050565b60006020820190508181036000830152613795818461321c565b905092915050565b600060208201905081810360008301526137b681613305565b9050919050565b600060208201905081810360008301526137d681613328565b9050919050565b600060208201905081810360008301526137f68161334b565b9050919050565b600060208201905081810360008301526138168161336e565b9050919050565b6000602082019050818103600083015261383681613391565b9050919050565b60006020820190508181036000830152613856816133b4565b9050919050565b60006020820190508181036000830152613876816133d7565b9050919050565b60006020820190508181036000830152613896816133fa565b9050919050565b600060208201905081810360008301526138b68161341d565b9050919050565b600060208201905081810360008301526138d681613440565b9050919050565b600060208201905081810360008301526138f681613463565b9050919050565b6000602082019050818103600083015261391681613486565b9050919050565b60006020820190508181036000830152613936816134a9565b9050919050565b60006020820190508181036000830152613956816134cc565b9050919050565b60006020820190508181036000830152613976816134ef565b9050919050565b6000602082019050818103600083015261399681613512565b9050919050565b600060208201905081810360008301526139b681613535565b9050919050565b600060208201905081810360008301526139d681613558565b9050919050565b600060208201905081810360008301526139f68161357b565b9050919050565b60006020820190508181036000830152613a168161359e565b9050919050565b60006020820190508181036000830152613a36816135c1565b9050919050565b60006020820190508181036000830152613a56816135e4565b9050919050565b60006020820190508181036000830152613a768161362a565b9050919050565b60006020820190508181036000830152613a968161364d565b9050919050565b60006020820190508181036000830152613ab681613670565b9050919050565b6000602082019050613ad26000830184613693565b92915050565b6000602082019050613aed60008301846136a2565b92915050565b6000602082019050613b0860008301846136b1565b92915050565b6000613b18613b29565b9050613b248282613e5a565b919050565b6000604051905090565b600067ffffffffffffffff821115613b4e57613b4d613fbd565b5b613b5782613fec565b9050602081019050919050565b600067ffffffffffffffff821115613b7f57613b7e613fbd565b5b613b8882613fec565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c0382613da1565b9150613c0e83613da1565b92508261ffff03821115613c2557613c24613f30565b5b828201905092915050565b6000613c3b82613dcf565b9150613c4683613dcf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7b57613c7a613f30565b5b828201905092915050565b6000613c9182613dcf565b9150613c9c83613dcf565b925082613cac57613cab613f5f565b5b828204905092915050565b6000613cc282613dcf565b9150613ccd83613dcf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0657613d05613f30565b5b828202905092915050565b6000613d1c82613dcf565b9150613d2783613dcf565b925082821015613d3a57613d39613f30565b5b828203905092915050565b6000613d5082613daf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613d9a82613d45565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613e13578082015181840152602081019050613df8565b83811115613e22576000848401525b50505050565b60006002820490506001821680613e4057607f821691505b60208210811415613e5457613e53613f8e565b5b50919050565b613e6382613fec565b810181811067ffffffffffffffff82111715613e8257613e81613fbd565b5b80604052505050565b6000613e9682613da1565b915061ffff821415613eab57613eaa613f30565b5b600182019050919050565b6000613ec182613dcf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ef457613ef3613f30565b5b600182019050919050565b6000613f0a82613dcf565b9150613f1583613dcf565b925082613f2557613f24613f5f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231436f6d6d6f6e3a20546f6b656e20646f65736e2774206578697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45786365656473206e756d626572000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742079657420737461727465640000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6145f881613d45565b811461460357600080fd5b50565b61460f81613d57565b811461461a57600080fd5b50565b61462681613d63565b811461463157600080fd5b50565b61463d81613d8f565b811461464857600080fd5b50565b61465481613da1565b811461465f57600080fd5b50565b61466b81613dcf565b811461467657600080fd5b5056fea264697066735822122045d976b130f56cec52f334d1b435bbce76e5ce017afd98de409f22a727c0816c64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000018494e43455054494f4e5041535320436f6c6c6563746976650000000000000000000000000000000000000000000000000000000000000000000000000000000d494e43455054494f4e5041535300000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): INCEPTIONPASS Collective
Arg [1] : symbol (string): INCEPTIONPASS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [3] : 494e43455054494f4e5041535320436f6c6c6563746976650000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 494e43455054494f4e5041535300000000000000000000000000000000000000


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.