Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 BLONKS
Holders
1,487
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 BLONKSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BLONKSmain
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; interface iBLONKSuri { function buildMetaPart(uint256 _tokenId, string memory _description, address _artistAddy, uint256 _royaltyBps, string memory _collection, string memory _website, string memory _externalURL) external view returns (string memory); function buildContractURI(string memory _description, string memory _externalURL, uint256 _royaltyBps, address _artistAddy, string memory _svg) external view returns (string memory); function getBase64TokenURI(string memory _legibleURI) external view returns (string memory); function getLegibleTokenURI(string memory _metaP, uint256 _tokenEntropy, uint256 _ownerEntropy) external view returns (string memory); function buildPreviewSVG(uint256 _tokenEntropy, uint256 _addressEntropy) external view returns (string memory); } /// @title BLONKS Main Contract /// @author Matto /// @notice This is a customized ERC-721 contract for BLONKS NFTs. /// @dev SVG image and metadata is generated fully on-chain. Beause a token's owner's address changes how the image renders, a preview function is included. /// @custom:security-contact [email protected] contract BLONKSmain is ERC721, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for string; Counters.Counter private _tokenIdCounter; bool public publicMintActive = false; bool public URIcontractLocked = false; uint256 public cost = .0420 ether; mapping(uint256 => uint256) public tokenEntropyMap; string public artist = "Matto"; string public description; string public collection = "BLONKS"; string public website = "https://BLONKS.xyz"; string public externalURL; address public artistAddy = 0xA6a4Fe416F8Bf46bc3bCA068aC8b1fC4DF760653; address public donationAddy = 0x9D5025B327E6B863E5050141C987d988c07fd8B2; uint256 public constant donationPercent = 50; address public URIcontract; uint256 public royaltyBps = 300; uint16 public maxSupply = 4444; string public license = "BLONKS NFTS ARE CC0"; uint16 public exampleBLONK = 0; constructor() ERC721("BLONKS", "BLONKS") {} function mattoMint(address to) public onlyOwner { require(_tokenIdCounter.current() < maxSupply, "All BLONKS have been minted."); uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); createTokenEntropy(tokenId); _safeMint(to, tokenId); } modifier callerIsUser() { require(tx.origin == msg.sender, "No contracts"); _; } function publicMintThatBlonk() external payable nonReentrant callerIsUser { require(publicMintActive, "Minting is disabled"); require(msg.value == cost, "Incorrect value sent"); require(_tokenIdCounter.current() < maxSupply, "All BLONKS have been minted."); uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); createTokenEntropy(tokenId); _safeMint(msg.sender, tokenId); } function createTokenEntropy(uint256 _tokenId) internal { uint256 tE = uint256(keccak256(abi.encodePacked( artist, _tokenId, block.number, block.timestamp, block.difficulty))); tokenEntropyMap[_tokenId] = (tE / 100) * 100 + (block.basefee % 100); } function getOwnerEntropy(uint256 _tokenId) public view virtual returns (uint256) { uint256 oE = uint256(uint160(ownerOf(_tokenId))); return oE; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_tokenId < _tokenIdCounter.current(), "That token doesn't exist"); string memory legibleURItemp = legibleTokenURI(_tokenId); string memory URIBase64 = iBLONKSuri(URIcontract).getBase64TokenURI(legibleURItemp); return URIBase64; } function legibleTokenURI(uint256 _tokenId) public view virtual returns (string memory) { require(_tokenId < _tokenIdCounter.current(), "That token doesn't exist"); string memory metaP = iBLONKSuri(URIcontract).buildMetaPart(_tokenId, description, artistAddy, royaltyBps, collection, website, externalURL); string memory legibleURI = iBLONKSuri(URIcontract).getLegibleTokenURI(metaP, tokenEntropyMap[_tokenId], getOwnerEntropy(_tokenId)); return legibleURI; } function contractURI() public view virtual returns (string memory) { uint256 addressEntropy = uint256(uint160(ownerOf(exampleBLONK))); string memory svg = iBLONKSuri(URIcontract).buildPreviewSVG(tokenEntropyMap[exampleBLONK], addressEntropy); string memory contractURIstring = iBLONKSuri(URIcontract).buildContractURI(description, externalURL, royaltyBps, artistAddy, svg); return contractURIstring; } function getSVG(uint256 _tokenId) public view virtual returns (string memory) { require(_tokenId < _tokenIdCounter.current(), "That token doesn't exist"); string memory svg = previewSVG(_tokenId, ownerOf(_tokenId)); return svg; } function previewSVG(uint256 _tokenId, address _addy) public view virtual returns (string memory) { uint256 addressEntropy = uint256(uint160(_addy)); require(_tokenId < _tokenIdCounter.current(), "That token doesn't exist"); string memory svg = iBLONKSuri(URIcontract).buildPreviewSVG(tokenEntropyMap[_tokenId], addressEntropy); return svg; } function getRoyalties(uint256 _tokenId) external view returns (address, uint256) { require(_tokenId < _tokenIdCounter.current(), "That token doesn't exist"); return (artistAddy, royaltyBps); } function royaltyInfo(uint256 _tokenId, uint256 value) public view returns (address, uint256) { require(_tokenId < _tokenIdCounter.current(), "That token doesn't exist"); return (artistAddy, value * royaltyBps / 10000); } // The following functions are contract controls. function toggleMint() external onlyOwner { publicMintActive = !publicMintActive; } function lowerSupply(uint16 _lowerSupply) external onlyOwner { require(_lowerSupply < maxSupply, "Supply can only be lowered"); maxSupply = _lowerSupply; } function DANGER_LockURIcontract() external payable onlyOwner { require(msg.value == 2 * cost, "Incorrect value sent"); URIcontractLocked = true; } function updateArtistAddy(address _artistAddy) external onlyOwner { artistAddy = _artistAddy; } function updateDonationAddy(address _donationAddy) external onlyOwner { donationAddy = _donationAddy; } function updateRoyaltyBps(uint256 _royaltyBps) external onlyOwner { royaltyBps = _royaltyBps; } function updateDescription(string memory _description) external onlyOwner { description = _description; } function updateCollection(string memory _collection) external onlyOwner { collection = _collection; } function updateWebsite(string memory _website) external onlyOwner { website = _website; } function updateExternalURL(string memory _externalURL) external onlyOwner { externalURL = _externalURL; } function updateCost(uint256 _cost) external onlyOwner { cost = _cost; } function updateExampleBLONK(uint16 _example) external onlyOwner { exampleBLONK = _example; } function updateURIcontract(address _URIcontract) external onlyOwner { require(URIcontractLocked == false, "URI contract locked"); URIcontract = _URIcontract; } function withdraw() external onlyOwner { require(artistAddy != address(0), "Artist address not set"); require(donationAddy != address(0), "Donation address not set"); uint256 donationAmount = address(this).balance * donationPercent / 100; payable(artistAddy).transfer(address(this).balance - donationAmount); payable(donationAddy).transfer(donationAmount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); 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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); 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: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {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 a {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 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 { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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.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 (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"DANGER_LockURIcontract","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"URIcontract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"URIcontractLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"artist","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"artistAddy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collection","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"description","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donationAddy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donationPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exampleBLONK","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"externalURL","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"_tokenId","type":"uint256"}],"name":"getOwnerEntropy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"legibleTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"license","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_lowerSupply","type":"uint16"}],"name":"lowerSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mattoMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_addy","type":"address"}],"name":"previewSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintThatBlonk","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenEntropyMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_artistAddy","type":"address"}],"name":"updateArtistAddy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_collection","type":"string"}],"name":"updateCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"updateCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_description","type":"string"}],"name":"updateDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_donationAddy","type":"address"}],"name":"updateDonationAddy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_example","type":"uint16"}],"name":"updateExampleBLONK","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_externalURL","type":"string"}],"name":"updateExternalURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royaltyBps","type":"uint256"}],"name":"updateRoyaltyBps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_URIcontract","type":"address"}],"name":"updateURIcontract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_website","type":"string"}],"name":"updateWebsite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"website","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff021916908315150217905550669536c708910000600a556040518060400160405280600581526020017f4d6174746f000000000000000000000000000000000000000000000000000000815250600c90805190602001906200009292919062000414565b506040518060400160405280600681526020017f424c4f4e4b530000000000000000000000000000000000000000000000000000815250600e9080519060200190620000e092919062000414565b506040518060400160405280601281526020017f68747470733a2f2f424c4f4e4b532e78797a0000000000000000000000000000815250600f90805190602001906200012e92919062000414565b5073a6a4fe416f8bf46bc3bca068ac8b1fc4df760653601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739d5025b327e6b863e5050141c987d988c07fd8b2601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061012c60145561115c601560006101000a81548161ffff021916908361ffff1602179055506040518060400160405280601381526020017f424c4f4e4b53204e465453204152452043433000000000000000000000000000815250601690805190602001906200024b92919062000414565b506000601760006101000a81548161ffff021916908361ffff1602179055503480156200027757600080fd5b506040518060400160405280600681526020017f424c4f4e4b5300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f424c4f4e4b5300000000000000000000000000000000000000000000000000008152508160009080519060200190620002fc92919062000414565b5080600190805190602001906200031592919062000414565b505050620003386200032c6200034660201b60201c565b6200034e60201b60201c565b600160078190555062000529565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200042290620004c4565b90600052602060002090601f01602090048101928262000446576000855562000492565b82601f106200046157805160ff191683800117855562000492565b8280016001018555821562000492579182015b828111156200049157825182559160200191906001019062000474565b5b509050620004a19190620004a5565b5090565b5b80821115620004c0576000816000905550600101620004a6565b5090565b60006002820490506001821680620004dd57607f821691505b60208210811415620004f457620004f3620004fa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61580980620005396000396000f3fe60806040526004361061036b5760003560e01c80637de1e536116101c6578063c63adb2b116100f7578063e735b48a11610095578063f1b54ff91161006f578063f1b54ff914610c7c578063f2fde38b14610ca5578063f9c68ff314610cce578063fae2c2f914610cf95761036b565b8063e735b48a14610beb578063e8a3d48514610c14578063e985e9c514610c3f5761036b565b8063d3dd5fe0116100d1578063d3dd5fe014610b43578063d5abeb0114610b5a578063dbbc5a7514610b85578063dbc119d714610bae5761036b565b8063c63adb2b14610ab0578063c87b56dd14610adb578063d060ab4414610b185761036b565b8063b2c7d43611610164578063b99edfb21161013e578063b99edfb2146109df578063bb3bafd614610a0a578063be985ac914610a48578063beb0a41614610a855761036b565b8063b2c7d4361461094e578063b67c25a31461098b578063b88d4fde146109b65761036b565b806395039879116101a0578063950398791461089257806395d89b41146108bd57806396994b88146108e8578063a22cb465146109255761036b565b80637de1e5361461081357806389d3e3071461083e5780638da5cb5b146108675761036b565b806343bc1612116102a0578063675181611161023e5780636b87d24c116102185780636b87d24c1461076957806370a0823114610794578063715018a6146107d15780637284e416146107e85761036b565b8063675181611461070d57806368929c94146107175780636b4ad241146107405761036b565b80635c36cfb91161027a5780635c36cfb91461063f5780635d440160146106685780635dd4cd45146106a55780636352211e146106d05761036b565b806343bc1612146105c0578063549261c1146105eb57806358b3fcbf146106145761036b565b8063221900bf1161030d5780632a03c098116102e75780632a03c098146105175780632a55205a146105425780633ccfd60b1461058057806342842e0e146105975761036b565b8063221900bf146104bb57806323b872dd146104c557806323c5a088146104ee5761036b565b8063095ea7b311610349578063095ea7b31461041557806313faede61461043e578063165afc26146104695780631f584ce4146104925761036b565b806301ffc9a71461037057806306fdde03146103ad578063081812fc146103d8575b600080fd5b34801561037c57600080fd5b50610397600480360381019061039291906140b9565b610d22565b6040516103a49190614899565b60405180910390f35b3480156103b957600080fd5b506103c2610e04565b6040516103cf91906148b4565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906141d2565b610e96565b60405161040c9190614809565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190614079565b610f1b565b005b34801561044a57600080fd5b50610453611033565b6040516104609190614cb7565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b91906141d2565b611039565b005b34801561049e57600080fd5b506104b960048036038101906104b491906141a5565b6110bf565b005b6104c361115b565b005b3480156104d157600080fd5b506104ec60048036038101906104e79190613f63565b611244565b005b3480156104fa57600080fd5b50610515600480360381019061051091906141d2565b6112a4565b005b34801561052357600080fd5b5061052c61132a565b6040516105399190614809565b60405180910390f35b34801561054e57600080fd5b506105696004803603810190610564919061423f565b611350565b604051610577929190614870565b60405180910390f35b34801561058c57600080fd5b506105956113e7565b005b3480156105a357600080fd5b506105be60048036038101906105b99190613f63565b611684565b005b3480156105cc57600080fd5b506105d56116a4565b6040516105e291906148b4565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190614113565b611732565b005b34801561062057600080fd5b506106296117c8565b6040516106369190614809565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190613ef6565b6117ee565b005b34801561067457600080fd5b5061068f600480360381019061068a91906141d2565b6118ae565b60405161069c91906148b4565b60405180910390f35b3480156106b157600080fd5b506106ba611ac0565b6040516106c79190614c9c565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f291906141d2565b611ad4565b6040516107049190614809565b60405180910390f35b610715611b86565b005b34801561072357600080fd5b5061073e60048036038101906107399190613ef6565b611d6a565b005b34801561074c57600080fd5b5061076760048036038101906107629190613ef6565b611e2a565b005b34801561077557600080fd5b5061077e611f34565b60405161078b91906148b4565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190613ef6565b611fc2565b6040516107c89190614cb7565b60405180910390f35b3480156107dd57600080fd5b506107e661207a565b005b3480156107f457600080fd5b506107fd612102565b60405161080a91906148b4565b60405180910390f35b34801561081f57600080fd5b50610828612190565b60405161083591906148b4565b60405180910390f35b34801561084a57600080fd5b5061086560048036038101906108609190613ef6565b61221e565b005b34801561087357600080fd5b5061087c612334565b6040516108899190614809565b60405180910390f35b34801561089e57600080fd5b506108a761235e565b6040516108b49190614899565b60405180910390f35b3480156108c957600080fd5b506108d2612371565b6040516108df91906148b4565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a91906141ff565b612403565b60405161091c91906148b4565b60405180910390f35b34801561093157600080fd5b5061094c60048036038101906109479190614039565b61253f565b005b34801561095a57600080fd5b50610975600480360381019061097091906141d2565b612555565b6040516109829190614cb7565b60405180910390f35b34801561099757600080fd5b506109a0612582565b6040516109ad9190614899565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d89190613fb6565b612595565b005b3480156109eb57600080fd5b506109f46125f7565b604051610a0191906148b4565b60405180910390f35b348015610a1657600080fd5b50610a316004803603810190610a2c91906141d2565b612685565b604051610a3f929190614870565b60405180910390f35b348015610a5457600080fd5b50610a6f6004803603810190610a6a91906141d2565b612702565b604051610a7c91906148b4565b60405180910390f35b348015610a9157600080fd5b50610a9a61276e565b604051610aa791906148b4565b60405180910390f35b348015610abc57600080fd5b50610ac56127fc565b604051610ad29190614cb7565b60405180910390f35b348015610ae757600080fd5b50610b026004803603810190610afd91906141d2565b612802565b604051610b0f91906148b4565b60405180910390f35b348015610b2457600080fd5b50610b2d61291a565b604051610b3a9190614809565b60405180910390f35b348015610b4f57600080fd5b50610b58612940565b005b348015610b6657600080fd5b50610b6f6129e8565b604051610b7c9190614c9c565b60405180910390f35b348015610b9157600080fd5b50610bac6004803603810190610ba79190614113565b6129fc565b005b348015610bba57600080fd5b50610bd56004803603810190610bd091906141d2565b612a92565b604051610be29190614cb7565b60405180910390f35b348015610bf757600080fd5b50610c126004803603810190610c0d9190614113565b612aaa565b005b348015610c2057600080fd5b50610c29612b40565b604051610c3691906148b4565b60405180910390f35b348015610c4b57600080fd5b50610c666004803603810190610c619190613f23565b612d41565b604051610c739190614899565b60405180910390f35b348015610c8857600080fd5b50610ca36004803603810190610c9e9190614113565b612dd5565b005b348015610cb157600080fd5b50610ccc6004803603810190610cc79190613ef6565b612e6b565b005b348015610cda57600080fd5b50610ce3612f63565b604051610cf09190614cb7565b60405180910390f35b348015610d0557600080fd5b50610d206004803603810190610d1b91906141a5565b612f68565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ded57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610dfd5750610dfc8261305e565b5b9050919050565b606060008054610e139061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3f9061503e565b8015610e8c5780601f10610e6157610100808354040283529160200191610e8c565b820191906000526020600020905b815481529060010190602001808311610e6f57829003601f168201915b5050505050905090565b6000610ea1826130c8565b610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed790614b5c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f2682611ad4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90614bfc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fb6613134565b73ffffffffffffffffffffffffffffffffffffffff161480610fe55750610fe481610fdf613134565b612d41565b5b611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90614a9c565b60405180910390fd5b61102e838361313c565b505050565b600a5481565b611041613134565b73ffffffffffffffffffffffffffffffffffffffff1661105f612334565b73ffffffffffffffffffffffffffffffffffffffff16146110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90614b7c565b60405180910390fd5b8060148190555050565b6110c7613134565b73ffffffffffffffffffffffffffffffffffffffff166110e5612334565b73ffffffffffffffffffffffffffffffffffffffff161461113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290614b7c565b60405180910390fd5b80601760006101000a81548161ffff021916908361ffff16021790555050565b611163613134565b73ffffffffffffffffffffffffffffffffffffffff16611181612334565b73ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90614b7c565b60405180910390fd5b600a5460026111e69190614eec565b3414611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90614a5c565b60405180910390fd5b6001600960016101000a81548160ff021916908315150217905550565b61125561124f613134565b826131f5565b611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90614c1c565b60405180910390fd5b61129f8383836132d3565b505050565b6112ac613134565b73ffffffffffffffffffffffffffffffffffffffff166112ca612334565b73ffffffffffffffffffffffffffffffffffffffff1614611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790614b7c565b60405180910390fd5b80600a8190555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061135d600861353a565b841061139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590614b1c565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710601454856113d29190614eec565b6113dc9190614ebb565b915091509250929050565b6113ef613134565b73ffffffffffffffffffffffffffffffffffffffff1661140d612334565b73ffffffffffffffffffffffffffffffffffffffff1614611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90614b7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec90614afc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e9061497c565b60405180910390fd5b600060646032476115989190614eec565b6115a29190614ebb565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc82476115ec9190614f46565b9081150290604051600060405180830381858888f19350505050158015611617573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611680573d6000803e3d6000fd5b5050565b61169f83838360405180602001604052806000815250612595565b505050565b600c80546116b19061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546116dd9061503e565b801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b505050505081565b61173a613134565b73ffffffffffffffffffffffffffffffffffffffff16611758612334565b73ffffffffffffffffffffffffffffffffffffffff16146117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590614b7c565b60405180910390fd5b80600e90805190602001906117c4929190613c85565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117f6613134565b73ffffffffffffffffffffffffffffffffffffffff16611814612334565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190614b7c565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606118ba600861353a565b82106118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290614b1c565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638ecfc5e484600d601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601454600e600f60106040518863ffffffff1660e01b815260040161198c9796959493929190614cd2565b60006040518083038186803b1580156119a457600080fd5b505afa1580156119b8573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906119e1919061415c565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ec805b5483600b600088815260200190815260200160002054611a4188612555565b6040518463ffffffff1660e01b8152600401611a5f939291906148d6565b60006040518083038186803b158015611a7757600080fd5b505afa158015611a8b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611ab4919061415c565b90508092505050919050565b601760009054906101000a900461ffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7490614adc565b60405180910390fd5b80915050919050565b60026007541415611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390614c5c565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990614c7c565b60405180910390fd5b600960009054906101000a900460ff16611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8890614bdc565b60405180910390fd5b600a543414611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90614a5c565b60405180910390fd5b601560009054906101000a900461ffff1661ffff16611cf4600861353a565b10611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90614bbc565b60405180910390fd5b6000611d40600861353a565b9050611d4c6008613548565b611d558161355e565b611d5f33826135df565b506001600781905550565b611d72613134565b73ffffffffffffffffffffffffffffffffffffffff16611d90612334565b73ffffffffffffffffffffffffffffffffffffffff1614611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd90614b7c565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611e32613134565b73ffffffffffffffffffffffffffffffffffffffff16611e50612334565b73ffffffffffffffffffffffffffffffffffffffff1614611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d90614b7c565b60405180910390fd5b601560009054906101000a900461ffff1661ffff16611ec5600861353a565b10611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90614bbc565b60405180910390fd5b6000611f11600861353a565b9050611f1d6008613548565b611f268161355e565b611f3082826135df565b5050565b60168054611f419061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6d9061503e565b8015611fba5780601f10611f8f57610100808354040283529160200191611fba565b820191906000526020600020905b815481529060010190602001808311611f9d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90614abc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612082613134565b73ffffffffffffffffffffffffffffffffffffffff166120a0612334565b73ffffffffffffffffffffffffffffffffffffffff16146120f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ed90614b7c565b60405180910390fd5b61210060006135fd565b565b600d805461210f9061503e565b80601f016020809104026020016040519081016040528092919081815260200182805461213b9061503e565b80156121885780601f1061215d57610100808354040283529160200191612188565b820191906000526020600020905b81548152906001019060200180831161216b57829003601f168201915b505050505081565b600e805461219d9061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546121c99061503e565b80156122165780601f106121eb57610100808354040283529160200191612216565b820191906000526020600020905b8154815290600101906020018083116121f957829003601f168201915b505050505081565b612226613134565b73ffffffffffffffffffffffffffffffffffffffff16612244612334565b73ffffffffffffffffffffffffffffffffffffffff161461229a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229190614b7c565b60405180910390fd5b60001515600960019054906101000a900460ff161515146122f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e790614c3c565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960019054906101000a900460ff1681565b6060600180546123809061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546123ac9061503e565b80156123f95780601f106123ce576101008083540402835291602001916123f9565b820191906000526020600020905b8154815290600101906020018083116123dc57829003601f168201915b5050505050905090565b606060008273ffffffffffffffffffffffffffffffffffffffff16905061242a600861353a565b841061246b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246290614b1c565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663afa94d6c600b600088815260200190815260200160002054846040518363ffffffff1660e01b81526004016124dd929190614d5d565b60006040518083038186803b1580156124f557600080fd5b505afa158015612509573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612532919061415c565b9050809250505092915050565b61255161254a613134565b83836136c3565b5050565b60008061256183611ad4565b73ffffffffffffffffffffffffffffffffffffffff16905080915050919050565b600960009054906101000a900460ff1681565b6125a66125a0613134565b836131f5565b6125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc90614c1c565b60405180910390fd5b6125f184848484613830565b50505050565b601080546126049061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546126309061503e565b801561267d5780601f106126525761010080835404028352916020019161267d565b820191906000526020600020905b81548152906001019060200180831161266057829003601f168201915b505050505081565b600080612692600861353a565b83106126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90614b1c565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660145491509150915091565b606061270e600861353a565b821061274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274690614b1c565b60405180910390fd5b60006127638361275e85611ad4565b612403565b905080915050919050565b600f805461277b9061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546127a79061503e565b80156127f45780601f106127c9576101008083540402835291602001916127f4565b820191906000526020600020905b8154815290600101906020018083116127d757829003601f168201915b505050505081565b60145481565b606061280e600861353a565b821061284f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284690614b1c565b60405180910390fd5b600061285a836118ae565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663419fa1fb836040518263ffffffff1660e01b81526004016128b991906148b4565b60006040518083038186803b1580156128d157600080fd5b505afa1580156128e5573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061290e919061415c565b90508092505050919050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612948613134565b73ffffffffffffffffffffffffffffffffffffffff16612966612334565b73ffffffffffffffffffffffffffffffffffffffff16146129bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b390614b7c565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b601560009054906101000a900461ffff1681565b612a04613134565b73ffffffffffffffffffffffffffffffffffffffff16612a22612334565b73ffffffffffffffffffffffffffffffffffffffff1614612a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6f90614b7c565b60405180910390fd5b8060109080519060200190612a8e929190613c85565b5050565b600b6020528060005260406000206000915090505481565b612ab2613134565b73ffffffffffffffffffffffffffffffffffffffff16612ad0612334565b73ffffffffffffffffffffffffffffffffffffffff1614612b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1d90614b7c565b60405180910390fd5b80600d9080519060200190612b3c929190613c85565b5050565b60606000612b61601760009054906101000a900461ffff1661ffff16611ad4565b73ffffffffffffffffffffffffffffffffffffffff1690506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663afa94d6c600b6000601760009054906101000a900461ffff1661ffff16815260200190815260200160002054846040518363ffffffff1660e01b8152600401612bff929190614d5d565b60006040518083038186803b158015612c1757600080fd5b505afa158015612c2b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612c54919061415c565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635b265342600d6010601454601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16876040518663ffffffff1660e01b8152600401612ce1959493929190614914565b60006040518083038186803b158015612cf957600080fd5b505afa158015612d0d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612d36919061415c565b905080935050505090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ddd613134565b73ffffffffffffffffffffffffffffffffffffffff16612dfb612334565b73ffffffffffffffffffffffffffffffffffffffff1614612e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4890614b7c565b60405180910390fd5b80600f9080519060200190612e67929190613c85565b5050565b612e73613134565b73ffffffffffffffffffffffffffffffffffffffff16612e91612334565b73ffffffffffffffffffffffffffffffffffffffff1614612ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ede90614b7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4e906149bc565b60405180910390fd5b612f60816135fd565b50565b603281565b612f70613134565b73ffffffffffffffffffffffffffffffffffffffff16612f8e612334565b73ffffffffffffffffffffffffffffffffffffffff1614612fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdb90614b7c565b60405180910390fd5b601560009054906101000a900461ffff1661ffff168161ffff161061303e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303590614b9c565b60405180910390fd5b80601560006101000a81548161ffff021916908361ffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166131af83611ad4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613200826130c8565b61323f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323690614a7c565b60405180910390fd5b600061324a83611ad4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061328c575061328b8185612d41565b5b806132ca57508373ffffffffffffffffffffffffffffffffffffffff166132b284610e96565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166132f382611ad4565b73ffffffffffffffffffffffffffffffffffffffff1614613349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613340906149dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b090614a1c565b60405180910390fd5b6133c483838361388c565b6133cf60008261313c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461341f9190614f46565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134769190614e65565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613535838383613891565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6000600c8243424460405160200161357a9594939291906147ae565b6040516020818303038152906040528051906020012060001c90506064486135a291906150ab565b606480836135b09190614ebb565b6135ba9190614eec565b6135c49190614e65565b600b6000848152602001908152602001600020819055505050565b6135f9828260405180602001604052806000815250613896565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372990614a3c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516138239190614899565b60405180910390a3505050565b61383b8484846132d3565b613847848484846138f1565b613886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387d9061499c565b60405180910390fd5b50505050565b505050565b505050565b6138a08383613a88565b6138ad60008484846138f1565b6138ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e39061499c565b60405180910390fd5b505050565b60006139128473ffffffffffffffffffffffffffffffffffffffff16613c62565b15613a7b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261393b613134565b8786866040518563ffffffff1660e01b815260040161395d9493929190614824565b602060405180830381600087803b15801561397757600080fd5b505af19250505080156139a857506040513d601f19601f820116820180604052508101906139a591906140e6565b60015b613a2b573d80600081146139d8576040519150601f19603f3d011682016040523d82523d6000602084013e6139dd565b606091505b50600081511415613a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1a9061499c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a80565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aef90614b3c565b60405180910390fd5b613b01816130c8565b15613b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b38906149fc565b60405180910390fd5b613b4d6000838361388c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b9d9190614e65565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c5e60008383613891565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613c919061503e565b90600052602060002090601f016020900481019282613cb35760008555613cfa565b82601f10613ccc57805160ff1916838001178555613cfa565b82800160010185558215613cfa579182015b82811115613cf9578251825591602001919060010190613cde565b5b509050613d079190613d0b565b5090565b5b80821115613d24576000816000905550600101613d0c565b5090565b6000613d3b613d3684614dab565b614d86565b905082815260208101848484011115613d5757613d5661519d565b5b613d62848285614ffc565b509392505050565b6000613d7d613d7884614ddc565b614d86565b905082815260208101848484011115613d9957613d9861519d565b5b613da4848285614ffc565b509392505050565b6000613dbf613dba84614ddc565b614d86565b905082815260208101848484011115613ddb57613dda61519d565b5b613de684828561500b565b509392505050565b600081359050613dfd81615760565b92915050565b600081359050613e1281615777565b92915050565b600081359050613e278161578e565b92915050565b600081519050613e3c8161578e565b92915050565b600082601f830112613e5757613e56615198565b5b8135613e67848260208601613d28565b91505092915050565b600082601f830112613e8557613e84615198565b5b8135613e95848260208601613d6a565b91505092915050565b600082601f830112613eb357613eb2615198565b5b8151613ec3848260208601613dac565b91505092915050565b600081359050613edb816157a5565b92915050565b600081359050613ef0816157bc565b92915050565b600060208284031215613f0c57613f0b6151a7565b5b6000613f1a84828501613dee565b91505092915050565b60008060408385031215613f3a57613f396151a7565b5b6000613f4885828601613dee565b9250506020613f5985828601613dee565b9150509250929050565b600080600060608486031215613f7c57613f7b6151a7565b5b6000613f8a86828701613dee565b9350506020613f9b86828701613dee565b9250506040613fac86828701613ee1565b9150509250925092565b60008060008060808587031215613fd057613fcf6151a7565b5b6000613fde87828801613dee565b9450506020613fef87828801613dee565b935050604061400087828801613ee1565b925050606085013567ffffffffffffffff811115614021576140206151a2565b5b61402d87828801613e42565b91505092959194509250565b600080604083850312156140505761404f6151a7565b5b600061405e85828601613dee565b925050602061406f85828601613e03565b9150509250929050565b600080604083850312156140905761408f6151a7565b5b600061409e85828601613dee565b92505060206140af85828601613ee1565b9150509250929050565b6000602082840312156140cf576140ce6151a7565b5b60006140dd84828501613e18565b91505092915050565b6000602082840312156140fc576140fb6151a7565b5b600061410a84828501613e2d565b91505092915050565b600060208284031215614129576141286151a7565b5b600082013567ffffffffffffffff811115614147576141466151a2565b5b61415384828501613e70565b91505092915050565b600060208284031215614172576141716151a7565b5b600082015167ffffffffffffffff8111156141905761418f6151a2565b5b61419c84828501613e9e565b91505092915050565b6000602082840312156141bb576141ba6151a7565b5b60006141c984828501613ecc565b91505092915050565b6000602082840312156141e8576141e76151a7565b5b60006141f684828501613ee1565b91505092915050565b60008060408385031215614216576142156151a7565b5b600061422485828601613ee1565b925050602061423585828601613dee565b9150509250929050565b60008060408385031215614256576142556151a7565b5b600061426485828601613ee1565b925050602061427585828601613ee1565b9150509250929050565b61428881614f7a565b82525050565b61429781614f8c565b82525050565b60006142a882614e22565b6142b28185614e38565b93506142c281856020860161500b565b6142cb816151ac565b840191505092915050565b60006142e182614e2d565b6142eb8185614e49565b93506142fb81856020860161500b565b614304816151ac565b840191505092915050565b6000815461431c8161503e565b6143268186614e49565b94506001821660008114614341576001811461435357614386565b60ff1983168652602086019350614386565b61435c85614e0d565b60005b8381101561437e5781548189015260018201915060208101905061435f565b808801955050505b50505092915050565b6000815461439c8161503e565b6143a68186614e5a565b945060018216600081146143c157600181146143d257614405565b60ff19831686528186019350614405565b6143db85614e0d565b60005b838110156143fd578154818901526001820191506020810190506143de565b838801955050505b50505092915050565b600061441b601883614e49565b9150614426826151bd565b602082019050919050565b600061443e603283614e49565b9150614449826151e6565b604082019050919050565b6000614461602683614e49565b915061446c82615235565b604082019050919050565b6000614484602583614e49565b915061448f82615284565b604082019050919050565b60006144a7601c83614e49565b91506144b2826152d3565b602082019050919050565b60006144ca602483614e49565b91506144d5826152fc565b604082019050919050565b60006144ed601983614e49565b91506144f88261534b565b602082019050919050565b6000614510601483614e49565b915061451b82615374565b602082019050919050565b6000614533602c83614e49565b915061453e8261539d565b604082019050919050565b6000614556603883614e49565b9150614561826153ec565b604082019050919050565b6000614579602a83614e49565b91506145848261543b565b604082019050919050565b600061459c602983614e49565b91506145a78261548a565b604082019050919050565b60006145bf601683614e49565b91506145ca826154d9565b602082019050919050565b60006145e2601883614e49565b91506145ed82615502565b602082019050919050565b6000614605602083614e49565b91506146108261552b565b602082019050919050565b6000614628602c83614e49565b915061463382615554565b604082019050919050565b600061464b602083614e49565b9150614656826155a3565b602082019050919050565b600061466e601a83614e49565b9150614679826155cc565b602082019050919050565b6000614691601c83614e49565b915061469c826155f5565b602082019050919050565b60006146b4601383614e49565b91506146bf8261561e565b602082019050919050565b60006146d7602183614e49565b91506146e282615647565b604082019050919050565b60006146fa603183614e49565b915061470582615696565b604082019050919050565b600061471d601383614e49565b9150614728826156e5565b602082019050919050565b6000614740601f83614e49565b915061474b8261570e565b602082019050919050565b6000614763600c83614e49565b915061476e82615737565b602082019050919050565b61478281614fc4565b82525050565b61479181614ff2565b82525050565b6147a86147a382614ff2565b6150a1565b82525050565b60006147ba828861438f565b91506147c68287614797565b6020820191506147d68286614797565b6020820191506147e68285614797565b6020820191506147f68284614797565b6020820191508190509695505050505050565b600060208201905061481e600083018461427f565b92915050565b6000608082019050614839600083018761427f565b614846602083018661427f565b6148536040830185614788565b8181036060830152614865818461429d565b905095945050505050565b6000604082019050614885600083018561427f565b6148926020830184614788565b9392505050565b60006020820190506148ae600083018461428e565b92915050565b600060208201905081810360008301526148ce81846142d6565b905092915050565b600060608201905081810360008301526148f081866142d6565b90506148ff6020830185614788565b61490c6040830184614788565b949350505050565b600060a082019050818103600083015261492e818861430f565b90508181036020830152614942818761430f565b90506149516040830186614788565b61495e606083018561427f565b818103608083015261497081846142d6565b90509695505050505050565b600060208201905081810360008301526149958161440e565b9050919050565b600060208201905081810360008301526149b581614431565b9050919050565b600060208201905081810360008301526149d581614454565b9050919050565b600060208201905081810360008301526149f581614477565b9050919050565b60006020820190508181036000830152614a158161449a565b9050919050565b60006020820190508181036000830152614a35816144bd565b9050919050565b60006020820190508181036000830152614a55816144e0565b9050919050565b60006020820190508181036000830152614a7581614503565b9050919050565b60006020820190508181036000830152614a9581614526565b9050919050565b60006020820190508181036000830152614ab581614549565b9050919050565b60006020820190508181036000830152614ad58161456c565b9050919050565b60006020820190508181036000830152614af58161458f565b9050919050565b60006020820190508181036000830152614b15816145b2565b9050919050565b60006020820190508181036000830152614b35816145d5565b9050919050565b60006020820190508181036000830152614b55816145f8565b9050919050565b60006020820190508181036000830152614b758161461b565b9050919050565b60006020820190508181036000830152614b958161463e565b9050919050565b60006020820190508181036000830152614bb581614661565b9050919050565b60006020820190508181036000830152614bd581614684565b9050919050565b60006020820190508181036000830152614bf5816146a7565b9050919050565b60006020820190508181036000830152614c15816146ca565b9050919050565b60006020820190508181036000830152614c35816146ed565b9050919050565b60006020820190508181036000830152614c5581614710565b9050919050565b60006020820190508181036000830152614c7581614733565b9050919050565b60006020820190508181036000830152614c9581614756565b9050919050565b6000602082019050614cb16000830184614779565b92915050565b6000602082019050614ccc6000830184614788565b92915050565b600060e082019050614ce7600083018a614788565b8181036020830152614cf9818961430f565b9050614d08604083018861427f565b614d156060830187614788565b8181036080830152614d27818661430f565b905081810360a0830152614d3b818561430f565b905081810360c0830152614d4f818461430f565b905098975050505050505050565b6000604082019050614d726000830185614788565b614d7f6020830184614788565b9392505050565b6000614d90614da1565b9050614d9c8282615070565b919050565b6000604051905090565b600067ffffffffffffffff821115614dc657614dc5615169565b5b614dcf826151ac565b9050602081019050919050565b600067ffffffffffffffff821115614df757614df6615169565b5b614e00826151ac565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e7082614ff2565b9150614e7b83614ff2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614eb057614eaf6150dc565b5b828201905092915050565b6000614ec682614ff2565b9150614ed183614ff2565b925082614ee157614ee061510b565b5b828204905092915050565b6000614ef782614ff2565b9150614f0283614ff2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f3b57614f3a6150dc565b5b828202905092915050565b6000614f5182614ff2565b9150614f5c83614ff2565b925082821015614f6f57614f6e6150dc565b5b828203905092915050565b6000614f8582614fd2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561502957808201518184015260208101905061500e565b83811115615038576000848401525b50505050565b6000600282049050600182168061505657607f821691505b6020821081141561506a5761506961513a565b5b50919050565b615079826151ac565b810181811067ffffffffffffffff8211171561509857615097615169565b5b80604052505050565b6000819050919050565b60006150b682614ff2565b91506150c183614ff2565b9250826150d1576150d061510b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f446f6e6174696f6e2061646472657373206e6f74207365740000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e636f72726563742076616c75652073656e74000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4172746973742061646472657373206e6f742073657400000000000000000000600082015250565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f537570706c792063616e206f6e6c79206265206c6f7765726564000000000000600082015250565b7f416c6c20424c4f4e4b532068617665206265656e206d696e7465642e00000000600082015250565b7f4d696e74696e672069732064697361626c656400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f55524920636f6e7472616374206c6f636b656400000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61576981614f7a565b811461577457600080fd5b50565b61578081614f8c565b811461578b57600080fd5b50565b61579781614f98565b81146157a257600080fd5b50565b6157ae81614fc4565b81146157b957600080fd5b50565b6157c581614ff2565b81146157d057600080fd5b5056fea2646970667358221220f78c681df62da1d854bef2623974cb69e0c8cc7590bb7d3116ef1abbccbacb1f64736f6c63430008070033
Deployed Bytecode
0x60806040526004361061036b5760003560e01c80637de1e536116101c6578063c63adb2b116100f7578063e735b48a11610095578063f1b54ff91161006f578063f1b54ff914610c7c578063f2fde38b14610ca5578063f9c68ff314610cce578063fae2c2f914610cf95761036b565b8063e735b48a14610beb578063e8a3d48514610c14578063e985e9c514610c3f5761036b565b8063d3dd5fe0116100d1578063d3dd5fe014610b43578063d5abeb0114610b5a578063dbbc5a7514610b85578063dbc119d714610bae5761036b565b8063c63adb2b14610ab0578063c87b56dd14610adb578063d060ab4414610b185761036b565b8063b2c7d43611610164578063b99edfb21161013e578063b99edfb2146109df578063bb3bafd614610a0a578063be985ac914610a48578063beb0a41614610a855761036b565b8063b2c7d4361461094e578063b67c25a31461098b578063b88d4fde146109b65761036b565b806395039879116101a0578063950398791461089257806395d89b41146108bd57806396994b88146108e8578063a22cb465146109255761036b565b80637de1e5361461081357806389d3e3071461083e5780638da5cb5b146108675761036b565b806343bc1612116102a0578063675181611161023e5780636b87d24c116102185780636b87d24c1461076957806370a0823114610794578063715018a6146107d15780637284e416146107e85761036b565b8063675181611461070d57806368929c94146107175780636b4ad241146107405761036b565b80635c36cfb91161027a5780635c36cfb91461063f5780635d440160146106685780635dd4cd45146106a55780636352211e146106d05761036b565b806343bc1612146105c0578063549261c1146105eb57806358b3fcbf146106145761036b565b8063221900bf1161030d5780632a03c098116102e75780632a03c098146105175780632a55205a146105425780633ccfd60b1461058057806342842e0e146105975761036b565b8063221900bf146104bb57806323b872dd146104c557806323c5a088146104ee5761036b565b8063095ea7b311610349578063095ea7b31461041557806313faede61461043e578063165afc26146104695780631f584ce4146104925761036b565b806301ffc9a71461037057806306fdde03146103ad578063081812fc146103d8575b600080fd5b34801561037c57600080fd5b50610397600480360381019061039291906140b9565b610d22565b6040516103a49190614899565b60405180910390f35b3480156103b957600080fd5b506103c2610e04565b6040516103cf91906148b4565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906141d2565b610e96565b60405161040c9190614809565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190614079565b610f1b565b005b34801561044a57600080fd5b50610453611033565b6040516104609190614cb7565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b91906141d2565b611039565b005b34801561049e57600080fd5b506104b960048036038101906104b491906141a5565b6110bf565b005b6104c361115b565b005b3480156104d157600080fd5b506104ec60048036038101906104e79190613f63565b611244565b005b3480156104fa57600080fd5b50610515600480360381019061051091906141d2565b6112a4565b005b34801561052357600080fd5b5061052c61132a565b6040516105399190614809565b60405180910390f35b34801561054e57600080fd5b506105696004803603810190610564919061423f565b611350565b604051610577929190614870565b60405180910390f35b34801561058c57600080fd5b506105956113e7565b005b3480156105a357600080fd5b506105be60048036038101906105b99190613f63565b611684565b005b3480156105cc57600080fd5b506105d56116a4565b6040516105e291906148b4565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190614113565b611732565b005b34801561062057600080fd5b506106296117c8565b6040516106369190614809565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190613ef6565b6117ee565b005b34801561067457600080fd5b5061068f600480360381019061068a91906141d2565b6118ae565b60405161069c91906148b4565b60405180910390f35b3480156106b157600080fd5b506106ba611ac0565b6040516106c79190614c9c565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f291906141d2565b611ad4565b6040516107049190614809565b60405180910390f35b610715611b86565b005b34801561072357600080fd5b5061073e60048036038101906107399190613ef6565b611d6a565b005b34801561074c57600080fd5b5061076760048036038101906107629190613ef6565b611e2a565b005b34801561077557600080fd5b5061077e611f34565b60405161078b91906148b4565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190613ef6565b611fc2565b6040516107c89190614cb7565b60405180910390f35b3480156107dd57600080fd5b506107e661207a565b005b3480156107f457600080fd5b506107fd612102565b60405161080a91906148b4565b60405180910390f35b34801561081f57600080fd5b50610828612190565b60405161083591906148b4565b60405180910390f35b34801561084a57600080fd5b5061086560048036038101906108609190613ef6565b61221e565b005b34801561087357600080fd5b5061087c612334565b6040516108899190614809565b60405180910390f35b34801561089e57600080fd5b506108a761235e565b6040516108b49190614899565b60405180910390f35b3480156108c957600080fd5b506108d2612371565b6040516108df91906148b4565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a91906141ff565b612403565b60405161091c91906148b4565b60405180910390f35b34801561093157600080fd5b5061094c60048036038101906109479190614039565b61253f565b005b34801561095a57600080fd5b50610975600480360381019061097091906141d2565b612555565b6040516109829190614cb7565b60405180910390f35b34801561099757600080fd5b506109a0612582565b6040516109ad9190614899565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d89190613fb6565b612595565b005b3480156109eb57600080fd5b506109f46125f7565b604051610a0191906148b4565b60405180910390f35b348015610a1657600080fd5b50610a316004803603810190610a2c91906141d2565b612685565b604051610a3f929190614870565b60405180910390f35b348015610a5457600080fd5b50610a6f6004803603810190610a6a91906141d2565b612702565b604051610a7c91906148b4565b60405180910390f35b348015610a9157600080fd5b50610a9a61276e565b604051610aa791906148b4565b60405180910390f35b348015610abc57600080fd5b50610ac56127fc565b604051610ad29190614cb7565b60405180910390f35b348015610ae757600080fd5b50610b026004803603810190610afd91906141d2565b612802565b604051610b0f91906148b4565b60405180910390f35b348015610b2457600080fd5b50610b2d61291a565b604051610b3a9190614809565b60405180910390f35b348015610b4f57600080fd5b50610b58612940565b005b348015610b6657600080fd5b50610b6f6129e8565b604051610b7c9190614c9c565b60405180910390f35b348015610b9157600080fd5b50610bac6004803603810190610ba79190614113565b6129fc565b005b348015610bba57600080fd5b50610bd56004803603810190610bd091906141d2565b612a92565b604051610be29190614cb7565b60405180910390f35b348015610bf757600080fd5b50610c126004803603810190610c0d9190614113565b612aaa565b005b348015610c2057600080fd5b50610c29612b40565b604051610c3691906148b4565b60405180910390f35b348015610c4b57600080fd5b50610c666004803603810190610c619190613f23565b612d41565b604051610c739190614899565b60405180910390f35b348015610c8857600080fd5b50610ca36004803603810190610c9e9190614113565b612dd5565b005b348015610cb157600080fd5b50610ccc6004803603810190610cc79190613ef6565b612e6b565b005b348015610cda57600080fd5b50610ce3612f63565b604051610cf09190614cb7565b60405180910390f35b348015610d0557600080fd5b50610d206004803603810190610d1b91906141a5565b612f68565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ded57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610dfd5750610dfc8261305e565b5b9050919050565b606060008054610e139061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3f9061503e565b8015610e8c5780601f10610e6157610100808354040283529160200191610e8c565b820191906000526020600020905b815481529060010190602001808311610e6f57829003601f168201915b5050505050905090565b6000610ea1826130c8565b610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed790614b5c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f2682611ad4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90614bfc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fb6613134565b73ffffffffffffffffffffffffffffffffffffffff161480610fe55750610fe481610fdf613134565b612d41565b5b611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90614a9c565b60405180910390fd5b61102e838361313c565b505050565b600a5481565b611041613134565b73ffffffffffffffffffffffffffffffffffffffff1661105f612334565b73ffffffffffffffffffffffffffffffffffffffff16146110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90614b7c565b60405180910390fd5b8060148190555050565b6110c7613134565b73ffffffffffffffffffffffffffffffffffffffff166110e5612334565b73ffffffffffffffffffffffffffffffffffffffff161461113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290614b7c565b60405180910390fd5b80601760006101000a81548161ffff021916908361ffff16021790555050565b611163613134565b73ffffffffffffffffffffffffffffffffffffffff16611181612334565b73ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90614b7c565b60405180910390fd5b600a5460026111e69190614eec565b3414611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90614a5c565b60405180910390fd5b6001600960016101000a81548160ff021916908315150217905550565b61125561124f613134565b826131f5565b611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90614c1c565b60405180910390fd5b61129f8383836132d3565b505050565b6112ac613134565b73ffffffffffffffffffffffffffffffffffffffff166112ca612334565b73ffffffffffffffffffffffffffffffffffffffff1614611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790614b7c565b60405180910390fd5b80600a8190555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061135d600861353a565b841061139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590614b1c565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710601454856113d29190614eec565b6113dc9190614ebb565b915091509250929050565b6113ef613134565b73ffffffffffffffffffffffffffffffffffffffff1661140d612334565b73ffffffffffffffffffffffffffffffffffffffff1614611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90614b7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec90614afc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e9061497c565b60405180910390fd5b600060646032476115989190614eec565b6115a29190614ebb565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc82476115ec9190614f46565b9081150290604051600060405180830381858888f19350505050158015611617573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611680573d6000803e3d6000fd5b5050565b61169f83838360405180602001604052806000815250612595565b505050565b600c80546116b19061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546116dd9061503e565b801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b505050505081565b61173a613134565b73ffffffffffffffffffffffffffffffffffffffff16611758612334565b73ffffffffffffffffffffffffffffffffffffffff16146117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590614b7c565b60405180910390fd5b80600e90805190602001906117c4929190613c85565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117f6613134565b73ffffffffffffffffffffffffffffffffffffffff16611814612334565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190614b7c565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606118ba600861353a565b82106118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290614b1c565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638ecfc5e484600d601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601454600e600f60106040518863ffffffff1660e01b815260040161198c9796959493929190614cd2565b60006040518083038186803b1580156119a457600080fd5b505afa1580156119b8573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906119e1919061415c565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ec805b5483600b600088815260200190815260200160002054611a4188612555565b6040518463ffffffff1660e01b8152600401611a5f939291906148d6565b60006040518083038186803b158015611a7757600080fd5b505afa158015611a8b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611ab4919061415c565b90508092505050919050565b601760009054906101000a900461ffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7490614adc565b60405180910390fd5b80915050919050565b60026007541415611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390614c5c565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990614c7c565b60405180910390fd5b600960009054906101000a900460ff16611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8890614bdc565b60405180910390fd5b600a543414611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90614a5c565b60405180910390fd5b601560009054906101000a900461ffff1661ffff16611cf4600861353a565b10611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90614bbc565b60405180910390fd5b6000611d40600861353a565b9050611d4c6008613548565b611d558161355e565b611d5f33826135df565b506001600781905550565b611d72613134565b73ffffffffffffffffffffffffffffffffffffffff16611d90612334565b73ffffffffffffffffffffffffffffffffffffffff1614611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd90614b7c565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611e32613134565b73ffffffffffffffffffffffffffffffffffffffff16611e50612334565b73ffffffffffffffffffffffffffffffffffffffff1614611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d90614b7c565b60405180910390fd5b601560009054906101000a900461ffff1661ffff16611ec5600861353a565b10611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90614bbc565b60405180910390fd5b6000611f11600861353a565b9050611f1d6008613548565b611f268161355e565b611f3082826135df565b5050565b60168054611f419061503e565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6d9061503e565b8015611fba5780601f10611f8f57610100808354040283529160200191611fba565b820191906000526020600020905b815481529060010190602001808311611f9d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90614abc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612082613134565b73ffffffffffffffffffffffffffffffffffffffff166120a0612334565b73ffffffffffffffffffffffffffffffffffffffff16146120f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ed90614b7c565b60405180910390fd5b61210060006135fd565b565b600d805461210f9061503e565b80601f016020809104026020016040519081016040528092919081815260200182805461213b9061503e565b80156121885780601f1061215d57610100808354040283529160200191612188565b820191906000526020600020905b81548152906001019060200180831161216b57829003601f168201915b505050505081565b600e805461219d9061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546121c99061503e565b80156122165780601f106121eb57610100808354040283529160200191612216565b820191906000526020600020905b8154815290600101906020018083116121f957829003601f168201915b505050505081565b612226613134565b73ffffffffffffffffffffffffffffffffffffffff16612244612334565b73ffffffffffffffffffffffffffffffffffffffff161461229a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229190614b7c565b60405180910390fd5b60001515600960019054906101000a900460ff161515146122f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e790614c3c565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960019054906101000a900460ff1681565b6060600180546123809061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546123ac9061503e565b80156123f95780601f106123ce576101008083540402835291602001916123f9565b820191906000526020600020905b8154815290600101906020018083116123dc57829003601f168201915b5050505050905090565b606060008273ffffffffffffffffffffffffffffffffffffffff16905061242a600861353a565b841061246b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246290614b1c565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663afa94d6c600b600088815260200190815260200160002054846040518363ffffffff1660e01b81526004016124dd929190614d5d565b60006040518083038186803b1580156124f557600080fd5b505afa158015612509573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612532919061415c565b9050809250505092915050565b61255161254a613134565b83836136c3565b5050565b60008061256183611ad4565b73ffffffffffffffffffffffffffffffffffffffff16905080915050919050565b600960009054906101000a900460ff1681565b6125a66125a0613134565b836131f5565b6125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc90614c1c565b60405180910390fd5b6125f184848484613830565b50505050565b601080546126049061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546126309061503e565b801561267d5780601f106126525761010080835404028352916020019161267d565b820191906000526020600020905b81548152906001019060200180831161266057829003601f168201915b505050505081565b600080612692600861353a565b83106126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90614b1c565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660145491509150915091565b606061270e600861353a565b821061274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274690614b1c565b60405180910390fd5b60006127638361275e85611ad4565b612403565b905080915050919050565b600f805461277b9061503e565b80601f01602080910402602001604051908101604052809291908181526020018280546127a79061503e565b80156127f45780601f106127c9576101008083540402835291602001916127f4565b820191906000526020600020905b8154815290600101906020018083116127d757829003601f168201915b505050505081565b60145481565b606061280e600861353a565b821061284f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284690614b1c565b60405180910390fd5b600061285a836118ae565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663419fa1fb836040518263ffffffff1660e01b81526004016128b991906148b4565b60006040518083038186803b1580156128d157600080fd5b505afa1580156128e5573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061290e919061415c565b90508092505050919050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612948613134565b73ffffffffffffffffffffffffffffffffffffffff16612966612334565b73ffffffffffffffffffffffffffffffffffffffff16146129bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b390614b7c565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b601560009054906101000a900461ffff1681565b612a04613134565b73ffffffffffffffffffffffffffffffffffffffff16612a22612334565b73ffffffffffffffffffffffffffffffffffffffff1614612a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6f90614b7c565b60405180910390fd5b8060109080519060200190612a8e929190613c85565b5050565b600b6020528060005260406000206000915090505481565b612ab2613134565b73ffffffffffffffffffffffffffffffffffffffff16612ad0612334565b73ffffffffffffffffffffffffffffffffffffffff1614612b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1d90614b7c565b60405180910390fd5b80600d9080519060200190612b3c929190613c85565b5050565b60606000612b61601760009054906101000a900461ffff1661ffff16611ad4565b73ffffffffffffffffffffffffffffffffffffffff1690506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663afa94d6c600b6000601760009054906101000a900461ffff1661ffff16815260200190815260200160002054846040518363ffffffff1660e01b8152600401612bff929190614d5d565b60006040518083038186803b158015612c1757600080fd5b505afa158015612c2b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612c54919061415c565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635b265342600d6010601454601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16876040518663ffffffff1660e01b8152600401612ce1959493929190614914565b60006040518083038186803b158015612cf957600080fd5b505afa158015612d0d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612d36919061415c565b905080935050505090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ddd613134565b73ffffffffffffffffffffffffffffffffffffffff16612dfb612334565b73ffffffffffffffffffffffffffffffffffffffff1614612e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4890614b7c565b60405180910390fd5b80600f9080519060200190612e67929190613c85565b5050565b612e73613134565b73ffffffffffffffffffffffffffffffffffffffff16612e91612334565b73ffffffffffffffffffffffffffffffffffffffff1614612ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ede90614b7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4e906149bc565b60405180910390fd5b612f60816135fd565b50565b603281565b612f70613134565b73ffffffffffffffffffffffffffffffffffffffff16612f8e612334565b73ffffffffffffffffffffffffffffffffffffffff1614612fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdb90614b7c565b60405180910390fd5b601560009054906101000a900461ffff1661ffff168161ffff161061303e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303590614b9c565b60405180910390fd5b80601560006101000a81548161ffff021916908361ffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166131af83611ad4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613200826130c8565b61323f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323690614a7c565b60405180910390fd5b600061324a83611ad4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061328c575061328b8185612d41565b5b806132ca57508373ffffffffffffffffffffffffffffffffffffffff166132b284610e96565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166132f382611ad4565b73ffffffffffffffffffffffffffffffffffffffff1614613349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613340906149dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b090614a1c565b60405180910390fd5b6133c483838361388c565b6133cf60008261313c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461341f9190614f46565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134769190614e65565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613535838383613891565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6000600c8243424460405160200161357a9594939291906147ae565b6040516020818303038152906040528051906020012060001c90506064486135a291906150ab565b606480836135b09190614ebb565b6135ba9190614eec565b6135c49190614e65565b600b6000848152602001908152602001600020819055505050565b6135f9828260405180602001604052806000815250613896565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372990614a3c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516138239190614899565b60405180910390a3505050565b61383b8484846132d3565b613847848484846138f1565b613886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387d9061499c565b60405180910390fd5b50505050565b505050565b505050565b6138a08383613a88565b6138ad60008484846138f1565b6138ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e39061499c565b60405180910390fd5b505050565b60006139128473ffffffffffffffffffffffffffffffffffffffff16613c62565b15613a7b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261393b613134565b8786866040518563ffffffff1660e01b815260040161395d9493929190614824565b602060405180830381600087803b15801561397757600080fd5b505af19250505080156139a857506040513d601f19601f820116820180604052508101906139a591906140e6565b60015b613a2b573d80600081146139d8576040519150601f19603f3d011682016040523d82523d6000602084013e6139dd565b606091505b50600081511415613a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1a9061499c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a80565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aef90614b3c565b60405180910390fd5b613b01816130c8565b15613b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b38906149fc565b60405180910390fd5b613b4d6000838361388c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b9d9190614e65565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c5e60008383613891565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613c919061503e565b90600052602060002090601f016020900481019282613cb35760008555613cfa565b82601f10613ccc57805160ff1916838001178555613cfa565b82800160010185558215613cfa579182015b82811115613cf9578251825591602001919060010190613cde565b5b509050613d079190613d0b565b5090565b5b80821115613d24576000816000905550600101613d0c565b5090565b6000613d3b613d3684614dab565b614d86565b905082815260208101848484011115613d5757613d5661519d565b5b613d62848285614ffc565b509392505050565b6000613d7d613d7884614ddc565b614d86565b905082815260208101848484011115613d9957613d9861519d565b5b613da4848285614ffc565b509392505050565b6000613dbf613dba84614ddc565b614d86565b905082815260208101848484011115613ddb57613dda61519d565b5b613de684828561500b565b509392505050565b600081359050613dfd81615760565b92915050565b600081359050613e1281615777565b92915050565b600081359050613e278161578e565b92915050565b600081519050613e3c8161578e565b92915050565b600082601f830112613e5757613e56615198565b5b8135613e67848260208601613d28565b91505092915050565b600082601f830112613e8557613e84615198565b5b8135613e95848260208601613d6a565b91505092915050565b600082601f830112613eb357613eb2615198565b5b8151613ec3848260208601613dac565b91505092915050565b600081359050613edb816157a5565b92915050565b600081359050613ef0816157bc565b92915050565b600060208284031215613f0c57613f0b6151a7565b5b6000613f1a84828501613dee565b91505092915050565b60008060408385031215613f3a57613f396151a7565b5b6000613f4885828601613dee565b9250506020613f5985828601613dee565b9150509250929050565b600080600060608486031215613f7c57613f7b6151a7565b5b6000613f8a86828701613dee565b9350506020613f9b86828701613dee565b9250506040613fac86828701613ee1565b9150509250925092565b60008060008060808587031215613fd057613fcf6151a7565b5b6000613fde87828801613dee565b9450506020613fef87828801613dee565b935050604061400087828801613ee1565b925050606085013567ffffffffffffffff811115614021576140206151a2565b5b61402d87828801613e42565b91505092959194509250565b600080604083850312156140505761404f6151a7565b5b600061405e85828601613dee565b925050602061406f85828601613e03565b9150509250929050565b600080604083850312156140905761408f6151a7565b5b600061409e85828601613dee565b92505060206140af85828601613ee1565b9150509250929050565b6000602082840312156140cf576140ce6151a7565b5b60006140dd84828501613e18565b91505092915050565b6000602082840312156140fc576140fb6151a7565b5b600061410a84828501613e2d565b91505092915050565b600060208284031215614129576141286151a7565b5b600082013567ffffffffffffffff811115614147576141466151a2565b5b61415384828501613e70565b91505092915050565b600060208284031215614172576141716151a7565b5b600082015167ffffffffffffffff8111156141905761418f6151a2565b5b61419c84828501613e9e565b91505092915050565b6000602082840312156141bb576141ba6151a7565b5b60006141c984828501613ecc565b91505092915050565b6000602082840312156141e8576141e76151a7565b5b60006141f684828501613ee1565b91505092915050565b60008060408385031215614216576142156151a7565b5b600061422485828601613ee1565b925050602061423585828601613dee565b9150509250929050565b60008060408385031215614256576142556151a7565b5b600061426485828601613ee1565b925050602061427585828601613ee1565b9150509250929050565b61428881614f7a565b82525050565b61429781614f8c565b82525050565b60006142a882614e22565b6142b28185614e38565b93506142c281856020860161500b565b6142cb816151ac565b840191505092915050565b60006142e182614e2d565b6142eb8185614e49565b93506142fb81856020860161500b565b614304816151ac565b840191505092915050565b6000815461431c8161503e565b6143268186614e49565b94506001821660008114614341576001811461435357614386565b60ff1983168652602086019350614386565b61435c85614e0d565b60005b8381101561437e5781548189015260018201915060208101905061435f565b808801955050505b50505092915050565b6000815461439c8161503e565b6143a68186614e5a565b945060018216600081146143c157600181146143d257614405565b60ff19831686528186019350614405565b6143db85614e0d565b60005b838110156143fd578154818901526001820191506020810190506143de565b838801955050505b50505092915050565b600061441b601883614e49565b9150614426826151bd565b602082019050919050565b600061443e603283614e49565b9150614449826151e6565b604082019050919050565b6000614461602683614e49565b915061446c82615235565b604082019050919050565b6000614484602583614e49565b915061448f82615284565b604082019050919050565b60006144a7601c83614e49565b91506144b2826152d3565b602082019050919050565b60006144ca602483614e49565b91506144d5826152fc565b604082019050919050565b60006144ed601983614e49565b91506144f88261534b565b602082019050919050565b6000614510601483614e49565b915061451b82615374565b602082019050919050565b6000614533602c83614e49565b915061453e8261539d565b604082019050919050565b6000614556603883614e49565b9150614561826153ec565b604082019050919050565b6000614579602a83614e49565b91506145848261543b565b604082019050919050565b600061459c602983614e49565b91506145a78261548a565b604082019050919050565b60006145bf601683614e49565b91506145ca826154d9565b602082019050919050565b60006145e2601883614e49565b91506145ed82615502565b602082019050919050565b6000614605602083614e49565b91506146108261552b565b602082019050919050565b6000614628602c83614e49565b915061463382615554565b604082019050919050565b600061464b602083614e49565b9150614656826155a3565b602082019050919050565b600061466e601a83614e49565b9150614679826155cc565b602082019050919050565b6000614691601c83614e49565b915061469c826155f5565b602082019050919050565b60006146b4601383614e49565b91506146bf8261561e565b602082019050919050565b60006146d7602183614e49565b91506146e282615647565b604082019050919050565b60006146fa603183614e49565b915061470582615696565b604082019050919050565b600061471d601383614e49565b9150614728826156e5565b602082019050919050565b6000614740601f83614e49565b915061474b8261570e565b602082019050919050565b6000614763600c83614e49565b915061476e82615737565b602082019050919050565b61478281614fc4565b82525050565b61479181614ff2565b82525050565b6147a86147a382614ff2565b6150a1565b82525050565b60006147ba828861438f565b91506147c68287614797565b6020820191506147d68286614797565b6020820191506147e68285614797565b6020820191506147f68284614797565b6020820191508190509695505050505050565b600060208201905061481e600083018461427f565b92915050565b6000608082019050614839600083018761427f565b614846602083018661427f565b6148536040830185614788565b8181036060830152614865818461429d565b905095945050505050565b6000604082019050614885600083018561427f565b6148926020830184614788565b9392505050565b60006020820190506148ae600083018461428e565b92915050565b600060208201905081810360008301526148ce81846142d6565b905092915050565b600060608201905081810360008301526148f081866142d6565b90506148ff6020830185614788565b61490c6040830184614788565b949350505050565b600060a082019050818103600083015261492e818861430f565b90508181036020830152614942818761430f565b90506149516040830186614788565b61495e606083018561427f565b818103608083015261497081846142d6565b90509695505050505050565b600060208201905081810360008301526149958161440e565b9050919050565b600060208201905081810360008301526149b581614431565b9050919050565b600060208201905081810360008301526149d581614454565b9050919050565b600060208201905081810360008301526149f581614477565b9050919050565b60006020820190508181036000830152614a158161449a565b9050919050565b60006020820190508181036000830152614a35816144bd565b9050919050565b60006020820190508181036000830152614a55816144e0565b9050919050565b60006020820190508181036000830152614a7581614503565b9050919050565b60006020820190508181036000830152614a9581614526565b9050919050565b60006020820190508181036000830152614ab581614549565b9050919050565b60006020820190508181036000830152614ad58161456c565b9050919050565b60006020820190508181036000830152614af58161458f565b9050919050565b60006020820190508181036000830152614b15816145b2565b9050919050565b60006020820190508181036000830152614b35816145d5565b9050919050565b60006020820190508181036000830152614b55816145f8565b9050919050565b60006020820190508181036000830152614b758161461b565b9050919050565b60006020820190508181036000830152614b958161463e565b9050919050565b60006020820190508181036000830152614bb581614661565b9050919050565b60006020820190508181036000830152614bd581614684565b9050919050565b60006020820190508181036000830152614bf5816146a7565b9050919050565b60006020820190508181036000830152614c15816146ca565b9050919050565b60006020820190508181036000830152614c35816146ed565b9050919050565b60006020820190508181036000830152614c5581614710565b9050919050565b60006020820190508181036000830152614c7581614733565b9050919050565b60006020820190508181036000830152614c9581614756565b9050919050565b6000602082019050614cb16000830184614779565b92915050565b6000602082019050614ccc6000830184614788565b92915050565b600060e082019050614ce7600083018a614788565b8181036020830152614cf9818961430f565b9050614d08604083018861427f565b614d156060830187614788565b8181036080830152614d27818661430f565b905081810360a0830152614d3b818561430f565b905081810360c0830152614d4f818461430f565b905098975050505050505050565b6000604082019050614d726000830185614788565b614d7f6020830184614788565b9392505050565b6000614d90614da1565b9050614d9c8282615070565b919050565b6000604051905090565b600067ffffffffffffffff821115614dc657614dc5615169565b5b614dcf826151ac565b9050602081019050919050565b600067ffffffffffffffff821115614df757614df6615169565b5b614e00826151ac565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e7082614ff2565b9150614e7b83614ff2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614eb057614eaf6150dc565b5b828201905092915050565b6000614ec682614ff2565b9150614ed183614ff2565b925082614ee157614ee061510b565b5b828204905092915050565b6000614ef782614ff2565b9150614f0283614ff2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f3b57614f3a6150dc565b5b828202905092915050565b6000614f5182614ff2565b9150614f5c83614ff2565b925082821015614f6f57614f6e6150dc565b5b828203905092915050565b6000614f8582614fd2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561502957808201518184015260208101905061500e565b83811115615038576000848401525b50505050565b6000600282049050600182168061505657607f821691505b6020821081141561506a5761506961513a565b5b50919050565b615079826151ac565b810181811067ffffffffffffffff8211171561509857615097615169565b5b80604052505050565b6000819050919050565b60006150b682614ff2565b91506150c183614ff2565b9250826150d1576150d061510b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f446f6e6174696f6e2061646472657373206e6f74207365740000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e636f72726563742076616c75652073656e74000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4172746973742061646472657373206e6f742073657400000000000000000000600082015250565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f537570706c792063616e206f6e6c79206265206c6f7765726564000000000000600082015250565b7f416c6c20424c4f4e4b532068617665206265656e206d696e7465642e00000000600082015250565b7f4d696e74696e672069732064697361626c656400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f55524920636f6e7472616374206c6f636b656400000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61576981614f7a565b811461577457600080fd5b50565b61578081614f8c565b811461578b57600080fd5b50565b61579781614f98565b81146157a257600080fd5b50565b6157ae81614fc4565b81146157b957600080fd5b50565b6157c581614ff2565b81146157d057600080fd5b5056fea2646970667358221220f78c681df62da1d854bef2623974cb69e0c8cc7590bb7d3116ef1abbccbacb1f64736f6c63430008070033
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.