Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 CRIMES
Holders
215
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 CRIMESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Crimereports
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol"; import "./DefaultOperatorFilterer.sol"; interface IContraband { function balanceOf(address _address, uint256 _id) external view returns (uint256); function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) external; } contract Wardenlist is Ownable { address private SIGNER; mapping(bytes => uint256) private usedSignaturesCounter; mapping(uint256 => uint256) public celblocks; // ------------------ Public ------------------ // function checkWardenList(address _toCheck, bytes memory _sig) public { require(_recoverSigner(_toCheck,_sig) == SIGNER, "Not on allowlist"); require(usedSignaturesCounter[_sig]<2, "Signature used"); usedSignaturesCounter[_sig]++; } // ------------------ Internal ------------------ // function _recoverSigner(address _toCheck, bytes memory signature) internal pure returns (address) { bytes32 messageDigest = keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(_toCheck)) ) ); return ECDSA.recover(messageDigest, signature); } function setSigner (address _signer) external onlyOwner{ SIGNER= _signer; } } contract Crimereports is ERC721, Ownable, ReentrancyGuard, IERC1155Receiver, ERC2981, Wardenlist, DefaultOperatorFilterer { constructor() ERC721("Cel Mates Crime Reports", "CRIMES") { currentPhase = MintPhase.CLOSED; } using Strings for uint256; enum MintPhase { CLOSED, ALLOWLIST, PUBLIC } IContraband CONTRABAND; MintPhase public currentPhase; uint256 MAX_SUPPLY = 4207; uint256 MINT_SUPPLY = 4098; uint256 mintPrice = 333000000000000000; string public BASE_URI; uint256 public mintIndex; address private vault; address private nsAddress; bool private uriMode; // ------------------ External ------------------ // function claim( uint256 _celblock, uint256 _amount, bytes memory _signature ) external payable nonReentrant { require(currentPhase != MintPhase.CLOSED, "Not opened"); require(mintIndex + _amount <= MINT_SUPPLY, "Max reached"); require(_celblock < 5, "0-4"); require(_amount < 3, "1 or 2"); require(msg.value == mintPrice * _amount, "Not exact ETH"); for (uint256 i = 0; i < _amount; i++) { if (currentPhase != MintPhase.PUBLIC) { Wardenlist.checkWardenList(msg.sender, _signature); } uint256 celmate_id = mintIndex; _safeMint(msg.sender, celmate_id); celblocks[celmate_id] = _celblock; mintIndex++; } } function claimKey(uint256 _celblock) external nonReentrant { require(currentPhase != MintPhase.CLOSED, "Not opened"); require(mintIndex < MAX_SUPPLY, "Max reached"); require(_celblock < 6, "1-5"); require(CONTRABAND.balanceOf(msg.sender, 0) > 0, "You don't own a key"); CONTRABAND.safeTransferFrom(msg.sender, address(this), 0, 1, ""); uint256 celmate_id = mintIndex; _safeMint(msg.sender, celmate_id); celblocks[celmate_id] = _celblock; mintIndex++; } // ------------------ Public ------------------ // function tokenURI(uint256 _celId) public view virtual override returns (string memory) { require(_exists(_celId)); return string( uriMode ? abi.encodePacked( BASE_URI, celblocks[_celId].toString() ) : abi.encodePacked( BASE_URI, _celId.toString() ) ); } function onERC1155Received( address, address, uint256, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155Received.selector; } function onERC1155BatchReceived( address, address, uint256[] memory, uint256[] memory, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155BatchReceived.selector; } function getOwnedCrimes(address _owner) public view returns(uint256[] memory){ uint256[] memory result = new uint256[](balanceOf(_owner)); uint256 counter = 0; for (uint256 i = 0; i < mintIndex; i++) { if (ownerOf(i) == _owner) { result[counter] = i; counter++; } } return result; } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } // ------------------ Owner ------------------ // function safeMint(address _to,uint256[] memory _celblocks, uint256 _amount) public onlyOwner { require(mintIndex + _amount <= MAX_SUPPLY, "Max reached"); for (uint256 i = 0; i < _amount; i++) { _safeMint(_to, mintIndex); celblocks[mintIndex]=_celblocks[i]; mintIndex++; } } function setAddresses( address _vault, address _nsAddress, address _contraband ) external onlyOwner { vault = _vault; nsAddress = _nsAddress; CONTRABAND = IContraband(_contraband); } function withdraw() external onlyOwner { require(vault != address(0), "no vault"); require(payable(nsAddress).send(address(this).balance / 20)); require(payable(vault).send(address(this).balance)); } function supportsInterface(bytes4 interfaceId) public view override(ERC2981,ERC721, IERC165) returns (bool) { return super.supportsInterface(interfaceId); } function setMintPhase(MintPhase _phase) external onlyOwner { currentPhase = _phase; } function setUriMode(bool _flag) external onlyOwner { uriMode = _flag; } function changeMintPrice(uint256 _newPrice) external onlyOwner { mintPrice = _newPrice; } function setBaseExtension( string memory _newBaseURI ) public onlyOwner { BASE_URI = _newBaseURI; } function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external onlyOwner { _setDefaultRoyalty(_receiver, _feeNumerator); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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 = _ownerOf(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 or 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 or 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 or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 _ownerOf(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, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @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, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @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. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _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) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _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 (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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.8.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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 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: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_URI","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"celblocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_toCheck","type":"address"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"checkWardenList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_celblock","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_celblock","type":"uint256"}],"name":"claimKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"enum Crimereports.MintPhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getOwnedCrimes","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_celblocks","type":"uint256[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"},{"internalType":"address","name":"_nsAddress","type":"address"},{"internalType":"address","name":"_contraband","type":"address"}],"name":"setAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Crimereports.MintPhase","name":"_phase","type":"uint8"}],"name":"setMintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_flag","type":"bool"}],"name":"setUriMode","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":"_celId","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261106f600e55611002600f5567049f0dbc563480006010553480156200002957600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601781526020017f43656c204d61746573204372696d65205265706f7274730000000000000000008152506040518060400160405280600681526020017f4352494d455300000000000000000000000000000000000000000000000000008152508160009080519060200190620000c592919062000402565b508060019080519060200190620000de92919062000402565b50505062000101620000f56200033460201b60201c565b6200033c60201b60201c565b600160078190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002fe578015620001c4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200018a929190620004f7565b600060405180830381600087803b158015620001a557600080fd5b505af1158015620001ba573d6000803e3d6000fd5b50505050620002fd565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200027e576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000244929190620004f7565b600060405180830381600087803b1580156200025f57600080fd5b505af115801562000274573d6000803e3d6000fd5b50505050620002fc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002c7919062000524565b600060405180830381600087803b158015620002e257600080fd5b505af1158015620002f7573d6000803e3d6000fd5b505050505b5b5b50506000600d60146101000a81548160ff0219169083600281111562000329576200032862000541565b5b0217905550620005d4565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000410906200059f565b90600052602060002090601f01602090048101928262000434576000855562000480565b82601f106200044f57805160ff191683800117855562000480565b8280016001018555821562000480579182015b828111156200047f57825182559160200191906001019062000462565b5b5090506200048f919062000493565b5090565b5b80821115620004ae57600081600090555060010162000494565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004df82620004b2565b9050919050565b620004f181620004d2565b82525050565b60006040820190506200050e6000830185620004e6565b6200051d6020830184620004e6565b9392505050565b60006020820190506200053b6000830184620004e6565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005b857607f821691505b602082108103620005ce57620005cd62000570565b5b50919050565b615d4e80620005e46000396000f3fe60806040526004361061020f5760003560e01c80636c19e78311610118578063bc197c81116100a0578063e87e1a6c1161006f578063e87e1a6c14610799578063e985e9c5146107c2578063f23a6e61146107ff578063f2fde38b1461083c578063f74f9bfd146108655761020f565b8063bc197c81146106cb578063c87b56dd14610708578063da3ef23f14610745578063dbddb26a1461076e5761020f565b806376e81ba3116100e757806376e81ba3146105e65780638da5cb5b1461062357806395d89b411461064e578063a22cb46514610679578063b88d4fde146106a25761020f565b80636c19e783146105405780636e5be9b31461056957806370a0823114610592578063715018a6146105cf5761020f565b806331c07bbf1161019b5780633fd173661161016a5780633fd173661461046c57806341291f071461049557806342842e0e146104be5780635eddd157146104e75780636352211e146105035761020f565b806331c07bbf146103da578063363bf964146104035780633ccfd60b1461042c5780633e4b7c15146104435761020f565b8063081812fc116101e2578063081812fc146102d0578063095ea7b31461030d5780631f7b96991461033657806323b872dd146103735780632a55205a1461039c5761020f565b806301ffc9a71461021457806304634d8d14610251578063055ad42e1461027a57806306fdde03146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613aa4565b610890565b6040516102489190613aec565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613ba9565b6108a2565b005b34801561028657600080fd5b5061028f6108b8565b60405161029c9190613c60565b60405180910390f35b3480156102b157600080fd5b506102ba6108cb565b6040516102c79190613d14565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190613d6c565b61095d565b6040516103049190613da8565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190613dc3565b6109a3565b005b34801561034257600080fd5b5061035d60048036038101906103589190613d6c565b610aba565b60405161036a9190613e12565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613e2d565b610ad2565b005b3480156103a857600080fd5b506103c360048036038101906103be9190613e80565b610cb4565b6040516103d1929190613ec0565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc9190613f0e565b610e9e565b005b34801561040f57600080fd5b5061042a60048036038101906104259190613f3b565b610ed3565b005b34801561043857600080fd5b50610441610fa3565b005b34801561044f57600080fd5b5061046a600480360381019061046591906140c3565b61110a565b005b34801561047857600080fd5b50610493600480360381019061048e9190613d6c565b61123c565b005b3480156104a157600080fd5b506104bc60048036038101906104b7919061414b565b61124e565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613e2d565b611272565b005b61050160048036038101906104fc9190614178565b611454565b005b34801561050f57600080fd5b5061052a60048036038101906105259190613d6c565b6116ac565b6040516105379190613da8565b60405180910390f35b34801561054c57600080fd5b50610567600480360381019061056291906141e7565b611732565b005b34801561057557600080fd5b50610590600480360381019061058b91906142dc565b61177e565b005b34801561059e57600080fd5b506105b960048036038101906105b491906141e7565b611854565b6040516105c69190613e12565b60405180910390f35b3480156105db57600080fd5b506105e461190b565b005b3480156105f257600080fd5b5061060d600480360381019061060891906141e7565b61191f565b60405161061a9190614409565b60405180910390f35b34801561062f57600080fd5b50610638611a0c565b6040516106459190613da8565b60405180910390f35b34801561065a57600080fd5b50610663611a36565b6040516106709190613d14565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b919061442b565b611ac8565b005b3480156106ae57600080fd5b506106c960048036038101906106c4919061446b565b611ade565b005b3480156106d757600080fd5b506106f260048036038101906106ed91906144ee565b611cc3565b6040516106ff91906145cc565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190613d6c565b611cd8565b60405161073c9190613d14565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190614688565b611d74565b005b34801561077a57600080fd5b50610783611d96565b6040516107909190613d14565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb9190613d6c565b611e24565b005b3480156107ce57600080fd5b506107e960048036038101906107e491906146d1565b6120ed565b6040516107f69190613aec565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190614711565b612181565b60405161083391906145cc565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e91906141e7565b612196565b005b34801561087157600080fd5b5061087a612219565b6040516108879190613e12565b60405180910390f35b600061089b8261221f565b9050919050565b6108aa612299565b6108b48282612317565b5050565b600d60149054906101000a900460ff1681565b6060600080546108da906147d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610906906147d7565b80156109535780601f1061092857610100808354040283529160200191610953565b820191906000526020600020905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b6000610968826124ac565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ae826116ac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a159061487a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3d6124f7565b73ffffffffffffffffffffffffffffffffffffffff161480610a6c5750610a6b81610a666124f7565b6120ed565b5b610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa29061490c565b60405180910390fd5b610ab583836124ff565b505050565b600c6020528060005260406000206000915090505481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ca2573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b4457610b3f8484846125b8565b610cae565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b8d92919061492c565b602060405180830381865afa158015610baa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bce919061496a565b8015610c6057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610c1e92919061492c565b602060405180830381865afa158015610c3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5f919061496a565b5b610ca157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c989190613da8565b60405180910390fd5b5b610cad8484846125b8565b5b50505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610e495760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e53612618565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e7f91906149c6565b610e899190614a4f565b90508160000151819350935050509250929050565b610ea6612299565b80600d60146101000a81548160ff02191690836002811115610ecb57610eca613be9565b5b021790555050565b610edb612299565b82601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b610fab612299565b600073ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390614acc565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6014476110859190614a4f565b9081150290604051600060405180830381858888f193505050506110a857600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061110857600080fd5b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661114d8383612622565b73ffffffffffffffffffffffffffffffffffffffff16146111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90614b38565b60405180910390fd5b6002600b826040516111b59190614b9f565b90815260200160405180910390205410611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90614c02565b60405180910390fd5b600b816040516112149190614b9f565b9081526020016040518091039020600081548092919061123390614c22565b91905055505050565b611244612299565b8060108190555050565b611256612299565b806014806101000a81548160ff02191690831515021790555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611442573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112e4576112df848484612687565b61144e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161132d92919061492c565b602060405180830381865afa15801561134a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136e919061496a565b801561140057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016113be92919061492c565b602060405180830381865afa1580156113db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ff919061496a565b5b61144157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114389190613da8565b60405180910390fd5b5b61144d848484612687565b5b50505050565b61145c6126a7565b600060028111156114705761146f613be9565b5b600d60149054906101000a900460ff16600281111561149257611491613be9565b5b036114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990614cb6565b60405180910390fd5b600f54826012546114e39190614cd6565b1115611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b90614d78565b60405180910390fd5b60058310611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e90614de4565b60405180910390fd5b600382106115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190614e50565b60405180910390fd5b816010546115b891906149c6565b34146115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090614ebc565b60405180910390fd5b60005b8281101561169e5760028081111561161757611616613be9565b5b600d60149054906101000a900460ff16600281111561163957611638613be9565b5b1461164957611648338361110a565b5b6000601254905061165a33826126f6565b84600c6000838152602001908152602001600020819055506012600081548092919061168590614c22565b919050555050808061169690614c22565b9150506115fc565b506116a7612714565b505050565b6000806116b88361271e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090614f28565b60405180910390fd5b80915050919050565b61173a612299565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611786612299565b600e54816012546117979190614cd6565b11156117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf90614d78565b60405180910390fd5b60005b8181101561184e576117ef846012546126f6565b82818151811061180257611801614f48565b5b6020026020010151600c60006012548152602001908152602001600020819055506012600081548092919061183690614c22565b9190505550808061184690614c22565b9150506117db565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb90614fe9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611913612299565b61191d600061275b565b565b6060600061192c83611854565b67ffffffffffffffff81111561194557611944613f98565b5b6040519080825280602002602001820160405280156119735781602001602082028036833780820191505090505b5090506000805b601254811015611a01578473ffffffffffffffffffffffffffffffffffffffff166119a4826116ac565b73ffffffffffffffffffffffffffffffffffffffff16036119ee57808383815181106119d3576119d2614f48565b5b60200260200101818152505081806119ea90614c22565b9250505b80806119f990614c22565b91505061197a565b508192505050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a45906147d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611a71906147d7565b8015611abe5780601f10611a9357610100808354040283529160200191611abe565b820191906000526020600020905b815481529060010190602001808311611aa157829003601f168201915b5050505050905090565b611ada611ad36124f7565b8383612821565b5050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611caf573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b5157611b4c8585858561298d565b611cbc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611b9a92919061492c565b602060405180830381865afa158015611bb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdb919061496a565b8015611c6d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611c2b92919061492c565b602060405180830381865afa158015611c48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c6c919061496a565b5b611cae57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611ca59190613da8565b60405180910390fd5b5b611cbb8585858561298d565b5b5050505050565b600063bc197c8160e01b905095945050505050565b6060611ce3826129ef565b611cec57600080fd5b60148054906101000a900460ff16611d2e576011611d0983612a30565b604051602001611d1a9291906150d9565b604051602081830303815290604052611d6d565b6011611d4c600c600085815260200190815260200160002054612a30565b604051602001611d5d9291906150d9565b6040516020818303038152906040525b9050919050565b611d7c612299565b8060119080519060200190611d92929190613995565b5050565b60118054611da3906147d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611dcf906147d7565b8015611e1c5780601f10611df157610100808354040283529160200191611e1c565b820191906000526020600020905b815481529060010190602001808311611dff57829003601f168201915b505050505081565b611e2c6126a7565b60006002811115611e4057611e3f613be9565b5b600d60149054906101000a900460ff166002811115611e6257611e61613be9565b5b03611ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9990614cb6565b60405180910390fd5b600e5460125410611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf90614d78565b60405180910390fd5b60068110611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2290615149565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360006040518363ffffffff1660e01b8152600401611f8a9291906151ae565b602060405180830381865afa158015611fa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fcb91906151ec565b1161200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200290615265565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a3330600060016040518563ffffffff1660e01b815260040161206e94939291906152f7565b600060405180830381600087803b15801561208857600080fd5b505af115801561209c573d6000803e3d6000fd5b50505050600060125490506120b133826126f6565b81600c600083815260200190815260200160002081905550601260008154809291906120dc90614c22565b9190505550506120ea612714565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600063f23a6e6160e01b905095945050505050565b61219e612299565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361220d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612204906153c1565b60405180910390fd5b6122168161275b565b50565b60125481565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612292575061229182612afe565b5b9050919050565b6122a16124f7565b73ffffffffffffffffffffffffffffffffffffffff166122bf611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614612315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230c9061542d565b60405180910390fd5b565b61231f612618565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561237d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612374906154bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e39061552b565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6124b5816129ef565b6124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb90614f28565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612572836116ac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6125c96125c36124f7565b82612be0565b612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff906155bd565b60405180910390fd5b612613838383612c75565b505050565b6000612710905090565b600080836040516020016126369190615625565b6040516020818303038152906040528051906020012060405160200161265c91906156b7565b60405160208183030381529060405280519060200120905061267e8184612f6e565b91505092915050565b6126a283838360405180602001604052806000815250611ade565b505050565b6002600754036126ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e390615729565b60405180910390fd5b6002600781905550565b612710828260405180602001604052806000815250612f95565b5050565b6001600781905550565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361288f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288690615795565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129809190613aec565b60405180910390a3505050565b61299e6129986124f7565b83612be0565b6129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d4906155bd565b60405180910390fd5b6129e984848484612ff0565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16612a118361271e565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060006001612a3f8461304c565b01905060008167ffffffffffffffff811115612a5e57612a5d613f98565b5b6040519080825280601f01601f191660200182016040528015612a905781602001600182028036833780820191505090505b509050600082602001820190505b600115612af3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612ae757612ae6614a20565b5b04945060008503612a9e575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bc957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bd95750612bd88261319f565b5b9050919050565b600080612bec836116ac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c2e5750612c2d81856120ed565b5b80612c6c57508373ffffffffffffffffffffffffffffffffffffffff16612c548461095d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c95826116ac565b73ffffffffffffffffffffffffffffffffffffffff1614612ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce290615827565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d51906158b9565b60405180910390fd5b612d678383836001613209565b8273ffffffffffffffffffffffffffffffffffffffff16612d87826116ac565b73ffffffffffffffffffffffffffffffffffffffff1614612ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd490615827565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f69838383600161332f565b505050565b6000806000612f7d8585613335565b91509150612f8a81613386565b819250505092915050565b612f9f83836134ec565b612fac6000848484613709565b612feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe29061594b565b60405180910390fd5b505050565b612ffb848484612c75565b61300784848484613709565b613046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303d9061594b565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106130aa577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816130a05761309f614a20565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106130e7576d04ee2d6d415b85acef810000000083816130dd576130dc614a20565b5b0492506020810190505b662386f26fc10000831061311657662386f26fc10000838161310c5761310b614a20565b5b0492506010810190505b6305f5e100831061313f576305f5e100838161313557613134614a20565b5b0492506008810190505b612710831061316457612710838161315a57613159614a20565b5b0492506004810190505b60648310613187576064838161317d5761317c614a20565b5b0492506002810190505b600a8310613196576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600181111561332957600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461329d5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613295919061596b565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133285780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133209190614cd6565b925050819055505b5b50505050565b50505050565b60008060418351036133765760008060006020860151925060408601519150606086015160001a905061336a87828585613890565b9450945050505061337f565b60006002915091505b9250929050565b6000600481111561339a57613399613be9565b5b8160048111156133ad576133ac613be9565b5b03156134e957600160048111156133c7576133c6613be9565b5b8160048111156133da576133d9613be9565b5b0361341a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613411906159eb565b60405180910390fd5b6002600481111561342e5761342d613be9565b5b81600481111561344157613440613be9565b5b03613481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347890615a57565b60405180910390fd5b6003600481111561349557613494613be9565b5b8160048111156134a8576134a7613be9565b5b036134e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134df90615ae9565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361355b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355290615b55565b60405180910390fd5b613564816129ef565b156135a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359b90615bc1565b60405180910390fd5b6135b2600083836001613209565b6135bb816129ef565b156135fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f290615bc1565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461370560008383600161332f565b5050565b600061372a8473ffffffffffffffffffffffffffffffffffffffff16613972565b15613883578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137536124f7565b8786866040518563ffffffff1660e01b81526004016137759493929190615c1a565b6020604051808303816000875af19250505080156137b157506040513d601f19601f820116820180604052508101906137ae9190615c7b565b60015b613833573d80600081146137e1576040519150601f19603f3d011682016040523d82523d6000602084013e6137e6565b606091505b50600081510361382b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138229061594b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613888565b600190505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156138cb576000600391509150613969565b6000600187878787604051600081526020016040526040516138f09493929190615cd3565b6020604051602081039080840390855afa158015613912573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361396057600060019250925050613969565b80600092509250505b94509492505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546139a1906147d7565b90600052602060002090601f0160209004810192826139c35760008555613a0a565b82601f106139dc57805160ff1916838001178555613a0a565b82800160010185558215613a0a579182015b82811115613a095782518255916020019190600101906139ee565b5b509050613a179190613a1b565b5090565b5b80821115613a34576000816000905550600101613a1c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a8181613a4c565b8114613a8c57600080fd5b50565b600081359050613a9e81613a78565b92915050565b600060208284031215613aba57613ab9613a42565b5b6000613ac884828501613a8f565b91505092915050565b60008115159050919050565b613ae681613ad1565b82525050565b6000602082019050613b016000830184613add565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b3282613b07565b9050919050565b613b4281613b27565b8114613b4d57600080fd5b50565b600081359050613b5f81613b39565b92915050565b60006bffffffffffffffffffffffff82169050919050565b613b8681613b65565b8114613b9157600080fd5b50565b600081359050613ba381613b7d565b92915050565b60008060408385031215613bc057613bbf613a42565b5b6000613bce85828601613b50565b9250506020613bdf85828601613b94565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613c2957613c28613be9565b5b50565b6000819050613c3a82613c18565b919050565b6000613c4a82613c2c565b9050919050565b613c5a81613c3f565b82525050565b6000602082019050613c756000830184613c51565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cb5578082015181840152602081019050613c9a565b83811115613cc4576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ce682613c7b565b613cf08185613c86565b9350613d00818560208601613c97565b613d0981613cca565b840191505092915050565b60006020820190508181036000830152613d2e8184613cdb565b905092915050565b6000819050919050565b613d4981613d36565b8114613d5457600080fd5b50565b600081359050613d6681613d40565b92915050565b600060208284031215613d8257613d81613a42565b5b6000613d9084828501613d57565b91505092915050565b613da281613b27565b82525050565b6000602082019050613dbd6000830184613d99565b92915050565b60008060408385031215613dda57613dd9613a42565b5b6000613de885828601613b50565b9250506020613df985828601613d57565b9150509250929050565b613e0c81613d36565b82525050565b6000602082019050613e276000830184613e03565b92915050565b600080600060608486031215613e4657613e45613a42565b5b6000613e5486828701613b50565b9350506020613e6586828701613b50565b9250506040613e7686828701613d57565b9150509250925092565b60008060408385031215613e9757613e96613a42565b5b6000613ea585828601613d57565b9250506020613eb685828601613d57565b9150509250929050565b6000604082019050613ed56000830185613d99565b613ee26020830184613e03565b9392505050565b60038110613ef657600080fd5b50565b600081359050613f0881613ee9565b92915050565b600060208284031215613f2457613f23613a42565b5b6000613f3284828501613ef9565b91505092915050565b600080600060608486031215613f5457613f53613a42565b5b6000613f6286828701613b50565b9350506020613f7386828701613b50565b9250506040613f8486828701613b50565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613fd082613cca565b810181811067ffffffffffffffff82111715613fef57613fee613f98565b5b80604052505050565b6000614002613a38565b905061400e8282613fc7565b919050565b600067ffffffffffffffff82111561402e5761402d613f98565b5b61403782613cca565b9050602081019050919050565b82818337600083830152505050565b600061406661406184614013565b613ff8565b90508281526020810184848401111561408257614081613f93565b5b61408d848285614044565b509392505050565b600082601f8301126140aa576140a9613f8e565b5b81356140ba848260208601614053565b91505092915050565b600080604083850312156140da576140d9613a42565b5b60006140e885828601613b50565b925050602083013567ffffffffffffffff81111561410957614108613a47565b5b61411585828601614095565b9150509250929050565b61412881613ad1565b811461413357600080fd5b50565b6000813590506141458161411f565b92915050565b60006020828403121561416157614160613a42565b5b600061416f84828501614136565b91505092915050565b60008060006060848603121561419157614190613a42565b5b600061419f86828701613d57565b93505060206141b086828701613d57565b925050604084013567ffffffffffffffff8111156141d1576141d0613a47565b5b6141dd86828701614095565b9150509250925092565b6000602082840312156141fd576141fc613a42565b5b600061420b84828501613b50565b91505092915050565b600067ffffffffffffffff82111561422f5761422e613f98565b5b602082029050602081019050919050565b600080fd5b600061425861425384614214565b613ff8565b9050808382526020820190506020840283018581111561427b5761427a614240565b5b835b818110156142a457806142908882613d57565b84526020840193505060208101905061427d565b5050509392505050565b600082601f8301126142c3576142c2613f8e565b5b81356142d3848260208601614245565b91505092915050565b6000806000606084860312156142f5576142f4613a42565b5b600061430386828701613b50565b935050602084013567ffffffffffffffff81111561432457614323613a47565b5b614330868287016142ae565b925050604061434186828701613d57565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61438081613d36565b82525050565b60006143928383614377565b60208301905092915050565b6000602082019050919050565b60006143b68261434b565b6143c08185614356565b93506143cb83614367565b8060005b838110156143fc5781516143e38882614386565b97506143ee8361439e565b9250506001810190506143cf565b5085935050505092915050565b6000602082019050818103600083015261442381846143ab565b905092915050565b6000806040838503121561444257614441613a42565b5b600061445085828601613b50565b925050602061446185828601614136565b9150509250929050565b6000806000806080858703121561448557614484613a42565b5b600061449387828801613b50565b94505060206144a487828801613b50565b93505060406144b587828801613d57565b925050606085013567ffffffffffffffff8111156144d6576144d5613a47565b5b6144e287828801614095565b91505092959194509250565b600080600080600060a0868803121561450a57614509613a42565b5b600061451888828901613b50565b955050602061452988828901613b50565b945050604086013567ffffffffffffffff81111561454a57614549613a47565b5b614556888289016142ae565b935050606086013567ffffffffffffffff81111561457757614576613a47565b5b614583888289016142ae565b925050608086013567ffffffffffffffff8111156145a4576145a3613a47565b5b6145b088828901614095565b9150509295509295909350565b6145c681613a4c565b82525050565b60006020820190506145e160008301846145bd565b92915050565b600067ffffffffffffffff82111561460257614601613f98565b5b61460b82613cca565b9050602081019050919050565b600061462b614626846145e7565b613ff8565b90508281526020810184848401111561464757614646613f93565b5b614652848285614044565b509392505050565b600082601f83011261466f5761466e613f8e565b5b813561467f848260208601614618565b91505092915050565b60006020828403121561469e5761469d613a42565b5b600082013567ffffffffffffffff8111156146bc576146bb613a47565b5b6146c88482850161465a565b91505092915050565b600080604083850312156146e8576146e7613a42565b5b60006146f685828601613b50565b925050602061470785828601613b50565b9150509250929050565b600080600080600060a0868803121561472d5761472c613a42565b5b600061473b88828901613b50565b955050602061474c88828901613b50565b945050604061475d88828901613d57565b935050606061476e88828901613d57565b925050608086013567ffffffffffffffff81111561478f5761478e613a47565b5b61479b88828901614095565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147ef57607f821691505b602082108103614802576148016147a8565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614864602183613c86565b915061486f82614808565b604082019050919050565b6000602082019050818103600083015261489381614857565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006148f6603d83613c86565b91506149018261489a565b604082019050919050565b60006020820190508181036000830152614925816148e9565b9050919050565b60006040820190506149416000830185613d99565b61494e6020830184613d99565b9392505050565b6000815190506149648161411f565b92915050565b6000602082840312156149805761497f613a42565b5b600061498e84828501614955565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149d182613d36565b91506149dc83613d36565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a1557614a14614997565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a5a82613d36565b9150614a6583613d36565b925082614a7557614a74614a20565b5b828204905092915050565b7f6e6f207661756c74000000000000000000000000000000000000000000000000600082015250565b6000614ab6600883613c86565b9150614ac182614a80565b602082019050919050565b60006020820190508181036000830152614ae581614aa9565b9050919050565b7f4e6f74206f6e20616c6c6f776c69737400000000000000000000000000000000600082015250565b6000614b22601083613c86565b9150614b2d82614aec565b602082019050919050565b60006020820190508181036000830152614b5181614b15565b9050919050565b600081519050919050565b600081905092915050565b6000614b7982614b58565b614b838185614b63565b9350614b93818560208601613c97565b80840191505092915050565b6000614bab8284614b6e565b915081905092915050565b7f5369676e61747572652075736564000000000000000000000000000000000000600082015250565b6000614bec600e83613c86565b9150614bf782614bb6565b602082019050919050565b60006020820190508181036000830152614c1b81614bdf565b9050919050565b6000614c2d82613d36565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c5f57614c5e614997565b5b600182019050919050565b7f4e6f74206f70656e656400000000000000000000000000000000000000000000600082015250565b6000614ca0600a83613c86565b9150614cab82614c6a565b602082019050919050565b60006020820190508181036000830152614ccf81614c93565b9050919050565b6000614ce182613d36565b9150614cec83613d36565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d2157614d20614997565b5b828201905092915050565b7f4d61782072656163686564000000000000000000000000000000000000000000600082015250565b6000614d62600b83613c86565b9150614d6d82614d2c565b602082019050919050565b60006020820190508181036000830152614d9181614d55565b9050919050565b7f302d340000000000000000000000000000000000000000000000000000000000600082015250565b6000614dce600383613c86565b9150614dd982614d98565b602082019050919050565b60006020820190508181036000830152614dfd81614dc1565b9050919050565b7f31206f7220320000000000000000000000000000000000000000000000000000600082015250565b6000614e3a600683613c86565b9150614e4582614e04565b602082019050919050565b60006020820190508181036000830152614e6981614e2d565b9050919050565b7f4e6f742065786163742045544800000000000000000000000000000000000000600082015250565b6000614ea6600d83613c86565b9150614eb182614e70565b602082019050919050565b60006020820190508181036000830152614ed581614e99565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614f12601883613c86565b9150614f1d82614edc565b602082019050919050565b60006020820190508181036000830152614f4181614f05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614fd3602983613c86565b9150614fde82614f77565b604082019050919050565b6000602082019050818103600083015261500281614fc6565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154615036816147d7565b6150408186615009565b9450600182166000811461505b576001811461506c5761509f565b60ff1983168652818601935061509f565b61507585615014565b60005b8381101561509757815481890152600182019150602081019050615078565b838801955050505b50505092915050565b60006150b382613c7b565b6150bd8185615009565b93506150cd818560208601613c97565b80840191505092915050565b60006150e58285615029565b91506150f182846150a8565b91508190509392505050565b7f312d350000000000000000000000000000000000000000000000000000000000600082015250565b6000615133600383613c86565b915061513e826150fd565b602082019050919050565b6000602082019050818103600083015261516281615126565b9050919050565b6000819050919050565b6000819050919050565b600061519861519361518e84615169565b615173565b613d36565b9050919050565b6151a88161517d565b82525050565b60006040820190506151c36000830185613d99565b6151d0602083018461519f565b9392505050565b6000815190506151e681613d40565b92915050565b60006020828403121561520257615201613a42565b5b6000615210848285016151d7565b91505092915050565b7f596f7520646f6e2774206f776e2061206b657900000000000000000000000000600082015250565b600061524f601383613c86565b915061525a82615219565b602082019050919050565b6000602082019050818103600083015261527e81615242565b9050919050565b6000819050919050565b60006152aa6152a56152a084615285565b615173565b613d36565b9050919050565b6152ba8161528f565b82525050565b600082825260208201905092915050565b50565b60006152e16000836152c0565b91506152ec826152d1565b600082019050919050565b600060a08201905061530c6000830187613d99565b6153196020830186613d99565b615326604083018561519f565b61533360608301846152b1565b8181036080830152615344816152d4565b905095945050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153ab602683613c86565b91506153b68261534f565b604082019050919050565b600060208201905081810360008301526153da8161539e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615417602083613c86565b9150615422826153e1565b602082019050919050565b600060208201905081810360008301526154468161540a565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006154a9602a83613c86565b91506154b48261544d565b604082019050919050565b600060208201905081810360008301526154d88161549c565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000615515601983613c86565b9150615520826154df565b602082019050919050565b6000602082019050818103600083015261554481615508565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006155a7602d83613c86565b91506155b28261554b565b604082019050919050565b600060208201905081810360008301526155d68161559a565b9050919050565b60008160601b9050919050565b60006155f5826155dd565b9050919050565b6000615607826155ea565b9050919050565b61561f61561a82613b27565b6155fc565b82525050565b6000615631828461560e565b60148201915081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615676601c83615009565b915061568182615640565b601c82019050919050565b6000819050919050565b6000819050919050565b6156b16156ac8261568c565b615696565b82525050565b60006156c282615669565b91506156ce82846156a0565b60208201915081905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000615713601f83613c86565b915061571e826156dd565b602082019050919050565b6000602082019050818103600083015261574281615706565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061577f601983613c86565b915061578a82615749565b602082019050919050565b600060208201905081810360008301526157ae81615772565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615811602583613c86565b915061581c826157b5565b604082019050919050565b6000602082019050818103600083015261584081615804565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006158a3602483613c86565b91506158ae82615847565b604082019050919050565b600060208201905081810360008301526158d281615896565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615935603283613c86565b9150615940826158d9565b604082019050919050565b6000602082019050818103600083015261596481615928565b9050919050565b600061597682613d36565b915061598183613d36565b92508282101561599457615993614997565b5b828203905092915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006159d5601883613c86565b91506159e08261599f565b602082019050919050565b60006020820190508181036000830152615a04816159c8565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615a41601f83613c86565b9150615a4c82615a0b565b602082019050919050565b60006020820190508181036000830152615a7081615a34565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615ad3602283613c86565b9150615ade82615a77565b604082019050919050565b60006020820190508181036000830152615b0281615ac6565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615b3f602083613c86565b9150615b4a82615b09565b602082019050919050565b60006020820190508181036000830152615b6e81615b32565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615bab601c83613c86565b9150615bb682615b75565b602082019050919050565b60006020820190508181036000830152615bda81615b9e565b9050919050565b6000615bec82614b58565b615bf681856152c0565b9350615c06818560208601613c97565b615c0f81613cca565b840191505092915050565b6000608082019050615c2f6000830187613d99565b615c3c6020830186613d99565b615c496040830185613e03565b8181036060830152615c5b8184615be1565b905095945050505050565b600081519050615c7581613a78565b92915050565b600060208284031215615c9157615c90613a42565b5b6000615c9f84828501615c66565b91505092915050565b615cb18161568c565b82525050565b600060ff82169050919050565b615ccd81615cb7565b82525050565b6000608082019050615ce86000830187615ca8565b615cf56020830186615cc4565b615d026040830185615ca8565b615d0f6060830184615ca8565b9594505050505056fea26469706673582212206bf80bfdc750e85cdbcb84b4cfa2a08fb1588c0dc3a5e51b9c08fa04a5e5d92664736f6c634300080d0033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636c19e78311610118578063bc197c81116100a0578063e87e1a6c1161006f578063e87e1a6c14610799578063e985e9c5146107c2578063f23a6e61146107ff578063f2fde38b1461083c578063f74f9bfd146108655761020f565b8063bc197c81146106cb578063c87b56dd14610708578063da3ef23f14610745578063dbddb26a1461076e5761020f565b806376e81ba3116100e757806376e81ba3146105e65780638da5cb5b1461062357806395d89b411461064e578063a22cb46514610679578063b88d4fde146106a25761020f565b80636c19e783146105405780636e5be9b31461056957806370a0823114610592578063715018a6146105cf5761020f565b806331c07bbf1161019b5780633fd173661161016a5780633fd173661461046c57806341291f071461049557806342842e0e146104be5780635eddd157146104e75780636352211e146105035761020f565b806331c07bbf146103da578063363bf964146104035780633ccfd60b1461042c5780633e4b7c15146104435761020f565b8063081812fc116101e2578063081812fc146102d0578063095ea7b31461030d5780631f7b96991461033657806323b872dd146103735780632a55205a1461039c5761020f565b806301ffc9a71461021457806304634d8d14610251578063055ad42e1461027a57806306fdde03146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613aa4565b610890565b6040516102489190613aec565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613ba9565b6108a2565b005b34801561028657600080fd5b5061028f6108b8565b60405161029c9190613c60565b60405180910390f35b3480156102b157600080fd5b506102ba6108cb565b6040516102c79190613d14565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190613d6c565b61095d565b6040516103049190613da8565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190613dc3565b6109a3565b005b34801561034257600080fd5b5061035d60048036038101906103589190613d6c565b610aba565b60405161036a9190613e12565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613e2d565b610ad2565b005b3480156103a857600080fd5b506103c360048036038101906103be9190613e80565b610cb4565b6040516103d1929190613ec0565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc9190613f0e565b610e9e565b005b34801561040f57600080fd5b5061042a60048036038101906104259190613f3b565b610ed3565b005b34801561043857600080fd5b50610441610fa3565b005b34801561044f57600080fd5b5061046a600480360381019061046591906140c3565b61110a565b005b34801561047857600080fd5b50610493600480360381019061048e9190613d6c565b61123c565b005b3480156104a157600080fd5b506104bc60048036038101906104b7919061414b565b61124e565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613e2d565b611272565b005b61050160048036038101906104fc9190614178565b611454565b005b34801561050f57600080fd5b5061052a60048036038101906105259190613d6c565b6116ac565b6040516105379190613da8565b60405180910390f35b34801561054c57600080fd5b50610567600480360381019061056291906141e7565b611732565b005b34801561057557600080fd5b50610590600480360381019061058b91906142dc565b61177e565b005b34801561059e57600080fd5b506105b960048036038101906105b491906141e7565b611854565b6040516105c69190613e12565b60405180910390f35b3480156105db57600080fd5b506105e461190b565b005b3480156105f257600080fd5b5061060d600480360381019061060891906141e7565b61191f565b60405161061a9190614409565b60405180910390f35b34801561062f57600080fd5b50610638611a0c565b6040516106459190613da8565b60405180910390f35b34801561065a57600080fd5b50610663611a36565b6040516106709190613d14565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b919061442b565b611ac8565b005b3480156106ae57600080fd5b506106c960048036038101906106c4919061446b565b611ade565b005b3480156106d757600080fd5b506106f260048036038101906106ed91906144ee565b611cc3565b6040516106ff91906145cc565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190613d6c565b611cd8565b60405161073c9190613d14565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190614688565b611d74565b005b34801561077a57600080fd5b50610783611d96565b6040516107909190613d14565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb9190613d6c565b611e24565b005b3480156107ce57600080fd5b506107e960048036038101906107e491906146d1565b6120ed565b6040516107f69190613aec565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190614711565b612181565b60405161083391906145cc565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e91906141e7565b612196565b005b34801561087157600080fd5b5061087a612219565b6040516108879190613e12565b60405180910390f35b600061089b8261221f565b9050919050565b6108aa612299565b6108b48282612317565b5050565b600d60149054906101000a900460ff1681565b6060600080546108da906147d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610906906147d7565b80156109535780601f1061092857610100808354040283529160200191610953565b820191906000526020600020905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b6000610968826124ac565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ae826116ac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a159061487a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3d6124f7565b73ffffffffffffffffffffffffffffffffffffffff161480610a6c5750610a6b81610a666124f7565b6120ed565b5b610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa29061490c565b60405180910390fd5b610ab583836124ff565b505050565b600c6020528060005260406000206000915090505481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ca2573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b4457610b3f8484846125b8565b610cae565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b8d92919061492c565b602060405180830381865afa158015610baa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bce919061496a565b8015610c6057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610c1e92919061492c565b602060405180830381865afa158015610c3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5f919061496a565b5b610ca157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c989190613da8565b60405180910390fd5b5b610cad8484846125b8565b5b50505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610e495760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e53612618565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e7f91906149c6565b610e899190614a4f565b90508160000151819350935050509250929050565b610ea6612299565b80600d60146101000a81548160ff02191690836002811115610ecb57610eca613be9565b5b021790555050565b610edb612299565b82601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b610fab612299565b600073ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390614acc565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6014476110859190614a4f565b9081150290604051600060405180830381858888f193505050506110a857600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061110857600080fd5b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661114d8383612622565b73ffffffffffffffffffffffffffffffffffffffff16146111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90614b38565b60405180910390fd5b6002600b826040516111b59190614b9f565b90815260200160405180910390205410611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90614c02565b60405180910390fd5b600b816040516112149190614b9f565b9081526020016040518091039020600081548092919061123390614c22565b91905055505050565b611244612299565b8060108190555050565b611256612299565b806014806101000a81548160ff02191690831515021790555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611442573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112e4576112df848484612687565b61144e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161132d92919061492c565b602060405180830381865afa15801561134a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136e919061496a565b801561140057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016113be92919061492c565b602060405180830381865afa1580156113db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ff919061496a565b5b61144157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114389190613da8565b60405180910390fd5b5b61144d848484612687565b5b50505050565b61145c6126a7565b600060028111156114705761146f613be9565b5b600d60149054906101000a900460ff16600281111561149257611491613be9565b5b036114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990614cb6565b60405180910390fd5b600f54826012546114e39190614cd6565b1115611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b90614d78565b60405180910390fd5b60058310611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e90614de4565b60405180910390fd5b600382106115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190614e50565b60405180910390fd5b816010546115b891906149c6565b34146115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090614ebc565b60405180910390fd5b60005b8281101561169e5760028081111561161757611616613be9565b5b600d60149054906101000a900460ff16600281111561163957611638613be9565b5b1461164957611648338361110a565b5b6000601254905061165a33826126f6565b84600c6000838152602001908152602001600020819055506012600081548092919061168590614c22565b919050555050808061169690614c22565b9150506115fc565b506116a7612714565b505050565b6000806116b88361271e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090614f28565b60405180910390fd5b80915050919050565b61173a612299565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611786612299565b600e54816012546117979190614cd6565b11156117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf90614d78565b60405180910390fd5b60005b8181101561184e576117ef846012546126f6565b82818151811061180257611801614f48565b5b6020026020010151600c60006012548152602001908152602001600020819055506012600081548092919061183690614c22565b9190505550808061184690614c22565b9150506117db565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb90614fe9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611913612299565b61191d600061275b565b565b6060600061192c83611854565b67ffffffffffffffff81111561194557611944613f98565b5b6040519080825280602002602001820160405280156119735781602001602082028036833780820191505090505b5090506000805b601254811015611a01578473ffffffffffffffffffffffffffffffffffffffff166119a4826116ac565b73ffffffffffffffffffffffffffffffffffffffff16036119ee57808383815181106119d3576119d2614f48565b5b60200260200101818152505081806119ea90614c22565b9250505b80806119f990614c22565b91505061197a565b508192505050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a45906147d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611a71906147d7565b8015611abe5780601f10611a9357610100808354040283529160200191611abe565b820191906000526020600020905b815481529060010190602001808311611aa157829003601f168201915b5050505050905090565b611ada611ad36124f7565b8383612821565b5050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611caf573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b5157611b4c8585858561298d565b611cbc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611b9a92919061492c565b602060405180830381865afa158015611bb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdb919061496a565b8015611c6d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611c2b92919061492c565b602060405180830381865afa158015611c48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c6c919061496a565b5b611cae57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611ca59190613da8565b60405180910390fd5b5b611cbb8585858561298d565b5b5050505050565b600063bc197c8160e01b905095945050505050565b6060611ce3826129ef565b611cec57600080fd5b60148054906101000a900460ff16611d2e576011611d0983612a30565b604051602001611d1a9291906150d9565b604051602081830303815290604052611d6d565b6011611d4c600c600085815260200190815260200160002054612a30565b604051602001611d5d9291906150d9565b6040516020818303038152906040525b9050919050565b611d7c612299565b8060119080519060200190611d92929190613995565b5050565b60118054611da3906147d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611dcf906147d7565b8015611e1c5780601f10611df157610100808354040283529160200191611e1c565b820191906000526020600020905b815481529060010190602001808311611dff57829003601f168201915b505050505081565b611e2c6126a7565b60006002811115611e4057611e3f613be9565b5b600d60149054906101000a900460ff166002811115611e6257611e61613be9565b5b03611ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9990614cb6565b60405180910390fd5b600e5460125410611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf90614d78565b60405180910390fd5b60068110611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2290615149565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360006040518363ffffffff1660e01b8152600401611f8a9291906151ae565b602060405180830381865afa158015611fa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fcb91906151ec565b1161200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200290615265565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a3330600060016040518563ffffffff1660e01b815260040161206e94939291906152f7565b600060405180830381600087803b15801561208857600080fd5b505af115801561209c573d6000803e3d6000fd5b50505050600060125490506120b133826126f6565b81600c600083815260200190815260200160002081905550601260008154809291906120dc90614c22565b9190505550506120ea612714565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600063f23a6e6160e01b905095945050505050565b61219e612299565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361220d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612204906153c1565b60405180910390fd5b6122168161275b565b50565b60125481565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612292575061229182612afe565b5b9050919050565b6122a16124f7565b73ffffffffffffffffffffffffffffffffffffffff166122bf611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614612315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230c9061542d565b60405180910390fd5b565b61231f612618565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561237d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612374906154bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e39061552b565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6124b5816129ef565b6124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb90614f28565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612572836116ac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6125c96125c36124f7565b82612be0565b612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff906155bd565b60405180910390fd5b612613838383612c75565b505050565b6000612710905090565b600080836040516020016126369190615625565b6040516020818303038152906040528051906020012060405160200161265c91906156b7565b60405160208183030381529060405280519060200120905061267e8184612f6e565b91505092915050565b6126a283838360405180602001604052806000815250611ade565b505050565b6002600754036126ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e390615729565b60405180910390fd5b6002600781905550565b612710828260405180602001604052806000815250612f95565b5050565b6001600781905550565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361288f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288690615795565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129809190613aec565b60405180910390a3505050565b61299e6129986124f7565b83612be0565b6129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d4906155bd565b60405180910390fd5b6129e984848484612ff0565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16612a118361271e565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060006001612a3f8461304c565b01905060008167ffffffffffffffff811115612a5e57612a5d613f98565b5b6040519080825280601f01601f191660200182016040528015612a905781602001600182028036833780820191505090505b509050600082602001820190505b600115612af3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612ae757612ae6614a20565b5b04945060008503612a9e575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bc957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bd95750612bd88261319f565b5b9050919050565b600080612bec836116ac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c2e5750612c2d81856120ed565b5b80612c6c57508373ffffffffffffffffffffffffffffffffffffffff16612c548461095d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c95826116ac565b73ffffffffffffffffffffffffffffffffffffffff1614612ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce290615827565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d51906158b9565b60405180910390fd5b612d678383836001613209565b8273ffffffffffffffffffffffffffffffffffffffff16612d87826116ac565b73ffffffffffffffffffffffffffffffffffffffff1614612ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd490615827565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f69838383600161332f565b505050565b6000806000612f7d8585613335565b91509150612f8a81613386565b819250505092915050565b612f9f83836134ec565b612fac6000848484613709565b612feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe29061594b565b60405180910390fd5b505050565b612ffb848484612c75565b61300784848484613709565b613046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303d9061594b565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106130aa577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816130a05761309f614a20565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106130e7576d04ee2d6d415b85acef810000000083816130dd576130dc614a20565b5b0492506020810190505b662386f26fc10000831061311657662386f26fc10000838161310c5761310b614a20565b5b0492506010810190505b6305f5e100831061313f576305f5e100838161313557613134614a20565b5b0492506008810190505b612710831061316457612710838161315a57613159614a20565b5b0492506004810190505b60648310613187576064838161317d5761317c614a20565b5b0492506002810190505b600a8310613196576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600181111561332957600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461329d5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613295919061596b565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133285780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133209190614cd6565b925050819055505b5b50505050565b50505050565b60008060418351036133765760008060006020860151925060408601519150606086015160001a905061336a87828585613890565b9450945050505061337f565b60006002915091505b9250929050565b6000600481111561339a57613399613be9565b5b8160048111156133ad576133ac613be9565b5b03156134e957600160048111156133c7576133c6613be9565b5b8160048111156133da576133d9613be9565b5b0361341a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613411906159eb565b60405180910390fd5b6002600481111561342e5761342d613be9565b5b81600481111561344157613440613be9565b5b03613481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347890615a57565b60405180910390fd5b6003600481111561349557613494613be9565b5b8160048111156134a8576134a7613be9565b5b036134e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134df90615ae9565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361355b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355290615b55565b60405180910390fd5b613564816129ef565b156135a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359b90615bc1565b60405180910390fd5b6135b2600083836001613209565b6135bb816129ef565b156135fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f290615bc1565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461370560008383600161332f565b5050565b600061372a8473ffffffffffffffffffffffffffffffffffffffff16613972565b15613883578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137536124f7565b8786866040518563ffffffff1660e01b81526004016137759493929190615c1a565b6020604051808303816000875af19250505080156137b157506040513d601f19601f820116820180604052508101906137ae9190615c7b565b60015b613833573d80600081146137e1576040519150601f19603f3d011682016040523d82523d6000602084013e6137e6565b606091505b50600081510361382b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138229061594b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613888565b600190505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156138cb576000600391509150613969565b6000600187878787604051600081526020016040526040516138f09493929190615cd3565b6020604051602081039080840390855afa158015613912573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361396057600060019250925050613969565b80600092509250505b94509492505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546139a1906147d7565b90600052602060002090601f0160209004810192826139c35760008555613a0a565b82601f106139dc57805160ff1916838001178555613a0a565b82800160010185558215613a0a579182015b82811115613a095782518255916020019190600101906139ee565b5b509050613a179190613a1b565b5090565b5b80821115613a34576000816000905550600101613a1c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a8181613a4c565b8114613a8c57600080fd5b50565b600081359050613a9e81613a78565b92915050565b600060208284031215613aba57613ab9613a42565b5b6000613ac884828501613a8f565b91505092915050565b60008115159050919050565b613ae681613ad1565b82525050565b6000602082019050613b016000830184613add565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b3282613b07565b9050919050565b613b4281613b27565b8114613b4d57600080fd5b50565b600081359050613b5f81613b39565b92915050565b60006bffffffffffffffffffffffff82169050919050565b613b8681613b65565b8114613b9157600080fd5b50565b600081359050613ba381613b7d565b92915050565b60008060408385031215613bc057613bbf613a42565b5b6000613bce85828601613b50565b9250506020613bdf85828601613b94565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613c2957613c28613be9565b5b50565b6000819050613c3a82613c18565b919050565b6000613c4a82613c2c565b9050919050565b613c5a81613c3f565b82525050565b6000602082019050613c756000830184613c51565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cb5578082015181840152602081019050613c9a565b83811115613cc4576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ce682613c7b565b613cf08185613c86565b9350613d00818560208601613c97565b613d0981613cca565b840191505092915050565b60006020820190508181036000830152613d2e8184613cdb565b905092915050565b6000819050919050565b613d4981613d36565b8114613d5457600080fd5b50565b600081359050613d6681613d40565b92915050565b600060208284031215613d8257613d81613a42565b5b6000613d9084828501613d57565b91505092915050565b613da281613b27565b82525050565b6000602082019050613dbd6000830184613d99565b92915050565b60008060408385031215613dda57613dd9613a42565b5b6000613de885828601613b50565b9250506020613df985828601613d57565b9150509250929050565b613e0c81613d36565b82525050565b6000602082019050613e276000830184613e03565b92915050565b600080600060608486031215613e4657613e45613a42565b5b6000613e5486828701613b50565b9350506020613e6586828701613b50565b9250506040613e7686828701613d57565b9150509250925092565b60008060408385031215613e9757613e96613a42565b5b6000613ea585828601613d57565b9250506020613eb685828601613d57565b9150509250929050565b6000604082019050613ed56000830185613d99565b613ee26020830184613e03565b9392505050565b60038110613ef657600080fd5b50565b600081359050613f0881613ee9565b92915050565b600060208284031215613f2457613f23613a42565b5b6000613f3284828501613ef9565b91505092915050565b600080600060608486031215613f5457613f53613a42565b5b6000613f6286828701613b50565b9350506020613f7386828701613b50565b9250506040613f8486828701613b50565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613fd082613cca565b810181811067ffffffffffffffff82111715613fef57613fee613f98565b5b80604052505050565b6000614002613a38565b905061400e8282613fc7565b919050565b600067ffffffffffffffff82111561402e5761402d613f98565b5b61403782613cca565b9050602081019050919050565b82818337600083830152505050565b600061406661406184614013565b613ff8565b90508281526020810184848401111561408257614081613f93565b5b61408d848285614044565b509392505050565b600082601f8301126140aa576140a9613f8e565b5b81356140ba848260208601614053565b91505092915050565b600080604083850312156140da576140d9613a42565b5b60006140e885828601613b50565b925050602083013567ffffffffffffffff81111561410957614108613a47565b5b61411585828601614095565b9150509250929050565b61412881613ad1565b811461413357600080fd5b50565b6000813590506141458161411f565b92915050565b60006020828403121561416157614160613a42565b5b600061416f84828501614136565b91505092915050565b60008060006060848603121561419157614190613a42565b5b600061419f86828701613d57565b93505060206141b086828701613d57565b925050604084013567ffffffffffffffff8111156141d1576141d0613a47565b5b6141dd86828701614095565b9150509250925092565b6000602082840312156141fd576141fc613a42565b5b600061420b84828501613b50565b91505092915050565b600067ffffffffffffffff82111561422f5761422e613f98565b5b602082029050602081019050919050565b600080fd5b600061425861425384614214565b613ff8565b9050808382526020820190506020840283018581111561427b5761427a614240565b5b835b818110156142a457806142908882613d57565b84526020840193505060208101905061427d565b5050509392505050565b600082601f8301126142c3576142c2613f8e565b5b81356142d3848260208601614245565b91505092915050565b6000806000606084860312156142f5576142f4613a42565b5b600061430386828701613b50565b935050602084013567ffffffffffffffff81111561432457614323613a47565b5b614330868287016142ae565b925050604061434186828701613d57565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61438081613d36565b82525050565b60006143928383614377565b60208301905092915050565b6000602082019050919050565b60006143b68261434b565b6143c08185614356565b93506143cb83614367565b8060005b838110156143fc5781516143e38882614386565b97506143ee8361439e565b9250506001810190506143cf565b5085935050505092915050565b6000602082019050818103600083015261442381846143ab565b905092915050565b6000806040838503121561444257614441613a42565b5b600061445085828601613b50565b925050602061446185828601614136565b9150509250929050565b6000806000806080858703121561448557614484613a42565b5b600061449387828801613b50565b94505060206144a487828801613b50565b93505060406144b587828801613d57565b925050606085013567ffffffffffffffff8111156144d6576144d5613a47565b5b6144e287828801614095565b91505092959194509250565b600080600080600060a0868803121561450a57614509613a42565b5b600061451888828901613b50565b955050602061452988828901613b50565b945050604086013567ffffffffffffffff81111561454a57614549613a47565b5b614556888289016142ae565b935050606086013567ffffffffffffffff81111561457757614576613a47565b5b614583888289016142ae565b925050608086013567ffffffffffffffff8111156145a4576145a3613a47565b5b6145b088828901614095565b9150509295509295909350565b6145c681613a4c565b82525050565b60006020820190506145e160008301846145bd565b92915050565b600067ffffffffffffffff82111561460257614601613f98565b5b61460b82613cca565b9050602081019050919050565b600061462b614626846145e7565b613ff8565b90508281526020810184848401111561464757614646613f93565b5b614652848285614044565b509392505050565b600082601f83011261466f5761466e613f8e565b5b813561467f848260208601614618565b91505092915050565b60006020828403121561469e5761469d613a42565b5b600082013567ffffffffffffffff8111156146bc576146bb613a47565b5b6146c88482850161465a565b91505092915050565b600080604083850312156146e8576146e7613a42565b5b60006146f685828601613b50565b925050602061470785828601613b50565b9150509250929050565b600080600080600060a0868803121561472d5761472c613a42565b5b600061473b88828901613b50565b955050602061474c88828901613b50565b945050604061475d88828901613d57565b935050606061476e88828901613d57565b925050608086013567ffffffffffffffff81111561478f5761478e613a47565b5b61479b88828901614095565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147ef57607f821691505b602082108103614802576148016147a8565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614864602183613c86565b915061486f82614808565b604082019050919050565b6000602082019050818103600083015261489381614857565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006148f6603d83613c86565b91506149018261489a565b604082019050919050565b60006020820190508181036000830152614925816148e9565b9050919050565b60006040820190506149416000830185613d99565b61494e6020830184613d99565b9392505050565b6000815190506149648161411f565b92915050565b6000602082840312156149805761497f613a42565b5b600061498e84828501614955565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149d182613d36565b91506149dc83613d36565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a1557614a14614997565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a5a82613d36565b9150614a6583613d36565b925082614a7557614a74614a20565b5b828204905092915050565b7f6e6f207661756c74000000000000000000000000000000000000000000000000600082015250565b6000614ab6600883613c86565b9150614ac182614a80565b602082019050919050565b60006020820190508181036000830152614ae581614aa9565b9050919050565b7f4e6f74206f6e20616c6c6f776c69737400000000000000000000000000000000600082015250565b6000614b22601083613c86565b9150614b2d82614aec565b602082019050919050565b60006020820190508181036000830152614b5181614b15565b9050919050565b600081519050919050565b600081905092915050565b6000614b7982614b58565b614b838185614b63565b9350614b93818560208601613c97565b80840191505092915050565b6000614bab8284614b6e565b915081905092915050565b7f5369676e61747572652075736564000000000000000000000000000000000000600082015250565b6000614bec600e83613c86565b9150614bf782614bb6565b602082019050919050565b60006020820190508181036000830152614c1b81614bdf565b9050919050565b6000614c2d82613d36565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c5f57614c5e614997565b5b600182019050919050565b7f4e6f74206f70656e656400000000000000000000000000000000000000000000600082015250565b6000614ca0600a83613c86565b9150614cab82614c6a565b602082019050919050565b60006020820190508181036000830152614ccf81614c93565b9050919050565b6000614ce182613d36565b9150614cec83613d36565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d2157614d20614997565b5b828201905092915050565b7f4d61782072656163686564000000000000000000000000000000000000000000600082015250565b6000614d62600b83613c86565b9150614d6d82614d2c565b602082019050919050565b60006020820190508181036000830152614d9181614d55565b9050919050565b7f302d340000000000000000000000000000000000000000000000000000000000600082015250565b6000614dce600383613c86565b9150614dd982614d98565b602082019050919050565b60006020820190508181036000830152614dfd81614dc1565b9050919050565b7f31206f7220320000000000000000000000000000000000000000000000000000600082015250565b6000614e3a600683613c86565b9150614e4582614e04565b602082019050919050565b60006020820190508181036000830152614e6981614e2d565b9050919050565b7f4e6f742065786163742045544800000000000000000000000000000000000000600082015250565b6000614ea6600d83613c86565b9150614eb182614e70565b602082019050919050565b60006020820190508181036000830152614ed581614e99565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614f12601883613c86565b9150614f1d82614edc565b602082019050919050565b60006020820190508181036000830152614f4181614f05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614fd3602983613c86565b9150614fde82614f77565b604082019050919050565b6000602082019050818103600083015261500281614fc6565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154615036816147d7565b6150408186615009565b9450600182166000811461505b576001811461506c5761509f565b60ff1983168652818601935061509f565b61507585615014565b60005b8381101561509757815481890152600182019150602081019050615078565b838801955050505b50505092915050565b60006150b382613c7b565b6150bd8185615009565b93506150cd818560208601613c97565b80840191505092915050565b60006150e58285615029565b91506150f182846150a8565b91508190509392505050565b7f312d350000000000000000000000000000000000000000000000000000000000600082015250565b6000615133600383613c86565b915061513e826150fd565b602082019050919050565b6000602082019050818103600083015261516281615126565b9050919050565b6000819050919050565b6000819050919050565b600061519861519361518e84615169565b615173565b613d36565b9050919050565b6151a88161517d565b82525050565b60006040820190506151c36000830185613d99565b6151d0602083018461519f565b9392505050565b6000815190506151e681613d40565b92915050565b60006020828403121561520257615201613a42565b5b6000615210848285016151d7565b91505092915050565b7f596f7520646f6e2774206f776e2061206b657900000000000000000000000000600082015250565b600061524f601383613c86565b915061525a82615219565b602082019050919050565b6000602082019050818103600083015261527e81615242565b9050919050565b6000819050919050565b60006152aa6152a56152a084615285565b615173565b613d36565b9050919050565b6152ba8161528f565b82525050565b600082825260208201905092915050565b50565b60006152e16000836152c0565b91506152ec826152d1565b600082019050919050565b600060a08201905061530c6000830187613d99565b6153196020830186613d99565b615326604083018561519f565b61533360608301846152b1565b8181036080830152615344816152d4565b905095945050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153ab602683613c86565b91506153b68261534f565b604082019050919050565b600060208201905081810360008301526153da8161539e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615417602083613c86565b9150615422826153e1565b602082019050919050565b600060208201905081810360008301526154468161540a565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006154a9602a83613c86565b91506154b48261544d565b604082019050919050565b600060208201905081810360008301526154d88161549c565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000615515601983613c86565b9150615520826154df565b602082019050919050565b6000602082019050818103600083015261554481615508565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006155a7602d83613c86565b91506155b28261554b565b604082019050919050565b600060208201905081810360008301526155d68161559a565b9050919050565b60008160601b9050919050565b60006155f5826155dd565b9050919050565b6000615607826155ea565b9050919050565b61561f61561a82613b27565b6155fc565b82525050565b6000615631828461560e565b60148201915081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615676601c83615009565b915061568182615640565b601c82019050919050565b6000819050919050565b6000819050919050565b6156b16156ac8261568c565b615696565b82525050565b60006156c282615669565b91506156ce82846156a0565b60208201915081905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000615713601f83613c86565b915061571e826156dd565b602082019050919050565b6000602082019050818103600083015261574281615706565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061577f601983613c86565b915061578a82615749565b602082019050919050565b600060208201905081810360008301526157ae81615772565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615811602583613c86565b915061581c826157b5565b604082019050919050565b6000602082019050818103600083015261584081615804565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006158a3602483613c86565b91506158ae82615847565b604082019050919050565b600060208201905081810360008301526158d281615896565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615935603283613c86565b9150615940826158d9565b604082019050919050565b6000602082019050818103600083015261596481615928565b9050919050565b600061597682613d36565b915061598183613d36565b92508282101561599457615993614997565b5b828203905092915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006159d5601883613c86565b91506159e08261599f565b602082019050919050565b60006020820190508181036000830152615a04816159c8565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615a41601f83613c86565b9150615a4c82615a0b565b602082019050919050565b60006020820190508181036000830152615a7081615a34565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615ad3602283613c86565b9150615ade82615a77565b604082019050919050565b60006020820190508181036000830152615b0281615ac6565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615b3f602083613c86565b9150615b4a82615b09565b602082019050919050565b60006020820190508181036000830152615b6e81615b32565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615bab601c83613c86565b9150615bb682615b75565b602082019050919050565b60006020820190508181036000830152615bda81615b9e565b9050919050565b6000615bec82614b58565b615bf681856152c0565b9350615c06818560208601613c97565b615c0f81613cca565b840191505092915050565b6000608082019050615c2f6000830187613d99565b615c3c6020830186613d99565b615c496040830185613e03565b8181036060830152615c5b8184615be1565b905095945050505050565b600081519050615c7581613a78565b92915050565b600060208284031215615c9157615c90613a42565b5b6000615c9f84828501615c66565b91505092915050565b615cb18161568c565b82525050565b600060ff82169050919050565b615ccd81615cb7565b82525050565b6000608082019050615ce86000830187615ca8565b615cf56020830186615cc4565b615d026040830185615ca8565b615d0f6060830184615ca8565b9594505050505056fea26469706673582212206bf80bfdc750e85cdbcb84b4cfa2a08fb1588c0dc3a5e51b9c08fa04a5e5d92664736f6c634300080d0033
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.