ETH Price: $3,313.93 (+1.32%)
Gas: 8 Gwei

Token

Pirate Ape Crew (PAC)
 

Overview

Max Total Supply

1,115 PAC

Holders

319

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PAC
0xae3fa8178136d753aae723a4db62c9505e6477eb
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:
PirateApeCrew

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-05
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
	using Address for address;
	using Strings for uint256;

	// Compiler will pack this into a single 256bit word.
	struct TokenOwnership {
		// The address of the owner.
		address addr;
		// Keeps track of the start time of ownership with minimal overhead for tokenomics.
		uint64 startTimestamp;
		// Whether the token has been burned.
		bool burned;
	}

	// Compiler will pack this into a single 256bit word.
	struct AddressData {
		// Realistically, 2**64-1 is more than enough.
		uint64 balance;
		// Keeps track of mint count with minimal overhead for tokenomics.
		uint64 numberMinted;
		// Keeps track of burn count with minimal overhead for tokenomics.
		uint64 numberBurned;
		// For miscellaneous variable(s) pertaining to the address
		// (e.g. number of whitelist mint slots used).
		// If there are multiple variables, please pack them into a uint64.
		uint64 aux;
	}

	// The tokenId of the next token to be minted.
	uint256 internal _currentIndex;

	// The number of tokens burned.
	uint256 internal _burnCounter;

	// Token name
	string private _name;

	// Token symbol
	string private _symbol;

	// Mapping from token ID to ownership details
	// An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
	mapping(uint256 => TokenOwnership) internal _ownerships;

	// Mapping owner address to address data
	mapping(address => AddressData) private _addressData;

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

	constructor(string memory name_, string memory symbol_) {
		_name = name_;
		_symbol = symbol_;
		_currentIndex = _startTokenId();
	}

	/**
	 * To change the starting tokenId, please override this function.
	 */
	function _startTokenId() internal view virtual returns (uint256) {
		return 0;
	}

	/**
	 * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
	 */
	function totalSupply() public view returns (uint256) {
		// Counter underflow is impossible as _burnCounter cannot be incremented
		// more than _currentIndex - _startTokenId() times
		unchecked {
			return _currentIndex - _burnCounter - _startTokenId();
		}
	}

	/**
	 * Returns the total amount of tokens minted in the contract.
	 */
	function _totalMinted() internal view returns (uint256) {
		// Counter underflow is impossible as _currentIndex does not decrement,
		// and it is initialized to _startTokenId()
		unchecked {
			return _currentIndex - _startTokenId();
		}
	}

	/**
	 * @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 override returns (uint256) {
		if (owner == address(0)) revert BalanceQueryForZeroAddress();
		return uint256(_addressData[owner].balance);
	}

	/**
	 * Returns the number of tokens minted by `owner`.
	 */
	function _numberMinted(address owner) internal view returns (uint256) {
		return uint256(_addressData[owner].numberMinted);
	}

	/**
	 * Returns the number of tokens burned by or on behalf of `owner`.
	 */
	function _numberBurned(address owner) internal view returns (uint256) {
		return uint256(_addressData[owner].numberBurned);
	}

	/**
	 * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
	 */
	function _getAux(address owner) internal view returns (uint64) {
		return _addressData[owner].aux;
	}

	/**
	 * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
	 * If there are multiple variables, please pack them into a uint64.
	 */
	function _setAux(address owner, uint64 aux) internal {
		_addressData[owner].aux = aux;
	}

	/**
	 * Gas spent here starts off proportional to the maximum mint batch size.
	 * It gradually moves to O(1) as tokens get transferred around in the collection over time.
	 */
	function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
		uint256 curr = tokenId;

		unchecked {
			if (_startTokenId() <= curr && curr < _currentIndex) {
				TokenOwnership memory ownership = _ownerships[curr];
				if (!ownership.burned) {
					if (ownership.addr != address(0)) {
						return ownership;
					}
					// Invariant:
					// There will always be an ownership that has an address and is not burned
					// before an ownership that does not have an address and is not burned.
					// Hence, curr will not underflow.
					while (true) {
						curr--;
						ownership = _ownerships[curr];
						if (ownership.addr != address(0)) {
							return ownership;
						}
					}
				}
			}
		}
		revert OwnerQueryForNonexistentToken();
	}

	/**
	 * @dev See {IERC721-ownerOf}.
	 */
	function ownerOf(uint256 tokenId) public view override returns (address) {
		return _ownershipOf(tokenId).addr;
	}

	/**
	 * @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) {
		if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

		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 override {
		address owner = ERC721A.ownerOf(tokenId);
		if (to == owner) revert ApprovalToCurrentOwner();

		if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
			revert ApprovalCallerNotOwnerNorApproved();
		}

		_approve(to, tokenId, owner);
	}

	/**
	 * @dev See {IERC721-getApproved}.
	 */
	function getApproved(uint256 tokenId) public view override returns (address) {
		if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

		return _tokenApprovals[tokenId];
	}

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

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

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

	/**
	 * @dev See {IERC721-transferFrom}.
	 */
	function transferFrom(
		address from,
		address to,
		uint256 tokenId
	) public virtual override {
		_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 {
		_transfer(from, to, tokenId);
		if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
			revert TransferToNonERC721ReceiverImplementer();
		}
	}

	/**
	 * @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`),
	 */
	function _exists(uint256 tokenId) internal view returns (bool) {
		return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
	}

	function _safeMint(address to, uint256 quantity) internal {
		_safeMint(to, quantity, '');
	}

	/**
	 * @dev Safely mints `quantity` tokens and transfers them to `to`.
	 *
	 * Requirements:
	 *
	 * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
	 * - `quantity` must be greater than 0.
	 *
	 * Emits a {Transfer} event.
	 */
	function _safeMint(
		address to,
		uint256 quantity,
		bytes memory _data
	) internal {
		_mint(to, quantity, _data, true);
	}

	/**
	 * @dev Mints `quantity` tokens and transfers them to `to`.
	 *
	 * Requirements:
	 *
	 * - `to` cannot be the zero address.
	 * - `quantity` must be greater than 0.
	 *
	 * Emits a {Transfer} event.
	 */
	function _mint(
		address to,
		uint256 quantity,
		bytes memory _data,
		bool safe
	) internal {
		uint256 startTokenId = _currentIndex;
		if (to == address(0)) revert MintToZeroAddress();
		if (quantity == 0) revert MintZeroQuantity();

		_beforeTokenTransfers(address(0), to, startTokenId, quantity);

		// Overflows are incredibly unrealistic.
		// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
		// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
		unchecked {
			_addressData[to].balance += uint64(quantity);
			_addressData[to].numberMinted += uint64(quantity);

			_ownerships[startTokenId].addr = to;
			_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

			uint256 updatedIndex = startTokenId;
			uint256 end = updatedIndex + quantity;

			if (safe && to.isContract()) {
				do {
					emit Transfer(address(0), to, updatedIndex);
					if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
						revert TransferToNonERC721ReceiverImplementer();
					}
				} while (updatedIndex != end);
				// Reentrancy protection
				if (_currentIndex != startTokenId) revert();
			} else {
				do {
					emit Transfer(address(0), to, updatedIndex++);
				} while (updatedIndex != end);
			}
			_currentIndex = updatedIndex;
		}
		_afterTokenTransfers(address(0), to, startTokenId, quantity);
	}

	/**
	 * @dev Transfers `tokenId` from `from` to `to`.
	 *
	 * 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
	) private {
		TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

		if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

		bool isApprovedOrOwner = (_msgSender() == from ||
			isApprovedForAll(from, _msgSender()) ||
			getApproved(tokenId) == _msgSender());

		if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
		if (to == address(0)) revert TransferToZeroAddress();

		_beforeTokenTransfers(from, to, tokenId, 1);

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

		// Underflow of the sender's balance is impossible because we check for
		// ownership above and the recipient's balance can't realistically overflow.
		// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
		unchecked {
			_addressData[from].balance -= 1;
			_addressData[to].balance += 1;

			TokenOwnership storage currSlot = _ownerships[tokenId];
			currSlot.addr = to;
			currSlot.startTimestamp = uint64(block.timestamp);

			// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
			// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
			uint256 nextTokenId = tokenId + 1;
			TokenOwnership storage nextSlot = _ownerships[nextTokenId];
			if (nextSlot.addr == address(0)) {
				// This will suffice for checking _exists(nextTokenId),
				// as a burned slot cannot contain the zero address.
				if (nextTokenId != _currentIndex) {
					nextSlot.addr = from;
					nextSlot.startTimestamp = prevOwnership.startTimestamp;
				}
			}
		}

		emit Transfer(from, to, tokenId);
		_afterTokenTransfers(from, to, tokenId, 1);
	}

	/**
	 * @dev This is equivalent to _burn(tokenId, false)
	 */
	function _burn(uint256 tokenId) internal virtual {
		_burn(tokenId, false);
	}

	/**
	 * @dev Destroys `tokenId`.
	 * The approval is cleared when the token is burned.
	 *
	 * Requirements:
	 *
	 * - `tokenId` must exist.
	 *
	 * Emits a {Transfer} event.
	 */
	function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
		TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

		address from = prevOwnership.addr;

		if (approvalCheck) {
			bool isApprovedOrOwner = (_msgSender() == from ||
				isApprovedForAll(from, _msgSender()) ||
				getApproved(tokenId) == _msgSender());

			if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
		}

		_beforeTokenTransfers(from, address(0), tokenId, 1);

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

		// Underflow of the sender's balance is impossible because we check for
		// ownership above and the recipient's balance can't realistically overflow.
		// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
		unchecked {
			AddressData storage addressData = _addressData[from];
			addressData.balance -= 1;
			addressData.numberBurned += 1;

			// Keep track of who burned the token, and the timestamp of burning.
			TokenOwnership storage currSlot = _ownerships[tokenId];
			currSlot.addr = from;
			currSlot.startTimestamp = uint64(block.timestamp);
			currSlot.burned = true;

			// If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
			// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
			uint256 nextTokenId = tokenId + 1;
			TokenOwnership storage nextSlot = _ownerships[nextTokenId];
			if (nextSlot.addr == address(0)) {
				// This will suffice for checking _exists(nextTokenId),
				// as a burned slot cannot contain the zero address.
				if (nextTokenId != _currentIndex) {
					nextSlot.addr = from;
					nextSlot.startTimestamp = prevOwnership.startTimestamp;
				}
			}
		}

		emit Transfer(from, address(0), tokenId);
		_afterTokenTransfers(from, address(0), tokenId, 1);

		// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
		unchecked {
			_burnCounter++;
		}
	}

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

	/**
	 * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
		address from,
		address to,
		uint256 tokenId,
		bytes memory _data
	) private returns (bool) {
		try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
			return retval == IERC721Receiver(to).onERC721Received.selector;
		} catch (bytes memory reason) {
			if (reason.length == 0) {
				revert TransferToNonERC721ReceiverImplementer();
			} else {
				assembly {
					revert(add(32, reason), mload(reason))
				}
			}
		}
	}

	/**
	 * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
	 * And also called before burning one token.
	 *
	 * startTokenId - the first token id to be transferred
	 * quantity - the amount to be transferred
	 *
	 * 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, `tokenId` will be burned by `from`.
	 * - `from` and `to` are never both zero.
	 */
	function _beforeTokenTransfers(
		address from,
		address to,
		uint256 startTokenId,
		uint256 quantity
	) internal virtual {}

	/**
	 * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
	 * minting.
	 * And also called after one token has been burned.
	 *
	 * startTokenId - the first token id to be transferred
	 * quantity - the amount to be transferred
	 *
	 * Calling conditions:
	 *
	 * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
	 * transferred to `to`.
	 * - When `from` is zero, `tokenId` has been minted for `to`.
	 * - When `to` is zero, `tokenId` has been burned by `from`.
	 * - `from` and `to` are never both zero.
	 */
	function _afterTokenTransfers(
		address from,
		address to,
		uint256 startTokenId,
		uint256 quantity
	) internal virtual {}
}
// File: PirateApeCrew.sol



pragma solidity 0.8.14;





contract PirateApeCrew is ERC721A, Ownable {
	using Strings for uint256;

	bool public paused;
	bool public revealed;

	string private _unrevealedUriPrefix;
	string private _uriPrefix;
	string private _uriSuffix;

	uint256 public cost;
	uint256 public maxSupply;
	uint256 public freeToMintSupply;
	uint256 public maxMintAmountPerAddress;


	constructor(string memory initUnrevealedUriPrefix) ERC721A("Pirate Ape Crew", "PAC") {
		paused = true;
		cost = 0.015 ether;
		maxSupply = 10_000;
		freeToMintSupply = 1_000;
		maxMintAmountPerAddress = 5;

		_uriSuffix = ".json";
		_unrevealedUriPrefix = initUnrevealedUriPrefix;
	}


	function mint(uint256 amount) external payable {
		require(tx.origin == _msgSender(), "PirateApeCrew: contract denied");
		require(!paused, "PirateApeCrew: minting is paused");
		require(_totalMinted() + amount <= maxSupply, "PirateApeCrew: max token supply exceeded");
		require(amount > 0 && _numberMinted(_msgSender()) + amount <= maxMintAmountPerAddress, "PirateApeCrew: invalid mint amount");

		if (_totalMinted() + amount > freeToMintSupply || _claimedFreeMint(_msgSender())) {
			require(msg.value >= cost * amount, "PirateApeCrew: insufficient ether");
		} else {
			_setAux(_msgSender(), 1);
		}

		_safeMint(_msgSender(), amount);
	}

	function airDrop(address[] calldata addresses, uint8[] calldata amounts) external onlyOwner {
		require(addresses.length == amounts.length && addresses.length > 0, "PirateApeCrew: invalid function arguments");

		uint256 newSupply = _totalMinted();
		for (uint256 i = 0; i < amounts.length; i++) newSupply += amounts[i];

		require(newSupply <= maxSupply, "PirateApeCrew: max token supply exceeded");

		for (uint256 i = 0; i < addresses.length; i++) {
			_safeMint(addresses[i], amounts[i]);
		}
	}

	function flipPausedState() external onlyOwner {
		paused = !paused;
	}

	function reveal(string memory initUriPrefix) external onlyOwner {
		revealed = true;

		_uriPrefix = initUriPrefix;
	}

	function withdraw() external onlyOwner {
		(bool success, ) = payable(owner()).call{ value: address(this).balance }("");

		require(success, "PirateApeCrew: failed to transfer");
	}


	function tokenURI(uint256 tokenID) public view override returns(string memory) {
		require(_exists(tokenID), "ERC721Metadata: URI query for nonexistent token");

		if (!revealed) return _unrevealedUriPrefix;

		string memory currentBaseURI = _baseURI();

		return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked(currentBaseURI, tokenID.toString(), _uriSuffix) ) : "";
	}

	function walletOfOwner(address account) external view returns(uint256[] memory) {
		uint256 ownerTokenCount = balanceOf(account);

		uint256[] memory ownedTokenIDs = new uint256[](ownerTokenCount);

		uint256 tokenIndex = 1;
		uint256 ownedTokenIndex = 0;

		while (ownedTokenIndex < ownerTokenCount && tokenIndex <= maxSupply) {
			address owner = ownerOf(tokenIndex);

			if (owner == account) {
				ownedTokenIDs[ownedTokenIndex] = tokenIndex;

				ownedTokenIndex++;
			}

			tokenIndex++;
		}

		return ownedTokenIDs;
	}


	function setURIprefix(string memory newPrefix) external onlyOwner {
		_uriPrefix = newPrefix;
	}

	function setUnrevealedURIprefix(string memory newUnrevealedURI) external onlyOwner {
		_unrevealedUriPrefix = newUnrevealedURI;
	}

	function setURIsuffix(string memory newSuffix) external onlyOwner {
		_uriSuffix = newSuffix;
	}

	function setMaxSupply(uint256 newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

	function setFreeToMintSupply(uint256 newFreeToMintSupply) external onlyOwner {
		freeToMintSupply = newFreeToMintSupply;
	}

	function setMaxMintAmountPerAddress(uint256 newMaxMintAmountPerAddress) external onlyOwner {
		maxMintAmountPerAddress = newMaxMintAmountPerAddress;
	}

	function setCost(uint256 newCost) external onlyOwner {
		cost = newCost;
	}


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

	function _startTokenId() internal pure override returns(uint256) {
		return 1;
	}

	function _claimedFreeMint(address account) internal view returns(bool) {
		return _getAux(account) == 0 ? false : true;
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initUnrevealedUriPrefix","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8[]","name":"amounts","type":"uint8[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPausedState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeToMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"initUriPrefix","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreeToMintSupply","type":"uint256"}],"name":"setFreeToMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintAmountPerAddress","type":"uint256"}],"name":"setMaxMintAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newPrefix","type":"string"}],"name":"setURIprefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSuffix","type":"string"}],"name":"setURIsuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUnrevealedURI","type":"string"}],"name":"setUnrevealedURIprefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162004a8c38038062004a8c8339818101604052810190620000379190620004e2565b6040518060400160405280600f81526020017f50697261746520417065204372657700000000000000000000000000000000008152506040518060400160405280600381526020017f50414300000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb92919062000295565b508060039080519060200190620000d492919062000295565b50620000e5620001be60201b60201c565b60008190555050506200010d62000101620001c760201b60201c565b620001cf60201b60201c565b6001600860146101000a81548160ff02191690831515021790555066354a6ba7a18000600c81905550612710600d819055506103e8600e819055506005600f819055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200019d92919062000295565b508060099080519060200190620001b692919062000295565b505062000597565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a39062000562565b90600052602060002090601f016020900481019282620002c7576000855562000313565b82601f10620002e257805160ff191683800117855562000313565b8280016001018555821562000313579182015b8281111562000312578251825591602001919060010190620002f5565b5b50905062000322919062000326565b5090565b5b808211156200034157600081600090555060010162000327565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003ae8262000363565b810181811067ffffffffffffffff82111715620003d057620003cf62000374565b5b80604052505050565b6000620003e562000345565b9050620003f38282620003a3565b919050565b600067ffffffffffffffff82111562000416576200041562000374565b5b620004218262000363565b9050602081019050919050565b60005b838110156200044e57808201518184015260208101905062000431565b838111156200045e576000848401525b50505050565b60006200047b6200047584620003f8565b620003d9565b9050828152602081018484840111156200049a57620004996200035e565b5b620004a78482856200042e565b509392505050565b600082601f830112620004c757620004c662000359565b5b8151620004d984826020860162000464565b91505092915050565b600060208284031215620004fb57620004fa6200034f565b5b600082015167ffffffffffffffff8111156200051c576200051b62000354565b5b6200052a84828501620004af565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200057b57607f821691505b60208210810362000591576200059062000533565b5b50919050565b6144e580620005a76000396000f3fe60806040526004361061020f5760003560e01c8063617dd82a11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461073e578063d5abeb011461077b578063e985e9c5146107a6578063f2fde38b146107e3578063f9daade41461080c5761020f565b8063a22cb4651461069a578063a5015229146106c3578063aff72141146106ec578063b88d4fde146107155761020f565b8063715018a6116100e7578063715018a6146105fa5780638da5cb5b1461061157806393eff8511461063c57806395d89b4114610653578063a0712d681461067e5761020f565b8063617dd82a1461052e5780636352211e146105575780636f8b44b01461059457806370a08231146105bd5761020f565b806342842e0e1161019b5780634c2612471161016a5780634c2612471461045b57806351830227146104845780635697f53e146104af5780635c41d75e146104d85780635c975abb146105035761020f565b806342842e0e146103a1578063438b6300146103ca57806344a0d68a146104075780634c1d3f8b146104305761020f565b806313faede6116101e257806313faede6146102e257806318160ddd1461030d5780631db2f61d1461033857806323b872dd146103615780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061320a565b610835565b6040516102489190613252565b60405180910390f35b34801561025d57600080fd5b50610266610917565b6040516102739190613306565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061335e565b6109a9565b6040516102b091906133cc565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613413565b610a25565b005b3480156102ee57600080fd5b506102f7610b2f565b6040516103049190613462565b60405180910390f35b34801561031957600080fd5b50610322610b35565b60405161032f9190613462565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a919061335e565b610b4c565b005b34801561036d57600080fd5b506103886004803603810190610383919061347d565b610bd2565b005b34801561039657600080fd5b5061039f610be2565b005b3480156103ad57600080fd5b506103c860048036038101906103c3919061347d565b610d14565b005b3480156103d657600080fd5b506103f160048036038101906103ec91906134d0565b610d34565b6040516103fe91906135bb565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061335e565b610e3e565b005b34801561043c57600080fd5b50610445610ec4565b6040516104529190613462565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190613712565b610eca565b005b34801561049057600080fd5b50610499610f7b565b6040516104a69190613252565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d1919061335e565b610f8e565b005b3480156104e457600080fd5b506104ed611014565b6040516104fa9190613462565b60405180910390f35b34801561050f57600080fd5b5061051861101a565b6040516105259190613252565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190613712565b61102d565b005b34801561056357600080fd5b5061057e6004803603810190610579919061335e565b6110c3565b60405161058b91906133cc565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b6919061335e565b6110d9565b005b3480156105c957600080fd5b506105e460048036038101906105df91906134d0565b61115f565b6040516105f19190613462565b60405180910390f35b34801561060657600080fd5b5061060f61122e565b005b34801561061d57600080fd5b506106266112b6565b60405161063391906133cc565b60405180910390f35b34801561064857600080fd5b506106516112e0565b005b34801561065f57600080fd5b50610668611388565b6040516106759190613306565b60405180910390f35b6106986004803603810190610693919061335e565b61141a565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190613787565b611650565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613712565b6117c7565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613712565b61185d565b005b34801561072157600080fd5b5061073c60048036038101906107379190613868565b6118f3565b005b34801561074a57600080fd5b506107656004803603810190610760919061335e565b61196f565b6040516107729190613306565b60405180910390f35b34801561078757600080fd5b50610790611ac0565b60405161079d9190613462565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c891906138eb565b611ac6565b6040516107da9190613252565b60405180910390f35b3480156107ef57600080fd5b5061080a600480360381019061080591906134d0565b611b5a565b005b34801561081857600080fd5b50610833600480360381019061082e91906139e1565b611c51565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610910575061090f82611e53565b5b9050919050565b60606002805461092690613a91565b80601f016020809104026020016040519081016040528092919081815260200182805461095290613a91565b801561099f5780601f106109745761010080835404028352916020019161099f565b820191906000526020600020905b81548152906001019060200180831161098257829003601f168201915b5050505050905090565b60006109b482611ebd565b6109ea576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a30826110c3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a97576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab6611f0b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ae85750610ae681610ae1611f0b565b611ac6565b155b15610b1f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2a838383611f13565b505050565b600c5481565b6000610b3f611fc5565b6001546000540303905090565b610b54611f0b565b73ffffffffffffffffffffffffffffffffffffffff16610b726112b6565b73ffffffffffffffffffffffffffffffffffffffff1614610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90613b0e565b60405180910390fd5b80600e8190555050565b610bdd838383611fce565b505050565b610bea611f0b565b73ffffffffffffffffffffffffffffffffffffffff16610c086112b6565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590613b0e565b60405180910390fd5b6000610c686112b6565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c8b90613b5f565b60006040518083038185875af1925050503d8060008114610cc8576040519150601f19603f3d011682016040523d82523d6000602084013e610ccd565b606091505b5050905080610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890613be6565b60405180910390fd5b50565b610d2f838383604051806020016040528060008152506118f3565b505050565b60606000610d418361115f565b905060008167ffffffffffffffff811115610d5f57610d5e6135e7565b5b604051908082528060200260200182016040528015610d8d5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610daa5750600d548211155b15610e32576000610dba836110c3565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e1e5782848381518110610e0357610e02613c06565b5b6020026020010181815250508180610e1a90613c64565b9250505b8280610e2990613c64565b93505050610d99565b82945050505050919050565b610e46611f0b565b73ffffffffffffffffffffffffffffffffffffffff16610e646112b6565b73ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190613b0e565b60405180910390fd5b80600c8190555050565b600e5481565b610ed2611f0b565b73ffffffffffffffffffffffffffffffffffffffff16610ef06112b6565b73ffffffffffffffffffffffffffffffffffffffff1614610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90613b0e565b60405180910390fd5b6001600860156101000a81548160ff02191690831515021790555080600a9080519060200190610f779291906130b8565b5050565b600860159054906101000a900460ff1681565b610f96611f0b565b73ffffffffffffffffffffffffffffffffffffffff16610fb46112b6565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190613b0e565b60405180910390fd5b80600f8190555050565b600f5481565b600860149054906101000a900460ff1681565b611035611f0b565b73ffffffffffffffffffffffffffffffffffffffff166110536112b6565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090613b0e565b60405180910390fd5b80600a90805190602001906110bf9291906130b8565b5050565b60006110ce82612482565b600001519050919050565b6110e1611f0b565b73ffffffffffffffffffffffffffffffffffffffff166110ff6112b6565b73ffffffffffffffffffffffffffffffffffffffff1614611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c90613b0e565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611236611f0b565b73ffffffffffffffffffffffffffffffffffffffff166112546112b6565b73ffffffffffffffffffffffffffffffffffffffff16146112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613b0e565b60405180910390fd5b6112b46000612711565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112e8611f0b565b73ffffffffffffffffffffffffffffffffffffffff166113066112b6565b73ffffffffffffffffffffffffffffffffffffffff161461135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390613b0e565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b60606003805461139790613a91565b80601f01602080910402602001604051908101604052809291908181526020018280546113c390613a91565b80156114105780601f106113e557610100808354040283529160200191611410565b820191906000526020600020905b8154815290600101906020018083116113f357829003601f168201915b5050505050905090565b611422611f0b565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690613cf8565b60405180910390fd5b600860149054906101000a900460ff16156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690613d64565b60405180910390fd5b600d54816114eb6127d7565b6114f59190613d84565b1115611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613e4c565b60405180910390fd5b6000811180156115625750600f5481611555611550611f0b565b6127ea565b61155f9190613d84565b11155b6115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613ede565b60405180910390fd5b600e54816115ad6127d7565b6115b79190613d84565b11806115cf57506115ce6115c9611f0b565b612854565b5b156116295780600c546115e29190613efe565b341015611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90613fca565b60405180910390fd5b61163c565b61163b611634611f0b565b6001612880565b5b61164d611647611f0b565b826128ed565b50565b611658611f0b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116bc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116c9611f0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611776611f0b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117bb9190613252565b60405180910390a35050565b6117cf611f0b565b73ffffffffffffffffffffffffffffffffffffffff166117ed6112b6565b73ffffffffffffffffffffffffffffffffffffffff1614611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90613b0e565b60405180910390fd5b80600990805190602001906118599291906130b8565b5050565b611865611f0b565b73ffffffffffffffffffffffffffffffffffffffff166118836112b6565b73ffffffffffffffffffffffffffffffffffffffff16146118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090613b0e565b60405180910390fd5b80600b90805190602001906118ef9291906130b8565b5050565b6118fe848484611fce565b61191d8373ffffffffffffffffffffffffffffffffffffffff1661290b565b801561193257506119308484848461292e565b155b15611969576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061197a82611ebd565b6119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b09061405c565b60405180910390fd5b600860159054906101000a900460ff16611a5f57600980546119da90613a91565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0690613a91565b8015611a535780601f10611a2857610100808354040283529160200191611a53565b820191906000526020600020905b815481529060010190602001808311611a3657829003601f168201915b50505050509050611abb565b6000611a69612a7e565b90506000815111611a895760405180602001604052806000815250611ab7565b80611a9384612b10565b600b604051602001611aa79392919061414c565b6040516020818303038152906040525b9150505b919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b62611f0b565b73ffffffffffffffffffffffffffffffffffffffff16611b806112b6565b73ffffffffffffffffffffffffffffffffffffffff1614611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd90613b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c906141ef565b60405180910390fd5b611c4e81612711565b50565b611c59611f0b565b73ffffffffffffffffffffffffffffffffffffffff16611c776112b6565b73ffffffffffffffffffffffffffffffffffffffff1614611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490613b0e565b60405180910390fd5b8181905084849050148015611ce55750600084849050115b611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b90614281565b60405180910390fd5b6000611d2e6127d7565b905060005b83839050811015611d8957838382818110611d5157611d50613c06565b5b9050602002016020810190611d6691906142da565b60ff1682611d749190613d84565b91508080611d8190613c64565b915050611d33565b50600d54811115611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690613e4c565b60405180910390fd5b60005b85859050811015611e4b57611e38868683818110611df357611df2613c06565b5b9050602002016020810190611e0891906134d0565b858584818110611e1b57611e1a613c06565b5b9050602002016020810190611e3091906142da565b60ff166128ed565b8080611e4390613c64565b915050611dd2565b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611ec8611fc5565b11158015611ed7575060005482105b8015611f04575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fd982612482565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612044576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612065611f0b565b73ffffffffffffffffffffffffffffffffffffffff16148061209457506120938561208e611f0b565b611ac6565b5b806120d957506120a2611f0b565b73ffffffffffffffffffffffffffffffffffffffff166120c1846109a9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612112576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612178576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121858585856001612c70565b61219160008487611f13565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361241057600054821461240f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461247b8585856001612c76565b5050505050565b61248a61313e565b600082905080612498611fc5565b111580156124a7575060005481105b156126da576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516126d857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125bc57809250505061270c565b5b6001156126d757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126d257809250505061270c565b6125bd565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006127e1611fc5565b60005403905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60008061286083612c7c565b67ffffffffffffffff1614612876576001612879565b60005b9050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b612907828260405180602001604052806000815250612cdc565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612954611f0b565b8786866040518563ffffffff1660e01b8152600401612976949392919061435c565b6020604051808303816000875af19250505080156129b257506040513d601f19601f820116820180604052508101906129af91906143bd565b60015b612a2b573d80600081146129e2576040519150601f19603f3d011682016040523d82523d6000602084013e6129e7565b606091505b506000815103612a23576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612a8d90613a91565b80601f0160208091040260200160405190810160405280929190818152602001828054612ab990613a91565b8015612b065780601f10612adb57610100808354040283529160200191612b06565b820191906000526020600020905b815481529060010190602001808311612ae957829003601f168201915b5050505050905090565b606060008203612b57576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c6b565b600082905060005b60008214612b89578080612b7290613c64565b915050600a82612b829190614419565b9150612b5f565b60008167ffffffffffffffff811115612ba557612ba46135e7565b5b6040519080825280601f01601f191660200182016040528015612bd75781602001600182028036833780820191505090505b5090505b60008514612c6457600182612bf0919061444a565b9150600a85612bff919061447e565b6030612c0b9190613d84565b60f81b818381518110612c2157612c20613c06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c5d9190614419565b9450612bdb565b8093505050505b919050565b50505050565b50505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b612ce98383836001612cee565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612d5a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612d94576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612da16000868387612c70565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612f6b5750612f6a8773ffffffffffffffffffffffffffffffffffffffff1661290b565b5b15613030575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fe0600088848060010195508861292e565b613016576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612f7157826000541461302b57600080fd5b61309b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613031575b8160008190555050506130b16000868387612c76565b5050505050565b8280546130c490613a91565b90600052602060002090601f0160209004810192826130e6576000855561312d565b82601f106130ff57805160ff191683800117855561312d565b8280016001018555821561312d579182015b8281111561312c578251825591602001919060010190613111565b5b50905061313a9190613181565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561319a576000816000905550600101613182565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131e7816131b2565b81146131f257600080fd5b50565b600081359050613204816131de565b92915050565b6000602082840312156132205761321f6131a8565b5b600061322e848285016131f5565b91505092915050565b60008115159050919050565b61324c81613237565b82525050565b60006020820190506132676000830184613243565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132a757808201518184015260208101905061328c565b838111156132b6576000848401525b50505050565b6000601f19601f8301169050919050565b60006132d88261326d565b6132e28185613278565b93506132f2818560208601613289565b6132fb816132bc565b840191505092915050565b6000602082019050818103600083015261332081846132cd565b905092915050565b6000819050919050565b61333b81613328565b811461334657600080fd5b50565b60008135905061335881613332565b92915050565b600060208284031215613374576133736131a8565b5b600061338284828501613349565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133b68261338b565b9050919050565b6133c6816133ab565b82525050565b60006020820190506133e160008301846133bd565b92915050565b6133f0816133ab565b81146133fb57600080fd5b50565b60008135905061340d816133e7565b92915050565b6000806040838503121561342a576134296131a8565b5b6000613438858286016133fe565b925050602061344985828601613349565b9150509250929050565b61345c81613328565b82525050565b60006020820190506134776000830184613453565b92915050565b600080600060608486031215613496576134956131a8565b5b60006134a4868287016133fe565b93505060206134b5868287016133fe565b92505060406134c686828701613349565b9150509250925092565b6000602082840312156134e6576134e56131a8565b5b60006134f4848285016133fe565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61353281613328565b82525050565b60006135448383613529565b60208301905092915050565b6000602082019050919050565b6000613568826134fd565b6135728185613508565b935061357d83613519565b8060005b838110156135ae5781516135958882613538565b97506135a083613550565b925050600181019050613581565b5085935050505092915050565b600060208201905081810360008301526135d5818461355d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61361f826132bc565b810181811067ffffffffffffffff8211171561363e5761363d6135e7565b5b80604052505050565b600061365161319e565b905061365d8282613616565b919050565b600067ffffffffffffffff82111561367d5761367c6135e7565b5b613686826132bc565b9050602081019050919050565b82818337600083830152505050565b60006136b56136b084613662565b613647565b9050828152602081018484840111156136d1576136d06135e2565b5b6136dc848285613693565b509392505050565b600082601f8301126136f9576136f86135dd565b5b81356137098482602086016136a2565b91505092915050565b600060208284031215613728576137276131a8565b5b600082013567ffffffffffffffff811115613746576137456131ad565b5b613752848285016136e4565b91505092915050565b61376481613237565b811461376f57600080fd5b50565b6000813590506137818161375b565b92915050565b6000806040838503121561379e5761379d6131a8565b5b60006137ac858286016133fe565b92505060206137bd85828601613772565b9150509250929050565b600067ffffffffffffffff8211156137e2576137e16135e7565b5b6137eb826132bc565b9050602081019050919050565b600061380b613806846137c7565b613647565b905082815260208101848484011115613827576138266135e2565b5b613832848285613693565b509392505050565b600082601f83011261384f5761384e6135dd565b5b813561385f8482602086016137f8565b91505092915050565b60008060008060808587031215613882576138816131a8565b5b6000613890878288016133fe565b94505060206138a1878288016133fe565b93505060406138b287828801613349565b925050606085013567ffffffffffffffff8111156138d3576138d26131ad565b5b6138df8782880161383a565b91505092959194509250565b60008060408385031215613902576139016131a8565b5b6000613910858286016133fe565b9250506020613921858286016133fe565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261394b5761394a6135dd565b5b8235905067ffffffffffffffff8111156139685761396761392b565b5b60208301915083602082028301111561398457613983613930565b5b9250929050565b60008083601f8401126139a1576139a06135dd565b5b8235905067ffffffffffffffff8111156139be576139bd61392b565b5b6020830191508360208202830111156139da576139d9613930565b5b9250929050565b600080600080604085870312156139fb576139fa6131a8565b5b600085013567ffffffffffffffff811115613a1957613a186131ad565b5b613a2587828801613935565b9450945050602085013567ffffffffffffffff811115613a4857613a476131ad565b5b613a548782880161398b565b925092505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613aa957607f821691505b602082108103613abc57613abb613a62565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613af8602083613278565b9150613b0382613ac2565b602082019050919050565b60006020820190508181036000830152613b2781613aeb565b9050919050565b600081905092915050565b50565b6000613b49600083613b2e565b9150613b5482613b39565b600082019050919050565b6000613b6a82613b3c565b9150819050919050565b7f506972617465417065437265773a206661696c656420746f207472616e73666560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd0602183613278565b9150613bdb82613b74565b604082019050919050565b60006020820190508181036000830152613bff81613bc3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c6f82613328565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ca157613ca0613c35565b5b600182019050919050565b7f506972617465417065437265773a20636f6e74726163742064656e6965640000600082015250565b6000613ce2601e83613278565b9150613ced82613cac565b602082019050919050565b60006020820190508181036000830152613d1181613cd5565b9050919050565b7f506972617465417065437265773a206d696e74696e6720697320706175736564600082015250565b6000613d4e602083613278565b9150613d5982613d18565b602082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b6000613d8f82613328565b9150613d9a83613328565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dcf57613dce613c35565b5b828201905092915050565b7f506972617465417065437265773a206d617820746f6b656e20737570706c792060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b6000613e36602883613278565b9150613e4182613dda565b604082019050919050565b60006020820190508181036000830152613e6581613e29565b9050919050565b7f506972617465417065437265773a20696e76616c6964206d696e7420616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ec8602283613278565b9150613ed382613e6c565b604082019050919050565b60006020820190508181036000830152613ef781613ebb565b9050919050565b6000613f0982613328565b9150613f1483613328565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f4d57613f4c613c35565b5b828202905092915050565b7f506972617465417065437265773a20696e73756666696369656e74206574686560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fb4602183613278565b9150613fbf82613f58565b604082019050919050565b60006020820190508181036000830152613fe381613fa7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614046602f83613278565b915061405182613fea565b604082019050919050565b6000602082019050818103600083015261407581614039565b9050919050565b600081905092915050565b60006140928261326d565b61409c818561407c565b93506140ac818560208601613289565b80840191505092915050565b60008190508160005260206000209050919050565b600081546140da81613a91565b6140e4818661407c565b945060018216600081146140ff576001811461411057614143565b60ff19831686528186019350614143565b614119856140b8565b60005b8381101561413b5781548189015260018201915060208101905061411c565b838801955050505b50505092915050565b60006141588286614087565b91506141648285614087565b915061417082846140cd565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141d9602683613278565b91506141e48261417d565b604082019050919050565b60006020820190508181036000830152614208816141cc565b9050919050565b7f506972617465417065437265773a20696e76616c69642066756e6374696f6e2060008201527f617267756d656e74730000000000000000000000000000000000000000000000602082015250565b600061426b602983613278565b91506142768261420f565b604082019050919050565b6000602082019050818103600083015261429a8161425e565b9050919050565b600060ff82169050919050565b6142b7816142a1565b81146142c257600080fd5b50565b6000813590506142d4816142ae565b92915050565b6000602082840312156142f0576142ef6131a8565b5b60006142fe848285016142c5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b600061432e82614307565b6143388185614312565b9350614348818560208601613289565b614351816132bc565b840191505092915050565b600060808201905061437160008301876133bd565b61437e60208301866133bd565b61438b6040830185613453565b818103606083015261439d8184614323565b905095945050505050565b6000815190506143b7816131de565b92915050565b6000602082840312156143d3576143d26131a8565b5b60006143e1848285016143a8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061442482613328565b915061442f83613328565b92508261443f5761443e6143ea565b5b828204905092915050565b600061445582613328565b915061446083613328565b92508282101561447357614472613c35565b5b828203905092915050565b600061448982613328565b915061449483613328565b9250826144a4576144a36143ea565b5b82820690509291505056fea2646970667358221220b6515c910a843d45487cabd0a6c5f2719e48b90d963ce507e1c3e36d3375687664736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063617dd82a11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461073e578063d5abeb011461077b578063e985e9c5146107a6578063f2fde38b146107e3578063f9daade41461080c5761020f565b8063a22cb4651461069a578063a5015229146106c3578063aff72141146106ec578063b88d4fde146107155761020f565b8063715018a6116100e7578063715018a6146105fa5780638da5cb5b1461061157806393eff8511461063c57806395d89b4114610653578063a0712d681461067e5761020f565b8063617dd82a1461052e5780636352211e146105575780636f8b44b01461059457806370a08231146105bd5761020f565b806342842e0e1161019b5780634c2612471161016a5780634c2612471461045b57806351830227146104845780635697f53e146104af5780635c41d75e146104d85780635c975abb146105035761020f565b806342842e0e146103a1578063438b6300146103ca57806344a0d68a146104075780634c1d3f8b146104305761020f565b806313faede6116101e257806313faede6146102e257806318160ddd1461030d5780631db2f61d1461033857806323b872dd146103615780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061320a565b610835565b6040516102489190613252565b60405180910390f35b34801561025d57600080fd5b50610266610917565b6040516102739190613306565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061335e565b6109a9565b6040516102b091906133cc565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613413565b610a25565b005b3480156102ee57600080fd5b506102f7610b2f565b6040516103049190613462565b60405180910390f35b34801561031957600080fd5b50610322610b35565b60405161032f9190613462565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a919061335e565b610b4c565b005b34801561036d57600080fd5b506103886004803603810190610383919061347d565b610bd2565b005b34801561039657600080fd5b5061039f610be2565b005b3480156103ad57600080fd5b506103c860048036038101906103c3919061347d565b610d14565b005b3480156103d657600080fd5b506103f160048036038101906103ec91906134d0565b610d34565b6040516103fe91906135bb565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061335e565b610e3e565b005b34801561043c57600080fd5b50610445610ec4565b6040516104529190613462565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190613712565b610eca565b005b34801561049057600080fd5b50610499610f7b565b6040516104a69190613252565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d1919061335e565b610f8e565b005b3480156104e457600080fd5b506104ed611014565b6040516104fa9190613462565b60405180910390f35b34801561050f57600080fd5b5061051861101a565b6040516105259190613252565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190613712565b61102d565b005b34801561056357600080fd5b5061057e6004803603810190610579919061335e565b6110c3565b60405161058b91906133cc565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b6919061335e565b6110d9565b005b3480156105c957600080fd5b506105e460048036038101906105df91906134d0565b61115f565b6040516105f19190613462565b60405180910390f35b34801561060657600080fd5b5061060f61122e565b005b34801561061d57600080fd5b506106266112b6565b60405161063391906133cc565b60405180910390f35b34801561064857600080fd5b506106516112e0565b005b34801561065f57600080fd5b50610668611388565b6040516106759190613306565b60405180910390f35b6106986004803603810190610693919061335e565b61141a565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190613787565b611650565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613712565b6117c7565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613712565b61185d565b005b34801561072157600080fd5b5061073c60048036038101906107379190613868565b6118f3565b005b34801561074a57600080fd5b506107656004803603810190610760919061335e565b61196f565b6040516107729190613306565b60405180910390f35b34801561078757600080fd5b50610790611ac0565b60405161079d9190613462565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c891906138eb565b611ac6565b6040516107da9190613252565b60405180910390f35b3480156107ef57600080fd5b5061080a600480360381019061080591906134d0565b611b5a565b005b34801561081857600080fd5b50610833600480360381019061082e91906139e1565b611c51565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610910575061090f82611e53565b5b9050919050565b60606002805461092690613a91565b80601f016020809104026020016040519081016040528092919081815260200182805461095290613a91565b801561099f5780601f106109745761010080835404028352916020019161099f565b820191906000526020600020905b81548152906001019060200180831161098257829003601f168201915b5050505050905090565b60006109b482611ebd565b6109ea576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a30826110c3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a97576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab6611f0b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ae85750610ae681610ae1611f0b565b611ac6565b155b15610b1f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2a838383611f13565b505050565b600c5481565b6000610b3f611fc5565b6001546000540303905090565b610b54611f0b565b73ffffffffffffffffffffffffffffffffffffffff16610b726112b6565b73ffffffffffffffffffffffffffffffffffffffff1614610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90613b0e565b60405180910390fd5b80600e8190555050565b610bdd838383611fce565b505050565b610bea611f0b565b73ffffffffffffffffffffffffffffffffffffffff16610c086112b6565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590613b0e565b60405180910390fd5b6000610c686112b6565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c8b90613b5f565b60006040518083038185875af1925050503d8060008114610cc8576040519150601f19603f3d011682016040523d82523d6000602084013e610ccd565b606091505b5050905080610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890613be6565b60405180910390fd5b50565b610d2f838383604051806020016040528060008152506118f3565b505050565b60606000610d418361115f565b905060008167ffffffffffffffff811115610d5f57610d5e6135e7565b5b604051908082528060200260200182016040528015610d8d5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610daa5750600d548211155b15610e32576000610dba836110c3565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e1e5782848381518110610e0357610e02613c06565b5b6020026020010181815250508180610e1a90613c64565b9250505b8280610e2990613c64565b93505050610d99565b82945050505050919050565b610e46611f0b565b73ffffffffffffffffffffffffffffffffffffffff16610e646112b6565b73ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190613b0e565b60405180910390fd5b80600c8190555050565b600e5481565b610ed2611f0b565b73ffffffffffffffffffffffffffffffffffffffff16610ef06112b6565b73ffffffffffffffffffffffffffffffffffffffff1614610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90613b0e565b60405180910390fd5b6001600860156101000a81548160ff02191690831515021790555080600a9080519060200190610f779291906130b8565b5050565b600860159054906101000a900460ff1681565b610f96611f0b565b73ffffffffffffffffffffffffffffffffffffffff16610fb46112b6565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190613b0e565b60405180910390fd5b80600f8190555050565b600f5481565b600860149054906101000a900460ff1681565b611035611f0b565b73ffffffffffffffffffffffffffffffffffffffff166110536112b6565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090613b0e565b60405180910390fd5b80600a90805190602001906110bf9291906130b8565b5050565b60006110ce82612482565b600001519050919050565b6110e1611f0b565b73ffffffffffffffffffffffffffffffffffffffff166110ff6112b6565b73ffffffffffffffffffffffffffffffffffffffff1614611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c90613b0e565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611236611f0b565b73ffffffffffffffffffffffffffffffffffffffff166112546112b6565b73ffffffffffffffffffffffffffffffffffffffff16146112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613b0e565b60405180910390fd5b6112b46000612711565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112e8611f0b565b73ffffffffffffffffffffffffffffffffffffffff166113066112b6565b73ffffffffffffffffffffffffffffffffffffffff161461135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390613b0e565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b60606003805461139790613a91565b80601f01602080910402602001604051908101604052809291908181526020018280546113c390613a91565b80156114105780601f106113e557610100808354040283529160200191611410565b820191906000526020600020905b8154815290600101906020018083116113f357829003601f168201915b5050505050905090565b611422611f0b565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690613cf8565b60405180910390fd5b600860149054906101000a900460ff16156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690613d64565b60405180910390fd5b600d54816114eb6127d7565b6114f59190613d84565b1115611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613e4c565b60405180910390fd5b6000811180156115625750600f5481611555611550611f0b565b6127ea565b61155f9190613d84565b11155b6115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613ede565b60405180910390fd5b600e54816115ad6127d7565b6115b79190613d84565b11806115cf57506115ce6115c9611f0b565b612854565b5b156116295780600c546115e29190613efe565b341015611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90613fca565b60405180910390fd5b61163c565b61163b611634611f0b565b6001612880565b5b61164d611647611f0b565b826128ed565b50565b611658611f0b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116bc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116c9611f0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611776611f0b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117bb9190613252565b60405180910390a35050565b6117cf611f0b565b73ffffffffffffffffffffffffffffffffffffffff166117ed6112b6565b73ffffffffffffffffffffffffffffffffffffffff1614611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90613b0e565b60405180910390fd5b80600990805190602001906118599291906130b8565b5050565b611865611f0b565b73ffffffffffffffffffffffffffffffffffffffff166118836112b6565b73ffffffffffffffffffffffffffffffffffffffff16146118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090613b0e565b60405180910390fd5b80600b90805190602001906118ef9291906130b8565b5050565b6118fe848484611fce565b61191d8373ffffffffffffffffffffffffffffffffffffffff1661290b565b801561193257506119308484848461292e565b155b15611969576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061197a82611ebd565b6119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b09061405c565b60405180910390fd5b600860159054906101000a900460ff16611a5f57600980546119da90613a91565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0690613a91565b8015611a535780601f10611a2857610100808354040283529160200191611a53565b820191906000526020600020905b815481529060010190602001808311611a3657829003601f168201915b50505050509050611abb565b6000611a69612a7e565b90506000815111611a895760405180602001604052806000815250611ab7565b80611a9384612b10565b600b604051602001611aa79392919061414c565b6040516020818303038152906040525b9150505b919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b62611f0b565b73ffffffffffffffffffffffffffffffffffffffff16611b806112b6565b73ffffffffffffffffffffffffffffffffffffffff1614611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd90613b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c906141ef565b60405180910390fd5b611c4e81612711565b50565b611c59611f0b565b73ffffffffffffffffffffffffffffffffffffffff16611c776112b6565b73ffffffffffffffffffffffffffffffffffffffff1614611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490613b0e565b60405180910390fd5b8181905084849050148015611ce55750600084849050115b611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b90614281565b60405180910390fd5b6000611d2e6127d7565b905060005b83839050811015611d8957838382818110611d5157611d50613c06565b5b9050602002016020810190611d6691906142da565b60ff1682611d749190613d84565b91508080611d8190613c64565b915050611d33565b50600d54811115611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690613e4c565b60405180910390fd5b60005b85859050811015611e4b57611e38868683818110611df357611df2613c06565b5b9050602002016020810190611e0891906134d0565b858584818110611e1b57611e1a613c06565b5b9050602002016020810190611e3091906142da565b60ff166128ed565b8080611e4390613c64565b915050611dd2565b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611ec8611fc5565b11158015611ed7575060005482105b8015611f04575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fd982612482565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612044576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612065611f0b565b73ffffffffffffffffffffffffffffffffffffffff16148061209457506120938561208e611f0b565b611ac6565b5b806120d957506120a2611f0b565b73ffffffffffffffffffffffffffffffffffffffff166120c1846109a9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612112576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612178576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121858585856001612c70565b61219160008487611f13565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361241057600054821461240f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461247b8585856001612c76565b5050505050565b61248a61313e565b600082905080612498611fc5565b111580156124a7575060005481105b156126da576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516126d857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125bc57809250505061270c565b5b6001156126d757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126d257809250505061270c565b6125bd565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006127e1611fc5565b60005403905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60008061286083612c7c565b67ffffffffffffffff1614612876576001612879565b60005b9050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b612907828260405180602001604052806000815250612cdc565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612954611f0b565b8786866040518563ffffffff1660e01b8152600401612976949392919061435c565b6020604051808303816000875af19250505080156129b257506040513d601f19601f820116820180604052508101906129af91906143bd565b60015b612a2b573d80600081146129e2576040519150601f19603f3d011682016040523d82523d6000602084013e6129e7565b606091505b506000815103612a23576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612a8d90613a91565b80601f0160208091040260200160405190810160405280929190818152602001828054612ab990613a91565b8015612b065780601f10612adb57610100808354040283529160200191612b06565b820191906000526020600020905b815481529060010190602001808311612ae957829003601f168201915b5050505050905090565b606060008203612b57576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c6b565b600082905060005b60008214612b89578080612b7290613c64565b915050600a82612b829190614419565b9150612b5f565b60008167ffffffffffffffff811115612ba557612ba46135e7565b5b6040519080825280601f01601f191660200182016040528015612bd75781602001600182028036833780820191505090505b5090505b60008514612c6457600182612bf0919061444a565b9150600a85612bff919061447e565b6030612c0b9190613d84565b60f81b818381518110612c2157612c20613c06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c5d9190614419565b9450612bdb565b8093505050505b919050565b50505050565b50505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b612ce98383836001612cee565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612d5a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612d94576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612da16000868387612c70565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612f6b5750612f6a8773ffffffffffffffffffffffffffffffffffffffff1661290b565b5b15613030575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fe0600088848060010195508861292e565b613016576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612f7157826000541461302b57600080fd5b61309b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613031575b8160008190555050506130b16000868387612c76565b5050505050565b8280546130c490613a91565b90600052602060002090601f0160209004810192826130e6576000855561312d565b82601f106130ff57805160ff191683800117855561312d565b8280016001018555821561312d579182015b8281111561312c578251825591602001919060010190613111565b5b50905061313a9190613181565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561319a576000816000905550600101613182565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131e7816131b2565b81146131f257600080fd5b50565b600081359050613204816131de565b92915050565b6000602082840312156132205761321f6131a8565b5b600061322e848285016131f5565b91505092915050565b60008115159050919050565b61324c81613237565b82525050565b60006020820190506132676000830184613243565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132a757808201518184015260208101905061328c565b838111156132b6576000848401525b50505050565b6000601f19601f8301169050919050565b60006132d88261326d565b6132e28185613278565b93506132f2818560208601613289565b6132fb816132bc565b840191505092915050565b6000602082019050818103600083015261332081846132cd565b905092915050565b6000819050919050565b61333b81613328565b811461334657600080fd5b50565b60008135905061335881613332565b92915050565b600060208284031215613374576133736131a8565b5b600061338284828501613349565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133b68261338b565b9050919050565b6133c6816133ab565b82525050565b60006020820190506133e160008301846133bd565b92915050565b6133f0816133ab565b81146133fb57600080fd5b50565b60008135905061340d816133e7565b92915050565b6000806040838503121561342a576134296131a8565b5b6000613438858286016133fe565b925050602061344985828601613349565b9150509250929050565b61345c81613328565b82525050565b60006020820190506134776000830184613453565b92915050565b600080600060608486031215613496576134956131a8565b5b60006134a4868287016133fe565b93505060206134b5868287016133fe565b92505060406134c686828701613349565b9150509250925092565b6000602082840312156134e6576134e56131a8565b5b60006134f4848285016133fe565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61353281613328565b82525050565b60006135448383613529565b60208301905092915050565b6000602082019050919050565b6000613568826134fd565b6135728185613508565b935061357d83613519565b8060005b838110156135ae5781516135958882613538565b97506135a083613550565b925050600181019050613581565b5085935050505092915050565b600060208201905081810360008301526135d5818461355d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61361f826132bc565b810181811067ffffffffffffffff8211171561363e5761363d6135e7565b5b80604052505050565b600061365161319e565b905061365d8282613616565b919050565b600067ffffffffffffffff82111561367d5761367c6135e7565b5b613686826132bc565b9050602081019050919050565b82818337600083830152505050565b60006136b56136b084613662565b613647565b9050828152602081018484840111156136d1576136d06135e2565b5b6136dc848285613693565b509392505050565b600082601f8301126136f9576136f86135dd565b5b81356137098482602086016136a2565b91505092915050565b600060208284031215613728576137276131a8565b5b600082013567ffffffffffffffff811115613746576137456131ad565b5b613752848285016136e4565b91505092915050565b61376481613237565b811461376f57600080fd5b50565b6000813590506137818161375b565b92915050565b6000806040838503121561379e5761379d6131a8565b5b60006137ac858286016133fe565b92505060206137bd85828601613772565b9150509250929050565b600067ffffffffffffffff8211156137e2576137e16135e7565b5b6137eb826132bc565b9050602081019050919050565b600061380b613806846137c7565b613647565b905082815260208101848484011115613827576138266135e2565b5b613832848285613693565b509392505050565b600082601f83011261384f5761384e6135dd565b5b813561385f8482602086016137f8565b91505092915050565b60008060008060808587031215613882576138816131a8565b5b6000613890878288016133fe565b94505060206138a1878288016133fe565b93505060406138b287828801613349565b925050606085013567ffffffffffffffff8111156138d3576138d26131ad565b5b6138df8782880161383a565b91505092959194509250565b60008060408385031215613902576139016131a8565b5b6000613910858286016133fe565b9250506020613921858286016133fe565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261394b5761394a6135dd565b5b8235905067ffffffffffffffff8111156139685761396761392b565b5b60208301915083602082028301111561398457613983613930565b5b9250929050565b60008083601f8401126139a1576139a06135dd565b5b8235905067ffffffffffffffff8111156139be576139bd61392b565b5b6020830191508360208202830111156139da576139d9613930565b5b9250929050565b600080600080604085870312156139fb576139fa6131a8565b5b600085013567ffffffffffffffff811115613a1957613a186131ad565b5b613a2587828801613935565b9450945050602085013567ffffffffffffffff811115613a4857613a476131ad565b5b613a548782880161398b565b925092505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613aa957607f821691505b602082108103613abc57613abb613a62565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613af8602083613278565b9150613b0382613ac2565b602082019050919050565b60006020820190508181036000830152613b2781613aeb565b9050919050565b600081905092915050565b50565b6000613b49600083613b2e565b9150613b5482613b39565b600082019050919050565b6000613b6a82613b3c565b9150819050919050565b7f506972617465417065437265773a206661696c656420746f207472616e73666560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd0602183613278565b9150613bdb82613b74565b604082019050919050565b60006020820190508181036000830152613bff81613bc3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c6f82613328565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ca157613ca0613c35565b5b600182019050919050565b7f506972617465417065437265773a20636f6e74726163742064656e6965640000600082015250565b6000613ce2601e83613278565b9150613ced82613cac565b602082019050919050565b60006020820190508181036000830152613d1181613cd5565b9050919050565b7f506972617465417065437265773a206d696e74696e6720697320706175736564600082015250565b6000613d4e602083613278565b9150613d5982613d18565b602082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b6000613d8f82613328565b9150613d9a83613328565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dcf57613dce613c35565b5b828201905092915050565b7f506972617465417065437265773a206d617820746f6b656e20737570706c792060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b6000613e36602883613278565b9150613e4182613dda565b604082019050919050565b60006020820190508181036000830152613e6581613e29565b9050919050565b7f506972617465417065437265773a20696e76616c6964206d696e7420616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ec8602283613278565b9150613ed382613e6c565b604082019050919050565b60006020820190508181036000830152613ef781613ebb565b9050919050565b6000613f0982613328565b9150613f1483613328565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f4d57613f4c613c35565b5b828202905092915050565b7f506972617465417065437265773a20696e73756666696369656e74206574686560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fb4602183613278565b9150613fbf82613f58565b604082019050919050565b60006020820190508181036000830152613fe381613fa7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614046602f83613278565b915061405182613fea565b604082019050919050565b6000602082019050818103600083015261407581614039565b9050919050565b600081905092915050565b60006140928261326d565b61409c818561407c565b93506140ac818560208601613289565b80840191505092915050565b60008190508160005260206000209050919050565b600081546140da81613a91565b6140e4818661407c565b945060018216600081146140ff576001811461411057614143565b60ff19831686528186019350614143565b614119856140b8565b60005b8381101561413b5781548189015260018201915060208101905061411c565b838801955050505b50505092915050565b60006141588286614087565b91506141648285614087565b915061417082846140cd565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141d9602683613278565b91506141e48261417d565b604082019050919050565b60006020820190508181036000830152614208816141cc565b9050919050565b7f506972617465417065437265773a20696e76616c69642066756e6374696f6e2060008201527f617267756d656e74730000000000000000000000000000000000000000000000602082015250565b600061426b602983613278565b91506142768261420f565b604082019050919050565b6000602082019050818103600083015261429a8161425e565b9050919050565b600060ff82169050919050565b6142b7816142a1565b81146142c257600080fd5b50565b6000813590506142d4816142ae565b92915050565b6000602082840312156142f0576142ef6131a8565b5b60006142fe848285016142c5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b600061432e82614307565b6143388185614312565b9350614348818560208601613289565b614351816132bc565b840191505092915050565b600060808201905061437160008301876133bd565b61437e60208301866133bd565b61438b6040830185613453565b818103606083015261439d8184614323565b905095945050505050565b6000815190506143b7816131de565b92915050565b6000602082840312156143d3576143d26131a8565b5b60006143e1848285016143a8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061442482613328565b915061442f83613328565b92508261443f5761443e6143ea565b5b828204905092915050565b600061445582613328565b915061446083613328565b92508282101561447357614472613c35565b5b828203905092915050565b600061448982613328565b915061449483613328565b9250826144a4576144a36143ea565b5b82820690509291505056fea2646970667358221220b6515c910a843d45487cabd0a6c5f2719e48b90d963ce507e1c3e36d3375687664736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initUnrevealedUriPrefix (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41993:4308:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26668:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29271:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30618:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30235:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42218:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26013:267;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45616:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31402:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44031:185;;;;;;;;;;;;;:::i;:::-;;31601:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44618:546;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45904:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42269:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43904:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42093:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45746:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42304:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42071:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45171:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29100:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45514:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26989:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43827:72;;;;;;;;;;;;;:::i;:::-;;29419:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42650:657;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30867:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45274:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45411:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31815:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44223:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42241:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31192:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43312:510;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26668:269;26770:4;26807:25;26792:40;;;:11;:40;;;;:96;;;;26855:33;26840:48;;;:11;:48;;;;26792:96;:140;;;;26896:36;26920:11;26896:23;:36::i;:::-;26792:140;26781:151;;26668:269;;;:::o;29271:91::-;29325:13;29352:5;29345:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29271:91;:::o;30618:189::-;30686:7;30705:16;30713:7;30705;:16::i;:::-;30700:64;;30730:34;;;;;;;;;;;;;;30700:64;30778:15;:24;30794:7;30778:24;;;;;;;;;;;;;;;;;;;;;30771:31;;30618:189;;;:::o;30235:329::-;30302:13;30318:24;30334:7;30318:15;:24::i;:::-;30302:40;;30357:5;30351:11;;:2;:11;;;30347:48;;30371:24;;;;;;;;;;;;;;30347:48;30422:5;30406:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;30432:37;30449:5;30456:12;:10;:12::i;:::-;30432:16;:37::i;:::-;30431:38;30406:63;30402:123;;;30484:35;;;;;;;;;;;;;;30402:123;30531:28;30540:2;30544:7;30553:5;30531:8;:28::i;:::-;30297:267;30235:329;;:::o;42218:19::-;;;;:::o;26013:267::-;26057:7;26255:15;:13;:15::i;:::-;26240:12;;26224:13;;:28;:46;26217:53;;26013:267;:::o;45616:125::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45717:19:::1;45698:16;:38;;;;45616:125:::0;:::o;31402:140::-;31509:28;31519:4;31525:2;31529:7;31509:9;:28::i;:::-;31402:140;;;:::o;44031:185::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44076:12:::1;44102:7;:5;:7::i;:::-;44094:21;;44124;44094:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44075:76;;;44166:7;44158:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44070:146;44031:185::o:0;31601:155::-;31712:39;31729:4;31735:2;31739:7;31712:39;;;;;;;;;;;;:16;:39::i;:::-;31601:155;;;:::o;44618:546::-;44680:16;44703:23;44729:18;44739:7;44729:9;:18::i;:::-;44703:44;;44754:30;44801:15;44787:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44754:63;;44824:18;44845:1;44824:22;;44851:23;44885:248;44910:15;44892;:33;:60;;;;;44943:9;;44929:10;:23;;44892:60;44885:248;;;44960:13;44976:19;44984:10;44976:7;:19::i;:::-;44960:35;;45016:7;45007:16;;:5;:16;;;45003:105;;45065:10;45032:13;45046:15;45032:30;;;;;;;;:::i;:::-;;;;;;;:43;;;;;45084:17;;;;;:::i;:::-;;;;45003:105;45115:12;;;;;:::i;:::-;;;;44954:179;44885:248;;;45146:13;45139:20;;;;;;44618:546;;;:::o;45904:77::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45969:7:::1;45962:4;:14;;;;45904:77:::0;:::o;42269:31::-;;;;:::o;43904:122::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43984:4:::1;43973:8;;:15;;;;;;;;;;;;;;;;;;44008:13;43995:10;:26;;;;;;;;;;;;:::i;:::-;;43904:122:::0;:::o;42093:20::-;;;;;;;;;;;;;:::o;45746:153::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45868:26:::1;45842:23;:52;;;;45746:153:::0;:::o;42304:38::-;;;;:::o;42071:18::-;;;;;;;;;;;;;:::o;45171:98::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45255:9:::1;45242:10;:22;;;;;;;;;;;;:::i;:::-;;45171:98:::0;:::o;29100:116::-;29164:7;29185:21;29198:7;29185:12;:21::i;:::-;:26;;;29178:33;;29100:116;;;:::o;45514:97::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45594:12:::1;45582:9;:24;;;;45514:97:::0;:::o;26989:191::-;27053:7;27088:1;27071:19;;:5;:19;;;27067:60;;27099:28;;;;;;;;;;;;;;27067:60;27147:12;:19;27160:5;27147:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27139:36;;27132:43;;26989:191;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;43827:72::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43888:6:::1;;;;;;;;;;;43887:7;43878:6;;:16;;;;;;;;;;;;;;;;;;43827:72::o:0;29419:95::-;29475:13;29502:7;29495:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29419:95;:::o;42650:657::-;42723:12;:10;:12::i;:::-;42710:25;;:9;:25;;;42702:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42784:6;;;;;;;;;;;42783:7;42775:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;42867:9;;42857:6;42840:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:36;;42832:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;42943:1;42934:6;:10;:77;;;;;42988:23;;42978:6;42948:27;42962:12;:10;:12::i;:::-;42948:13;:27::i;:::-;:36;;;;:::i;:::-;:63;;42934:77;42926:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;43087:16;;43078:6;43061:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:42;:76;;;;43107:30;43124:12;:10;:12::i;:::-;43107:16;:30::i;:::-;43061:76;43057:208;;;43173:6;43166:4;;:13;;;;:::i;:::-;43153:9;:26;;43145:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;43057:208;;;43235:24;43243:12;:10;:12::i;:::-;43257:1;43235:7;:24::i;:::-;43057:208;43271:31;43281:12;:10;:12::i;:::-;43295:6;43271:9;:31::i;:::-;42650:657;:::o;30867:266::-;30972:12;:10;:12::i;:::-;30960:24;;:8;:24;;;30956:54;;30993:17;;;;;;;;;;;;;;30956:54;31062:8;31017:18;:32;31036:12;:10;:12::i;:::-;31017:32;;;;;;;;;;;;;;;:42;31050:8;31017:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31109:8;31080:48;;31095:12;:10;:12::i;:::-;31080:48;;;31119:8;31080:48;;;;;;:::i;:::-;;;;;;;;30867:266;;:::o;45274:132::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45385:16:::1;45362:20;:39;;;;;;;;;;;;:::i;:::-;;45274:132:::0;:::o;45411:98::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45495:9:::1;45482:10;:22;;;;;;;;;;;;:::i;:::-;;45411:98:::0;:::o;31815:312::-;31949:28;31959:4;31965:2;31969:7;31949:9;:28::i;:::-;31986:15;:2;:13;;;:15::i;:::-;:76;;;;;32006:56;32037:4;32043:2;32047:7;32056:5;32006:30;:56::i;:::-;32005:57;31986:76;31982:141;;;32077:40;;;;;;;;;;;;;;31982:141;31815:312;;;;:::o;44223:390::-;44287:13;44315:16;44323:7;44315;:16::i;:::-;44307:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44395:8;;;;;;;;;;;44390:42;;44412:20;44405:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44390:42;44439:28;44470:10;:8;:10::i;:::-;44439:41;;44525:1;44500:14;44494:28;:32;:114;;;;;;;;;;;;;;;;;44554:14;44570:18;:7;:16;:18::i;:::-;44590:10;44537:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44494:114;44487:121;;;44223:390;;;;:::o;42241:24::-;;;;:::o;31192:155::-;31289:4;31307:18;:25;31326:5;31307:25;;;;;;;;;;;;;;;:35;31333:8;31307:35;;;;;;;;;;;;;;;;;;;;;;;;;31300:42;;31192:155;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;::::0;5069:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;43312:510::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43437:7:::1;;:14;;43417:9;;:16;;:34;:58;;;;;43474:1;43455:9;;:16;;:20;43417:58;43409:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;43528:17;43548:14;:12;:14::i;:::-;43528:34;;43572:9;43567:68;43591:7;;:14;;43587:1;:18;43567:68;;;43625:7;;43633:1;43625:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;43612:23;;;;;;;:::i;:::-;;;43607:3;;;;;:::i;:::-;;;;43567:68;;;;43663:9;;43650;:22;;43642:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43729:9;43724:94;43748:9;;:16;;43744:1;:20;43724:94;;;43777:35;43787:9;;43797:1;43787:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;43801:7;;43809:1;43801:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;43777:35;;:9;:35::i;:::-;43766:3;;;;;:::i;:::-;;;;43724:94;;;;43404:418;43312:510:::0;;;;:::o;16886:157::-;16971:4;17010:25;16995:40;;;:11;:40;;;;16988:47;;16886:157;;;:::o;32358:165::-;32415:4;32452:7;32433:15;:13;:15::i;:::-;:26;;:53;;;;;32473:13;;32463:7;:23;32433:53;:85;;;;;32491:11;:20;32503:7;32491:20;;;;;;;;;;;:27;;;;;;;;;;;;32490:28;32433:85;32426:92;;32358:165;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;39294:160::-;39409:2;39382:15;:24;39398:7;39382:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39441:7;39437:2;39421:28;;39430:5;39421:28;;;;;;;;;;;;39294:160;;;:::o;46086:83::-;46142:7;46163:1;46156:8;;46086:83;:::o;34978:1821::-;35066:35;35104:21;35117:7;35104:12;:21::i;:::-;35066:59;;35158:4;35136:26;;:13;:18;;;:26;;;35132:67;;35171:28;;;;;;;;;;;;;;35132:67;35206:22;35248:4;35232:20;;:12;:10;:12::i;:::-;:20;;;:64;;;;35260:36;35277:4;35283:12;:10;:12::i;:::-;35260:16;:36::i;:::-;35232:64;:108;;;;35328:12;:10;:12::i;:::-;35304:36;;:20;35316:7;35304:11;:20::i;:::-;:36;;;35232:108;35206:135;;35353:17;35348:66;;35379:35;;;;;;;;;;;;;;35348:66;35437:1;35423:16;;:2;:16;;;35419:52;;35448:23;;;;;;;;;;;;;;35419:52;35478:43;35500:4;35506:2;35510:7;35519:1;35478:21;:43::i;:::-;35574:35;35591:1;35595:7;35604:4;35574:8;:35::i;:::-;35902:1;35872:12;:18;35885:4;35872:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35937:1;35909:12;:16;35922:2;35909:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35946:31;35980:11;:20;35992:7;35980:20;;;;;;;;;;;35946:54;;36022:2;36006:8;:13;;;:18;;;;;;;;;;;;;;;;;;36063:15;36030:8;:23;;;:49;;;;;;;;;;;;;;;;;;36304:19;36336:1;36326:7;:11;36304:33;;36343:31;36377:11;:24;36389:11;36377:24;;;;;;;;;;;36343:58;;36436:1;36411:27;;:8;:13;;;;;;;;;;;;:27;;;36407:297;;36585:13;;36570:11;:28;36566:132;;36624:4;36608:8;:13;;;:20;;;;;;;;;;;;;;;;;;36662:13;:28;;;36636:8;:23;;;:54;;;;;;;;;;;;;;;;;;36566:132;36407:297;35856:853;;;36739:7;36735:2;36720:27;;36729:4;36720:27;;;;;;;;;;;;36752:42;36773:4;36779:2;36783:7;36792:1;36752:20;:42::i;:::-;35061:1738;;34978:1821;;;:::o;28253:797::-;28315:21;;:::i;:::-;28343:12;28358:7;28343:22;;28411:4;28392:15;:13;:15::i;:::-;:23;;:47;;;;;28426:13;;28419:4;:20;28392:47;28388:610;;;28448:31;28482:11;:17;28494:4;28482:17;;;;;;;;;;;28448:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28511:9;:16;;;28506:486;;28567:1;28541:28;;:9;:14;;;:28;;;28537:68;;28587:9;28580:16;;;;;;28537:68;28832:153;28839:4;28832:153;;;28854:6;;;;;;;;28881:11;:17;28893:4;28881:17;;;;;;;;;;;28869:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28937:1;28911:28;;:9;:14;;;:28;;;28907:70;;28958:9;28951:16;;;;;;28907:70;28832:153;;;28506:486;28441:557;28388:610;29014:31;;;;;;;;;;;;;;28253:797;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;26361:247::-;26408:7;26583:15;:13;:15::i;:::-;26567:13;;:31;26560:38;;26361:247;:::o;27250:128::-;27311:7;27340:12;:19;27353:5;27340:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;27332:41;;27325:48;;27250:128;;;:::o;46174:124::-;46239:4;46277:1;46257:16;46265:7;46257;:16::i;:::-;:21;;;:36;;46289:4;46257:36;;;46281:5;46257:36;46250:43;;46174:124;;;:::o;27974:92::-;28058:3;28032:12;:19;28045:5;28032:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;27974:92;;:::o;32528:95::-;32591:27;32601:2;32605:8;32591:27;;;;;;;;;;;;:9;:27::i;:::-;32528:95;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;39916:532::-;40052:4;40083:2;40067:36;;;40104:12;:10;:12::i;:::-;40118:4;40124:7;40133:5;40067:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40063:381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40294:1;40277:6;:13;:18;40273:166;;40311:40;;;;;;;;;;;;;;40273:166;40418:6;40412:13;40403:6;40399:2;40395:15;40388:38;40063:381;40187:45;;;40177:55;;;:6;:55;;;;40170:62;;;39916:532;;;;;;:::o;45988:93::-;46039:13;46066:10;46059:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45988:93;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;41048:132::-;;;;;:::o;41788:131::-;;;;;:::o;27698:103::-;27753:6;27773:12;:19;27786:5;27773:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;27766:30;;27698:103;;;:::o;32953:133::-;33049:32;33055:2;33059:8;33069:5;33076:4;33049:5;:32::i;:::-;32953:133;;;:::o;33312:1445::-;33418:20;33441:13;;33418:36;;33477:1;33463:16;;:2;:16;;;33459:48;;33488:19;;;;;;;;;;;;;;33459:48;33528:1;33516:8;:13;33512:44;;33538:18;;;;;;;;;;;;;;33512:44;33563:61;33593:1;33597:2;33601:12;33615:8;33563:21;:61::i;:::-;33903:8;33868:12;:16;33881:2;33868:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33958:8;33918:12;:16;33931:2;33918:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34008:2;33975:11;:25;33987:12;33975:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34066:15;34016:11;:25;34028:12;34016:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34090:20;34113:12;34090:35;;34131:11;34160:8;34145:12;:23;34131:37;;34180:4;:23;;;;;34188:15;:2;:13;;;:15::i;:::-;34180:23;34176:473;;;34212:239;34253:12;34249:2;34228:38;;34245:1;34228:38;;;;;;;;;;;;34279:69;34318:1;34322:2;34326:14;;;;;;34342:5;34279:30;:69::i;:::-;34274:141;;34366:40;;;;;;;;;;;;;;34274:141;34446:3;34430:12;:19;34212:239;;34508:12;34491:13;;:29;34487:43;;34522:8;;;34487:43;34176:473;;;34550:93;34591:14;;;;;;34587:2;34566:40;;34583:1;34566:40;;;;;;;;;;;;34638:3;34622:12;:19;34550:93;;34176:473;34670:12;34654:13;:28;;;;33852:836;;34692:60;34721:1;34725:2;34729:12;34743:8;34692:20;:60::i;:::-;33413:1344;33312:1445;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:114::-;6317:6;6351:5;6345:12;6335:22;;6250:114;;;:::o;6370:184::-;6469:11;6503:6;6498:3;6491:19;6543:4;6538:3;6534:14;6519:29;;6370:184;;;;:::o;6560:132::-;6627:4;6650:3;6642:11;;6680:4;6675:3;6671:14;6663:22;;6560:132;;;:::o;6698:108::-;6775:24;6793:5;6775:24;:::i;:::-;6770:3;6763:37;6698:108;;:::o;6812:179::-;6881:10;6902:46;6944:3;6936:6;6902:46;:::i;:::-;6980:4;6975:3;6971:14;6957:28;;6812:179;;;;:::o;6997:113::-;7067:4;7099;7094:3;7090:14;7082:22;;6997:113;;;:::o;7146:732::-;7265:3;7294:54;7342:5;7294:54;:::i;:::-;7364:86;7443:6;7438:3;7364:86;:::i;:::-;7357:93;;7474:56;7524:5;7474:56;:::i;:::-;7553:7;7584:1;7569:284;7594:6;7591:1;7588:13;7569:284;;;7670:6;7664:13;7697:63;7756:3;7741:13;7697:63;:::i;:::-;7690:70;;7783:60;7836:6;7783:60;:::i;:::-;7773:70;;7629:224;7616:1;7613;7609:9;7604:14;;7569:284;;;7573:14;7869:3;7862:10;;7270:608;;;7146:732;;;;:::o;7884:373::-;8027:4;8065:2;8054:9;8050:18;8042:26;;8114:9;8108:4;8104:20;8100:1;8089:9;8085:17;8078:47;8142:108;8245:4;8236:6;8142:108;:::i;:::-;8134:116;;7884:373;;;;:::o;8263:117::-;8372:1;8369;8362:12;8386:117;8495:1;8492;8485:12;8509:180;8557:77;8554:1;8547:88;8654:4;8651:1;8644:15;8678:4;8675:1;8668:15;8695:281;8778:27;8800:4;8778:27;:::i;:::-;8770:6;8766:40;8908:6;8896:10;8893:22;8872:18;8860:10;8857:34;8854:62;8851:88;;;8919:18;;:::i;:::-;8851:88;8959:10;8955:2;8948:22;8738:238;8695:281;;:::o;8982:129::-;9016:6;9043:20;;:::i;:::-;9033:30;;9072:33;9100:4;9092:6;9072:33;:::i;:::-;8982:129;;;:::o;9117:308::-;9179:4;9269:18;9261:6;9258:30;9255:56;;;9291:18;;:::i;:::-;9255:56;9329:29;9351:6;9329:29;:::i;:::-;9321:37;;9413:4;9407;9403:15;9395:23;;9117:308;;;:::o;9431:154::-;9515:6;9510:3;9505;9492:30;9577:1;9568:6;9563:3;9559:16;9552:27;9431:154;;;:::o;9591:412::-;9669:5;9694:66;9710:49;9752:6;9710:49;:::i;:::-;9694:66;:::i;:::-;9685:75;;9783:6;9776:5;9769:21;9821:4;9814:5;9810:16;9859:3;9850:6;9845:3;9841:16;9838:25;9835:112;;;9866:79;;:::i;:::-;9835:112;9956:41;9990:6;9985:3;9980;9956:41;:::i;:::-;9675:328;9591:412;;;;;:::o;10023:340::-;10079:5;10128:3;10121:4;10113:6;10109:17;10105:27;10095:122;;10136:79;;:::i;:::-;10095:122;10253:6;10240:20;10278:79;10353:3;10345:6;10338:4;10330:6;10326:17;10278:79;:::i;:::-;10269:88;;10085:278;10023:340;;;;:::o;10369:509::-;10438:6;10487:2;10475:9;10466:7;10462:23;10458:32;10455:119;;;10493:79;;:::i;:::-;10455:119;10641:1;10630:9;10626:17;10613:31;10671:18;10663:6;10660:30;10657:117;;;10693:79;;:::i;:::-;10657:117;10798:63;10853:7;10844:6;10833:9;10829:22;10798:63;:::i;:::-;10788:73;;10584:287;10369:509;;;;:::o;10884:116::-;10954:21;10969:5;10954:21;:::i;:::-;10947:5;10944:32;10934:60;;10990:1;10987;10980:12;10934:60;10884:116;:::o;11006:133::-;11049:5;11087:6;11074:20;11065:29;;11103:30;11127:5;11103:30;:::i;:::-;11006:133;;;;:::o;11145:468::-;11210:6;11218;11267:2;11255:9;11246:7;11242:23;11238:32;11235:119;;;11273:79;;:::i;:::-;11235:119;11393:1;11418:53;11463:7;11454:6;11443:9;11439:22;11418:53;:::i;:::-;11408:63;;11364:117;11520:2;11546:50;11588:7;11579:6;11568:9;11564:22;11546:50;:::i;:::-;11536:60;;11491:115;11145:468;;;;;:::o;11619:307::-;11680:4;11770:18;11762:6;11759:30;11756:56;;;11792:18;;:::i;:::-;11756:56;11830:29;11852:6;11830:29;:::i;:::-;11822:37;;11914:4;11908;11904:15;11896:23;;11619:307;;;:::o;11932:410::-;12009:5;12034:65;12050:48;12091:6;12050:48;:::i;:::-;12034:65;:::i;:::-;12025:74;;12122:6;12115:5;12108:21;12160:4;12153:5;12149:16;12198:3;12189:6;12184:3;12180:16;12177:25;12174:112;;;12205:79;;:::i;:::-;12174:112;12295:41;12329:6;12324:3;12319;12295:41;:::i;:::-;12015:327;11932:410;;;;;:::o;12361:338::-;12416:5;12465:3;12458:4;12450:6;12446:17;12442:27;12432:122;;12473:79;;:::i;:::-;12432:122;12590:6;12577:20;12615:78;12689:3;12681:6;12674:4;12666:6;12662:17;12615:78;:::i;:::-;12606:87;;12422:277;12361:338;;;;:::o;12705:943::-;12800:6;12808;12816;12824;12873:3;12861:9;12852:7;12848:23;12844:33;12841:120;;;12880:79;;:::i;:::-;12841:120;13000:1;13025:53;13070:7;13061:6;13050:9;13046:22;13025:53;:::i;:::-;13015:63;;12971:117;13127:2;13153:53;13198:7;13189:6;13178:9;13174:22;13153:53;:::i;:::-;13143:63;;13098:118;13255:2;13281:53;13326:7;13317:6;13306:9;13302:22;13281:53;:::i;:::-;13271:63;;13226:118;13411:2;13400:9;13396:18;13383:32;13442:18;13434:6;13431:30;13428:117;;;13464:79;;:::i;:::-;13428:117;13569:62;13623:7;13614:6;13603:9;13599:22;13569:62;:::i;:::-;13559:72;;13354:287;12705:943;;;;;;;:::o;13654:474::-;13722:6;13730;13779:2;13767:9;13758:7;13754:23;13750:32;13747:119;;;13785:79;;:::i;:::-;13747:119;13905:1;13930:53;13975:7;13966:6;13955:9;13951:22;13930:53;:::i;:::-;13920:63;;13876:117;14032:2;14058:53;14103:7;14094:6;14083:9;14079:22;14058:53;:::i;:::-;14048:63;;14003:118;13654:474;;;;;:::o;14134:117::-;14243:1;14240;14233:12;14257:117;14366:1;14363;14356:12;14397:568;14470:8;14480:6;14530:3;14523:4;14515:6;14511:17;14507:27;14497:122;;14538:79;;:::i;:::-;14497:122;14651:6;14638:20;14628:30;;14681:18;14673:6;14670:30;14667:117;;;14703:79;;:::i;:::-;14667:117;14817:4;14809:6;14805:17;14793:29;;14871:3;14863:4;14855:6;14851:17;14841:8;14837:32;14834:41;14831:128;;;14878:79;;:::i;:::-;14831:128;14397:568;;;;;:::o;14986:566::-;15057:8;15067:6;15117:3;15110:4;15102:6;15098:17;15094:27;15084:122;;15125:79;;:::i;:::-;15084:122;15238:6;15225:20;15215:30;;15268:18;15260:6;15257:30;15254:117;;;15290:79;;:::i;:::-;15254:117;15404:4;15396:6;15392:17;15380:29;;15458:3;15450:4;15442:6;15438:17;15428:8;15424:32;15421:41;15418:128;;;15465:79;;:::i;:::-;15418:128;14986:566;;;;;:::o;15558:930::-;15678:6;15686;15694;15702;15751:2;15739:9;15730:7;15726:23;15722:32;15719:119;;;15757:79;;:::i;:::-;15719:119;15905:1;15894:9;15890:17;15877:31;15935:18;15927:6;15924:30;15921:117;;;15957:79;;:::i;:::-;15921:117;16070:80;16142:7;16133:6;16122:9;16118:22;16070:80;:::i;:::-;16052:98;;;;15848:312;16227:2;16216:9;16212:18;16199:32;16258:18;16250:6;16247:30;16244:117;;;16280:79;;:::i;:::-;16244:117;16393:78;16463:7;16454:6;16443:9;16439:22;16393:78;:::i;:::-;16375:96;;;;16170:311;15558:930;;;;;;;:::o;16494:180::-;16542:77;16539:1;16532:88;16639:4;16636:1;16629:15;16663:4;16660:1;16653:15;16680:320;16724:6;16761:1;16755:4;16751:12;16741:22;;16808:1;16802:4;16798:12;16829:18;16819:81;;16885:4;16877:6;16873:17;16863:27;;16819:81;16947:2;16939:6;16936:14;16916:18;16913:38;16910:84;;16966:18;;:::i;:::-;16910:84;16731:269;16680:320;;;:::o;17006:182::-;17146:34;17142:1;17134:6;17130:14;17123:58;17006:182;:::o;17194:366::-;17336:3;17357:67;17421:2;17416:3;17357:67;:::i;:::-;17350:74;;17433:93;17522:3;17433:93;:::i;:::-;17551:2;17546:3;17542:12;17535:19;;17194:366;;;:::o;17566:419::-;17732:4;17770:2;17759:9;17755:18;17747:26;;17819:9;17813:4;17809:20;17805:1;17794:9;17790:17;17783:47;17847:131;17973:4;17847:131;:::i;:::-;17839:139;;17566:419;;;:::o;17991:147::-;18092:11;18129:3;18114:18;;17991:147;;;;:::o;18144:114::-;;:::o;18264:398::-;18423:3;18444:83;18525:1;18520:3;18444:83;:::i;:::-;18437:90;;18536:93;18625:3;18536:93;:::i;:::-;18654:1;18649:3;18645:11;18638:18;;18264:398;;;:::o;18668:379::-;18852:3;18874:147;19017:3;18874:147;:::i;:::-;18867:154;;19038:3;19031:10;;18668:379;;;:::o;19053:220::-;19193:34;19189:1;19181:6;19177:14;19170:58;19262:3;19257:2;19249:6;19245:15;19238:28;19053:220;:::o;19279:366::-;19421:3;19442:67;19506:2;19501:3;19442:67;:::i;:::-;19435:74;;19518:93;19607:3;19518:93;:::i;:::-;19636:2;19631:3;19627:12;19620:19;;19279:366;;;:::o;19651:419::-;19817:4;19855:2;19844:9;19840:18;19832:26;;19904:9;19898:4;19894:20;19890:1;19879:9;19875:17;19868:47;19932:131;20058:4;19932:131;:::i;:::-;19924:139;;19651:419;;;:::o;20076:180::-;20124:77;20121:1;20114:88;20221:4;20218:1;20211:15;20245:4;20242:1;20235:15;20262:180;20310:77;20307:1;20300:88;20407:4;20404:1;20397:15;20431:4;20428:1;20421:15;20448:233;20487:3;20510:24;20528:5;20510:24;:::i;:::-;20501:33;;20556:66;20549:5;20546:77;20543:103;;20626:18;;:::i;:::-;20543:103;20673:1;20666:5;20662:13;20655:20;;20448:233;;;:::o;20687:180::-;20827:32;20823:1;20815:6;20811:14;20804:56;20687:180;:::o;20873:366::-;21015:3;21036:67;21100:2;21095:3;21036:67;:::i;:::-;21029:74;;21112:93;21201:3;21112:93;:::i;:::-;21230:2;21225:3;21221:12;21214:19;;20873:366;;;:::o;21245:419::-;21411:4;21449:2;21438:9;21434:18;21426:26;;21498:9;21492:4;21488:20;21484:1;21473:9;21469:17;21462:47;21526:131;21652:4;21526:131;:::i;:::-;21518:139;;21245:419;;;:::o;21670:182::-;21810:34;21806:1;21798:6;21794:14;21787:58;21670:182;:::o;21858:366::-;22000:3;22021:67;22085:2;22080:3;22021:67;:::i;:::-;22014:74;;22097:93;22186:3;22097:93;:::i;:::-;22215:2;22210:3;22206:12;22199:19;;21858:366;;;:::o;22230:419::-;22396:4;22434:2;22423:9;22419:18;22411:26;;22483:9;22477:4;22473:20;22469:1;22458:9;22454:17;22447:47;22511:131;22637:4;22511:131;:::i;:::-;22503:139;;22230:419;;;:::o;22655:305::-;22695:3;22714:20;22732:1;22714:20;:::i;:::-;22709:25;;22748:20;22766:1;22748:20;:::i;:::-;22743:25;;22902:1;22834:66;22830:74;22827:1;22824:81;22821:107;;;22908:18;;:::i;:::-;22821:107;22952:1;22949;22945:9;22938:16;;22655:305;;;;:::o;22966:227::-;23106:34;23102:1;23094:6;23090:14;23083:58;23175:10;23170:2;23162:6;23158:15;23151:35;22966:227;:::o;23199:366::-;23341:3;23362:67;23426:2;23421:3;23362:67;:::i;:::-;23355:74;;23438:93;23527:3;23438:93;:::i;:::-;23556:2;23551:3;23547:12;23540:19;;23199:366;;;:::o;23571:419::-;23737:4;23775:2;23764:9;23760:18;23752:26;;23824:9;23818:4;23814:20;23810:1;23799:9;23795:17;23788:47;23852:131;23978:4;23852:131;:::i;:::-;23844:139;;23571:419;;;:::o;23996:221::-;24136:34;24132:1;24124:6;24120:14;24113:58;24205:4;24200:2;24192:6;24188:15;24181:29;23996:221;:::o;24223:366::-;24365:3;24386:67;24450:2;24445:3;24386:67;:::i;:::-;24379:74;;24462:93;24551:3;24462:93;:::i;:::-;24580:2;24575:3;24571:12;24564:19;;24223:366;;;:::o;24595:419::-;24761:4;24799:2;24788:9;24784:18;24776:26;;24848:9;24842:4;24838:20;24834:1;24823:9;24819:17;24812:47;24876:131;25002:4;24876:131;:::i;:::-;24868:139;;24595:419;;;:::o;25020:348::-;25060:7;25083:20;25101:1;25083:20;:::i;:::-;25078:25;;25117:20;25135:1;25117:20;:::i;:::-;25112:25;;25305:1;25237:66;25233:74;25230:1;25227:81;25222:1;25215:9;25208:17;25204:105;25201:131;;;25312:18;;:::i;:::-;25201:131;25360:1;25357;25353:9;25342:20;;25020:348;;;;:::o;25374:220::-;25514:34;25510:1;25502:6;25498:14;25491:58;25583:3;25578:2;25570:6;25566:15;25559:28;25374:220;:::o;25600:366::-;25742:3;25763:67;25827:2;25822:3;25763:67;:::i;:::-;25756:74;;25839:93;25928:3;25839:93;:::i;:::-;25957:2;25952:3;25948:12;25941:19;;25600:366;;;:::o;25972:419::-;26138:4;26176:2;26165:9;26161:18;26153:26;;26225:9;26219:4;26215:20;26211:1;26200:9;26196:17;26189:47;26253:131;26379:4;26253:131;:::i;:::-;26245:139;;25972:419;;;:::o;26397:234::-;26537:34;26533:1;26525:6;26521:14;26514:58;26606:17;26601:2;26593:6;26589:15;26582:42;26397:234;:::o;26637:366::-;26779:3;26800:67;26864:2;26859:3;26800:67;:::i;:::-;26793:74;;26876:93;26965:3;26876:93;:::i;:::-;26994:2;26989:3;26985:12;26978:19;;26637:366;;;:::o;27009:419::-;27175:4;27213:2;27202:9;27198:18;27190:26;;27262:9;27256:4;27252:20;27248:1;27237:9;27233:17;27226:47;27290:131;27416:4;27290:131;:::i;:::-;27282:139;;27009:419;;;:::o;27434:148::-;27536:11;27573:3;27558:18;;27434:148;;;;:::o;27588:377::-;27694:3;27722:39;27755:5;27722:39;:::i;:::-;27777:89;27859:6;27854:3;27777:89;:::i;:::-;27770:96;;27875:52;27920:6;27915:3;27908:4;27901:5;27897:16;27875:52;:::i;:::-;27952:6;27947:3;27943:16;27936:23;;27698:267;27588:377;;;;:::o;27971:141::-;28020:4;28043:3;28035:11;;28066:3;28063:1;28056:14;28100:4;28097:1;28087:18;28079:26;;27971:141;;;:::o;28142:845::-;28245:3;28282:5;28276:12;28311:36;28337:9;28311:36;:::i;:::-;28363:89;28445:6;28440:3;28363:89;:::i;:::-;28356:96;;28483:1;28472:9;28468:17;28499:1;28494:137;;;;28645:1;28640:341;;;;28461:520;;28494:137;28578:4;28574:9;28563;28559:25;28554:3;28547:38;28614:6;28609:3;28605:16;28598:23;;28494:137;;28640:341;28707:38;28739:5;28707:38;:::i;:::-;28767:1;28781:154;28795:6;28792:1;28789:13;28781:154;;;28869:7;28863:14;28859:1;28854:3;28850:11;28843:35;28919:1;28910:7;28906:15;28895:26;;28817:4;28814:1;28810:12;28805:17;;28781:154;;;28964:6;28959:3;28955:16;28948:23;;28647:334;;28461:520;;28249:738;;28142:845;;;;:::o;28993:589::-;29218:3;29240:95;29331:3;29322:6;29240:95;:::i;:::-;29233:102;;29352:95;29443:3;29434:6;29352:95;:::i;:::-;29345:102;;29464:92;29552:3;29543:6;29464:92;:::i;:::-;29457:99;;29573:3;29566:10;;28993:589;;;;;;:::o;29588:225::-;29728:34;29724:1;29716:6;29712:14;29705:58;29797:8;29792:2;29784:6;29780:15;29773:33;29588:225;:::o;29819:366::-;29961:3;29982:67;30046:2;30041:3;29982:67;:::i;:::-;29975:74;;30058:93;30147:3;30058:93;:::i;:::-;30176:2;30171:3;30167:12;30160:19;;29819:366;;;:::o;30191:419::-;30357:4;30395:2;30384:9;30380:18;30372:26;;30444:9;30438:4;30434:20;30430:1;30419:9;30415:17;30408:47;30472:131;30598:4;30472:131;:::i;:::-;30464:139;;30191:419;;;:::o;30616:228::-;30756:34;30752:1;30744:6;30740:14;30733:58;30825:11;30820:2;30812:6;30808:15;30801:36;30616:228;:::o;30850:366::-;30992:3;31013:67;31077:2;31072:3;31013:67;:::i;:::-;31006:74;;31089:93;31178:3;31089:93;:::i;:::-;31207:2;31202:3;31198:12;31191:19;;30850:366;;;:::o;31222:419::-;31388:4;31426:2;31415:9;31411:18;31403:26;;31475:9;31469:4;31465:20;31461:1;31450:9;31446:17;31439:47;31503:131;31629:4;31503:131;:::i;:::-;31495:139;;31222:419;;;:::o;31647:86::-;31682:7;31722:4;31715:5;31711:16;31700:27;;31647:86;;;:::o;31739:118::-;31810:22;31826:5;31810:22;:::i;:::-;31803:5;31800:33;31790:61;;31847:1;31844;31837:12;31790:61;31739:118;:::o;31863:135::-;31907:5;31945:6;31932:20;31923:29;;31961:31;31986:5;31961:31;:::i;:::-;31863:135;;;;:::o;32004:325::-;32061:6;32110:2;32098:9;32089:7;32085:23;32081:32;32078:119;;;32116:79;;:::i;:::-;32078:119;32236:1;32261:51;32304:7;32295:6;32284:9;32280:22;32261:51;:::i;:::-;32251:61;;32207:115;32004:325;;;;:::o;32335:98::-;32386:6;32420:5;32414:12;32404:22;;32335:98;;;:::o;32439:168::-;32522:11;32556:6;32551:3;32544:19;32596:4;32591:3;32587:14;32572:29;;32439:168;;;;:::o;32613:360::-;32699:3;32727:38;32759:5;32727:38;:::i;:::-;32781:70;32844:6;32839:3;32781:70;:::i;:::-;32774:77;;32860:52;32905:6;32900:3;32893:4;32886:5;32882:16;32860:52;:::i;:::-;32937:29;32959:6;32937:29;:::i;:::-;32932:3;32928:39;32921:46;;32703:270;32613:360;;;;:::o;32979:640::-;33174:4;33212:3;33201:9;33197:19;33189:27;;33226:71;33294:1;33283:9;33279:17;33270:6;33226:71;:::i;:::-;33307:72;33375:2;33364:9;33360:18;33351:6;33307:72;:::i;:::-;33389;33457:2;33446:9;33442:18;33433:6;33389:72;:::i;:::-;33508:9;33502:4;33498:20;33493:2;33482:9;33478:18;33471:48;33536:76;33607:4;33598:6;33536:76;:::i;:::-;33528:84;;32979:640;;;;;;;:::o;33625:141::-;33681:5;33712:6;33706:13;33697:22;;33728:32;33754:5;33728:32;:::i;:::-;33625:141;;;;:::o;33772:349::-;33841:6;33890:2;33878:9;33869:7;33865:23;33861:32;33858:119;;;33896:79;;:::i;:::-;33858:119;34016:1;34041:63;34096:7;34087:6;34076:9;34072:22;34041:63;:::i;:::-;34031:73;;33987:127;33772:349;;;;:::o;34127:180::-;34175:77;34172:1;34165:88;34272:4;34269:1;34262:15;34296:4;34293:1;34286:15;34313:185;34353:1;34370:20;34388:1;34370:20;:::i;:::-;34365:25;;34404:20;34422:1;34404:20;:::i;:::-;34399:25;;34443:1;34433:35;;34448:18;;:::i;:::-;34433:35;34490:1;34487;34483:9;34478:14;;34313:185;;;;:::o;34504:191::-;34544:4;34564:20;34582:1;34564:20;:::i;:::-;34559:25;;34598:20;34616:1;34598:20;:::i;:::-;34593:25;;34637:1;34634;34631:8;34628:34;;;34642:18;;:::i;:::-;34628:34;34687:1;34684;34680:9;34672:17;;34504:191;;;;:::o;34701:176::-;34733:1;34750:20;34768:1;34750:20;:::i;:::-;34745:25;;34784:20;34802:1;34784:20;:::i;:::-;34779:25;;34823:1;34813:35;;34828:18;;:::i;:::-;34813:35;34869:1;34866;34862:9;34857:14;;34701:176;;;;:::o

Swarm Source

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