Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,067 SNACKS
Holders
235
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 SNACKSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SuperburnSnacks
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* ███████ ██ ██ ██████ ███████ ██████ ██████ ██ ██ ██████ ███ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ██ ███████ ██ ██ ██████ █████ ██████ ██████ ██ ██ ██████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ███████ ██████ ██ ███████ ██ ██ ██████ ██████ ██ ██ ██ ████ ███████ ███ ██ █████ ██████ ██ ██ ███████ ██ ████ ██ ██ ██ ██ ██ ██ ██ ███████ ██ ██ ██ ███████ ██ █████ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ███████ ██ ████ ██ ██ ██████ ██ ██ ███████ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import "./Art.sol"; contract SuperburnSnacks is ERC721A, Ownable { uint mintEndTime = 1676246400; // Monday, February 13th, 12am (00:00) UTC constructor() ERC721A("Superburn Snacks", "SNACKS") {} // starts the token number at 1 vs the default of 0 function _startTokenId() internal view virtual override returns (uint256) { return 1; } // sets a variable price throughout mint // tokens 1 - 100 ~~~~~~~~~~ free // tokens 101 - 1000 ~~~~~~~ .001 eth // tokens 1001 - 5000 ~~~~~~ .005 eth // tokens 5000+ ~~~~~~~~~~~~ .01 eth function getPrice(uint quantity) public view returns(uint) { uint cost = 0; for (uint i = 0; i < quantity; i++) { if (i + _nextTokenId() > 100 && i + _nextTokenId() < 1001) { cost += 1000000000000000; // .001 eth } else if (i + _nextTokenId() > 1000 && i + _nextTokenId() < 5001) { cost += 5000000000000000; // .005 eth } else if (i + _nextTokenId() > 5000) { cost += 10000000000000000; // .01 eth } } return cost; } function mint(uint quantity) public payable { require(msg.value >= getPrice(quantity), 'not enough eth'); require(quantity <= 20,'max 20 per tx'); require(block.timestamp <= mintEndTime, 'mint is closed'); _mint(msg.sender, quantity); } // gets the seconds until a block timestamp function secondsRemaining(uint end) public view returns (uint) { if (block.timestamp <= end) { return end - block.timestamp; } else { return 0; } } // gets the minutes until a block timestamp function minutesRemaining(uint end) public view returns (uint) { if (secondsRemaining(end) >= 60) { return (end - block.timestamp) / 60; } else { return 0; } } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { return art.metadata(tokenId); } function withdraw() external onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "@openzeppelin/contracts/utils/Base64.sol"; library art { function uint2str( uint _i ) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len; while (_i != 0) { k = k - 1; uint8 temp = (48 + uint8(_i - (_i / 10) * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } function metadata(uint tokenId) internal pure returns (string memory) { string memory image ='data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNjQiIGhlaWdodD0iMjY0IiBmaWxsPSJub25lIj48cGF0aCBmaWxsPSIjRUJFQkVCIiBkPSJNMCAwaDI2NHYyNjRIMHoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNNjQgNDhoMTM2djE2OEg2NHoiLz48cGF0aCBmaWxsPSIjRjVCNDM0IiBkPSJNODkgODYuMjE0M1Y4Ny43NWgxMC43NXYtNC42MDcyaC0xLjUzNTd2LTEuNTM1N2gtMS41MzU3di0xLjUzNTdoLTEuNTM1N3YxLjUzNTdoLTEuNTM1OHYxLjUzNTdoLTEuNTM1N3YxLjUzNThoLTEuNTM1N3YxLjUzNTdIODlaIi8+PHBhdGggZmlsbD0iI0I5NTMwOSIgZD0iTTk1LjE0MjkgODAuMDcxNHYtMS41MzU3aDMuMDcxNHYxLjUzNTdIOTkuNzV2MS41MzU3aDEuNTM2Vjg3Ljc1SDk5Ljc1di00LjYwNzJoLTEuNTM1N3YtMS41MzU3aC0xLjUzNTd2LTEuNTM1N2gtMS41MzU3WiIvPjxwYXRoIGZpbGw9IiNFOTIxMjEiIGQ9Ik05MC41MzU3IDg2LjIxNDNoMS41MzU3Vjg3Ljc1aC0xLjUzNTd2LTEuNTM1N1oiLz48cGF0aCBmaWxsPSIjRTNBMTIwIiBkPSJNOTUuMTQyOSA4Ni4yMTQzSDk5Ljc1Vjg3Ljc1aC00LjYwNzF2LTEuNTM1N1oiLz48cGF0aCBmaWxsPSIjQjk1MzA5IiBkPSJNOTkuNzUgODMuMTQyOGgxLjUzNnYxLjUzNThIOTkuNzV2LTEuNTM1OFoiLz48cGF0aCBmaWxsPSIjRTkyMTIxIiBkPSJNOTMuNjA3MSA4My4xNDI4aDEuNTM1OHYxLjUzNThoLTEuNTM1OHYtMS41MzU4Wm0zLjA3MTUgMS41MzU4aDEuNTM1N3YxLjUzNTdoLTEuNTM1N3YtMS41MzU3WiIvPjxwYXRoIGZpbGw9IiNENUY2RjQiIGQ9Ik05OS43NSAxMTAuNzg2di0zLjA3MmgtOS4yMTQzdjMuMDcyaDEuNTM1N3YxLjUzNWg2LjE0Mjl2LTEuNTM1SDk5Ljc1WiIvPjxwYXRoIGZpbGw9IiM3MEFDMjQiIGQ9Ik05Mi4wNzE0IDEwNy43MTRoNi4xNDI5djEuNTM2aC02LjE0Mjl2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiM1NTgzMUIiIGQ9Ik05My42MDcxIDEwOS4yNWgzLjA3MTV2MS41MzZoLTMuMDcxNXYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0Y1QjQzNCIgZD0iTTk2LjY3ODYgMTA2LjE3OWgxLjUzNTd2MS41MzVoLTEuNTM1N3YtMS41MzVabS0xLjUzNTcgMGgxLjUzNTd2MS41MzVoLTEuNTM1N3YtMS41MzVabTAtMS41MzZoMS41MzU3djEuNTM2aC0xLjUzNTd2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNCOTUzMDkiIGQ9Ik05Mi4wNzE0IDEzMi4yODZ2My4wNzFoNC42MDcydi0xLjUzNmgxLjUzNTd2LTEuNTM1SDk5Ljc1di00LjYwOGgtMS41MzU3di0xLjUzNWgtMS41MzU3djEuNTM1aC0xLjUzNTd2MS41MzZoLTEuNTM1OHYzLjA3MmgtMS41MzU3WiIvPjxwYXRoIGZpbGw9IiNFOUNEQjkiIGQ9Ik05MC41MzU3IDEzNS4zNTdoMS41MzU3djEuNTM2aC0xLjUzNTd2LTEuNTM2Wm0xLjUzNTctMS41MzZoMS41MzU3djEuNTM2aC0xLjUzNTd2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiM5QzQ2MDciIGQ9Ik05My42MDcxIDEzMy44MjFoMy4wNzE1djEuNTM2aC0zLjA3MTV2LTEuNTM2Wm0zLjA3MTUtMS41MzVoMS41MzU3djEuNTM1aC0xLjUzNTd2LTEuNTM1WiIvPjxwYXRoIGZpbGw9IiNFQ0IyN0QiIGQ9Ik05MC41MzU3IDE1My43ODZWMTYzSDk5Ljc1di05LjIxNGgtMS41MzU3di0xLjUzNmgtNi4xNDI5djEuNTM2aC0xLjUzNTdaIi8+PHBhdGggZmlsbD0iIzVFMzAwRSIgZD0iTTkwLjUzNTcgMTU4LjM5M0g5OS43NXYxLjUzNWgtOS4yMTQzdi0xLjUzNVoiLz48cGF0aCBmaWxsPSIjNEIyNjBDIiBkPSJNOTAuNTM1NyAxNTkuOTI4SDk5Ljc1djEuNTM2aC05LjIxNDN2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNFOTIxMjEiIGQ9Ik05MC41MzU3IDE1NS4zMjFIOTkuNzV2MS41MzZoLTkuMjE0M3YtMS41MzZaIi8+PHBhdGggZmlsbD0iIzcwQUMyNCIgZD0iTTkwLjUzNTcgMTU2Ljg1N0g5OS43NXYxLjUzNmgtOS4yMTQzdi0xLjUzNloiLz48cGF0aCBmaWxsPSIjRjVCNDM0IiBkPSJNODkgMTgxLjQyOHYzLjA3MmgxMi4yODZ2LTMuMDcySDk5Ljc1di0xLjUzNWgtMS41MzU3di0xLjUzNmgtNi4xNDI5djEuNTM2aC0xLjUzNTd2MS41MzVIODlaIi8+PHBhdGggZmlsbD0iI0UzQTEyMCIgZD0iTTg5IDE4Mi45NjRoMTIuMjg2djEuNTM2SDg5di0xLjUzNloiLz48cGF0aCBmaWxsPSIjRTkyMTIxIiBkPSJNOTYuNjc4NiAxNzguMzU3aDEuNTM1N3YxLjUzNmgtMS41MzU3di0xLjUzNloiLz48cGF0aCBmaWxsPSIjNzBBQzI0IiBkPSJNOTIuMDcxNCAxNzguMzU3aDEuNTM1N3YxLjUzNmgtMS41MzU3di0xLjUzNloiLz48cGF0aCBmaWxsPSIjRTkyMTIxIiBkPSJNOTMuNjA3MSAxNzguMzU3aDEuNTM1OHYxLjUzNmgtMS41MzU4di0xLjUzNloiLz48cGF0aCBmaWxsPSIjNzBBQzI0IiBkPSJNOTUuMTQyOSAxNzguMzU3aDEuNTM1N3YxLjUzNmgtMS41MzU3di0xLjUzNloiLz48cGF0aCBmaWxsPSIjQjk1MzA5IiBkPSJNMTE2LjY0MyA4My4xNDI4djMuMDcxNWg0LjYwN3YtMS41MzU3aDEuNTM2di0xLjUzNThoMS41MzV2LTQuNjA3MWgtMS41MzVWNzdoLTEuNTM2djEuNTM1N2gtMS41MzZ2MS41MzU3aC0xLjUzNXYzLjA3MTRoLTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNFOUNEQjkiIGQ9Ik0xMTUuMTA3IDg2LjIxNDNoMS41MzZWODcuNzVoLTEuNTM2di0xLjUzNTdabTEuNTM2LTEuNTM1N2gxLjUzNnYxLjUzNTdoLTEuNTM2di0xLjUzNTdaIi8+PHBhdGggZmlsbD0iIzlDNDYwNyIgZD0iTTExOC4xNzkgODQuNjc4NmgzLjA3MXYxLjUzNTdoLTMuMDcxdi0xLjUzNTdabTMuMDcxLTEuNTM1OGgxLjUzNnYxLjUzNThoLTEuNTM2di0xLjUzNThaIi8+PHBhdGggZmlsbD0iI0VDQjI3RCIgZD0iTTExNS4xMDcgMTA0LjY0M3Y5LjIxNGg5LjIxNHYtOS4yMTRoLTEuNTM1di0xLjUzNmgtNi4xNDN2MS41MzZoLTEuNTM2WiIvPjxwYXRoIGZpbGw9IiM1RTMwMEUiIGQ9Ik0xMTUuMTA3IDEwOS4yNWg5LjIxNHYxLjUzNmgtOS4yMTR2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiM0QjI2MEMiIGQ9Ik0xMTUuMTA3IDExMC43ODZoOS4yMTR2MS41MzVoLTkuMjE0di0xLjUzNVoiLz48cGF0aCBmaWxsPSIjRTkyMTIxIiBkPSJNMTE1LjEwNyAxMDYuMTc5aDkuMjE0djEuNTM1aC05LjIxNHYtMS41MzVaIi8+PHBhdGggZmlsbD0iIzcwQUMyNCIgZD0iTTExNS4xMDcgMTA3LjcxNGg5LjIxNHYxLjUzNmgtOS4yMTR2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNGNUI0MzQiIGQ9Ik0xMTMuNTcxIDEzMi4yODZ2My4wNzFoMTIuMjg2di0zLjA3MWgtMS41MzZ2LTEuNTM2aC0xLjUzNXYtMS41MzZoLTYuMTQzdjEuNTM2aC0xLjUzNnYxLjUzNmgtMS41MzZaIi8+PHBhdGggZmlsbD0iI0UzQTEyMCIgZD0iTTExMy41NzEgMTMzLjgyMWgxMi4yODZ2MS41MzZoLTEyLjI4NnYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0U5MjEyMSIgZD0iTTEyMS4yNSAxMjkuMjE0aDEuNTM2djEuNTM2aC0xLjUzNnYtMS41MzZaIi8+PHBhdGggZmlsbD0iIzcwQUMyNCIgZD0iTTExNi42NDMgMTI5LjIxNGgxLjUzNnYxLjUzNmgtMS41MzZ2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNFOTIxMjEiIGQ9Ik0xMTguMTc5IDEyOS4yMTRoMS41MzV2MS41MzZoLTEuNTM1di0xLjUzNloiLz48cGF0aCBmaWxsPSIjNzBBQzI0IiBkPSJNMTE5LjcxNCAxMjkuMjE0aDEuNTM2djEuNTM2aC0xLjUzNnYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0VDQjI3RCIgZD0iTTExNS4xMDcgMTUzLjc4Nmg5LjIxNHY2LjE0MmgtOS4yMTR2LTYuMTQyWiIvPjxwYXRoIGZpbGw9IiNFOTY3NkYiIGQ9Ik0xMTMuNTcxIDE1NS4zMjFoMS41MzZ2My4wNzJoLTEuNTM2di0zLjA3MloiLz48cGF0aCBmaWxsPSIjRTkyMTIxIiBkPSJNMTE1LjEwNyAxNTUuMzIxaDkuMjE0djEuNTM2aC05LjIxNHYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0Y1QjQzNCIgZD0iTTExNS4xMDcgMTU2Ljg1N2g5LjIxNHYxLjUzNmgtOS4yMTR2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNFOTY3NkYiIGQ9Ik0xMjQuMzIxIDE1NS4zMjFoMS41MzZ2My4wNzJoLTEuNTM2di0zLjA3MloiLz48cGF0aCBmaWxsPSIjRjVBODM0IiBkPSJNMTI0LjMyMSAxNzYuODIxaC0xLjUzNXYxLjUzNmgtMS41MzZ2MS41MzZoLTEuNTM2djEuNTM1aC0xLjUzNXYxLjUzNmgtMS41MzZ2MS41MzZoLTEuNTM2djEuNTM2aDkuMjE0di05LjIxNVoiLz48cGF0aCBmaWxsPSIjRjU5MTM0IiBkPSJNMTE1LjEwNyAxODQuNWgxLjUzNnYxLjUzNmgtMS41MzZWMTg0LjVaIi8+PHBhdGggZmlsbD0iI0UyOTUyMSIgZD0iTTExNi42NDMgMTg0LjVoMS41MzZ2MS41MzZoLTEuNTM2VjE4NC41WiIvPjxwYXRoIGZpbGw9IiNGNTkxMzQiIGQ9Ik0xMjEuMjUgMTg0LjVoMS41MzZ2MS41MzZoLTEuNTM2VjE4NC41WiIvPjxwYXRoIGZpbGw9IiNFMjk1MjEiIGQ9Ik0xMjIuNzg2IDE4NC41aDEuNTM1djEuNTM2aC0xLjUzNVYxODQuNVoiLz48cGF0aCBmaWxsPSIjRjU5MTM0IiBkPSJNMTIyLjc4NiAxNzguMzU3aDEuNTM1djEuNTM2aC0xLjUzNXYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0UyOTUyMSIgZD0iTTEyMS4yNSAxNzguMzU3aDEuNTM2djEuNTM2aC0xLjUzNnYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0Y1OTEzNCIgZD0iTTEyMS4yNSAxNzkuODkzaDEuNTM2djEuNTM1aC0xLjUzNnYtMS41MzVaIi8+PHBhdGggZmlsbD0iI0UyOTUyMSIgZD0iTTExOS43MTQgMTgyLjk2NGgxLjUzNnYxLjUzNmgtMS41MzZ2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNGNTkxMzQiIGQ9Ik0xMTguMTc5IDE4MS40MjhoMS41MzV2MS41MzZoLTEuNTM1di0xLjUzNloiLz48cGF0aCBmaWxsPSIjRjVCNDM0IiBkPSJNMTM4LjE0MyA4My4xNDI4djMuMDcxNWgxMi4yODZ2LTMuMDcxNWgtMS41MzZ2LTEuNTM1N2gtMS41MzZ2LTEuNTM1N2gtNi4xNDN2MS41MzU3aC0xLjUzNXYxLjUzNTdoLTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNFM0ExMjAiIGQ9Ik0xMzguMTQzIDg0LjY3ODZoMTIuMjg2djEuNTM1N2gtMTIuMjg2di0xLjUzNTdaIi8+PHBhdGggZmlsbD0iI0U5MjEyMSIgZD0iTTE0NS44MjEgODAuMDcxNGgxLjUzNnYxLjUzNTdoLTEuNTM2di0xLjUzNTdaIi8+PHBhdGggZmlsbD0iIzcwQUMyNCIgZD0iTTE0MS4yMTQgODAuMDcxNGgxLjUzNnYxLjUzNTdoLTEuNTM2di0xLjUzNTdaIi8+PHBhdGggZmlsbD0iI0U5MjEyMSIgZD0iTTE0Mi43NSA4MC4wNzE0aDEuNTM2djEuNTM1N2gtMS41MzZ2LTEuNTM1N1oiLz48cGF0aCBmaWxsPSIjNzBBQzI0IiBkPSJNMTQ0LjI4NiA4MC4wNzE0aDEuNTM1djEuNTM1N2gtMS41MzV2LTEuNTM1N1oiLz48cGF0aCBmaWxsPSIjRUNCMjdEIiBkPSJNMTM5LjY3OSAxMDQuNjQzaDkuMjE0djYuMTQzaC05LjIxNHYtNi4xNDNaIi8+PHBhdGggZmlsbD0iI0U5Njc2RiIgZD0iTTEzOC4xNDMgMTA2LjE3OWgxLjUzNnYzLjA3MWgtMS41MzZ2LTMuMDcxWiIvPjxwYXRoIGZpbGw9IiNFOTIxMjEiIGQ9Ik0xMzkuNjc5IDEwNi4xNzloOS4yMTR2MS41MzVoLTkuMjE0di0xLjUzNVoiLz48cGF0aCBmaWxsPSIjRjVCNDM0IiBkPSJNMTM5LjY3OSAxMDcuNzE0aDkuMjE0djEuNTM2aC05LjIxNHYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0U5Njc2RiIgZD0iTTE0OC44OTMgMTA2LjE3OWgxLjUzNnYzLjA3MWgtMS41MzZ2LTMuMDcxWiIvPjxwYXRoIGZpbGw9IiNGNUE4MzQiIGQ9Ik0xNDguODkzIDEyNy42NzhoLTEuNTM2djEuNTM2aC0xLjUzNnYxLjUzNmgtMS41MzV2MS41MzZoLTEuNTM2djEuNTM1aC0xLjUzNnYxLjUzNmgtMS41MzV2MS41MzZoOS4yMTR2LTkuMjE1WiIvPjxwYXRoIGZpbGw9IiNGNTkxMzQiIGQ9Ik0xMzkuNjc5IDEzNS4zNTdoMS41MzV2MS41MzZoLTEuNTM1di0xLjUzNloiLz48cGF0aCBmaWxsPSIjRTI5NTIxIiBkPSJNMTQxLjIxNCAxMzUuMzU3aDEuNTM2djEuNTM2aC0xLjUzNnYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0Y1OTEzNCIgZD0iTTE0NS44MjEgMTM1LjM1N2gxLjUzNnYxLjUzNmgtMS41MzZ2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNFMjk1MjEiIGQ9Ik0xNDcuMzU3IDEzNS4zNTdoMS41MzZ2MS41MzZoLTEuNTM2di0xLjUzNloiLz48cGF0aCBmaWxsPSIjRjU5MTM0IiBkPSJNMTQ3LjM1NyAxMjkuMjE0aDEuNTM2djEuNTM2aC0xLjUzNnYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0UyOTUyMSIgZD0iTTE0NS44MjEgMTI5LjIxNGgxLjUzNnYxLjUzNmgtMS41MzZ2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNGNTkxMzQiIGQ9Ik0xNDUuODIxIDEzMC43NWgxLjUzNnYxLjUzNmgtMS41MzZ2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNFMjk1MjEiIGQ9Ik0xNDQuMjg2IDEzMy44MjFoMS41MzV2MS41MzZoLTEuNTM1di0xLjUzNloiLz48cGF0aCBmaWxsPSIjRjU5MTM0IiBkPSJNMTQyLjc1IDEzMi4yODZoMS41MzZ2MS41MzVoLTEuNTM2di0xLjUzNVoiLz48cGF0aCBmaWxsPSIjRjVCNDM0IiBkPSJNMTM4LjE0MyAxNTkuOTI4djEuNTM2aDEwLjc1di00LjYwN2gtMS41MzZ2LTEuNTM2aC0xLjUzNnYtMS41MzVoLTEuNTM1djEuNTM1aC0xLjUzNnYxLjUzNmgtMS41MzZ2MS41MzZoLTEuNTM1djEuNTM1aC0xLjUzNloiLz48cGF0aCBmaWxsPSIjQjk1MzA5IiBkPSJNMTQ0LjI4NiAxNTMuNzg2di0xLjUzNmgzLjA3MXYxLjUzNmgxLjUzNnYxLjUzNWgxLjUzNnY2LjE0M2gtMS41MzZ2LTQuNjA3aC0xLjUzNnYtMS41MzZoLTEuNTM2di0xLjUzNWgtMS41MzVaIi8+PHBhdGggZmlsbD0iI0U5MjEyMSIgZD0iTTEzOS42NzkgMTU5LjkyOGgxLjUzNXYxLjUzNmgtMS41MzV2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNFM0ExMjAiIGQ9Ik0xNDQuMjg2IDE1OS45MjhoNC42MDd2MS41MzZoLTQuNjA3di0xLjUzNloiLz48cGF0aCBmaWxsPSIjQjk1MzA5IiBkPSJNMTQ4Ljg5MyAxNTYuODU3aDEuNTM2djEuNTM2aC0xLjUzNnYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0U5MjEyMSIgZD0iTTE0Mi43NSAxNTYuODU3aDEuNTM2djEuNTM2aC0xLjUzNnYtMS41MzZabTMuMDcxIDEuNTM2aDEuNTM2djEuNTM1aC0xLjUzNnYtMS41MzVaIi8+PHBhdGggZmlsbD0iI0Q1RjZGNCIgZD0iTTE0OC44OTMgMTg0LjV2LTMuMDcyaC05LjIxNHYzLjA3MmgxLjUzNXYxLjUzNmg2LjE0M1YxODQuNWgxLjUzNloiLz48cGF0aCBmaWxsPSIjNzBBQzI0IiBkPSJNMTQxLjIxNCAxODEuNDI4aDYuMTQzdjEuNTM2aC02LjE0M3YtMS41MzZaIi8+PHBhdGggZmlsbD0iIzU1ODMxQiIgZD0iTTE0Mi43NSAxODIuOTY0aDMuMDcxdjEuNTM2aC0zLjA3MXYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0Y1QjQzNCIgZD0iTTE0NS44MjEgMTc5Ljg5M2gxLjUzNnYxLjUzNWgtMS41MzZ2LTEuNTM1Wm0tMS41MzUgMGgxLjUzNXYxLjUzNWgtMS41MzV2LTEuNTM1Wm0wLTEuNTM2aDEuNTM1djEuNTM2aC0xLjUzNXYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0Y1QTgzNCIgZD0iTTE3My40NjQgNzguNTM1N2gtMS41MzV2MS41MzU3aC0xLjUzNnYxLjUzNTdoLTEuNTM2djEuNTM1N2gtMS41MzZ2MS41MzU4aC0xLjUzNXYxLjUzNTdoLTEuNTM2Vjg3Ljc1aDkuMjE0di05LjIxNDNaIi8+PHBhdGggZmlsbD0iI0Y1OTEzNCIgZD0iTTE2NC4yNSA4Ni4yMTQzaDEuNTM2Vjg3Ljc1aC0xLjUzNnYtMS41MzU3WiIvPjxwYXRoIGZpbGw9IiNFMjk1MjEiIGQ9Ik0xNjUuNzg2IDg2LjIxNDNoMS41MzVWODcuNzVoLTEuNTM1di0xLjUzNTdaIi8+PHBhdGggZmlsbD0iI0Y1OTEzNCIgZD0iTTE3MC4zOTMgODYuMjE0M2gxLjUzNlY4Ny43NWgtMS41MzZ2LTEuNTM1N1oiLz48cGF0aCBmaWxsPSIjRTI5NTIxIiBkPSJNMTcxLjkyOSA4Ni4yMTQzaDEuNTM1Vjg3Ljc1aC0xLjUzNXYtMS41MzU3WiIvPjxwYXRoIGZpbGw9IiNGNTkxMzQiIGQ9Ik0xNzEuOTI5IDgwLjA3MTRoMS41MzV2MS41MzU3aC0xLjUzNXYtMS41MzU3WiIvPjxwYXRoIGZpbGw9IiNFMjk1MjEiIGQ9Ik0xNzAuMzkzIDgwLjA3MTRoMS41MzZ2MS41MzU3aC0xLjUzNnYtMS41MzU3WiIvPjxwYXRoIGZpbGw9IiNGNTkxMzQiIGQ9Ik0xNzAuMzkzIDgxLjYwNzFoMS41MzZ2MS41MzU3aC0xLjUzNnYtMS41MzU3WiIvPjxwYXRoIGZpbGw9IiNFMjk1MjEiIGQ9Ik0xNjguODU3IDg0LjY3ODZoMS41MzZ2MS41MzU3aC0xLjUzNnYtMS41MzU3WiIvPjxwYXRoIGZpbGw9IiNGNTkxMzQiIGQ9Ik0xNjcuMzIxIDgzLjE0MjhoMS41MzZ2MS41MzU4aC0xLjUzNnYtMS41MzU4WiIvPjxwYXRoIGZpbGw9IiNGNUI0MzQiIGQ9Ik0xNjIuNzE0IDExMC43ODZ2MS41MzVoMTAuNzV2LTQuNjA3aC0xLjUzNXYtMS41MzVoLTEuNTM2di0xLjUzNmgtMS41MzZ2MS41MzZoLTEuNTM2djEuNTM1aC0xLjUzNXYxLjUzNmgtMS41MzZ2MS41MzZoLTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNCOTUzMDkiIGQ9Ik0xNjguODU3IDEwNC42NDN2LTEuNTM2aDMuMDcydjEuNTM2aDEuNTM1djEuNTM2SDE3NXY2LjE0MmgtMS41MzZ2LTQuNjA3aC0xLjUzNXYtMS41MzVoLTEuNTM2di0xLjUzNmgtMS41MzZaIi8+PHBhdGggZmlsbD0iI0U5MjEyMSIgZD0iTTE2NC4yNSAxMTAuNzg2aDEuNTM2djEuNTM1aC0xLjUzNnYtMS41MzVaIi8+PHBhdGggZmlsbD0iI0UzQTEyMCIgZD0iTTE2OC44NTcgMTEwLjc4Nmg0LjYwN3YxLjUzNWgtNC42MDd2LTEuNTM1WiIvPjxwYXRoIGZpbGw9IiNCOTUzMDkiIGQ9Ik0xNzMuNDY0IDEwNy43MTRIMTc1djEuNTM2aC0xLjUzNnYtMS41MzZaIi8+PHBhdGggZmlsbD0iI0U5MjEyMSIgZD0iTTE2Ny4zMjEgMTA3LjcxNGgxLjUzNnYxLjUzNmgtMS41MzZ2LTEuNTM2Wm0zLjA3MiAxLjUzNmgxLjUzNnYxLjUzNmgtMS41MzZ2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNENUY2RjQiIGQ9Ik0xNzMuNDY0IDEzNS4zNTd2LTMuMDcxaC05LjIxNHYzLjA3MWgxLjUzNnYxLjUzNmg2LjE0M3YtMS41MzZoMS41MzVaIi8+PHBhdGggZmlsbD0iIzcwQUMyNCIgZD0iTTE2NS43ODYgMTMyLjI4Nmg2LjE0M3YxLjUzNWgtNi4xNDN2LTEuNTM1WiIvPjxwYXRoIGZpbGw9IiM1NTgzMUIiIGQ9Ik0xNjcuMzIxIDEzMy44MjFoMy4wNzJ2MS41MzZoLTMuMDcydi0xLjUzNloiLz48cGF0aCBmaWxsPSIjRjVCNDM0IiBkPSJNMTcwLjM5MyAxMzAuNzVoMS41MzZ2MS41MzZoLTEuNTM2di0xLjUzNlptLTEuNTM2IDBoMS41MzZ2MS41MzZoLTEuNTM2di0xLjUzNlptMC0xLjUzNmgxLjUzNnYxLjUzNmgtMS41MzZ2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiNCOTUzMDkiIGQ9Ik0xNjUuNzg2IDE1Ni44NTd2My4wNzFoNC42MDd2LTEuNTM1aDEuNTM2di0xLjUzNmgxLjUzNXYtNC42MDdoLTEuNTM1di0xLjUzNmgtMS41MzZ2MS41MzZoLTEuNTM2djEuNTM2aC0xLjUzNnYzLjA3MWgtMS41MzVaIi8+PHBhdGggZmlsbD0iI0U5Q0RCOSIgZD0iTTE2NC4yNSAxNTkuOTI4aDEuNTM2djEuNTM2aC0xLjUzNnYtMS41MzZabTEuNTM2LTEuNTM1aDEuNTM1djEuNTM1aC0xLjUzNXYtMS41MzVaIi8+PHBhdGggZmlsbD0iIzlDNDYwNyIgZD0iTTE2Ny4zMjEgMTU4LjM5M2gzLjA3MnYxLjUzNWgtMy4wNzJ2LTEuNTM1Wm0zLjA3Mi0xLjUzNmgxLjUzNnYxLjUzNmgtMS41MzZ2LTEuNTM2WiIvPjxwYXRoIGZpbGw9IiMxREExRjIiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE3MS45MjkgMTczLjc1aC02LjE0M3YxLjUzNmgtMS41MzZ2MS41MzVoLTEuNTM2djYuMTQzaDEuNTM2djEuNTM2aDEuNTM2djEuNTM2aDYuMTQzVjE4NC41aDEuNTM1di0xLjUzNkgxNzV2LTYuMTQzaC0xLjUzNnYtMS41MzVoLTEuNTM1di0xLjUzNlptLTYuMTQzIDYuMTQzaDEuNTM1djEuNTM1aC0xLjUzNXYtMS41MzVabTMuMDcxIDEuNTM1djEuNTM2aC0xLjUzNnYtMS41MzZoMS41MzZabTEuNTM2LTEuNTM1aC0xLjUzNnYxLjUzNWgxLjUzNnYtMS41MzVabTAgMHYtMS41MzZoMS41MzZ2MS41MzZoLTEuNTM2WiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9zdmc+'; string memory json = string( abi.encodePacked( '{"name": "Snacks ', uint2str(tokenId), '", "description": "Here for the snacks, preferably not burned.", "image": "', image, '"}' ) ); return string( abi.encodePacked( 'data:application/json;base64,', Base64.encode(bytes(json)) ) ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"end","type":"uint256"}],"name":"minutesRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"end","type":"uint256"}],"name":"secondsRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526363e97d806009553480156200001957600080fd5b506040518060400160405280601081526020017f53757065726275726e20536e61636b73000000000000000000000000000000008152506040518060400160405280600681526020017f534e41434b530000000000000000000000000000000000000000000000000000815250816002908162000097919062000439565b508060039081620000a9919062000439565b50620000ba620000e860201b60201c565b6000819055505050620000e2620000d6620000f160201b60201c565b620000f960201b60201c565b62000520565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200024157607f821691505b602082108103620002575762000256620001f9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002c17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000282565b620002cd868362000282565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200031a620003146200030e84620002e5565b620002ef565b620002e5565b9050919050565b6000819050919050565b6200033683620002f9565b6200034e620003458262000321565b8484546200028f565b825550505050565b600090565b6200036562000356565b620003728184846200032b565b505050565b5b818110156200039a576200038e6000826200035b565b60018101905062000378565b5050565b601f821115620003e957620003b3816200025d565b620003be8462000272565b81016020851015620003ce578190505b620003e6620003dd8562000272565b83018262000377565b50505b505050565b600082821c905092915050565b60006200040e60001984600802620003ee565b1980831691505092915050565b6000620004298383620003fb565b9150826002028217905092915050565b6200044482620001bf565b67ffffffffffffffff81111562000460576200045f620001ca565b5b6200046c825462000228565b620004798282856200039e565b600060209050601f831160018114620004b157600084156200049c578287015190505b620004a885826200041b565b86555062000518565b601f198416620004c1866200025d565b60005b82811015620004eb57848901518255600182019150602085019450602081019050620004c4565b868310156200050b578489015162000507601f891682620003fb565b8355505b6001600288020188555050505b505050505050565b615d1980620005306000396000f3fe6080604052600436106101355760003560e01c8063715018a6116100ab578063a22cb4651161006f578063a22cb465146103f2578063b88d4fde1461041b578063c87b56dd14610437578063e757223014610474578063e985e9c5146104b1578063f2fde38b146104ee57610135565b8063715018a61461032c57806385bb3654146103435780638da5cb5b1461038057806395d89b41146103ab578063a0712d68146103d657610135565b806323b872dd116100fd57806323b872dd146102265780633ccfd60b1461024257806342842e0e146102595780636352211e1461027557806365ae654e146102b257806370a08231146102ef57610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806318160ddd146101fb575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611c85565b610517565b60405161016e9190611ccd565b60405180910390f35b34801561018357600080fd5b5061018c6105a9565b6040516101999190611d78565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190611dd0565b61063b565b6040516101d69190611e3e565b60405180910390f35b6101f960048036038101906101f49190611e85565b6106ba565b005b34801561020757600080fd5b506102106107fe565b60405161021d9190611ed4565b60405180910390f35b610240600480360381019061023b9190611eef565b610815565b005b34801561024e57600080fd5b50610257610b37565b005b610273600480360381019061026e9190611eef565b610b7f565b005b34801561028157600080fd5b5061029c60048036038101906102979190611dd0565b610b9f565b6040516102a99190611e3e565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190611dd0565b610bb1565b6040516102e69190611ed4565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190611f42565b610bd7565b6040516103239190611ed4565b60405180910390f35b34801561033857600080fd5b50610341610c8f565b005b34801561034f57600080fd5b5061036a60048036038101906103659190611dd0565b610ca3565b6040516103779190611ed4565b60405180910390f35b34801561038c57600080fd5b50610395610cde565b6040516103a29190611e3e565b60405180910390f35b3480156103b757600080fd5b506103c0610d08565b6040516103cd9190611d78565b60405180910390f35b6103f060048036038101906103eb9190611dd0565b610d9a565b005b3480156103fe57600080fd5b5061041960048036038101906104149190611f9b565b610e7b565b005b61043560048036038101906104309190612110565b610f86565b005b34801561044357600080fd5b5061045e60048036038101906104599190611dd0565b610ff9565b60405161046b9190611d78565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190611dd0565b61100b565b6040516104a89190611ed4565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190612193565b611117565b6040516104e59190611ccd565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190611f42565b6111ab565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105b890612202565b80601f01602080910402602001604051908101604052809291908181526020018280546105e490612202565b80156106315780601f1061060657610100808354040283529160200191610631565b820191906000526020600020905b81548152906001019060200180831161061457829003601f168201915b5050505050905090565b60006106468261122e565b61067c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106c582610b9f565b90508073ffffffffffffffffffffffffffffffffffffffff166106e661128d565b73ffffffffffffffffffffffffffffffffffffffff1614610749576107128161070d61128d565b611117565b610748576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610808611295565b6001546000540303905090565b60006108208261129e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610887576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108938461136a565b915091506108a981876108a461128d565b611391565b6108f5576108be866108b961128d565b611117565b6108f4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361095b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61096886868660016113d5565b801561097357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a4185610a1d8888876113db565b7c020000000000000000000000000000000000000000000000000000000017611403565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ac75760006001850190506000600460008381526020019081526020016000205403610ac5576000548114610ac4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b2f868686600161142e565b505050505050565b610b3f611434565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610b7d57600080fd5b565b610b9a83838360405180602001604052806000815250610f86565b505050565b6000610baa8261129e565b9050919050565b6000814211610bcd574282610bc69190612262565b9050610bd2565b600090505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c97611434565b610ca160006114b2565b565b6000603c610cb083610bb1565b10610cd457603c4283610cc39190612262565b610ccd91906122c5565b9050610cd9565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d1790612202565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4390612202565b8015610d905780601f10610d6557610100808354040283529160200191610d90565b820191906000526020600020905b815481529060010190602001808311610d7357829003601f168201915b5050505050905090565b610da38161100b565b341015610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90612342565b60405180910390fd5b6014811115610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906123ae565b60405180910390fd5b600954421115610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e659061241a565b60405180910390fd5b610e783382611578565b50565b8060076000610e8861128d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f3561128d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f7a9190611ccd565b60405180910390a35050565b610f91848484610815565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610ff357610fbc84848484611733565b610ff2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061100482611883565b9050919050565b6000806000905060005b8381101561110d576064611027611904565b82611032919061243a565b11801561105257506103e9611045611904565b82611050919061243a565b105b156110715766038d7ea4c680008261106a919061243a565b91506110fa565b6103e861107c611904565b82611087919061243a565b1180156110a7575061138961109a611904565b826110a5919061243a565b105b156110c6576611c37937e08000826110bf919061243a565b91506110f9565b6113886110d1611904565b826110dc919061243a565b11156110f857662386f26fc10000826110f5919061243a565b91505b5b5b80806111059061246e565b915050611015565b5080915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111b3611434565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990612528565b60405180910390fd5b61122b816114b2565b50565b600081611239611295565b11158015611248575060005482105b8015611286575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806112ad611295565b11611333576000548110156113325760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611330575b600081036113265760046000836001900393508381526020019081526020016000205490506112fc565b8092505050611365565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86113f286868461190d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61143c611916565b73ffffffffffffffffffffffffffffffffffffffff1661145a610cde565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790612594565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082036115b8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115c560008483856113d5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061163c8361162d60008660006113db565b6116368561191e565b17611403565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146116dd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506116a2565b5060008203611718576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061172e600084838561142e565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261175961128d565b8786866040518563ffffffff1660e01b815260040161177b9493929190612609565b6020604051808303816000875af19250505080156117b757506040513d601f19601f820116820180604052508101906117b4919061266a565b60015b611830573d80600081146117e7576040519150601f19603f3d011682016040523d82523d6000602084013e6117ec565b606091505b506000815103611828576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600060405180613360016040528061333a81526020016129aa61333a9139905060006118b08461192e565b826040516020016118c2929190612803565b60405160208183030381529060405290506118dc81611ab6565b6040516020016118ec9190612894565b60405160208183030381529060405292505050919050565b60008054905090565b60009392505050565b600033905090565b60006001821460e11b9050919050565b606060008203611975576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ab1565b600082905060005b600082146119a75780806119909061246e565b915050600a826119a091906122c5565b915061197d565b60008167ffffffffffffffff8111156119c3576119c2611fe5565b5b6040519080825280601f01601f1916602001820160405280156119f55781602001600182028036833780820191505090505b50905060008290505b60008614611aa957600181611a139190612262565b90506000600a8088611a2591906122c5565b611a2f91906128b6565b87611a3a9190612262565b6030611a469190612905565b905060008160f81b905080848481518110611a6457611a6361293a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611aa091906122c5565b975050506119fe565b819450505050505b919050565b60606000825103611ad857604051806020016040528060008152509050611c14565b600060405180606001604052806040815260200161296a6040913990506000600360028551611b07919061243a565b611b1191906122c5565b6004611b1d91906128b6565b67ffffffffffffffff811115611b3657611b35611fe5565b5b6040519080825280601f01601f191660200182016040528015611b685781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611bd4576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050611b79565b5050600386510660018114611bf05760028114611c0357611c0b565b603d6001830353603d6002830353611c0b565b603d60018303535b50505080925050505b919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611c6281611c2d565b8114611c6d57600080fd5b50565b600081359050611c7f81611c59565b92915050565b600060208284031215611c9b57611c9a611c23565b5b6000611ca984828501611c70565b91505092915050565b60008115159050919050565b611cc781611cb2565b82525050565b6000602082019050611ce26000830184611cbe565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d22578082015181840152602081019050611d07565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d4a82611ce8565b611d548185611cf3565b9350611d64818560208601611d04565b611d6d81611d2e565b840191505092915050565b60006020820190508181036000830152611d928184611d3f565b905092915050565b6000819050919050565b611dad81611d9a565b8114611db857600080fd5b50565b600081359050611dca81611da4565b92915050565b600060208284031215611de657611de5611c23565b5b6000611df484828501611dbb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e2882611dfd565b9050919050565b611e3881611e1d565b82525050565b6000602082019050611e536000830184611e2f565b92915050565b611e6281611e1d565b8114611e6d57600080fd5b50565b600081359050611e7f81611e59565b92915050565b60008060408385031215611e9c57611e9b611c23565b5b6000611eaa85828601611e70565b9250506020611ebb85828601611dbb565b9150509250929050565b611ece81611d9a565b82525050565b6000602082019050611ee96000830184611ec5565b92915050565b600080600060608486031215611f0857611f07611c23565b5b6000611f1686828701611e70565b9350506020611f2786828701611e70565b9250506040611f3886828701611dbb565b9150509250925092565b600060208284031215611f5857611f57611c23565b5b6000611f6684828501611e70565b91505092915050565b611f7881611cb2565b8114611f8357600080fd5b50565b600081359050611f9581611f6f565b92915050565b60008060408385031215611fb257611fb1611c23565b5b6000611fc085828601611e70565b9250506020611fd185828601611f86565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61201d82611d2e565b810181811067ffffffffffffffff8211171561203c5761203b611fe5565b5b80604052505050565b600061204f611c19565b905061205b8282612014565b919050565b600067ffffffffffffffff82111561207b5761207a611fe5565b5b61208482611d2e565b9050602081019050919050565b82818337600083830152505050565b60006120b36120ae84612060565b612045565b9050828152602081018484840111156120cf576120ce611fe0565b5b6120da848285612091565b509392505050565b600082601f8301126120f7576120f6611fdb565b5b81356121078482602086016120a0565b91505092915050565b6000806000806080858703121561212a57612129611c23565b5b600061213887828801611e70565b945050602061214987828801611e70565b935050604061215a87828801611dbb565b925050606085013567ffffffffffffffff81111561217b5761217a611c28565b5b612187878288016120e2565b91505092959194509250565b600080604083850312156121aa576121a9611c23565b5b60006121b885828601611e70565b92505060206121c985828601611e70565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061221a57607f821691505b60208210810361222d5761222c6121d3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061226d82611d9a565b915061227883611d9a565b92508282039050818111156122905761228f612233565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006122d082611d9a565b91506122db83611d9a565b9250826122eb576122ea612296565b5b828204905092915050565b7f6e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b600061232c600e83611cf3565b9150612337826122f6565b602082019050919050565b6000602082019050818103600083015261235b8161231f565b9050919050565b7f6d61782032302070657220747800000000000000000000000000000000000000600082015250565b6000612398600d83611cf3565b91506123a382612362565b602082019050919050565b600060208201905081810360008301526123c78161238b565b9050919050565b7f6d696e7420697320636c6f736564000000000000000000000000000000000000600082015250565b6000612404600e83611cf3565b915061240f826123ce565b602082019050919050565b60006020820190508181036000830152612433816123f7565b9050919050565b600061244582611d9a565b915061245083611d9a565b925082820190508082111561246857612467612233565b5b92915050565b600061247982611d9a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036124ab576124aa612233565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612512602683611cf3565b915061251d826124b6565b604082019050919050565b6000602082019050818103600083015261254181612505565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061257e602083611cf3565b915061258982612548565b602082019050919050565b600060208201905081810360008301526125ad81612571565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006125db826125b4565b6125e581856125bf565b93506125f5818560208601611d04565b6125fe81611d2e565b840191505092915050565b600060808201905061261e6000830187611e2f565b61262b6020830186611e2f565b6126386040830185611ec5565b818103606083015261264a81846125d0565b905095945050505050565b60008151905061266481611c59565b92915050565b6000602082840312156126805761267f611c23565b5b600061268e84828501612655565b91505092915050565b600081905092915050565b7f7b226e616d65223a2022536e61636b7320000000000000000000000000000000600082015250565b60006126d8601183612697565b91506126e3826126a2565b601182019050919050565b60006126f982611ce8565b6127038185612697565b9350612713818560208601611d04565b80840191505092915050565b7f222c20226465736372697074696f6e223a20224865726520666f72207468652060008201527f736e61636b732c2070726566657261626c79206e6f74206275726e65642e222c60208201527f2022696d616765223a2022000000000000000000000000000000000000000000604082015250565b60006127a1604b83612697565b91506127ac8261271f565b604b82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006127ed600283612697565b91506127f8826127b7565b600282019050919050565b600061280e826126cb565b915061281a82856126ee565b915061282582612794565b915061283182846126ee565b915061283c826127e0565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061287e601d83612697565b915061288982612848565b601d82019050919050565b600061289f82612871565b91506128ab82846126ee565b915081905092915050565b60006128c182611d9a565b91506128cc83611d9a565b92508282026128da81611d9a565b915082820484148315176128f1576128f0612233565b5b5092915050565b600060ff82169050919050565b6000612910826128f8565b915061291b836128f8565b9250828201905060ff81111561293457612933612233565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f646174613a696d6167652f7376672b786d6c3b6261736536342c50484e325a79423462577875637a30696148523063446f764c336433647935334d793576636d63764d6a41774d43397a646d6369494864705a48526f505349794e6a51694947686c6157646f644430694d6a59304969426d6157787350534a756232356c496a3438634746306143426d615778735053496a52554a46516b56434969426b50534a4e4d434177614449324e4859794e6a52494d486f694c7a3438634746306143426d615778735053496a5a6d5a6d4969426b50534a4e4e6a51674e44686f4d544d32646a45324f4567324e486f694c7a3438634746306143426d615778735053496a526a56434e444d304969426b50534a4e4f446b674f4459754d6a45304d3159344e7934334e5767784d4334334e5859744e4334324d446379614330784c6a557a4e5464324c5445754e544d314e3267744d5334314d7a5533646930784c6a557a4e54646f4c5445754e544d314e3359784c6a557a4e54646f4c5445754e544d314f4859784c6a557a4e54646f4c5445754e544d314e3359784c6a557a4e54686f4c5445754e544d314e3359784c6a557a4e5464494f446c614969382b50484268644767675a6d6c7362443069493049354e544d774f5349675a44306954546b314c6a45304d6a6b674f4441754d4463784e4859744d5334314d7a553361444d754d4463784e4859784c6a557a4e5464494f546b754e7a56324d5334314d7a5533614445754e544d32566a67334c6a633153446b354c6a6331646930304c6a59774e7a4a6f4c5445754e544d314e3359744d5334314d7a5533614330784c6a557a4e5464324c5445754e544d314e3267744d5334314d7a553357694976506a78775958526f49475a706247773949694e464f5449784d6a456949475139496b30354d4334314d7a5533494467324c6a49784e444e6f4d5334314d7a5533566a67334c6a6331614330784c6a557a4e5464324c5445754e544d314e316f694c7a3438634746306143426d615778735053496a52544e424d5449774969426b50534a4e4f5455754d5451794f5341344e6934794d54517a53446b354c6a6331566a67334c6a6331614330304c6a59774e7a46324c5445754e544d314e316f694c7a3438634746306143426d615778735053496a516a6b314d7a41354969426b50534a4e4f546b754e7a55674f444d754d5451794f4767784c6a557a4e6e59784c6a557a4e5468494f546b754e7a56324c5445754e544d314f466f694c7a3438634746306143426d615778735053496a52546b794d5449784969426b50534a4e4f544d754e6a41334d5341344d7934784e444934614445754e544d314f4859784c6a557a4e54686f4c5445754e544d314f4859744d5334314d7a5534576d307a4c6a41334d5455674d5334314d7a5534614445754e544d314e3359784c6a557a4e54646f4c5445754e544d314e3359744d5334314d7a553357694976506a78775958526f49475a706247773949694e454e555932526a516949475139496b30354f5334334e5341784d5441754e7a67326469307a4c6a41334d6d67744f5334794d54517a646a4d754d446379614445754e544d314e3359784c6a557a4e5767324c6a45304d6a6c324c5445754e544d3153446b354c6a633157694976506a78775958526f49475a706247773949694d334d4546444d6a516949475139496b30354d6934774e7a4530494445774e7934334d54526f4e6934784e444935646a45754e544d32614330324c6a45304d6a6c324c5445754e544d3257694976506a78775958526f49475a706247773949694d314e54677a4d55496949475139496b30354d7934324d446378494445774f5334794e57677a4c6a41334d5456324d5334314d7a5a6f4c544d754d4463784e5859744d5334314d7a5a614969382b50484268644767675a6d6c736244306949305931516a517a4e4349675a44306954546b324c6a59334f4459674d5441324c6a45334f5767784c6a557a4e5464324d5334314d7a566f4c5445754e544d314e3359744d5334314d7a5661625330784c6a557a4e5463674d4767784c6a557a4e5464324d5334314d7a566f4c5445754e544d314e3359744d5334314d7a5661625441744d5334314d7a5a6f4d5334314d7a5533646a45754e544d32614330784c6a557a4e5464324c5445754e544d3257694976506a78775958526f49475a706247773949694e434f54557a4d446b6949475139496b30354d6934774e7a45304944457a4d6934794f445a324d7934774e7a466f4e4334324d446379646930784c6a557a4e6d67784c6a557a4e5464324c5445754e544d3153446b354c6a6331646930304c6a59774f4767744d5334314d7a5533646930784c6a557a4e5767744d5334314d7a5533646a45754e544d31614330784c6a557a4e5464324d5334314d7a5a6f4c5445754e544d314f48597a4c6a41334d6d67744d5334314d7a553357694976506a78775958526f49475a706247773949694e464f554e45516a6b6949475139496b30354d4334314d7a55334944457a4e53347a4e54646f4d5334314d7a5533646a45754e544d32614330784c6a557a4e5464324c5445754e544d32576d30784c6a557a4e5463744d5334314d7a5a6f4d5334314d7a5533646a45754e544d32614330784c6a557a4e5464324c5445754e544d3257694976506a78775958526f49475a706247773949694d35517a51324d44636949475139496b30354d7934324d4463784944457a4d7934344d6a466f4d7934774e7a4531646a45754e544d326143307a4c6a41334d5456324c5445754e544d32576d307a4c6a41334d5455744d5334314d7a566f4d5334314d7a5533646a45754e544d31614330784c6a557a4e5464324c5445754e544d3157694976506a78775958526f49475a706247773949694e46513049794e30516949475139496b30354d4334314d7a5533494445314d7934334f445a574d54597a53446b354c6a6331646930354c6a49784e4767744d5334314d7a5533646930784c6a557a4e6d67744e6934784e444935646a45754e544d32614330784c6a557a4e5464614969382b50484268644767675a6d6c7362443069497a56464d7a4177525349675a44306954546b774c6a557a4e5463674d5455344c6a4d354d3067354f5334334e5859784c6a557a4e5767744f5334794d54517a646930784c6a557a4e566f694c7a3438634746306143426d615778735053496a4e4549794e6a42444969426b50534a4e4f5441754e544d314e7941784e546b754f54493453446b354c6a6331646a45754e544d32614330354c6a49784e444e324c5445754e544d3257694976506a78775958526f49475a706247773949694e464f5449784d6a456949475139496b30354d4334314d7a5533494445314e53347a4d6a46494f546b754e7a56324d5334314d7a5a6f4c546b754d6a45304d3359744d5334314d7a5a614969382b50484268644767675a6d6c7362443069497a637751554d794e4349675a44306954546b774c6a557a4e5463674d5455324c6a67314e3067354f5334334e5859784c6a557a4e6d67744f5334794d54517a646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a526a56434e444d304969426b50534a4e4f446b674d5467784c6a51794f48597a4c6a41334d6d67784d6934794f445a324c544d754d44637953446b354c6a6331646930784c6a557a4e5767744d5334314d7a5533646930784c6a557a4e6d67744e6934784e444935646a45754e544d32614330784c6a557a4e5464324d5334314d7a56494f446c614969382b50484268644767675a6d6c73624430694930557a515445794d4349675a44306954546735494445344d6934354e6a526f4d5449754d6a6732646a45754e544d3253446735646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a52546b794d5449784969426b50534a4e4f5459754e6a63344e6941784e7a67754d7a5533614445754e544d314e3359784c6a557a4e6d67744d5334314d7a5533646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a4e7a4242517a49304969426b50534a4e4f5449754d4463784e4341784e7a67754d7a5533614445754e544d314e3359784c6a557a4e6d67744d5334314d7a5533646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a52546b794d5449784969426b50534a4e4f544d754e6a41334d5341784e7a67754d7a5533614445754e544d314f4859784c6a557a4e6d67744d5334314d7a5534646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a4e7a4242517a49304969426b50534a4e4f5455754d5451794f5341784e7a67754d7a5533614445754e544d314e3359784c6a557a4e6d67744d5334314d7a5533646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a516a6b314d7a41354969426b50534a4e4d5445324c6a59304d7941344d7934784e444934646a4d754d4463784e5767304c6a59774e3359744d5334314d7a5533614445754e544d32646930784c6a557a4e54686f4d5334314d7a56324c5451754e6a41334d5767744d5334314d7a56574e7a646f4c5445754e544d32646a45754e544d314e3267744d5334314d7a5a324d5334314d7a5533614330784c6a557a4e58597a4c6a41334d54526f4c5445754e544d3257694976506a78775958526f49475a706247773949694e464f554e45516a6b6949475139496b30784d5455754d544133494467324c6a49784e444e6f4d5334314d7a5a574f4463754e7a566f4c5445754e544d32646930784c6a557a4e546461625445754e544d324c5445754e544d314e3267784c6a557a4e6e59784c6a557a4e54646f4c5445754e544d32646930784c6a557a4e5464614969382b50484268644767675a6d6c7362443069497a6c444e4459774e7949675a443069545445784f4334784e7a6b674f4451754e6a63344e6d677a4c6a41334d5859784c6a557a4e54646f4c544d754d446378646930784c6a557a4e54646162544d754d4463784c5445754e544d314f4767784c6a557a4e6e59784c6a557a4e54686f4c5445754e544d32646930784c6a557a4e5468614969382b50484268644767675a6d6c736244306949305644516a4933524349675a443069545445784e5334784d4463674d5441304c6a59304d3359354c6a49784e4767354c6a49784e4859744f5334794d54526f4c5445754e544d31646930784c6a557a4e6d67744e6934784e444e324d5334314d7a5a6f4c5445754e544d3257694976506a78775958526f49475a706247773949694d3152544d774d45556949475139496b30784d5455754d544133494445774f5334794e5767354c6a49784e4859784c6a557a4e6d67744f5334794d5452324c5445754e544d3257694976506a78775958526f49475a706247773949694d30516a49324d454d6949475139496b30784d5455754d544133494445784d4334334f445a6f4f5334794d5452324d5334314d7a566f4c546b754d6a4530646930784c6a557a4e566f694c7a3438634746306143426d615778735053496a52546b794d5449784969426b50534a4e4d5445314c6a45774e7941784d4459754d54633561446b754d6a4530646a45754e544d31614330354c6a49784e4859744d5334314d7a56614969382b50484268644767675a6d6c7362443069497a637751554d794e4349675a443069545445784e5334784d4463674d5441334c6a63784e4767354c6a49784e4859784c6a557a4e6d67744f5334794d5452324c5445754e544d3257694976506a78775958526f49475a706247773949694e474e5549304d7a516949475139496b30784d544d754e5463784944457a4d6934794f445a324d7934774e7a466f4d5449754d6a67326469307a4c6a41334d5767744d5334314d7a5a324c5445754e544d32614330784c6a557a4e5859744d5334314d7a5a6f4c5459754d54517a646a45754e544d32614330784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a614969382b50484268644767675a6d6c73624430694930557a515445794d4349675a443069545445784d7934314e7a45674d544d7a4c6a67794d5767784d6934794f445a324d5334314d7a5a6f4c5445794c6a49344e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a443069545445794d5334794e5341784d6a6b754d6a4530614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069497a637751554d794e4349675a443069545445784e6934324e444d674d5449354c6a49784e4767784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e464f5449784d6a456949475139496b30784d5467754d546335494445794f5334794d54526f4d5334314d7a56324d5334314d7a5a6f4c5445754e544d31646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a4e7a4242517a49304969426b50534a4e4d5445354c6a63784e4341784d6a6b754d6a4530614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c736244306949305644516a4933524349675a443069545445784e5334784d4463674d54557a4c6a63344e6d67354c6a49784e4859324c6a45304d6d67744f5334794d5452324c5459754d54517957694976506a78775958526f49475a706247773949694e464f5459334e6b596949475139496b30784d544d754e546378494445314e53347a4d6a466f4d5334314d7a5a324d7934774e7a4a6f4c5445754e544d326469307a4c6a41334d6c6f694c7a3438634746306143426d615778735053496a52546b794d5449784969426b50534a4e4d5445314c6a45774e7941784e5455754d7a497861446b754d6a4530646a45754e544d32614330354c6a49784e4859744d5334314d7a5a614969382b50484268644767675a6d6c736244306949305931516a517a4e4349675a443069545445784e5334784d4463674d5455324c6a67314e3267354c6a49784e4859784c6a557a4e6d67744f5334794d5452324c5445754e544d3257694976506a78775958526f49475a706247773949694e464f5459334e6b596949475139496b30784d6a51754d7a4978494445314e53347a4d6a466f4d5334314d7a5a324d7934774e7a4a6f4c5445754e544d326469307a4c6a41334d6c6f694c7a3438634746306143426d615778735053496a526a56424f444d304969426b50534a4e4d5449304c6a4d794d5341784e7a59754f444978614330784c6a557a4e5859784c6a557a4e6d67744d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646a45754e544d31614330784c6a557a4e5859784c6a557a4e6d67744d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646a45754e544d3261446b754d6a4530646930354c6a49784e566f694c7a3438634746306143426d615778735053496a526a55354d544d304969426b50534a4e4d5445314c6a45774e7941784f4451754e5767784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a574d5467304c6a56614969382b50484268644767675a6d6c7362443069493055794f5455794d5349675a443069545445784e6934324e444d674d5467304c6a566f4d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32566a45344e43343157694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784d6a45754d6a55674d5467304c6a566f4d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32566a45344e43343157694976506a78775958526f49475a706247773949694e464d6a6b314d6a456949475139496b30784d6a49754e7a6732494445344e433431614445754e544d31646a45754e544d32614330784c6a557a4e5659784f4451754e566f694c7a3438634746306143426d615778735053496a526a55354d544d304969426b50534a4e4d5449794c6a63344e6941784e7a67754d7a5533614445754e544d31646a45754e544d32614330784c6a557a4e5859744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055794f5455794d5349675a443069545445794d5334794e5341784e7a67754d7a5533614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493059314f54457a4e4349675a443069545445794d5334794e5341784e7a6b754f446b7a614445754e544d32646a45754e544d31614330784c6a557a4e6e59744d5334314d7a56614969382b50484268644767675a6d6c7362443069493055794f5455794d5349675a443069545445784f5334334d5451674d5467794c6a6b324e4767784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784d5467754d546335494445344d5334304d6a686f4d5334314d7a56324d5334314d7a5a6f4c5445754e544d31646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a526a56434e444d304969426b50534a4e4d544d344c6a45304d7941344d7934784e444934646a4d754d4463784e5767784d6934794f445a324c544d754d4463784e5767744d5334314d7a5a324c5445754e544d314e3267744d5334314d7a5a324c5445754e544d314e3267744e6934784e444e324d5334314d7a5533614330784c6a557a4e5859784c6a557a4e54646f4c5445754e544d3257694976506a78775958526f49475a706247773949694e464d3045784d6a416949475139496b30784d7a67754d54517a494467304c6a59334f445a6f4d5449754d6a6732646a45754e544d314e3267744d5449754d6a6732646930784c6a557a4e5464614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a443069545445304e5334344d6a45674f4441754d4463784e4767784c6a557a4e6e59784c6a557a4e54646f4c5445754e544d32646930784c6a557a4e5464614969382b50484268644767675a6d6c7362443069497a637751554d794e4349675a443069545445304d5334794d5451674f4441754d4463784e4767784c6a557a4e6e59784c6a557a4e54646f4c5445754e544d32646930784c6a557a4e5464614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a443069545445304d6934334e5341344d4334774e7a4530614445754e544d32646a45754e544d314e3267744d5334314d7a5a324c5445754e544d314e316f694c7a3438634746306143426d615778735053496a4e7a4242517a49304969426b50534a4e4d5451304c6a49344e6941344d4334774e7a4530614445754e544d31646a45754e544d314e3267744d5334314d7a56324c5445754e544d314e316f694c7a3438634746306143426d615778735053496a52554e434d6a64454969426b50534a4e4d544d354c6a59334f5341784d4451754e6a517a61446b754d6a4530646a59754d54517a614330354c6a49784e4859744e6934784e444e614969382b50484268644767675a6d6c7362443069493055354e6a6332526949675a4430695454457a4f4334784e444d674d5441324c6a45334f5767784c6a557a4e6e597a4c6a41334d5767744d5334314d7a5a324c544d754d44637857694976506a78775958526f49475a706247773949694e464f5449784d6a456949475139496b30784d7a6b754e6a6335494445774e6934784e7a6c6f4f5334794d5452324d5334314d7a566f4c546b754d6a4530646930784c6a557a4e566f694c7a3438634746306143426d615778735053496a526a56434e444d304969426b50534a4e4d544d354c6a59334f5341784d4463754e7a453061446b754d6a4530646a45754e544d32614330354c6a49784e4859744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055354e6a6332526949675a443069545445304f4334344f544d674d5441324c6a45334f5767784c6a557a4e6e597a4c6a41334d5767744d5334314d7a5a324c544d754d44637857694976506a78775958526f49475a706247773949694e474e5545344d7a516949475139496b30784e4467754f446b7a494445794e7934324e7a686f4c5445754e544d32646a45754e544d32614330784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a56324d5334314d7a5a6f4c5445754e544d32646a45754e544d31614330784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a56324d5334314d7a5a6f4f5334794d5452324c546b754d6a453157694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784d7a6b754e6a63354944457a4e53347a4e54646f4d5334314d7a56324d5334314d7a5a6f4c5445754e544d31646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a525449354e5449784969426b50534a4e4d5451784c6a49784e4341784d7a55754d7a5533614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493059314f54457a4e4349675a443069545445304e5334344d6a45674d544d314c6a4d314e3267784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e464d6a6b314d6a456949475139496b30784e4463754d7a55334944457a4e53347a4e54646f4d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a526a55354d544d304969426b50534a4e4d5451334c6a4d314e7941784d6a6b754d6a4530614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055794f5455794d5349675a443069545445304e5334344d6a45674d5449354c6a49784e4767784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784e4455754f4449784944457a4d4334334e5767784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e464d6a6b314d6a456949475139496b30784e4451754d6a67324944457a4d7934344d6a466f4d5334314d7a56324d5334314d7a5a6f4c5445754e544d31646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a526a55354d544d304969426b50534a4e4d5451794c6a63314944457a4d6934794f445a6f4d5334314d7a5a324d5334314d7a566f4c5445754e544d32646930784c6a557a4e566f694c7a3438634746306143426d615778735053496a526a56434e444d304969426b50534a4e4d544d344c6a45304d7941784e546b754f544934646a45754e544d32614445774c6a6331646930304c6a59774e3267744d5334314d7a5a324c5445754e544d32614330784c6a557a4e6e59744d5334314d7a566f4c5445754e544d31646a45754e544d31614330784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324d5334314d7a5a6f4c5445754e544d31646a45754e544d31614330784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a516a6b314d7a41354969426b50534a4e4d5451304c6a49344e6941784e544d754e7a6732646930784c6a557a4e6d677a4c6a41334d5859784c6a557a4e6d67784c6a557a4e6e59784c6a557a4e5767784c6a557a4e6e59324c6a45304d3267744d5334314d7a5a324c5451754e6a4133614330784c6a557a4e6e59744d5334314d7a5a6f4c5445754e544d32646930784c6a557a4e5767744d5334314d7a56614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a4430695454457a4f5334324e7a6b674d5455354c6a6b794f4767784c6a557a4e5859784c6a557a4e6d67744d5334314d7a56324c5445754e544d3257694976506a78775958526f49475a706247773949694e464d3045784d6a416949475139496b30784e4451754d6a6732494445314f5334354d6a686f4e4334324d4464324d5334314d7a5a6f4c5451754e6a4133646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a516a6b314d7a41354969426b50534a4e4d5451344c6a67354d7941784e5459754f445533614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a443069545445304d6934334e5341784e5459754f445533614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a6162544d754d446378494445754e544d32614445754e544d32646a45754e544d31614330784c6a557a4e6e59744d5334314d7a56614969382b50484268644767675a6d6c736244306949305131526a5a474e4349675a443069545445304f4334344f544d674d5467304c6a56324c544d754d446379614330354c6a49784e48597a4c6a41334d6d67784c6a557a4e5859784c6a557a4e6d67324c6a45304d3159784f4451754e5767784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a4e7a4242517a49304969426b50534a4e4d5451784c6a49784e4341784f4445754e444934614459754d54517a646a45754e544d32614330324c6a45304d3359744d5334314d7a5a614969382b50484268644767675a6d6c7362443069497a55314f444d78516949675a443069545445304d6934334e5341784f4449754f54593061444d754d446378646a45754e544d326143307a4c6a41334d5859744d5334314d7a5a614969382b50484268644767675a6d6c736244306949305931516a517a4e4349675a443069545445304e5334344d6a45674d5463354c6a67354d3267784c6a557a4e6e59784c6a557a4e5767744d5334314d7a5a324c5445754e544d31576d30744d5334314d7a55674d4767784c6a557a4e5859784c6a557a4e5767744d5334314d7a56324c5445754e544d31576d30774c5445754e544d32614445754e544d31646a45754e544d32614330784c6a557a4e5859744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493059315154677a4e4349675a443069545445334d7934304e6a51674e7a67754e544d314e3267744d5334314d7a56324d5334314d7a5533614330784c6a557a4e6e59784c6a557a4e54646f4c5445754e544d32646a45754e544d314e3267744d5334314d7a5a324d5334314d7a5534614330784c6a557a4e5859784c6a557a4e54646f4c5445754e544d32566a67334c6a633161446b754d6a4530646930354c6a49784e444e614969382b50484268644767675a6d6c7362443069493059314f54457a4e4349675a443069545445324e4334794e5341344e6934794d54517a614445754e544d32566a67334c6a6331614330784c6a557a4e6e59744d5334314d7a553357694976506a78775958526f49475a706247773949694e464d6a6b314d6a456949475139496b30784e6a55754e7a6732494467324c6a49784e444e6f4d5334314d7a56574f4463754e7a566f4c5445754e544d31646930784c6a557a4e5464614969382b50484268644767675a6d6c7362443069493059314f54457a4e4349675a443069545445334d43347a4f544d674f4459754d6a45304d3267784c6a557a4e6c59344e7934334e5767744d5334314d7a5a324c5445754e544d314e316f694c7a3438634746306143426d615778735053496a525449354e5449784969426b50534a4e4d5463784c6a6b794f5341344e6934794d54517a614445754e544d31566a67334c6a6331614330784c6a557a4e5859744d5334314d7a553357694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784e7a45754f544935494467774c6a41334d54526f4d5334314d7a56324d5334314d7a5533614330784c6a557a4e5859744d5334314d7a553357694976506a78775958526f49475a706247773949694e464d6a6b314d6a456949475139496b30784e7a41754d7a6b7a494467774c6a41334d54526f4d5334314d7a5a324d5334314d7a5533614330784c6a557a4e6e59744d5334314d7a553357694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784e7a41754d7a6b7a494467784c6a59774e7a466f4d5334314d7a5a324d5334314d7a5533614330784c6a557a4e6e59744d5334314d7a553357694976506a78775958526f49475a706247773949694e464d6a6b314d6a456949475139496b30784e6a67754f445533494467304c6a59334f445a6f4d5334314d7a5a324d5334314d7a5533614330784c6a557a4e6e59744d5334314d7a553357694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784e6a63754d7a49784944677a4c6a45304d6a686f4d5334314d7a5a324d5334314d7a5534614330784c6a557a4e6e59744d5334314d7a553457694976506a78775958526f49475a706247773949694e474e5549304d7a516949475139496b30784e6a49754e7a4530494445784d4334334f445a324d5334314d7a566f4d5441754e7a56324c5451754e6a4133614330784c6a557a4e5859744d5334314d7a566f4c5445754e544d32646930784c6a557a4e6d67744d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646a45754e544d31614330784c6a557a4e5859784c6a557a4e6d67744d5334314d7a5a324d5334314d7a5a6f4c5445754e544d3257694976506a78775958526f49475a706247773949694e434f54557a4d446b6949475139496b30784e6a67754f445533494445774e4334324e444e324c5445754e544d3261444d754d446379646a45754e544d32614445754e544d31646a45754e544d32534445334e5859324c6a45304d6d67744d5334314d7a5a324c5451754e6a4133614330784c6a557a4e5859744d5334314d7a566f4c5445754e544d32646930784c6a557a4e6d67744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a443069545445324e4334794e5341784d5441754e7a6732614445754e544d32646a45754e544d31614330784c6a557a4e6e59744d5334314d7a56614969382b50484268644767675a6d6c73624430694930557a515445794d4349675a443069545445324f4334344e5463674d5445774c6a63344e6d67304c6a59774e3359784c6a557a4e5767744e4334324d4464324c5445754e544d3157694976506a78775958526f49475a706247773949694e434f54557a4d446b6949475139496b30784e7a4d754e445930494445774e7934334d5452494d546331646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a443069545445324e79347a4d6a45674d5441334c6a63784e4767784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d32576d307a4c6a41334d6941784c6a557a4e6d67784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e454e555932526a516949475139496b30784e7a4d754e4459304944457a4e53347a4e5464324c544d754d446378614330354c6a49784e48597a4c6a41334d5767784c6a557a4e6e59784c6a557a4e6d67324c6a45304d3359744d5334314d7a5a6f4d5334314d7a56614969382b50484268644767675a6d6c7362443069497a637751554d794e4349675a443069545445324e5334334f4459674d544d794c6a49344e6d67324c6a45304d3359784c6a557a4e5767744e6934784e444e324c5445754e544d3157694976506a78775958526f49475a706247773949694d314e54677a4d55496949475139496b30784e6a63754d7a49784944457a4d7934344d6a466f4d7934774e7a4a324d5334314d7a5a6f4c544d754d446379646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a526a56434e444d304969426b50534a4e4d5463774c6a4d354d7941784d7a41754e7a566f4d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646930784c6a557a4e6c70744c5445754e544d324944426f4d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646930784c6a557a4e6c70744d4330784c6a557a4e6d67784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e434f54557a4d446b6949475139496b30784e6a55754e7a6732494445314e6934344e5464324d7934774e7a466f4e4334324d4464324c5445754e544d31614445754e544d32646930784c6a557a4e6d67784c6a557a4e5859744e4334324d44646f4c5445754e544d31646930784c6a557a4e6d67744d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646a45754e544d32614330784c6a557a4e6e597a4c6a41334d5767744d5334314d7a56614969382b50484268644767675a6d6c736244306949305535513052434f5349675a443069545445324e4334794e5341784e546b754f544934614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a61625445754e544d324c5445754e544d31614445754e544d31646a45754e544d31614330784c6a557a4e5859744d5334314d7a56614969382b50484268644767675a6d6c7362443069497a6c444e4459774e7949675a443069545445324e79347a4d6a45674d5455344c6a4d354d32677a4c6a41334d6e59784c6a557a4e5767744d7934774e7a4a324c5445754e544d31576d307a4c6a41334d6930784c6a557a4e6d67784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694d7852454578526a496949475a7062477774636e56735a5430695a585a6c626d396b5a4349675a443069545445334d5334354d6a6b674d54637a4c6a6331614330324c6a45304d3359784c6a557a4e6d67744d5334314d7a5a324d5334314d7a566f4c5445754e544d32646a59754d54517a614445754e544d32646a45754e544d32614445754e544d32646a45754e544d32614459754d54517a566a45344e433431614445754e544d31646930784c6a557a4e6b67784e7a56324c5459754d54517a614330784c6a557a4e6e59744d5334314d7a566f4c5445754e544d31646930784c6a557a4e6c70744c5459754d54517a494459754d54517a614445754e544d31646a45754e544d31614330784c6a557a4e5859744d5334314d7a566162544d754d446378494445754e544d31646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a6f4d5334314d7a5a61625445754e544d324c5445754e544d31614330784c6a557a4e6e59784c6a557a4e5767784c6a557a4e6e59744d5334314d7a5661625441674d4859744d5334314d7a5a6f4d5334314d7a5a324d5334314d7a5a6f4c5445754e544d325769496759327870634331796457786c50534a6c646d56756232526b4969382b5043397a646d632ba2646970667358221220bfb5a77ff4853b6b890ecc7fc461cbbeb29a52e0969dcfca923581a2f3c727d864736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101355760003560e01c8063715018a6116100ab578063a22cb4651161006f578063a22cb465146103f2578063b88d4fde1461041b578063c87b56dd14610437578063e757223014610474578063e985e9c5146104b1578063f2fde38b146104ee57610135565b8063715018a61461032c57806385bb3654146103435780638da5cb5b1461038057806395d89b41146103ab578063a0712d68146103d657610135565b806323b872dd116100fd57806323b872dd146102265780633ccfd60b1461024257806342842e0e146102595780636352211e1461027557806365ae654e146102b257806370a08231146102ef57610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806318160ddd146101fb575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611c85565b610517565b60405161016e9190611ccd565b60405180910390f35b34801561018357600080fd5b5061018c6105a9565b6040516101999190611d78565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190611dd0565b61063b565b6040516101d69190611e3e565b60405180910390f35b6101f960048036038101906101f49190611e85565b6106ba565b005b34801561020757600080fd5b506102106107fe565b60405161021d9190611ed4565b60405180910390f35b610240600480360381019061023b9190611eef565b610815565b005b34801561024e57600080fd5b50610257610b37565b005b610273600480360381019061026e9190611eef565b610b7f565b005b34801561028157600080fd5b5061029c60048036038101906102979190611dd0565b610b9f565b6040516102a99190611e3e565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190611dd0565b610bb1565b6040516102e69190611ed4565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190611f42565b610bd7565b6040516103239190611ed4565b60405180910390f35b34801561033857600080fd5b50610341610c8f565b005b34801561034f57600080fd5b5061036a60048036038101906103659190611dd0565b610ca3565b6040516103779190611ed4565b60405180910390f35b34801561038c57600080fd5b50610395610cde565b6040516103a29190611e3e565b60405180910390f35b3480156103b757600080fd5b506103c0610d08565b6040516103cd9190611d78565b60405180910390f35b6103f060048036038101906103eb9190611dd0565b610d9a565b005b3480156103fe57600080fd5b5061041960048036038101906104149190611f9b565b610e7b565b005b61043560048036038101906104309190612110565b610f86565b005b34801561044357600080fd5b5061045e60048036038101906104599190611dd0565b610ff9565b60405161046b9190611d78565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190611dd0565b61100b565b6040516104a89190611ed4565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190612193565b611117565b6040516104e59190611ccd565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190611f42565b6111ab565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105b890612202565b80601f01602080910402602001604051908101604052809291908181526020018280546105e490612202565b80156106315780601f1061060657610100808354040283529160200191610631565b820191906000526020600020905b81548152906001019060200180831161061457829003601f168201915b5050505050905090565b60006106468261122e565b61067c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106c582610b9f565b90508073ffffffffffffffffffffffffffffffffffffffff166106e661128d565b73ffffffffffffffffffffffffffffffffffffffff1614610749576107128161070d61128d565b611117565b610748576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610808611295565b6001546000540303905090565b60006108208261129e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610887576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108938461136a565b915091506108a981876108a461128d565b611391565b6108f5576108be866108b961128d565b611117565b6108f4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361095b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61096886868660016113d5565b801561097357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a4185610a1d8888876113db565b7c020000000000000000000000000000000000000000000000000000000017611403565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ac75760006001850190506000600460008381526020019081526020016000205403610ac5576000548114610ac4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b2f868686600161142e565b505050505050565b610b3f611434565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610b7d57600080fd5b565b610b9a83838360405180602001604052806000815250610f86565b505050565b6000610baa8261129e565b9050919050565b6000814211610bcd574282610bc69190612262565b9050610bd2565b600090505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c97611434565b610ca160006114b2565b565b6000603c610cb083610bb1565b10610cd457603c4283610cc39190612262565b610ccd91906122c5565b9050610cd9565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d1790612202565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4390612202565b8015610d905780601f10610d6557610100808354040283529160200191610d90565b820191906000526020600020905b815481529060010190602001808311610d7357829003601f168201915b5050505050905090565b610da38161100b565b341015610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90612342565b60405180910390fd5b6014811115610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906123ae565b60405180910390fd5b600954421115610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e659061241a565b60405180910390fd5b610e783382611578565b50565b8060076000610e8861128d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f3561128d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f7a9190611ccd565b60405180910390a35050565b610f91848484610815565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610ff357610fbc84848484611733565b610ff2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061100482611883565b9050919050565b6000806000905060005b8381101561110d576064611027611904565b82611032919061243a565b11801561105257506103e9611045611904565b82611050919061243a565b105b156110715766038d7ea4c680008261106a919061243a565b91506110fa565b6103e861107c611904565b82611087919061243a565b1180156110a7575061138961109a611904565b826110a5919061243a565b105b156110c6576611c37937e08000826110bf919061243a565b91506110f9565b6113886110d1611904565b826110dc919061243a565b11156110f857662386f26fc10000826110f5919061243a565b91505b5b5b80806111059061246e565b915050611015565b5080915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111b3611434565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990612528565b60405180910390fd5b61122b816114b2565b50565b600081611239611295565b11158015611248575060005482105b8015611286575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806112ad611295565b11611333576000548110156113325760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611330575b600081036113265760046000836001900393508381526020019081526020016000205490506112fc565b8092505050611365565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86113f286868461190d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61143c611916565b73ffffffffffffffffffffffffffffffffffffffff1661145a610cde565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790612594565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082036115b8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115c560008483856113d5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061163c8361162d60008660006113db565b6116368561191e565b17611403565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146116dd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506116a2565b5060008203611718576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061172e600084838561142e565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261175961128d565b8786866040518563ffffffff1660e01b815260040161177b9493929190612609565b6020604051808303816000875af19250505080156117b757506040513d601f19601f820116820180604052508101906117b4919061266a565b60015b611830573d80600081146117e7576040519150601f19603f3d011682016040523d82523d6000602084013e6117ec565b606091505b506000815103611828576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600060405180613360016040528061333a81526020016129aa61333a9139905060006118b08461192e565b826040516020016118c2929190612803565b60405160208183030381529060405290506118dc81611ab6565b6040516020016118ec9190612894565b60405160208183030381529060405292505050919050565b60008054905090565b60009392505050565b600033905090565b60006001821460e11b9050919050565b606060008203611975576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ab1565b600082905060005b600082146119a75780806119909061246e565b915050600a826119a091906122c5565b915061197d565b60008167ffffffffffffffff8111156119c3576119c2611fe5565b5b6040519080825280601f01601f1916602001820160405280156119f55781602001600182028036833780820191505090505b50905060008290505b60008614611aa957600181611a139190612262565b90506000600a8088611a2591906122c5565b611a2f91906128b6565b87611a3a9190612262565b6030611a469190612905565b905060008160f81b905080848481518110611a6457611a6361293a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611aa091906122c5565b975050506119fe565b819450505050505b919050565b60606000825103611ad857604051806020016040528060008152509050611c14565b600060405180606001604052806040815260200161296a6040913990506000600360028551611b07919061243a565b611b1191906122c5565b6004611b1d91906128b6565b67ffffffffffffffff811115611b3657611b35611fe5565b5b6040519080825280601f01601f191660200182016040528015611b685781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611bd4576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050611b79565b5050600386510660018114611bf05760028114611c0357611c0b565b603d6001830353603d6002830353611c0b565b603d60018303535b50505080925050505b919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611c6281611c2d565b8114611c6d57600080fd5b50565b600081359050611c7f81611c59565b92915050565b600060208284031215611c9b57611c9a611c23565b5b6000611ca984828501611c70565b91505092915050565b60008115159050919050565b611cc781611cb2565b82525050565b6000602082019050611ce26000830184611cbe565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d22578082015181840152602081019050611d07565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d4a82611ce8565b611d548185611cf3565b9350611d64818560208601611d04565b611d6d81611d2e565b840191505092915050565b60006020820190508181036000830152611d928184611d3f565b905092915050565b6000819050919050565b611dad81611d9a565b8114611db857600080fd5b50565b600081359050611dca81611da4565b92915050565b600060208284031215611de657611de5611c23565b5b6000611df484828501611dbb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e2882611dfd565b9050919050565b611e3881611e1d565b82525050565b6000602082019050611e536000830184611e2f565b92915050565b611e6281611e1d565b8114611e6d57600080fd5b50565b600081359050611e7f81611e59565b92915050565b60008060408385031215611e9c57611e9b611c23565b5b6000611eaa85828601611e70565b9250506020611ebb85828601611dbb565b9150509250929050565b611ece81611d9a565b82525050565b6000602082019050611ee96000830184611ec5565b92915050565b600080600060608486031215611f0857611f07611c23565b5b6000611f1686828701611e70565b9350506020611f2786828701611e70565b9250506040611f3886828701611dbb565b9150509250925092565b600060208284031215611f5857611f57611c23565b5b6000611f6684828501611e70565b91505092915050565b611f7881611cb2565b8114611f8357600080fd5b50565b600081359050611f9581611f6f565b92915050565b60008060408385031215611fb257611fb1611c23565b5b6000611fc085828601611e70565b9250506020611fd185828601611f86565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61201d82611d2e565b810181811067ffffffffffffffff8211171561203c5761203b611fe5565b5b80604052505050565b600061204f611c19565b905061205b8282612014565b919050565b600067ffffffffffffffff82111561207b5761207a611fe5565b5b61208482611d2e565b9050602081019050919050565b82818337600083830152505050565b60006120b36120ae84612060565b612045565b9050828152602081018484840111156120cf576120ce611fe0565b5b6120da848285612091565b509392505050565b600082601f8301126120f7576120f6611fdb565b5b81356121078482602086016120a0565b91505092915050565b6000806000806080858703121561212a57612129611c23565b5b600061213887828801611e70565b945050602061214987828801611e70565b935050604061215a87828801611dbb565b925050606085013567ffffffffffffffff81111561217b5761217a611c28565b5b612187878288016120e2565b91505092959194509250565b600080604083850312156121aa576121a9611c23565b5b60006121b885828601611e70565b92505060206121c985828601611e70565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061221a57607f821691505b60208210810361222d5761222c6121d3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061226d82611d9a565b915061227883611d9a565b92508282039050818111156122905761228f612233565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006122d082611d9a565b91506122db83611d9a565b9250826122eb576122ea612296565b5b828204905092915050565b7f6e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b600061232c600e83611cf3565b9150612337826122f6565b602082019050919050565b6000602082019050818103600083015261235b8161231f565b9050919050565b7f6d61782032302070657220747800000000000000000000000000000000000000600082015250565b6000612398600d83611cf3565b91506123a382612362565b602082019050919050565b600060208201905081810360008301526123c78161238b565b9050919050565b7f6d696e7420697320636c6f736564000000000000000000000000000000000000600082015250565b6000612404600e83611cf3565b915061240f826123ce565b602082019050919050565b60006020820190508181036000830152612433816123f7565b9050919050565b600061244582611d9a565b915061245083611d9a565b925082820190508082111561246857612467612233565b5b92915050565b600061247982611d9a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036124ab576124aa612233565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612512602683611cf3565b915061251d826124b6565b604082019050919050565b6000602082019050818103600083015261254181612505565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061257e602083611cf3565b915061258982612548565b602082019050919050565b600060208201905081810360008301526125ad81612571565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006125db826125b4565b6125e581856125bf565b93506125f5818560208601611d04565b6125fe81611d2e565b840191505092915050565b600060808201905061261e6000830187611e2f565b61262b6020830186611e2f565b6126386040830185611ec5565b818103606083015261264a81846125d0565b905095945050505050565b60008151905061266481611c59565b92915050565b6000602082840312156126805761267f611c23565b5b600061268e84828501612655565b91505092915050565b600081905092915050565b7f7b226e616d65223a2022536e61636b7320000000000000000000000000000000600082015250565b60006126d8601183612697565b91506126e3826126a2565b601182019050919050565b60006126f982611ce8565b6127038185612697565b9350612713818560208601611d04565b80840191505092915050565b7f222c20226465736372697074696f6e223a20224865726520666f72207468652060008201527f736e61636b732c2070726566657261626c79206e6f74206275726e65642e222c60208201527f2022696d616765223a2022000000000000000000000000000000000000000000604082015250565b60006127a1604b83612697565b91506127ac8261271f565b604b82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006127ed600283612697565b91506127f8826127b7565b600282019050919050565b600061280e826126cb565b915061281a82856126ee565b915061282582612794565b915061283182846126ee565b915061283c826127e0565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061287e601d83612697565b915061288982612848565b601d82019050919050565b600061289f82612871565b91506128ab82846126ee565b915081905092915050565b60006128c182611d9a565b91506128cc83611d9a565b92508282026128da81611d9a565b915082820484148315176128f1576128f0612233565b5b5092915050565b600060ff82169050919050565b6000612910826128f8565b915061291b836128f8565b9250828201905060ff81111561293457612933612233565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f646174613a696d6167652f7376672b786d6c3b6261736536342c50484e325a79423462577875637a30696148523063446f764c336433647935334d793576636d63764d6a41774d43397a646d6369494864705a48526f505349794e6a51694947686c6157646f644430694d6a59304969426d6157787350534a756232356c496a3438634746306143426d615778735053496a52554a46516b56434969426b50534a4e4d434177614449324e4859794e6a52494d486f694c7a3438634746306143426d615778735053496a5a6d5a6d4969426b50534a4e4e6a51674e44686f4d544d32646a45324f4567324e486f694c7a3438634746306143426d615778735053496a526a56434e444d304969426b50534a4e4f446b674f4459754d6a45304d3159344e7934334e5767784d4334334e5859744e4334324d446379614330784c6a557a4e5464324c5445754e544d314e3267744d5334314d7a5533646930784c6a557a4e54646f4c5445754e544d314e3359784c6a557a4e54646f4c5445754e544d314f4859784c6a557a4e54646f4c5445754e544d314e3359784c6a557a4e54686f4c5445754e544d314e3359784c6a557a4e5464494f446c614969382b50484268644767675a6d6c7362443069493049354e544d774f5349675a44306954546b314c6a45304d6a6b674f4441754d4463784e4859744d5334314d7a553361444d754d4463784e4859784c6a557a4e5464494f546b754e7a56324d5334314d7a5533614445754e544d32566a67334c6a633153446b354c6a6331646930304c6a59774e7a4a6f4c5445754e544d314e3359744d5334314d7a5533614330784c6a557a4e5464324c5445754e544d314e3267744d5334314d7a553357694976506a78775958526f49475a706247773949694e464f5449784d6a456949475139496b30354d4334314d7a5533494467324c6a49784e444e6f4d5334314d7a5533566a67334c6a6331614330784c6a557a4e5464324c5445754e544d314e316f694c7a3438634746306143426d615778735053496a52544e424d5449774969426b50534a4e4f5455754d5451794f5341344e6934794d54517a53446b354c6a6331566a67334c6a6331614330304c6a59774e7a46324c5445754e544d314e316f694c7a3438634746306143426d615778735053496a516a6b314d7a41354969426b50534a4e4f546b754e7a55674f444d754d5451794f4767784c6a557a4e6e59784c6a557a4e5468494f546b754e7a56324c5445754e544d314f466f694c7a3438634746306143426d615778735053496a52546b794d5449784969426b50534a4e4f544d754e6a41334d5341344d7934784e444934614445754e544d314f4859784c6a557a4e54686f4c5445754e544d314f4859744d5334314d7a5534576d307a4c6a41334d5455674d5334314d7a5534614445754e544d314e3359784c6a557a4e54646f4c5445754e544d314e3359744d5334314d7a553357694976506a78775958526f49475a706247773949694e454e555932526a516949475139496b30354f5334334e5341784d5441754e7a67326469307a4c6a41334d6d67744f5334794d54517a646a4d754d446379614445754e544d314e3359784c6a557a4e5767324c6a45304d6a6c324c5445754e544d3153446b354c6a633157694976506a78775958526f49475a706247773949694d334d4546444d6a516949475139496b30354d6934774e7a4530494445774e7934334d54526f4e6934784e444935646a45754e544d32614330324c6a45304d6a6c324c5445754e544d3257694976506a78775958526f49475a706247773949694d314e54677a4d55496949475139496b30354d7934324d446378494445774f5334794e57677a4c6a41334d5456324d5334314d7a5a6f4c544d754d4463784e5859744d5334314d7a5a614969382b50484268644767675a6d6c736244306949305931516a517a4e4349675a44306954546b324c6a59334f4459674d5441324c6a45334f5767784c6a557a4e5464324d5334314d7a566f4c5445754e544d314e3359744d5334314d7a5661625330784c6a557a4e5463674d4767784c6a557a4e5464324d5334314d7a566f4c5445754e544d314e3359744d5334314d7a5661625441744d5334314d7a5a6f4d5334314d7a5533646a45754e544d32614330784c6a557a4e5464324c5445754e544d3257694976506a78775958526f49475a706247773949694e434f54557a4d446b6949475139496b30354d6934774e7a45304944457a4d6934794f445a324d7934774e7a466f4e4334324d446379646930784c6a557a4e6d67784c6a557a4e5464324c5445754e544d3153446b354c6a6331646930304c6a59774f4767744d5334314d7a5533646930784c6a557a4e5767744d5334314d7a5533646a45754e544d31614330784c6a557a4e5464324d5334314d7a5a6f4c5445754e544d314f48597a4c6a41334d6d67744d5334314d7a553357694976506a78775958526f49475a706247773949694e464f554e45516a6b6949475139496b30354d4334314d7a55334944457a4e53347a4e54646f4d5334314d7a5533646a45754e544d32614330784c6a557a4e5464324c5445754e544d32576d30784c6a557a4e5463744d5334314d7a5a6f4d5334314d7a5533646a45754e544d32614330784c6a557a4e5464324c5445754e544d3257694976506a78775958526f49475a706247773949694d35517a51324d44636949475139496b30354d7934324d4463784944457a4d7934344d6a466f4d7934774e7a4531646a45754e544d326143307a4c6a41334d5456324c5445754e544d32576d307a4c6a41334d5455744d5334314d7a566f4d5334314d7a5533646a45754e544d31614330784c6a557a4e5464324c5445754e544d3157694976506a78775958526f49475a706247773949694e46513049794e30516949475139496b30354d4334314d7a5533494445314d7934334f445a574d54597a53446b354c6a6331646930354c6a49784e4767744d5334314d7a5533646930784c6a557a4e6d67744e6934784e444935646a45754e544d32614330784c6a557a4e5464614969382b50484268644767675a6d6c7362443069497a56464d7a4177525349675a44306954546b774c6a557a4e5463674d5455344c6a4d354d3067354f5334334e5859784c6a557a4e5767744f5334794d54517a646930784c6a557a4e566f694c7a3438634746306143426d615778735053496a4e4549794e6a42444969426b50534a4e4f5441754e544d314e7941784e546b754f54493453446b354c6a6331646a45754e544d32614330354c6a49784e444e324c5445754e544d3257694976506a78775958526f49475a706247773949694e464f5449784d6a456949475139496b30354d4334314d7a5533494445314e53347a4d6a46494f546b754e7a56324d5334314d7a5a6f4c546b754d6a45304d3359744d5334314d7a5a614969382b50484268644767675a6d6c7362443069497a637751554d794e4349675a44306954546b774c6a557a4e5463674d5455324c6a67314e3067354f5334334e5859784c6a557a4e6d67744f5334794d54517a646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a526a56434e444d304969426b50534a4e4f446b674d5467784c6a51794f48597a4c6a41334d6d67784d6934794f445a324c544d754d44637953446b354c6a6331646930784c6a557a4e5767744d5334314d7a5533646930784c6a557a4e6d67744e6934784e444935646a45754e544d32614330784c6a557a4e5464324d5334314d7a56494f446c614969382b50484268644767675a6d6c73624430694930557a515445794d4349675a44306954546735494445344d6934354e6a526f4d5449754d6a6732646a45754e544d3253446735646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a52546b794d5449784969426b50534a4e4f5459754e6a63344e6941784e7a67754d7a5533614445754e544d314e3359784c6a557a4e6d67744d5334314d7a5533646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a4e7a4242517a49304969426b50534a4e4f5449754d4463784e4341784e7a67754d7a5533614445754e544d314e3359784c6a557a4e6d67744d5334314d7a5533646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a52546b794d5449784969426b50534a4e4f544d754e6a41334d5341784e7a67754d7a5533614445754e544d314f4859784c6a557a4e6d67744d5334314d7a5534646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a4e7a4242517a49304969426b50534a4e4f5455754d5451794f5341784e7a67754d7a5533614445754e544d314e3359784c6a557a4e6d67744d5334314d7a5533646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a516a6b314d7a41354969426b50534a4e4d5445324c6a59304d7941344d7934784e444934646a4d754d4463784e5767304c6a59774e3359744d5334314d7a5533614445754e544d32646930784c6a557a4e54686f4d5334314d7a56324c5451754e6a41334d5767744d5334314d7a56574e7a646f4c5445754e544d32646a45754e544d314e3267744d5334314d7a5a324d5334314d7a5533614330784c6a557a4e58597a4c6a41334d54526f4c5445754e544d3257694976506a78775958526f49475a706247773949694e464f554e45516a6b6949475139496b30784d5455754d544133494467324c6a49784e444e6f4d5334314d7a5a574f4463754e7a566f4c5445754e544d32646930784c6a557a4e546461625445754e544d324c5445754e544d314e3267784c6a557a4e6e59784c6a557a4e54646f4c5445754e544d32646930784c6a557a4e5464614969382b50484268644767675a6d6c7362443069497a6c444e4459774e7949675a443069545445784f4334784e7a6b674f4451754e6a63344e6d677a4c6a41334d5859784c6a557a4e54646f4c544d754d446378646930784c6a557a4e54646162544d754d4463784c5445754e544d314f4767784c6a557a4e6e59784c6a557a4e54686f4c5445754e544d32646930784c6a557a4e5468614969382b50484268644767675a6d6c736244306949305644516a4933524349675a443069545445784e5334784d4463674d5441304c6a59304d3359354c6a49784e4767354c6a49784e4859744f5334794d54526f4c5445754e544d31646930784c6a557a4e6d67744e6934784e444e324d5334314d7a5a6f4c5445754e544d3257694976506a78775958526f49475a706247773949694d3152544d774d45556949475139496b30784d5455754d544133494445774f5334794e5767354c6a49784e4859784c6a557a4e6d67744f5334794d5452324c5445754e544d3257694976506a78775958526f49475a706247773949694d30516a49324d454d6949475139496b30784d5455754d544133494445784d4334334f445a6f4f5334794d5452324d5334314d7a566f4c546b754d6a4530646930784c6a557a4e566f694c7a3438634746306143426d615778735053496a52546b794d5449784969426b50534a4e4d5445314c6a45774e7941784d4459754d54633561446b754d6a4530646a45754e544d31614330354c6a49784e4859744d5334314d7a56614969382b50484268644767675a6d6c7362443069497a637751554d794e4349675a443069545445784e5334784d4463674d5441334c6a63784e4767354c6a49784e4859784c6a557a4e6d67744f5334794d5452324c5445754e544d3257694976506a78775958526f49475a706247773949694e474e5549304d7a516949475139496b30784d544d754e5463784944457a4d6934794f445a324d7934774e7a466f4d5449754d6a67326469307a4c6a41334d5767744d5334314d7a5a324c5445754e544d32614330784c6a557a4e5859744d5334314d7a5a6f4c5459754d54517a646a45754e544d32614330784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a614969382b50484268644767675a6d6c73624430694930557a515445794d4349675a443069545445784d7934314e7a45674d544d7a4c6a67794d5767784d6934794f445a324d5334314d7a5a6f4c5445794c6a49344e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a443069545445794d5334794e5341784d6a6b754d6a4530614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069497a637751554d794e4349675a443069545445784e6934324e444d674d5449354c6a49784e4767784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e464f5449784d6a456949475139496b30784d5467754d546335494445794f5334794d54526f4d5334314d7a56324d5334314d7a5a6f4c5445754e544d31646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a4e7a4242517a49304969426b50534a4e4d5445354c6a63784e4341784d6a6b754d6a4530614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c736244306949305644516a4933524349675a443069545445784e5334784d4463674d54557a4c6a63344e6d67354c6a49784e4859324c6a45304d6d67744f5334794d5452324c5459754d54517957694976506a78775958526f49475a706247773949694e464f5459334e6b596949475139496b30784d544d754e546378494445314e53347a4d6a466f4d5334314d7a5a324d7934774e7a4a6f4c5445754e544d326469307a4c6a41334d6c6f694c7a3438634746306143426d615778735053496a52546b794d5449784969426b50534a4e4d5445314c6a45774e7941784e5455754d7a497861446b754d6a4530646a45754e544d32614330354c6a49784e4859744d5334314d7a5a614969382b50484268644767675a6d6c736244306949305931516a517a4e4349675a443069545445784e5334784d4463674d5455324c6a67314e3267354c6a49784e4859784c6a557a4e6d67744f5334794d5452324c5445754e544d3257694976506a78775958526f49475a706247773949694e464f5459334e6b596949475139496b30784d6a51754d7a4978494445314e53347a4d6a466f4d5334314d7a5a324d7934774e7a4a6f4c5445754e544d326469307a4c6a41334d6c6f694c7a3438634746306143426d615778735053496a526a56424f444d304969426b50534a4e4d5449304c6a4d794d5341784e7a59754f444978614330784c6a557a4e5859784c6a557a4e6d67744d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646a45754e544d31614330784c6a557a4e5859784c6a557a4e6d67744d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646a45754e544d3261446b754d6a4530646930354c6a49784e566f694c7a3438634746306143426d615778735053496a526a55354d544d304969426b50534a4e4d5445314c6a45774e7941784f4451754e5767784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a574d5467304c6a56614969382b50484268644767675a6d6c7362443069493055794f5455794d5349675a443069545445784e6934324e444d674d5467304c6a566f4d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32566a45344e43343157694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784d6a45754d6a55674d5467304c6a566f4d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32566a45344e43343157694976506a78775958526f49475a706247773949694e464d6a6b314d6a456949475139496b30784d6a49754e7a6732494445344e433431614445754e544d31646a45754e544d32614330784c6a557a4e5659784f4451754e566f694c7a3438634746306143426d615778735053496a526a55354d544d304969426b50534a4e4d5449794c6a63344e6941784e7a67754d7a5533614445754e544d31646a45754e544d32614330784c6a557a4e5859744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055794f5455794d5349675a443069545445794d5334794e5341784e7a67754d7a5533614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493059314f54457a4e4349675a443069545445794d5334794e5341784e7a6b754f446b7a614445754e544d32646a45754e544d31614330784c6a557a4e6e59744d5334314d7a56614969382b50484268644767675a6d6c7362443069493055794f5455794d5349675a443069545445784f5334334d5451674d5467794c6a6b324e4767784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784d5467754d546335494445344d5334304d6a686f4d5334314d7a56324d5334314d7a5a6f4c5445754e544d31646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a526a56434e444d304969426b50534a4e4d544d344c6a45304d7941344d7934784e444934646a4d754d4463784e5767784d6934794f445a324c544d754d4463784e5767744d5334314d7a5a324c5445754e544d314e3267744d5334314d7a5a324c5445754e544d314e3267744e6934784e444e324d5334314d7a5533614330784c6a557a4e5859784c6a557a4e54646f4c5445754e544d3257694976506a78775958526f49475a706247773949694e464d3045784d6a416949475139496b30784d7a67754d54517a494467304c6a59334f445a6f4d5449754d6a6732646a45754e544d314e3267744d5449754d6a6732646930784c6a557a4e5464614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a443069545445304e5334344d6a45674f4441754d4463784e4767784c6a557a4e6e59784c6a557a4e54646f4c5445754e544d32646930784c6a557a4e5464614969382b50484268644767675a6d6c7362443069497a637751554d794e4349675a443069545445304d5334794d5451674f4441754d4463784e4767784c6a557a4e6e59784c6a557a4e54646f4c5445754e544d32646930784c6a557a4e5464614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a443069545445304d6934334e5341344d4334774e7a4530614445754e544d32646a45754e544d314e3267744d5334314d7a5a324c5445754e544d314e316f694c7a3438634746306143426d615778735053496a4e7a4242517a49304969426b50534a4e4d5451304c6a49344e6941344d4334774e7a4530614445754e544d31646a45754e544d314e3267744d5334314d7a56324c5445754e544d314e316f694c7a3438634746306143426d615778735053496a52554e434d6a64454969426b50534a4e4d544d354c6a59334f5341784d4451754e6a517a61446b754d6a4530646a59754d54517a614330354c6a49784e4859744e6934784e444e614969382b50484268644767675a6d6c7362443069493055354e6a6332526949675a4430695454457a4f4334784e444d674d5441324c6a45334f5767784c6a557a4e6e597a4c6a41334d5767744d5334314d7a5a324c544d754d44637857694976506a78775958526f49475a706247773949694e464f5449784d6a456949475139496b30784d7a6b754e6a6335494445774e6934784e7a6c6f4f5334794d5452324d5334314d7a566f4c546b754d6a4530646930784c6a557a4e566f694c7a3438634746306143426d615778735053496a526a56434e444d304969426b50534a4e4d544d354c6a59334f5341784d4463754e7a453061446b754d6a4530646a45754e544d32614330354c6a49784e4859744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055354e6a6332526949675a443069545445304f4334344f544d674d5441324c6a45334f5767784c6a557a4e6e597a4c6a41334d5767744d5334314d7a5a324c544d754d44637857694976506a78775958526f49475a706247773949694e474e5545344d7a516949475139496b30784e4467754f446b7a494445794e7934324e7a686f4c5445754e544d32646a45754e544d32614330784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a56324d5334314d7a5a6f4c5445754e544d32646a45754e544d31614330784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a56324d5334314d7a5a6f4f5334794d5452324c546b754d6a453157694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784d7a6b754e6a63354944457a4e53347a4e54646f4d5334314d7a56324d5334314d7a5a6f4c5445754e544d31646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a525449354e5449784969426b50534a4e4d5451784c6a49784e4341784d7a55754d7a5533614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493059314f54457a4e4349675a443069545445304e5334344d6a45674d544d314c6a4d314e3267784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e464d6a6b314d6a456949475139496b30784e4463754d7a55334944457a4e53347a4e54646f4d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a526a55354d544d304969426b50534a4e4d5451334c6a4d314e7941784d6a6b754d6a4530614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055794f5455794d5349675a443069545445304e5334344d6a45674d5449354c6a49784e4767784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784e4455754f4449784944457a4d4334334e5767784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e464d6a6b314d6a456949475139496b30784e4451754d6a67324944457a4d7934344d6a466f4d5334314d7a56324d5334314d7a5a6f4c5445754e544d31646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a526a55354d544d304969426b50534a4e4d5451794c6a63314944457a4d6934794f445a6f4d5334314d7a5a324d5334314d7a566f4c5445754e544d32646930784c6a557a4e566f694c7a3438634746306143426d615778735053496a526a56434e444d304969426b50534a4e4d544d344c6a45304d7941784e546b754f544934646a45754e544d32614445774c6a6331646930304c6a59774e3267744d5334314d7a5a324c5445754e544d32614330784c6a557a4e6e59744d5334314d7a566f4c5445754e544d31646a45754e544d31614330784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324d5334314d7a5a6f4c5445754e544d31646a45754e544d31614330784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a516a6b314d7a41354969426b50534a4e4d5451304c6a49344e6941784e544d754e7a6732646930784c6a557a4e6d677a4c6a41334d5859784c6a557a4e6d67784c6a557a4e6e59784c6a557a4e5767784c6a557a4e6e59324c6a45304d3267744d5334314d7a5a324c5451754e6a4133614330784c6a557a4e6e59744d5334314d7a5a6f4c5445754e544d32646930784c6a557a4e5767744d5334314d7a56614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a4430695454457a4f5334324e7a6b674d5455354c6a6b794f4767784c6a557a4e5859784c6a557a4e6d67744d5334314d7a56324c5445754e544d3257694976506a78775958526f49475a706247773949694e464d3045784d6a416949475139496b30784e4451754d6a6732494445314f5334354d6a686f4e4334324d4464324d5334314d7a5a6f4c5451754e6a4133646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a516a6b314d7a41354969426b50534a4e4d5451344c6a67354d7941784e5459754f445533614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a443069545445304d6934334e5341784e5459754f445533614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a6162544d754d446378494445754e544d32614445754e544d32646a45754e544d31614330784c6a557a4e6e59744d5334314d7a56614969382b50484268644767675a6d6c736244306949305131526a5a474e4349675a443069545445304f4334344f544d674d5467304c6a56324c544d754d446379614330354c6a49784e48597a4c6a41334d6d67784c6a557a4e5859784c6a557a4e6d67324c6a45304d3159784f4451754e5767784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a4e7a4242517a49304969426b50534a4e4d5451784c6a49784e4341784f4445754e444934614459754d54517a646a45754e544d32614330324c6a45304d3359744d5334314d7a5a614969382b50484268644767675a6d6c7362443069497a55314f444d78516949675a443069545445304d6934334e5341784f4449754f54593061444d754d446378646a45754e544d326143307a4c6a41334d5859744d5334314d7a5a614969382b50484268644767675a6d6c736244306949305931516a517a4e4349675a443069545445304e5334344d6a45674d5463354c6a67354d3267784c6a557a4e6e59784c6a557a4e5767744d5334314d7a5a324c5445754e544d31576d30744d5334314d7a55674d4767784c6a557a4e5859784c6a557a4e5767744d5334314d7a56324c5445754e544d31576d30774c5445754e544d32614445754e544d31646a45754e544d32614330784c6a557a4e5859744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493059315154677a4e4349675a443069545445334d7934304e6a51674e7a67754e544d314e3267744d5334314d7a56324d5334314d7a5533614330784c6a557a4e6e59784c6a557a4e54646f4c5445754e544d32646a45754e544d314e3267744d5334314d7a5a324d5334314d7a5534614330784c6a557a4e5859784c6a557a4e54646f4c5445754e544d32566a67334c6a633161446b754d6a4530646930354c6a49784e444e614969382b50484268644767675a6d6c7362443069493059314f54457a4e4349675a443069545445324e4334794e5341344e6934794d54517a614445754e544d32566a67334c6a6331614330784c6a557a4e6e59744d5334314d7a553357694976506a78775958526f49475a706247773949694e464d6a6b314d6a456949475139496b30784e6a55754e7a6732494467324c6a49784e444e6f4d5334314d7a56574f4463754e7a566f4c5445754e544d31646930784c6a557a4e5464614969382b50484268644767675a6d6c7362443069493059314f54457a4e4349675a443069545445334d43347a4f544d674f4459754d6a45304d3267784c6a557a4e6c59344e7934334e5767744d5334314d7a5a324c5445754e544d314e316f694c7a3438634746306143426d615778735053496a525449354e5449784969426b50534a4e4d5463784c6a6b794f5341344e6934794d54517a614445754e544d31566a67334c6a6331614330784c6a557a4e5859744d5334314d7a553357694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784e7a45754f544935494467774c6a41334d54526f4d5334314d7a56324d5334314d7a5533614330784c6a557a4e5859744d5334314d7a553357694976506a78775958526f49475a706247773949694e464d6a6b314d6a456949475139496b30784e7a41754d7a6b7a494467774c6a41334d54526f4d5334314d7a5a324d5334314d7a5533614330784c6a557a4e6e59744d5334314d7a553357694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784e7a41754d7a6b7a494467784c6a59774e7a466f4d5334314d7a5a324d5334314d7a5533614330784c6a557a4e6e59744d5334314d7a553357694976506a78775958526f49475a706247773949694e464d6a6b314d6a456949475139496b30784e6a67754f445533494467304c6a59334f445a6f4d5334314d7a5a324d5334314d7a5533614330784c6a557a4e6e59744d5334314d7a553357694976506a78775958526f49475a706247773949694e474e546b784d7a516949475139496b30784e6a63754d7a49784944677a4c6a45304d6a686f4d5334314d7a5a324d5334314d7a5534614330784c6a557a4e6e59744d5334314d7a553457694976506a78775958526f49475a706247773949694e474e5549304d7a516949475139496b30784e6a49754e7a4530494445784d4334334f445a324d5334314d7a566f4d5441754e7a56324c5451754e6a4133614330784c6a557a4e5859744d5334314d7a566f4c5445754e544d32646930784c6a557a4e6d67744d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646a45754e544d31614330784c6a557a4e5859784c6a557a4e6d67744d5334314d7a5a324d5334314d7a5a6f4c5445754e544d3257694976506a78775958526f49475a706247773949694e434f54557a4d446b6949475139496b30784e6a67754f445533494445774e4334324e444e324c5445754e544d3261444d754d446379646a45754e544d32614445754e544d31646a45754e544d32534445334e5859324c6a45304d6d67744d5334314d7a5a324c5451754e6a4133614330784c6a557a4e5859744d5334314d7a566f4c5445754e544d32646930784c6a557a4e6d67744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a443069545445324e4334794e5341784d5441754e7a6732614445754e544d32646a45754e544d31614330784c6a557a4e6e59744d5334314d7a56614969382b50484268644767675a6d6c73624430694930557a515445794d4349675a443069545445324f4334344e5463674d5445774c6a63344e6d67304c6a59774e3359784c6a557a4e5767744e4334324d4464324c5445754e544d3157694976506a78775958526f49475a706247773949694e434f54557a4d446b6949475139496b30784e7a4d754e445930494445774e7934334d5452494d546331646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a614969382b50484268644767675a6d6c7362443069493055354d6a45794d5349675a443069545445324e79347a4d6a45674d5441334c6a63784e4767784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d32576d307a4c6a41334d6941784c6a557a4e6d67784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e454e555932526a516949475139496b30784e7a4d754e4459304944457a4e53347a4e5464324c544d754d446378614330354c6a49784e48597a4c6a41334d5767784c6a557a4e6e59784c6a557a4e6d67324c6a45304d3359744d5334314d7a5a6f4d5334314d7a56614969382b50484268644767675a6d6c7362443069497a637751554d794e4349675a443069545445324e5334334f4459674d544d794c6a49344e6d67324c6a45304d3359784c6a557a4e5767744e6934784e444e324c5445754e544d3157694976506a78775958526f49475a706247773949694d314e54677a4d55496949475139496b30784e6a63754d7a49784944457a4d7934344d6a466f4d7934774e7a4a324d5334314d7a5a6f4c544d754d446379646930784c6a557a4e6c6f694c7a3438634746306143426d615778735053496a526a56434e444d304969426b50534a4e4d5463774c6a4d354d7941784d7a41754e7a566f4d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646930784c6a557a4e6c70744c5445754e544d324944426f4d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646930784c6a557a4e6c70744d4330784c6a557a4e6d67784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694e434f54557a4d446b6949475139496b30784e6a55754e7a6732494445314e6934344e5464324d7934774e7a466f4e4334324d4464324c5445754e544d31614445754e544d32646930784c6a557a4e6d67784c6a557a4e5859744e4334324d44646f4c5445754e544d31646930784c6a557a4e6d67744d5334314d7a5a324d5334314d7a5a6f4c5445754e544d32646a45754e544d32614330784c6a557a4e6e597a4c6a41334d5767744d5334314d7a56614969382b50484268644767675a6d6c736244306949305535513052434f5349675a443069545445324e4334794e5341784e546b754f544934614445754e544d32646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a61625445754e544d324c5445754e544d31614445754e544d31646a45754e544d31614330784c6a557a4e5859744d5334314d7a56614969382b50484268644767675a6d6c7362443069497a6c444e4459774e7949675a443069545445324e79347a4d6a45674d5455344c6a4d354d32677a4c6a41334d6e59784c6a557a4e5767744d7934774e7a4a324c5445754e544d31576d307a4c6a41334d6930784c6a557a4e6d67784c6a557a4e6e59784c6a557a4e6d67744d5334314d7a5a324c5445754e544d3257694976506a78775958526f49475a706247773949694d7852454578526a496949475a7062477774636e56735a5430695a585a6c626d396b5a4349675a443069545445334d5334354d6a6b674d54637a4c6a6331614330324c6a45304d3359784c6a557a4e6d67744d5334314d7a5a324d5334314d7a566f4c5445754e544d32646a59754d54517a614445754e544d32646a45754e544d32614445754e544d32646a45754e544d32614459754d54517a566a45344e433431614445754e544d31646930784c6a557a4e6b67784e7a56324c5459754d54517a614330784c6a557a4e6e59744d5334314d7a566f4c5445754e544d31646930784c6a557a4e6c70744c5459754d54517a494459754d54517a614445754e544d31646a45754e544d31614330784c6a557a4e5859744d5334314d7a566162544d754d446378494445754e544d31646a45754e544d32614330784c6a557a4e6e59744d5334314d7a5a6f4d5334314d7a5a61625445754e544d324c5445754e544d31614330784c6a557a4e6e59784c6a557a4e5767784c6a557a4e6e59744d5334314d7a5661625441674d4859744d5334314d7a5a6f4d5334314d7a5a324d5334314d7a5a6f4c5445754e544d325769496759327870634331796457786c50534a6c646d56756232526b4969382b5043397a646d632ba2646970667358221220bfb5a77ff4853b6b890ecc7fc461cbbeb29a52e0969dcfca923581a2f3c727d864736f6c63430008120033
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.