ERC-721
NFT
Overview
Max Total Supply
0 sNOUN
Holders
1,572
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 sNOUNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SyntheticNouns
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.0; import { ERC721 } from "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import { Strings } from "@openzeppelin/contracts/utils/Strings.sol"; import { INounsDescriptor } from "./interfaces/INounsDescriptor.sol"; import { INounsSeeder } from "./interfaces/INounsSeeder.sol"; import { IENSReverseRecords } from "./interfaces/IENSReverseRecords.sol"; contract SyntheticNouns is ERC721 { using Strings for uint256; using Strings for address; event NounCreated(uint256 indexed tokenId, INounsSeeder.Seed seed); // The Nouns token URI descriptor INounsDescriptor public descriptor; // ENS reverse records contract IENSReverseRecords public reverseRecords; // The noun seeds mapping(uint256 => INounsSeeder.Seed) public seeds; // Addresses that have claimed a noun mapping(address => bool) public claimed; // Claimer of each noun mapping(uint256 => address) public claimerOf; // The internal noun ID tracker uint256 private _currentNounId = 1; constructor(INounsDescriptor _descriptor, IENSReverseRecords _reverseRecords) ERC721("Synthetic Nouns", "sNOUN") { descriptor = _descriptor; reverseRecords = _reverseRecords; } /** * @notice Generate a pseudo-random Noun seed using the previous blockhash and noun ID. */ // prettier-ignore function generateSeed(uint256 _pseudorandomness) private view returns (INounsSeeder.Seed memory) { uint256 backgroundCount = descriptor.backgroundCount(); uint256 bodyCount = descriptor.bodyCount(); uint256 accessoryCount = descriptor.accessoryCount(); uint256 headCount = descriptor.headCount(); uint256 glassesCount = descriptor.glassesCount(); return INounsSeeder.Seed({ background: uint48( uint48(_pseudorandomness) % backgroundCount ), body: uint48( uint48(_pseudorandomness >> 48) % bodyCount ), accessory: uint48( uint48(_pseudorandomness >> 96) % accessoryCount ), head: uint48( uint48(_pseudorandomness >> 144) % headCount ), glasses: uint48( uint48(_pseudorandomness >> 192) % glassesCount ) }); } /** * @notice Given an address, generate a unique input to be used with the generateSeed function. */ function getSeedInput(address _address) public pure returns (uint256) { return uint256(keccak256(abi.encodePacked(_address))); } /** * @notice Mint a Noun to the minter. * @dev Call _mintTo with the to address. */ function claim() public returns (uint256) { require(!claimed[msg.sender], "Noun already claimed"); claimed[msg.sender] = true; uint256 tokenId = _currentNounId++; claimerOf[tokenId] = msg.sender; return _mintTo(msg.sender, tokenId); } /** * @notice A distinct Uniform Resource Identifier (URI) for a given asset. * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "NounsToken: URI query for nonexistent token"); string memory nounId = _tokenId.toString(); string memory name = string(abi.encodePacked("Synthetic Noun ", nounId)); string memory ensName = _reverseName(claimerOf[_tokenId]); string memory addressOrENS = bytes(ensName).length == 0 ? claimerOf[_tokenId].toHexString() : ensName; string memory description = string( abi.encodePacked( "Synthetic Noun ", nounId, " claimed by address, ", addressOrENS, ", is a member of the Synthetic Nouns DAO" ) ); return descriptor.genericDataURI(name, description, seeds[_tokenId]); } /** * @notice Given an address, construct a base64 encoded SVG image. */ function addressPreview(address _address) public view returns (string memory) { return descriptor.generateSVGImage(generateSeed(getSeedInput(_address))); } /** * @notice Mint a Noun with `nounId` to the provided `to` address. */ function _mintTo(address _to, uint256 _nounId) internal returns (uint256) { INounsSeeder.Seed memory seed = seeds[_nounId] = generateSeed(getSeedInput(_to)); _mint(_to, _nounId); emit NounCreated(_nounId, seed); return _nounId; } /** * @notice ENS reverse lookup for address. */ function _reverseName(address _address) internal view returns (string memory name) { address[] memory t = new address[](1); t[0] = _address; name = reverseRecords.getNames(t)[0]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.6; abstract contract IENSReverseRecords { function getNames(address[] calldata addresses) external view virtual returns (string[] memory r); }
// SPDX-License-Identifier: GPL-3.0 /// @title Interface for NounsDescriptor /********************************* * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░█████████░░█████████░░░ * * ░░░░░░██░░░████░░██░░░████░░░ * * ░░██████░░░████████░░░████░░░ * * ░░██░░██░░░████░░██░░░████░░░ * * ░░██░░██░░░████░░██░░░████░░░ * * ░░░░░░█████████░░█████████░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * *********************************/ pragma solidity ^0.8.6; import { INounsSeeder } from './INounsSeeder.sol'; interface INounsDescriptor { event PartsLocked(); event DataURIToggled(bool enabled); event BaseURIUpdated(string baseURI); function arePartsLocked() external returns (bool); function isDataURIEnabled() external returns (bool); function baseURI() external returns (string memory); function palettes(uint8 paletteIndex, uint256 colorIndex) external view returns (string memory); function backgrounds(uint256 index) external view returns (string memory); function bodies(uint256 index) external view returns (bytes memory); function accessories(uint256 index) external view returns (bytes memory); function heads(uint256 index) external view returns (bytes memory); function glasses(uint256 index) external view returns (bytes memory); function backgroundCount() external view returns (uint256); function bodyCount() external view returns (uint256); function accessoryCount() external view returns (uint256); function headCount() external view returns (uint256); function glassesCount() external view returns (uint256); function addManyColorsToPalette(uint8 paletteIndex, string[] calldata newColors) external; function addManyBackgrounds(string[] calldata backgrounds) external; function addManyBodies(bytes[] calldata bodies) external; function addManyAccessories(bytes[] calldata accessories) external; function addManyHeads(bytes[] calldata heads) external; function addManyGlasses(bytes[] calldata glasses) external; function addColorToPalette(uint8 paletteIndex, string calldata color) external; function addBackground(string calldata background) external; function addBody(bytes calldata body) external; function addAccessory(bytes calldata accessory) external; function addHead(bytes calldata head) external; function addGlasses(bytes calldata glasses) external; function lockParts() external; function toggleDataURIEnabled() external; function setBaseURI(string calldata baseURI) external; function tokenURI(uint256 tokenId, INounsSeeder.Seed memory seed) external view returns (string memory); function dataURI(uint256 tokenId, INounsSeeder.Seed memory seed) external view returns (string memory); function genericDataURI( string calldata name, string calldata description, INounsSeeder.Seed memory seed ) external view returns (string memory); function generateSVGImage(INounsSeeder.Seed memory seed) external view returns (string memory); }
// SPDX-License-Identifier: GPL-3.0 /// @title Interface for NounsSeeder /********************************* * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░█████████░░█████████░░░ * * ░░░░░░██░░░████░░██░░░████░░░ * * ░░██████░░░████████░░░████░░░ * * ░░██░░██░░░████░░██░░░████░░░ * * ░░██░░██░░░████░░██░░░████░░░ * * ░░░░░░█████████░░█████████░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * *********************************/ pragma solidity ^0.8.6; import { INounsDescriptor } from './INounsDescriptor.sol'; interface INounsSeeder { struct Seed { uint48 background; uint48 body; uint48 accessory; uint48 head; uint48 glasses; } function generateSeed(uint256 nounId, INounsDescriptor descriptor) external view returns (Seed memory); }
{ "evmVersion": "berlin", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": false, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract INounsDescriptor","name":"_descriptor","type":"address"},{"internalType":"contract IENSReverseRecords","name":"_reverseRecords","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"uint48","name":"background","type":"uint48"},{"internalType":"uint48","name":"body","type":"uint48"},{"internalType":"uint48","name":"accessory","type":"uint48"},{"internalType":"uint48","name":"head","type":"uint48"},{"internalType":"uint48","name":"glasses","type":"uint48"}],"indexed":false,"internalType":"struct INounsSeeder.Seed","name":"seed","type":"tuple"}],"name":"NounCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addressPreview","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"descriptor","outputs":[{"internalType":"contract INounsDescriptor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getSeedInput","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reverseRecords","outputs":[{"internalType":"contract IENSReverseRecords","name":"","type":"address"}],"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":"uint256","name":"","type":"uint256"}],"name":"seeds","outputs":[{"internalType":"uint48","name":"background","type":"uint48"},{"internalType":"uint48","name":"body","type":"uint48"},{"internalType":"uint48","name":"accessory","type":"uint48"},{"internalType":"uint48","name":"head","type":"uint48"},{"internalType":"uint48","name":"glasses","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[{"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"}]
Contract Creation Code
60806040526001600b553480156200001657600080fd5b50604051620043493803806200434983398181016040528101906200003c919062000244565b6040518060400160405280600f81526020017f53796e746865746963204e6f756e7300000000000000000000000000000000008152506040518060400160405280600581526020017f734e4f554e0000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c092919062000166565b508060019080519060200190620000d992919062000166565b50505081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000385565b8280546200017490620002e7565b90600052602060002090601f016020900481019282620001985760008555620001e4565b82601f10620001b357805160ff1916838001178555620001e4565b82800160010185558215620001e4579182015b82811115620001e3578251825591602001919060010190620001c6565b5b509050620001f39190620001f7565b5090565b5b8082111562000212576000816000905550600101620001f8565b5090565b600081519050620002278162000351565b92915050565b6000815190506200023e816200036b565b92915050565b600080604083850312156200025e576200025d6200034c565b5b60006200026e858286016200022d565b9250506020620002818582860162000216565b9150509250929050565b60006200029882620002c7565b9050919050565b6000620002ac826200028b565b9050919050565b6000620002c0826200028b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200030057607f821691505b602082108114156200031757620003166200031d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6200035c816200029f565b81146200036857600080fd5b50565b6200037681620002b3565b81146200038257600080fd5b50565b613fb480620003956000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80634e71d92d116100b8578063b88d4fde1161007c578063b88d4fde14610362578063c87b56dd1461037e578063c884ef83146103ae578063e9300f04146103de578063e985e9c51461040e578063f0503e801461043e57610137565b80634e71d92d146102aa5780636352211e146102c857806370a08231146102f857806395d89b4114610328578063a22cb4651461034657610137565b806323b872dd116100ff57806323b872dd146102065780632eb7452c14610222578063303e74df146102525780633991edb81461027057806342842e0e1461028e57610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba5780631ee304a0146101d6575b600080fd5b61015660048036038101906101519190612aac565b610472565b604051610163919061319c565b60405180910390f35b610174610554565b60405161018191906131ed565b60405180910390f35b6101a4600480360381019061019f9190612b4f565b6105e6565b6040516101b19190613113565b60405180910390f35b6101d460048036038101906101cf9190612a23565b61062c565b005b6101f060048036038101906101eb9190612b4f565b610744565b6040516101fd9190613113565b60405180910390f35b610220600480360381019061021b919061290d565b610777565b005b61023c600480360381019061023791906128a0565b6107d7565b60405161024991906131ed565b60405180910390f35b61025a6108a0565b60405161026791906131d2565b60405180910390f35b6102786108c6565b60405161028591906131b7565b60405180910390f35b6102a860048036038101906102a3919061290d565b6108ec565b005b6102b261090c565b6040516102bf919061342f565b60405180910390f35b6102e260048036038101906102dd9190612b4f565b610a70565b6040516102ef9190613113565b60405180910390f35b610312600480360381019061030d91906128a0565b610b22565b60405161031f919061342f565b60405180910390f35b610330610bda565b60405161033d91906131ed565b60405180910390f35b610360600480360381019061035b91906129e3565b610c6c565b005b61037c60048036038101906103779190612960565b610c82565b005b61039860048036038101906103939190612b4f565b610ce4565b6040516103a591906131ed565b60405180910390f35b6103c860048036038101906103c391906128a0565b610efc565b6040516103d5919061319c565b60405180910390f35b6103f860048036038101906103f391906128a0565b610f1c565b604051610405919061342f565b60405180910390f35b610428600480360381019061042391906128cd565b610f4f565b604051610435919061319c565b60405180910390f35b61045860048036038101906104539190612b4f565b610fe3565b60405161046995949392919061344a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061053d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061054d575061054c82611073565b5b9050919050565b6060600080546105639061382d565b80601f016020809104026020016040519081016040528092919081815260200182805461058f9061382d565b80156105dc5780601f106105b1576101008083540402835291602001916105dc565b820191906000526020600020905b8154815290600101906020018083116105bf57829003601f168201915b5050505050905090565b60006105f1826110dd565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061063782610a70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069f906133d4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106c7611128565b73ffffffffffffffffffffffffffffffffffffffff1614806106f657506106f5816106f0611128565b610f4f565b5b610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90613374565b60405180910390fd5b61073f8383611130565b505050565b600a6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610788610782611128565b826111e9565b6107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be906133f4565b60405180910390fd5b6107d283838361127e565b505050565b6060600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632ea0430061082861082385610f1c565b6114e5565b6040518263ffffffff1660e01b81526004016108449190613414565b60006040518083038186803b15801561085c57600080fd5b505afa158015610870573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906108999190612b06565b9050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61090783838360405180602001604052806000815250610c82565b505050565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290613334565b60405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600b6000815480929190610a0890613912565b91905055905033600a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610a6a33826118eb565b91505090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b10906133b4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90613314565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610be99061382d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c159061382d565b8015610c625780601f10610c3757610100808354040283529160200191610c62565b820191906000526020600020905b815481529060010190602001808311610c4557829003601f168201915b5050505050905090565b610c7e610c77611128565b8383611b20565b5050565b610c93610c8d611128565b836111e9565b610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906133f4565b60405180910390fd5b610cde84848484611c8d565b50505050565b6060610cef82611ce9565b610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590613354565b60405180910390fd5b6000610d3983611d55565b9050600081604051602001610d4e91906130ac565b60405160208183030381529060405290506000610d9d600a600087815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611eb6565b9050600080825114610daf5781610e02565b610e01600a600088815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612028565b5b905060008482604051602001610e199291906130ce565b6040516020818303038152906040529050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166387db11bd8583600860008c81526020019081526020016000206040518463ffffffff1660e01b8152600401610e9b9392919061320f565b60006040518083038186803b158015610eb357600080fd5b505afa158015610ec7573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610ef09190612b06565b95505050505050919050565b60096020528060005260406000206000915054906101000a900460ff1681565b600081604051602001610f2f9190613091565b6040516020818303038152906040528051906020012060001c9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60086020528060005260406000206000915090508060000160009054906101000a900465ffffffffffff16908060000160069054906101000a900465ffffffffffff169080600001600c9054906101000a900465ffffffffffff16908060000160129054906101000a900465ffffffffffff16908060000160189054906101000a900465ffffffffffff16905085565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6110e681611ce9565b611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c906133b4565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111a383610a70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806111f583610a70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061123757506112368185610f4f565b5b8061127557508373ffffffffffffffffffffffffffffffffffffffff1661125d846105e6565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661129e82610a70565b73ffffffffffffffffffffffffffffffffffffffff16146112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90613294565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b906132d4565b60405180910390fd5b61136f838383612055565b61137a600082611130565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ca91906136ad565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142191906135cc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114e083838361205a565b505050565b6114ed61262f565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634531c0a86040518163ffffffff1660e01b815260040160206040518083038186803b15801561155757600080fd5b505afa15801561156b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158f9190612b7c565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663eba818066040518163ffffffff1660e01b815260040160206040518083038186803b1580156115fb57600080fd5b505afa15801561160f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116339190612b7c565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634daebac26040518163ffffffff1660e01b815260040160206040518083038186803b15801561169f57600080fd5b505afa1580156116b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d79190612b7c565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc2aa0916040518163ffffffff1660e01b815260040160206040518083038186803b15801561174357600080fd5b505afa158015611757573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177b9190612b7c565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634479cef26040518163ffffffff1660e01b815260040160206040518083038186803b1580156117e757600080fd5b505afa1580156117fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181f9190612b7c565b90506040518060a00160405280868965ffffffffffff16611840919061397f565b65ffffffffffff1681526020018560308a901c65ffffffffffff16611865919061397f565b65ffffffffffff1681526020018460608a901c65ffffffffffff1661188a919061397f565b65ffffffffffff1681526020018360908a901c65ffffffffffff166118af919061397f565b65ffffffffffff1681526020018260c08a901c65ffffffffffff166118d4919061397f565b65ffffffffffff1681525095505050505050919050565b6000806118ff6118fa85610f1c565b6114e5565b6008600085815260200190815260200160002060008201518160000160006101000a81548165ffffffffffff021916908365ffffffffffff16021790555060208201518160000160066101000a81548165ffffffffffff021916908365ffffffffffff160217905550604082015181600001600c6101000a81548165ffffffffffff021916908365ffffffffffff16021790555060608201518160000160126101000a81548165ffffffffffff021916908365ffffffffffff16021790555060808201518160000160186101000a81548165ffffffffffff021916908365ffffffffffff16021790555090506040518060a00160405290816000820160009054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020016000820160069054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff16815260200160008201600c9054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020016000820160129054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020016000820160189054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff16815250509050611ade848461205f565b827f1106ee9d020bfbb5ee34cf5535a5fbf024a011bd130078088cbf124ab309247882604051611b0e9190613414565b60405180910390a28291505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b86906132f4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c80919061319c565b60405180910390a3505050565b611c9884848461127e565b611ca484848484612239565b611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90613274565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415611d9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611eb1565b600082905060005b60008214611dcf578080611db890613912565b915050600a82611dc89190613622565b9150611da5565b60008167ffffffffffffffff811115611deb57611dea613a6c565b5b6040519080825280601f01601f191660200182016040528015611e1d5781602001600182028036833780820191505090505b5090505b60008514611eaa57600182611e3691906136ad565b9150600a85611e45919061397f565b6030611e5191906135cc565b60f81b818381518110611e6757611e66613a3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ea39190613622565b9450611e21565b8093505050505b919050565b60606000600167ffffffffffffffff811115611ed557611ed4613a6c565b5b604051908082528060200260200182016040528015611f035781602001602082028036833780820191505090505b5090508281600081518110611f1b57611f1a613a3d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cbf8b66c826040518263ffffffff1660e01b8152600401611fb0919061317a565b60006040518083038186803b158015611fc857600080fd5b505afa158015611fdc573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906120059190612a63565b60008151811061201857612017613a3d565b5b6020026020010151915050919050565b606061204e8273ffffffffffffffffffffffffffffffffffffffff16601460ff166123d0565b9050919050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690613394565b60405180910390fd5b6120d881611ce9565b15612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f906132b4565b60405180910390fd5b61212460008383612055565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461217491906135cc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122356000838361205a565b5050565b600061225a8473ffffffffffffffffffffffffffffffffffffffff1661260c565b156123c3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612283611128565b8786866040518563ffffffff1660e01b81526004016122a5949392919061312e565b602060405180830381600087803b1580156122bf57600080fd5b505af19250505080156122f057506040513d601f19601f820116820180604052508101906122ed9190612ad9565b60015b612373573d8060008114612320576040519150601f19603f3d011682016040523d82523d6000602084013e612325565b606091505b5060008151141561236b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236290613274565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123c8565b600190505b949350505050565b6060600060028360026123e39190613653565b6123ed91906135cc565b67ffffffffffffffff81111561240657612405613a6c565b5b6040519080825280601f01601f1916602001820160405280156124385781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106124705761246f613a3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106124d4576124d3613a3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026125149190613653565b61251e91906135cc565b90505b60018111156125be577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106125605761255f613a3d565b5b1a60f81b82828151811061257757612576613a3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806125b790613803565b9050612521565b5060008414612602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f990613254565b60405180910390fd5b8091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060a00160405280600065ffffffffffff168152602001600065ffffffffffff168152602001600065ffffffffffff168152602001600065ffffffffffff168152602001600065ffffffffffff1681525090565b6000612699612694846134c2565b61349d565b905080838252602082019050828560208602820111156126bc576126bb613aa0565b5b60005b8581101561270a57815167ffffffffffffffff8111156126e2576126e1613a9b565b5b8086016126ef8982612848565b855260208501945060208401935050506001810190506126bf565b5050509392505050565b6000612727612722846134ee565b61349d565b90508281526020810184848401111561274357612742613aa5565b5b61274e8482856137c1565b509392505050565b60006127696127648461351f565b61349d565b90508281526020810184848401111561278557612784613aa5565b5b6127908482856137d0565b509392505050565b6000813590506127a781613f22565b92915050565b600082601f8301126127c2576127c1613a9b565b5b81516127d2848260208601612686565b91505092915050565b6000813590506127ea81613f39565b92915050565b6000813590506127ff81613f50565b92915050565b60008151905061281481613f50565b92915050565b600082601f83011261282f5761282e613a9b565b5b813561283f848260208601612714565b91505092915050565b600082601f83011261285d5761285c613a9b565b5b815161286d848260208601612756565b91505092915050565b60008135905061288581613f67565b92915050565b60008151905061289a81613f67565b92915050565b6000602082840312156128b6576128b5613aaf565b5b60006128c484828501612798565b91505092915050565b600080604083850312156128e4576128e3613aaf565b5b60006128f285828601612798565b925050602061290385828601612798565b9150509250929050565b60008060006060848603121561292657612925613aaf565b5b600061293486828701612798565b935050602061294586828701612798565b925050604061295686828701612876565b9150509250925092565b6000806000806080858703121561297a57612979613aaf565b5b600061298887828801612798565b945050602061299987828801612798565b93505060406129aa87828801612876565b925050606085013567ffffffffffffffff8111156129cb576129ca613aaa565b5b6129d78782880161281a565b91505092959194509250565b600080604083850312156129fa576129f9613aaf565b5b6000612a0885828601612798565b9250506020612a19858286016127db565b9150509250929050565b60008060408385031215612a3a57612a39613aaf565b5b6000612a4885828601612798565b9250506020612a5985828601612876565b9150509250929050565b600060208284031215612a7957612a78613aaf565b5b600082015167ffffffffffffffff811115612a9757612a96613aaa565b5b612aa3848285016127ad565b91505092915050565b600060208284031215612ac257612ac1613aaf565b5b6000612ad0848285016127f0565b91505092915050565b600060208284031215612aef57612aee613aaf565b5b6000612afd84828501612805565b91505092915050565b600060208284031215612b1c57612b1b613aaf565b5b600082015167ffffffffffffffff811115612b3a57612b39613aaa565b5b612b4684828501612848565b91505092915050565b600060208284031215612b6557612b64613aaf565b5b6000612b7384828501612876565b91505092915050565b600060208284031215612b9257612b91613aaf565b5b6000612ba08482850161288b565b91505092915050565b6000612bb58383612bc1565b60208301905092915050565b612bca816136f3565b82525050565b612bd9816136f3565b82525050565b612bf0612beb826136f3565b61395b565b82525050565b6000612c0182613560565b612c0b818561358e565b9350612c1683613550565b8060005b83811015612c47578151612c2e8882612ba9565b9750612c3983613581565b925050600181019050612c1a565b5085935050505092915050565b612c5d81613705565b82525050565b6000612c6e8261356b565b612c78818561359f565b9350612c888185602086016137d0565b612c9181613ab4565b840191505092915050565b612ca581613779565b82525050565b612cb48161379d565b82525050565b6000612cc582613576565b612ccf81856135b0565b9350612cdf8185602086016137d0565b612ce881613ab4565b840191505092915050565b6000612cfe82613576565b612d0881856135c1565b9350612d188185602086016137d0565b80840191505092915050565b6000612d316020836135b0565b9150612d3c82613b13565b602082019050919050565b6000612d546032836135b0565b9150612d5f82613b3c565b604082019050919050565b6000612d776025836135b0565b9150612d8282613b8b565b604082019050919050565b6000612d9a601c836135b0565b9150612da582613bda565b602082019050919050565b6000612dbd6024836135b0565b9150612dc882613c03565b604082019050919050565b6000612de06019836135b0565b9150612deb82613c52565b602082019050919050565b6000612e036029836135b0565b9150612e0e82613c7b565b604082019050919050565b6000612e266014836135b0565b9150612e3182613cca565b602082019050919050565b6000612e49602b836135b0565b9150612e5482613cf3565b604082019050919050565b6000612e6c603e836135b0565b9150612e7782613d42565b604082019050919050565b6000612e8f6020836135b0565b9150612e9a82613d91565b602082019050919050565b6000612eb2600f836135c1565b9150612ebd82613dba565b600f82019050919050565b6000612ed56018836135b0565b9150612ee082613de3565b602082019050919050565b6000612ef86021836135b0565b9150612f0382613e0c565b604082019050919050565b6000612f1b6015836135c1565b9150612f2682613e5b565b601582019050919050565b6000612f3e602e836135b0565b9150612f4982613e84565b604082019050919050565b6000612f616028836135c1565b9150612f6c82613ed3565b602882019050919050565b60a082016000820151612f8d6000850182613073565b506020820151612fa06020850182613073565b506040820151612fb36040850182613073565b506060820151612fc66060850182613073565b506080820151612fd96080850182613073565b50505050565b60a082016000808301549050612ff48161385f565b6130016000860182613073565b5061300b816138c7565b6130186020860182613073565b5061302281613879565b61302f6040860182613073565b5061303981613893565b6130466060860182613073565b50613050816138ad565b61305d6080860182613073565b5050505050565b61306d8161375d565b82525050565b61307c81613767565b82525050565b61308b81613767565b82525050565b600061309d8284612bdf565b60148201915081905092915050565b60006130b782612ea5565b91506130c38284612cf3565b915081905092915050565b60006130d982612ea5565b91506130e58285612cf3565b91506130f082612f0e565b91506130fc8284612cf3565b915061310782612f54565b91508190509392505050565b60006020820190506131286000830184612bd0565b92915050565b60006080820190506131436000830187612bd0565b6131506020830186612bd0565b61315d6040830185613064565b818103606083015261316f8184612c63565b905095945050505050565b600060208201905081810360008301526131948184612bf6565b905092915050565b60006020820190506131b16000830184612c54565b92915050565b60006020820190506131cc6000830184612c9c565b92915050565b60006020820190506131e76000830184612cab565b92915050565b600060208201905081810360008301526132078184612cba565b905092915050565b600060e08201905081810360008301526132298186612cba565b9050818103602083015261323d8185612cba565b905061324c6040830184612fdf565b949350505050565b6000602082019050818103600083015261326d81612d24565b9050919050565b6000602082019050818103600083015261328d81612d47565b9050919050565b600060208201905081810360008301526132ad81612d6a565b9050919050565b600060208201905081810360008301526132cd81612d8d565b9050919050565b600060208201905081810360008301526132ed81612db0565b9050919050565b6000602082019050818103600083015261330d81612dd3565b9050919050565b6000602082019050818103600083015261332d81612df6565b9050919050565b6000602082019050818103600083015261334d81612e19565b9050919050565b6000602082019050818103600083015261336d81612e3c565b9050919050565b6000602082019050818103600083015261338d81612e5f565b9050919050565b600060208201905081810360008301526133ad81612e82565b9050919050565b600060208201905081810360008301526133cd81612ec8565b9050919050565b600060208201905081810360008301526133ed81612eeb565b9050919050565b6000602082019050818103600083015261340d81612f31565b9050919050565b600060a0820190506134296000830184612f77565b92915050565b60006020820190506134446000830184613064565b92915050565b600060a08201905061345f6000830188613082565b61346c6020830187613082565b6134796040830186613082565b6134866060830185613082565b6134936080830184613082565b9695505050505050565b60006134a76134b8565b90506134b382826138e1565b919050565b6000604051905090565b600067ffffffffffffffff8211156134dd576134dc613a6c565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561350957613508613a6c565b5b61351282613ab4565b9050602081019050919050565b600067ffffffffffffffff82111561353a57613539613a6c565b5b61354382613ab4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135d78261375d565b91506135e28361375d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613617576136166139b0565b5b828201905092915050565b600061362d8261375d565b91506136388361375d565b925082613648576136476139df565b5b828204905092915050565b600061365e8261375d565b91506136698361375d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136a2576136a16139b0565b5b828202905092915050565b60006136b88261375d565b91506136c38361375d565b9250828210156136d6576136d56139b0565b5b828203905092915050565b600065ffffffffffff82169050919050565b60006136fe8261373d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600065ffffffffffff82169050919050565b60006137848261378b565b9050919050565b60006137968261373d565b9050919050565b60006137a8826137af565b9050919050565b60006137ba8261373d565b9050919050565b82818337600083830152505050565b60005b838110156137ee5780820151818401526020810190506137d3565b838111156137fd576000848401525b50505050565b600061380e8261375d565b91506000821415613822576138216139b0565b5b600182039050919050565b6000600282049050600182168061384557607f821691505b6020821081141561385957613858613a0e565b5b50919050565b600061387261386d83613ad2565b6136e1565b9050919050565b600061388c61388783613b06565b6136e1565b9050919050565b60006138a66138a183613adf565b6136e1565b9050919050565b60006138c06138bb83613aec565b6136e1565b9050919050565b60006138da6138d583613af9565b6136e1565b9050919050565b6138ea82613ab4565b810181811067ffffffffffffffff8211171561390957613908613a6c565b5b80604052505050565b600061391d8261375d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139505761394f6139b0565b5b600182019050919050565b60006139668261396d565b9050919050565b600061397882613ac5565b9050919050565b600061398a8261375d565b91506139958361375d565b9250826139a5576139a46139df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160001c9050919050565b60008160901c9050919050565b60008160c01c9050919050565b60008160301c9050919050565b60008160601c9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4e6f756e20616c726561647920636c61696d6564000000000000000000000000600082015250565b7f4e6f756e73546f6b656e3a2055524920717565727920666f72206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53796e746865746963204e6f756e200000000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f20636c61696d656420627920616464726573732c200000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f2c2069732061206d656d626572206f66207468652053796e746865746963204e60008201527f6f756e732044414f000000000000000000000000000000000000000000000000602082015250565b613f2b816136f3565b8114613f3657600080fd5b50565b613f4281613705565b8114613f4d57600080fd5b50565b613f5981613711565b8114613f6457600080fd5b50565b613f708161375d565b8114613f7b57600080fd5b5056fea264697066735822122001b8a07b9cd517c2c0047c4aff922000aaf3b7c9bec0ca0bbed92cf9ff931a7464736f6c634300080600330000000000000000000000000cfdb3ba1694c2bb2cfacb0339ad7b1ae5932b630000000000000000000000003671ae578e63fdf66ad4f3e12cc0c0d71ac7510c
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80634e71d92d116100b8578063b88d4fde1161007c578063b88d4fde14610362578063c87b56dd1461037e578063c884ef83146103ae578063e9300f04146103de578063e985e9c51461040e578063f0503e801461043e57610137565b80634e71d92d146102aa5780636352211e146102c857806370a08231146102f857806395d89b4114610328578063a22cb4651461034657610137565b806323b872dd116100ff57806323b872dd146102065780632eb7452c14610222578063303e74df146102525780633991edb81461027057806342842e0e1461028e57610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba5780631ee304a0146101d6575b600080fd5b61015660048036038101906101519190612aac565b610472565b604051610163919061319c565b60405180910390f35b610174610554565b60405161018191906131ed565b60405180910390f35b6101a4600480360381019061019f9190612b4f565b6105e6565b6040516101b19190613113565b60405180910390f35b6101d460048036038101906101cf9190612a23565b61062c565b005b6101f060048036038101906101eb9190612b4f565b610744565b6040516101fd9190613113565b60405180910390f35b610220600480360381019061021b919061290d565b610777565b005b61023c600480360381019061023791906128a0565b6107d7565b60405161024991906131ed565b60405180910390f35b61025a6108a0565b60405161026791906131d2565b60405180910390f35b6102786108c6565b60405161028591906131b7565b60405180910390f35b6102a860048036038101906102a3919061290d565b6108ec565b005b6102b261090c565b6040516102bf919061342f565b60405180910390f35b6102e260048036038101906102dd9190612b4f565b610a70565b6040516102ef9190613113565b60405180910390f35b610312600480360381019061030d91906128a0565b610b22565b60405161031f919061342f565b60405180910390f35b610330610bda565b60405161033d91906131ed565b60405180910390f35b610360600480360381019061035b91906129e3565b610c6c565b005b61037c60048036038101906103779190612960565b610c82565b005b61039860048036038101906103939190612b4f565b610ce4565b6040516103a591906131ed565b60405180910390f35b6103c860048036038101906103c391906128a0565b610efc565b6040516103d5919061319c565b60405180910390f35b6103f860048036038101906103f391906128a0565b610f1c565b604051610405919061342f565b60405180910390f35b610428600480360381019061042391906128cd565b610f4f565b604051610435919061319c565b60405180910390f35b61045860048036038101906104539190612b4f565b610fe3565b60405161046995949392919061344a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061053d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061054d575061054c82611073565b5b9050919050565b6060600080546105639061382d565b80601f016020809104026020016040519081016040528092919081815260200182805461058f9061382d565b80156105dc5780601f106105b1576101008083540402835291602001916105dc565b820191906000526020600020905b8154815290600101906020018083116105bf57829003601f168201915b5050505050905090565b60006105f1826110dd565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061063782610a70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069f906133d4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106c7611128565b73ffffffffffffffffffffffffffffffffffffffff1614806106f657506106f5816106f0611128565b610f4f565b5b610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90613374565b60405180910390fd5b61073f8383611130565b505050565b600a6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610788610782611128565b826111e9565b6107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be906133f4565b60405180910390fd5b6107d283838361127e565b505050565b6060600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632ea0430061082861082385610f1c565b6114e5565b6040518263ffffffff1660e01b81526004016108449190613414565b60006040518083038186803b15801561085c57600080fd5b505afa158015610870573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906108999190612b06565b9050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61090783838360405180602001604052806000815250610c82565b505050565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290613334565b60405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600b6000815480929190610a0890613912565b91905055905033600a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610a6a33826118eb565b91505090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b10906133b4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90613314565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610be99061382d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c159061382d565b8015610c625780601f10610c3757610100808354040283529160200191610c62565b820191906000526020600020905b815481529060010190602001808311610c4557829003601f168201915b5050505050905090565b610c7e610c77611128565b8383611b20565b5050565b610c93610c8d611128565b836111e9565b610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906133f4565b60405180910390fd5b610cde84848484611c8d565b50505050565b6060610cef82611ce9565b610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590613354565b60405180910390fd5b6000610d3983611d55565b9050600081604051602001610d4e91906130ac565b60405160208183030381529060405290506000610d9d600a600087815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611eb6565b9050600080825114610daf5781610e02565b610e01600a600088815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612028565b5b905060008482604051602001610e199291906130ce565b6040516020818303038152906040529050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166387db11bd8583600860008c81526020019081526020016000206040518463ffffffff1660e01b8152600401610e9b9392919061320f565b60006040518083038186803b158015610eb357600080fd5b505afa158015610ec7573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610ef09190612b06565b95505050505050919050565b60096020528060005260406000206000915054906101000a900460ff1681565b600081604051602001610f2f9190613091565b6040516020818303038152906040528051906020012060001c9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60086020528060005260406000206000915090508060000160009054906101000a900465ffffffffffff16908060000160069054906101000a900465ffffffffffff169080600001600c9054906101000a900465ffffffffffff16908060000160129054906101000a900465ffffffffffff16908060000160189054906101000a900465ffffffffffff16905085565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6110e681611ce9565b611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c906133b4565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111a383610a70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806111f583610a70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061123757506112368185610f4f565b5b8061127557508373ffffffffffffffffffffffffffffffffffffffff1661125d846105e6565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661129e82610a70565b73ffffffffffffffffffffffffffffffffffffffff16146112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90613294565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b906132d4565b60405180910390fd5b61136f838383612055565b61137a600082611130565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ca91906136ad565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142191906135cc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114e083838361205a565b505050565b6114ed61262f565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634531c0a86040518163ffffffff1660e01b815260040160206040518083038186803b15801561155757600080fd5b505afa15801561156b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158f9190612b7c565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663eba818066040518163ffffffff1660e01b815260040160206040518083038186803b1580156115fb57600080fd5b505afa15801561160f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116339190612b7c565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634daebac26040518163ffffffff1660e01b815260040160206040518083038186803b15801561169f57600080fd5b505afa1580156116b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d79190612b7c565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc2aa0916040518163ffffffff1660e01b815260040160206040518083038186803b15801561174357600080fd5b505afa158015611757573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177b9190612b7c565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634479cef26040518163ffffffff1660e01b815260040160206040518083038186803b1580156117e757600080fd5b505afa1580156117fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181f9190612b7c565b90506040518060a00160405280868965ffffffffffff16611840919061397f565b65ffffffffffff1681526020018560308a901c65ffffffffffff16611865919061397f565b65ffffffffffff1681526020018460608a901c65ffffffffffff1661188a919061397f565b65ffffffffffff1681526020018360908a901c65ffffffffffff166118af919061397f565b65ffffffffffff1681526020018260c08a901c65ffffffffffff166118d4919061397f565b65ffffffffffff1681525095505050505050919050565b6000806118ff6118fa85610f1c565b6114e5565b6008600085815260200190815260200160002060008201518160000160006101000a81548165ffffffffffff021916908365ffffffffffff16021790555060208201518160000160066101000a81548165ffffffffffff021916908365ffffffffffff160217905550604082015181600001600c6101000a81548165ffffffffffff021916908365ffffffffffff16021790555060608201518160000160126101000a81548165ffffffffffff021916908365ffffffffffff16021790555060808201518160000160186101000a81548165ffffffffffff021916908365ffffffffffff16021790555090506040518060a00160405290816000820160009054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020016000820160069054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff16815260200160008201600c9054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020016000820160129054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020016000820160189054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff16815250509050611ade848461205f565b827f1106ee9d020bfbb5ee34cf5535a5fbf024a011bd130078088cbf124ab309247882604051611b0e9190613414565b60405180910390a28291505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b86906132f4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c80919061319c565b60405180910390a3505050565b611c9884848461127e565b611ca484848484612239565b611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90613274565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415611d9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611eb1565b600082905060005b60008214611dcf578080611db890613912565b915050600a82611dc89190613622565b9150611da5565b60008167ffffffffffffffff811115611deb57611dea613a6c565b5b6040519080825280601f01601f191660200182016040528015611e1d5781602001600182028036833780820191505090505b5090505b60008514611eaa57600182611e3691906136ad565b9150600a85611e45919061397f565b6030611e5191906135cc565b60f81b818381518110611e6757611e66613a3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ea39190613622565b9450611e21565b8093505050505b919050565b60606000600167ffffffffffffffff811115611ed557611ed4613a6c565b5b604051908082528060200260200182016040528015611f035781602001602082028036833780820191505090505b5090508281600081518110611f1b57611f1a613a3d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cbf8b66c826040518263ffffffff1660e01b8152600401611fb0919061317a565b60006040518083038186803b158015611fc857600080fd5b505afa158015611fdc573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906120059190612a63565b60008151811061201857612017613a3d565b5b6020026020010151915050919050565b606061204e8273ffffffffffffffffffffffffffffffffffffffff16601460ff166123d0565b9050919050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690613394565b60405180910390fd5b6120d881611ce9565b15612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f906132b4565b60405180910390fd5b61212460008383612055565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461217491906135cc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122356000838361205a565b5050565b600061225a8473ffffffffffffffffffffffffffffffffffffffff1661260c565b156123c3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612283611128565b8786866040518563ffffffff1660e01b81526004016122a5949392919061312e565b602060405180830381600087803b1580156122bf57600080fd5b505af19250505080156122f057506040513d601f19601f820116820180604052508101906122ed9190612ad9565b60015b612373573d8060008114612320576040519150601f19603f3d011682016040523d82523d6000602084013e612325565b606091505b5060008151141561236b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236290613274565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123c8565b600190505b949350505050565b6060600060028360026123e39190613653565b6123ed91906135cc565b67ffffffffffffffff81111561240657612405613a6c565b5b6040519080825280601f01601f1916602001820160405280156124385781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106124705761246f613a3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106124d4576124d3613a3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026125149190613653565b61251e91906135cc565b90505b60018111156125be577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106125605761255f613a3d565b5b1a60f81b82828151811061257757612576613a3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806125b790613803565b9050612521565b5060008414612602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f990613254565b60405180910390fd5b8091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060a00160405280600065ffffffffffff168152602001600065ffffffffffff168152602001600065ffffffffffff168152602001600065ffffffffffff168152602001600065ffffffffffff1681525090565b6000612699612694846134c2565b61349d565b905080838252602082019050828560208602820111156126bc576126bb613aa0565b5b60005b8581101561270a57815167ffffffffffffffff8111156126e2576126e1613a9b565b5b8086016126ef8982612848565b855260208501945060208401935050506001810190506126bf565b5050509392505050565b6000612727612722846134ee565b61349d565b90508281526020810184848401111561274357612742613aa5565b5b61274e8482856137c1565b509392505050565b60006127696127648461351f565b61349d565b90508281526020810184848401111561278557612784613aa5565b5b6127908482856137d0565b509392505050565b6000813590506127a781613f22565b92915050565b600082601f8301126127c2576127c1613a9b565b5b81516127d2848260208601612686565b91505092915050565b6000813590506127ea81613f39565b92915050565b6000813590506127ff81613f50565b92915050565b60008151905061281481613f50565b92915050565b600082601f83011261282f5761282e613a9b565b5b813561283f848260208601612714565b91505092915050565b600082601f83011261285d5761285c613a9b565b5b815161286d848260208601612756565b91505092915050565b60008135905061288581613f67565b92915050565b60008151905061289a81613f67565b92915050565b6000602082840312156128b6576128b5613aaf565b5b60006128c484828501612798565b91505092915050565b600080604083850312156128e4576128e3613aaf565b5b60006128f285828601612798565b925050602061290385828601612798565b9150509250929050565b60008060006060848603121561292657612925613aaf565b5b600061293486828701612798565b935050602061294586828701612798565b925050604061295686828701612876565b9150509250925092565b6000806000806080858703121561297a57612979613aaf565b5b600061298887828801612798565b945050602061299987828801612798565b93505060406129aa87828801612876565b925050606085013567ffffffffffffffff8111156129cb576129ca613aaa565b5b6129d78782880161281a565b91505092959194509250565b600080604083850312156129fa576129f9613aaf565b5b6000612a0885828601612798565b9250506020612a19858286016127db565b9150509250929050565b60008060408385031215612a3a57612a39613aaf565b5b6000612a4885828601612798565b9250506020612a5985828601612876565b9150509250929050565b600060208284031215612a7957612a78613aaf565b5b600082015167ffffffffffffffff811115612a9757612a96613aaa565b5b612aa3848285016127ad565b91505092915050565b600060208284031215612ac257612ac1613aaf565b5b6000612ad0848285016127f0565b91505092915050565b600060208284031215612aef57612aee613aaf565b5b6000612afd84828501612805565b91505092915050565b600060208284031215612b1c57612b1b613aaf565b5b600082015167ffffffffffffffff811115612b3a57612b39613aaa565b5b612b4684828501612848565b91505092915050565b600060208284031215612b6557612b64613aaf565b5b6000612b7384828501612876565b91505092915050565b600060208284031215612b9257612b91613aaf565b5b6000612ba08482850161288b565b91505092915050565b6000612bb58383612bc1565b60208301905092915050565b612bca816136f3565b82525050565b612bd9816136f3565b82525050565b612bf0612beb826136f3565b61395b565b82525050565b6000612c0182613560565b612c0b818561358e565b9350612c1683613550565b8060005b83811015612c47578151612c2e8882612ba9565b9750612c3983613581565b925050600181019050612c1a565b5085935050505092915050565b612c5d81613705565b82525050565b6000612c6e8261356b565b612c78818561359f565b9350612c888185602086016137d0565b612c9181613ab4565b840191505092915050565b612ca581613779565b82525050565b612cb48161379d565b82525050565b6000612cc582613576565b612ccf81856135b0565b9350612cdf8185602086016137d0565b612ce881613ab4565b840191505092915050565b6000612cfe82613576565b612d0881856135c1565b9350612d188185602086016137d0565b80840191505092915050565b6000612d316020836135b0565b9150612d3c82613b13565b602082019050919050565b6000612d546032836135b0565b9150612d5f82613b3c565b604082019050919050565b6000612d776025836135b0565b9150612d8282613b8b565b604082019050919050565b6000612d9a601c836135b0565b9150612da582613bda565b602082019050919050565b6000612dbd6024836135b0565b9150612dc882613c03565b604082019050919050565b6000612de06019836135b0565b9150612deb82613c52565b602082019050919050565b6000612e036029836135b0565b9150612e0e82613c7b565b604082019050919050565b6000612e266014836135b0565b9150612e3182613cca565b602082019050919050565b6000612e49602b836135b0565b9150612e5482613cf3565b604082019050919050565b6000612e6c603e836135b0565b9150612e7782613d42565b604082019050919050565b6000612e8f6020836135b0565b9150612e9a82613d91565b602082019050919050565b6000612eb2600f836135c1565b9150612ebd82613dba565b600f82019050919050565b6000612ed56018836135b0565b9150612ee082613de3565b602082019050919050565b6000612ef86021836135b0565b9150612f0382613e0c565b604082019050919050565b6000612f1b6015836135c1565b9150612f2682613e5b565b601582019050919050565b6000612f3e602e836135b0565b9150612f4982613e84565b604082019050919050565b6000612f616028836135c1565b9150612f6c82613ed3565b602882019050919050565b60a082016000820151612f8d6000850182613073565b506020820151612fa06020850182613073565b506040820151612fb36040850182613073565b506060820151612fc66060850182613073565b506080820151612fd96080850182613073565b50505050565b60a082016000808301549050612ff48161385f565b6130016000860182613073565b5061300b816138c7565b6130186020860182613073565b5061302281613879565b61302f6040860182613073565b5061303981613893565b6130466060860182613073565b50613050816138ad565b61305d6080860182613073565b5050505050565b61306d8161375d565b82525050565b61307c81613767565b82525050565b61308b81613767565b82525050565b600061309d8284612bdf565b60148201915081905092915050565b60006130b782612ea5565b91506130c38284612cf3565b915081905092915050565b60006130d982612ea5565b91506130e58285612cf3565b91506130f082612f0e565b91506130fc8284612cf3565b915061310782612f54565b91508190509392505050565b60006020820190506131286000830184612bd0565b92915050565b60006080820190506131436000830187612bd0565b6131506020830186612bd0565b61315d6040830185613064565b818103606083015261316f8184612c63565b905095945050505050565b600060208201905081810360008301526131948184612bf6565b905092915050565b60006020820190506131b16000830184612c54565b92915050565b60006020820190506131cc6000830184612c9c565b92915050565b60006020820190506131e76000830184612cab565b92915050565b600060208201905081810360008301526132078184612cba565b905092915050565b600060e08201905081810360008301526132298186612cba565b9050818103602083015261323d8185612cba565b905061324c6040830184612fdf565b949350505050565b6000602082019050818103600083015261326d81612d24565b9050919050565b6000602082019050818103600083015261328d81612d47565b9050919050565b600060208201905081810360008301526132ad81612d6a565b9050919050565b600060208201905081810360008301526132cd81612d8d565b9050919050565b600060208201905081810360008301526132ed81612db0565b9050919050565b6000602082019050818103600083015261330d81612dd3565b9050919050565b6000602082019050818103600083015261332d81612df6565b9050919050565b6000602082019050818103600083015261334d81612e19565b9050919050565b6000602082019050818103600083015261336d81612e3c565b9050919050565b6000602082019050818103600083015261338d81612e5f565b9050919050565b600060208201905081810360008301526133ad81612e82565b9050919050565b600060208201905081810360008301526133cd81612ec8565b9050919050565b600060208201905081810360008301526133ed81612eeb565b9050919050565b6000602082019050818103600083015261340d81612f31565b9050919050565b600060a0820190506134296000830184612f77565b92915050565b60006020820190506134446000830184613064565b92915050565b600060a08201905061345f6000830188613082565b61346c6020830187613082565b6134796040830186613082565b6134866060830185613082565b6134936080830184613082565b9695505050505050565b60006134a76134b8565b90506134b382826138e1565b919050565b6000604051905090565b600067ffffffffffffffff8211156134dd576134dc613a6c565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561350957613508613a6c565b5b61351282613ab4565b9050602081019050919050565b600067ffffffffffffffff82111561353a57613539613a6c565b5b61354382613ab4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135d78261375d565b91506135e28361375d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613617576136166139b0565b5b828201905092915050565b600061362d8261375d565b91506136388361375d565b925082613648576136476139df565b5b828204905092915050565b600061365e8261375d565b91506136698361375d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136a2576136a16139b0565b5b828202905092915050565b60006136b88261375d565b91506136c38361375d565b9250828210156136d6576136d56139b0565b5b828203905092915050565b600065ffffffffffff82169050919050565b60006136fe8261373d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600065ffffffffffff82169050919050565b60006137848261378b565b9050919050565b60006137968261373d565b9050919050565b60006137a8826137af565b9050919050565b60006137ba8261373d565b9050919050565b82818337600083830152505050565b60005b838110156137ee5780820151818401526020810190506137d3565b838111156137fd576000848401525b50505050565b600061380e8261375d565b91506000821415613822576138216139b0565b5b600182039050919050565b6000600282049050600182168061384557607f821691505b6020821081141561385957613858613a0e565b5b50919050565b600061387261386d83613ad2565b6136e1565b9050919050565b600061388c61388783613b06565b6136e1565b9050919050565b60006138a66138a183613adf565b6136e1565b9050919050565b60006138c06138bb83613aec565b6136e1565b9050919050565b60006138da6138d583613af9565b6136e1565b9050919050565b6138ea82613ab4565b810181811067ffffffffffffffff8211171561390957613908613a6c565b5b80604052505050565b600061391d8261375d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139505761394f6139b0565b5b600182019050919050565b60006139668261396d565b9050919050565b600061397882613ac5565b9050919050565b600061398a8261375d565b91506139958361375d565b9250826139a5576139a46139df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160001c9050919050565b60008160901c9050919050565b60008160c01c9050919050565b60008160301c9050919050565b60008160601c9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4e6f756e20616c726561647920636c61696d6564000000000000000000000000600082015250565b7f4e6f756e73546f6b656e3a2055524920717565727920666f72206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53796e746865746963204e6f756e200000000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f20636c61696d656420627920616464726573732c200000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f2c2069732061206d656d626572206f66207468652053796e746865746963204e60008201527f6f756e732044414f000000000000000000000000000000000000000000000000602082015250565b613f2b816136f3565b8114613f3657600080fd5b50565b613f4281613705565b8114613f4d57600080fd5b50565b613f5981613711565b8114613f6457600080fd5b50565b613f708161375d565b8114613f7b57600080fd5b5056fea264697066735822122001b8a07b9cd517c2c0047c4aff922000aaf3b7c9bec0ca0bbed92cf9ff931a7464736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000cfdb3ba1694c2bb2cfacb0339ad7b1ae5932b630000000000000000000000003671ae578e63fdf66ad4f3e12cc0c0d71ac7510c
-----Decoded View---------------
Arg [0] : _descriptor (address): 0x0Cfdb3Ba1694c2bb2CFACB0339ad7b1Ae5932B63
Arg [1] : _reverseRecords (address): 0x3671aE578E63FdF66ad4F3E12CC0c0d71Ac7510C
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000cfdb3ba1694c2bb2cfacb0339ad7b1ae5932b63
Arg [1] : 0000000000000000000000003671ae578e63fdf66ad4f3e12cc0c0d71ac7510c
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.