ERC-721
Overview
Max Total Supply
914 0xSB
Holders
119
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 0xSBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SmallBros
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-03 */ // 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/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/s.sol //Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel pragma solidity >=0.7.0 <0.9.0; contract SmallBros is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.008 ether; uint256 public maxSupply = 8888; uint256 public FreeSupply = 888; uint256 public MaxperWallet = 20; uint256 public MaxperWalletFree = 10; bool public paused = false; bool public revealed = false; constructor( string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721A("0xSmallBros", "0xSB") { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // public function mint(uint256 tokens) public payable nonReentrant { require(!paused, "0xSB: oops contract is paused"); uint256 supply = totalSupply(); require(tokens > 0, "0xSB: need to mint at least 1 NFT"); require(tokens <= MaxperWallet, "0xSB: max mint amount per tx exceeded"); require(supply + tokens <= maxSupply, "0xSB: We Soldout"); require(_numberMinted(_msgSender()) + tokens <= MaxperWallet, "0xSB: Max NFT Per Wallet exceeded"); require(msg.value >= cost * tokens, "0xSB: insufficient funds"); _safeMint(_msgSender(), tokens); } function freemint(uint256 tokens) public payable nonReentrant { require(!paused, "0xSB: oops contract is paused"); uint256 supply = totalSupply(); require(_numberMinted(_msgSender()) + tokens <= MaxperWalletFree, "0xSB: Max NFT Per Wallet exceeded"); require(tokens > 0, "0xSB: need to mint at least 1 NFT"); require(tokens <= MaxperWalletFree, "0xSB: max mint per Tx exceeded"); require(supply + tokens <= FreeSupply, "0xSB: Whitelist MaxSupply exceeded"); _safeMint(_msgSender(), tokens); } /// @dev use it for giveaway and mint for yourself function gift(uint256 _mintAmount, address destination) public onlyOwner nonReentrant { require(_mintAmount > 0, "need to mint at least 1 NFT"); uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); _safeMint(destination, _mintAmount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721AMetadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } //only owner function reveal(bool _state) public onlyOwner { revealed = _state; } function setMaxPerWallet(uint256 _limit) public onlyOwner { MaxperWallet = _limit; } function setFreeMaxPerWallet(uint256 _limit) public onlyOwner { MaxperWalletFree = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setMaxsupply(uint256 _newsupply) public onlyOwner { maxSupply = _newsupply; } function setFreesupply(uint256 _newsupply) public onlyOwner { FreeSupply = _newsupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner nonReentrant { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":[],"name":"FreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setFreesupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200043b565b50661c6bf526340000600d556122b8600e55610378600f556014601055600a6011556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff021916908315150217905550348015620000b657600080fd5b5060405162004f7938038062004f798339818101604052810190620000dc919062000569565b6040518060400160405280600b81526020017f3078536d616c6c42726f730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f30785342000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001609291906200043b565b508060039080519060200190620001799291906200043b565b506200018a620001e460201b60201c565b6000819055505050620001b2620001a6620001ed60201b60201c565b620001f560201b60201c565b6001600981905550620001cb82620002bb60201b60201c565b620001dc816200036660201b60201c565b5050620007f5565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002cb620001ed60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f16200041160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200034a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003419062000615565b60405180910390fd5b80600a9080519060200190620003629291906200043b565b5050565b62000376620001ed60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200039c6200041160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ec9062000615565b60405180910390fd5b80600c90805190602001906200040d9291906200043b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200044990620006dd565b90600052602060002090601f0160209004810192826200046d5760008555620004b9565b82601f106200048857805160ff1916838001178555620004b9565b82800160010185558215620004b9579182015b82811115620004b85782518255916020019190600101906200049b565b5b509050620004c89190620004cc565b5090565b5b80821115620004e7576000816000905550600101620004cd565b5090565b600062000502620004fc8462000660565b62000637565b905082815260208101848484011115620005215762000520620007ac565b5b6200052e848285620006a7565b509392505050565b600082601f8301126200054e576200054d620007a7565b5b815162000560848260208601620004eb565b91505092915050565b60008060408385031215620005835762000582620007b6565b5b600083015167ffffffffffffffff811115620005a457620005a3620007b1565b5b620005b28582860162000536565b925050602083015167ffffffffffffffff811115620005d657620005d5620007b1565b5b620005e48582860162000536565b9150509250929050565b6000620005fd60208362000696565b91506200060a82620007cc565b602082019050919050565b600060208201905081810360008301526200063081620005ee565b9050919050565b60006200064362000656565b905062000651828262000713565b919050565b6000604051905090565b600067ffffffffffffffff8211156200067e576200067d62000778565b5b6200068982620007bb565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006c7578082015181840152602081019050620006aa565b83811115620006d7576000848401525b50505050565b60006002820490506001821680620006f657607f821691505b602082108114156200070d576200070c62000749565b5b50919050565b6200071e82620007bb565b810181811067ffffffffffffffff8211171562000740576200073f62000778565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61477480620008056000396000f3fe6080604052600436106102515760003560e01c80636c0360eb11610139578063bd7a1998116100b6578063dc33e6811161007a578063dc33e6811461084f578063e1cf8baa1461088c578063e268e4d3146108b5578063e985e9c5146108de578063f2c4ce1e1461091b578063f2fde38b1461094457610251565b8063bd7a199814610768578063c668286214610793578063c87b56dd146107be578063d5abeb01146107fb578063da3ef23f1461082657610251565b8063940cd05b116100fd578063940cd05b146106a657806395d89b41146106cf578063a0712d68146106fa578063a22cb46514610716578063b88d4fde1461073f57610251565b80636c0360eb146105d357806370a08231146105fe578063715018a61461063b57806383a076be146106525780638da5cb5b1461067b57610251565b806323b872dd116101d257806350839bef1161019657806350839bef146104c157806351830227146104ec57806355f804b3146105175780635c975abb14610540578063624208ae1461056b5780636352211e1461059657610251565b806323b872dd14610413578063351de26e1461043c5780633ccfd60b1461046557806342842e0e1461046f57806344a0d68a1461049857610251565b8063095ea7b311610219578063095ea7b31461034f5780630fbe4fe21461037857806313faede614610394578063149835a0146103bf57806318160ddd146103e857610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e7578063081c8c4414610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906137ea565b61096d565b60405161028a9190613d03565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906137bd565b610a4f565b005b3480156102c857600080fd5b506102d1610ae8565b6040516102de9190613d1e565b60405180910390f35b3480156102f357600080fd5b5061030e6004803603810190610309919061388d565b610b7a565b60405161031b9190613c9c565b60405180910390f35b34801561033057600080fd5b50610339610bf6565b6040516103469190613d1e565b60405180910390f35b34801561035b57600080fd5b506103766004803603810190610371919061377d565b610c84565b005b610392600480360381019061038d919061388d565b610d8f565b005b3480156103a057600080fd5b506103a9610f8d565b6040516103b69190613f00565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e1919061388d565b610f93565b005b3480156103f457600080fd5b506103fd611019565b60405161040a9190613f00565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190613667565b611030565b005b34801561044857600080fd5b50610463600480360381019061045e919061388d565b611040565b005b61046d6110c6565b005b34801561047b57600080fd5b5061049660048036038101906104919190613667565b611211565b005b3480156104a457600080fd5b506104bf60048036038101906104ba919061388d565b611231565b005b3480156104cd57600080fd5b506104d66112b7565b6040516104e39190613f00565b60405180910390f35b3480156104f857600080fd5b506105016112bd565b60405161050e9190613d03565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613844565b6112d0565b005b34801561054c57600080fd5b50610555611366565b6040516105629190613d03565b60405180910390f35b34801561057757600080fd5b50610580611379565b60405161058d9190613f00565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b8919061388d565b61137f565b6040516105ca9190613c9c565b60405180910390f35b3480156105df57600080fd5b506105e8611395565b6040516105f59190613d1e565b60405180910390f35b34801561060a57600080fd5b50610625600480360381019061062091906135fa565b611423565b6040516106329190613f00565b60405180910390f35b34801561064757600080fd5b506106506114f3565b005b34801561065e57600080fd5b50610679600480360381019061067491906138ba565b61157b565b005b34801561068757600080fd5b506106906116fb565b60405161069d9190613c9c565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906137bd565b611725565b005b3480156106db57600080fd5b506106e46117be565b6040516106f19190613d1e565b60405180910390f35b610714600480360381019061070f919061388d565b611850565b005b34801561072257600080fd5b5061073d6004803603810190610738919061373d565b611a9e565b005b34801561074b57600080fd5b50610766600480360381019061076191906136ba565b611c16565b005b34801561077457600080fd5b5061077d611c92565b60405161078a9190613f00565b60405180910390f35b34801561079f57600080fd5b506107a8611c98565b6040516107b59190613d1e565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e0919061388d565b611d26565b6040516107f29190613d1e565b60405180910390f35b34801561080757600080fd5b50610810611e7f565b60405161081d9190613f00565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613844565b611e85565b005b34801561085b57600080fd5b50610876600480360381019061087191906135fa565b611f1b565b6040516108839190613f00565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae919061388d565b611f2d565b005b3480156108c157600080fd5b506108dc60048036038101906108d7919061388d565b611fb3565b005b3480156108ea57600080fd5b5061090560048036038101906109009190613627565b612039565b6040516109129190613d03565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d9190613844565b6120cd565b005b34801561095057600080fd5b5061096b600480360381019061096691906135fa565b612163565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a485750610a478261225b565b5b9050919050565b610a576122c5565b73ffffffffffffffffffffffffffffffffffffffff16610a756116fb565b73ffffffffffffffffffffffffffffffffffffffff1614610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290613e80565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060028054610af7906141d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b23906141d0565b8015610b705780601f10610b4557610100808354040283529160200191610b70565b820191906000526020600020905b815481529060010190602001808311610b5357829003601f168201915b5050505050905090565b6000610b85826122cd565b610bbb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610c03906141d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2f906141d0565b8015610c7c5780601f10610c5157610100808354040283529160200191610c7c565b820191906000526020600020905b815481529060010190602001808311610c5f57829003601f168201915b505050505081565b6000610c8f8261137f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d166122c5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d485750610d4681610d416122c5565b612039565b155b15610d7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d8a83838361231b565b505050565b60026009541415610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90613ec0565b60405180910390fd5b6002600981905550601260009054906101000a900460ff1615610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490613e60565b60405180910390fd5b6000610e37611019565b905060115482610e4d610e486122c5565b6123cd565b610e579190614005565b1115610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90613dc0565b60405180910390fd5b60008211610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290613d60565b60405180910390fd5b601154821115610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1790613de0565b60405180910390fd5b600f548282610f2f9190614005565b1115610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790613ea0565b60405180910390fd5b610f81610f7b6122c5565b83612437565b50600160098190555050565b600d5481565b610f9b6122c5565b73ffffffffffffffffffffffffffffffffffffffff16610fb96116fb565b73ffffffffffffffffffffffffffffffffffffffff161461100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613e80565b60405180910390fd5b80600e8190555050565b6000611023612455565b6001546000540303905090565b61103b83838361245e565b505050565b6110486122c5565b73ffffffffffffffffffffffffffffffffffffffff166110666116fb565b73ffffffffffffffffffffffffffffffffffffffff16146110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390613e80565b60405180910390fd5b8060118190555050565b6110ce6122c5565b73ffffffffffffffffffffffffffffffffffffffff166110ec6116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990613e80565b60405180910390fd5b60026009541415611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90613ec0565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516111b690613c87565b60006040518083038185875af1925050503d80600081146111f3576040519150601f19603f3d011682016040523d82523d6000602084013e6111f8565b606091505b505090508061120657600080fd5b506001600981905550565b61122c83838360405180602001604052806000815250611c16565b505050565b6112396122c5565b73ffffffffffffffffffffffffffffffffffffffff166112576116fb565b73ffffffffffffffffffffffffffffffffffffffff16146112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490613e80565b60405180910390fd5b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b6112d86122c5565b73ffffffffffffffffffffffffffffffffffffffff166112f66116fb565b73ffffffffffffffffffffffffffffffffffffffff161461134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390613e80565b60405180910390fd5b80600a90805190602001906113629291906133cb565b5050565b601260009054906101000a900460ff1681565b60115481565b600061138a82612914565b600001519050919050565b600a80546113a2906141d0565b80601f01602080910402602001604051908101604052809291908181526020018280546113ce906141d0565b801561141b5780601f106113f05761010080835404028352916020019161141b565b820191906000526020600020905b8154815290600101906020018083116113fe57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114fb6122c5565b73ffffffffffffffffffffffffffffffffffffffff166115196116fb565b73ffffffffffffffffffffffffffffffffffffffff161461156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690613e80565b60405180910390fd5b6115796000612ba3565b565b6115836122c5565b73ffffffffffffffffffffffffffffffffffffffff166115a16116fb565b73ffffffffffffffffffffffffffffffffffffffff16146115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90613e80565b60405180910390fd5b6002600954141561163d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163490613ec0565b60405180910390fd5b600260098190555060008211611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90613ee0565b60405180910390fd5b6000611692611019565b9050600e5483826116a39190614005565b11156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90613e20565b60405180910390fd5b6116ee8284612437565b5060016009819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61172d6122c5565b73ffffffffffffffffffffffffffffffffffffffff1661174b6116fb565b73ffffffffffffffffffffffffffffffffffffffff16146117a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179890613e80565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6060600380546117cd906141d0565b80601f01602080910402602001604051908101604052809291908181526020018280546117f9906141d0565b80156118465780601f1061181b57610100808354040283529160200191611846565b820191906000526020600020905b81548152906001019060200180831161182957829003601f168201915b5050505050905090565b60026009541415611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90613ec0565b60405180910390fd5b6002600981905550601260009054906101000a900460ff16156118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590613e60565b60405180910390fd5b60006118f8611019565b90506000821161193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490613d60565b60405180910390fd5b601054821115611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990613e00565b60405180910390fd5b600e5482826119919190614005565b11156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613da0565b60405180910390fd5b601054826119e66119e16122c5565b6123cd565b6119f09190614005565b1115611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2890613dc0565b60405180910390fd5b81600d54611a3f919061408c565b341015611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890613e40565b60405180910390fd5b611a92611a8c6122c5565b83612437565b50600160098190555050565b611aa66122c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b186122c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bc56122c5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c0a9190613d03565b60405180910390a35050565b611c2184848461245e565b611c408373ffffffffffffffffffffffffffffffffffffffff16612c69565b8015611c555750611c5384848484612c8c565b155b15611c8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60105481565b600b8054611ca5906141d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd1906141d0565b8015611d1e5780601f10611cf357610100808354040283529160200191611d1e565b820191906000526020600020905b815481529060010190602001808311611d0157829003601f168201915b505050505081565b6060611d31826122cd565b611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790613d40565b60405180910390fd5b60001515601260019054906101000a900460ff1615151415611e1e57600c8054611d99906141d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc5906141d0565b8015611e125780601f10611de757610100808354040283529160200191611e12565b820191906000526020600020905b815481529060010190602001808311611df557829003601f168201915b50505050509050611e7a565b6000611e28612dec565b90506000815111611e485760405180602001604052806000815250611e76565b80611e5284612e7e565b600b604051602001611e6693929190613c56565b6040516020818303038152906040525b9150505b919050565b600e5481565b611e8d6122c5565b73ffffffffffffffffffffffffffffffffffffffff16611eab6116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890613e80565b60405180910390fd5b80600b9080519060200190611f179291906133cb565b5050565b6000611f26826123cd565b9050919050565b611f356122c5565b73ffffffffffffffffffffffffffffffffffffffff16611f536116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa090613e80565b60405180910390fd5b80600f8190555050565b611fbb6122c5565b73ffffffffffffffffffffffffffffffffffffffff16611fd96116fb565b73ffffffffffffffffffffffffffffffffffffffff161461202f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202690613e80565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120d56122c5565b73ffffffffffffffffffffffffffffffffffffffff166120f36116fb565b73ffffffffffffffffffffffffffffffffffffffff1614612149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214090613e80565b60405180910390fd5b80600c908051906020019061215f9291906133cb565b5050565b61216b6122c5565b73ffffffffffffffffffffffffffffffffffffffff166121896116fb565b73ffffffffffffffffffffffffffffffffffffffff16146121df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d690613e80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224690613d80565b60405180910390fd5b61225881612ba3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816122d8612455565b111580156122e7575060005482105b8015612314575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612451828260405180602001604052806000815250612fdf565b5050565b60006001905090565b600061246982612914565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124d4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124f56122c5565b73ffffffffffffffffffffffffffffffffffffffff16148061252457506125238561251e6122c5565b612039565b5b8061256957506125326122c5565b73ffffffffffffffffffffffffffffffffffffffff1661255184610b7a565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806125a2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612609576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126168585856001612ff1565b6126226000848761231b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128a25760005482146128a157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461290d8585856001612ff7565b5050505050565b61291c613451565b60008290508061292a612455565b11158015612939575060005481105b15612b6c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b6a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a4e578092505050612b9e565b5b600115612b6957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b64578092505050612b9e565b612a4f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cb26122c5565b8786866040518563ffffffff1660e01b8152600401612cd49493929190613cb7565b602060405180830381600087803b158015612cee57600080fd5b505af1925050508015612d1f57506040513d601f19601f82011682018060405250810190612d1c9190613817565b60015b612d99573d8060008114612d4f576040519150601f19603f3d011682016040523d82523d6000602084013e612d54565b606091505b50600081511415612d91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612dfb906141d0565b80601f0160208091040260200160405190810160405280929190818152602001828054612e27906141d0565b8015612e745780601f10612e4957610100808354040283529160200191612e74565b820191906000526020600020905b815481529060010190602001808311612e5757829003601f168201915b5050505050905090565b60606000821415612ec6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fda565b600082905060005b60008214612ef8578080612ee190614233565b915050600a82612ef1919061405b565b9150612ece565b60008167ffffffffffffffff811115612f1457612f13614369565b5b6040519080825280601f01601f191660200182016040528015612f465781602001600182028036833780820191505090505b5090505b60008514612fd357600182612f5f91906140e6565b9150600a85612f6e919061427c565b6030612f7a9190614005565b60f81b818381518110612f9057612f8f61433a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fcc919061405b565b9450612f4a565b8093505050505b919050565b612fec8383836001612ffd565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561306a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156130a5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130b26000868387612ff1565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561327c575061327b8773ffffffffffffffffffffffffffffffffffffffff16612c69565b5b15613342575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132f16000888480600101955088612c8c565b613327576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561328257826000541461333d57600080fd5b6133ae565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613343575b8160008190555050506133c46000868387612ff7565b5050505050565b8280546133d7906141d0565b90600052602060002090601f0160209004810192826133f95760008555613440565b82601f1061341257805160ff1916838001178555613440565b82800160010185558215613440579182015b8281111561343f578251825591602001919060010190613424565b5b50905061344d9190613494565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156134ad576000816000905550600101613495565b5090565b60006134c46134bf84613f40565b613f1b565b9050828152602081018484840111156134e0576134df61439d565b5b6134eb84828561418e565b509392505050565b600061350661350184613f71565b613f1b565b9050828152602081018484840111156135225761352161439d565b5b61352d84828561418e565b509392505050565b600081359050613544816146e2565b92915050565b600081359050613559816146f9565b92915050565b60008135905061356e81614710565b92915050565b60008151905061358381614710565b92915050565b600082601f83011261359e5761359d614398565b5b81356135ae8482602086016134b1565b91505092915050565b600082601f8301126135cc576135cb614398565b5b81356135dc8482602086016134f3565b91505092915050565b6000813590506135f481614727565b92915050565b6000602082840312156136105761360f6143a7565b5b600061361e84828501613535565b91505092915050565b6000806040838503121561363e5761363d6143a7565b5b600061364c85828601613535565b925050602061365d85828601613535565b9150509250929050565b6000806000606084860312156136805761367f6143a7565b5b600061368e86828701613535565b935050602061369f86828701613535565b92505060406136b0868287016135e5565b9150509250925092565b600080600080608085870312156136d4576136d36143a7565b5b60006136e287828801613535565b94505060206136f387828801613535565b9350506040613704878288016135e5565b925050606085013567ffffffffffffffff811115613725576137246143a2565b5b61373187828801613589565b91505092959194509250565b60008060408385031215613754576137536143a7565b5b600061376285828601613535565b92505060206137738582860161354a565b9150509250929050565b60008060408385031215613794576137936143a7565b5b60006137a285828601613535565b92505060206137b3858286016135e5565b9150509250929050565b6000602082840312156137d3576137d26143a7565b5b60006137e18482850161354a565b91505092915050565b600060208284031215613800576137ff6143a7565b5b600061380e8482850161355f565b91505092915050565b60006020828403121561382d5761382c6143a7565b5b600061383b84828501613574565b91505092915050565b60006020828403121561385a576138596143a7565b5b600082013567ffffffffffffffff811115613878576138776143a2565b5b613884848285016135b7565b91505092915050565b6000602082840312156138a3576138a26143a7565b5b60006138b1848285016135e5565b91505092915050565b600080604083850312156138d1576138d06143a7565b5b60006138df858286016135e5565b92505060206138f085828601613535565b9150509250929050565b6139038161411a565b82525050565b6139128161412c565b82525050565b600061392382613fb7565b61392d8185613fcd565b935061393d81856020860161419d565b613946816143ac565b840191505092915050565b600061395c82613fc2565b6139668185613fe9565b935061397681856020860161419d565b61397f816143ac565b840191505092915050565b600061399582613fc2565b61399f8185613ffa565b93506139af81856020860161419d565b80840191505092915050565b600081546139c8816141d0565b6139d28186613ffa565b945060018216600081146139ed57600181146139fe57613a31565b60ff19831686528186019350613a31565b613a0785613fa2565b60005b83811015613a2957815481890152600182019150602081019050613a0a565b838801955050505b50505092915050565b6000613a47603083613fe9565b9150613a52826143bd565b604082019050919050565b6000613a6a602183613fe9565b9150613a758261440c565b604082019050919050565b6000613a8d602683613fe9565b9150613a988261445b565b604082019050919050565b6000613ab0601083613fe9565b9150613abb826144aa565b602082019050919050565b6000613ad3602183613fe9565b9150613ade826144d3565b604082019050919050565b6000613af6601e83613fe9565b9150613b0182614522565b602082019050919050565b6000613b19602583613fe9565b9150613b248261454b565b604082019050919050565b6000613b3c601683613fe9565b9150613b478261459a565b602082019050919050565b6000613b5f601883613fe9565b9150613b6a826145c3565b602082019050919050565b6000613b82601d83613fe9565b9150613b8d826145ec565b602082019050919050565b6000613ba5602083613fe9565b9150613bb082614615565b602082019050919050565b6000613bc8602283613fe9565b9150613bd38261463e565b604082019050919050565b6000613beb600083613fde565b9150613bf68261468d565b600082019050919050565b6000613c0e601f83613fe9565b9150613c1982614690565b602082019050919050565b6000613c31601b83613fe9565b9150613c3c826146b9565b602082019050919050565b613c5081614184565b82525050565b6000613c62828661398a565b9150613c6e828561398a565b9150613c7a82846139bb565b9150819050949350505050565b6000613c9282613bde565b9150819050919050565b6000602082019050613cb160008301846138fa565b92915050565b6000608082019050613ccc60008301876138fa565b613cd960208301866138fa565b613ce66040830185613c47565b8181036060830152613cf88184613918565b905095945050505050565b6000602082019050613d186000830184613909565b92915050565b60006020820190508181036000830152613d388184613951565b905092915050565b60006020820190508181036000830152613d5981613a3a565b9050919050565b60006020820190508181036000830152613d7981613a5d565b9050919050565b60006020820190508181036000830152613d9981613a80565b9050919050565b60006020820190508181036000830152613db981613aa3565b9050919050565b60006020820190508181036000830152613dd981613ac6565b9050919050565b60006020820190508181036000830152613df981613ae9565b9050919050565b60006020820190508181036000830152613e1981613b0c565b9050919050565b60006020820190508181036000830152613e3981613b2f565b9050919050565b60006020820190508181036000830152613e5981613b52565b9050919050565b60006020820190508181036000830152613e7981613b75565b9050919050565b60006020820190508181036000830152613e9981613b98565b9050919050565b60006020820190508181036000830152613eb981613bbb565b9050919050565b60006020820190508181036000830152613ed981613c01565b9050919050565b60006020820190508181036000830152613ef981613c24565b9050919050565b6000602082019050613f156000830184613c47565b92915050565b6000613f25613f36565b9050613f318282614202565b919050565b6000604051905090565b600067ffffffffffffffff821115613f5b57613f5a614369565b5b613f64826143ac565b9050602081019050919050565b600067ffffffffffffffff821115613f8c57613f8b614369565b5b613f95826143ac565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061401082614184565b915061401b83614184565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140505761404f6142ad565b5b828201905092915050565b600061406682614184565b915061407183614184565b925082614081576140806142dc565b5b828204905092915050565b600061409782614184565b91506140a283614184565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140db576140da6142ad565b5b828202905092915050565b60006140f182614184565b91506140fc83614184565b92508282101561410f5761410e6142ad565b5b828203905092915050565b600061412582614164565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141bb5780820151818401526020810190506141a0565b838111156141ca576000848401525b50505050565b600060028204905060018216806141e857607f821691505b602082108114156141fc576141fb61430b565b5b50919050565b61420b826143ac565b810181811067ffffffffffffffff8211171561422a57614229614369565b5b80604052505050565b600061423e82614184565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614271576142706142ad565b5b600182019050919050565b600061428782614184565b915061429283614184565b9250826142a2576142a16142dc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f307853423a206e65656420746f206d696e74206174206c656173742031204e4660008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f307853423a20576520536f6c646f757400000000000000000000000000000000600082015250565b7f307853423a204d6178204e4654205065722057616c6c6574206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f307853423a206d6178206d696e74207065722054782065786365656465640000600082015250565b7f307853423a206d6178206d696e7420616d6f756e74207065722074782065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f307853423a20696e73756666696369656e742066756e64730000000000000000600082015250565b7f307853423a206f6f707320636f6e747261637420697320706175736564000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f307853423a2057686974656c697374204d6178537570706c792065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6146eb8161411a565b81146146f657600080fd5b50565b6147028161412c565b811461470d57600080fd5b50565b61471981614138565b811461472457600080fd5b50565b61473081614184565b811461473b57600080fd5b5056fea2646970667358221220f073ba8f5c86602d258bc11ff2326542a1b9180aec133e93b18142070f8552d764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53727452677245533636706936746969646237777641396f51794776726f4b4a635639357766524c6a7731462f000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c80636c0360eb11610139578063bd7a1998116100b6578063dc33e6811161007a578063dc33e6811461084f578063e1cf8baa1461088c578063e268e4d3146108b5578063e985e9c5146108de578063f2c4ce1e1461091b578063f2fde38b1461094457610251565b8063bd7a199814610768578063c668286214610793578063c87b56dd146107be578063d5abeb01146107fb578063da3ef23f1461082657610251565b8063940cd05b116100fd578063940cd05b146106a657806395d89b41146106cf578063a0712d68146106fa578063a22cb46514610716578063b88d4fde1461073f57610251565b80636c0360eb146105d357806370a08231146105fe578063715018a61461063b57806383a076be146106525780638da5cb5b1461067b57610251565b806323b872dd116101d257806350839bef1161019657806350839bef146104c157806351830227146104ec57806355f804b3146105175780635c975abb14610540578063624208ae1461056b5780636352211e1461059657610251565b806323b872dd14610413578063351de26e1461043c5780633ccfd60b1461046557806342842e0e1461046f57806344a0d68a1461049857610251565b8063095ea7b311610219578063095ea7b31461034f5780630fbe4fe21461037857806313faede614610394578063149835a0146103bf57806318160ddd146103e857610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e7578063081c8c4414610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906137ea565b61096d565b60405161028a9190613d03565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906137bd565b610a4f565b005b3480156102c857600080fd5b506102d1610ae8565b6040516102de9190613d1e565b60405180910390f35b3480156102f357600080fd5b5061030e6004803603810190610309919061388d565b610b7a565b60405161031b9190613c9c565b60405180910390f35b34801561033057600080fd5b50610339610bf6565b6040516103469190613d1e565b60405180910390f35b34801561035b57600080fd5b506103766004803603810190610371919061377d565b610c84565b005b610392600480360381019061038d919061388d565b610d8f565b005b3480156103a057600080fd5b506103a9610f8d565b6040516103b69190613f00565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e1919061388d565b610f93565b005b3480156103f457600080fd5b506103fd611019565b60405161040a9190613f00565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190613667565b611030565b005b34801561044857600080fd5b50610463600480360381019061045e919061388d565b611040565b005b61046d6110c6565b005b34801561047b57600080fd5b5061049660048036038101906104919190613667565b611211565b005b3480156104a457600080fd5b506104bf60048036038101906104ba919061388d565b611231565b005b3480156104cd57600080fd5b506104d66112b7565b6040516104e39190613f00565b60405180910390f35b3480156104f857600080fd5b506105016112bd565b60405161050e9190613d03565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613844565b6112d0565b005b34801561054c57600080fd5b50610555611366565b6040516105629190613d03565b60405180910390f35b34801561057757600080fd5b50610580611379565b60405161058d9190613f00565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b8919061388d565b61137f565b6040516105ca9190613c9c565b60405180910390f35b3480156105df57600080fd5b506105e8611395565b6040516105f59190613d1e565b60405180910390f35b34801561060a57600080fd5b50610625600480360381019061062091906135fa565b611423565b6040516106329190613f00565b60405180910390f35b34801561064757600080fd5b506106506114f3565b005b34801561065e57600080fd5b50610679600480360381019061067491906138ba565b61157b565b005b34801561068757600080fd5b506106906116fb565b60405161069d9190613c9c565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906137bd565b611725565b005b3480156106db57600080fd5b506106e46117be565b6040516106f19190613d1e565b60405180910390f35b610714600480360381019061070f919061388d565b611850565b005b34801561072257600080fd5b5061073d6004803603810190610738919061373d565b611a9e565b005b34801561074b57600080fd5b50610766600480360381019061076191906136ba565b611c16565b005b34801561077457600080fd5b5061077d611c92565b60405161078a9190613f00565b60405180910390f35b34801561079f57600080fd5b506107a8611c98565b6040516107b59190613d1e565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e0919061388d565b611d26565b6040516107f29190613d1e565b60405180910390f35b34801561080757600080fd5b50610810611e7f565b60405161081d9190613f00565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613844565b611e85565b005b34801561085b57600080fd5b50610876600480360381019061087191906135fa565b611f1b565b6040516108839190613f00565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae919061388d565b611f2d565b005b3480156108c157600080fd5b506108dc60048036038101906108d7919061388d565b611fb3565b005b3480156108ea57600080fd5b5061090560048036038101906109009190613627565b612039565b6040516109129190613d03565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d9190613844565b6120cd565b005b34801561095057600080fd5b5061096b600480360381019061096691906135fa565b612163565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a485750610a478261225b565b5b9050919050565b610a576122c5565b73ffffffffffffffffffffffffffffffffffffffff16610a756116fb565b73ffffffffffffffffffffffffffffffffffffffff1614610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290613e80565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060028054610af7906141d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b23906141d0565b8015610b705780601f10610b4557610100808354040283529160200191610b70565b820191906000526020600020905b815481529060010190602001808311610b5357829003601f168201915b5050505050905090565b6000610b85826122cd565b610bbb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610c03906141d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2f906141d0565b8015610c7c5780601f10610c5157610100808354040283529160200191610c7c565b820191906000526020600020905b815481529060010190602001808311610c5f57829003601f168201915b505050505081565b6000610c8f8261137f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d166122c5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d485750610d4681610d416122c5565b612039565b155b15610d7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d8a83838361231b565b505050565b60026009541415610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90613ec0565b60405180910390fd5b6002600981905550601260009054906101000a900460ff1615610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490613e60565b60405180910390fd5b6000610e37611019565b905060115482610e4d610e486122c5565b6123cd565b610e579190614005565b1115610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90613dc0565b60405180910390fd5b60008211610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290613d60565b60405180910390fd5b601154821115610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1790613de0565b60405180910390fd5b600f548282610f2f9190614005565b1115610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790613ea0565b60405180910390fd5b610f81610f7b6122c5565b83612437565b50600160098190555050565b600d5481565b610f9b6122c5565b73ffffffffffffffffffffffffffffffffffffffff16610fb96116fb565b73ffffffffffffffffffffffffffffffffffffffff161461100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613e80565b60405180910390fd5b80600e8190555050565b6000611023612455565b6001546000540303905090565b61103b83838361245e565b505050565b6110486122c5565b73ffffffffffffffffffffffffffffffffffffffff166110666116fb565b73ffffffffffffffffffffffffffffffffffffffff16146110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390613e80565b60405180910390fd5b8060118190555050565b6110ce6122c5565b73ffffffffffffffffffffffffffffffffffffffff166110ec6116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990613e80565b60405180910390fd5b60026009541415611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90613ec0565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516111b690613c87565b60006040518083038185875af1925050503d80600081146111f3576040519150601f19603f3d011682016040523d82523d6000602084013e6111f8565b606091505b505090508061120657600080fd5b506001600981905550565b61122c83838360405180602001604052806000815250611c16565b505050565b6112396122c5565b73ffffffffffffffffffffffffffffffffffffffff166112576116fb565b73ffffffffffffffffffffffffffffffffffffffff16146112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490613e80565b60405180910390fd5b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b6112d86122c5565b73ffffffffffffffffffffffffffffffffffffffff166112f66116fb565b73ffffffffffffffffffffffffffffffffffffffff161461134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390613e80565b60405180910390fd5b80600a90805190602001906113629291906133cb565b5050565b601260009054906101000a900460ff1681565b60115481565b600061138a82612914565b600001519050919050565b600a80546113a2906141d0565b80601f01602080910402602001604051908101604052809291908181526020018280546113ce906141d0565b801561141b5780601f106113f05761010080835404028352916020019161141b565b820191906000526020600020905b8154815290600101906020018083116113fe57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114fb6122c5565b73ffffffffffffffffffffffffffffffffffffffff166115196116fb565b73ffffffffffffffffffffffffffffffffffffffff161461156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690613e80565b60405180910390fd5b6115796000612ba3565b565b6115836122c5565b73ffffffffffffffffffffffffffffffffffffffff166115a16116fb565b73ffffffffffffffffffffffffffffffffffffffff16146115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90613e80565b60405180910390fd5b6002600954141561163d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163490613ec0565b60405180910390fd5b600260098190555060008211611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90613ee0565b60405180910390fd5b6000611692611019565b9050600e5483826116a39190614005565b11156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90613e20565b60405180910390fd5b6116ee8284612437565b5060016009819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61172d6122c5565b73ffffffffffffffffffffffffffffffffffffffff1661174b6116fb565b73ffffffffffffffffffffffffffffffffffffffff16146117a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179890613e80565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6060600380546117cd906141d0565b80601f01602080910402602001604051908101604052809291908181526020018280546117f9906141d0565b80156118465780601f1061181b57610100808354040283529160200191611846565b820191906000526020600020905b81548152906001019060200180831161182957829003601f168201915b5050505050905090565b60026009541415611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90613ec0565b60405180910390fd5b6002600981905550601260009054906101000a900460ff16156118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590613e60565b60405180910390fd5b60006118f8611019565b90506000821161193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490613d60565b60405180910390fd5b601054821115611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990613e00565b60405180910390fd5b600e5482826119919190614005565b11156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613da0565b60405180910390fd5b601054826119e66119e16122c5565b6123cd565b6119f09190614005565b1115611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2890613dc0565b60405180910390fd5b81600d54611a3f919061408c565b341015611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890613e40565b60405180910390fd5b611a92611a8c6122c5565b83612437565b50600160098190555050565b611aa66122c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b186122c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bc56122c5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c0a9190613d03565b60405180910390a35050565b611c2184848461245e565b611c408373ffffffffffffffffffffffffffffffffffffffff16612c69565b8015611c555750611c5384848484612c8c565b155b15611c8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60105481565b600b8054611ca5906141d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd1906141d0565b8015611d1e5780601f10611cf357610100808354040283529160200191611d1e565b820191906000526020600020905b815481529060010190602001808311611d0157829003601f168201915b505050505081565b6060611d31826122cd565b611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790613d40565b60405180910390fd5b60001515601260019054906101000a900460ff1615151415611e1e57600c8054611d99906141d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc5906141d0565b8015611e125780601f10611de757610100808354040283529160200191611e12565b820191906000526020600020905b815481529060010190602001808311611df557829003601f168201915b50505050509050611e7a565b6000611e28612dec565b90506000815111611e485760405180602001604052806000815250611e76565b80611e5284612e7e565b600b604051602001611e6693929190613c56565b6040516020818303038152906040525b9150505b919050565b600e5481565b611e8d6122c5565b73ffffffffffffffffffffffffffffffffffffffff16611eab6116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890613e80565b60405180910390fd5b80600b9080519060200190611f179291906133cb565b5050565b6000611f26826123cd565b9050919050565b611f356122c5565b73ffffffffffffffffffffffffffffffffffffffff16611f536116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa090613e80565b60405180910390fd5b80600f8190555050565b611fbb6122c5565b73ffffffffffffffffffffffffffffffffffffffff16611fd96116fb565b73ffffffffffffffffffffffffffffffffffffffff161461202f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202690613e80565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120d56122c5565b73ffffffffffffffffffffffffffffffffffffffff166120f36116fb565b73ffffffffffffffffffffffffffffffffffffffff1614612149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214090613e80565b60405180910390fd5b80600c908051906020019061215f9291906133cb565b5050565b61216b6122c5565b73ffffffffffffffffffffffffffffffffffffffff166121896116fb565b73ffffffffffffffffffffffffffffffffffffffff16146121df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d690613e80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224690613d80565b60405180910390fd5b61225881612ba3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816122d8612455565b111580156122e7575060005482105b8015612314575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612451828260405180602001604052806000815250612fdf565b5050565b60006001905090565b600061246982612914565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124d4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124f56122c5565b73ffffffffffffffffffffffffffffffffffffffff16148061252457506125238561251e6122c5565b612039565b5b8061256957506125326122c5565b73ffffffffffffffffffffffffffffffffffffffff1661255184610b7a565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806125a2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612609576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126168585856001612ff1565b6126226000848761231b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128a25760005482146128a157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461290d8585856001612ff7565b5050505050565b61291c613451565b60008290508061292a612455565b11158015612939575060005481105b15612b6c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b6a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a4e578092505050612b9e565b5b600115612b6957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b64578092505050612b9e565b612a4f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cb26122c5565b8786866040518563ffffffff1660e01b8152600401612cd49493929190613cb7565b602060405180830381600087803b158015612cee57600080fd5b505af1925050508015612d1f57506040513d601f19601f82011682018060405250810190612d1c9190613817565b60015b612d99573d8060008114612d4f576040519150601f19603f3d011682016040523d82523d6000602084013e612d54565b606091505b50600081511415612d91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612dfb906141d0565b80601f0160208091040260200160405190810160405280929190818152602001828054612e27906141d0565b8015612e745780601f10612e4957610100808354040283529160200191612e74565b820191906000526020600020905b815481529060010190602001808311612e5757829003601f168201915b5050505050905090565b60606000821415612ec6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fda565b600082905060005b60008214612ef8578080612ee190614233565b915050600a82612ef1919061405b565b9150612ece565b60008167ffffffffffffffff811115612f1457612f13614369565b5b6040519080825280601f01601f191660200182016040528015612f465781602001600182028036833780820191505090505b5090505b60008514612fd357600182612f5f91906140e6565b9150600a85612f6e919061427c565b6030612f7a9190614005565b60f81b818381518110612f9057612f8f61433a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fcc919061405b565b9450612f4a565b8093505050505b919050565b612fec8383836001612ffd565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561306a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156130a5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130b26000868387612ff1565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561327c575061327b8773ffffffffffffffffffffffffffffffffffffffff16612c69565b5b15613342575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132f16000888480600101955088612c8c565b613327576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561328257826000541461333d57600080fd5b6133ae565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613343575b8160008190555050506133c46000868387612ff7565b5050505050565b8280546133d7906141d0565b90600052602060002090601f0160209004810192826133f95760008555613440565b82601f1061341257805160ff1916838001178555613440565b82800160010185558215613440579182015b8281111561343f578251825591602001919060010190613424565b5b50905061344d9190613494565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156134ad576000816000905550600101613495565b5090565b60006134c46134bf84613f40565b613f1b565b9050828152602081018484840111156134e0576134df61439d565b5b6134eb84828561418e565b509392505050565b600061350661350184613f71565b613f1b565b9050828152602081018484840111156135225761352161439d565b5b61352d84828561418e565b509392505050565b600081359050613544816146e2565b92915050565b600081359050613559816146f9565b92915050565b60008135905061356e81614710565b92915050565b60008151905061358381614710565b92915050565b600082601f83011261359e5761359d614398565b5b81356135ae8482602086016134b1565b91505092915050565b600082601f8301126135cc576135cb614398565b5b81356135dc8482602086016134f3565b91505092915050565b6000813590506135f481614727565b92915050565b6000602082840312156136105761360f6143a7565b5b600061361e84828501613535565b91505092915050565b6000806040838503121561363e5761363d6143a7565b5b600061364c85828601613535565b925050602061365d85828601613535565b9150509250929050565b6000806000606084860312156136805761367f6143a7565b5b600061368e86828701613535565b935050602061369f86828701613535565b92505060406136b0868287016135e5565b9150509250925092565b600080600080608085870312156136d4576136d36143a7565b5b60006136e287828801613535565b94505060206136f387828801613535565b9350506040613704878288016135e5565b925050606085013567ffffffffffffffff811115613725576137246143a2565b5b61373187828801613589565b91505092959194509250565b60008060408385031215613754576137536143a7565b5b600061376285828601613535565b92505060206137738582860161354a565b9150509250929050565b60008060408385031215613794576137936143a7565b5b60006137a285828601613535565b92505060206137b3858286016135e5565b9150509250929050565b6000602082840312156137d3576137d26143a7565b5b60006137e18482850161354a565b91505092915050565b600060208284031215613800576137ff6143a7565b5b600061380e8482850161355f565b91505092915050565b60006020828403121561382d5761382c6143a7565b5b600061383b84828501613574565b91505092915050565b60006020828403121561385a576138596143a7565b5b600082013567ffffffffffffffff811115613878576138776143a2565b5b613884848285016135b7565b91505092915050565b6000602082840312156138a3576138a26143a7565b5b60006138b1848285016135e5565b91505092915050565b600080604083850312156138d1576138d06143a7565b5b60006138df858286016135e5565b92505060206138f085828601613535565b9150509250929050565b6139038161411a565b82525050565b6139128161412c565b82525050565b600061392382613fb7565b61392d8185613fcd565b935061393d81856020860161419d565b613946816143ac565b840191505092915050565b600061395c82613fc2565b6139668185613fe9565b935061397681856020860161419d565b61397f816143ac565b840191505092915050565b600061399582613fc2565b61399f8185613ffa565b93506139af81856020860161419d565b80840191505092915050565b600081546139c8816141d0565b6139d28186613ffa565b945060018216600081146139ed57600181146139fe57613a31565b60ff19831686528186019350613a31565b613a0785613fa2565b60005b83811015613a2957815481890152600182019150602081019050613a0a565b838801955050505b50505092915050565b6000613a47603083613fe9565b9150613a52826143bd565b604082019050919050565b6000613a6a602183613fe9565b9150613a758261440c565b604082019050919050565b6000613a8d602683613fe9565b9150613a988261445b565b604082019050919050565b6000613ab0601083613fe9565b9150613abb826144aa565b602082019050919050565b6000613ad3602183613fe9565b9150613ade826144d3565b604082019050919050565b6000613af6601e83613fe9565b9150613b0182614522565b602082019050919050565b6000613b19602583613fe9565b9150613b248261454b565b604082019050919050565b6000613b3c601683613fe9565b9150613b478261459a565b602082019050919050565b6000613b5f601883613fe9565b9150613b6a826145c3565b602082019050919050565b6000613b82601d83613fe9565b9150613b8d826145ec565b602082019050919050565b6000613ba5602083613fe9565b9150613bb082614615565b602082019050919050565b6000613bc8602283613fe9565b9150613bd38261463e565b604082019050919050565b6000613beb600083613fde565b9150613bf68261468d565b600082019050919050565b6000613c0e601f83613fe9565b9150613c1982614690565b602082019050919050565b6000613c31601b83613fe9565b9150613c3c826146b9565b602082019050919050565b613c5081614184565b82525050565b6000613c62828661398a565b9150613c6e828561398a565b9150613c7a82846139bb565b9150819050949350505050565b6000613c9282613bde565b9150819050919050565b6000602082019050613cb160008301846138fa565b92915050565b6000608082019050613ccc60008301876138fa565b613cd960208301866138fa565b613ce66040830185613c47565b8181036060830152613cf88184613918565b905095945050505050565b6000602082019050613d186000830184613909565b92915050565b60006020820190508181036000830152613d388184613951565b905092915050565b60006020820190508181036000830152613d5981613a3a565b9050919050565b60006020820190508181036000830152613d7981613a5d565b9050919050565b60006020820190508181036000830152613d9981613a80565b9050919050565b60006020820190508181036000830152613db981613aa3565b9050919050565b60006020820190508181036000830152613dd981613ac6565b9050919050565b60006020820190508181036000830152613df981613ae9565b9050919050565b60006020820190508181036000830152613e1981613b0c565b9050919050565b60006020820190508181036000830152613e3981613b2f565b9050919050565b60006020820190508181036000830152613e5981613b52565b9050919050565b60006020820190508181036000830152613e7981613b75565b9050919050565b60006020820190508181036000830152613e9981613b98565b9050919050565b60006020820190508181036000830152613eb981613bbb565b9050919050565b60006020820190508181036000830152613ed981613c01565b9050919050565b60006020820190508181036000830152613ef981613c24565b9050919050565b6000602082019050613f156000830184613c47565b92915050565b6000613f25613f36565b9050613f318282614202565b919050565b6000604051905090565b600067ffffffffffffffff821115613f5b57613f5a614369565b5b613f64826143ac565b9050602081019050919050565b600067ffffffffffffffff821115613f8c57613f8b614369565b5b613f95826143ac565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061401082614184565b915061401b83614184565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140505761404f6142ad565b5b828201905092915050565b600061406682614184565b915061407183614184565b925082614081576140806142dc565b5b828204905092915050565b600061409782614184565b91506140a283614184565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140db576140da6142ad565b5b828202905092915050565b60006140f182614184565b91506140fc83614184565b92508282101561410f5761410e6142ad565b5b828203905092915050565b600061412582614164565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141bb5780820151818401526020810190506141a0565b838111156141ca576000848401525b50505050565b600060028204905060018216806141e857607f821691505b602082108114156141fc576141fb61430b565b5b50919050565b61420b826143ac565b810181811067ffffffffffffffff8211171561422a57614229614369565b5b80604052505050565b600061423e82614184565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614271576142706142ad565b5b600182019050919050565b600061428782614184565b915061429283614184565b9250826142a2576142a16142dc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f307853423a206e65656420746f206d696e74206174206c656173742031204e4660008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f307853423a20576520536f6c646f757400000000000000000000000000000000600082015250565b7f307853423a204d6178204e4654205065722057616c6c6574206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f307853423a206d6178206d696e74207065722054782065786365656465640000600082015250565b7f307853423a206d6178206d696e7420616d6f756e74207065722074782065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f307853423a20696e73756666696369656e742066756e64730000000000000000600082015250565b7f307853423a206f6f707320636f6e747261637420697320706175736564000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f307853423a2057686974656c697374204d6178537570706c792065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6146eb8161411a565b81146146f657600080fd5b50565b6147028161412c565b811461470d57600080fd5b50565b61471981614138565b811461472457600080fd5b50565b61473081614184565b811461473b57600080fd5b5056fea2646970667358221220f073ba8f5c86602d258bc11ff2326542a1b9180aec133e93b18142070f8552d764736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53727452677245533636706936746969646237777641396f51794776726f4b4a635639357766524c6a7731462f000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmSrtRgrES66pi6tiidb7wvA9oQyGvroKJcV95wfRLjw1F/
Arg [1] : _initNotRevealedUri (string):
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5372745267724553363670693674696964623777764139
Arg [4] : 6f51794776726f4b4a635639357766524c6a7731462f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47664:4277:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29768:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51685:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32881:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34384:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47825:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33947:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49161:542;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47858:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51121:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29017:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35249:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50925:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51767:171;;;:::i;:::-;;35490:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51033:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47933:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48078:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51325:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48047:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48006:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32689:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47757:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30137:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7526:103;;;;;;;;;;;;;:::i;:::-;;49772:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6875:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50739:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33050:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48567:586;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34660:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35746:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47969:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47783:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50104:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47897:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51429:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50610:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51223:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50825:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35018:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51559:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7784:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29768:305;29870:4;29922:25;29907:40;;;:11;:40;;;;:105;;;;29979:33;29964:48;;;:11;:48;;;;29907:105;:158;;;;30029:36;30053:11;30029:23;:36::i;:::-;29907:158;29887:178;;29768:305;;;:::o;51685:73::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51746:6:::1;51737;;:15;;;;;;;;;;;;;;;;;;51685:73:::0;:::o;32881:100::-;32935:13;32968:5;32961:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32881:100;:::o;34384:204::-;34452:7;34477:16;34485:7;34477;:16::i;:::-;34472:64;;34502:34;;;;;;;;;;;;;;34472:64;34556:15;:24;34572:7;34556:24;;;;;;;;;;;;;;;;;;;;;34549:31;;34384:204;;;:::o;47825:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33947:371::-;34020:13;34036:24;34052:7;34036:15;:24::i;:::-;34020:40;;34081:5;34075:11;;:2;:11;;;34071:48;;;34095:24;;;;;;;;;;;;;;34071:48;34152:5;34136:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34162:37;34179:5;34186:12;:10;:12::i;:::-;34162:16;:37::i;:::-;34161:38;34136:63;34132:138;;;34223:35;;;;;;;;;;;;;;34132:138;34282:28;34291:2;34295:7;34304:5;34282:8;:28::i;:::-;34009:309;33947:371;;:::o;49161:542::-;1849:1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;49239:6:::1;;;;;;;;;;;49238:7;49230:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;49286:14;49303:13;:11;:13::i;:::-;49286:30;;49371:16;;49361:6;49331:27;49345:12;:10;:12::i;:::-;49331:13;:27::i;:::-;:36;;;;:::i;:::-;:56;;49323:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;49449:1;49440:6;:10;49432:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;49513:16;;49503:6;:26;;49495:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49598:10;;49588:6;49579;:15;;;;:::i;:::-;:29;;49571:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49660:31;49670:12;:10;:12::i;:::-;49684:6;49660:9;:31::i;:::-;49223:480;1805:1:::0;2759:7;:22;;;;49161:542;:::o;47858:34::-;;;;:::o;51121:94::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51199:10:::1;51187:9;:22;;;;51121:94:::0;:::o;29017:303::-;29061:7;29286:15;:13;:15::i;:::-;29271:12;;29255:13;;:28;:46;29248:53;;29017:303;:::o;35249:170::-;35383:28;35393:4;35399:2;35403:7;35383:9;:28::i;:::-;35249:170;;;:::o;50925:100::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51013:6:::1;50994:16;:25;;;;50925:100:::0;:::o;51767:171::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1:::1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;51833:12:::2;51859:10;51851:24;;51883:21;51851:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51832:77;;;51924:7;51916:16;;;::::0;::::2;;51825:113;1805:1:::1;2759:7;:22;;;;51767:171::o:0;35490:185::-;35628:39;35645:4;35651:2;35655:7;35628:39;;;;;;;;;;;;:16;:39::i;:::-;35490:185;;;:::o;51033:80::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51099:8:::1;51092:4;:15;;;;51033:80:::0;:::o;47933:31::-;;;;:::o;48078:28::-;;;;;;;;;;;;;:::o;51325:98::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51406:11:::1;51396:7;:21;;;;;;;;;;;;:::i;:::-;;51325:98:::0;:::o;48047:26::-;;;;;;;;;;;;;:::o;48006:36::-;;;;:::o;32689:125::-;32753:7;32780:21;32793:7;32780:12;:21::i;:::-;:26;;;32773:33;;32689:125;;;:::o;47757:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30137:206::-;30201:7;30242:1;30225:19;;:5;:19;;;30221:60;;;30253:28;;;;;;;;;;;;;;30221:60;30307:12;:19;30320:5;30307:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30299:36;;30292:43;;30137:206;;;:::o;7526:103::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7591:30:::1;7618:1;7591:18;:30::i;:::-;7526:103::o:0;49772:318::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1:::1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;49887:1:::2;49873:11;:15;49865:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49927:14;49944:13;:11;:13::i;:::-;49927:30;;49996:9;;49981:11;49972:6;:20;;;;:::i;:::-;:33;;49964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50043:35;50053:11;50066;50043:9;:35::i;:::-;49858:232;1805:1:::1;2759:7;:22;;;;49772:318:::0;;:::o;6875:87::-;6921:7;6948:6;;;;;;;;;;;6941:13;;6875:87;:::o;50739:78::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50805:6:::1;50794:8;;:17;;;;;;;;;;;;;;;;;;50739:78:::0;:::o;33050:104::-;33106:13;33139:7;33132:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33050:104;:::o;48567:586::-;1849:1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;48641:6:::1;;;;;;;;;;;48640:7;48632:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;48688:14;48705:13;:11;:13::i;:::-;48688:30;;48742:1;48733:6;:10;48725:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;48806:12;;48796:6;:22;;48788:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;48894:9;;48884:6;48875;:15;;;;:::i;:::-;:28;;48867:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;48979:12;;48969:6;48939:27;48953:12;:10;:12::i;:::-;48939:13;:27::i;:::-;:36;;;;:::i;:::-;:52;;48931:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;49064:6;49057:4;;:13;;;;:::i;:::-;49044:9;:26;;49036:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49110:31;49120:12;:10;:12::i;:::-;49134:6;49110:9;:31::i;:::-;48625:528;1805:1:::0;2759:7;:22;;;;48567:586;:::o;34660:287::-;34771:12;:10;:12::i;:::-;34759:24;;:8;:24;;;34755:54;;;34792:17;;;;;;;;;;;;;;34755:54;34867:8;34822:18;:32;34841:12;:10;:12::i;:::-;34822:32;;;;;;;;;;;;;;;:42;34855:8;34822:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34920:8;34891:48;;34906:12;:10;:12::i;:::-;34891:48;;;34930:8;34891:48;;;;;;:::i;:::-;;;;;;;;34660:287;;:::o;35746:369::-;35913:28;35923:4;35929:2;35933:7;35913:9;:28::i;:::-;35956:15;:2;:13;;;:15::i;:::-;:76;;;;;35976:56;36007:4;36013:2;36017:7;36026:5;35976:30;:56::i;:::-;35975:57;35956:76;35952:156;;;36056:40;;;;;;;;;;;;;;35952:156;35746:369;;;;:::o;47969:32::-;;;;:::o;47783:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50104:498::-;50202:13;50243:16;50251:7;50243;:16::i;:::-;50227:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50353:5;50341:17;;:8;;;;;;;;;;;:17;;;50338:62;;;50378:14;50371:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50338:62;50408:28;50439:10;:8;:10::i;:::-;50408:41;;50494:1;50469:14;50463:28;:32;:133;;;;;;;;;;;;;;;;;50531:14;50547:18;:7;:16;:18::i;:::-;50567:13;50514:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50463:133;50456:140;;;50104:498;;;;:::o;47897:31::-;;;;:::o;51429:122::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51528:17:::1;51512:13;:33;;;;;;;;;;;;:::i;:::-;;51429:122:::0;:::o;50610:107::-;50668:7;50691:20;50705:5;50691:13;:20::i;:::-;50684:27;;50610:107;;;:::o;51223:96::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51303:10:::1;51290;:23;;;;51223:96:::0;:::o;50825:92::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50905:6:::1;50890:12;:21;;;;50825:92:::0;:::o;35018:164::-;35115:4;35139:18;:25;35158:5;35139:25;;;;;;;;;;;;;;;:35;35165:8;35139:35;;;;;;;;;;;;;;;;;;;;;;;;;35132:42;;35018:164;;;;:::o;51559:120::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51658:15:::1;51641:14;:32;;;;;;;;;;;;:::i;:::-;;51559:120:::0;:::o;7784:201::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7893:1:::1;7873:22;;:8;:22;;;;7865:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7949:28;7968:8;7949:18;:28::i;:::-;7784:201:::0;:::o;19659:157::-;19744:4;19783:25;19768:40;;;:11;:40;;;;19761:47;;19659:157;;;:::o;5599:98::-;5652:7;5679:10;5672:17;;5599:98;:::o;36370:187::-;36427:4;36470:7;36451:15;:13;:15::i;:::-;:26;;:53;;;;;36491:13;;36481:7;:23;36451:53;:98;;;;;36522:11;:20;36534:7;36522:20;;;;;;;;;;;:27;;;;;;;;;;;;36521:28;36451:98;36444:105;;36370:187;;;:::o;44540:196::-;44682:2;44655:15;:24;44671:7;44655:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44720:7;44716:2;44700:28;;44709:5;44700:28;;;;;;;;;;;;44540:196;;;:::o;30425:137::-;30486:7;30521:12;:19;30534:5;30521:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;30513:41;;30506:48;;30425:137;;;:::o;36565:104::-;36634:27;36644:2;36648:8;36634:27;;;;;;;;;;;;:9;:27::i;:::-;36565:104;;:::o;48447:101::-;48512:7;48539:1;48532:8;;48447:101;:::o;39483:2130::-;39598:35;39636:21;39649:7;39636:12;:21::i;:::-;39598:59;;39696:4;39674:26;;:13;:18;;;:26;;;39670:67;;39709:28;;;;;;;;;;;;;;39670:67;39750:22;39792:4;39776:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39813:36;39830:4;39836:12;:10;:12::i;:::-;39813:16;:36::i;:::-;39776:73;:126;;;;39890:12;:10;:12::i;:::-;39866:36;;:20;39878:7;39866:11;:20::i;:::-;:36;;;39776:126;39750:153;;39921:17;39916:66;;39947:35;;;;;;;;;;;;;;39916:66;40011:1;39997:16;;:2;:16;;;39993:52;;;40022:23;;;;;;;;;;;;;;39993:52;40058:43;40080:4;40086:2;40090:7;40099:1;40058:21;:43::i;:::-;40166:35;40183:1;40187:7;40196:4;40166:8;:35::i;:::-;40527:1;40497:12;:18;40510:4;40497:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40571:1;40543:12;:16;40556:2;40543:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40589:31;40623:11;:20;40635:7;40623:20;;;;;;;;;;;40589:54;;40674:2;40658:8;:13;;;:18;;;;;;;;;;;;;;;;;;40724:15;40691:8;:23;;;:49;;;;;;;;;;;;;;;;;;40992:19;41024:1;41014:7;:11;40992:33;;41040:31;41074:11;:24;41086:11;41074:24;;;;;;;;;;;41040:58;;41142:1;41117:27;;:8;:13;;;;;;;;;;;;:27;;;41113:384;;;41327:13;;41312:11;:28;41308:174;;41381:4;41365:8;:13;;;:20;;;;;;;;;;;;;;;;;;41434:13;:28;;;41408:8;:23;;;:54;;;;;;;;;;;;;;;;;;41308:174;41113:384;40472:1036;;;41544:7;41540:2;41525:27;;41534:4;41525:27;;;;;;;;;;;;41563:42;41584:4;41590:2;41594:7;41603:1;41563:20;:42::i;:::-;39587:2026;;39483:2130;;;:::o;31518:1109::-;31580:21;;:::i;:::-;31614:12;31629:7;31614:22;;31697:4;31678:15;:13;:15::i;:::-;:23;;:47;;;;;31712:13;;31705:4;:20;31678:47;31674:886;;;31746:31;31780:11;:17;31792:4;31780:17;;;;;;;;;;;31746:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31821:9;:16;;;31816:729;;31892:1;31866:28;;:9;:14;;;:28;;;31862:101;;31930:9;31923:16;;;;;;31862:101;32265:261;32272:4;32265:261;;;32305:6;;;;;;;;32350:11;:17;32362:4;32350:17;;;;;;;;;;;32338:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32424:1;32398:28;;:9;:14;;;:28;;;32394:109;;32466:9;32459:16;;;;;;32394:109;32265:261;;;31816:729;31727:833;31674:886;32588:31;;;;;;;;;;;;;;31518:1109;;;;:::o;8145:191::-;8219:16;8238:6;;;;;;;;;;;8219:25;;8264:8;8255:6;;:17;;;;;;;;;;;;;;;;;;8319:8;8288:40;;8309:8;8288:40;;;;;;;;;;;;8208:128;8145:191;:::o;9576:326::-;9636:4;9893:1;9871:7;:19;;;:23;9864:30;;9576:326;;;:::o;45228:667::-;45391:4;45428:2;45412:36;;;45449:12;:10;:12::i;:::-;45463:4;45469:7;45478:5;45412:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45408:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45663:1;45646:6;:13;:18;45642:235;;;45692:40;;;;;;;;;;;;;;45642:235;45835:6;45829:13;45820:6;45816:2;45812:15;45805:38;45408:480;45541:45;;;45531:55;;;:6;:55;;;;45524:62;;;45228:667;;;;;;:::o;48337:102::-;48397:13;48426:7;48419:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48337:102;:::o;3161:723::-;3217:13;3447:1;3438:5;:10;3434:53;;;3465:10;;;;;;;;;;;;;;;;;;;;;3434:53;3497:12;3512:5;3497:20;;3528:14;3553:78;3568:1;3560:4;:9;3553:78;;3586:8;;;;;:::i;:::-;;;;3617:2;3609:10;;;;;:::i;:::-;;;3553:78;;;3641:19;3673:6;3663:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3641:39;;3691:154;3707:1;3698:5;:10;3691:154;;3735:1;3725:11;;;;;:::i;:::-;;;3802:2;3794:5;:10;;;;:::i;:::-;3781:2;:24;;;;:::i;:::-;3768:39;;3751:6;3758;3751:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3831:2;3822:11;;;;;:::i;:::-;;;3691:154;;;3869:6;3855:21;;;;;3161:723;;;;:::o;37032:163::-;37155:32;37161:2;37165:8;37175:5;37182:4;37155:5;:32::i;:::-;37032:163;;;:::o;46543:159::-;;;;;:::o;47361:158::-;;;;;:::o;37454:1775::-;37593:20;37616:13;;37593:36;;37658:1;37644:16;;:2;:16;;;37640:48;;;37669:19;;;;;;;;;;;;;;37640:48;37715:1;37703:8;:13;37699:44;;;37725:18;;;;;;;;;;;;;;37699:44;37756:61;37786:1;37790:2;37794:12;37808:8;37756:21;:61::i;:::-;38129:8;38094:12;:16;38107:2;38094:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38193:8;38153:12;:16;38166:2;38153:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38252:2;38219:11;:25;38231:12;38219:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38319:15;38269:11;:25;38281:12;38269:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38352:20;38375:12;38352:35;;38402:11;38431:8;38416:12;:23;38402:37;;38460:4;:23;;;;;38468:15;:2;:13;;;:15::i;:::-;38460:23;38456:641;;;38504:314;38560:12;38556:2;38535:38;;38552:1;38535:38;;;;;;;;;;;;38601:69;38640:1;38644:2;38648:14;;;;;;38664:5;38601:30;:69::i;:::-;38596:174;;38706:40;;;;;;;;;;;;;;38596:174;38813:3;38797:12;:19;;38504:314;;38899:12;38882:13;;:29;38878:43;;38913:8;;;38878:43;38456:641;;;38962:120;39018:14;;;;;;39014:2;38993:40;;39010:1;38993:40;;;;;;;;;;;;39077:3;39061:12;:19;;38962:120;;38456:641;39127:12;39111:13;:28;;;;38069:1082;;39161:60;39190:1;39194:2;39198:12;39212:8;39161:20;:60::i;:::-;37582:1647;37454:1775;;;;:::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;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12060:366;;;:::o;12432:::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:::-;13318:3;13339:67;13403:2;13398:3;13339:67;:::i;:::-;13332:74;;13415:93;13504:3;13415:93;:::i;:::-;13533:2;13528:3;13524:12;13517:19;;13176:366;;;:::o;13548:::-;13690:3;13711:67;13775:2;13770:3;13711:67;:::i;:::-;13704:74;;13787:93;13876:3;13787:93;:::i;:::-;13905:2;13900:3;13896:12;13889:19;;13548:366;;;:::o;13920:::-;14062:3;14083:67;14147:2;14142:3;14083:67;:::i;:::-;14076:74;;14159:93;14248:3;14159:93;:::i;:::-;14277:2;14272:3;14268:12;14261:19;;13920:366;;;:::o;14292:::-;14434:3;14455:67;14519:2;14514:3;14455:67;:::i;:::-;14448:74;;14531:93;14620:3;14531:93;:::i;:::-;14649:2;14644:3;14640:12;14633:19;;14292:366;;;:::o;14664:398::-;14823:3;14844:83;14925:1;14920:3;14844:83;:::i;:::-;14837:90;;14936:93;15025:3;14936:93;:::i;:::-;15054:1;15049:3;15045:11;15038:18;;14664:398;;;:::o;15068:366::-;15210:3;15231:67;15295:2;15290:3;15231:67;:::i;:::-;15224:74;;15307:93;15396:3;15307:93;:::i;:::-;15425:2;15420:3;15416:12;15409:19;;15068:366;;;:::o;15440:::-;15582:3;15603:67;15667:2;15662:3;15603:67;:::i;:::-;15596:74;;15679:93;15768:3;15679:93;:::i;:::-;15797:2;15792:3;15788:12;15781:19;;15440:366;;;:::o;15812:118::-;15899:24;15917:5;15899:24;:::i;:::-;15894:3;15887:37;15812:118;;:::o;15936:589::-;16161:3;16183:95;16274:3;16265:6;16183:95;:::i;:::-;16176:102;;16295:95;16386:3;16377:6;16295:95;:::i;:::-;16288:102;;16407:92;16495:3;16486:6;16407:92;:::i;:::-;16400:99;;16516:3;16509:10;;15936:589;;;;;;:::o;16531:379::-;16715:3;16737:147;16880:3;16737:147;:::i;:::-;16730:154;;16901:3;16894:10;;16531:379;;;:::o;16916:222::-;17009:4;17047:2;17036:9;17032:18;17024:26;;17060:71;17128:1;17117:9;17113:17;17104:6;17060:71;:::i;:::-;16916:222;;;;:::o;17144:640::-;17339:4;17377:3;17366:9;17362:19;17354:27;;17391:71;17459:1;17448:9;17444:17;17435:6;17391:71;:::i;:::-;17472:72;17540:2;17529:9;17525:18;17516:6;17472:72;:::i;:::-;17554;17622:2;17611:9;17607:18;17598:6;17554:72;:::i;:::-;17673:9;17667:4;17663:20;17658:2;17647:9;17643:18;17636:48;17701:76;17772:4;17763:6;17701:76;:::i;:::-;17693:84;;17144:640;;;;;;;:::o;17790:210::-;17877:4;17915:2;17904:9;17900:18;17892:26;;17928:65;17990:1;17979:9;17975:17;17966:6;17928:65;:::i;:::-;17790:210;;;;:::o;18006:313::-;18119:4;18157:2;18146:9;18142:18;18134:26;;18206:9;18200:4;18196:20;18192:1;18181:9;18177:17;18170:47;18234:78;18307:4;18298:6;18234:78;:::i;:::-;18226:86;;18006:313;;;;:::o;18325:419::-;18491:4;18529:2;18518:9;18514:18;18506:26;;18578:9;18572:4;18568:20;18564:1;18553:9;18549:17;18542:47;18606:131;18732:4;18606:131;:::i;:::-;18598:139;;18325:419;;;:::o;18750:::-;18916:4;18954:2;18943:9;18939:18;18931:26;;19003:9;18997:4;18993:20;18989:1;18978:9;18974:17;18967:47;19031:131;19157:4;19031:131;:::i;:::-;19023:139;;18750:419;;;:::o;19175:::-;19341:4;19379:2;19368:9;19364:18;19356:26;;19428:9;19422:4;19418:20;19414:1;19403:9;19399:17;19392:47;19456:131;19582:4;19456:131;:::i;:::-;19448:139;;19175:419;;;:::o;19600:::-;19766:4;19804:2;19793:9;19789:18;19781:26;;19853:9;19847:4;19843:20;19839:1;19828:9;19824:17;19817:47;19881:131;20007:4;19881:131;:::i;:::-;19873:139;;19600:419;;;:::o;20025:::-;20191:4;20229:2;20218:9;20214:18;20206:26;;20278:9;20272:4;20268:20;20264:1;20253:9;20249:17;20242:47;20306:131;20432:4;20306:131;:::i;:::-;20298:139;;20025:419;;;:::o;20450:::-;20616:4;20654:2;20643:9;20639:18;20631:26;;20703:9;20697:4;20693:20;20689:1;20678:9;20674:17;20667:47;20731:131;20857:4;20731:131;:::i;:::-;20723:139;;20450:419;;;:::o;20875:::-;21041:4;21079:2;21068:9;21064:18;21056:26;;21128:9;21122:4;21118:20;21114:1;21103:9;21099:17;21092:47;21156:131;21282:4;21156:131;:::i;:::-;21148:139;;20875:419;;;:::o;21300:::-;21466:4;21504:2;21493:9;21489:18;21481:26;;21553:9;21547:4;21543:20;21539:1;21528:9;21524:17;21517:47;21581:131;21707:4;21581:131;:::i;:::-;21573:139;;21300:419;;;:::o;21725:::-;21891:4;21929:2;21918:9;21914:18;21906:26;;21978:9;21972:4;21968:20;21964:1;21953:9;21949:17;21942:47;22006:131;22132:4;22006:131;:::i;:::-;21998:139;;21725:419;;;:::o;22150:::-;22316:4;22354:2;22343:9;22339:18;22331:26;;22403:9;22397:4;22393:20;22389:1;22378:9;22374:17;22367:47;22431:131;22557:4;22431:131;:::i;:::-;22423:139;;22150:419;;;:::o;22575:::-;22741:4;22779:2;22768:9;22764:18;22756:26;;22828:9;22822:4;22818:20;22814:1;22803:9;22799:17;22792:47;22856:131;22982:4;22856:131;:::i;:::-;22848:139;;22575:419;;;:::o;23000:::-;23166:4;23204:2;23193:9;23189:18;23181:26;;23253:9;23247:4;23243:20;23239:1;23228:9;23224:17;23217:47;23281:131;23407:4;23281:131;:::i;:::-;23273:139;;23000:419;;;:::o;23425:::-;23591:4;23629:2;23618:9;23614:18;23606:26;;23678:9;23672:4;23668:20;23664:1;23653:9;23649:17;23642:47;23706:131;23832:4;23706:131;:::i;:::-;23698:139;;23425:419;;;:::o;23850:::-;24016:4;24054:2;24043:9;24039:18;24031:26;;24103:9;24097:4;24093:20;24089:1;24078:9;24074:17;24067:47;24131:131;24257:4;24131:131;:::i;:::-;24123:139;;23850:419;;;:::o;24275:222::-;24368:4;24406:2;24395:9;24391:18;24383:26;;24419:71;24487:1;24476:9;24472:17;24463:6;24419:71;:::i;:::-;24275:222;;;;:::o;24503:129::-;24537:6;24564:20;;:::i;:::-;24554:30;;24593:33;24621:4;24613:6;24593:33;:::i;:::-;24503:129;;;:::o;24638:75::-;24671:6;24704:2;24698:9;24688:19;;24638:75;:::o;24719:307::-;24780:4;24870:18;24862:6;24859:30;24856:56;;;24892:18;;:::i;:::-;24856:56;24930:29;24952:6;24930:29;:::i;:::-;24922:37;;25014:4;25008;25004:15;24996:23;;24719:307;;;:::o;25032:308::-;25094:4;25184:18;25176:6;25173:30;25170:56;;;25206:18;;:::i;:::-;25170:56;25244:29;25266:6;25244:29;:::i;:::-;25236:37;;25328:4;25322;25318:15;25310:23;;25032:308;;;:::o;25346:141::-;25395:4;25418:3;25410:11;;25441:3;25438:1;25431:14;25475:4;25472:1;25462:18;25454:26;;25346:141;;;:::o;25493:98::-;25544:6;25578:5;25572:12;25562:22;;25493:98;;;:::o;25597:99::-;25649:6;25683:5;25677:12;25667:22;;25597:99;;;:::o;25702:168::-;25785:11;25819:6;25814:3;25807:19;25859:4;25854:3;25850:14;25835:29;;25702:168;;;;:::o;25876:147::-;25977:11;26014:3;25999:18;;25876:147;;;;:::o;26029:169::-;26113:11;26147:6;26142:3;26135:19;26187:4;26182:3;26178:14;26163:29;;26029:169;;;;:::o;26204:148::-;26306:11;26343:3;26328:18;;26204:148;;;;:::o;26358:305::-;26398:3;26417:20;26435:1;26417:20;:::i;:::-;26412:25;;26451:20;26469:1;26451:20;:::i;:::-;26446:25;;26605:1;26537:66;26533:74;26530:1;26527:81;26524:107;;;26611:18;;:::i;:::-;26524:107;26655:1;26652;26648:9;26641:16;;26358:305;;;;:::o;26669:185::-;26709:1;26726:20;26744:1;26726:20;:::i;:::-;26721:25;;26760:20;26778:1;26760:20;:::i;:::-;26755:25;;26799:1;26789:35;;26804:18;;:::i;:::-;26789:35;26846:1;26843;26839:9;26834:14;;26669:185;;;;:::o;26860:348::-;26900:7;26923:20;26941:1;26923:20;:::i;:::-;26918:25;;26957:20;26975:1;26957:20;:::i;:::-;26952:25;;27145:1;27077:66;27073:74;27070:1;27067:81;27062:1;27055:9;27048:17;27044:105;27041:131;;;27152:18;;:::i;:::-;27041:131;27200:1;27197;27193:9;27182:20;;26860:348;;;;:::o;27214:191::-;27254:4;27274:20;27292:1;27274:20;:::i;:::-;27269:25;;27308:20;27326:1;27308:20;:::i;:::-;27303:25;;27347:1;27344;27341:8;27338:34;;;27352:18;;:::i;:::-;27338:34;27397:1;27394;27390:9;27382:17;;27214:191;;;;:::o;27411:96::-;27448:7;27477:24;27495:5;27477:24;:::i;:::-;27466:35;;27411:96;;;:::o;27513:90::-;27547:7;27590:5;27583:13;27576:21;27565:32;;27513:90;;;:::o;27609:149::-;27645:7;27685:66;27678:5;27674:78;27663:89;;27609:149;;;:::o;27764:126::-;27801:7;27841:42;27834:5;27830:54;27819:65;;27764:126;;;:::o;27896:77::-;27933:7;27962:5;27951:16;;27896:77;;;:::o;27979:154::-;28063:6;28058:3;28053;28040:30;28125:1;28116:6;28111:3;28107:16;28100:27;27979:154;;;:::o;28139:307::-;28207:1;28217:113;28231:6;28228:1;28225:13;28217:113;;;28316:1;28311:3;28307:11;28301:18;28297:1;28292:3;28288:11;28281:39;28253:2;28250:1;28246:10;28241:15;;28217:113;;;28348:6;28345:1;28342:13;28339:101;;;28428:1;28419:6;28414:3;28410:16;28403:27;28339:101;28188:258;28139:307;;;:::o;28452:320::-;28496:6;28533:1;28527:4;28523:12;28513:22;;28580:1;28574:4;28570:12;28601:18;28591:81;;28657:4;28649:6;28645:17;28635:27;;28591:81;28719:2;28711:6;28708:14;28688:18;28685:38;28682:84;;;28738:18;;:::i;:::-;28682:84;28503:269;28452:320;;;:::o;28778:281::-;28861:27;28883:4;28861:27;:::i;:::-;28853:6;28849:40;28991:6;28979:10;28976:22;28955:18;28943:10;28940:34;28937:62;28934:88;;;29002:18;;:::i;:::-;28934:88;29042:10;29038:2;29031:22;28821:238;28778:281;;:::o;29065:233::-;29104:3;29127:24;29145:5;29127:24;:::i;:::-;29118:33;;29173:66;29166:5;29163:77;29160:103;;;29243:18;;:::i;:::-;29160:103;29290:1;29283:5;29279:13;29272:20;;29065:233;;;:::o;29304:176::-;29336:1;29353:20;29371:1;29353:20;:::i;:::-;29348:25;;29387:20;29405:1;29387:20;:::i;:::-;29382:25;;29426:1;29416:35;;29431:18;;:::i;:::-;29416:35;29472:1;29469;29465:9;29460:14;;29304:176;;;;:::o;29486:180::-;29534:77;29531:1;29524:88;29631:4;29628:1;29621:15;29655:4;29652:1;29645:15;29672:180;29720:77;29717:1;29710:88;29817:4;29814:1;29807:15;29841:4;29838:1;29831:15;29858:180;29906:77;29903:1;29896:88;30003:4;30000:1;29993:15;30027:4;30024:1;30017:15;30044:180;30092:77;30089:1;30082:88;30189:4;30186:1;30179:15;30213:4;30210:1;30203:15;30230:180;30278:77;30275:1;30268:88;30375:4;30372:1;30365:15;30399:4;30396:1;30389:15;30416:117;30525:1;30522;30515:12;30539:117;30648:1;30645;30638:12;30662:117;30771:1;30768;30761:12;30785:117;30894:1;30891;30884:12;30908:102;30949:6;31000:2;30996:7;30991:2;30984:5;30980:14;30976:28;30966:38;;30908:102;;;:::o;31016:235::-;31156:34;31152:1;31144:6;31140:14;31133:58;31225:18;31220:2;31212:6;31208:15;31201:43;31016:235;:::o;31257:220::-;31397:34;31393:1;31385:6;31381:14;31374:58;31466:3;31461:2;31453:6;31449:15;31442:28;31257:220;:::o;31483:225::-;31623:34;31619:1;31611:6;31607:14;31600:58;31692:8;31687:2;31679:6;31675:15;31668:33;31483:225;:::o;31714:166::-;31854:18;31850:1;31842:6;31838:14;31831:42;31714:166;:::o;31886:220::-;32026:34;32022:1;32014:6;32010:14;32003:58;32095:3;32090:2;32082:6;32078:15;32071:28;31886:220;:::o;32112:180::-;32252:32;32248:1;32240:6;32236:14;32229:56;32112:180;:::o;32298:224::-;32438:34;32434:1;32426:6;32422:14;32415:58;32507:7;32502:2;32494:6;32490:15;32483:32;32298:224;:::o;32528:172::-;32668:24;32664:1;32656:6;32652:14;32645:48;32528:172;:::o;32706:174::-;32846:26;32842:1;32834:6;32830:14;32823:50;32706:174;:::o;32886:179::-;33026:31;33022:1;33014:6;33010:14;33003:55;32886:179;:::o;33071:182::-;33211:34;33207:1;33199:6;33195:14;33188:58;33071:182;:::o;33259:221::-;33399:34;33395:1;33387:6;33383:14;33376:58;33468:4;33463:2;33455:6;33451:15;33444:29;33259:221;:::o;33486:114::-;;:::o;33606:181::-;33746:33;33742:1;33734:6;33730:14;33723:57;33606:181;:::o;33793:177::-;33933:29;33929:1;33921:6;33917:14;33910:53;33793:177;:::o;33976:122::-;34049:24;34067:5;34049:24;:::i;:::-;34042:5;34039:35;34029:63;;34088:1;34085;34078:12;34029:63;33976:122;:::o;34104:116::-;34174:21;34189:5;34174:21;:::i;:::-;34167:5;34164:32;34154:60;;34210:1;34207;34200:12;34154:60;34104:116;:::o;34226:120::-;34298:23;34315:5;34298:23;:::i;:::-;34291:5;34288:34;34278:62;;34336:1;34333;34326:12;34278:62;34226:120;:::o;34352:122::-;34425:24;34443:5;34425:24;:::i;:::-;34418:5;34415:35;34405:63;;34464:1;34461;34454:12;34405:63;34352:122;:::o
Swarm Source
ipfs://f073ba8f5c86602d258bc11ff2326542a1b9180aec133e93b18142070f8552d7
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.