ERC-721
Overview
Max Total Supply
8,412 PEACE
Holders
1,720
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 PEACELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YouByPeace
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./IYouByPeaceRenderer.sol"; /* YouByPeace.sol Contract by @NftDoyler */ contract YouByPeace is Ownable, ERC721A { bytes32 public merkleRootFree = 0xddfc07e15cf29a03c4380032195f96ba84a17bc58c095ef656d94985de7eb5af; bytes32 public merkleRootAllowList = 0x4dc44a7fb4784d9c6186b83e07ea3865f125665f365b2c79b8cb6814732882ae; uint256 constant public MAX_SUPPLY = 8888; uint256 public freeListMax = 22; uint256 public allowListMax = 516; uint256 public publicMintMax = 8350; uint256 constant public ALLOW_LIST_PRICE = 0.018 ether; uint256 constant public PUBLIC_PRICE = 0.018 ether; uint256 public PUBLIC_MINT_LIMIT = 10; uint256 public totalSupplyPublic; // Remaining 15% goes to Treasury uint256 internal DEV_WITHDRAW_PERCENT = 850; // Gotta keep some for degen and some for the business! uint256 internal DEV_WITHDRAW_PERCENT_2 = 150; uint256 internal ARTIST_WITHDRAW_PERCENT = 4500; uint256 internal FOUNDER_WITHDRAW_PERCENT = 3000; // A block to use in the future to shift the tokenIDs uint256 public futureBlockToUse; // How far to shift the tokenID during the reveal uint256 public tokenIdShift; string public revealedURI; string public hiddenURI = "ipfs://QmVBqpDT1jSnXVR8bW4RaZeMa95QTVLQtrURp19rsjjpn4"; // OpenSea CONTRACT_URI - https://docs.opensea.io/docs/contract-level-metadata string constant public CONTRACT_URI = "ipfs://QmVBqpDT1jSnXVR8bW4RaZeMa95QTVLQtrURp19rsjjpn4"; // Provance hash of the un-shifted images string public provanceHash; bool public paused = true; bool public revealed; bool public customizationPaused; // Payment addresses address constant internal DEV_ADDRESS = 0x31f8933601497fD6Ade6EaEaA6a66b281d238E70; address constant internal DEV_ADDRESS_2 = 0xeD19c8970c7BE64f5AC3f4beBFDDFd571861c3b7; address constant internal ARTIST_ADDRESS = 0x5be0D3BE0C8A6E99A26fC8257d969d38a03c8306; address constant internal FOUNDER_ADDRESS = 0xD3E44Fd29Cc3BbeE78471275ABC56e9948F6482c; address constant internal TREASURY_ADDRESS = 0x92e089149Dc5dBd40F8B7b7949695E6d304Ed0dc; address public externalRenderer; mapping(address => bool) public userMintedFree; mapping(address => bool) public userMintedWL; mapping(address => uint256) public numUserMints; // This is how the token DNA will be stored on-chain while keeping the art off-chain // DNA of 0 will be a randomly generated asset. mapping(uint256 => uint256) public tokenIdToDNA; constructor() ERC721A("YouByPeace", "PEACE") { } /* * $$$$$$$\ $$\ $$\ $$$$$$$$\ $$\ $$\ $$ __$$\ \__| $$ | $$ _____| $$ | \__| $$ | $$ | $$$$$$\ $$\ $$\ $$\ $$$$$$\ $$$$$$\ $$$$$$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ $$$$$$$ |$$ __$$\ $$ |\$$\ $$ |\____$$\\_$$ _| $$ __$$\ $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| $$ ____/ $$ | \__|$$ | \$$\$$ / $$$$$$$ | $$ | $$$$$$$$ | $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ $$ | $$ | $$ | \$$$ / $$ __$$ | $$ |$$\ $$ ____| $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ $$ | $$ | $$ | \$ / \$$$$$$$ | \$$$$ |\$$$$$$$\ $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \__| \__| \__| \_/ \_______| \____/ \_______| \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ // This function is if you want to override the first Token ID# for ERC721A // Note: Fun fact - by overloading this method you save a small amount of gas for minting (technically just the first mint) function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _verifyPublicAllowList(bytes32[] memory _proof, bytes32 _root) internal view returns (bool) { return MerkleProof.verify(_proof, _root, keccak256(abi.encodePacked(msg.sender))); } function refundOverpay(uint256 price) private { if (msg.value > price) { (bool succ, ) = payable(msg.sender).call{ value: (msg.value - price) }(""); require(succ, "Transfer failed"); } else if (msg.value < price) { revert("Not enough ETH sent"); } } /* * $$$$$$$\ $$\ $$\ $$\ $$$$$$$$\ $$\ $$\ $$ __$$\ $$ | $$ |\__| $$ _____| $$ | \__| $$ | $$ |$$\ $$\ $$$$$$$\ $$ |$$\ $$$$$$$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ $$$$$$$ |$$ | $$ |$$ __$$\ $$ |$$ |$$ _____| $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| $$ ____/ $$ | $$ |$$ | $$ |$$ |$$ |$$ / $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ $$ | $$ | $$ |$$ | $$ |$$ |$$ |$$ | $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ $$ | \$$$$$$ |$$$$$$$ |$$ |$$ |\$$$$$$$\ $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \__| \______/ \_______/ \__|\__| \_______| \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ function freeMint(bytes32[] memory proof) external payable mintCompliance(1) { require(msg.value == 0, "This phase is free"); require(!userMintedFree[msg.sender], "User already minted free"); require(_verifyPublicAllowList(proof, merkleRootFree), "User not on free list"); userMintedFree[msg.sender] = true; _mint(msg.sender, 1); } function allowListMint(bytes32[] memory proof) external payable mintCompliance(1) { require(_verifyPublicAllowList(proof, merkleRootAllowList), "User not on WL"); uint256 price = ALLOW_LIST_PRICE; require(!userMintedWL[msg.sender], "User already minted WL"); refundOverpay(price); userMintedWL[msg.sender] = true; _mint(msg.sender, 1); } // Note: By changing all 3 require statements from <= to <, some gas could be saved // That said, this is a savings of about 0.005% per publicMint for // a general loss in readability function publicMint(uint256 quantity) external payable mintCompliance(quantity) { require(totalSupplyPublic + quantity <= publicMintMax, "Public supply out"); uint256 price = PUBLIC_PRICE; uint256 currMints = numUserMints[msg.sender]; require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit"); refundOverpay(price * quantity); numUserMints[msg.sender] = (currMints + quantity); totalSupplyPublic += quantity; _mint(msg.sender, quantity); } function setTokenDNA(uint256 _tokenId, uint256 _dna) external payable { require(!customizationPaused, "Customization paused"); require(ownerOf(_tokenId) == msg.sender || owner() == msg.sender, "Not your token"); tokenIdToDNA[_tokenId] = _dna; } /* * $$\ $$\ $$\ $$$$$$$$\ $$\ $$\ $$ | $$ |\__| $$ _____| $$ | \__| $$ | $$ |$$\ $$$$$$\ $$\ $$\ $$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ \$$\ $$ |$$ |$$ __$$\ $$ | $$ | $$ | $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| \$$\$$ / $$ |$$$$$$$$ |$$ | $$ | $$ | $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ \$$$ / $$ |$$ ____|$$ | $$ | $$ | $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ \$ / $$ |\$$$$$$$\ \$$$$$\$$$$ | $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \_/ \__| \_______| \_____\____/ \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { // Note: You don't REALLY need this require statement since nothing should be querying for non-existing tokens after reveal. // That said, it's a public view method so gas efficiency shouldn't come into play. require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); uint256 shiftedTokenId = _tokenId + tokenIdShift; if (shiftedTokenId > MAX_SUPPLY) { shiftedTokenId = shiftedTokenId - MAX_SUPPLY; } if (revealed) { return IYouByPeaceRenderer(externalRenderer).tokenURI(shiftedTokenId); } else { return hiddenURI; } } function contractURI() public view returns (string memory) { return CONTRACT_URI; } function verifyPublicAllowList(address _address, bytes32[] memory _proof, bytes32 _root) public pure returns (bool) { return MerkleProof.verify(_proof, _root, keccak256(abi.encodePacked(_address))); } function getDnaByTokenId(uint256 _tokenId) public view returns (uint256) { return tokenIdToDNA[_tokenId]; } // Not the most efficient function, but it's a view // This allows us to get the entire DNA mapping at once, for image generation function getTokenDNA() public view returns (uint256[] memory) { uint256[] memory fullDNA = new uint[](MAX_SUPPLY); for (uint256 i = 0; i < MAX_SUPPLY; i++) { fullDNA[i] = tokenIdToDNA[i+1]; } return fullDNA; } /* * $$$$$$\ $$$$$$$$\ $$\ $$\ $$ __$$\ $$ _____| $$ | \__| $$ / $$ |$$\ $$\ $$\ $$$$$$$\ $$$$$$\ $$$$$$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ $$ | $$ |$$ | $$ | $$ |$$ __$$\ $$ __$$\ $$ __$$\ $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| $$ | $$ |$$ | $$ | $$ |$$ | $$ |$$$$$$$$ |$$ | \__| $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ $$ | $$ |$$ | $$ | $$ |$$ | $$ |$$ ____|$$ | $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ $$$$$$ |\$$$$$\$$$$ |$$ | $$ |\$$$$$$$\ $$ | $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \______/ \_____\____/ \__| \__| \_______|\__| \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ function setFreeMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRootFree = _merkleRoot; } function setAllowListMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRootAllowList = _merkleRoot; } function setFreeMintMax(uint256 _freeMintMax) public onlyOwner { freeListMax = _freeMintMax; } function setAllowListMax(uint256 _allowListMax) public onlyOwner { allowListMax = _allowListMax; publicMintMax = MAX_SUPPLY - freeListMax - _allowListMax; } function setPublicLimitTotal(uint256 _publicLimitTotal) public onlyOwner { PUBLIC_MINT_LIMIT = _publicLimitTotal; } function setDevWithdrawCut(uint256 _devPercentage) public onlyOwner { DEV_WITHDRAW_PERCENT = _devPercentage; } function setArtistWithdrawCut(uint256 _artistPercentage) public onlyOwner { ARTIST_WITHDRAW_PERCENT = _artistPercentage; } function setBaseURI(string memory _baseUri) public onlyOwner { revealedURI = _baseUri; } // Note: This method can be hidden/removed if this is a constant. function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenURI = _hiddenMetadataUri; } function revealCollection(bool _revealed, string memory _baseUri) public onlyOwner { revealed = _revealed; revealedURI = _baseUri; } function setPaused(bool _state) public onlyOwner { paused = _state; } function commit(string memory _provanceHash) external payable onlyOwner { // Can only commit once // Note: A reveal has to happen within 256 blocks or this will break require(futureBlockToUse == 0, "Committed already"); provanceHash = _provanceHash; futureBlockToUse = block.number + 5; } function reveal() external payable onlyOwner { require(futureBlockToUse != 0, "Commit first"); require(block.number >= futureBlockToUse, "Wait for the future block"); require(tokenIdShift == 0, "Revealed already"); // Note: This is technically insufficient randomness, as a miner can // just throw away blocks with hashes they don't want. // That said, I don't expect this free mint during goblin town // to have > 3 ETH incentives. // https://soliditydeveloper.com/2019-06-23-randomness-blockchain // Note: We add one to this just in case the casted hash is // cleanly divisibly by MAX_SUPPLY // Trust me, this doesn't break randomness tokenIdShift = (uint256(blockhash(futureBlockToUse)) % MAX_SUPPLY) + 1; revealed = true; } function setCustomizationPaused(bool _state) public onlyOwner { customizationPaused = _state; } function setRendererAddress(address _renderer) public onlyOwner { externalRenderer = _renderer; } function withdraw() external payable onlyOwner { // Get the current funds to calculate initial percentages uint256 currBalance = address(this).balance; (bool succ, ) = payable(DEV_ADDRESS).call{ value: (currBalance * DEV_WITHDRAW_PERCENT) / 10000 }(""); require(succ, "Dev transfer failed"); (succ, ) = payable(DEV_ADDRESS_2).call{ value: (currBalance * DEV_WITHDRAW_PERCENT_2) / 10000 }(""); require(succ, "Dev transfer2 failed"); (succ, ) = payable(ARTIST_ADDRESS).call{ value: (currBalance * ARTIST_WITHDRAW_PERCENT) / 10000 }(""); require(succ, "Artist transfer failed"); (succ, ) = payable(FOUNDER_ADDRESS).call{ value: (currBalance * FOUNDER_WITHDRAW_PERCENT) / 10000 }(""); require(succ, "Founder transfer failed"); // Withdraw the ENTIRE remaining balance to the treasury wallet (succ, ) = payable(TREASURY_ADDRESS).call{ value: address(this).balance }(""); require(succ, "Treasury (remaining) transfer failed"); } // Owner-only mint functionality to "Airdrop" mints to specific users // Note: These will likely end up hidden on OpenSea function mintToUser(uint256 quantity, address receiver) public onlyOwner { require(totalSupply() + quantity <= MAX_SUPPLY, "toUser MAX_SUPPLY"); _mint(receiver, quantity); } /* * $$\ $$\ $$\ $$\ $$$$$$\ $$\ $$$\ $$$ | $$ |\__|$$ __$$\ \__| $$$$\ $$$$ | $$$$$$\ $$$$$$$ |$$\ $$ / \__|$$\ $$$$$$\ $$$$$$\ $$$$$$$\ $$\$$\$$ $$ |$$ __$$\ $$ __$$ |$$ |$$$$\ $$ |$$ __$$\ $$ __$$\ $$ _____| $$ \$$$ $$ |$$ / $$ |$$ / $$ |$$ |$$ _| $$ |$$$$$$$$ |$$ | \__|\$$$$$$\ $$ |\$ /$$ |$$ | $$ |$$ | $$ |$$ |$$ | $$ |$$ ____|$$ | \____$$\ $$ | \_/ $$ |\$$$$$$ |\$$$$$$$ |$$ |$$ | $$ |\$$$$$$$\ $$ | $$$$$$$ | \__| \__| \______/ \_______|\__|\__| \__| \_______|\__| \_______/ * */ modifier mintCompliance(uint256 quantity) { require(!paused, "Contract is paused"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left"); require(tx.origin == msg.sender, "No contract minting"); _; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// 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 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 (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
//SPDX-License-Identifier: MIT pragma solidity ^0.8.7; interface IYouByPeaceRenderer { function tokenURI(uint256 _tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); }
// 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.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 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (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 (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 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": true, "runs": 800 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ALLOW_LIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_provanceHash","type":"string"}],"name":"commit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"customizationPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"externalRenderer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeListMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"futureBlockToUse","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getDnaByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenDNA","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","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":[],"name":"merkleRootAllowList","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootFree","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_baseUri","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedURI","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allowListMax","type":"uint256"}],"name":"setAllowListMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setAllowListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_artistPercentage","type":"uint256"}],"name":"setArtistWithdrawCut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setCustomizationPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devPercentage","type":"uint256"}],"name":"setDevWithdrawCut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setFreeMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintMax","type":"uint256"}],"name":"setFreeMintMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicLimitTotal","type":"uint256"}],"name":"setPublicLimitTotal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_renderer","type":"address"}],"name":"setRendererAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_dna","type":"uint256"}],"name":"setTokenDNA","outputs":[],"stateMutability":"payable","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":"tokenIdShift","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdToDNA","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"verifyPublicAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
7fddfc07e15cf29a03c4380032195f96ba84a17bc58c095ef656d94985de7eb5af6009557f4dc44a7fb4784d9c6186b83e07ea3865f125665f365b2c79b8cb6814732882ae600a9081556016600b55610204600c5561209e600d55600e556103526010556096601155611194601255610bb860135560e0604052603560808181529062003a1e60a03980516200009e91601791602090910190620001a1565b506019805460ff19166001179055348015620000b957600080fd5b506040518060400160405280600a815260200169596f754279506561636560b01b81525060405180604001604052806005815260200164504541434560d81b815250620001156200010f6200014d60201b60201c565b62000151565b81516200012a906003906020850190620001a1565b50805162000140906004906020840190620001a1565b5050600180555062000284565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001af9062000247565b90600052602060002090601f016020900481019282620001d357600085556200021e565b82601f10620001ee57805160ff19168380011785556200021e565b828001600101855582156200021e579182015b828111156200021e57825182559160200191906001019062000201565b506200022c92915062000230565b5090565b5b808211156200022c576000815560010162000231565b600181811c908216806200025c57607f821691505b602082108114156200027e57634e487b7160e01b600052602260045260246000fd5b50919050565b61378a80620002946000396000f3fe6080604052600436106104145760003560e01c806370a0823111610228578063a556f60f11610128578063c87b56dd116100bb578063e8a3d4851161008a578063ea7a42e41161006f578063ea7a42e414610b89578063f2fde38b14610ba9578063f7e8d6ea14610bc957600080fd5b8063e8a3d48514610b2b578063e985e9c514610b4057600080fd5b8063c87b56dd14610ab5578063ca3a7ae614610ad5578063d025a4e014610af5578063db64154714610b0b57600080fd5b8063b9b2378d116100f7578063b9b2378d14610a61578063bceae77b14610a74578063c6278b1614610a8a578063c719858114610aa057600080fd5b8063a556f60f14610a01578063ad570dd51461078f578063b06cfa6414610a21578063b88d4fde14610a4157600080fd5b80638cc54e7f116101bb57806395d89b411161018a5780639d4c17b51161016f5780639d4c17b5146109c3578063a22cb465146109d9578063a475b5dd146109f957600080fd5b806395d89b411461099b5780639867db74146109b057600080fd5b80638cc54e7f146109325780638da5cb5b146109475780639007bd7214610965578063959e742c1461098557600080fd5b80637a8ffb32116101f75780637a8ffb32146108bc5780637aeb7242146108dc57806388d15d501461090957806389ba959c1461091c57600080fd5b806370a0823114610847578063715018a614610867578063766f78e01461087c57806378930f911461089c57600080fd5b80633ccfd60b1161033357806356b4f673116102c6578063611f3f1011610295578063638df30b1161027a578063638df30b146107ca57806364f64076146107ea5780636e5ed9791461081a57600080fd5b8063611f3f101461078f5780636352211e146107aa57600080fd5b806356b4f6731461072d5780635c975abb146107425780635cfe6b841461075c5780635ed3e25e1461076f57600080fd5b80634fdd43cb116103025780634fdd43cb146106b857806351830227146106d857806355f804b3146106f7578063563dfdd81461071757600080fd5b80633ccfd60b1461063657806340d92f061461063e57806342842e0e1461066b578063438b63001461068b57600080fd5b806316c38b3c116103ab5780632db115441161037a5780632db11544146105b657806331a6f057146105c957806332cb6b0c146105f9578063351e4d501461060f57600080fd5b806316c38b3c1461054357806318160ddd146105635780631e23696f1461058057806323b872dd1461059657600080fd5b806306fdde03116103e757806306fdde03146104b4578063081812fc146104c9578063095ea7b3146105015780630fe22f781461052357600080fd5b806301dd38a21461041957806301ffc9a71461044e578063030e93451461046e5780630458074e14610492575b600080fd5b34801561042557600080fd5b506104396104343660046131fa565b610bde565b60405190151581526020015b60405180910390f35b34801561045a57600080fd5b5061043961046936600461335c565b610c2c565b34801561047a57600080fd5b50610484600a5481565b604051908152602001610445565b34801561049e57600080fd5b506104a7610c7e565b6040516104459190613533565b3480156104c057600080fd5b506104a7610d0c565b3480156104d557600080fd5b506104e96104e4366004613343565b610d9e565b6040516001600160a01b039091168152602001610445565b34801561050d57600080fd5b5061052161051c36600461327b565b610de2565b005b34801561052f57600080fd5b5061052161053e366004613343565b610e69565b34801561054f57600080fd5b5061052161055e3660046132da565b610ebb565b34801561056f57600080fd5b506002546001540360001901610484565b34801561058c57600080fd5b50610484600f5481565b3480156105a257600080fd5b506105216105b1366004613142565b610f16565b6105216105c4366004613343565b610f21565b3480156105d557600080fd5b506104396105e43660046130f4565b601b6020526000908152604090205460ff1681565b34801561060557600080fd5b506104846122b881565b34801561061b57600080fd5b506019546104e990630100000090046001600160a01b031681565b610521611144565b34801561064a57600080fd5b50610484610659366004613343565b6000908152601d602052604090205490565b34801561067757600080fd5b50610521610686366004613142565b61155f565b34801561069757600080fd5b506106ab6106a63660046130f4565b61157a565b60405161044591906134ef565b3480156106c457600080fd5b506105216106d3366004613396565b61165b565b3480156106e457600080fd5b5060195461043990610100900460ff1681565b34801561070357600080fd5b50610521610712366004613396565b6116b6565b34801561072357600080fd5b50610484600b5481565b34801561073957600080fd5b506104a7611711565b34801561074e57600080fd5b506019546104399060ff1681565b61052161076a3660046132a5565b61172d565b34801561077b57600080fd5b5061052161078a3660046132f5565b611917565b34801561079b57600080fd5b50610484663ff2e795f5000081565b3480156107b657600080fd5b506104e96107c5366004613343565b611985565b3480156107d657600080fd5b506105216107e5366004613343565b611997565b3480156107f657600080fd5b506104396108053660046130f4565b601a6020526000908152604090205460ff1681565b34801561082657600080fd5b50610484610835366004613343565b601d6020526000908152604090205481565b34801561085357600080fd5b506104846108623660046130f4565b6119e4565b34801561087357600080fd5b50610521611a33565b34801561088857600080fd5b50610521610897366004613343565b611a87565b3480156108a857600080fd5b506105216108b7366004613343565b611ad4565b3480156108c857600080fd5b506105216108d7366004613343565b611b21565b3480156108e857600080fd5b506104846108f73660046130f4565b601c6020526000908152604090205481565b6105216109173660046132a5565b611b8f565b34801561092857600080fd5b5061048460095481565b34801561093e57600080fd5b506104a7611db5565b34801561095357600080fd5b506000546001600160a01b03166104e9565b34801561097157600080fd5b50610521610980366004613442565b611dc2565b34801561099157600080fd5b5061048460155481565b3480156109a757600080fd5b506104a7611e7d565b6105216109be366004613396565b611e8c565b3480156109cf57600080fd5b5061048460145481565b3480156109e557600080fd5b506105216109f4366004613251565b611f49565b610521611fdf565b348015610a0d57600080fd5b50610521610a1c3660046130f4565b612148565b348015610a2d57600080fd5b50610521610a3c366004613343565b6121d1565b348015610a4d57600080fd5b50610521610a5c36600461317e565b61221e565b610521610a6f366004613465565b612262565b348015610a8057600080fd5b50610484600e5481565b348015610a9657600080fd5b50610484600c5481565b348015610aac57600080fd5b506106ab612351565b348015610ac157600080fd5b506104a7610ad0366004613343565b6123dd565b348015610ae157600080fd5b50610521610af03660046132da565b6125b5565b348015610b0157600080fd5b50610484600d5481565b348015610b1757600080fd5b506019546104399062010000900460ff1681565b348015610b3757600080fd5b506104a7612619565b348015610b4c57600080fd5b50610439610b5b36600461310f565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610b9557600080fd5b50610521610ba4366004613343565b612639565b348015610bb557600080fd5b50610521610bc43660046130f4565b612686565b348015610bd557600080fd5b506104a7612756565b6040516bffffffffffffffffffffffff19606085901b166020820152600090610c2490849084906034015b60405160208183030381529060405280519060200120612763565b949350505050565b60006001600160e01b031982166380ac58cd60e01b1480610c5d57506001600160e01b03198216635b5e139f60e01b145b80610c7857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60188054610c8b9061362d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb79061362d565b8015610d045780601f10610cd957610100808354040283529160200191610d04565b820191906000526020600020905b815481529060010190602001808311610ce757829003601f168201915b505050505081565b606060038054610d1b9061362d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d479061362d565b8015610d945780601f10610d6957610100808354040283529160200191610d94565b820191906000526020600020905b815481529060010190602001808311610d7757829003601f168201915b5050505050905090565b6000610da982612779565b610dc6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610ded82611985565b9050806001600160a01b0316836001600160a01b03161415610e225760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610e5957610e3c8133610b5b565b610e59576040516367d9dca160e11b815260040160405180910390fd5b610e648383836127b2565b505050565b6000546001600160a01b03163314610eb65760405162461bcd60e51b8152602060048201819052602482015260008051602061373583398151915260448201526064015b60405180910390fd5b600e55565b6000546001600160a01b03163314610f035760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b6019805460ff1916911515919091179055565b610e6483838361281b565b601954819060ff1615610f6b5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610ead565b6002546001546122b89183910360001901610f86919061359f565b1115610fd45760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f756768206d696e7473206c65667400000000000000000000006044820152606401610ead565b3233146110195760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e7472616374206d696e74696e6760681b6044820152606401610ead565b600d5482600f5461102a919061359f565b11156110785760405162461bcd60e51b815260206004820152601160248201527f5075626c696320737570706c79206f75740000000000000000000000000000006044820152606401610ead565b336000908152601c6020526040902054600e54663ff2e795f50000919061109f858361359f565b11156110ed5760405162461bcd60e51b815260206004820152601360248201527f55736572206d6178206d696e74206c696d6974000000000000000000000000006044820152606401610ead565b6110ff6110fa85846135cb565b612a0a565b611109848261359f565b336000908152601c6020526040812091909155600f805486929061112e90849061359f565b9091555061113e90503385612b01565b50505050565b6000546001600160a01b0316331461118c5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b60105447906000907331f8933601497fd6ade6eaeaa6a66b281d238e7090612710906111b890856135cb565b6111c291906135b7565b604051600081818185875af1925050503d80600081146111fe576040519150601f19603f3d011682016040523d82523d6000602084013e611203565b606091505b50509050806112545760405162461bcd60e51b815260206004820152601360248201527f446576207472616e73666572206661696c6564000000000000000000000000006044820152606401610ead565b60115473ed19c8970c7be64f5ac3f4bebfddfd571861c3b7906127109061127b90856135cb565b61128591906135b7565b604051600081818185875af1925050503d80600081146112c1576040519150601f19603f3d011682016040523d82523d6000602084013e6112c6565b606091505b505080915050806113195760405162461bcd60e51b815260206004820152601460248201527f446576207472616e7366657232206661696c65640000000000000000000000006044820152606401610ead565b601254735be0d3be0c8a6e99a26fc8257d969d38a03c8306906127109061134090856135cb565b61134a91906135b7565b604051600081818185875af1925050503d8060008114611386576040519150601f19603f3d011682016040523d82523d6000602084013e61138b565b606091505b505080915050806113de5760405162461bcd60e51b815260206004820152601660248201527f417274697374207472616e73666572206661696c6564000000000000000000006044820152606401610ead565b60135473d3e44fd29cc3bbee78471275abc56e9948f6482c906127109061140590856135cb565b61140f91906135b7565b604051600081818185875af1925050503d806000811461144b576040519150601f19603f3d011682016040523d82523d6000602084013e611450565b606091505b505080915050806114a35760405162461bcd60e51b815260206004820152601760248201527f466f756e646572207472616e73666572206661696c65640000000000000000006044820152606401610ead565b6040517392e089149dc5dbd40f8b7b7949695e6d304ed0dc904790600081818185875af1925050503d80600081146114f7576040519150601f19603f3d011682016040523d82523d6000602084013e6114fc565b606091505b5050809150508061155b5760405162461bcd60e51b8152602060048201526024808201527f5472656173757279202872656d61696e696e6729207472616e736665722066616044820152631a5b195960e21b6064820152608401610ead565b5050565b610e648383836040518060200160405280600081525061221e565b60606000611587836119e4565b905060008167ffffffffffffffff8111156115a4576115a46136d3565b6040519080825280602002602001820160405280156115cd578160200160208202803683370190505b509050600160005b83811080156115e657506122b88211155b156116515760006115f683611985565b9050866001600160a01b0316816001600160a01b0316141561163e5782848381518110611625576116256136bd565b60209081029190910101528161163a81613662565b9250505b8261164881613662565b935050506115d5565b5090949350505050565b6000546001600160a01b031633146116a35760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b805161155b906017906020840190612f4b565b6000546001600160a01b031633146116fe5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b805161155b906016906020840190612f4b565b6040518060600160405280603581526020016137006035913981565b60195460019060ff16156117785760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610ead565b6002546001546122b89183910360001901611793919061359f565b11156117e15760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f756768206d696e7473206c65667400000000000000000000006044820152606401610ead565b3233146118265760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e7472616374206d696e74696e6760681b6044820152606401610ead565b61183282600a54612c31565b61187e5760405162461bcd60e51b815260206004820152600e60248201527f55736572206e6f74206f6e20574c0000000000000000000000000000000000006044820152606401610ead565b336000908152601b6020526040902054663ff2e795f500009060ff16156118e75760405162461bcd60e51b815260206004820152601660248201527f5573657220616c7265616479206d696e74656420574c000000000000000000006044820152606401610ead565b6118f081612a0a565b336000818152601b60205260409020805460ff19166001908117909155610e649190612b01565b6000546001600160a01b0316331461195f5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b6019805461ff001916610100841515021790558051610e64906016906020840190612f4b565b600061199082612c5f565b5192915050565b6000546001600160a01b031633146119df5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b600955565b60006001600160a01b038216611a0d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314611a7b5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b611a856000612d83565b565b6000546001600160a01b03163314611acf5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b601255565b6000546001600160a01b03163314611b1c5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b600b55565b6000546001600160a01b03163314611b695760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b600c819055600b548190611b7f906122b86135ea565b611b8991906135ea565b600d5550565b60195460019060ff1615611bda5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610ead565b6002546001546122b89183910360001901611bf5919061359f565b1115611c435760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f756768206d696e7473206c65667400000000000000000000006044820152606401610ead565b323314611c885760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e7472616374206d696e74696e6760681b6044820152606401610ead565b3415611cd65760405162461bcd60e51b815260206004820152601260248201527f54686973207068617365206973206672656500000000000000000000000000006044820152606401610ead565b336000908152601a602052604090205460ff1615611d365760405162461bcd60e51b815260206004820152601860248201527f5573657220616c7265616479206d696e746564206672656500000000000000006044820152606401610ead565b611d4282600954612c31565b611d8e5760405162461bcd60e51b815260206004820152601560248201527f55736572206e6f74206f6e2066726565206c69737400000000000000000000006044820152606401610ead565b336000818152601a60205260409020805460ff1916600190811790915561155b9190612b01565b60178054610c8b9061362d565b6000546001600160a01b03163314611e0a5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b6002546001546122b89184910360001901611e25919061359f565b1115611e735760405162461bcd60e51b815260206004820152601160248201527f746f55736572204d41585f535550504c590000000000000000000000000000006044820152606401610ead565b61155b8183612b01565b606060048054610d1b9061362d565b6000546001600160a01b03163314611ed45760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b60145415611f245760405162461bcd60e51b815260206004820152601160248201527f436f6d6d697474656420616c72656164790000000000000000000000000000006044820152606401610ead565b8051611f37906018906020840190612f4b565b50611f4343600561359f565b60145550565b6001600160a01b038216331415611f735760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146120275760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b6014546120765760405162461bcd60e51b815260206004820152600c60248201527f436f6d6d697420666972737400000000000000000000000000000000000000006044820152606401610ead565b6014544310156120c85760405162461bcd60e51b815260206004820152601960248201527f5761697420666f72207468652066757475726520626c6f636b000000000000006044820152606401610ead565b601554156121185760405162461bcd60e51b815260206004820152601060248201527f52657665616c656420616c7265616479000000000000000000000000000000006044820152606401610ead565b601454612129906122b8904061367d565b61213490600161359f565b6015556019805461ff001916610100179055565b6000546001600160a01b031633146121905760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b601980546001600160a01b039092166301000000027fffffffffffffffffff0000000000000000000000000000000000000000ffffff909216919091179055565b6000546001600160a01b031633146122195760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b601055565b61222984848461281b565b6001600160a01b0383163b1561113e5761224584848484612de0565b61113e576040516368d2bf6b60e11b815260040160405180910390fd5b60195462010000900460ff16156122bb5760405162461bcd60e51b815260206004820152601460248201527f437573746f6d697a6174696f6e207061757365640000000000000000000000006044820152606401610ead565b336122c583611985565b6001600160a01b031614806122f35750336122e86000546001600160a01b031690565b6001600160a01b0316145b61233f5760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420796f757220746f6b656e0000000000000000000000000000000000006044820152606401610ead565b6000918252601d602052604090912055565b604080516122b88082526204572082019092526060916000919060208201620457008036833701905050905060005b6122b88110156123d757601d600061239983600161359f565b8152602001908152602001600020548282815181106123ba576123ba6136bd565b6020908102919091010152806123cf81613662565b915050612380565b50919050565b60606123e882612779565b61245a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610ead565b60006015548361246a919061359f565b90506122b8811115612485576124826122b8826135ea565b90505b601954610100900460ff16156125225760195460405163c87b56dd60e01b81526004810183905263010000009091046001600160a01b03169063c87b56dd9060240160006040518083038186803b1580156124df57600080fd5b505afa1580156124f3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261251b91908101906133cb565b9392505050565b6017805461252f9061362d565b80601f016020809104026020016040519081016040528092919081815260200182805461255b9061362d565b80156125a85780601f1061257d576101008083540402835291602001916125a8565b820191906000526020600020905b81548152906001019060200180831161258b57829003601f168201915b5050505050915050919050565b6000546001600160a01b031633146125fd5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b60198054911515620100000262ff000019909216919091179055565b606060405180606001604052806035815260200161370060359139905090565b6000546001600160a01b031633146126815760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b600a55565b6000546001600160a01b031633146126ce5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b6001600160a01b03811661274a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ead565b61275381612d83565b50565b60168054610c8b9061362d565b6000826127708584612ed7565b14949350505050565b60008160011115801561278d575060015482105b8015610c78575050600090815260056020526040902054600160e01b900460ff161590565b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061282682612c5f565b9050836001600160a01b031681600001516001600160a01b03161461285d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061287b575061287b8533610b5b565b8061289657503361288b84610d9e565b6001600160a01b0316145b9050806128b657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166128dd57604051633a954ecd60e21b815260040160405180910390fd5b6128e9600084876127b2565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166129bf5760015482146129bf578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b80341115612ab157600033612a1f83346135ea565b604051600081818185875af1925050503d8060008114612a5b576040519150601f19603f3d011682016040523d82523d6000602084013e612a60565b606091505b505090508061155b5760405162461bcd60e51b815260206004820152600f60248201527f5472616e73666572206661696c656400000000000000000000000000000000006044820152606401610ead565b803410156127535760405162461bcd60e51b815260206004820152601360248201527f4e6f7420656e6f756768204554482073656e74000000000000000000000000006044820152606401610ead565b6001546001600160a01b038316612b2a57604051622e076360e81b815260040160405180910390fd5b81612b485760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168a0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168a01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612be55750600155505050565b6040516bffffffffffffffffffffffff193360601b16602082015260009061251b9084908490603401610c09565b60408051606081018252600080825260208201819052918101919091528180600111612d6a57600154811015612d6a57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290612d685780516001600160a01b031615612cfe579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612d63579392505050565b612cfe565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612e159033908990889088906004016134b3565b602060405180830381600087803b158015612e2f57600080fd5b505af1925050508015612e5f575060408051601f3d908101601f19168201909252612e5c91810190613379565b60015b612eba573d808015612e8d576040519150601f19603f3d011682016040523d82523d6000602084013e612e92565b606091505b508051612eb2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081815b8451811015612f43576000858281518110612ef957612ef96136bd565b60200260200101519050808311612f1f5760008381526020829052604090209250612f30565b600081815260208490526040902092505b5080612f3b81613662565b915050612edc565b509392505050565b828054612f579061362d565b90600052602060002090601f016020900481019282612f795760008555612fbf565b82601f10612f9257805160ff1916838001178555612fbf565b82800160010185558215612fbf579182015b82811115612fbf578251825591602001919060010190612fa4565b50612fcb929150612fcf565b5090565b5b80821115612fcb5760008155600101612fd0565b6000612ff7612ff284613577565b613546565b905082815283838301111561300b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461303957600080fd5b919050565b600082601f83011261304f57600080fd5b8135602067ffffffffffffffff82111561306b5761306b6136d3565b8160051b61307a828201613546565b83815282810190868401838801850189101561309557600080fd5b600093505b858410156130b857803583526001939093019291840191840161309a565b50979650505050505050565b8035801515811461303957600080fd5b600082601f8301126130e557600080fd5b61251b83833560208501612fe4565b60006020828403121561310657600080fd5b61251b82613022565b6000806040838503121561312257600080fd5b61312b83613022565b915061313960208401613022565b90509250929050565b60008060006060848603121561315757600080fd5b61316084613022565b925061316e60208501613022565b9150604084013590509250925092565b6000806000806080858703121561319457600080fd5b61319d85613022565b93506131ab60208601613022565b925060408501359150606085013567ffffffffffffffff8111156131ce57600080fd5b8501601f810187136131df57600080fd5b6131ee87823560208401612fe4565b91505092959194509250565b60008060006060848603121561320f57600080fd5b61321884613022565b9250602084013567ffffffffffffffff81111561323457600080fd5b6132408682870161303e565b925050604084013590509250925092565b6000806040838503121561326457600080fd5b61326d83613022565b9150613139602084016130c4565b6000806040838503121561328e57600080fd5b61329783613022565b946020939093013593505050565b6000602082840312156132b757600080fd5b813567ffffffffffffffff8111156132ce57600080fd5b610c248482850161303e565b6000602082840312156132ec57600080fd5b61251b826130c4565b6000806040838503121561330857600080fd5b613311836130c4565b9150602083013567ffffffffffffffff81111561332d57600080fd5b613339858286016130d4565b9150509250929050565b60006020828403121561335557600080fd5b5035919050565b60006020828403121561336e57600080fd5b813561251b816136e9565b60006020828403121561338b57600080fd5b815161251b816136e9565b6000602082840312156133a857600080fd5b813567ffffffffffffffff8111156133bf57600080fd5b610c24848285016130d4565b6000602082840312156133dd57600080fd5b815167ffffffffffffffff8111156133f457600080fd5b8201601f8101841361340557600080fd5b8051613413612ff282613577565b81815285602083850101111561342857600080fd5b613439826020830160208601613601565b95945050505050565b6000806040838503121561345557600080fd5b8235915061313960208401613022565b6000806040838503121561347857600080fd5b50508035926020909101359150565b6000815180845261349f816020860160208601613601565b601f01601f19169290920160200192915050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526134e56080830184613487565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156135275783518352928401929184019160010161350b565b50909695505050505050565b60208152600061251b6020830184613487565b604051601f8201601f1916810167ffffffffffffffff8111828210171561356f5761356f6136d3565b604052919050565b600067ffffffffffffffff821115613591576135916136d3565b50601f01601f191660200190565b600082198211156135b2576135b2613691565b500190565b6000826135c6576135c66136a7565b500490565b60008160001904831182151516156135e5576135e5613691565b500290565b6000828210156135fc576135fc613691565b500390565b60005b8381101561361c578181015183820152602001613604565b8381111561113e5750506000910152565b600181811c9082168061364157607f821691505b602082108114156123d757634e487b7160e01b600052602260045260246000fd5b600060001982141561367657613676613691565b5060010190565b60008261368c5761368c6136a7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461275357600080fdfe697066733a2f2f516d564271704454316a536e5856523862573452615a654d6139355154564c517472555270313972736a6a706e344f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220ca8bb2b295f642da0b0d3183d368dd0c8e584d5f4c0562225608f2e9d451bd3364736f6c63430008070033697066733a2f2f516d564271704454316a536e5856523862573452615a654d6139355154564c517472555270313972736a6a706e34
Deployed Bytecode
0x6080604052600436106104145760003560e01c806370a0823111610228578063a556f60f11610128578063c87b56dd116100bb578063e8a3d4851161008a578063ea7a42e41161006f578063ea7a42e414610b89578063f2fde38b14610ba9578063f7e8d6ea14610bc957600080fd5b8063e8a3d48514610b2b578063e985e9c514610b4057600080fd5b8063c87b56dd14610ab5578063ca3a7ae614610ad5578063d025a4e014610af5578063db64154714610b0b57600080fd5b8063b9b2378d116100f7578063b9b2378d14610a61578063bceae77b14610a74578063c6278b1614610a8a578063c719858114610aa057600080fd5b8063a556f60f14610a01578063ad570dd51461078f578063b06cfa6414610a21578063b88d4fde14610a4157600080fd5b80638cc54e7f116101bb57806395d89b411161018a5780639d4c17b51161016f5780639d4c17b5146109c3578063a22cb465146109d9578063a475b5dd146109f957600080fd5b806395d89b411461099b5780639867db74146109b057600080fd5b80638cc54e7f146109325780638da5cb5b146109475780639007bd7214610965578063959e742c1461098557600080fd5b80637a8ffb32116101f75780637a8ffb32146108bc5780637aeb7242146108dc57806388d15d501461090957806389ba959c1461091c57600080fd5b806370a0823114610847578063715018a614610867578063766f78e01461087c57806378930f911461089c57600080fd5b80633ccfd60b1161033357806356b4f673116102c6578063611f3f1011610295578063638df30b1161027a578063638df30b146107ca57806364f64076146107ea5780636e5ed9791461081a57600080fd5b8063611f3f101461078f5780636352211e146107aa57600080fd5b806356b4f6731461072d5780635c975abb146107425780635cfe6b841461075c5780635ed3e25e1461076f57600080fd5b80634fdd43cb116103025780634fdd43cb146106b857806351830227146106d857806355f804b3146106f7578063563dfdd81461071757600080fd5b80633ccfd60b1461063657806340d92f061461063e57806342842e0e1461066b578063438b63001461068b57600080fd5b806316c38b3c116103ab5780632db115441161037a5780632db11544146105b657806331a6f057146105c957806332cb6b0c146105f9578063351e4d501461060f57600080fd5b806316c38b3c1461054357806318160ddd146105635780631e23696f1461058057806323b872dd1461059657600080fd5b806306fdde03116103e757806306fdde03146104b4578063081812fc146104c9578063095ea7b3146105015780630fe22f781461052357600080fd5b806301dd38a21461041957806301ffc9a71461044e578063030e93451461046e5780630458074e14610492575b600080fd5b34801561042557600080fd5b506104396104343660046131fa565b610bde565b60405190151581526020015b60405180910390f35b34801561045a57600080fd5b5061043961046936600461335c565b610c2c565b34801561047a57600080fd5b50610484600a5481565b604051908152602001610445565b34801561049e57600080fd5b506104a7610c7e565b6040516104459190613533565b3480156104c057600080fd5b506104a7610d0c565b3480156104d557600080fd5b506104e96104e4366004613343565b610d9e565b6040516001600160a01b039091168152602001610445565b34801561050d57600080fd5b5061052161051c36600461327b565b610de2565b005b34801561052f57600080fd5b5061052161053e366004613343565b610e69565b34801561054f57600080fd5b5061052161055e3660046132da565b610ebb565b34801561056f57600080fd5b506002546001540360001901610484565b34801561058c57600080fd5b50610484600f5481565b3480156105a257600080fd5b506105216105b1366004613142565b610f16565b6105216105c4366004613343565b610f21565b3480156105d557600080fd5b506104396105e43660046130f4565b601b6020526000908152604090205460ff1681565b34801561060557600080fd5b506104846122b881565b34801561061b57600080fd5b506019546104e990630100000090046001600160a01b031681565b610521611144565b34801561064a57600080fd5b50610484610659366004613343565b6000908152601d602052604090205490565b34801561067757600080fd5b50610521610686366004613142565b61155f565b34801561069757600080fd5b506106ab6106a63660046130f4565b61157a565b60405161044591906134ef565b3480156106c457600080fd5b506105216106d3366004613396565b61165b565b3480156106e457600080fd5b5060195461043990610100900460ff1681565b34801561070357600080fd5b50610521610712366004613396565b6116b6565b34801561072357600080fd5b50610484600b5481565b34801561073957600080fd5b506104a7611711565b34801561074e57600080fd5b506019546104399060ff1681565b61052161076a3660046132a5565b61172d565b34801561077b57600080fd5b5061052161078a3660046132f5565b611917565b34801561079b57600080fd5b50610484663ff2e795f5000081565b3480156107b657600080fd5b506104e96107c5366004613343565b611985565b3480156107d657600080fd5b506105216107e5366004613343565b611997565b3480156107f657600080fd5b506104396108053660046130f4565b601a6020526000908152604090205460ff1681565b34801561082657600080fd5b50610484610835366004613343565b601d6020526000908152604090205481565b34801561085357600080fd5b506104846108623660046130f4565b6119e4565b34801561087357600080fd5b50610521611a33565b34801561088857600080fd5b50610521610897366004613343565b611a87565b3480156108a857600080fd5b506105216108b7366004613343565b611ad4565b3480156108c857600080fd5b506105216108d7366004613343565b611b21565b3480156108e857600080fd5b506104846108f73660046130f4565b601c6020526000908152604090205481565b6105216109173660046132a5565b611b8f565b34801561092857600080fd5b5061048460095481565b34801561093e57600080fd5b506104a7611db5565b34801561095357600080fd5b506000546001600160a01b03166104e9565b34801561097157600080fd5b50610521610980366004613442565b611dc2565b34801561099157600080fd5b5061048460155481565b3480156109a757600080fd5b506104a7611e7d565b6105216109be366004613396565b611e8c565b3480156109cf57600080fd5b5061048460145481565b3480156109e557600080fd5b506105216109f4366004613251565b611f49565b610521611fdf565b348015610a0d57600080fd5b50610521610a1c3660046130f4565b612148565b348015610a2d57600080fd5b50610521610a3c366004613343565b6121d1565b348015610a4d57600080fd5b50610521610a5c36600461317e565b61221e565b610521610a6f366004613465565b612262565b348015610a8057600080fd5b50610484600e5481565b348015610a9657600080fd5b50610484600c5481565b348015610aac57600080fd5b506106ab612351565b348015610ac157600080fd5b506104a7610ad0366004613343565b6123dd565b348015610ae157600080fd5b50610521610af03660046132da565b6125b5565b348015610b0157600080fd5b50610484600d5481565b348015610b1757600080fd5b506019546104399062010000900460ff1681565b348015610b3757600080fd5b506104a7612619565b348015610b4c57600080fd5b50610439610b5b36600461310f565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610b9557600080fd5b50610521610ba4366004613343565b612639565b348015610bb557600080fd5b50610521610bc43660046130f4565b612686565b348015610bd557600080fd5b506104a7612756565b6040516bffffffffffffffffffffffff19606085901b166020820152600090610c2490849084906034015b60405160208183030381529060405280519060200120612763565b949350505050565b60006001600160e01b031982166380ac58cd60e01b1480610c5d57506001600160e01b03198216635b5e139f60e01b145b80610c7857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60188054610c8b9061362d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb79061362d565b8015610d045780601f10610cd957610100808354040283529160200191610d04565b820191906000526020600020905b815481529060010190602001808311610ce757829003601f168201915b505050505081565b606060038054610d1b9061362d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d479061362d565b8015610d945780601f10610d6957610100808354040283529160200191610d94565b820191906000526020600020905b815481529060010190602001808311610d7757829003601f168201915b5050505050905090565b6000610da982612779565b610dc6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610ded82611985565b9050806001600160a01b0316836001600160a01b03161415610e225760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610e5957610e3c8133610b5b565b610e59576040516367d9dca160e11b815260040160405180910390fd5b610e648383836127b2565b505050565b6000546001600160a01b03163314610eb65760405162461bcd60e51b8152602060048201819052602482015260008051602061373583398151915260448201526064015b60405180910390fd5b600e55565b6000546001600160a01b03163314610f035760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b6019805460ff1916911515919091179055565b610e6483838361281b565b601954819060ff1615610f6b5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610ead565b6002546001546122b89183910360001901610f86919061359f565b1115610fd45760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f756768206d696e7473206c65667400000000000000000000006044820152606401610ead565b3233146110195760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e7472616374206d696e74696e6760681b6044820152606401610ead565b600d5482600f5461102a919061359f565b11156110785760405162461bcd60e51b815260206004820152601160248201527f5075626c696320737570706c79206f75740000000000000000000000000000006044820152606401610ead565b336000908152601c6020526040902054600e54663ff2e795f50000919061109f858361359f565b11156110ed5760405162461bcd60e51b815260206004820152601360248201527f55736572206d6178206d696e74206c696d6974000000000000000000000000006044820152606401610ead565b6110ff6110fa85846135cb565b612a0a565b611109848261359f565b336000908152601c6020526040812091909155600f805486929061112e90849061359f565b9091555061113e90503385612b01565b50505050565b6000546001600160a01b0316331461118c5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b60105447906000907331f8933601497fd6ade6eaeaa6a66b281d238e7090612710906111b890856135cb565b6111c291906135b7565b604051600081818185875af1925050503d80600081146111fe576040519150601f19603f3d011682016040523d82523d6000602084013e611203565b606091505b50509050806112545760405162461bcd60e51b815260206004820152601360248201527f446576207472616e73666572206661696c6564000000000000000000000000006044820152606401610ead565b60115473ed19c8970c7be64f5ac3f4bebfddfd571861c3b7906127109061127b90856135cb565b61128591906135b7565b604051600081818185875af1925050503d80600081146112c1576040519150601f19603f3d011682016040523d82523d6000602084013e6112c6565b606091505b505080915050806113195760405162461bcd60e51b815260206004820152601460248201527f446576207472616e7366657232206661696c65640000000000000000000000006044820152606401610ead565b601254735be0d3be0c8a6e99a26fc8257d969d38a03c8306906127109061134090856135cb565b61134a91906135b7565b604051600081818185875af1925050503d8060008114611386576040519150601f19603f3d011682016040523d82523d6000602084013e61138b565b606091505b505080915050806113de5760405162461bcd60e51b815260206004820152601660248201527f417274697374207472616e73666572206661696c6564000000000000000000006044820152606401610ead565b60135473d3e44fd29cc3bbee78471275abc56e9948f6482c906127109061140590856135cb565b61140f91906135b7565b604051600081818185875af1925050503d806000811461144b576040519150601f19603f3d011682016040523d82523d6000602084013e611450565b606091505b505080915050806114a35760405162461bcd60e51b815260206004820152601760248201527f466f756e646572207472616e73666572206661696c65640000000000000000006044820152606401610ead565b6040517392e089149dc5dbd40f8b7b7949695e6d304ed0dc904790600081818185875af1925050503d80600081146114f7576040519150601f19603f3d011682016040523d82523d6000602084013e6114fc565b606091505b5050809150508061155b5760405162461bcd60e51b8152602060048201526024808201527f5472656173757279202872656d61696e696e6729207472616e736665722066616044820152631a5b195960e21b6064820152608401610ead565b5050565b610e648383836040518060200160405280600081525061221e565b60606000611587836119e4565b905060008167ffffffffffffffff8111156115a4576115a46136d3565b6040519080825280602002602001820160405280156115cd578160200160208202803683370190505b509050600160005b83811080156115e657506122b88211155b156116515760006115f683611985565b9050866001600160a01b0316816001600160a01b0316141561163e5782848381518110611625576116256136bd565b60209081029190910101528161163a81613662565b9250505b8261164881613662565b935050506115d5565b5090949350505050565b6000546001600160a01b031633146116a35760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b805161155b906017906020840190612f4b565b6000546001600160a01b031633146116fe5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b805161155b906016906020840190612f4b565b6040518060600160405280603581526020016137006035913981565b60195460019060ff16156117785760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610ead565b6002546001546122b89183910360001901611793919061359f565b11156117e15760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f756768206d696e7473206c65667400000000000000000000006044820152606401610ead565b3233146118265760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e7472616374206d696e74696e6760681b6044820152606401610ead565b61183282600a54612c31565b61187e5760405162461bcd60e51b815260206004820152600e60248201527f55736572206e6f74206f6e20574c0000000000000000000000000000000000006044820152606401610ead565b336000908152601b6020526040902054663ff2e795f500009060ff16156118e75760405162461bcd60e51b815260206004820152601660248201527f5573657220616c7265616479206d696e74656420574c000000000000000000006044820152606401610ead565b6118f081612a0a565b336000818152601b60205260409020805460ff19166001908117909155610e649190612b01565b6000546001600160a01b0316331461195f5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b6019805461ff001916610100841515021790558051610e64906016906020840190612f4b565b600061199082612c5f565b5192915050565b6000546001600160a01b031633146119df5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b600955565b60006001600160a01b038216611a0d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314611a7b5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b611a856000612d83565b565b6000546001600160a01b03163314611acf5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b601255565b6000546001600160a01b03163314611b1c5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b600b55565b6000546001600160a01b03163314611b695760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b600c819055600b548190611b7f906122b86135ea565b611b8991906135ea565b600d5550565b60195460019060ff1615611bda5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610ead565b6002546001546122b89183910360001901611bf5919061359f565b1115611c435760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f756768206d696e7473206c65667400000000000000000000006044820152606401610ead565b323314611c885760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e7472616374206d696e74696e6760681b6044820152606401610ead565b3415611cd65760405162461bcd60e51b815260206004820152601260248201527f54686973207068617365206973206672656500000000000000000000000000006044820152606401610ead565b336000908152601a602052604090205460ff1615611d365760405162461bcd60e51b815260206004820152601860248201527f5573657220616c7265616479206d696e746564206672656500000000000000006044820152606401610ead565b611d4282600954612c31565b611d8e5760405162461bcd60e51b815260206004820152601560248201527f55736572206e6f74206f6e2066726565206c69737400000000000000000000006044820152606401610ead565b336000818152601a60205260409020805460ff1916600190811790915561155b9190612b01565b60178054610c8b9061362d565b6000546001600160a01b03163314611e0a5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b6002546001546122b89184910360001901611e25919061359f565b1115611e735760405162461bcd60e51b815260206004820152601160248201527f746f55736572204d41585f535550504c590000000000000000000000000000006044820152606401610ead565b61155b8183612b01565b606060048054610d1b9061362d565b6000546001600160a01b03163314611ed45760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b60145415611f245760405162461bcd60e51b815260206004820152601160248201527f436f6d6d697474656420616c72656164790000000000000000000000000000006044820152606401610ead565b8051611f37906018906020840190612f4b565b50611f4343600561359f565b60145550565b6001600160a01b038216331415611f735760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146120275760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b6014546120765760405162461bcd60e51b815260206004820152600c60248201527f436f6d6d697420666972737400000000000000000000000000000000000000006044820152606401610ead565b6014544310156120c85760405162461bcd60e51b815260206004820152601960248201527f5761697420666f72207468652066757475726520626c6f636b000000000000006044820152606401610ead565b601554156121185760405162461bcd60e51b815260206004820152601060248201527f52657665616c656420616c7265616479000000000000000000000000000000006044820152606401610ead565b601454612129906122b8904061367d565b61213490600161359f565b6015556019805461ff001916610100179055565b6000546001600160a01b031633146121905760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b601980546001600160a01b039092166301000000027fffffffffffffffffff0000000000000000000000000000000000000000ffffff909216919091179055565b6000546001600160a01b031633146122195760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b601055565b61222984848461281b565b6001600160a01b0383163b1561113e5761224584848484612de0565b61113e576040516368d2bf6b60e11b815260040160405180910390fd5b60195462010000900460ff16156122bb5760405162461bcd60e51b815260206004820152601460248201527f437573746f6d697a6174696f6e207061757365640000000000000000000000006044820152606401610ead565b336122c583611985565b6001600160a01b031614806122f35750336122e86000546001600160a01b031690565b6001600160a01b0316145b61233f5760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420796f757220746f6b656e0000000000000000000000000000000000006044820152606401610ead565b6000918252601d602052604090912055565b604080516122b88082526204572082019092526060916000919060208201620457008036833701905050905060005b6122b88110156123d757601d600061239983600161359f565b8152602001908152602001600020548282815181106123ba576123ba6136bd565b6020908102919091010152806123cf81613662565b915050612380565b50919050565b60606123e882612779565b61245a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610ead565b60006015548361246a919061359f565b90506122b8811115612485576124826122b8826135ea565b90505b601954610100900460ff16156125225760195460405163c87b56dd60e01b81526004810183905263010000009091046001600160a01b03169063c87b56dd9060240160006040518083038186803b1580156124df57600080fd5b505afa1580156124f3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261251b91908101906133cb565b9392505050565b6017805461252f9061362d565b80601f016020809104026020016040519081016040528092919081815260200182805461255b9061362d565b80156125a85780601f1061257d576101008083540402835291602001916125a8565b820191906000526020600020905b81548152906001019060200180831161258b57829003601f168201915b5050505050915050919050565b6000546001600160a01b031633146125fd5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b60198054911515620100000262ff000019909216919091179055565b606060405180606001604052806035815260200161370060359139905090565b6000546001600160a01b031633146126815760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b600a55565b6000546001600160a01b031633146126ce5760405162461bcd60e51b815260206004820181905260248201526000805160206137358339815191526044820152606401610ead565b6001600160a01b03811661274a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ead565b61275381612d83565b50565b60168054610c8b9061362d565b6000826127708584612ed7565b14949350505050565b60008160011115801561278d575060015482105b8015610c78575050600090815260056020526040902054600160e01b900460ff161590565b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061282682612c5f565b9050836001600160a01b031681600001516001600160a01b03161461285d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061287b575061287b8533610b5b565b8061289657503361288b84610d9e565b6001600160a01b0316145b9050806128b657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166128dd57604051633a954ecd60e21b815260040160405180910390fd5b6128e9600084876127b2565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166129bf5760015482146129bf578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b80341115612ab157600033612a1f83346135ea565b604051600081818185875af1925050503d8060008114612a5b576040519150601f19603f3d011682016040523d82523d6000602084013e612a60565b606091505b505090508061155b5760405162461bcd60e51b815260206004820152600f60248201527f5472616e73666572206661696c656400000000000000000000000000000000006044820152606401610ead565b803410156127535760405162461bcd60e51b815260206004820152601360248201527f4e6f7420656e6f756768204554482073656e74000000000000000000000000006044820152606401610ead565b6001546001600160a01b038316612b2a57604051622e076360e81b815260040160405180910390fd5b81612b485760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168a0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168a01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612be55750600155505050565b6040516bffffffffffffffffffffffff193360601b16602082015260009061251b9084908490603401610c09565b60408051606081018252600080825260208201819052918101919091528180600111612d6a57600154811015612d6a57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290612d685780516001600160a01b031615612cfe579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612d63579392505050565b612cfe565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612e159033908990889088906004016134b3565b602060405180830381600087803b158015612e2f57600080fd5b505af1925050508015612e5f575060408051601f3d908101601f19168201909252612e5c91810190613379565b60015b612eba573d808015612e8d576040519150601f19603f3d011682016040523d82523d6000602084013e612e92565b606091505b508051612eb2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081815b8451811015612f43576000858281518110612ef957612ef96136bd565b60200260200101519050808311612f1f5760008381526020829052604090209250612f30565b600081815260208490526040902092505b5080612f3b81613662565b915050612edc565b509392505050565b828054612f579061362d565b90600052602060002090601f016020900481019282612f795760008555612fbf565b82601f10612f9257805160ff1916838001178555612fbf565b82800160010185558215612fbf579182015b82811115612fbf578251825591602001919060010190612fa4565b50612fcb929150612fcf565b5090565b5b80821115612fcb5760008155600101612fd0565b6000612ff7612ff284613577565b613546565b905082815283838301111561300b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461303957600080fd5b919050565b600082601f83011261304f57600080fd5b8135602067ffffffffffffffff82111561306b5761306b6136d3565b8160051b61307a828201613546565b83815282810190868401838801850189101561309557600080fd5b600093505b858410156130b857803583526001939093019291840191840161309a565b50979650505050505050565b8035801515811461303957600080fd5b600082601f8301126130e557600080fd5b61251b83833560208501612fe4565b60006020828403121561310657600080fd5b61251b82613022565b6000806040838503121561312257600080fd5b61312b83613022565b915061313960208401613022565b90509250929050565b60008060006060848603121561315757600080fd5b61316084613022565b925061316e60208501613022565b9150604084013590509250925092565b6000806000806080858703121561319457600080fd5b61319d85613022565b93506131ab60208601613022565b925060408501359150606085013567ffffffffffffffff8111156131ce57600080fd5b8501601f810187136131df57600080fd5b6131ee87823560208401612fe4565b91505092959194509250565b60008060006060848603121561320f57600080fd5b61321884613022565b9250602084013567ffffffffffffffff81111561323457600080fd5b6132408682870161303e565b925050604084013590509250925092565b6000806040838503121561326457600080fd5b61326d83613022565b9150613139602084016130c4565b6000806040838503121561328e57600080fd5b61329783613022565b946020939093013593505050565b6000602082840312156132b757600080fd5b813567ffffffffffffffff8111156132ce57600080fd5b610c248482850161303e565b6000602082840312156132ec57600080fd5b61251b826130c4565b6000806040838503121561330857600080fd5b613311836130c4565b9150602083013567ffffffffffffffff81111561332d57600080fd5b613339858286016130d4565b9150509250929050565b60006020828403121561335557600080fd5b5035919050565b60006020828403121561336e57600080fd5b813561251b816136e9565b60006020828403121561338b57600080fd5b815161251b816136e9565b6000602082840312156133a857600080fd5b813567ffffffffffffffff8111156133bf57600080fd5b610c24848285016130d4565b6000602082840312156133dd57600080fd5b815167ffffffffffffffff8111156133f457600080fd5b8201601f8101841361340557600080fd5b8051613413612ff282613577565b81815285602083850101111561342857600080fd5b613439826020830160208601613601565b95945050505050565b6000806040838503121561345557600080fd5b8235915061313960208401613022565b6000806040838503121561347857600080fd5b50508035926020909101359150565b6000815180845261349f816020860160208601613601565b601f01601f19169290920160200192915050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526134e56080830184613487565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156135275783518352928401929184019160010161350b565b50909695505050505050565b60208152600061251b6020830184613487565b604051601f8201601f1916810167ffffffffffffffff8111828210171561356f5761356f6136d3565b604052919050565b600067ffffffffffffffff821115613591576135916136d3565b50601f01601f191660200190565b600082198211156135b2576135b2613691565b500190565b6000826135c6576135c66136a7565b500490565b60008160001904831182151516156135e5576135e5613691565b500290565b6000828210156135fc576135fc613691565b500390565b60005b8381101561361c578181015183820152602001613604565b8381111561113e5750506000910152565b600181811c9082168061364157607f821691505b602082108114156123d757634e487b7160e01b600052602260045260246000fd5b600060001982141561367657613676613691565b5060010190565b60008261368c5761368c6136a7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461275357600080fdfe697066733a2f2f516d564271704454316a536e5856523862573452615a654d6139355154564c517472555270313972736a6a706e344f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220ca8bb2b295f642da0b0d3183d368dd0c8e584d5f4c0562225608f2e9d451bd3364736f6c63430008070033
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.