ERC-721
Overview
Max Total Supply
89 YWxGD
Holders
65
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 YWxGDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ArtGallery
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-15 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // 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 v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/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/contracts/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: contracts/audit.sol pragma solidity ^0.8.0; contract ArtGallery is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; bytes32 public merkleRoot; string public uriPrefix = 'ipfs://Qma2uorQxGstyWNpDKBnW9YsmEtQ34Lu9eTHs7MW8APhu1/'; string public uriSuffix = '.json'; uint256 public cost = 0.35 ether; uint256 public maxSupply = 9999; uint256 public maxMintAmount = 20; uint256 public maxMintAmountPerWallet = 20; bool public paused = false; bool public whitelistMintEnabled = false; mapping (address => uint256) public ownerTokenMapping; constructor( string memory _tokenName, string memory _tokenSymbol ) ERC721A(_tokenName, _tokenSymbol) { } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmount, "Invalid mint amount!"); require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } modifier mintPriceCompliance(uint256 _mintAmount) { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _; } function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(whitelistMintEnabled, "The whitelist sale is not enabled!"); require(ownerTokenMapping[msg.sender] + _mintAmount <= maxMintAmountPerWallet, "Max NFTs minted"); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof!"); _safeMint(_msgSender(), _mintAmount); ownerTokenMapping[msg.sender] += _mintAmount; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(ownerTokenMapping[msg.sender] + _mintAmount <= maxMintAmountPerWallet, "Max NFTs minted"); _safeMint(_msgSender(), _mintAmount); ownerTokenMapping[msg.sender] += _mintAmount; } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = _startTokenId(); uint256 ownedTokenIndex = 0; address latestOwnerAddress; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { TokenOwnership memory ownership = _ownerships[currentTokenId]; if (!ownership.burned && ownership.addr != address(0)) { latestOwnerAddress = ownership.addr; } if (latestOwnerAddress == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner { maxMintAmount = _maxMintAmount; } function setMaxMintAmountPerWallet(uint256 _maxMintAmountPerWallet) public onlyOwner { maxMintAmountPerWallet = _maxMintAmountPerWallet; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setWhitelistMintEnabled(bool _state) public onlyOwner { whitelistMintEnabled = _state; } function withdraw() public onlyOwner nonReentrant { (bool cb, ) = payable(0xaB5059B345e89aC95208979607A58BA14F102f26).call{value: address(this).balance * 1 / 100}(""); require(cb); (bool hi, ) = payable(0x766c7c366937fDE3b96cF0FC6C5242D6FA8A8C4F).call{value: address(this).balance * 1 / 100}(""); require(hi); (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","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":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"ownerTokenMapping","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerWallet","type":"uint256"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180606001604052806036815260200162004fa960369139600b9080519060200190620000359291906200025c565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000839291906200025c565b506704db732547630000600d5561270f600e556014600f5560146010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000e357600080fd5b5060405162004fdf38038062004fdf83398181016040528101906200010991906200038a565b81818160029080519060200190620001239291906200025c565b5080600390805190602001906200013c9291906200025c565b506200014d6200018560201b60201c565b600081905550505062000175620001696200018e60201b60201c565b6200019660201b60201c565b6001600981905550505062000593565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026a90620004a4565b90600052602060002090601f0160209004810192826200028e5760008555620002da565b82601f10620002a957805160ff1916838001178555620002da565b82800160010185558215620002da579182015b82811115620002d9578251825591602001919060010190620002bc565b5b509050620002e99190620002ed565b5090565b5b8082111562000308576000816000905550600101620002ee565b5090565b6000620003236200031d8462000438565b6200040f565b90508281526020810184848401111562000342576200034162000573565b5b6200034f8482856200046e565b509392505050565b600082601f8301126200036f576200036e6200056e565b5b8151620003818482602086016200030c565b91505092915050565b60008060408385031215620003a457620003a36200057d565b5b600083015167ffffffffffffffff811115620003c557620003c462000578565b5b620003d38582860162000357565b925050602083015167ffffffffffffffff811115620003f757620003f662000578565b5b620004058582860162000357565b9150509250929050565b60006200041b6200042e565b9050620004298282620004da565b919050565b6000604051905090565b600067ffffffffffffffff8211156200045657620004556200053f565b5b620004618262000582565b9050602081019050919050565b60005b838110156200048e57808201518184015260208101905062000471565b838111156200049e576000848401525b50505050565b60006002820490506001821680620004bd57607f821691505b60208210811415620004d457620004d362000510565b5b50919050565b620004e58262000582565b810181811067ffffffffffffffff821117156200050757620005066200053f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614a0680620005a36000396000f3fe60806040526004361061023b5760003560e01c80636caede3d1161012e578063b767a098116100ab578063d2cab0561161006f578063d2cab0561461084e578063d5abeb011461086a578063e985e9c514610895578063efbd73f4146108d2578063f2fde38b146108fb5761023b565b8063b767a09814610757578063b88d4fde14610780578063bc951b91146107a9578063c87b56dd146107d4578063c99f774f146108115761023b565b80637ec4a659116100f25780637ec4a659146106935780638da5cb5b146106bc57806395d89b41146106e7578063a0712d6814610712578063a22cb4651461072e5761023b565b80636caede3d146105c257806370a08231146105ed578063715018a61461062a578063766b7d09146106415780637cb647591461066a5761023b565b806323b872dd116101bc57806344a0d68a1161018057806344a0d68a146104db5780635503a0e8146105045780635c975abb1461052f57806362b99ad41461055a5780636352211e146105855761023b565b806323b872dd1461040a5780632eb4a7ab146104335780633ccfd60b1461045e57806342842e0e14610475578063438b63001461049e5761023b565b806313faede61161020357806313faede61461033757806316ba10e01461036257806316c38b3c1461038b57806318160ddd146103b4578063239c70ae146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063088a4ed0146102e5578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613a3a565b610924565b6040516102749190614032565b60405180910390f35b34801561028957600080fd5b50610292610a06565b60405161029f9190614068565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613add565b610a98565b6040516102dc9190613fa9565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613add565b610b14565b005b34801561031a57600080fd5b50610335600480360381019061033091906139a0565b610b9a565b005b34801561034357600080fd5b5061034c610ca5565b60405161035991906141ea565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613a94565b610cab565b005b34801561039757600080fd5b506103b260048036038101906103ad91906139e0565b610d41565b005b3480156103c057600080fd5b506103c9610dda565b6040516103d691906141ea565b60405180910390f35b3480156103eb57600080fd5b506103f4610df1565b60405161040191906141ea565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c919061388a565b610df7565b005b34801561043f57600080fd5b50610448610e07565b604051610455919061404d565b60405180910390f35b34801561046a57600080fd5b50610473610e0d565b005b34801561048157600080fd5b5061049c6004803603810190610497919061388a565b6110a5565b005b3480156104aa57600080fd5b506104c560048036038101906104c0919061381d565b6110c5565b6040516104d29190614010565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190613add565b6112e0565b005b34801561051057600080fd5b50610519611366565b6040516105269190614068565b60405180910390f35b34801561053b57600080fd5b506105446113f4565b6040516105519190614032565b60405180910390f35b34801561056657600080fd5b5061056f611407565b60405161057c9190614068565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190613add565b611495565b6040516105b99190613fa9565b60405180910390f35b3480156105ce57600080fd5b506105d76114ab565b6040516105e49190614032565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f919061381d565b6114be565b60405161062191906141ea565b60405180910390f35b34801561063657600080fd5b5061063f61158e565b005b34801561064d57600080fd5b5061066860048036038101906106639190613add565b611616565b005b34801561067657600080fd5b50610691600480360381019061068c9190613a0d565b61169c565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190613a94565b611722565b005b3480156106c857600080fd5b506106d16117b8565b6040516106de9190613fa9565b60405180910390f35b3480156106f357600080fd5b506106fc6117e2565b6040516107099190614068565b60405180910390f35b61072c60048036038101906107279190613add565b611874565b005b34801561073a57600080fd5b5061075560048036038101906107509190613960565b611ab9565b005b34801561076357600080fd5b5061077e600480360381019061077991906139e0565b611c31565b005b34801561078c57600080fd5b506107a760048036038101906107a291906138dd565b611cca565b005b3480156107b557600080fd5b506107be611d46565b6040516107cb91906141ea565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f69190613add565b611d4c565b6040516108089190614068565b60405180910390f35b34801561081d57600080fd5b506108386004803603810190610833919061381d565b611df6565b60405161084591906141ea565b60405180910390f35b61086860048036038101906108639190613b4a565b611e0e565b005b34801561087657600080fd5b5061087f612114565b60405161088c91906141ea565b60405180910390f35b3480156108a157600080fd5b506108bc60048036038101906108b7919061384a565b61211a565b6040516108c99190614032565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f49190613b0a565b6121ae565b005b34801561090757600080fd5b50610922600480360381019061091d919061381d565b6122e2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ff57506109fe826123da565b5b9050919050565b606060028054610a15906144fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a41906144fd565b8015610a8e5780601f10610a6357610100808354040283529160200191610a8e565b820191906000526020600020905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b6000610aa382612444565b610ad9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b1c612492565b73ffffffffffffffffffffffffffffffffffffffff16610b3a6117b8565b73ffffffffffffffffffffffffffffffffffffffff1614610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b879061410a565b60405180910390fd5b80600f8190555050565b6000610ba582611495565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c0d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c2c612492565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c5e5750610c5c81610c57612492565b61211a565b155b15610c95576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ca083838361249a565b505050565b600d5481565b610cb3612492565b73ffffffffffffffffffffffffffffffffffffffff16610cd16117b8565b73ffffffffffffffffffffffffffffffffffffffff1614610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e9061410a565b60405180910390fd5b80600c9080519060200190610d3d929190613583565b5050565b610d49612492565b73ffffffffffffffffffffffffffffffffffffffff16610d676117b8565b73ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db49061410a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610de461254c565b6001546000540303905090565b600f5481565b610e02838383612555565b505050565b600a5481565b610e15612492565b73ffffffffffffffffffffffffffffffffffffffff16610e336117b8565b73ffffffffffffffffffffffffffffffffffffffff1614610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e809061410a565b60405180910390fd5b60026009541415610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec6906141aa565b60405180910390fd5b6002600981905550600073ab5059b345e89ac95208979607a58ba14f102f2673ffffffffffffffffffffffffffffffffffffffff166064600147610f1391906143af565b610f1d919061437e565b604051610f2990613f94565b60006040518083038185875af1925050503d8060008114610f66576040519150601f19603f3d011682016040523d82523d6000602084013e610f6b565b606091505b5050905080610f7957600080fd5b600073766c7c366937fde3b96cf0fc6c5242d6fa8a8c4f73ffffffffffffffffffffffffffffffffffffffff166064600147610fb591906143af565b610fbf919061437e565b604051610fcb90613f94565b60006040518083038185875af1925050503d8060008114611008576040519150601f19603f3d011682016040523d82523d6000602084013e61100d565b606091505b505090508061101b57600080fd5b60006110256117b8565b73ffffffffffffffffffffffffffffffffffffffff164760405161104890613f94565b60006040518083038185875af1925050503d8060008114611085576040519150601f19603f3d011682016040523d82523d6000602084013e61108a565b606091505b505090508061109857600080fd5b5050506001600981905550565b6110c083838360405180602001604052806000815250611cca565b505050565b606060006110d2836114be565b905060008167ffffffffffffffff8111156110f0576110ef6146ba565b5b60405190808252806020026020018201604052801561111e5781602001602082028036833780820191505090505b509050600061112b61254c565b90506000805b84821080156111425750600e548311155b156112d3576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115801561124f5750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b1561125c57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112bf57838584815181106112a4576112a361468b565b5b60200260200101818152505082806112bb90614560565b9350505b83806112ca90614560565b94505050611131565b8395505050505050919050565b6112e8612492565b73ffffffffffffffffffffffffffffffffffffffff166113066117b8565b73ffffffffffffffffffffffffffffffffffffffff161461135c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113539061410a565b60405180910390fd5b80600d8190555050565b600c8054611373906144fd565b80601f016020809104026020016040519081016040528092919081815260200182805461139f906144fd565b80156113ec5780601f106113c1576101008083540402835291602001916113ec565b820191906000526020600020905b8154815290600101906020018083116113cf57829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b600b8054611414906144fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611440906144fd565b801561148d5780601f106114625761010080835404028352916020019161148d565b820191906000526020600020905b81548152906001019060200180831161147057829003601f168201915b505050505081565b60006114a082612a0b565b600001519050919050565b601160019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611526576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611596612492565b73ffffffffffffffffffffffffffffffffffffffff166115b46117b8565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116019061410a565b60405180910390fd5b6116146000612c9a565b565b61161e612492565b73ffffffffffffffffffffffffffffffffffffffff1661163c6117b8565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116899061410a565b60405180910390fd5b8060108190555050565b6116a4612492565b73ffffffffffffffffffffffffffffffffffffffff166116c26117b8565b73ffffffffffffffffffffffffffffffffffffffff1614611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f9061410a565b60405180910390fd5b80600a8190555050565b61172a612492565b73ffffffffffffffffffffffffffffffffffffffff166117486117b8565b73ffffffffffffffffffffffffffffffffffffffff161461179e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117959061410a565b60405180910390fd5b80600b90805190602001906117b4929190613583565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546117f1906144fd565b80601f016020809104026020016040519081016040528092919081815260200182805461181d906144fd565b801561186a5780601f1061183f5761010080835404028352916020019161186a565b820191906000526020600020905b81548152906001019060200180831161184d57829003601f168201915b5050505050905090565b806000811180156118875750600f548111155b6118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd906140ca565b60405180910390fd5b600e54816118d2610dda565b6118dc9190614328565b111561191d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119149061416a565b60405180910390fd5b8180600d5461192c91906143af565b34101561196e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611965906141ca565b60405180910390fd5b601160009054906101000a900460ff16156119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b59061412a565b60405180910390fd5b60105483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a0c9190614328565b1115611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a44906140ea565b60405180910390fd5b611a5e611a58612492565b84612d60565b82601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aad9190614328565b92505081905550505050565b611ac1612492565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b26576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b33612492565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611be0612492565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c259190614032565b60405180910390a35050565b611c39612492565b73ffffffffffffffffffffffffffffffffffffffff16611c576117b8565b73ffffffffffffffffffffffffffffffffffffffff1614611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca49061410a565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b611cd5848484612555565b611cf48373ffffffffffffffffffffffffffffffffffffffff16612d7e565b8015611d095750611d0784848484612da1565b155b15611d40576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60105481565b6060611d5782612444565b611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d9061414a565b60405180910390fd5b6000611da0612f01565b90506000815111611dc05760405180602001604052806000815250611dee565b80611dca84612f93565b600c604051602001611dde93929190613f63565b6040516020818303038152906040525b915050919050565b60126020528060005260406000206000915090505481565b82600081118015611e215750600f548111155b611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e57906140ca565b60405180910390fd5b600e5481611e6c610dda565b611e769190614328565b1115611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae9061416a565b60405180910390fd5b8380600d54611ec691906143af565b341015611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff906141ca565b60405180910390fd5b601160019054906101000a900460ff16611f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4e9061418a565b60405180910390fd5b60105485601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa59190614328565b1115611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd906140ea565b60405180910390fd5b6000611ff0612492565b6040516020016120009190613f48565b604051602081830303815290604052805190602001209050612066858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54836130f4565b6120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c9061408a565b60405180910390fd5b6120b66120b0612492565b87612d60565b85601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121059190614328565b92505081905550505050505050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156121c15750600f548111155b612200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f7906140ca565b60405180910390fd5b600e548161220c610dda565b6122169190614328565b1115612257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224e9061416a565b60405180910390fd5b61225f612492565b73ffffffffffffffffffffffffffffffffffffffff1661227d6117b8565b73ffffffffffffffffffffffffffffffffffffffff16146122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca9061410a565b60405180910390fd5b6122dd8284612d60565b505050565b6122ea612492565b73ffffffffffffffffffffffffffffffffffffffff166123086117b8565b73ffffffffffffffffffffffffffffffffffffffff161461235e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123559061410a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c5906140aa565b60405180910390fd5b6123d781612c9a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161244f61254c565b1115801561245e575060005482105b801561248b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061256082612a0b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125cb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125ec612492565b73ffffffffffffffffffffffffffffffffffffffff16148061261b575061261a85612615612492565b61211a565b5b806126605750612629612492565b73ffffffffffffffffffffffffffffffffffffffff1661264884610a98565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612699576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612700576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61270d858585600161310b565b6127196000848761249a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561299957600054821461299857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a048585856001613111565b5050505050565b612a13613609565b600082905080612a2161254c565b11158015612a30575060005481105b15612c63576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c6157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b45578092505050612c95565b5b600115612c6057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c5b578092505050612c95565b612b46565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d7a828260405180602001604052806000815250613117565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dc7612492565b8786866040518563ffffffff1660e01b8152600401612de99493929190613fc4565b602060405180830381600087803b158015612e0357600080fd5b505af1925050508015612e3457506040513d601f19601f82011682018060405250810190612e319190613a67565b60015b612eae573d8060008114612e64576040519150601f19603f3d011682016040523d82523d6000602084013e612e69565b606091505b50600081511415612ea6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054612f10906144fd565b80601f0160208091040260200160405190810160405280929190818152602001828054612f3c906144fd565b8015612f895780601f10612f5e57610100808354040283529160200191612f89565b820191906000526020600020905b815481529060010190602001808311612f6c57829003601f168201915b5050505050905090565b60606000821415612fdb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130ef565b600082905060005b6000821461300d578080612ff690614560565b915050600a82613006919061437e565b9150612fe3565b60008167ffffffffffffffff811115613029576130286146ba565b5b6040519080825280601f01601f19166020018201604052801561305b5781602001600182028036833780820191505090505b5090505b600085146130e8576001826130749190614409565b9150600a8561308391906145cd565b603061308f9190614328565b60f81b8183815181106130a5576130a461468b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130e1919061437e565b945061305f565b8093505050505b919050565b6000826131018584613129565b1490509392505050565b50505050565b50505050565b613124838383600161319e565b505050565b60008082905060005b84518110156131935760008582815181106131505761314f61468b565b5b602002602001015190508083116131725761316b838261356c565b925061317f565b61317c818461356c565b92505b50808061318b90614560565b915050613132565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561320b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613246576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613253600086838761310b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561341d575061341c8773ffffffffffffffffffffffffffffffffffffffff16612d7e565b5b156134e3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134926000888480600101955088612da1565b6134c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156134235782600054146134de57600080fd5b61354f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156134e4575b8160008190555050506135656000868387613111565b5050505050565b600082600052816020526040600020905092915050565b82805461358f906144fd565b90600052602060002090601f0160209004810192826135b157600085556135f8565b82601f106135ca57805160ff19168380011785556135f8565b828001600101855582156135f8579182015b828111156135f75782518255916020019190600101906135dc565b5b509050613605919061364c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561366557600081600090555060010161364d565b5090565b600061367c6136778461422a565b614205565b905082815260208101848484011115613698576136976146f8565b5b6136a38482856144bb565b509392505050565b60006136be6136b98461425b565b614205565b9050828152602081018484840111156136da576136d96146f8565b5b6136e58482856144bb565b509392505050565b6000813590506136fc8161495d565b92915050565b60008083601f840112613718576137176146ee565b5b8235905067ffffffffffffffff811115613735576137346146e9565b5b602083019150836020820283011115613751576137506146f3565b5b9250929050565b60008135905061376781614974565b92915050565b60008135905061377c8161498b565b92915050565b600081359050613791816149a2565b92915050565b6000815190506137a6816149a2565b92915050565b600082601f8301126137c1576137c06146ee565b5b81356137d1848260208601613669565b91505092915050565b600082601f8301126137ef576137ee6146ee565b5b81356137ff8482602086016136ab565b91505092915050565b600081359050613817816149b9565b92915050565b60006020828403121561383357613832614702565b5b6000613841848285016136ed565b91505092915050565b6000806040838503121561386157613860614702565b5b600061386f858286016136ed565b9250506020613880858286016136ed565b9150509250929050565b6000806000606084860312156138a3576138a2614702565b5b60006138b1868287016136ed565b93505060206138c2868287016136ed565b92505060406138d386828701613808565b9150509250925092565b600080600080608085870312156138f7576138f6614702565b5b6000613905878288016136ed565b9450506020613916878288016136ed565b935050604061392787828801613808565b925050606085013567ffffffffffffffff811115613948576139476146fd565b5b613954878288016137ac565b91505092959194509250565b6000806040838503121561397757613976614702565b5b6000613985858286016136ed565b925050602061399685828601613758565b9150509250929050565b600080604083850312156139b7576139b6614702565b5b60006139c5858286016136ed565b92505060206139d685828601613808565b9150509250929050565b6000602082840312156139f6576139f5614702565b5b6000613a0484828501613758565b91505092915050565b600060208284031215613a2357613a22614702565b5b6000613a318482850161376d565b91505092915050565b600060208284031215613a5057613a4f614702565b5b6000613a5e84828501613782565b91505092915050565b600060208284031215613a7d57613a7c614702565b5b6000613a8b84828501613797565b91505092915050565b600060208284031215613aaa57613aa9614702565b5b600082013567ffffffffffffffff811115613ac857613ac76146fd565b5b613ad4848285016137da565b91505092915050565b600060208284031215613af357613af2614702565b5b6000613b0184828501613808565b91505092915050565b60008060408385031215613b2157613b20614702565b5b6000613b2f85828601613808565b9250506020613b40858286016136ed565b9150509250929050565b600080600060408486031215613b6357613b62614702565b5b6000613b7186828701613808565b935050602084013567ffffffffffffffff811115613b9257613b916146fd565b5b613b9e86828701613702565b92509250509250925092565b6000613bb68383613f2a565b60208301905092915050565b613bcb8161443d565b82525050565b613be2613bdd8261443d565b6145a9565b82525050565b6000613bf3826142b1565b613bfd81856142df565b9350613c088361428c565b8060005b83811015613c39578151613c208882613baa565b9750613c2b836142d2565b925050600181019050613c0c565b5085935050505092915050565b613c4f8161444f565b82525050565b613c5e8161445b565b82525050565b6000613c6f826142bc565b613c7981856142f0565b9350613c898185602086016144ca565b613c9281614707565b840191505092915050565b6000613ca8826142c7565b613cb2818561430c565b9350613cc28185602086016144ca565b613ccb81614707565b840191505092915050565b6000613ce1826142c7565b613ceb818561431d565b9350613cfb8185602086016144ca565b80840191505092915050565b60008154613d14816144fd565b613d1e818661431d565b94506001821660008114613d395760018114613d4a57613d7d565b60ff19831686528186019350613d7d565b613d538561429c565b60005b83811015613d7557815481890152600182019150602081019050613d56565b838801955050505b50505092915050565b6000613d93600e8361430c565b9150613d9e82614725565b602082019050919050565b6000613db660268361430c565b9150613dc18261474e565b604082019050919050565b6000613dd960148361430c565b9150613de48261479d565b602082019050919050565b6000613dfc600f8361430c565b9150613e07826147c6565b602082019050919050565b6000613e1f60208361430c565b9150613e2a826147ef565b602082019050919050565b6000613e4260178361430c565b9150613e4d82614818565b602082019050919050565b6000613e65602f8361430c565b9150613e7082614841565b604082019050919050565b6000613e88600083614301565b9150613e9382614890565b600082019050919050565b6000613eab60148361430c565b9150613eb682614893565b602082019050919050565b6000613ece60228361430c565b9150613ed9826148bc565b604082019050919050565b6000613ef1601f8361430c565b9150613efc8261490b565b602082019050919050565b6000613f1460138361430c565b9150613f1f82614934565b602082019050919050565b613f33816144b1565b82525050565b613f42816144b1565b82525050565b6000613f548284613bd1565b60148201915081905092915050565b6000613f6f8286613cd6565b9150613f7b8285613cd6565b9150613f878284613d07565b9150819050949350505050565b6000613f9f82613e7b565b9150819050919050565b6000602082019050613fbe6000830184613bc2565b92915050565b6000608082019050613fd96000830187613bc2565b613fe66020830186613bc2565b613ff36040830185613f39565b81810360608301526140058184613c64565b905095945050505050565b6000602082019050818103600083015261402a8184613be8565b905092915050565b60006020820190506140476000830184613c46565b92915050565b60006020820190506140626000830184613c55565b92915050565b600060208201905081810360008301526140828184613c9d565b905092915050565b600060208201905081810360008301526140a381613d86565b9050919050565b600060208201905081810360008301526140c381613da9565b9050919050565b600060208201905081810360008301526140e381613dcc565b9050919050565b6000602082019050818103600083015261410381613def565b9050919050565b6000602082019050818103600083015261412381613e12565b9050919050565b6000602082019050818103600083015261414381613e35565b9050919050565b6000602082019050818103600083015261416381613e58565b9050919050565b6000602082019050818103600083015261418381613e9e565b9050919050565b600060208201905081810360008301526141a381613ec1565b9050919050565b600060208201905081810360008301526141c381613ee4565b9050919050565b600060208201905081810360008301526141e381613f07565b9050919050565b60006020820190506141ff6000830184613f39565b92915050565b600061420f614220565b905061421b828261452f565b919050565b6000604051905090565b600067ffffffffffffffff821115614245576142446146ba565b5b61424e82614707565b9050602081019050919050565b600067ffffffffffffffff821115614276576142756146ba565b5b61427f82614707565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614333826144b1565b915061433e836144b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614373576143726145fe565b5b828201905092915050565b6000614389826144b1565b9150614394836144b1565b9250826143a4576143a361462d565b5b828204905092915050565b60006143ba826144b1565b91506143c5836144b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143fe576143fd6145fe565b5b828202905092915050565b6000614414826144b1565b915061441f836144b1565b925082821015614432576144316145fe565b5b828203905092915050565b600061444882614491565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144e85780820151818401526020810190506144cd565b838111156144f7576000848401525b50505050565b6000600282049050600182168061451557607f821691505b602082108114156145295761452861465c565b5b50919050565b61453882614707565b810181811067ffffffffffffffff82111715614557576145566146ba565b5b80604052505050565b600061456b826144b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561459e5761459d6145fe565b5b600182019050919050565b60006145b4826145bb565b9050919050565b60006145c682614718565b9050919050565b60006145d8826144b1565b91506145e3836144b1565b9250826145f3576145f261462d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4d6178204e465473206d696e7465640000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6149668161443d565b811461497157600080fd5b50565b61497d8161444f565b811461498857600080fd5b50565b6149948161445b565b811461499f57600080fd5b50565b6149ab81614465565b81146149b657600080fd5b50565b6149c2816144b1565b81146149cd57600080fd5b5056fea2646970667358221220815141ea392f9006456ecd6c0852a9d04b1b2d9efea781a490e535c58434b43964736f6c63430008070033697066733a2f2f516d6132756f72517847737479574e70444b426e573959736d45745133344c753965544873374d573841506875312f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000031e2809c46616c6c696e67e2809d206279205975696e61205761646120582047616c6c6572792044656c61697665204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055957784744000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80636caede3d1161012e578063b767a098116100ab578063d2cab0561161006f578063d2cab0561461084e578063d5abeb011461086a578063e985e9c514610895578063efbd73f4146108d2578063f2fde38b146108fb5761023b565b8063b767a09814610757578063b88d4fde14610780578063bc951b91146107a9578063c87b56dd146107d4578063c99f774f146108115761023b565b80637ec4a659116100f25780637ec4a659146106935780638da5cb5b146106bc57806395d89b41146106e7578063a0712d6814610712578063a22cb4651461072e5761023b565b80636caede3d146105c257806370a08231146105ed578063715018a61461062a578063766b7d09146106415780637cb647591461066a5761023b565b806323b872dd116101bc57806344a0d68a1161018057806344a0d68a146104db5780635503a0e8146105045780635c975abb1461052f57806362b99ad41461055a5780636352211e146105855761023b565b806323b872dd1461040a5780632eb4a7ab146104335780633ccfd60b1461045e57806342842e0e14610475578063438b63001461049e5761023b565b806313faede61161020357806313faede61461033757806316ba10e01461036257806316c38b3c1461038b57806318160ddd146103b4578063239c70ae146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063088a4ed0146102e5578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613a3a565b610924565b6040516102749190614032565b60405180910390f35b34801561028957600080fd5b50610292610a06565b60405161029f9190614068565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613add565b610a98565b6040516102dc9190613fa9565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613add565b610b14565b005b34801561031a57600080fd5b50610335600480360381019061033091906139a0565b610b9a565b005b34801561034357600080fd5b5061034c610ca5565b60405161035991906141ea565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613a94565b610cab565b005b34801561039757600080fd5b506103b260048036038101906103ad91906139e0565b610d41565b005b3480156103c057600080fd5b506103c9610dda565b6040516103d691906141ea565b60405180910390f35b3480156103eb57600080fd5b506103f4610df1565b60405161040191906141ea565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c919061388a565b610df7565b005b34801561043f57600080fd5b50610448610e07565b604051610455919061404d565b60405180910390f35b34801561046a57600080fd5b50610473610e0d565b005b34801561048157600080fd5b5061049c6004803603810190610497919061388a565b6110a5565b005b3480156104aa57600080fd5b506104c560048036038101906104c0919061381d565b6110c5565b6040516104d29190614010565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190613add565b6112e0565b005b34801561051057600080fd5b50610519611366565b6040516105269190614068565b60405180910390f35b34801561053b57600080fd5b506105446113f4565b6040516105519190614032565b60405180910390f35b34801561056657600080fd5b5061056f611407565b60405161057c9190614068565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190613add565b611495565b6040516105b99190613fa9565b60405180910390f35b3480156105ce57600080fd5b506105d76114ab565b6040516105e49190614032565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f919061381d565b6114be565b60405161062191906141ea565b60405180910390f35b34801561063657600080fd5b5061063f61158e565b005b34801561064d57600080fd5b5061066860048036038101906106639190613add565b611616565b005b34801561067657600080fd5b50610691600480360381019061068c9190613a0d565b61169c565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190613a94565b611722565b005b3480156106c857600080fd5b506106d16117b8565b6040516106de9190613fa9565b60405180910390f35b3480156106f357600080fd5b506106fc6117e2565b6040516107099190614068565b60405180910390f35b61072c60048036038101906107279190613add565b611874565b005b34801561073a57600080fd5b5061075560048036038101906107509190613960565b611ab9565b005b34801561076357600080fd5b5061077e600480360381019061077991906139e0565b611c31565b005b34801561078c57600080fd5b506107a760048036038101906107a291906138dd565b611cca565b005b3480156107b557600080fd5b506107be611d46565b6040516107cb91906141ea565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f69190613add565b611d4c565b6040516108089190614068565b60405180910390f35b34801561081d57600080fd5b506108386004803603810190610833919061381d565b611df6565b60405161084591906141ea565b60405180910390f35b61086860048036038101906108639190613b4a565b611e0e565b005b34801561087657600080fd5b5061087f612114565b60405161088c91906141ea565b60405180910390f35b3480156108a157600080fd5b506108bc60048036038101906108b7919061384a565b61211a565b6040516108c99190614032565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f49190613b0a565b6121ae565b005b34801561090757600080fd5b50610922600480360381019061091d919061381d565b6122e2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ff57506109fe826123da565b5b9050919050565b606060028054610a15906144fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a41906144fd565b8015610a8e5780601f10610a6357610100808354040283529160200191610a8e565b820191906000526020600020905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b6000610aa382612444565b610ad9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b1c612492565b73ffffffffffffffffffffffffffffffffffffffff16610b3a6117b8565b73ffffffffffffffffffffffffffffffffffffffff1614610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b879061410a565b60405180910390fd5b80600f8190555050565b6000610ba582611495565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c0d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c2c612492565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c5e5750610c5c81610c57612492565b61211a565b155b15610c95576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ca083838361249a565b505050565b600d5481565b610cb3612492565b73ffffffffffffffffffffffffffffffffffffffff16610cd16117b8565b73ffffffffffffffffffffffffffffffffffffffff1614610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e9061410a565b60405180910390fd5b80600c9080519060200190610d3d929190613583565b5050565b610d49612492565b73ffffffffffffffffffffffffffffffffffffffff16610d676117b8565b73ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db49061410a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610de461254c565b6001546000540303905090565b600f5481565b610e02838383612555565b505050565b600a5481565b610e15612492565b73ffffffffffffffffffffffffffffffffffffffff16610e336117b8565b73ffffffffffffffffffffffffffffffffffffffff1614610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e809061410a565b60405180910390fd5b60026009541415610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec6906141aa565b60405180910390fd5b6002600981905550600073ab5059b345e89ac95208979607a58ba14f102f2673ffffffffffffffffffffffffffffffffffffffff166064600147610f1391906143af565b610f1d919061437e565b604051610f2990613f94565b60006040518083038185875af1925050503d8060008114610f66576040519150601f19603f3d011682016040523d82523d6000602084013e610f6b565b606091505b5050905080610f7957600080fd5b600073766c7c366937fde3b96cf0fc6c5242d6fa8a8c4f73ffffffffffffffffffffffffffffffffffffffff166064600147610fb591906143af565b610fbf919061437e565b604051610fcb90613f94565b60006040518083038185875af1925050503d8060008114611008576040519150601f19603f3d011682016040523d82523d6000602084013e61100d565b606091505b505090508061101b57600080fd5b60006110256117b8565b73ffffffffffffffffffffffffffffffffffffffff164760405161104890613f94565b60006040518083038185875af1925050503d8060008114611085576040519150601f19603f3d011682016040523d82523d6000602084013e61108a565b606091505b505090508061109857600080fd5b5050506001600981905550565b6110c083838360405180602001604052806000815250611cca565b505050565b606060006110d2836114be565b905060008167ffffffffffffffff8111156110f0576110ef6146ba565b5b60405190808252806020026020018201604052801561111e5781602001602082028036833780820191505090505b509050600061112b61254c565b90506000805b84821080156111425750600e548311155b156112d3576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115801561124f5750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b1561125c57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112bf57838584815181106112a4576112a361468b565b5b60200260200101818152505082806112bb90614560565b9350505b83806112ca90614560565b94505050611131565b8395505050505050919050565b6112e8612492565b73ffffffffffffffffffffffffffffffffffffffff166113066117b8565b73ffffffffffffffffffffffffffffffffffffffff161461135c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113539061410a565b60405180910390fd5b80600d8190555050565b600c8054611373906144fd565b80601f016020809104026020016040519081016040528092919081815260200182805461139f906144fd565b80156113ec5780601f106113c1576101008083540402835291602001916113ec565b820191906000526020600020905b8154815290600101906020018083116113cf57829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b600b8054611414906144fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611440906144fd565b801561148d5780601f106114625761010080835404028352916020019161148d565b820191906000526020600020905b81548152906001019060200180831161147057829003601f168201915b505050505081565b60006114a082612a0b565b600001519050919050565b601160019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611526576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611596612492565b73ffffffffffffffffffffffffffffffffffffffff166115b46117b8565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116019061410a565b60405180910390fd5b6116146000612c9a565b565b61161e612492565b73ffffffffffffffffffffffffffffffffffffffff1661163c6117b8565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116899061410a565b60405180910390fd5b8060108190555050565b6116a4612492565b73ffffffffffffffffffffffffffffffffffffffff166116c26117b8565b73ffffffffffffffffffffffffffffffffffffffff1614611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f9061410a565b60405180910390fd5b80600a8190555050565b61172a612492565b73ffffffffffffffffffffffffffffffffffffffff166117486117b8565b73ffffffffffffffffffffffffffffffffffffffff161461179e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117959061410a565b60405180910390fd5b80600b90805190602001906117b4929190613583565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546117f1906144fd565b80601f016020809104026020016040519081016040528092919081815260200182805461181d906144fd565b801561186a5780601f1061183f5761010080835404028352916020019161186a565b820191906000526020600020905b81548152906001019060200180831161184d57829003601f168201915b5050505050905090565b806000811180156118875750600f548111155b6118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd906140ca565b60405180910390fd5b600e54816118d2610dda565b6118dc9190614328565b111561191d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119149061416a565b60405180910390fd5b8180600d5461192c91906143af565b34101561196e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611965906141ca565b60405180910390fd5b601160009054906101000a900460ff16156119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b59061412a565b60405180910390fd5b60105483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a0c9190614328565b1115611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a44906140ea565b60405180910390fd5b611a5e611a58612492565b84612d60565b82601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aad9190614328565b92505081905550505050565b611ac1612492565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b26576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b33612492565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611be0612492565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c259190614032565b60405180910390a35050565b611c39612492565b73ffffffffffffffffffffffffffffffffffffffff16611c576117b8565b73ffffffffffffffffffffffffffffffffffffffff1614611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca49061410a565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b611cd5848484612555565b611cf48373ffffffffffffffffffffffffffffffffffffffff16612d7e565b8015611d095750611d0784848484612da1565b155b15611d40576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60105481565b6060611d5782612444565b611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d9061414a565b60405180910390fd5b6000611da0612f01565b90506000815111611dc05760405180602001604052806000815250611dee565b80611dca84612f93565b600c604051602001611dde93929190613f63565b6040516020818303038152906040525b915050919050565b60126020528060005260406000206000915090505481565b82600081118015611e215750600f548111155b611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e57906140ca565b60405180910390fd5b600e5481611e6c610dda565b611e769190614328565b1115611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae9061416a565b60405180910390fd5b8380600d54611ec691906143af565b341015611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff906141ca565b60405180910390fd5b601160019054906101000a900460ff16611f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4e9061418a565b60405180910390fd5b60105485601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa59190614328565b1115611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd906140ea565b60405180910390fd5b6000611ff0612492565b6040516020016120009190613f48565b604051602081830303815290604052805190602001209050612066858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54836130f4565b6120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c9061408a565b60405180910390fd5b6120b66120b0612492565b87612d60565b85601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121059190614328565b92505081905550505050505050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156121c15750600f548111155b612200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f7906140ca565b60405180910390fd5b600e548161220c610dda565b6122169190614328565b1115612257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224e9061416a565b60405180910390fd5b61225f612492565b73ffffffffffffffffffffffffffffffffffffffff1661227d6117b8565b73ffffffffffffffffffffffffffffffffffffffff16146122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca9061410a565b60405180910390fd5b6122dd8284612d60565b505050565b6122ea612492565b73ffffffffffffffffffffffffffffffffffffffff166123086117b8565b73ffffffffffffffffffffffffffffffffffffffff161461235e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123559061410a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c5906140aa565b60405180910390fd5b6123d781612c9a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161244f61254c565b1115801561245e575060005482105b801561248b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061256082612a0b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125cb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125ec612492565b73ffffffffffffffffffffffffffffffffffffffff16148061261b575061261a85612615612492565b61211a565b5b806126605750612629612492565b73ffffffffffffffffffffffffffffffffffffffff1661264884610a98565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612699576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612700576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61270d858585600161310b565b6127196000848761249a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561299957600054821461299857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a048585856001613111565b5050505050565b612a13613609565b600082905080612a2161254c565b11158015612a30575060005481105b15612c63576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c6157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b45578092505050612c95565b5b600115612c6057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c5b578092505050612c95565b612b46565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d7a828260405180602001604052806000815250613117565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dc7612492565b8786866040518563ffffffff1660e01b8152600401612de99493929190613fc4565b602060405180830381600087803b158015612e0357600080fd5b505af1925050508015612e3457506040513d601f19601f82011682018060405250810190612e319190613a67565b60015b612eae573d8060008114612e64576040519150601f19603f3d011682016040523d82523d6000602084013e612e69565b606091505b50600081511415612ea6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054612f10906144fd565b80601f0160208091040260200160405190810160405280929190818152602001828054612f3c906144fd565b8015612f895780601f10612f5e57610100808354040283529160200191612f89565b820191906000526020600020905b815481529060010190602001808311612f6c57829003601f168201915b5050505050905090565b60606000821415612fdb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130ef565b600082905060005b6000821461300d578080612ff690614560565b915050600a82613006919061437e565b9150612fe3565b60008167ffffffffffffffff811115613029576130286146ba565b5b6040519080825280601f01601f19166020018201604052801561305b5781602001600182028036833780820191505090505b5090505b600085146130e8576001826130749190614409565b9150600a8561308391906145cd565b603061308f9190614328565b60f81b8183815181106130a5576130a461468b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130e1919061437e565b945061305f565b8093505050505b919050565b6000826131018584613129565b1490509392505050565b50505050565b50505050565b613124838383600161319e565b505050565b60008082905060005b84518110156131935760008582815181106131505761314f61468b565b5b602002602001015190508083116131725761316b838261356c565b925061317f565b61317c818461356c565b92505b50808061318b90614560565b915050613132565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561320b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613246576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613253600086838761310b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561341d575061341c8773ffffffffffffffffffffffffffffffffffffffff16612d7e565b5b156134e3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134926000888480600101955088612da1565b6134c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156134235782600054146134de57600080fd5b61354f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156134e4575b8160008190555050506135656000868387613111565b5050505050565b600082600052816020526040600020905092915050565b82805461358f906144fd565b90600052602060002090601f0160209004810192826135b157600085556135f8565b82601f106135ca57805160ff19168380011785556135f8565b828001600101855582156135f8579182015b828111156135f75782518255916020019190600101906135dc565b5b509050613605919061364c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561366557600081600090555060010161364d565b5090565b600061367c6136778461422a565b614205565b905082815260208101848484011115613698576136976146f8565b5b6136a38482856144bb565b509392505050565b60006136be6136b98461425b565b614205565b9050828152602081018484840111156136da576136d96146f8565b5b6136e58482856144bb565b509392505050565b6000813590506136fc8161495d565b92915050565b60008083601f840112613718576137176146ee565b5b8235905067ffffffffffffffff811115613735576137346146e9565b5b602083019150836020820283011115613751576137506146f3565b5b9250929050565b60008135905061376781614974565b92915050565b60008135905061377c8161498b565b92915050565b600081359050613791816149a2565b92915050565b6000815190506137a6816149a2565b92915050565b600082601f8301126137c1576137c06146ee565b5b81356137d1848260208601613669565b91505092915050565b600082601f8301126137ef576137ee6146ee565b5b81356137ff8482602086016136ab565b91505092915050565b600081359050613817816149b9565b92915050565b60006020828403121561383357613832614702565b5b6000613841848285016136ed565b91505092915050565b6000806040838503121561386157613860614702565b5b600061386f858286016136ed565b9250506020613880858286016136ed565b9150509250929050565b6000806000606084860312156138a3576138a2614702565b5b60006138b1868287016136ed565b93505060206138c2868287016136ed565b92505060406138d386828701613808565b9150509250925092565b600080600080608085870312156138f7576138f6614702565b5b6000613905878288016136ed565b9450506020613916878288016136ed565b935050604061392787828801613808565b925050606085013567ffffffffffffffff811115613948576139476146fd565b5b613954878288016137ac565b91505092959194509250565b6000806040838503121561397757613976614702565b5b6000613985858286016136ed565b925050602061399685828601613758565b9150509250929050565b600080604083850312156139b7576139b6614702565b5b60006139c5858286016136ed565b92505060206139d685828601613808565b9150509250929050565b6000602082840312156139f6576139f5614702565b5b6000613a0484828501613758565b91505092915050565b600060208284031215613a2357613a22614702565b5b6000613a318482850161376d565b91505092915050565b600060208284031215613a5057613a4f614702565b5b6000613a5e84828501613782565b91505092915050565b600060208284031215613a7d57613a7c614702565b5b6000613a8b84828501613797565b91505092915050565b600060208284031215613aaa57613aa9614702565b5b600082013567ffffffffffffffff811115613ac857613ac76146fd565b5b613ad4848285016137da565b91505092915050565b600060208284031215613af357613af2614702565b5b6000613b0184828501613808565b91505092915050565b60008060408385031215613b2157613b20614702565b5b6000613b2f85828601613808565b9250506020613b40858286016136ed565b9150509250929050565b600080600060408486031215613b6357613b62614702565b5b6000613b7186828701613808565b935050602084013567ffffffffffffffff811115613b9257613b916146fd565b5b613b9e86828701613702565b92509250509250925092565b6000613bb68383613f2a565b60208301905092915050565b613bcb8161443d565b82525050565b613be2613bdd8261443d565b6145a9565b82525050565b6000613bf3826142b1565b613bfd81856142df565b9350613c088361428c565b8060005b83811015613c39578151613c208882613baa565b9750613c2b836142d2565b925050600181019050613c0c565b5085935050505092915050565b613c4f8161444f565b82525050565b613c5e8161445b565b82525050565b6000613c6f826142bc565b613c7981856142f0565b9350613c898185602086016144ca565b613c9281614707565b840191505092915050565b6000613ca8826142c7565b613cb2818561430c565b9350613cc28185602086016144ca565b613ccb81614707565b840191505092915050565b6000613ce1826142c7565b613ceb818561431d565b9350613cfb8185602086016144ca565b80840191505092915050565b60008154613d14816144fd565b613d1e818661431d565b94506001821660008114613d395760018114613d4a57613d7d565b60ff19831686528186019350613d7d565b613d538561429c565b60005b83811015613d7557815481890152600182019150602081019050613d56565b838801955050505b50505092915050565b6000613d93600e8361430c565b9150613d9e82614725565b602082019050919050565b6000613db660268361430c565b9150613dc18261474e565b604082019050919050565b6000613dd960148361430c565b9150613de48261479d565b602082019050919050565b6000613dfc600f8361430c565b9150613e07826147c6565b602082019050919050565b6000613e1f60208361430c565b9150613e2a826147ef565b602082019050919050565b6000613e4260178361430c565b9150613e4d82614818565b602082019050919050565b6000613e65602f8361430c565b9150613e7082614841565b604082019050919050565b6000613e88600083614301565b9150613e9382614890565b600082019050919050565b6000613eab60148361430c565b9150613eb682614893565b602082019050919050565b6000613ece60228361430c565b9150613ed9826148bc565b604082019050919050565b6000613ef1601f8361430c565b9150613efc8261490b565b602082019050919050565b6000613f1460138361430c565b9150613f1f82614934565b602082019050919050565b613f33816144b1565b82525050565b613f42816144b1565b82525050565b6000613f548284613bd1565b60148201915081905092915050565b6000613f6f8286613cd6565b9150613f7b8285613cd6565b9150613f878284613d07565b9150819050949350505050565b6000613f9f82613e7b565b9150819050919050565b6000602082019050613fbe6000830184613bc2565b92915050565b6000608082019050613fd96000830187613bc2565b613fe66020830186613bc2565b613ff36040830185613f39565b81810360608301526140058184613c64565b905095945050505050565b6000602082019050818103600083015261402a8184613be8565b905092915050565b60006020820190506140476000830184613c46565b92915050565b60006020820190506140626000830184613c55565b92915050565b600060208201905081810360008301526140828184613c9d565b905092915050565b600060208201905081810360008301526140a381613d86565b9050919050565b600060208201905081810360008301526140c381613da9565b9050919050565b600060208201905081810360008301526140e381613dcc565b9050919050565b6000602082019050818103600083015261410381613def565b9050919050565b6000602082019050818103600083015261412381613e12565b9050919050565b6000602082019050818103600083015261414381613e35565b9050919050565b6000602082019050818103600083015261416381613e58565b9050919050565b6000602082019050818103600083015261418381613e9e565b9050919050565b600060208201905081810360008301526141a381613ec1565b9050919050565b600060208201905081810360008301526141c381613ee4565b9050919050565b600060208201905081810360008301526141e381613f07565b9050919050565b60006020820190506141ff6000830184613f39565b92915050565b600061420f614220565b905061421b828261452f565b919050565b6000604051905090565b600067ffffffffffffffff821115614245576142446146ba565b5b61424e82614707565b9050602081019050919050565b600067ffffffffffffffff821115614276576142756146ba565b5b61427f82614707565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614333826144b1565b915061433e836144b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614373576143726145fe565b5b828201905092915050565b6000614389826144b1565b9150614394836144b1565b9250826143a4576143a361462d565b5b828204905092915050565b60006143ba826144b1565b91506143c5836144b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143fe576143fd6145fe565b5b828202905092915050565b6000614414826144b1565b915061441f836144b1565b925082821015614432576144316145fe565b5b828203905092915050565b600061444882614491565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144e85780820151818401526020810190506144cd565b838111156144f7576000848401525b50505050565b6000600282049050600182168061451557607f821691505b602082108114156145295761452861465c565b5b50919050565b61453882614707565b810181811067ffffffffffffffff82111715614557576145566146ba565b5b80604052505050565b600061456b826144b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561459e5761459d6145fe565b5b600182019050919050565b60006145b4826145bb565b9050919050565b60006145c682614718565b9050919050565b60006145d8826144b1565b91506145e3836144b1565b9250826145f3576145f261462d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4d6178204e465473206d696e7465640000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6149668161443d565b811461497157600080fd5b50565b61497d8161444f565b811461498857600080fd5b50565b6149948161445b565b811461499f57600080fd5b50565b6149ab81614465565b81146149b657600080fd5b50565b6149c2816144b1565b81146149cd57600080fd5b5056fea2646970667358221220815141ea392f9006456ecd6c0852a9d04b1b2d9efea781a490e535c58434b43964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000031e2809c46616c6c696e67e2809d206279205975696e61205761646120582047616c6c6572792044656c61697665204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055957784744000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): “Falling” by Yuina Wada X Gallery Delaive NFT
Arg [1] : _tokenSymbol (string): YWxGD
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [3] : e2809c46616c6c696e67e2809d206279205975696e6120576164612058204761
Arg [4] : 6c6c6572792044656c61697665204e4654000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 5957784744000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
49965:4868:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32157:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35270:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36773:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53508:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36336:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50220:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53882:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53988:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31406:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50293:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37638:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50059:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54286:436;;;;;;;;;;;;;:::i;:::-;;37879:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52145:796;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53428:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50178:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50380:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50091:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35078:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50411:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32526:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9915:103;;;;;;;;;;;;;:::i;:::-;;53624:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54071:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53776:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9264:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35439:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51607:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37049:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54175:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38135:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50331:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53048:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50458:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51019:582;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50257:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37407:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51984:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10173:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32157:305;32259:4;32311:25;32296:40;;;:11;:40;;;;:105;;;;32368:33;32353:48;;;:11;:48;;;;32296:105;:158;;;;32418:36;32442:11;32418:23;:36::i;:::-;32296:158;32276:178;;32157:305;;;:::o;35270:100::-;35324:13;35357:5;35350:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35270:100;:::o;36773:204::-;36841:7;36866:16;36874:7;36866;:16::i;:::-;36861:64;;36891:34;;;;;;;;;;;;;;36861:64;36945:15;:24;36961:7;36945:24;;;;;;;;;;;;;;;;;;;;;36938:31;;36773:204;;;:::o;53508:110::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53598:14:::1;53582:13;:30;;;;53508:110:::0;:::o;36336:371::-;36409:13;36425:24;36441:7;36425:15;:24::i;:::-;36409:40;;36470:5;36464:11;;:2;:11;;;36460:48;;;36484:24;;;;;;;;;;;;;;36460:48;36541:5;36525:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;36551:37;36568:5;36575:12;:10;:12::i;:::-;36551:16;:37::i;:::-;36550:38;36525:63;36521:138;;;36612:35;;;;;;;;;;;;;;36521:138;36671:28;36680:2;36684:7;36693:5;36671:8;:28::i;:::-;36398:309;36336:371;;:::o;50220:32::-;;;;:::o;53882:100::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53966:10:::1;53954:9;:22;;;;;;;;;;;;:::i;:::-;;53882:100:::0;:::o;53988:77::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54053:6:::1;54044;;:15;;;;;;;;;;;;;;;;;;53988:77:::0;:::o;31406:303::-;31450:7;31675:15;:13;:15::i;:::-;31660:12;;31644:13;;:28;:46;31637:53;;31406:303;:::o;50293:33::-;;;;:::o;37638:170::-;37772:28;37782:4;37788:2;37792:7;37772:9;:28::i;:::-;37638:170;;;:::o;50059:25::-;;;;:::o;54286:436::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1:::1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;54346:7:::2;54367:42;54359:56;;54451:3;54447:1;54423:21;:25;;;;:::i;:::-;:31;;;;:::i;:::-;54359:100;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54345:114;;;54474:2;54466:11;;;::::0;::::2;;54487:7;54508:42;54500:56;;54592:3;54588:1;54564:21;:25;;;;:::i;:::-;:31;;;;:::i;:::-;54500:100;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54486:114;;;54615:2;54607:11;;;::::0;::::2;;54628:7;54649;:5;:7::i;:::-;54641:21;;54670;54641:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54627:69;;;54711:2;54703:11;;;::::0;::::2;;54336:386;;;1805:1:::1;2759:7;:22;;;;54286:436::o:0;37879:185::-;38017:39;38034:4;38040:2;38044:7;38017:39;;;;;;;;;;;;:16;:39::i;:::-;37879:185;;;:::o;52145:796::-;52205:16;52230:23;52256:17;52266:6;52256:9;:17::i;:::-;52230:43;;52280:30;52327:15;52313:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52280:63;;52350:22;52375:15;:13;:15::i;:::-;52350:40;;52397:23;52431:26;52466:441;52491:15;52473;:33;:64;;;;;52528:9;;52510:14;:27;;52473:64;52466:441;;;52548:31;52582:11;:27;52594:14;52582:27;;;;;;;;;;;52548:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52625:9;:16;;;52624:17;:49;;;;;52671:1;52645:28;;:9;:14;;;:28;;;;52624:49;52620:111;;;52707:9;:14;;;52686:35;;52620:111;52767:6;52745:28;;:18;:28;;;52741:132;;;52819:14;52786:13;52800:15;52786:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;52846:17;;;;;:::i;:::-;;;;52741:132;52883:16;;;;;:::i;:::-;;;;52539:368;52466:441;;;52922:13;52915:20;;;;;;;52145:796;;;:::o;53428:74::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53491:5:::1;53484:4;:12;;;;53428:74:::0;:::o;50178:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50380:26::-;;;;;;;;;;;;;:::o;50091:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35078:125::-;35142:7;35169:21;35182:7;35169:12;:21::i;:::-;:26;;;35162:33;;35078:125;;;:::o;50411:40::-;;;;;;;;;;;;;:::o;32526:206::-;32590:7;32631:1;32614:19;;:5;:19;;;32610:60;;;32642:28;;;;;;;;;;;;;;32610:60;32696:12;:19;32709:5;32696:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32688:36;;32681:43;;32526:206;;;:::o;9915:103::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9980:30:::1;10007:1;9980:18;:30::i;:::-;9915:103::o:0;53624:146::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53741:23:::1;53716:22;:48;;;;53624:146:::0;:::o;54071:98::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54152:11:::1;54139:10;:24;;;;54071:98:::0;:::o;53776:100::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53860:10:::1;53848:9;:22;;;;;;;;;;;;:::i;:::-;;53776:100:::0;:::o;9264:87::-;9310:7;9337:6;;;;;;;;;;;9330:13;;9264:87;:::o;35439:104::-;35495:13;35528:7;35521:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35439:104;:::o;51607:369::-;51672:11;50721:1;50707:11;:15;:47;;;;;50741:13;;50726:11;:28;;50707:47;50699:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;50825:9;;50810:11;50794:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50786:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51705:11:::1;50964;50957:4;;:18;;;;:::i;:::-;50944:9;:31;;50936:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51734:6:::2;;;;;;;;;;;51733:7;51725:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;51830:22;;51815:11;51783:17;:29;51801:10;51783:29;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:69;;51775:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;51881:36;51891:12;:10;:12::i;:::-;51905:11;51881:9;:36::i;:::-;51957:11;51924:17;:29;51942:10;51924:29;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;50866:1:::1;51607:369:::0;;:::o;37049:287::-;37160:12;:10;:12::i;:::-;37148:24;;:8;:24;;;37144:54;;;37181:17;;;;;;;;;;;;;;37144:54;37256:8;37211:18;:32;37230:12;:10;:12::i;:::-;37211:32;;;;;;;;;;;;;;;:42;37244:8;37211:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37309:8;37280:48;;37295:12;:10;:12::i;:::-;37280:48;;;37319:8;37280:48;;;;;;:::i;:::-;;;;;;;;37049:287;;:::o;54175:105::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54268:6:::1;54245:20;;:29;;;;;;;;;;;;;;;;;;54175:105:::0;:::o;38135:369::-;38302:28;38312:4;38318:2;38322:7;38302:9;:28::i;:::-;38345:15;:2;:13;;;:15::i;:::-;:76;;;;;38365:56;38396:4;38402:2;38406:7;38415:5;38365:30;:56::i;:::-;38364:57;38345:76;38341:156;;;38445:40;;;;;;;;;;;;;;38341:156;38135:369;;;;:::o;50331:42::-;;;;:::o;53048:373::-;53122:13;53152:17;53160:8;53152:7;:17::i;:::-;53144:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;53230:28;53261:10;:8;:10::i;:::-;53230:41;;53316:1;53291:14;53285:28;:32;:130;;;;;;;;;;;;;;;;;53353:14;53369:19;:8;:17;:19::i;:::-;53390:9;53336:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53285:130;53278:137;;;53048:373;;;:::o;50458:53::-;;;;;;;;;;;;;;;;;:::o;51019:582::-;51126:11;50721:1;50707:11;:15;:47;;;;;50741:13;;50726:11;:28;;50707:47;50699:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;50825:9;;50810:11;50794:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50786:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51159:11:::1;50964;50957:4;;:18;;;;:::i;:::-;50944:9;:31;;50936:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51187:20:::2;;;;;;;;;;;51179:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51308:22;;51293:11;51261:17;:29;51279:10;51261:29;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:69;;51253:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;51357:12;51399;:10;:12::i;:::-;51382:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;51372:41;;;;;;51357:56;;51428:50;51447:12;;51428:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51461:10;;51473:4;51428:18;:50::i;:::-;51420:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;51506:36;51516:12;:10;:12::i;:::-;51530:11;51506:9;:36::i;:::-;51582:11;51549:17;:29;51567:10;51549:29;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;51172:429;50866:1:::1;51019:582:::0;;;;:::o;50257:31::-;;;;:::o;37407:164::-;37504:4;37528:18;:25;37547:5;37528:25;;;;;;;;;;;;;;;:35;37554:8;37528:35;;;;;;;;;;;;;;;;;;;;;;;;;37521:42;;37407:164;;;;:::o;51984:155::-;52070:11;50721:1;50707:11;:15;:47;;;;;50741:13;;50726:11;:28;;50707:47;50699:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;50825:9;;50810:11;50794:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50786:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9495:12:::1;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52100:33:::2;52110:9;52121:11;52100:9;:33::i;:::-;51984:155:::0;;;:::o;10173:201::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10282:1:::1;10262:22;;:8;:22;;;;10254:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10338:28;10357:8;10338:18;:28::i;:::-;10173:201:::0;:::o;22048:157::-;22133:4;22172:25;22157:40;;;:11;:40;;;;22150:47;;22048:157;;;:::o;38759:174::-;38816:4;38859:7;38840:15;:13;:15::i;:::-;:26;;:53;;;;;38880:13;;38870:7;:23;38840:53;:85;;;;;38898:11;:20;38910:7;38898:20;;;;;;;;;;;:27;;;;;;;;;;;;38897:28;38840:85;38833:92;;38759:174;;;:::o;7988:98::-;8041:7;8068:10;8061:17;;7988:98;:::o;46916:196::-;47058:2;47031:15;:24;47047:7;47031:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47096:7;47092:2;47076:28;;47085:5;47076:28;;;;;;;;;;;;46916:196;;;:::o;52947:95::-;53012:7;53035:1;53028:8;;52947:95;:::o;41859:2130::-;41974:35;42012:21;42025:7;42012:12;:21::i;:::-;41974:59;;42072:4;42050:26;;:13;:18;;;:26;;;42046:67;;42085:28;;;;;;;;;;;;;;42046:67;42126:22;42168:4;42152:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42189:36;42206:4;42212:12;:10;:12::i;:::-;42189:16;:36::i;:::-;42152:73;:126;;;;42266:12;:10;:12::i;:::-;42242:36;;:20;42254:7;42242:11;:20::i;:::-;:36;;;42152:126;42126:153;;42297:17;42292:66;;42323:35;;;;;;;;;;;;;;42292:66;42387:1;42373:16;;:2;:16;;;42369:52;;;42398:23;;;;;;;;;;;;;;42369:52;42434:43;42456:4;42462:2;42466:7;42475:1;42434:21;:43::i;:::-;42542:35;42559:1;42563:7;42572:4;42542:8;:35::i;:::-;42903:1;42873:12;:18;42886:4;42873:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42947:1;42919:12;:16;42932:2;42919:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42965:31;42999:11;:20;43011:7;42999:20;;;;;;;;;;;42965:54;;43050:2;43034:8;:13;;;:18;;;;;;;;;;;;;;;;;;43100:15;43067:8;:23;;;:49;;;;;;;;;;;;;;;;;;43368:19;43400:1;43390:7;:11;43368:33;;43416:31;43450:11;:24;43462:11;43450:24;;;;;;;;;;;43416:58;;43518:1;43493:27;;:8;:13;;;;;;;;;;;;:27;;;43489:384;;;43703:13;;43688:11;:28;43684:174;;43757:4;43741:8;:13;;;:20;;;;;;;;;;;;;;;;;;43810:13;:28;;;43784:8;:23;;;:54;;;;;;;;;;;;;;;;;;43684:174;43489:384;42848:1036;;;43920:7;43916:2;43901:27;;43910:4;43901:27;;;;;;;;;;;;43939:42;43960:4;43966:2;43970:7;43979:1;43939:20;:42::i;:::-;41963:2026;;41859:2130;;;:::o;33907:1109::-;33969:21;;:::i;:::-;34003:12;34018:7;34003:22;;34086:4;34067:15;:13;:15::i;:::-;:23;;:47;;;;;34101:13;;34094:4;:20;34067:47;34063:886;;;34135:31;34169:11;:17;34181:4;34169:17;;;;;;;;;;;34135:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34210:9;:16;;;34205:729;;34281:1;34255:28;;:9;:14;;;:28;;;34251:101;;34319:9;34312:16;;;;;;34251:101;34654:261;34661:4;34654:261;;;34694:6;;;;;;;;34739:11;:17;34751:4;34739:17;;;;;;;;;;;34727:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34813:1;34787:28;;:9;:14;;;:28;;;34783:109;;34855:9;34848:16;;;;;;34783:109;34654:261;;;34205:729;34116:833;34063:886;34977:31;;;;;;;;;;;;;;33907:1109;;;;:::o;10534:191::-;10608:16;10627:6;;;;;;;;;;;10608:25;;10653:8;10644:6;;:17;;;;;;;;;;;;;;;;;;10708:8;10677:40;;10698:8;10677:40;;;;;;;;;;;;10597:128;10534:191;:::o;38941:104::-;39010:27;39020:2;39024:8;39010:27;;;;;;;;;;;;:9;:27::i;:::-;38941:104;;:::o;11965:326::-;12025:4;12282:1;12260:7;:19;;;:23;12253:30;;11965:326;;;:::o;47604:667::-;47767:4;47804:2;47788:36;;;47825:12;:10;:12::i;:::-;47839:4;47845:7;47854:5;47788:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47784:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48039:1;48022:6;:13;:18;48018:235;;;48068:40;;;;;;;;;;;;;;48018:235;48211:6;48205:13;48196:6;48192:2;48188:15;48181:38;47784:480;47917:45;;;47907:55;;;:6;:55;;;;47900:62;;;47604:667;;;;;;:::o;54726:104::-;54786:13;54815:9;54808:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54726:104;:::o;5550:723::-;5606:13;5836:1;5827:5;:10;5823:53;;;5854:10;;;;;;;;;;;;;;;;;;;;;5823:53;5886:12;5901:5;5886:20;;5917:14;5942:78;5957:1;5949:4;:9;5942:78;;5975:8;;;;;:::i;:::-;;;;6006:2;5998:10;;;;;:::i;:::-;;;5942:78;;;6030:19;6062:6;6052:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6030:39;;6080:154;6096:1;6087:5;:10;6080:154;;6124:1;6114:11;;;;;:::i;:::-;;;6191:2;6183:5;:10;;;;:::i;:::-;6170:2;:24;;;;:::i;:::-;6157:39;;6140:6;6147;6140:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6220:2;6211:11;;;;;:::i;:::-;;;6080:154;;;6258:6;6244:21;;;;;5550:723;;;;:::o;3719:190::-;3844:4;3897;3868:25;3881:5;3888:4;3868:12;:25::i;:::-;:33;3861:40;;3719:190;;;;;:::o;48919:159::-;;;;;:::o;49737:158::-;;;;;:::o;39408:163::-;39531:32;39537:2;39541:8;39551:5;39558:4;39531:5;:32::i;:::-;39408:163;;;:::o;4271:675::-;4354:7;4374:20;4397:4;4374:27;;4417:9;4412:497;4436:5;:12;4432:1;:16;4412:497;;;4470:20;4493:5;4499:1;4493:8;;;;;;;;:::i;:::-;;;;;;;;4470:31;;4536:12;4520;:28;4516:382;;4663:42;4678:12;4692;4663:14;:42::i;:::-;4648:57;;4516:382;;;4840:42;4855:12;4869;4840:14;:42::i;:::-;4825:57;;4516:382;4455:454;4450:3;;;;;:::i;:::-;;;;4412:497;;;;4926:12;4919:19;;;4271:675;;;;:::o;39830:1775::-;39969:20;39992:13;;39969:36;;40034:1;40020:16;;:2;:16;;;40016:48;;;40045:19;;;;;;;;;;;;;;40016:48;40091:1;40079:8;:13;40075:44;;;40101:18;;;;;;;;;;;;;;40075:44;40132:61;40162:1;40166:2;40170:12;40184:8;40132:21;:61::i;:::-;40505:8;40470:12;:16;40483:2;40470:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40569:8;40529:12;:16;40542:2;40529:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40628:2;40595:11;:25;40607:12;40595:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40695:15;40645:11;:25;40657:12;40645:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;40728:20;40751:12;40728:35;;40778:11;40807:8;40792:12;:23;40778:37;;40836:4;:23;;;;;40844:15;:2;:13;;;:15::i;:::-;40836:23;40832:641;;;40880:314;40936:12;40932:2;40911:38;;40928:1;40911:38;;;;;;;;;;;;40977:69;41016:1;41020:2;41024:14;;;;;;41040:5;40977:30;:69::i;:::-;40972:174;;41082:40;;;;;;;;;;;;;;40972:174;41189:3;41173:12;:19;;40880:314;;41275:12;41258:13;;:29;41254:43;;41289:8;;;41254:43;40832:641;;;41338:120;41394:14;;;;;;41390:2;41369:40;;41386:1;41369:40;;;;;;;;;;;;41453:3;41437:12;:19;;41338:120;;40832:641;41503:12;41487:13;:28;;;;40445:1082;;41537:60;41566:1;41570:2;41574:12;41588:8;41537:20;:60::i;:::-;39958:1647;39830:1775;;;;:::o;4954:224::-;5022:13;5085:1;5079:4;5072:15;5114:1;5108:4;5101:15;5155:4;5149;5139:21;5130:30;;4954:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:323::-;6412:6;6461:2;6449:9;6440:7;6436:23;6432:32;6429:119;;;6467:79;;:::i;:::-;6429:119;6587:1;6612:50;6654:7;6645:6;6634:9;6630:22;6612:50;:::i;:::-;6602:60;;6558:114;6356:323;;;;:::o;6685:329::-;6744:6;6793:2;6781:9;6772:7;6768:23;6764:32;6761:119;;;6799:79;;:::i;:::-;6761:119;6919:1;6944:53;6989:7;6980:6;6969:9;6965:22;6944:53;:::i;:::-;6934:63;;6890:117;6685:329;;;;:::o;7020:327::-;7078:6;7127:2;7115:9;7106:7;7102:23;7098:32;7095:119;;;7133:79;;:::i;:::-;7095:119;7253:1;7278:52;7322:7;7313:6;7302:9;7298:22;7278:52;:::i;:::-;7268:62;;7224:116;7020:327;;;;:::o;7353:349::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7597:1;7622:63;7677:7;7668:6;7657:9;7653:22;7622:63;:::i;:::-;7612:73;;7568:127;7353:349;;;;:::o;7708:509::-;7777:6;7826:2;7814:9;7805:7;7801:23;7797:32;7794:119;;;7832:79;;:::i;:::-;7794:119;7980:1;7969:9;7965:17;7952:31;8010:18;8002:6;7999:30;7996:117;;;8032:79;;:::i;:::-;7996:117;8137:63;8192:7;8183:6;8172:9;8168:22;8137:63;:::i;:::-;8127:73;;7923:287;7708:509;;;;:::o;8223:329::-;8282:6;8331:2;8319:9;8310:7;8306:23;8302:32;8299:119;;;8337:79;;:::i;:::-;8299:119;8457:1;8482:53;8527:7;8518:6;8507:9;8503:22;8482:53;:::i;:::-;8472:63;;8428:117;8223:329;;;;:::o;8558:474::-;8626:6;8634;8683:2;8671:9;8662:7;8658:23;8654:32;8651:119;;;8689:79;;:::i;:::-;8651:119;8809:1;8834:53;8879:7;8870:6;8859:9;8855:22;8834:53;:::i;:::-;8824:63;;8780:117;8936:2;8962:53;9007:7;8998:6;8987:9;8983:22;8962:53;:::i;:::-;8952:63;;8907:118;8558:474;;;;;:::o;9038:704::-;9133:6;9141;9149;9198:2;9186:9;9177:7;9173:23;9169:32;9166:119;;;9204:79;;:::i;:::-;9166:119;9324:1;9349:53;9394:7;9385:6;9374:9;9370:22;9349:53;:::i;:::-;9339:63;;9295:117;9479:2;9468:9;9464:18;9451:32;9510:18;9502:6;9499:30;9496:117;;;9532:79;;:::i;:::-;9496:117;9645:80;9717:7;9708:6;9697:9;9693:22;9645:80;:::i;:::-;9627:98;;;;9422:313;9038:704;;;;;:::o;9748:179::-;9817:10;9838:46;9880:3;9872:6;9838:46;:::i;:::-;9916:4;9911:3;9907:14;9893:28;;9748:179;;;;:::o;9933:118::-;10020:24;10038:5;10020:24;:::i;:::-;10015:3;10008:37;9933:118;;:::o;10057:157::-;10162:45;10182:24;10200:5;10182:24;:::i;:::-;10162:45;:::i;:::-;10157:3;10150:58;10057:157;;:::o;10250:732::-;10369:3;10398:54;10446:5;10398:54;:::i;:::-;10468:86;10547:6;10542:3;10468:86;:::i;:::-;10461:93;;10578:56;10628:5;10578:56;:::i;:::-;10657:7;10688:1;10673:284;10698:6;10695:1;10692:13;10673:284;;;10774:6;10768:13;10801:63;10860:3;10845:13;10801:63;:::i;:::-;10794:70;;10887:60;10940:6;10887:60;:::i;:::-;10877:70;;10733:224;10720:1;10717;10713:9;10708:14;;10673:284;;;10677:14;10973:3;10966:10;;10374:608;;;10250:732;;;;:::o;10988:109::-;11069:21;11084:5;11069:21;:::i;:::-;11064:3;11057:34;10988:109;;:::o;11103:118::-;11190:24;11208:5;11190:24;:::i;:::-;11185:3;11178:37;11103:118;;:::o;11227:360::-;11313:3;11341:38;11373:5;11341:38;:::i;:::-;11395:70;11458:6;11453:3;11395:70;:::i;:::-;11388:77;;11474:52;11519:6;11514:3;11507:4;11500:5;11496:16;11474:52;:::i;:::-;11551:29;11573:6;11551:29;:::i;:::-;11546:3;11542:39;11535:46;;11317:270;11227:360;;;;:::o;11593:364::-;11681:3;11709:39;11742:5;11709:39;:::i;:::-;11764:71;11828:6;11823:3;11764:71;:::i;:::-;11757:78;;11844:52;11889:6;11884:3;11877:4;11870:5;11866:16;11844:52;:::i;:::-;11921:29;11943:6;11921:29;:::i;:::-;11916:3;11912:39;11905:46;;11685:272;11593:364;;;;:::o;11963:377::-;12069:3;12097:39;12130:5;12097:39;:::i;:::-;12152:89;12234:6;12229:3;12152:89;:::i;:::-;12145:96;;12250:52;12295:6;12290:3;12283:4;12276:5;12272:16;12250:52;:::i;:::-;12327:6;12322:3;12318:16;12311:23;;12073:267;11963:377;;;;:::o;12370:845::-;12473:3;12510:5;12504:12;12539:36;12565:9;12539:36;:::i;:::-;12591:89;12673:6;12668:3;12591:89;:::i;:::-;12584:96;;12711:1;12700:9;12696:17;12727:1;12722:137;;;;12873:1;12868:341;;;;12689:520;;12722:137;12806:4;12802:9;12791;12787:25;12782:3;12775:38;12842:6;12837:3;12833:16;12826:23;;12722:137;;12868:341;12935:38;12967:5;12935:38;:::i;:::-;12995:1;13009:154;13023:6;13020:1;13017:13;13009:154;;;13097:7;13091:14;13087:1;13082:3;13078:11;13071:35;13147:1;13138:7;13134:15;13123:26;;13045:4;13042:1;13038:12;13033:17;;13009:154;;;13192:6;13187:3;13183:16;13176:23;;12875:334;;12689:520;;12477:738;;12370:845;;;;:::o;13221:366::-;13363:3;13384:67;13448:2;13443:3;13384:67;:::i;:::-;13377:74;;13460:93;13549:3;13460:93;:::i;:::-;13578:2;13573:3;13569:12;13562:19;;13221:366;;;:::o;13593:::-;13735:3;13756:67;13820:2;13815:3;13756:67;:::i;:::-;13749:74;;13832:93;13921:3;13832:93;:::i;:::-;13950:2;13945:3;13941:12;13934:19;;13593:366;;;:::o;13965:::-;14107:3;14128:67;14192:2;14187:3;14128:67;:::i;:::-;14121:74;;14204:93;14293:3;14204:93;:::i;:::-;14322:2;14317:3;14313:12;14306:19;;13965:366;;;:::o;14337:::-;14479:3;14500:67;14564:2;14559:3;14500:67;:::i;:::-;14493:74;;14576:93;14665:3;14576:93;:::i;:::-;14694:2;14689:3;14685:12;14678:19;;14337:366;;;:::o;14709:::-;14851:3;14872:67;14936:2;14931:3;14872:67;:::i;:::-;14865:74;;14948:93;15037:3;14948:93;:::i;:::-;15066:2;15061:3;15057:12;15050:19;;14709:366;;;:::o;15081:::-;15223:3;15244:67;15308:2;15303:3;15244:67;:::i;:::-;15237:74;;15320:93;15409:3;15320:93;:::i;:::-;15438:2;15433:3;15429:12;15422:19;;15081:366;;;:::o;15453:::-;15595:3;15616:67;15680:2;15675:3;15616:67;:::i;:::-;15609:74;;15692:93;15781:3;15692:93;:::i;:::-;15810:2;15805:3;15801:12;15794:19;;15453:366;;;:::o;15825:398::-;15984:3;16005:83;16086:1;16081:3;16005:83;:::i;:::-;15998:90;;16097:93;16186:3;16097:93;:::i;:::-;16215:1;16210:3;16206:11;16199:18;;15825:398;;;:::o;16229:366::-;16371:3;16392:67;16456:2;16451:3;16392:67;:::i;:::-;16385:74;;16468:93;16557:3;16468:93;:::i;:::-;16586:2;16581:3;16577:12;16570:19;;16229:366;;;:::o;16601:::-;16743:3;16764:67;16828:2;16823:3;16764:67;:::i;:::-;16757:74;;16840:93;16929:3;16840:93;:::i;:::-;16958:2;16953:3;16949:12;16942:19;;16601:366;;;:::o;16973:::-;17115:3;17136:67;17200:2;17195:3;17136:67;:::i;:::-;17129:74;;17212:93;17301:3;17212:93;:::i;:::-;17330:2;17325:3;17321:12;17314:19;;16973:366;;;:::o;17345:::-;17487:3;17508:67;17572:2;17567:3;17508:67;:::i;:::-;17501:74;;17584:93;17673:3;17584:93;:::i;:::-;17702:2;17697:3;17693:12;17686:19;;17345:366;;;:::o;17717:108::-;17794:24;17812:5;17794:24;:::i;:::-;17789:3;17782:37;17717:108;;:::o;17831:118::-;17918:24;17936:5;17918:24;:::i;:::-;17913:3;17906:37;17831:118;;:::o;17955:256::-;18067:3;18082:75;18153:3;18144:6;18082:75;:::i;:::-;18182:2;18177:3;18173:12;18166:19;;18202:3;18195:10;;17955:256;;;;:::o;18217:589::-;18442:3;18464:95;18555:3;18546:6;18464:95;:::i;:::-;18457:102;;18576:95;18667:3;18658:6;18576:95;:::i;:::-;18569:102;;18688:92;18776:3;18767:6;18688:92;:::i;:::-;18681:99;;18797:3;18790:10;;18217:589;;;;;;:::o;18812:379::-;18996:3;19018:147;19161:3;19018:147;:::i;:::-;19011:154;;19182:3;19175:10;;18812:379;;;:::o;19197:222::-;19290:4;19328:2;19317:9;19313:18;19305:26;;19341:71;19409:1;19398:9;19394:17;19385:6;19341:71;:::i;:::-;19197:222;;;;:::o;19425:640::-;19620:4;19658:3;19647:9;19643:19;19635:27;;19672:71;19740:1;19729:9;19725:17;19716:6;19672:71;:::i;:::-;19753:72;19821:2;19810:9;19806:18;19797:6;19753:72;:::i;:::-;19835;19903:2;19892:9;19888:18;19879:6;19835:72;:::i;:::-;19954:9;19948:4;19944:20;19939:2;19928:9;19924:18;19917:48;19982:76;20053:4;20044:6;19982:76;:::i;:::-;19974:84;;19425:640;;;;;;;:::o;20071:373::-;20214:4;20252:2;20241:9;20237:18;20229:26;;20301:9;20295:4;20291:20;20287:1;20276:9;20272:17;20265:47;20329:108;20432:4;20423:6;20329:108;:::i;:::-;20321:116;;20071:373;;;;:::o;20450:210::-;20537:4;20575:2;20564:9;20560:18;20552:26;;20588:65;20650:1;20639:9;20635:17;20626:6;20588:65;:::i;:::-;20450:210;;;;:::o;20666:222::-;20759:4;20797:2;20786:9;20782:18;20774:26;;20810:71;20878:1;20867:9;20863:17;20854:6;20810:71;:::i;:::-;20666:222;;;;:::o;20894:313::-;21007:4;21045:2;21034:9;21030:18;21022:26;;21094:9;21088:4;21084:20;21080:1;21069:9;21065:17;21058:47;21122:78;21195:4;21186:6;21122:78;:::i;:::-;21114:86;;20894:313;;;;:::o;21213:419::-;21379:4;21417:2;21406:9;21402:18;21394:26;;21466:9;21460:4;21456:20;21452:1;21441:9;21437:17;21430:47;21494:131;21620:4;21494:131;:::i;:::-;21486:139;;21213:419;;;:::o;21638:::-;21804:4;21842:2;21831:9;21827:18;21819:26;;21891:9;21885:4;21881:20;21877:1;21866:9;21862:17;21855:47;21919:131;22045:4;21919:131;:::i;:::-;21911:139;;21638:419;;;:::o;22063:::-;22229:4;22267:2;22256:9;22252:18;22244:26;;22316:9;22310:4;22306:20;22302:1;22291:9;22287:17;22280:47;22344:131;22470:4;22344:131;:::i;:::-;22336:139;;22063:419;;;:::o;22488:::-;22654:4;22692:2;22681:9;22677:18;22669:26;;22741:9;22735:4;22731:20;22727:1;22716:9;22712:17;22705:47;22769:131;22895:4;22769:131;:::i;:::-;22761:139;;22488:419;;;:::o;22913:::-;23079:4;23117:2;23106:9;23102:18;23094:26;;23166:9;23160:4;23156:20;23152:1;23141:9;23137:17;23130:47;23194:131;23320:4;23194:131;:::i;:::-;23186:139;;22913:419;;;:::o;23338:::-;23504:4;23542:2;23531:9;23527:18;23519:26;;23591:9;23585:4;23581:20;23577:1;23566:9;23562:17;23555:47;23619:131;23745:4;23619:131;:::i;:::-;23611:139;;23338:419;;;:::o;23763:::-;23929:4;23967:2;23956:9;23952:18;23944:26;;24016:9;24010:4;24006:20;24002:1;23991:9;23987:17;23980:47;24044:131;24170:4;24044:131;:::i;:::-;24036:139;;23763:419;;;:::o;24188:::-;24354:4;24392:2;24381:9;24377:18;24369:26;;24441:9;24435:4;24431:20;24427:1;24416:9;24412:17;24405:47;24469:131;24595:4;24469:131;:::i;:::-;24461:139;;24188:419;;;:::o;24613:::-;24779:4;24817:2;24806:9;24802:18;24794:26;;24866:9;24860:4;24856:20;24852:1;24841:9;24837:17;24830:47;24894:131;25020:4;24894:131;:::i;:::-;24886:139;;24613:419;;;:::o;25038:::-;25204:4;25242:2;25231:9;25227:18;25219:26;;25291:9;25285:4;25281:20;25277:1;25266:9;25262:17;25255:47;25319:131;25445:4;25319:131;:::i;:::-;25311:139;;25038:419;;;:::o;25463:::-;25629:4;25667:2;25656:9;25652:18;25644:26;;25716:9;25710:4;25706:20;25702:1;25691:9;25687:17;25680:47;25744:131;25870:4;25744:131;:::i;:::-;25736:139;;25463:419;;;:::o;25888:222::-;25981:4;26019:2;26008:9;26004:18;25996:26;;26032:71;26100:1;26089:9;26085:17;26076:6;26032:71;:::i;:::-;25888:222;;;;:::o;26116:129::-;26150:6;26177:20;;:::i;:::-;26167:30;;26206:33;26234:4;26226:6;26206:33;:::i;:::-;26116:129;;;:::o;26251:75::-;26284:6;26317:2;26311:9;26301:19;;26251:75;:::o;26332:307::-;26393:4;26483:18;26475:6;26472:30;26469:56;;;26505:18;;:::i;:::-;26469:56;26543:29;26565:6;26543:29;:::i;:::-;26535:37;;26627:4;26621;26617:15;26609:23;;26332:307;;;:::o;26645:308::-;26707:4;26797:18;26789:6;26786:30;26783:56;;;26819:18;;:::i;:::-;26783:56;26857:29;26879:6;26857:29;:::i;:::-;26849:37;;26941:4;26935;26931:15;26923:23;;26645:308;;;:::o;26959:132::-;27026:4;27049:3;27041:11;;27079:4;27074:3;27070:14;27062:22;;26959:132;;;:::o;27097:141::-;27146:4;27169:3;27161:11;;27192:3;27189:1;27182:14;27226:4;27223:1;27213:18;27205:26;;27097:141;;;:::o;27244:114::-;27311:6;27345:5;27339:12;27329:22;;27244:114;;;:::o;27364:98::-;27415:6;27449:5;27443:12;27433:22;;27364:98;;;:::o;27468:99::-;27520:6;27554:5;27548:12;27538:22;;27468:99;;;:::o;27573:113::-;27643:4;27675;27670:3;27666:14;27658:22;;27573:113;;;:::o;27692:184::-;27791:11;27825:6;27820:3;27813:19;27865:4;27860:3;27856:14;27841:29;;27692:184;;;;:::o;27882:168::-;27965:11;27999:6;27994:3;27987:19;28039:4;28034:3;28030:14;28015:29;;27882:168;;;;:::o;28056:147::-;28157:11;28194:3;28179:18;;28056:147;;;;:::o;28209:169::-;28293:11;28327:6;28322:3;28315:19;28367:4;28362:3;28358:14;28343:29;;28209:169;;;;:::o;28384:148::-;28486:11;28523:3;28508:18;;28384:148;;;;:::o;28538:305::-;28578:3;28597:20;28615:1;28597:20;:::i;:::-;28592:25;;28631:20;28649:1;28631:20;:::i;:::-;28626:25;;28785:1;28717:66;28713:74;28710:1;28707:81;28704:107;;;28791:18;;:::i;:::-;28704:107;28835:1;28832;28828:9;28821:16;;28538:305;;;;:::o;28849:185::-;28889:1;28906:20;28924:1;28906:20;:::i;:::-;28901:25;;28940:20;28958:1;28940:20;:::i;:::-;28935:25;;28979:1;28969:35;;28984:18;;:::i;:::-;28969:35;29026:1;29023;29019:9;29014:14;;28849:185;;;;:::o;29040:348::-;29080:7;29103:20;29121:1;29103:20;:::i;:::-;29098:25;;29137:20;29155:1;29137:20;:::i;:::-;29132:25;;29325:1;29257:66;29253:74;29250:1;29247:81;29242:1;29235:9;29228:17;29224:105;29221:131;;;29332:18;;:::i;:::-;29221:131;29380:1;29377;29373:9;29362:20;;29040:348;;;;:::o;29394:191::-;29434:4;29454:20;29472:1;29454:20;:::i;:::-;29449:25;;29488:20;29506:1;29488:20;:::i;:::-;29483:25;;29527:1;29524;29521:8;29518:34;;;29532:18;;:::i;:::-;29518:34;29577:1;29574;29570:9;29562:17;;29394:191;;;;:::o;29591:96::-;29628:7;29657:24;29675:5;29657:24;:::i;:::-;29646:35;;29591:96;;;:::o;29693:90::-;29727:7;29770:5;29763:13;29756:21;29745:32;;29693:90;;;:::o;29789:77::-;29826:7;29855:5;29844:16;;29789:77;;;:::o;29872:149::-;29908:7;29948:66;29941:5;29937:78;29926:89;;29872:149;;;:::o;30027:126::-;30064:7;30104:42;30097:5;30093:54;30082:65;;30027:126;;;:::o;30159:77::-;30196:7;30225:5;30214:16;;30159:77;;;:::o;30242:154::-;30326:6;30321:3;30316;30303:30;30388:1;30379:6;30374:3;30370:16;30363:27;30242:154;;;:::o;30402:307::-;30470:1;30480:113;30494:6;30491:1;30488:13;30480:113;;;30579:1;30574:3;30570:11;30564:18;30560:1;30555:3;30551:11;30544:39;30516:2;30513:1;30509:10;30504:15;;30480:113;;;30611:6;30608:1;30605:13;30602:101;;;30691:1;30682:6;30677:3;30673:16;30666:27;30602:101;30451:258;30402:307;;;:::o;30715:320::-;30759:6;30796:1;30790:4;30786:12;30776:22;;30843:1;30837:4;30833:12;30864:18;30854:81;;30920:4;30912:6;30908:17;30898:27;;30854:81;30982:2;30974:6;30971:14;30951:18;30948:38;30945:84;;;31001:18;;:::i;:::-;30945:84;30766:269;30715:320;;;:::o;31041:281::-;31124:27;31146:4;31124:27;:::i;:::-;31116:6;31112:40;31254:6;31242:10;31239:22;31218:18;31206:10;31203:34;31200:62;31197:88;;;31265:18;;:::i;:::-;31197:88;31305:10;31301:2;31294:22;31084:238;31041:281;;:::o;31328:233::-;31367:3;31390:24;31408:5;31390:24;:::i;:::-;31381:33;;31436:66;31429:5;31426:77;31423:103;;;31506:18;;:::i;:::-;31423:103;31553:1;31546:5;31542:13;31535:20;;31328:233;;;:::o;31567:100::-;31606:7;31635:26;31655:5;31635:26;:::i;:::-;31624:37;;31567:100;;;:::o;31673:94::-;31712:7;31741:20;31755:5;31741:20;:::i;:::-;31730:31;;31673:94;;;:::o;31773:176::-;31805:1;31822:20;31840:1;31822:20;:::i;:::-;31817:25;;31856:20;31874:1;31856:20;:::i;:::-;31851:25;;31895:1;31885:35;;31900:18;;:::i;:::-;31885:35;31941:1;31938;31934:9;31929:14;;31773:176;;;;:::o;31955:180::-;32003:77;32000:1;31993:88;32100:4;32097:1;32090:15;32124:4;32121:1;32114:15;32141:180;32189:77;32186:1;32179:88;32286:4;32283:1;32276:15;32310:4;32307:1;32300:15;32327:180;32375:77;32372:1;32365:88;32472:4;32469:1;32462:15;32496:4;32493:1;32486:15;32513:180;32561:77;32558:1;32551:88;32658:4;32655:1;32648:15;32682:4;32679:1;32672:15;32699:180;32747:77;32744:1;32737:88;32844:4;32841:1;32834:15;32868:4;32865:1;32858:15;32885:117;32994:1;32991;32984:12;33008:117;33117:1;33114;33107:12;33131:117;33240:1;33237;33230:12;33254:117;33363:1;33360;33353:12;33377:117;33486:1;33483;33476:12;33500:117;33609:1;33606;33599:12;33623:102;33664:6;33715:2;33711:7;33706:2;33699:5;33695:14;33691:28;33681:38;;33623:102;;;:::o;33731:94::-;33764:8;33812:5;33808:2;33804:14;33783:35;;33731:94;;;:::o;33831:164::-;33971:16;33967:1;33959:6;33955:14;33948:40;33831:164;:::o;34001:225::-;34141:34;34137:1;34129:6;34125:14;34118:58;34210:8;34205:2;34197:6;34193:15;34186:33;34001:225;:::o;34232:170::-;34372:22;34368:1;34360:6;34356:14;34349:46;34232:170;:::o;34408:165::-;34548:17;34544:1;34536:6;34532:14;34525:41;34408:165;:::o;34579:182::-;34719:34;34715:1;34707:6;34703:14;34696:58;34579:182;:::o;34767:173::-;34907:25;34903:1;34895:6;34891:14;34884:49;34767:173;:::o;34946:234::-;35086:34;35082:1;35074:6;35070:14;35063:58;35155:17;35150:2;35142:6;35138:15;35131:42;34946:234;:::o;35186:114::-;;:::o;35306:170::-;35446:22;35442:1;35434:6;35430:14;35423:46;35306:170;:::o;35482:221::-;35622:34;35618:1;35610:6;35606:14;35599:58;35691:4;35686:2;35678:6;35674:15;35667:29;35482:221;:::o;35709:181::-;35849:33;35845:1;35837:6;35833:14;35826:57;35709:181;:::o;35896:169::-;36036:21;36032:1;36024:6;36020:14;36013:45;35896:169;:::o;36071:122::-;36144:24;36162:5;36144:24;:::i;:::-;36137:5;36134:35;36124:63;;36183:1;36180;36173:12;36124:63;36071:122;:::o;36199:116::-;36269:21;36284:5;36269:21;:::i;:::-;36262:5;36259:32;36249:60;;36305:1;36302;36295:12;36249:60;36199:116;:::o;36321:122::-;36394:24;36412:5;36394:24;:::i;:::-;36387:5;36384:35;36374:63;;36433:1;36430;36423:12;36374:63;36321:122;:::o;36449:120::-;36521:23;36538:5;36521:23;:::i;:::-;36514:5;36511:34;36501:62;;36559:1;36556;36549:12;36501:62;36449:120;:::o;36575:122::-;36648:24;36666:5;36648:24;:::i;:::-;36641:5;36638:35;36628:63;;36687:1;36684;36677:12;36628:63;36575:122;:::o
Swarm Source
ipfs://815141ea392f9006456ecd6c0852a9d04b1b2d9efea781a490e535c58434b439
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.