ERC-721
Overview
Max Total Supply
1,065 TMOC
Holders
380
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TMOCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Indelible
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "./SSTORE2.sol"; import "./DynamicBuffer.sol"; import "./HelperLib.sol"; contract Indelible is ERC721A, ReentrancyGuard, Ownable { using HelperLib for uint; using DynamicBuffer for bytes; struct LinkedTraitDTO { uint[] traitA; uint[] traitB; } struct TraitDTO { string name; string mimetype; bytes data; bool hide; bool useExistingData; uint existingDataIndex; } struct Trait { string name; string mimetype; bool hide; } struct ContractData { string name; string description; string image; string banner; string website; uint royalties; string royaltiesRecipient; } struct WithdrawRecipient { string name; string imageUrl; address recipientAddress; uint percentage; } mapping(uint => address[]) internal _traitDataPointers; mapping(uint => mapping(uint => Trait)) internal _traitDetails; mapping(uint => bool) internal _renderTokenOffChain; mapping(uint => mapping(uint => uint[])) internal _linkedTraits; uint[15] private PRIME_NUMBERS; uint private constant DEVELOPER_FEE = 250; // of 10,000 = 2.5% uint private constant NUM_LAYERS = 6; uint private constant MAX_BATCH_MINT = 20; uint[][NUM_LAYERS] private TIERS; string[] private LAYER_NAMES = [unicode"Curated Instruments", unicode"Accent", unicode"Curated Frame", unicode"Instruments", unicode"Frame", unicode"Canvas"]; bool private shouldWrapSVG = true; string private backgroundColor = "transparent"; uint private randomSeedData; WithdrawRecipient[3] public withdrawRecipients; bool public isContractSealed; uint public constant maxSupply = 3333; uint public maxPerAddress = 7; uint public publicMintPrice = 0.007 ether; string public baseURI = ""; bool public isPublicMintActive; bytes32 private merkleRoot = 0; uint public allowListPrice = 0.000 ether; uint public maxPerAllowList = 1; bool public isAllowListActive; ContractData public contractData = ContractData(unicode"Tonal Muse OnChain", unicode"PUBLIC MINTING 30.10.22 [48hr AL from 28.10.22- 1 free claim / 0.007e public with 7% of mint going to MMAD charity]———Tonal Muse OnChain (CC0) is the first ever set of 3,333 musical instruments to live completely on-chain on Ethereum. We are donating 7% revenue directly from the mint to MMAD - Musicians Making A Difference [ www.mmad.org.au ]———As the follow up to Tonal Muse OG collection [ www.tonalmuse.com ], which is the first ever 270 piece musical instrument PFP set on Etherium - all 3,333 NFT's in the TonalMuse OnChain collection will serve as the first access pass to our audio/visual digital art releases, physicals & gated metaverse events in our native experiential metaGallery [ www.tonalmuse.com/metaverse ]———Founder • @onilk ——— Metaverse Architect • @SenjienZ //", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/profile/86dac50f-17a7-41bd-916f-3a6d070ea14b", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/banner/86dac50f-17a7-41bd-916f-3a6d070ea14b", "https://www.tonalmuse.com/onchain", 1000, "0x05EaBB16738bE3456078CE80DFfd601E023b45f7"); constructor() ERC721A(unicode"Tonal Muse OnChain", unicode"TMOC") { TIERS[0] = [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3267]; TIERS[1] = [0,777,777,777,1002]; TIERS[2] = [0,455,458,460,460,1500]; TIERS[3] = [0,13,71,71,71,72,72,72,72,72,72,72,72,72,72,73,73,73,73,73,73,73,73,73,74,74,74,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,77,77,77,77]; TIERS[4] = [0,416,416,416,417,417,417,417,417]; TIERS[5] = [0,333,333,333,333,333,333,333,334,334,334]; withdrawRecipients[0] = WithdrawRecipient(unicode"null",unicode"null", 0x736c38958622cCBc6D935cBfB183BEb7d79D1a69, 3000); withdrawRecipients[1] = WithdrawRecipient(unicode"Musicians Making A Difference - MMAD",unicode"https://static.tgbwidget.com/MMAD.jpg", 0x2636D7B0a027197f19035bC2277Da2DCdbe4c527, 700); withdrawRecipients[2] = WithdrawRecipient(unicode"null",unicode"null", 0x94C2574dd3b83E075F6E9F8A410113A397d6Ddf3, 1000); PRIME_NUMBERS = [ 896353651830364561540707634717046743479841853086536248690737, 881620940286709375756927686087073151589884188606081093706959, 239439210107002209100408342483681304951633794994177274881807, 281985178301575220656442477929008459267923613534257332455929, 320078828389115961650782679700072873328499789823998523466099, 404644724038849848148120945109420144471824163937039418139293, 263743197985470588204349265269345001644610514897601719492623, 774988306700992475970790762502873362986676222144851638448617, 222880340296779472696004625829965490706697301235372335793669, 455255148896994205943326626951197024927648464365329800703251, 752418160701043808365139710144653623245409393563454484133021, 308043264033071943254647080990150144301849302687707544552767, 874778160644048956810394214801467472093537087897851981604983, 192516593828483755313857340433869706973450072701701194101197, 809964495083245361527940381794788695820367981156436813625509 ]; randomSeedData = uint( keccak256( abi.encodePacked( tx.gasprice, block.number, block.timestamp, block.difficulty, blockhash(block.number - 1), msg.sender ) ) ); } modifier whenMintActive() { require(isMintActive(), "Minting is not active"); _; } modifier whenUnsealed() { require(!isContractSealed, "Contract is sealed"); _; } receive() external payable { require(isPublicMintActive, "Public minting is not active"); handleMint(msg.value / publicMintPrice, msg.sender); } function rarityGen(uint randinput, uint rarityTier) internal view returns (uint) { uint currentLowerBound = 0; for (uint i = 0; i < TIERS[rarityTier].length; i++) { uint thisPercentage = TIERS[rarityTier][i]; if ( randinput >= currentLowerBound && randinput < currentLowerBound + thisPercentage ) return i; currentLowerBound = currentLowerBound + thisPercentage; } revert(); } function entropyForExtraData() internal view returns (uint24) { uint randomNumber = uint( keccak256( abi.encodePacked( tx.gasprice, block.number, block.timestamp, block.difficulty, blockhash(block.number - 1), msg.sender ) ) ); return uint24(randomNumber); } function stringCompare(string memory a, string memory b) internal pure returns (bool) { return keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)); } function tokensAreDuplicates(uint tokenIdA, uint tokenIdB) public view returns (bool) { return stringCompare( tokenIdToHash(tokenIdA), tokenIdToHash(tokenIdB) ); } function reRollDuplicate( uint tokenIdA, uint tokenIdB ) public whenUnsealed { require(tokensAreDuplicates(tokenIdA, tokenIdB), "All tokens must be duplicates"); uint largerTokenId = tokenIdA > tokenIdB ? tokenIdA : tokenIdB; if (msg.sender != owner()) { require(msg.sender == ownerOf(largerTokenId), "Only the token owner or contract owner can re-roll"); } _initializeOwnershipAt(largerTokenId); if (_exists(largerTokenId + 1)) { _initializeOwnershipAt(largerTokenId + 1); } _setExtraDataAt(largerTokenId, entropyForExtraData()); } function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual override returns (uint24) { return from == address(0) ? 0 : previousExtraData; } function getTokenSeed(uint tokenId) internal view returns (uint24) { return _ownershipOf(tokenId).extraData; } function tokenIdToHash( uint tokenId ) public view returns (string memory) { require(_exists(tokenId), "Invalid token"); // This will generate a NUM_LAYERS * 3 character string. bytes memory hashBytes = DynamicBuffer.allocate(NUM_LAYERS * 4); uint[] memory hash = new uint[](NUM_LAYERS); bool[] memory modifiedLayers = new bool[](NUM_LAYERS); uint traitSeed = randomSeedData % maxSupply; for (uint i = 0; i < NUM_LAYERS; i++) { uint traitIndex = hash[i]; if (modifiedLayers[i] == false) { uint tokenExtraData = getTokenSeed(tokenId); uint traitRangePosition; if (tokenExtraData == 0) { traitRangePosition = ((tokenId + i + traitSeed) * PRIME_NUMBERS[i]) % maxSupply; } else { traitRangePosition = uint( keccak256( abi.encodePacked( tokenExtraData, tokenId, tokenId + i ) ) ) % maxSupply; } traitIndex = rarityGen(traitRangePosition, i); hash[i] = traitIndex; } if (_linkedTraits[i][traitIndex].length > 0) { hash[_linkedTraits[i][traitIndex][0]] = _linkedTraits[i][traitIndex][1]; modifiedLayers[_linkedTraits[i][traitIndex][0]] = true; } } for (uint i = 0; i < hash.length; i++) { if (hash[i] < 10) { hashBytes.appendSafe("00"); } else if (hash[i] < 100) { hashBytes.appendSafe("0"); } if (hash[i] > 999) { hashBytes.appendSafe("999"); } else { hashBytes.appendSafe(bytes(_toString(hash[i]))); } } return string(hashBytes); } function handleMint(uint256 count, address recipient) internal whenMintActive returns (uint256) { uint256 totalMinted = _totalMinted(); require(count > 0, "Invalid token count"); require(totalMinted + count <= maxSupply, "All tokens are gone"); if (isPublicMintActive) { if (msg.sender != owner()) { require(_numberMinted(msg.sender) + count <= maxPerAddress, "Exceeded max mints allowed"); require(count * publicMintPrice == msg.value, "Incorrect amount of ether sent"); } require(msg.sender == tx.origin, "EOAs only"); } uint256 batchCount = count / MAX_BATCH_MINT; uint256 remainder = count % MAX_BATCH_MINT; for (uint256 i = 0; i < batchCount; i++) { _mint(recipient, MAX_BATCH_MINT); } if (remainder > 0) { _mint(recipient, remainder); } return totalMinted; } function mint(uint256 count, bytes32[] calldata merkleProof) external payable nonReentrant whenMintActive returns (uint) { if (!isPublicMintActive && msg.sender != owner()) { require(onAllowList(msg.sender, merkleProof), "Not on allow list"); require(_numberMinted(msg.sender) + count <= maxPerAllowList, "Exceeded max mints allowed"); require(count * allowListPrice == msg.value, "Incorrect amount of ether sent"); } return handleMint(count, msg.sender); } function airdrop(uint256 count, address recipient) external payable nonReentrant whenMintActive returns (uint) { require(isPublicMintActive || msg.sender == owner(), "Public minting is not active"); return handleMint(count, recipient); } function isMintActive() public view returns (bool) { return _totalMinted() < maxSupply && (isPublicMintActive || isAllowListActive || msg.sender == owner()); } function hashToSVG(string memory _hash) public view returns (string memory) { uint thisTraitIndex; bytes memory svgBytes = DynamicBuffer.allocate(1024 * 128); svgBytes.appendSafe('<svg width="1200" height="1200" viewBox="0 0 1200 1200" version="1.2" xmlns="http://www.w3.org/2000/svg" style="background-color:'); svgBytes.appendSafe( abi.encodePacked( backgroundColor, ";background-image:url(" ) ); for (uint i = 0; i < NUM_LAYERS - 1; i++) { thisTraitIndex = HelperLib.parseInt( HelperLib._substring(_hash, (i * 3), (i * 3) + 3) ); svgBytes.appendSafe( abi.encodePacked( "data:", _traitDetails[i][thisTraitIndex].mimetype, ";base64,", Base64.encode(SSTORE2.read(_traitDataPointers[i][thisTraitIndex])), "),url(" ) ); } thisTraitIndex = HelperLib.parseInt( HelperLib._substring(_hash, (NUM_LAYERS * 3) - 3, NUM_LAYERS * 3) ); svgBytes.appendSafe( abi.encodePacked( "data:", _traitDetails[NUM_LAYERS - 1][thisTraitIndex].mimetype, ";base64,", Base64.encode(SSTORE2.read(_traitDataPointers[NUM_LAYERS - 1][thisTraitIndex])), ');background-repeat:no-repeat;background-size:contain;background-position:center;image-rendering:-webkit-optimize-contrast;-ms-interpolation-mode:nearest-neighbor;image-rendering:-moz-crisp-edges;image-rendering:pixelated;"></svg>' ) ); return string( abi.encodePacked( "data:image/svg+xml;base64,", Base64.encode(svgBytes) ) ); } function hashToMetadata(string memory _hash) public view returns (string memory) { bytes memory metadataBytes = DynamicBuffer.allocate(1024 * 128); metadataBytes.appendSafe("["); bool afterFirstTrait; for (uint i = 0; i < NUM_LAYERS; i++) { uint thisTraitIndex = HelperLib.parseInt( HelperLib._substring(_hash, (i * 3), (i * 3) + 3) ); if (_traitDetails[i][thisTraitIndex].hide == false) { if (afterFirstTrait) { metadataBytes.appendSafe(","); } metadataBytes.appendSafe( abi.encodePacked( '{"trait_type":"', LAYER_NAMES[i], '","value":"', _traitDetails[i][thisTraitIndex].name, '"}' ) ); if (afterFirstTrait == false) { afterFirstTrait = true; } } if (i == NUM_LAYERS - 1) { metadataBytes.appendSafe("]"); } } return string(metadataBytes); } function onAllowList(address addr, bytes32[] calldata merkleProof) public view returns (bool) { return MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(addr))); } function tokenURI(uint tokenId) public view override returns (string memory) { require(_exists(tokenId), "Invalid token"); require(_traitDataPointers[0].length > 0, "Traits have not been added"); string memory tokenHash = tokenIdToHash(tokenId); bytes memory jsonBytes = DynamicBuffer.allocate(1024 * 128); jsonBytes.appendSafe(unicode"{\"name\":\"Tonal Muse OnChain #"); jsonBytes.appendSafe( abi.encodePacked( _toString(tokenId), "\",\"description\":\"", contractData.description, "\"," ) ); if (bytes(baseURI).length > 0 && _renderTokenOffChain[tokenId]) { jsonBytes.appendSafe( abi.encodePacked( '"image":"', baseURI, _toString(tokenId), "?dna=", tokenHash, '&network=mainnet",' ) ); } else { string memory svgCode = ""; if (shouldWrapSVG) { string memory svgString = hashToSVG(tokenHash); svgCode = string( abi.encodePacked( "data:image/svg+xml;base64,", Base64.encode( abi.encodePacked( '<svg width="100%" height="100%" viewBox="0 0 1200 1200" version="1.2" xmlns="http://www.w3.org/2000/svg"><image width="1200" height="1200" href="', svgString, '"></image></svg>' ) ) ) ); jsonBytes.appendSafe( abi.encodePacked( '"svg_image_data":"', svgString, '",' ) ); } else { svgCode = hashToSVG(tokenHash); } jsonBytes.appendSafe( abi.encodePacked( '"image_data":"', svgCode, '",' ) ); } jsonBytes.appendSafe( abi.encodePacked( '"attributes":', hashToMetadata(tokenHash), "}" ) ); return string( abi.encodePacked( "data:application/json;base64,", Base64.encode(jsonBytes) ) ); } function contractURI() public view returns (string memory) { return string( abi.encodePacked( "data:application/json;base64,", Base64.encode( abi.encodePacked( '{"name":"', contractData.name, '","description":"', contractData.description, '","image":"', contractData.image, '","banner":"', contractData.banner, '","external_link":"', contractData.website, '","seller_fee_basis_points":', _toString(contractData.royalties), ',"fee_recipient":"', contractData.royaltiesRecipient, '"}' ) ) ) ); } function tokenIdToSVG(uint tokenId) public view returns (string memory) { return hashToSVG(tokenIdToHash(tokenId)); } function traitDetails(uint layerIndex, uint traitIndex) public view returns (Trait memory) { return _traitDetails[layerIndex][traitIndex]; } function traitData(uint layerIndex, uint traitIndex) public view returns (string memory) { return string(SSTORE2.read(_traitDataPointers[layerIndex][traitIndex])); } function getLinkedTraits(uint layerIndex, uint traitIndex) public view returns (uint[] memory) { return _linkedTraits[layerIndex][traitIndex]; } function addLayer(uint layerIndex, TraitDTO[] memory traits) public onlyOwner whenUnsealed { require(TIERS[layerIndex].length == traits.length, "Traits size does not match tiers for this index"); address[] memory dataPointers = new address[](traits.length); for (uint i = 0; i < traits.length; i++) { if (traits[i].useExistingData) { dataPointers[i] = dataPointers[traits[i].existingDataIndex]; } else { dataPointers[i] = SSTORE2.write(traits[i].data); } _traitDetails[layerIndex][i] = Trait(traits[i].name, traits[i].mimetype, traits[i].hide); } _traitDataPointers[layerIndex] = dataPointers; return; } function addTrait(uint layerIndex, uint traitIndex, TraitDTO memory trait) public onlyOwner whenUnsealed { _traitDetails[layerIndex][traitIndex] = Trait(trait.name, trait.mimetype, trait.hide); address[] memory dataPointers = _traitDataPointers[layerIndex]; if (trait.useExistingData) { dataPointers[traitIndex] = dataPointers[trait.existingDataIndex]; } else { dataPointers[traitIndex] = SSTORE2.write(trait.data); } _traitDataPointers[layerIndex] = dataPointers; return; } function setLinkedTraits(LinkedTraitDTO[] memory linkedTraits) public onlyOwner whenUnsealed { for (uint i = 0; i < linkedTraits.length; i++) { _linkedTraits[linkedTraits[i].traitA[0]][linkedTraits[i].traitA[1]] = [linkedTraits[i].traitB[0],linkedTraits[i].traitB[1]]; } } function setContractData(ContractData memory data) external onlyOwner whenUnsealed { contractData = data; } function setMaxPerAddress(uint max) external onlyOwner { maxPerAddress = max; } function setBaseURI(string memory uri) external onlyOwner { baseURI = uri; } function setBackgroundColor(string memory color) external onlyOwner whenUnsealed { backgroundColor = color; } function setRenderOfTokenId(uint tokenId, bool renderOffChain) external { require(msg.sender == ownerOf(tokenId), "Only the token owner can set the render method"); _renderTokenOffChain[tokenId] = renderOffChain; } function setMerkleRoot(bytes32 newMerkleRoot) external onlyOwner { merkleRoot = newMerkleRoot; } function setMaxPerAllowList(uint max) external onlyOwner { maxPerAllowList = max; } function setAllowListPrice(uint price) external onlyOwner { allowListPrice = price; } function toggleAllowListMint() external onlyOwner { isAllowListActive = !isAllowListActive; } function toggleWrapSVG() external onlyOwner { shouldWrapSVG = !shouldWrapSVG; } function togglePublicMint() external onlyOwner { isPublicMintActive = !isPublicMintActive; } function sealContract() external whenUnsealed onlyOwner { isContractSealed = true; } function withdraw() external onlyOwner nonReentrant { uint balance = address(this).balance; uint amount = (balance * (10000 - DEVELOPER_FEE)) / 10000; uint distAmount = 0; uint totalDistributionPercentage = 0; address payable receiver = payable(owner()); address payable dev = payable(0xEA208Da933C43857683C04BC76e3FD331D7bfdf7); Address.sendValue(dev, balance - amount); if (withdrawRecipients.length > 0) { for (uint i = 0; i < withdrawRecipients.length; i++) { totalDistributionPercentage = totalDistributionPercentage + withdrawRecipients[i].percentage; address payable currRecepient = payable(withdrawRecipients[i].recipientAddress); distAmount = (amount * (10000 - withdrawRecipients[i].percentage)) / 10000; Address.sendValue(currRecepient, amount - distAmount); } } balance = address(this).balance; Address.sendValue(receiver, balance); } }
// SPDX-License-Identifier: MIT // Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier) pragma solidity >=0.8.0; /// @title DynamicBuffer /// @author David Huber (@cxkoda) and Simon Fremaux (@dievardump). See also /// https://raw.githubusercontent.com/dievardump/solidity-dynamic-buffer /// @notice This library is used to allocate a big amount of container memory // which will be subsequently filled without needing to reallocate /// memory. /// @dev First, allocate memory. /// Then use `buffer.appendUnchecked(theBytes)` or `appendSafe()` if /// bounds checking is required. library DynamicBuffer { /// @notice Allocates container space for the DynamicBuffer /// @param capacity The intended max amount of bytes in the buffer /// @return buffer The memory location of the buffer /// @dev Allocates `capacity + 0x60` bytes of space /// The buffer array starts at the first container data position, /// (i.e. `buffer = container + 0x20`) function allocate(uint256 capacity) internal pure returns (bytes memory buffer) { assembly { // Get next-free memory address let container := mload(0x40) // Allocate memory by setting a new next-free address { // Add 2 x 32 bytes in size for the two length fields // Add 32 bytes safety space for 32B chunked copy let size := add(capacity, 0x60) let newNextFree := add(container, size) mstore(0x40, newNextFree) } // Set the correct container length { let length := add(capacity, 0x40) mstore(container, length) } // The buffer starts at idx 1 in the container (0 is length) buffer := add(container, 0x20) // Init content with length 0 mstore(buffer, 0) } return buffer; } /// @notice Appends data to buffer, and update buffer length /// @param buffer the buffer to append the data to /// @param data the data to append /// @dev Does not perform out-of-bound checks (container capacity) /// for efficiency. function appendUnchecked(bytes memory buffer, bytes memory data) internal pure { assembly { let length := mload(data) for { data := add(data, 0x20) let dataEnd := add(data, length) let copyTo := add(buffer, add(mload(buffer), 0x20)) } lt(data, dataEnd) { data := add(data, 0x20) copyTo := add(copyTo, 0x20) } { // Copy 32B chunks from data to buffer. // This may read over data array boundaries and copy invalid // bytes, which doesn't matter in the end since we will // later set the correct buffer length, and have allocated an // additional word to avoid buffer overflow. mstore(copyTo, mload(data)) } // Update buffer length mstore(buffer, add(mload(buffer), length)) } } /// @notice Appends data to buffer, and update buffer length /// @param buffer the buffer to append the data to /// @param data the data to append /// @dev Performs out-of-bound checks and calls `appendUnchecked`. function appendSafe(bytes memory buffer, bytes memory data) internal pure { uint256 capacity; uint256 length; assembly { capacity := sub(mload(sub(buffer, 0x20)), 0x40) length := mload(buffer) } require( length + data.length <= capacity, "DynamicBuffer: Appending out of bounds." ); appendUnchecked(buffer, data); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14; library HelperLib { function parseInt(string memory _a) internal pure returns (uint8 _parsedInt) { bytes memory bresult = bytes(_a); uint8 mint = 0; for (uint8 i = 0; i < bresult.length; i++) { if ( (uint8(uint8(bresult[i])) >= 48) && (uint8(uint8(bresult[i])) <= 57) ) { mint *= 10; mint += uint8(bresult[i]) - 48; } } return mint; } function _substring( string memory str, uint256 startIndex, uint256 endIndex ) internal pure returns (string memory) { bytes memory strBytes = bytes(str); bytes memory result = new bytes(endIndex - startIndex); for (uint256 i = startIndex; i < endIndex; i++) { result[i - startIndex] = strBytes[i]; } return string(result); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./utils/Bytecode.sol"; /** @title A key-value storage with auto-generated keys for storing chunks of data with a lower write & read cost. @author Agustin Aguilar <[email protected]> Readme: https://github.com/0xsequence/sstore2#readme */ library SSTORE2 { error WriteError(); /** @notice Stores `_data` and returns `pointer` as key for later retrieval @dev The pointer is a contract address with `_data` as code @param _data to be written @return pointer Pointer to the written `_data` */ function write(bytes memory _data) internal returns (address pointer) { // Append 00 to _data so contract can't be called // Build init code bytes memory code = Bytecode.creationCodeFor( abi.encodePacked( hex'00', _data ) ); // Deploy contract using create assembly { pointer := create(0, add(code, 32), mload(code)) } // Address MUST be non-zero if (pointer == address(0)) revert WriteError(); } /** @notice Reads the contents of the `_pointer` code as data, skips the first byte @dev The function is intended for reading pointers generated by `write` @param _pointer to be read @return data read from `_pointer` contract */ function read(address _pointer) internal view returns (bytes memory) { return Bytecode.codeAt(_pointer, 1, type(uint256).max); } /** @notice Reads the contents of the `_pointer` code as data, skips the first byte @dev The function is intended for reading pointers generated by `write` @param _pointer to be read @param _start number of bytes to skip @return data read from `_pointer` contract */ function read(address _pointer, uint256 _start) internal view returns (bytes memory) { return Bytecode.codeAt(_pointer, _start + 1, type(uint256).max); } /** @notice Reads the contents of the `_pointer` code as data, skips the first byte @dev The function is intended for reading pointers generated by `write` @param _pointer to be read @param _start number of bytes to skip @param _end index before which to end extraction @return data read from `_pointer` contract */ function read(address _pointer, uint256 _start, uint256 _end) internal view returns (bytes memory) { return Bytecode.codeAt(_pointer, _start + 1, _end + 1); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library Bytecode { error InvalidCodeAtRange(uint256 _size, uint256 _start, uint256 _end); /** @notice Generate a creation code that results on a contract with `_code` as bytecode @param _code The returning value of the resulting `creationCode` @return creationCode (constructor) for new contract */ function creationCodeFor(bytes memory _code) internal pure returns (bytes memory) { /* 0x00 0x63 0x63XXXXXX PUSH4 _code.length size 0x01 0x80 0x80 DUP1 size size 0x02 0x60 0x600e PUSH1 14 14 size size 0x03 0x60 0x6000 PUSH1 00 0 14 size size 0x04 0x39 0x39 CODECOPY size 0x05 0x60 0x6000 PUSH1 00 0 size 0x06 0xf3 0xf3 RETURN <CODE> */ return abi.encodePacked( hex"63", uint32(_code.length), hex"80_60_0E_60_00_39_60_00_F3", _code ); } /** @notice Returns the size of the code on a given address @param _addr Address that may or may not contain code @return size of the code on the given `_addr` */ function codeSize(address _addr) internal view returns (uint256 size) { assembly { size := extcodesize(_addr) } } /** @notice Returns the code of a given address @dev It will fail if `_end < _start` @param _addr Address that may or may not contain code @param _start number of bytes of code to skip on read @param _end index before which to end extraction @return oCode read from `_addr` deployed bytecode Forked from: https://gist.github.com/KardanovIR/fe98661df9338c842b4a30306d507fbd */ function codeAt(address _addr, uint256 _start, uint256 _end) internal view returns (bytes memory oCode) { uint256 csize = codeSize(_addr); if (csize == 0) return bytes(""); if (_start > csize) return bytes(""); if (_end < _start) revert InvalidCodeAtRange(csize, _start, _end); unchecked { uint256 reqSize = _end - _start; uint256 maxSize = csize - _start; uint256 size = maxSize < reqSize ? maxSize : reqSize; assembly { // allocate output byte array - this could also be done without assembly // by using o_code = new bytes(size) oCode := mload(0x40) // new "memory end" including padding mstore(0x40, add(oCode, and(add(add(size, 0x20), 0x1f), not(0x1f)))) // store length in memory mstore(oCode, size) // actually retrieve the code, this needs assembly extcodecopy(_addr, add(oCode, 0x20), _start, size) } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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)); 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 v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 { 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; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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 ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try 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)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // 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 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
{ "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": true } }
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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"_size","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"InvalidCodeAtRange","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"},{"inputs":[],"name":"WriteError","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":"uint256","name":"layerIndex","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bool","name":"hide","type":"bool"},{"internalType":"bool","name":"useExistingData","type":"bool"},{"internalType":"uint256","name":"existingDataIndex","type":"uint256"}],"internalType":"struct Indelible.TraitDTO[]","name":"traits","type":"tuple[]"}],"name":"addLayer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bool","name":"hide","type":"bool"},{"internalType":"bool","name":"useExistingData","type":"bool"},{"internalType":"uint256","name":"existingDataIndex","type":"uint256"}],"internalType":"struct Indelible.TraitDTO","name":"trait","type":"tuple"}],"name":"addTrait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"airdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractData","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"banner","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"uint256","name":"royalties","type":"uint256"},{"internalType":"string","name":"royaltiesRecipient","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"}],"name":"getLinkedTraits","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isContractSealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAllowList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIdA","type":"uint256"},{"internalType":"uint256","name":"tokenIdB","type":"uint256"}],"name":"reRollDuplicate","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sealContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setAllowListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"color","type":"string"}],"name":"setBackgroundColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"banner","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"uint256","name":"royalties","type":"uint256"},{"internalType":"string","name":"royaltiesRecipient","type":"string"}],"internalType":"struct Indelible.ContractData","name":"data","type":"tuple"}],"name":"setContractData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256[]","name":"traitA","type":"uint256[]"},{"internalType":"uint256[]","name":"traitB","type":"uint256[]"}],"internalType":"struct Indelible.LinkedTraitDTO[]","name":"linkedTraits","type":"tuple[]"}],"name":"setLinkedTraits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"renderOffChain","type":"bool"}],"name":"setRenderOfTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAllowListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWrapSVG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIdToHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIdToSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIdA","type":"uint256"},{"internalType":"uint256","name":"tokenIdB","type":"uint256"}],"name":"tokensAreDuplicates","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"}],"name":"traitData","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"}],"name":"traitDetails","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bool","name":"hide","type":"bool"}],"internalType":"struct Indelible.Trait","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawRecipients","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"imageUrl","type":"string"},{"internalType":"address","name":"recipientAddress","type":"address"},{"internalType":"uint256","name":"percentage","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60136101409081527f4375726174656420496e737472756d656e7473000000000000000000000000006101605260809081526006610180818152651058d8d95b9d60d21b6101a05260a052600d6101c09081526c43757261746564204672616d6560981b6101e05260c052600b6102009081526a496e737472756d656e747360a81b6102205260e0526005610240908152644672616d6560d81b61026052610100526102c06040526102808181526543616e76617360d01b6102a05261012052620000cd9160239162000d9e565b506024805460ff1916600117905560408051808201909152600b8082526a1d1c985b9cdc185c995b9d60aa1b60209092019182526200010f9160259162000e02565b5060076034556618de76816d8000603555604080516020810191829052600090819052620001409160369162000e02565b506000801b60385560006039556001603a556040518060e00160405280604051806040016040528060128152602001712a37b730b61026bab9b29027b721b430b4b760711b815250815260200160405180610360016040528061032b815260200162006abf61032b913981526020016040518060a001604052806062815260200162006a146062913981526020016040518060a001604052806061815260200162006e0b60619139815260200160405180606001604052806021815260200162006dea6021913981526020016103e881526020016040518060600160405280602a815260200162006e6c602a9139905280518051603c91620002489183916020019062000e02565b50602082810151805162000263926001850192019062000e02565b50604082015180516200028191600284019160209091019062000e02565b50606082015180516200029f91600384019160209091019062000e02565b5060808201518051620002bd91600484019160209091019062000e02565b5060a0820151600582015560c08201518051620002e591600684019160209091019062000e02565b505050348015620002f557600080fd5b5060408051808201825260128152712a37b730b61026bab9b29027b721b430b4b760711b602080830191825283518085019094526004845263544d4f4360e01b9084015281519192916200034c9160029162000e02565b5080516200036290600390602084019062000e02565b506000805550506001600855620003793362000d4c565b6040805161086081018252600180825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e08101829052610200810182905261022081018290526102408101829052610260810182905261028081018290526102a081018290526102c081018290526102e08101829052610300810182905261032081018290526103408101829052610360810182905261038081018290526103a081018290526103c081018290526103e08101829052610400810182905261042081018290526104408101829052610460810182905261048081018290526104a081018290526104c081018290526104e08101829052610500810182905261052081018290526105408101829052610560810182905261058081018290526105a081018290526105c081018290526105e08101829052610600810182905261062081018290526106408101829052610660810182905261068081018290526106a081018290526106c081018290526106e08101829052610700810182905261072081018290526107408101829052610760810182905261078081018290526107a081018290526107c081018290526107e081018290526108008101829052610820810191909152610cc3610840820152620005a390601d90604362000e8d565b506040805160a081018252600081526103096020820181905291810182905260608101919091526103ea6080820152620005e290601e90600562000e8d565b506040805160c081018252600081526101c760208201526101ca918101919091526101cc6060820181905260808201526105dc60a08201526200062a90601f90600662000e8d565b50604080516105e08101825260008152600d60208201526047918101829052606081018290526080810191909152604860a0820181905260c0820181905260e08201819052610100820181905261012082018190526101408201819052610160820181905261018082018190526101a082018190526101c082015260496101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e0820152604a61030082018190526103208201819052610340820152604b610360820181905261038082018190526103a082018190526103c082018190526103e08201819052610400820181905261042082018190526104408201819052610460820181905261048082018190526104a082018190526104c082018190526104e0820181905261050082018190526105208201819052610540820152604d610560820181905261058082018190526105a082018190526105c0820152601d6003620007b992910190602f62000ed1565b506040805161012081018252600081526101a06020820181905291810182905260608101919091526101a16080820181905260a0820181905260c0820181905260e082018190526101008201526200081690602190600962000e8d565b5060408051610160810182526000815261014d60208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081019190915261014e610100820181905261012082018190526101408201526200088390602290600b62000e8d565b506040805160c081018252600460808201818152631b9d5b1b60e21b60a08401819052908352835180850185529182526020808301919091528083019190915273736c38958622ccbc6d935cbfb183beb7d79d1a6992820192909252610bb86060820152805180519192602792620008ff928492019062000e02565b5060208281015180516200091a926001850192019062000e02565b506040828101516002830180546001600160a01b0319166001600160a01b03909216919091179055606090920151600390910155805160e08101909152602460808201818152829162006a9b60a0840139815260200160405180606001604052806025815260200162006a76602591398152732636d7b0a027197f19035bc2277da2dcdbe4c5276020808301919091526102bc60409092019190915281518051602b92620009cd92849291019062000e02565b506020828101518051620009e8926001850192019062000e02565b506040828101516002830180546001600160a01b0319166001600160a01b03909216919091179055606092830151600390920191909155805160c081018252600460808201818152631b9d5b1b60e21b60a0840181905290835283518085018552918252602082810191909152808301919091527394c2574dd3b83e075f6e9f8a410113a397d6ddf3928201929092526103e89281019290925281518051602f9262000a9992849291019062000e02565b50602082810151805162000ab4926001850192019062000e02565b506040828101516002830180546001600160a01b0319166001600160a01b0390921691909117905560609283015160039092019190915580516101e081018252788ecc20c85fdcf3b91bfd836b78bdfb632cd5b9a2c4ffa988318152788c734818e069e32de3451f36c2c8f94d58f9908eba5c81a4cf602082015278262515fefc812d40b3d86a8c74b8a9679bfd845b4c019d270f91810191909152782cec3ea15560a2b9846f12ab531272e2251736b78eeb4189f9918101919091527832fdd2e4f7515b7bf4607c58f521bcd1283f41fddac0fde1736080820152784076b00a893975d78fb15412d6de1abf4465f7acec3a4c229d60a0820152782a0447781a3883ec736ad2be7913092a92e405d8ce75f8e00f60c0820152787b767774e26fe30f739cfcb7c50dd57c67795e3b4894e771e960e0820152782381c3541e5ab6fe41fd19520098e6953ecac11e74485f8605610100820152784886bd880f457d6863e7e47ce5b0ce965b7475d0bcdb472d136101208201527877ddfc23277b83ad7c771d1f9280b2debabf32c09b81fe349d610140820152783112f9bd4a097bd73f2bd94606db0fd032cdf29520aad6053f610160820152788b5c3624edc43de16cb4cfc12c571917cc0835df87c4c62877610180820152781eab6f0617885af0b230158f8c7af283cc47d63e4f1025b1cd6101a0820152788108e7e6e2da324e8e65ce5a4789ea242349c58d357d3938a56101c082015262000cdd90600e90600f62000f14565b503a43424462000cef60018462000fca565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6001600160601b03191660c082015260d40160408051601f1981840301815291905280516020909101206026556200102c565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000df0579160200282015b8281111562000df0578251805162000ddf91849160209091019062000e02565b509160200191906001019062000dbf565b5062000dfe92915062000f50565b5090565b82805462000e109062000ff0565b90600052602060002090601f01602090048101928262000e34576000855562000e7f565b82601f1062000e4f57805160ff191683800117855562000e7f565b8280016001018555821562000e7f579182015b8281111562000e7f57825182559160200191906001019062000e62565b5062000dfe92915062000f71565b82805482825590600052602060002090810192821562000e7f579160200282015b8281111562000e7f578251829061ffff1690559160200191906001019062000eae565b82805482825590600052602060002090810192821562000e7f579160200282015b8281111562000e7f578251829060ff1690559160200191906001019062000ef2565b82600f810192821562000e7f579160200282015b8281111562000e7f57825182906001600160c81b031690559160200191906001019062000f28565b8082111562000dfe57600062000f67828262000f88565b5060010162000f50565b5b8082111562000dfe576000815560010162000f72565b50805462000f969062000ff0565b6000825580601f1062000fa7575050565b601f01602090049060005260206000209081019062000fc7919062000f71565b50565b60008282101562000feb57634e487b7160e01b600052601160045260246000fd5b500390565b600181811c908216806200100557607f821691505b6020821081036200102657634e487b7160e01b600052602260045260246000fd5b50919050565b6159d8806200103c6000396000f3fe6080604052600436106103855760003560e01c80636df9fa88116101d1578063b456806611610102578063dbe9875f116100a0578063e985e9c51161006f578063e985e9c514610a48578063ea84b59b14610a91578063f2fde38b14610abe578063fd6b3cf514610ade57600080fd5b8063dbe9875f146109d0578063dc53fd92146109f0578063dc9867ce14610a06578063e8a3d48514610a3357600080fd5b8063bc63f02e116100dc578063bc63f02e14610967578063c11feac11461097a578063c87b56dd1461099a578063d5abeb01146109ba57600080fd5b8063b456806614610914578063b88d4fde14610934578063ba41b0c61461095457600080fd5b80638da5cb5b1161016f57806397d194d71161014957806397d194d71461089e578063a22cb465146108be578063a24e5153146108de578063b32c5680146108f457600080fd5b80638da5cb5b146108565780638fb4e8a91461087457806395d89b411461088957600080fd5b80637bddd65b116101ab5780637bddd65b146107c65780637cb64759146107e6578063876171dc1461080657806389ce30741461083657600080fd5b80636df9fa881461077157806370a0823114610791578063715018a6146107b157600080fd5b80634047638d116102b65780636190e1da1161025457806366e338701161022357806366e338701461070757806368bd580e146107275780636c0360eb1461073c5780636cced73a1461075157600080fd5b80636190e1da14610691578063621a1f74146106b15780636352211e146106d1578063639814e0146106f157600080fd5b80634ca1a0f2116102905780634ca1a0f214610622578063542d50411461064257806355f804b31461065c5780635b92ac0d1461067c57600080fd5b80634047638d146105d857806342842e0e146105ed5780634920154b1461060d57600080fd5b806318160ddd116103235780632d6b6224116102fd5780632d6b62241461056b57806336cd2edd146105855780633cca24201461059b5780633ccfd60b146105c357600080fd5b806318160ddd1461050e57806323b872dd1461053157806329fc6bae1461055157600080fd5b8063095ea7b31161035f578063095ea7b31461048e57806309dbabca146104ae5780630f3debbe146104ce578063180c2cc0146104ee57600080fd5b806301ffc9a7146103ff57806306fdde0314610434578063081812fc1461045657600080fd5b366103fa5760375460ff166103e15760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b6103f8603554346103f29190614411565b33610afe565b005b600080fd5b34801561040b57600080fd5b5061041f61041a36600461443b565b610d4b565b60405190151581526020015b60405180910390f35b34801561044057600080fd5b50610449610d99565b60405161042b91906144b0565b34801561046257600080fd5b506104766104713660046144c3565b610e2b565b6040516001600160a01b03909116815260200161042b565b34801561049a57600080fd5b506103f86104a93660046144f8565b610e6f565b3480156104ba57600080fd5b506104496104c9366004614522565b610f0f565b3480156104da57600080fd5b506103f86104e9366004614665565b610f57565b3480156104fa57600080fd5b506103f861050936600461485e565b611057565b34801561051a57600080fd5b50600154600054035b60405190815260200161042b565b34801561053d57600080fd5b506103f861054c3660046148ad565b611251565b34801561055d57600080fd5b50603b5461041f9060ff1681565b34801561057757600080fd5b5060375461041f9060ff1681565b34801561059157600080fd5b50610523603a5481565b3480156105a757600080fd5b506105b0611405565b60405161042b97969594939291906148e9565b3480156105cf57600080fd5b506103f8611763565b3480156105e457600080fd5b506103f86118f5565b3480156105f957600080fd5b506103f86106083660046148ad565b611933565b34801561061957600080fd5b506103f861194e565b34801561062e57600080fd5b506103f861063d3660046144c3565b61198c565b34801561064e57600080fd5b5060335461041f9060ff1681565b34801561066857600080fd5b506103f8610677366004614972565b6119bb565b34801561068857600080fd5b5061041f6119fc565b34801561069d57600080fd5b506103f86106ac366004614972565b611a3f565b3480156106bd57600080fd5b506104496106cc3660046144c3565b611a9f565b3480156106dd57600080fd5b506104766106ec3660046144c3565b611eea565b3480156106fd57600080fd5b5061052360345481565b34801561071357600080fd5b50610449610722366004614972565b611ef5565b34801561073357600080fd5b506103f861208e565b34801561074857600080fd5b506104496120ea565b34801561075d57600080fd5b5061041f61076c366004614522565b612178565b34801561077d57600080fd5b506103f861078c3660046144c3565b612194565b34801561079d57600080fd5b506105236107ac3660046149a6565b6121c3565b3480156107bd57600080fd5b506103f8612211565b3480156107d257600080fd5b506103f86107e13660046144c3565b612247565b3480156107f257600080fd5b506103f86108013660046144c3565b612276565b34801561081257600080fd5b506108266108213660046144c3565b6122a5565b60405161042b94939291906149c1565b34801561084257600080fd5b50610449610851366004614972565b6123f0565b34801561086257600080fd5b506009546001600160a01b0316610476565b34801561088057600080fd5b506103f8612609565b34801561089557600080fd5b50610449612647565b3480156108aa57600080fd5b506103f86108b9366004614a26565b612656565b3480156108ca57600080fd5b506103f86108d9366004614ae7565b612965565b3480156108ea57600080fd5b5061052360395481565b34801561090057600080fd5b5061041f61090f366004614b65565b6129fa565b34801561092057600080fd5b506103f861092f366004614c1d565b612a7a565b34801561094057600080fd5b506103f861094f366004614d28565b612c09565b610523610962366004614d8f565b612c4d565b610523610975366004614dc1565b612df4565b34801561098657600080fd5b506104496109953660046144c3565b612ebe565b3480156109a657600080fd5b506104496109b53660046144c3565b612ecc565b3480156109c657600080fd5b50610523610d0581565b3480156109dc57600080fd5b506103f86109eb366004614de4565b613161565b3480156109fc57600080fd5b5061052360355481565b348015610a1257600080fd5b50610a26610a21366004614522565b613201565b60405161042b9190614e07565b348015610a3f57600080fd5b5061044961326c565b348015610a5457600080fd5b5061041f610a63366004614e4b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a9d57600080fd5b50610ab1610aac366004614522565b6132ca565b60405161042b9190614e75565b348015610aca57600080fd5b506103f8610ad93660046149a6565b613445565b348015610aea57600080fd5b506103f8610af9366004614522565b6134e0565b6000610b086119fc565b610b245760405162461bcd60e51b81526004016103d890614ec7565b60005483610b6a5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b60448201526064016103d8565b610d05610b778583614ef6565b1115610bbb5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b60448201526064016103d8565b60375460ff1615610ce8576009546001600160a01b03163314610cad5760345433600090815260056020526040908190205486911c6001600160401b0316610c039190614ef6565b1115610c515760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103d8565b3460355485610c609190614f0e565b14610cad5760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103d8565b333214610ce85760405162461bcd60e51b8152602060048201526009602482015268454f4173206f6e6c7960b81b60448201526064016103d8565b6000610cf5601486614411565b90506000610d04601487614f2d565b905060005b82811015610d2e57610d1c86601461365f565b80610d2681614f41565b915050610d09565b508015610d3f57610d3f858261365f565b50909150505b92915050565b60006301ffc9a760e01b6001600160e01b031983161480610d7c57506380ac58cd60e01b6001600160e01b03198316145b80610d455750506001600160e01b031916635b5e139f60e01b1490565b606060028054610da890614f5a565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd490614f5a565b8015610e215780601f10610df657610100808354040283529160200191610e21565b820191906000526020600020905b815481529060010190602001808311610e0457829003601f168201915b5050505050905090565b6000610e3682613760565b610e53576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610e7a82611eea565b9050336001600160a01b03821614610eb357610e968133610a63565b610eb3576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600a602052604090208054606091610f509184908110610f3657610f36614f8e565b6000918252602090912001546001600160a01b0316613787565b9392505050565b6009546001600160a01b03163314610f815760405162461bcd60e51b81526004016103d890614fa4565b60335460ff1615610fa45760405162461bcd60e51b81526004016103d890614fd9565b805180518291603c91610fbe9183916020909101906142bd565b506020828101518051610fd792600185019201906142bd565b5060408201518051610ff39160028401916020909101906142bd565b506060820151805161100f9160038401916020909101906142bd565b506080820151805161102b9160048401916020909101906142bd565b5060a0820151600582015560c082015180516110519160068401916020909101906142bd565b50505050565b6009546001600160a01b031633146110815760405162461bcd60e51b81526004016103d890614fa4565b60335460ff16156110a45760405162461bcd60e51b81526004016103d890614fd9565b60408051606080820183528351825260208085015181840152908401511515828401526000868152600b825283812086825282529290922081518051929391926110f192849201906142bd565b50602082810151805161110a92600185019201906142bd565b50604091820151600291909101805460ff19169115159190911790556000848152600a60209081528282208054845181840281018401909552808552929392909183018282801561118457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611166575b505050505090508160800151156111ea57808260a00151815181106111ab576111ab614f8e565b60200260200101518184815181106111c5576111c5614f8e565b60200260200101906001600160a01b031690816001600160a01b03168152505061122a565b6111f78260400151613797565b81848151811061120957611209614f8e565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6000848152600a60209081526040909120825161124992840190614341565b50505b505050565b600061125c826137fc565b9050836001600160a01b0316816001600160a01b03161461128f5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176112dc576112bf8633610a63565b6112dc57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661130357604051633a954ecd60e21b815260040160405180910390fd5b801561130e57600082555b6001600160a01b038087166000908152600560205260408082208054600019019055918716815220805460010190556113678561134c888287613863565b600160e11b174260a01b176001600160a01b03919091161790565b600085815260046020526040812091909155600160e11b841690036113bc576001840160008181526004602052604081205490036113ba5760005481146113ba5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b603c8054819061141490614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461144090614f5a565b801561148d5780601f106114625761010080835404028352916020019161148d565b820191906000526020600020905b81548152906001019060200180831161147057829003601f168201915b5050505050908060010180546114a290614f5a565b80601f01602080910402602001604051908101604052809291908181526020018280546114ce90614f5a565b801561151b5780601f106114f05761010080835404028352916020019161151b565b820191906000526020600020905b8154815290600101906020018083116114fe57829003601f168201915b50505050509080600201805461153090614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461155c90614f5a565b80156115a95780601f1061157e576101008083540402835291602001916115a9565b820191906000526020600020905b81548152906001019060200180831161158c57829003601f168201915b5050505050908060030180546115be90614f5a565b80601f01602080910402602001604051908101604052809291908181526020018280546115ea90614f5a565b80156116375780601f1061160c57610100808354040283529160200191611637565b820191906000526020600020905b81548152906001019060200180831161161a57829003601f168201915b50505050509080600401805461164c90614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461167890614f5a565b80156116c55780601f1061169a576101008083540402835291602001916116c5565b820191906000526020600020905b8154815290600101906020018083116116a857829003601f168201915b5050505050908060050154908060060180546116e090614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461170c90614f5a565b80156117595780601f1061172e57610100808354040283529160200191611759565b820191906000526020600020905b81548152906001019060200180831161173c57829003601f168201915b5050505050905087565b6009546001600160a01b0316331461178d5760405162461bcd60e51b81526004016103d890614fa4565b6002600854036117af5760405162461bcd60e51b81526004016103d890615005565b60026008554760006127106117c560fa8261503c565b6117cf9084614f0e565b6117d99190614411565b905060008060006117f26009546001600160a01b031690565b905073ea208da933c43857683c04bc76e3fd331d7bfdf761181c81611817878961503c565b613886565b60005b60038110156118da576027816003811061183b5761183b614f8e565b60040201600301548461184e9190614ef6565b935060006027826003811061186557611865614f8e565b60040201600201546001600160a01b031690506127106027836003811061188e5761188e614f8e565b60040201600301546127106118a3919061503c565b6118ad9089614f0e565b6118b79190614411565b95506118c781611817888a61503c565b50806118d281614f41565b91505061181f565b504795506118e88287613886565b5050600160085550505050565b6009546001600160a01b0316331461191f5760405162461bcd60e51b81526004016103d890614fa4565b6037805460ff19811660ff90911615179055565b61124c83838360405180602001604052806000815250612c09565b6009546001600160a01b031633146119785760405162461bcd60e51b81526004016103d890614fa4565b6024805460ff19811660ff90911615179055565b6009546001600160a01b031633146119b65760405162461bcd60e51b81526004016103d890614fa4565b603a55565b6009546001600160a01b031633146119e55760405162461bcd60e51b81526004016103d890614fa4565b80516119f89060369060208401906142bd565b5050565b6000610d05611a0a60005490565b108015611a3a575060375460ff1680611a255750603b5460ff165b80611a3a57506009546001600160a01b031633145b905090565b6009546001600160a01b03163314611a695760405162461bcd60e51b81526004016103d890614fa4565b60335460ff1615611a8c5760405162461bcd60e51b81526004016103d890614fd9565b80516119f89060259060208401906142bd565b6060611aaa82613760565b611ae65760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103d8565b6000611b14611af760066004614f0e565b604080518281016060018252910181526000602090910190815290565b60408051600680825260e08201909252919250600091906020820160c080368337505060408051600680825260e0820190925292935060009291506020820160c0803683370190505090506000610d05602654611b719190614f2d565b905060005b6006811015611db7576000848281518110611b9357611b93614f8e565b60200260200101519050838281518110611baf57611baf614f8e565b602002602001015115156000151503611ca3576000611bcd8961399f565b62ffffff169050600081600003611c2657610d05600e85600f8110611bf457611bf4614f8e565b015486611c01878e614ef6565b611c0b9190614ef6565b611c159190614f0e565b611c1f9190614f2d565b9050611c75565b610d05828b611c358782614ef6565b60408051602081019490945283019190915260608201526080016040516020818303038152906040528051906020012060001c611c729190614f2d565b90505b611c7f81856139b4565b925082878581518110611c9457611c94614f8e565b60200260200101818152505050505b6000828152600d6020908152604080832084845290915290205415611da4576000828152600d60209081526040808320848452909152902080546001908110611cee57611cee614f8e565b6000918252602080832090910154848352600d82526040808420858552909252908220805491928892611d2357611d23614f8e565b906000526020600020015481518110611d3e57611d3e614f8e565b6020908102919091018101919091526000838152600d825260408082208483529092529081208054600192879291611d7857611d78614f8e565b906000526020600020015481518110611d9357611d93614f8e565b911515602092830291909101909101525b5080611daf81614f41565b915050611b76565b5060005b8351811015611edf57600a848281518110611dd857611dd8614f8e565b60200260200101511015611e0f57604080518082019091526002815261030360f41b6020820152611e0a908690613a50565b611e54565b6064848281518110611e2357611e23614f8e565b60200260200101511015611e54576040805180820190915260018152600360fc1b6020820152611e54908690613a50565b6103e7848281518110611e6957611e69614f8e565b60200260200101511115611ea15760408051808201909152600381526239393960e81b6020820152611e9c908690613a50565b611ecd565b611ecd611ec6858381518110611eb957611eb9614f8e565b6020026020010151613ad5565b8690613a50565b80611ed781614f41565b915050611dbb565b509295945050505050565b6000610d45826137fc565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b91830191909152606091611f37908290613a50565b6000805b6006811015612085576000611f78611f7387611f58856003614f0e565b611f63866003614f0e565b611f6e906003614ef6565b613b24565b613bf0565b6000838152600b6020908152604080832060ff94851680855292528220600201549093509091161515900361203d578215611fd0576040805180820190915260018152600b60fa1b6020820152611fd0908590613a50565b61202e60238381548110611fe657611fe6614f8e565b60009182526020808320868452600b82526040808520878652835293849020935161201794939091019291016150ec565b60408051601f198184030181529190528590613a50565b82151560000361203d57600192505b6120496001600661503c565b8203612072576040805180820190915260018152605d60f81b6020820152612072908590613a50565b508061207d81614f41565b915050611f3b565b50909392505050565b60335460ff16156120b15760405162461bcd60e51b81526004016103d890614fd9565b6009546001600160a01b031633146120db5760405162461bcd60e51b81526004016103d890614fa4565b6033805460ff19166001179055565b603680546120f790614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461212390614f5a565b80156121705780601f1061214557610100808354040283529160200191612170565b820191906000526020600020905b81548152906001019060200180831161215357829003601f168201915b505050505081565b6000610f5061218684611a9f565b61218f84611a9f565b613cae565b6009546001600160a01b031633146121be5760405162461bcd60e51b81526004016103d890614fa4565b603955565b60006001600160a01b0382166121ec576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b0316331461223b5760405162461bcd60e51b81526004016103d890614fa4565b6122456000613d07565b565b6009546001600160a01b031633146122715760405162461bcd60e51b81526004016103d890614fa4565b603455565b6009546001600160a01b031633146122a05760405162461bcd60e51b81526004016103d890614fa4565b603855565b602781600381106122b557600080fd5b60040201805490915081906122c990614f5a565b80601f01602080910402602001604051908101604052809291908181526020018280546122f590614f5a565b80156123425780601f1061231757610100808354040283529160200191612342565b820191906000526020600020905b81548152906001019060200180831161232557829003601f168201915b50505050509080600101805461235790614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461238390614f5a565b80156123d05780601f106123a5576101008083540402835291602001916123d0565b820191906000526020600020905b8154815290600101906020018083116123b357829003601f168201915b50505050600283015460039093015491926001600160a01b031691905084565b6040805162020060810190915262020040815260006020909101818152606091906124346040518060c00160405280608181526020016158e2608191398290613a50565b61246060256040516020016124499190615142565b60408051601f198184030181529190528290613a50565b60005b61246f6001600661503c565b81101561252b57612493611f7386612488846003614f0e565b611f63856003614f0e565b60ff169250612519600b600083815260200190815260200160002060008581526020019081526020016000206001016124f16124ec600a60008681526020019081526020016000208781548110610f3657610f36614f8e565b613d59565b604051602001612502929190615174565b60408051601f198184030181529190528390613a50565b8061252381614f41565b915050612463565b50612556611f73856003612540600682614f0e565b61254a919061503c565b611f6e60066003614f0e565b60ff1691506125d8600b600061256e6001600661503c565b815260200190815260200160002060008481526020019081526020016000206001016125c76124ec600a6000600160066125a8919061503c565b81526020019081526020016000208681548110610f3657610f36614f8e565b6040516020016124499291906151ce565b6125e181613d59565b6040516020016125f19190615332565b60405160208183030381529060405292505050919050565b6009546001600160a01b031633146126335760405162461bcd60e51b81526004016103d890614fa4565b603b805460ff19811660ff90911615179055565b606060038054610da890614f5a565b6009546001600160a01b031633146126805760405162461bcd60e51b81526004016103d890614fa4565b60335460ff16156126a35760405162461bcd60e51b81526004016103d890614fd9565b8051601d83600681106126b8576126b8614f8e565b01541461271f5760405162461bcd60e51b815260206004820152602f60248201527f5472616974732073697a6520646f6573206e6f74206d6174636820746965727360448201526e040ccdee440e8d0d2e640d2dcc8caf608b1b60648201526084016103d8565b600081516001600160401b0381111561273a5761273a614544565b604051908082528060200260200182016040528015612763578160200160208202803683370190505b50905060005b82518110156129455782818151811061278457612784614f8e565b6020026020010151608001511561280357818382815181106127a8576127a8614f8e565b602002602001015160a00151815181106127c4576127c4614f8e565b60200260200101518282815181106127de576127de614f8e565b60200260200101906001600160a01b031690816001600160a01b03168152505061285c565b61282983828151811061281857612818614f8e565b602002602001015160400151613797565b82828151811061283b5761283b614f8e565b60200260200101906001600160a01b031690816001600160a01b0316815250505b604051806060016040528084838151811061287957612879614f8e565b602002602001015160000151815260200184838151811061289c5761289c614f8e565b60200260200101516020015181526020018483815181106128bf576128bf614f8e565b6020908102919091018101516060015115159091526000868152600b82526040808220858352835290208251805191926128fe928492909101906142bd565b50602082810151805161291792600185019201906142bd565b50604091909101516002909101805460ff19169115159190911790558061293d81614f41565b915050612769565b506000838152600a60209081526040909120825161105192840190614341565b336001600160a01b0383160361298e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000612a72838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506038546040516bffffffffffffffffffffffff1960608b901b166020820152909250603401905060405160208183030381529060405280519060200120613eab565b949350505050565b6009546001600160a01b03163314612aa45760405162461bcd60e51b81526004016103d890614fa4565b60335460ff1615612ac75760405162461bcd60e51b81526004016103d890614fd9565b60005b81518110156119f8576040518060400160405280838381518110612af057612af0614f8e565b602002602001015160200151600081518110612b0e57612b0e614f8e565b60200260200101518152602001838381518110612b2d57612b2d614f8e565b602002602001015160200151600181518110612b4b57612b4b614f8e565b6020026020010151815250600d6000848481518110612b6c57612b6c614f8e565b602002602001015160000151600081518110612b8a57612b8a614f8e565b602002602001015181526020019081526020016000206000848481518110612bb457612bb4614f8e565b602002602001015160000151600181518110612bd257612bd2614f8e565b60200260200101518152602001908152602001600020906002612bf6929190614396565b5080612c0181614f41565b915050612aca565b612c14848484611251565b6001600160a01b0383163b1561105157612c3084848484613ec1565b611051576040516368d2bf6b60e11b815260040160405180910390fd5b6000600260085403612c715760405162461bcd60e51b81526004016103d890615005565b6002600855612c7e6119fc565b612c9a5760405162461bcd60e51b81526004016103d890614ec7565b60375460ff16158015612cb857506009546001600160a01b03163314155b15612ddd57612cc83384846129fa565b612d085760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b60448201526064016103d8565b603a5433600090815260056020526040908190205486911c6001600160401b0316612d339190614ef6565b1115612d815760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103d8565b3460395485612d909190614f0e565b14612ddd5760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103d8565b612de78433610afe565b6001600855949350505050565b6000600260085403612e185760405162461bcd60e51b81526004016103d890615005565b6002600855612e256119fc565b612e415760405162461bcd60e51b81526004016103d890614ec7565b60375460ff1680612e5c57506009546001600160a01b031633145b612ea85760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064016103d8565b612eb28383610afe565b60016008559392505050565b6060610d4561085183611a9f565b6060612ed782613760565b612f135760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103d8565b60008052600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e354612f8a5760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e20616464656400000000000060448201526064016103d8565b6000612f9583611a9f565b604080516202006081018252620200408152600060209182019081528251808401909352601d83527f7b226e616d65223a22546f6e616c204d757365204f6e436861696e202300000091830191909152919250612ff3908290613a50565b613012612fff85613ad5565b6040516124499190603d90602001615377565b60006036805461302190614f5a565b905011801561303e57506000848152600c602052604090205460ff165b1561306957613064603661305186613ad5565b84604051602001612449939291906153c5565b61312c565b60408051602081019091526000815260245460ff161561310a57600061308e846123f0565b90506130b8816040516020016130a49190615440565b604051602081830303815290604052613d59565b6040516020016130c89190615332565b6040516020818303038152906040529150613104816040516020016130ed919061552b565b60408051601f198184030181529190528490613a50565b50613116565b613113836123f0565b90505b61312a816040516020016125029190615572565b505b61314861313883611ef5565b60405160200161244991906155b5565b61315181613d59565b6040516020016125f191906155f6565b61316a82611eea565b6001600160a01b0316336001600160a01b0316146131e15760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c792074686520746f6b656e206f776e65722063616e207365742074686560448201526d081c995b99195c881b595d1a1bd960921b60648201526084016103d8565b6000918252600c6020526040909120805460ff1916911515919091179055565b6000828152600d6020908152604080832084845282529182902080548351818402810184019094528084526060939283018282801561325f57602002820191906000526020600020905b81548152602001906001019080831161324b575b5050505050905092915050565b6041546060906132a690603c90603d90603e90603f9060409061328e90613ad5565b6040516130a49695949392919060429060200161563b565b6040516020016132b691906155f6565b604051602081830303815290604052905090565b604080516060808201835280825260208201526000918101919091526000838152600b602090815260408083208584529091529081902081516060810190925280548290829061331990614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461334590614f5a565b80156133925780601f1061336757610100808354040283529160200191613392565b820191906000526020600020905b81548152906001019060200180831161337557829003601f168201915b505050505081526020016001820180546133ab90614f5a565b80601f01602080910402602001604051908101604052809291908181526020018280546133d790614f5a565b80156134245780601f106133f957610100808354040283529160200191613424565b820191906000526020600020905b81548152906001019060200180831161340757829003601f168201915b50505091835250506002919091015460ff1615156020909101529392505050565b6009546001600160a01b0316331461346f5760405162461bcd60e51b81526004016103d890614fa4565b6001600160a01b0381166134d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d8565b6134dd81613d07565b50565b60335460ff16156135035760405162461bcd60e51b81526004016103d890614fd9565b61350d8282612178565b6135595760405162461bcd60e51b815260206004820152601d60248201527f416c6c20746f6b656e73206d757374206265206475706c69636174657300000060448201526064016103d8565b6000818311613568578161356a565b825b905061357e6009546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461361a5761359f81611eea565b6001600160a01b0316336001600160a01b03161461361a5760405162461bcd60e51b815260206004820152603260248201527f4f6e6c792074686520746f6b656e206f776e6572206f7220636f6e7472616374604482015271081bdddb995c8818d85b881c994b5c9bdb1b60721b60648201526084016103d8565b61362381613fac565b613636613631826001614ef6565b613760565b1561364e5761364e613649826001614ef6565b613fac565b61124c8161365a613fdc565b61404d565b6000546001600160a01b03831661368857604051622e076360e81b815260040160405180910390fd5b816000036136a95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600090815260056020526040812080546801000000000000000185020190556137009084906136e3908281613863565b6001851460e11b174260a01b176001600160a01b03919091161790565b600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106137145760005550505050565b6000805482108015610d45575050600090815260046020526040902054600160e01b161590565b6060610d458260016000196140a2565b6000806137c2836040516020016137ae9190615764565b604051602081830303815290604052614157565b90508051602082016000f091506001600160a01b0382166137f65760405163046a55db60e11b815260040160405180910390fd5b50919050565b60008160005481101561384a5760008181526004602052604081205490600160e01b82169003613848575b80600003610f50575060001901600081815260046020526040902054613827565b505b604051636f96cda160e11b815260040160405180910390fd5b600060e882811c90613876868684614183565b62ffffff16901b95945050505050565b804710156138d65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016103d8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613923576040519150601f19603f3d011682016040523d82523d6000602084013e613928565b606091505b505090508061124c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016103d8565b60006139aa826141a4565b6060015192915050565b600080805b601d84600681106139cc576139cc614f8e565b01548110156103fa576000601d85600681106139ea576139ea614f8e565b0182815481106139fc576139fc614f8e565b90600052602060002001549050828610158015613a215750613a1e8184614ef6565b86105b15613a3057509150610d459050565b613a3a8184614ef6565b9250508080613a4890614f41565b9150506139b9565b601f1982015182518251603f19909201918290613a6d9083614ef6565b1115613acb5760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b60648201526084016103d8565b611051848461421b565b604080516080810191829052607f0190826030600a8206018353600a90045b8015613b1257600183039250600a81066030018353600a9004613af4565b50819003601f19909101908152919050565b6060836000613b33858561503c565b6001600160401b03811115613b4a57613b4a614544565b6040519080825280601f01601f191660200182016040528015613b74576020820181803683370190505b509050845b84811015613be657828181518110613b9357613b93614f8e565b01602001516001600160f81b03191682613bad888461503c565b81518110613bbd57613bbd614f8e565b60200101906001600160f81b031916908160001a90535080613bde81614f41565b915050613b79565b5095945050505050565b60008181805b82518160ff161015613ca6576030838260ff1681518110613c1957613c19614f8e565b016020015160f81c10801590613c4c57506039838260ff1681518110613c4157613c41614f8e565b016020015160f81c11155b15613c9457613c5c600a8361578a565b91506030838260ff1681518110613c7557613c75614f8e565b0160200151613c87919060f81c6157b3565b613c9190836157d6565b91505b80613c9e816157fb565b915050613bf6565b509392505050565b600081604051602001613cc1919061581a565b6040516020818303038152906040528051906020012083604051602001613ce8919061581a565b6040516020818303038152906040528051906020012014905092915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60608151600003613d7857505060408051602081019091526000815290565b60006040518060600160405280604081526020016159636040913990506000600384516002613da79190614ef6565b613db19190614411565b613dbc906004614f0e565b6001600160401b03811115613dd357613dd3614544565b6040519080825280601f01601f191660200182016040528015613dfd576020820181803683370190505b509050600182016020820185865187015b80821015613e69576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250613e0e565b5050600386510660018114613e855760028114613e9857613ea0565b603d6001830353603d6002830353613ea0565b603d60018303535b509195945050505050565b600082613eb88584614251565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290613ef6903390899088908890600401615836565b6020604051808303816000875af1925050508015613f31575060408051601f3d908101601f19168201909252613f2e91810190615873565b60015b613f8f573d808015613f5f576040519150601f19603f3d011682016040523d82523d6000602084013e613f64565b606091505b508051600003613f87576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008181526004602052604081205490036134dd57613fca816137fc565b60008281526004602052604090205550565b6000803a434244613fee60018461503c565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6bffffffffffffffffffffffff191660c082015260d40160408051601f19818403018152919052805160209091012092915050565b6000828152600460205260408120549081900361407c5760405162d5815360e01b815260040160405180910390fd5b6000928352600460205260409092206001600160e81b039290921660e89190911b179055565b6060833b60008190036140c5575050604080516020810190915260008152610f50565b808411156140e3575050604080516020810190915260008152610f50565b838310156141155760405163162544fd60e11b81526004810182905260248101859052604481018490526064016103d8565b838303848203600082821061412a578261412c565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b606081518260405160200161416d929190615890565b6040516020818303038152906040529050919050565b60006001600160a01b0384161561419a5781612a72565b5060009392505050565b604080516080810182526000808252602082018190529181018290526060810191909152610d456141d4836137fc565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b8051602082019150808201602084510184015b8184101561424657835181526020938401930161422e565b505082510190915250565b600081815b8451811015613ca657600085828151811061427357614273614f8e565b6020026020010151905080831161429957600083815260208290526040902092506142aa565b600081815260208490526040902092505b50806142b581614f41565b915050614256565b8280546142c990614f5a565b90600052602060002090601f0160209004810192826142eb5760008555614331565b82601f1061430457805160ff1916838001178555614331565b82800160010185558215614331579182015b82811115614331578251825591602001919060010190614316565b5061433d9291506143d0565b5090565b828054828255906000526020600020908101928215614331579160200282015b8281111561433157825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190614361565b8280548282559060005260206000209081019282156143315791602002820182811115614331578251825591602001919060010190614316565b5b8082111561433d57600081556001016143d1565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082614420576144206143e5565b500490565b6001600160e01b0319811681146134dd57600080fd5b60006020828403121561444d57600080fd5b8135610f5081614425565b60005b8381101561447357818101518382015260200161445b565b838111156110515750506000910152565b6000815180845261449c816020860160208601614458565b601f01601f19169290920160200192915050565b602081526000610f506020830184614484565b6000602082840312156144d557600080fd5b5035919050565b80356001600160a01b03811681146144f357600080fd5b919050565b6000806040838503121561450b57600080fd5b614514836144dc565b946020939093013593505050565b6000806040838503121561453557600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561457c5761457c614544565b60405290565b60405160c081016001600160401b038111828210171561457c5761457c614544565b604080519081016001600160401b038111828210171561457c5761457c614544565b604051601f8201601f191681016001600160401b03811182821017156145ee576145ee614544565b604052919050565b600082601f83011261460757600080fd5b81356001600160401b0381111561462057614620614544565b614633601f8201601f19166020016145c6565b81815284602083860101111561464857600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561467757600080fd5b81356001600160401b038082111561468e57600080fd5b9083019060e082860312156146a257600080fd5b6146aa61455a565b8235828111156146b957600080fd5b6146c5878286016145f6565b8252506020830135828111156146da57600080fd5b6146e6878286016145f6565b6020830152506040830135828111156146fe57600080fd5b61470a878286016145f6565b60408301525060608301358281111561472257600080fd5b61472e878286016145f6565b60608301525060808301358281111561474657600080fd5b614752878286016145f6565b60808301525060a083013560a082015260c08301358281111561477457600080fd5b614780878286016145f6565b60c08301525095945050505050565b803580151581146144f357600080fd5b600060c082840312156147b157600080fd5b6147b9614582565b905081356001600160401b03808211156147d257600080fd5b6147de858386016145f6565b835260208401359150808211156147f457600080fd5b614800858386016145f6565b6020840152604084013591508082111561481957600080fd5b50614826848285016145f6565b6040830152506148386060830161478f565b60608201526148496080830161478f565b608082015260a082013560a082015292915050565b60008060006060848603121561487357600080fd5b833592506020840135915060408401356001600160401b0381111561489757600080fd5b6148a38682870161479f565b9150509250925092565b6000806000606084860312156148c257600080fd5b6148cb846144dc565b92506148d9602085016144dc565b9150604084013590509250925092565b60e0815260006148fc60e083018a614484565b828103602084015261490e818a614484565b905082810360408401526149228189614484565b905082810360608401526149368188614484565b9050828103608084015261494a8187614484565b90508460a084015282810360c08401526149648185614484565b9a9950505050505050505050565b60006020828403121561498457600080fd5b81356001600160401b0381111561499a57600080fd5b612a72848285016145f6565b6000602082840312156149b857600080fd5b610f50826144dc565b6080815260006149d46080830187614484565b82810360208401526149e68187614484565b6001600160a01b0395909516604084015250506060015292915050565b60006001600160401b03821115614a1c57614a1c614544565b5060051b60200190565b60008060408385031215614a3957600080fd5b823591506020808401356001600160401b0380821115614a5857600080fd5b818601915086601f830112614a6c57600080fd5b8135614a7f614a7a82614a03565b6145c6565b81815260059190911b83018401908481019089831115614a9e57600080fd5b8585015b83811015614ad657803585811115614aba5760008081fd5b614ac88c89838a010161479f565b845250918601918601614aa2565b508096505050505050509250929050565b60008060408385031215614afa57600080fd5b614b03836144dc565b9150614b116020840161478f565b90509250929050565b60008083601f840112614b2c57600080fd5b5081356001600160401b03811115614b4357600080fd5b6020830191508360208260051b8501011115614b5e57600080fd5b9250929050565b600080600060408486031215614b7a57600080fd5b614b83846144dc565b925060208401356001600160401b03811115614b9e57600080fd5b614baa86828701614b1a565b9497909650939450505050565b600082601f830112614bc857600080fd5b81356020614bd8614a7a83614a03565b82815260059290921b84018101918181019086841115614bf757600080fd5b8286015b84811015614c125780358352918301918301614bfb565b509695505050505050565b60006020808385031215614c3057600080fd5b82356001600160401b0380821115614c4757600080fd5b818501915085601f830112614c5b57600080fd5b8135614c69614a7a82614a03565b81815260059190911b83018401908481019088831115614c8857600080fd5b8585015b83811015614d1b57803585811115614ca45760008081fd5b86016040818c03601f1901811315614cbc5760008081fd5b614cc46145a4565b8983013588811115614cd65760008081fd5b614ce48e8c83870101614bb7565b825250908201359087821115614cfa5760008081fd5b614d088d8b84860101614bb7565b818b015285525050918601918601614c8c565b5098975050505050505050565b60008060008060808587031215614d3e57600080fd5b614d47856144dc565b9350614d55602086016144dc565b92506040850135915060608501356001600160401b03811115614d7757600080fd5b614d83878288016145f6565b91505092959194509250565b600080600060408486031215614da457600080fd5b8335925060208401356001600160401b03811115614b9e57600080fd5b60008060408385031215614dd457600080fd5b82359150614b11602084016144dc565b60008060408385031215614df757600080fd5b82359150614b116020840161478f565b6020808252825182820181905260009190848201906040850190845b81811015614e3f57835183529284019291840191600101614e23565b50909695505050505050565b60008060408385031215614e5e57600080fd5b614e67836144dc565b9150614b11602084016144dc565b602081526000825160606020840152614e916080840182614484565b90506020840151601f19848303016040850152614eae8282614484565b9150506040840151151560608401528091505092915050565b6020808252601590820152744d696e74696e67206973206e6f742061637469766560581b604082015260600190565b60008219821115614f0957614f096143fb565b500190565b6000816000190483118215151615614f2857614f286143fb565b500290565b600082614f3c57614f3c6143e5565b500690565b600060018201614f5357614f536143fb565b5060010190565b600181811c90821680614f6e57607f821691505b6020821081036137f657634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008282101561504e5761504e6143fb565b500390565b8054600090600181811c908083168061506d57607f831692505b6020808410820361508e57634e487b7160e01b600052602260045260246000fd5b8180156150a257600181146150b3576150e0565b60ff198616895284890196506150e0565b60008881526020902060005b868110156150d85781548b8201529085019083016150bf565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b81526000615110600f830185615053565b6a1116113b30b63ab2911d1160a91b815261512e600b820185615053565b61227d60f01b815260020195945050505050565b600061514e8284615053565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b8152600061518e6005830185615053565b670ed8985cd94d8d0b60c21b815283516151af816008840160208801614458565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b815260006151e86005830185615053565b670ed8985cd94d8d0b60c21b81528351615209816008840160208801614458565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000081526000825161536a81601a850160208701614458565b91909101601a0192915050565b60008351615389818460208801614458565b701116113232b9b1b934b83a34b7b7111d1160791b9083019081526153b16011820185615053565b61088b60f21b815260020195945050505050565b681134b6b0b3b2911d1160b91b815260006153e36009830186615053565b84516153f3818360208901614458565b643f646e613d60d81b91019081528351615414816005840160208801614458565b71099b995d1ddbdc9acf5b585a5b9b995d088b60721b6005929091019182015260170195945050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b608082015260008251615504816091850160208701614458565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b711139bb33afb4b6b0b3b2afb230ba30911d1160711b81528151600090615559816012850160208701614458565b61088b60f21b6012939091019283015250601401919050565b6d1134b6b0b3b2afb230ba30911d1160911b8152815160009061559c81600e850160208701614458565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b815281516000906155de81600d850160208701614458565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161562e81601d850160208701614458565b91909101601d0192915050565b683d913730b6b2911d1160b91b81526000615659600983018a615053565b701116113232b9b1b934b83a34b7b7111d1160791b815261567d601182018a615053565b6a11161134b6b0b3b2911d1160a91b8152905061569d600b820189615053565b6b1116113130b73732b9111d1160a11b815290506156be600c820188615053565b7211161132bc3a32b93730b62fb634b735911d1160691b815290506156e66013820187615053565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a000000008152845161571e81601c840160208901614458565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c929091019182015261574b602e820185615053565b61227d60f01b81526002019a9950505050505050505050565b600081526000825161577d816001850160208701614458565b9190910160010192915050565b600060ff821660ff84168160ff04811182151516156157ab576157ab6143fb565b029392505050565b600060ff821660ff8416808210156157cd576157cd6143fb565b90039392505050565b600060ff821660ff84168060ff038211156157f3576157f36143fb565b019392505050565b600060ff821660ff8103615811576158116143fb565b60010192915050565b6000825161582c818460208701614458565b9190910192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061586990830184614484565b9695505050505050565b60006020828403121561588557600080fd5b8151610f5081614425565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b600582015281516000906158d381600e850160208701614458565b91909101600e01939250505056fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723a4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212201eae7cbf9708679a602af99f3db729ea6fd50ec57d21fda8ff018930d05377b364736f6c634300080e003368747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f70726f66696c652f38366461633530662d313761372d343162642d393136662d33613664303730656131346268747470733a2f2f7374617469632e7467627769646765742e636f6d2f4d4d41442e6a70674d7573696369616e73204d616b696e67204120446966666572656e6365202d204d4d41445055424c4943204d494e54494e472033302e31302e3232205b3438687220414c2066726f6d2032382e31302e32322d2031206672656520636c61696d202f20302e30303765207075626c69632077697468203725206f66206d696e7420676f696e6720746f204d4d414420636861726974795de28094e28094e28094546f6e616c204d757365204f6e436861696e20284343302920697320746865206669727374206576657220736574206f6620332c333333206d75736963616c20696e737472756d656e747320746f206c69766520636f6d706c6574656c79206f6e2d636861696e206f6e20457468657265756d2e2057652061726520646f6e6174696e6720372520726576656e7565206469726563746c792066726f6d20746865206d696e7420746f204d4d4144202d204d7573696369616e73204d616b696e67204120446966666572656e6365205b207777772e6d6d61642e6f72672e6175205de28094e28094e2809441732074686520666f6c6c6f7720757020746f20546f6e616c204d757365204f4720636f6c6c656374696f6e205b207777772e746f6e616c6d7573652e636f6d205d2c20776869636820697320746865206669727374206576657220323730207069656365206d75736963616c20696e737472756d656e742050465020736574206f6e20457468657269756d202d20616c6c20332c333333204e4654277320696e2074686520546f6e616c4d757365204f6e436861696e20636f6c6c656374696f6e2077696c6c2073657276652061732074686520666972737420616363657373207061737320746f206f757220617564696f2f76697375616c206469676974616c206172742072656c65617365732c20706879736963616c732026206761746564206d6574617665727365206576656e747320696e206f7572206e617469766520657870657269656e7469616c206d65746147616c6c657279205b207777772e746f6e616c6d7573652e636f6d2f6d6574617665727365205de28094e28094e28094466f756e64657220e280a220406f6e696c6b20e28094e28094e28094204d65746176657273652041726368697465637420e280a2204053656e6a69656e5a202f2f68747470733a2f2f7777772e746f6e616c6d7573652e636f6d2f6f6e636861696e68747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f62616e6e65722f38366461633530662d313761372d343162642d393136662d336136643037306561313462307830354561424231363733386245333435363037384345383044466664363031453032336234356637
Deployed Bytecode
0x6080604052600436106103855760003560e01c80636df9fa88116101d1578063b456806611610102578063dbe9875f116100a0578063e985e9c51161006f578063e985e9c514610a48578063ea84b59b14610a91578063f2fde38b14610abe578063fd6b3cf514610ade57600080fd5b8063dbe9875f146109d0578063dc53fd92146109f0578063dc9867ce14610a06578063e8a3d48514610a3357600080fd5b8063bc63f02e116100dc578063bc63f02e14610967578063c11feac11461097a578063c87b56dd1461099a578063d5abeb01146109ba57600080fd5b8063b456806614610914578063b88d4fde14610934578063ba41b0c61461095457600080fd5b80638da5cb5b1161016f57806397d194d71161014957806397d194d71461089e578063a22cb465146108be578063a24e5153146108de578063b32c5680146108f457600080fd5b80638da5cb5b146108565780638fb4e8a91461087457806395d89b411461088957600080fd5b80637bddd65b116101ab5780637bddd65b146107c65780637cb64759146107e6578063876171dc1461080657806389ce30741461083657600080fd5b80636df9fa881461077157806370a0823114610791578063715018a6146107b157600080fd5b80634047638d116102b65780636190e1da1161025457806366e338701161022357806366e338701461070757806368bd580e146107275780636c0360eb1461073c5780636cced73a1461075157600080fd5b80636190e1da14610691578063621a1f74146106b15780636352211e146106d1578063639814e0146106f157600080fd5b80634ca1a0f2116102905780634ca1a0f214610622578063542d50411461064257806355f804b31461065c5780635b92ac0d1461067c57600080fd5b80634047638d146105d857806342842e0e146105ed5780634920154b1461060d57600080fd5b806318160ddd116103235780632d6b6224116102fd5780632d6b62241461056b57806336cd2edd146105855780633cca24201461059b5780633ccfd60b146105c357600080fd5b806318160ddd1461050e57806323b872dd1461053157806329fc6bae1461055157600080fd5b8063095ea7b31161035f578063095ea7b31461048e57806309dbabca146104ae5780630f3debbe146104ce578063180c2cc0146104ee57600080fd5b806301ffc9a7146103ff57806306fdde0314610434578063081812fc1461045657600080fd5b366103fa5760375460ff166103e15760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b6103f8603554346103f29190614411565b33610afe565b005b600080fd5b34801561040b57600080fd5b5061041f61041a36600461443b565b610d4b565b60405190151581526020015b60405180910390f35b34801561044057600080fd5b50610449610d99565b60405161042b91906144b0565b34801561046257600080fd5b506104766104713660046144c3565b610e2b565b6040516001600160a01b03909116815260200161042b565b34801561049a57600080fd5b506103f86104a93660046144f8565b610e6f565b3480156104ba57600080fd5b506104496104c9366004614522565b610f0f565b3480156104da57600080fd5b506103f86104e9366004614665565b610f57565b3480156104fa57600080fd5b506103f861050936600461485e565b611057565b34801561051a57600080fd5b50600154600054035b60405190815260200161042b565b34801561053d57600080fd5b506103f861054c3660046148ad565b611251565b34801561055d57600080fd5b50603b5461041f9060ff1681565b34801561057757600080fd5b5060375461041f9060ff1681565b34801561059157600080fd5b50610523603a5481565b3480156105a757600080fd5b506105b0611405565b60405161042b97969594939291906148e9565b3480156105cf57600080fd5b506103f8611763565b3480156105e457600080fd5b506103f86118f5565b3480156105f957600080fd5b506103f86106083660046148ad565b611933565b34801561061957600080fd5b506103f861194e565b34801561062e57600080fd5b506103f861063d3660046144c3565b61198c565b34801561064e57600080fd5b5060335461041f9060ff1681565b34801561066857600080fd5b506103f8610677366004614972565b6119bb565b34801561068857600080fd5b5061041f6119fc565b34801561069d57600080fd5b506103f86106ac366004614972565b611a3f565b3480156106bd57600080fd5b506104496106cc3660046144c3565b611a9f565b3480156106dd57600080fd5b506104766106ec3660046144c3565b611eea565b3480156106fd57600080fd5b5061052360345481565b34801561071357600080fd5b50610449610722366004614972565b611ef5565b34801561073357600080fd5b506103f861208e565b34801561074857600080fd5b506104496120ea565b34801561075d57600080fd5b5061041f61076c366004614522565b612178565b34801561077d57600080fd5b506103f861078c3660046144c3565b612194565b34801561079d57600080fd5b506105236107ac3660046149a6565b6121c3565b3480156107bd57600080fd5b506103f8612211565b3480156107d257600080fd5b506103f86107e13660046144c3565b612247565b3480156107f257600080fd5b506103f86108013660046144c3565b612276565b34801561081257600080fd5b506108266108213660046144c3565b6122a5565b60405161042b94939291906149c1565b34801561084257600080fd5b50610449610851366004614972565b6123f0565b34801561086257600080fd5b506009546001600160a01b0316610476565b34801561088057600080fd5b506103f8612609565b34801561089557600080fd5b50610449612647565b3480156108aa57600080fd5b506103f86108b9366004614a26565b612656565b3480156108ca57600080fd5b506103f86108d9366004614ae7565b612965565b3480156108ea57600080fd5b5061052360395481565b34801561090057600080fd5b5061041f61090f366004614b65565b6129fa565b34801561092057600080fd5b506103f861092f366004614c1d565b612a7a565b34801561094057600080fd5b506103f861094f366004614d28565b612c09565b610523610962366004614d8f565b612c4d565b610523610975366004614dc1565b612df4565b34801561098657600080fd5b506104496109953660046144c3565b612ebe565b3480156109a657600080fd5b506104496109b53660046144c3565b612ecc565b3480156109c657600080fd5b50610523610d0581565b3480156109dc57600080fd5b506103f86109eb366004614de4565b613161565b3480156109fc57600080fd5b5061052360355481565b348015610a1257600080fd5b50610a26610a21366004614522565b613201565b60405161042b9190614e07565b348015610a3f57600080fd5b5061044961326c565b348015610a5457600080fd5b5061041f610a63366004614e4b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a9d57600080fd5b50610ab1610aac366004614522565b6132ca565b60405161042b9190614e75565b348015610aca57600080fd5b506103f8610ad93660046149a6565b613445565b348015610aea57600080fd5b506103f8610af9366004614522565b6134e0565b6000610b086119fc565b610b245760405162461bcd60e51b81526004016103d890614ec7565b60005483610b6a5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b60448201526064016103d8565b610d05610b778583614ef6565b1115610bbb5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b60448201526064016103d8565b60375460ff1615610ce8576009546001600160a01b03163314610cad5760345433600090815260056020526040908190205486911c6001600160401b0316610c039190614ef6565b1115610c515760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103d8565b3460355485610c609190614f0e565b14610cad5760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103d8565b333214610ce85760405162461bcd60e51b8152602060048201526009602482015268454f4173206f6e6c7960b81b60448201526064016103d8565b6000610cf5601486614411565b90506000610d04601487614f2d565b905060005b82811015610d2e57610d1c86601461365f565b80610d2681614f41565b915050610d09565b508015610d3f57610d3f858261365f565b50909150505b92915050565b60006301ffc9a760e01b6001600160e01b031983161480610d7c57506380ac58cd60e01b6001600160e01b03198316145b80610d455750506001600160e01b031916635b5e139f60e01b1490565b606060028054610da890614f5a565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd490614f5a565b8015610e215780601f10610df657610100808354040283529160200191610e21565b820191906000526020600020905b815481529060010190602001808311610e0457829003601f168201915b5050505050905090565b6000610e3682613760565b610e53576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610e7a82611eea565b9050336001600160a01b03821614610eb357610e968133610a63565b610eb3576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600a602052604090208054606091610f509184908110610f3657610f36614f8e565b6000918252602090912001546001600160a01b0316613787565b9392505050565b6009546001600160a01b03163314610f815760405162461bcd60e51b81526004016103d890614fa4565b60335460ff1615610fa45760405162461bcd60e51b81526004016103d890614fd9565b805180518291603c91610fbe9183916020909101906142bd565b506020828101518051610fd792600185019201906142bd565b5060408201518051610ff39160028401916020909101906142bd565b506060820151805161100f9160038401916020909101906142bd565b506080820151805161102b9160048401916020909101906142bd565b5060a0820151600582015560c082015180516110519160068401916020909101906142bd565b50505050565b6009546001600160a01b031633146110815760405162461bcd60e51b81526004016103d890614fa4565b60335460ff16156110a45760405162461bcd60e51b81526004016103d890614fd9565b60408051606080820183528351825260208085015181840152908401511515828401526000868152600b825283812086825282529290922081518051929391926110f192849201906142bd565b50602082810151805161110a92600185019201906142bd565b50604091820151600291909101805460ff19169115159190911790556000848152600a60209081528282208054845181840281018401909552808552929392909183018282801561118457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611166575b505050505090508160800151156111ea57808260a00151815181106111ab576111ab614f8e565b60200260200101518184815181106111c5576111c5614f8e565b60200260200101906001600160a01b031690816001600160a01b03168152505061122a565b6111f78260400151613797565b81848151811061120957611209614f8e565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6000848152600a60209081526040909120825161124992840190614341565b50505b505050565b600061125c826137fc565b9050836001600160a01b0316816001600160a01b03161461128f5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176112dc576112bf8633610a63565b6112dc57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661130357604051633a954ecd60e21b815260040160405180910390fd5b801561130e57600082555b6001600160a01b038087166000908152600560205260408082208054600019019055918716815220805460010190556113678561134c888287613863565b600160e11b174260a01b176001600160a01b03919091161790565b600085815260046020526040812091909155600160e11b841690036113bc576001840160008181526004602052604081205490036113ba5760005481146113ba5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b603c8054819061141490614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461144090614f5a565b801561148d5780601f106114625761010080835404028352916020019161148d565b820191906000526020600020905b81548152906001019060200180831161147057829003601f168201915b5050505050908060010180546114a290614f5a565b80601f01602080910402602001604051908101604052809291908181526020018280546114ce90614f5a565b801561151b5780601f106114f05761010080835404028352916020019161151b565b820191906000526020600020905b8154815290600101906020018083116114fe57829003601f168201915b50505050509080600201805461153090614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461155c90614f5a565b80156115a95780601f1061157e576101008083540402835291602001916115a9565b820191906000526020600020905b81548152906001019060200180831161158c57829003601f168201915b5050505050908060030180546115be90614f5a565b80601f01602080910402602001604051908101604052809291908181526020018280546115ea90614f5a565b80156116375780601f1061160c57610100808354040283529160200191611637565b820191906000526020600020905b81548152906001019060200180831161161a57829003601f168201915b50505050509080600401805461164c90614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461167890614f5a565b80156116c55780601f1061169a576101008083540402835291602001916116c5565b820191906000526020600020905b8154815290600101906020018083116116a857829003601f168201915b5050505050908060050154908060060180546116e090614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461170c90614f5a565b80156117595780601f1061172e57610100808354040283529160200191611759565b820191906000526020600020905b81548152906001019060200180831161173c57829003601f168201915b5050505050905087565b6009546001600160a01b0316331461178d5760405162461bcd60e51b81526004016103d890614fa4565b6002600854036117af5760405162461bcd60e51b81526004016103d890615005565b60026008554760006127106117c560fa8261503c565b6117cf9084614f0e565b6117d99190614411565b905060008060006117f26009546001600160a01b031690565b905073ea208da933c43857683c04bc76e3fd331d7bfdf761181c81611817878961503c565b613886565b60005b60038110156118da576027816003811061183b5761183b614f8e565b60040201600301548461184e9190614ef6565b935060006027826003811061186557611865614f8e565b60040201600201546001600160a01b031690506127106027836003811061188e5761188e614f8e565b60040201600301546127106118a3919061503c565b6118ad9089614f0e565b6118b79190614411565b95506118c781611817888a61503c565b50806118d281614f41565b91505061181f565b504795506118e88287613886565b5050600160085550505050565b6009546001600160a01b0316331461191f5760405162461bcd60e51b81526004016103d890614fa4565b6037805460ff19811660ff90911615179055565b61124c83838360405180602001604052806000815250612c09565b6009546001600160a01b031633146119785760405162461bcd60e51b81526004016103d890614fa4565b6024805460ff19811660ff90911615179055565b6009546001600160a01b031633146119b65760405162461bcd60e51b81526004016103d890614fa4565b603a55565b6009546001600160a01b031633146119e55760405162461bcd60e51b81526004016103d890614fa4565b80516119f89060369060208401906142bd565b5050565b6000610d05611a0a60005490565b108015611a3a575060375460ff1680611a255750603b5460ff165b80611a3a57506009546001600160a01b031633145b905090565b6009546001600160a01b03163314611a695760405162461bcd60e51b81526004016103d890614fa4565b60335460ff1615611a8c5760405162461bcd60e51b81526004016103d890614fd9565b80516119f89060259060208401906142bd565b6060611aaa82613760565b611ae65760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103d8565b6000611b14611af760066004614f0e565b604080518281016060018252910181526000602090910190815290565b60408051600680825260e08201909252919250600091906020820160c080368337505060408051600680825260e0820190925292935060009291506020820160c0803683370190505090506000610d05602654611b719190614f2d565b905060005b6006811015611db7576000848281518110611b9357611b93614f8e565b60200260200101519050838281518110611baf57611baf614f8e565b602002602001015115156000151503611ca3576000611bcd8961399f565b62ffffff169050600081600003611c2657610d05600e85600f8110611bf457611bf4614f8e565b015486611c01878e614ef6565b611c0b9190614ef6565b611c159190614f0e565b611c1f9190614f2d565b9050611c75565b610d05828b611c358782614ef6565b60408051602081019490945283019190915260608201526080016040516020818303038152906040528051906020012060001c611c729190614f2d565b90505b611c7f81856139b4565b925082878581518110611c9457611c94614f8e565b60200260200101818152505050505b6000828152600d6020908152604080832084845290915290205415611da4576000828152600d60209081526040808320848452909152902080546001908110611cee57611cee614f8e565b6000918252602080832090910154848352600d82526040808420858552909252908220805491928892611d2357611d23614f8e565b906000526020600020015481518110611d3e57611d3e614f8e565b6020908102919091018101919091526000838152600d825260408082208483529092529081208054600192879291611d7857611d78614f8e565b906000526020600020015481518110611d9357611d93614f8e565b911515602092830291909101909101525b5080611daf81614f41565b915050611b76565b5060005b8351811015611edf57600a848281518110611dd857611dd8614f8e565b60200260200101511015611e0f57604080518082019091526002815261030360f41b6020820152611e0a908690613a50565b611e54565b6064848281518110611e2357611e23614f8e565b60200260200101511015611e54576040805180820190915260018152600360fc1b6020820152611e54908690613a50565b6103e7848281518110611e6957611e69614f8e565b60200260200101511115611ea15760408051808201909152600381526239393960e81b6020820152611e9c908690613a50565b611ecd565b611ecd611ec6858381518110611eb957611eb9614f8e565b6020026020010151613ad5565b8690613a50565b80611ed781614f41565b915050611dbb565b509295945050505050565b6000610d45826137fc565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b91830191909152606091611f37908290613a50565b6000805b6006811015612085576000611f78611f7387611f58856003614f0e565b611f63866003614f0e565b611f6e906003614ef6565b613b24565b613bf0565b6000838152600b6020908152604080832060ff94851680855292528220600201549093509091161515900361203d578215611fd0576040805180820190915260018152600b60fa1b6020820152611fd0908590613a50565b61202e60238381548110611fe657611fe6614f8e565b60009182526020808320868452600b82526040808520878652835293849020935161201794939091019291016150ec565b60408051601f198184030181529190528590613a50565b82151560000361203d57600192505b6120496001600661503c565b8203612072576040805180820190915260018152605d60f81b6020820152612072908590613a50565b508061207d81614f41565b915050611f3b565b50909392505050565b60335460ff16156120b15760405162461bcd60e51b81526004016103d890614fd9565b6009546001600160a01b031633146120db5760405162461bcd60e51b81526004016103d890614fa4565b6033805460ff19166001179055565b603680546120f790614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461212390614f5a565b80156121705780601f1061214557610100808354040283529160200191612170565b820191906000526020600020905b81548152906001019060200180831161215357829003601f168201915b505050505081565b6000610f5061218684611a9f565b61218f84611a9f565b613cae565b6009546001600160a01b031633146121be5760405162461bcd60e51b81526004016103d890614fa4565b603955565b60006001600160a01b0382166121ec576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b0316331461223b5760405162461bcd60e51b81526004016103d890614fa4565b6122456000613d07565b565b6009546001600160a01b031633146122715760405162461bcd60e51b81526004016103d890614fa4565b603455565b6009546001600160a01b031633146122a05760405162461bcd60e51b81526004016103d890614fa4565b603855565b602781600381106122b557600080fd5b60040201805490915081906122c990614f5a565b80601f01602080910402602001604051908101604052809291908181526020018280546122f590614f5a565b80156123425780601f1061231757610100808354040283529160200191612342565b820191906000526020600020905b81548152906001019060200180831161232557829003601f168201915b50505050509080600101805461235790614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461238390614f5a565b80156123d05780601f106123a5576101008083540402835291602001916123d0565b820191906000526020600020905b8154815290600101906020018083116123b357829003601f168201915b50505050600283015460039093015491926001600160a01b031691905084565b6040805162020060810190915262020040815260006020909101818152606091906124346040518060c00160405280608181526020016158e2608191398290613a50565b61246060256040516020016124499190615142565b60408051601f198184030181529190528290613a50565b60005b61246f6001600661503c565b81101561252b57612493611f7386612488846003614f0e565b611f63856003614f0e565b60ff169250612519600b600083815260200190815260200160002060008581526020019081526020016000206001016124f16124ec600a60008681526020019081526020016000208781548110610f3657610f36614f8e565b613d59565b604051602001612502929190615174565b60408051601f198184030181529190528390613a50565b8061252381614f41565b915050612463565b50612556611f73856003612540600682614f0e565b61254a919061503c565b611f6e60066003614f0e565b60ff1691506125d8600b600061256e6001600661503c565b815260200190815260200160002060008481526020019081526020016000206001016125c76124ec600a6000600160066125a8919061503c565b81526020019081526020016000208681548110610f3657610f36614f8e565b6040516020016124499291906151ce565b6125e181613d59565b6040516020016125f19190615332565b60405160208183030381529060405292505050919050565b6009546001600160a01b031633146126335760405162461bcd60e51b81526004016103d890614fa4565b603b805460ff19811660ff90911615179055565b606060038054610da890614f5a565b6009546001600160a01b031633146126805760405162461bcd60e51b81526004016103d890614fa4565b60335460ff16156126a35760405162461bcd60e51b81526004016103d890614fd9565b8051601d83600681106126b8576126b8614f8e565b01541461271f5760405162461bcd60e51b815260206004820152602f60248201527f5472616974732073697a6520646f6573206e6f74206d6174636820746965727360448201526e040ccdee440e8d0d2e640d2dcc8caf608b1b60648201526084016103d8565b600081516001600160401b0381111561273a5761273a614544565b604051908082528060200260200182016040528015612763578160200160208202803683370190505b50905060005b82518110156129455782818151811061278457612784614f8e565b6020026020010151608001511561280357818382815181106127a8576127a8614f8e565b602002602001015160a00151815181106127c4576127c4614f8e565b60200260200101518282815181106127de576127de614f8e565b60200260200101906001600160a01b031690816001600160a01b03168152505061285c565b61282983828151811061281857612818614f8e565b602002602001015160400151613797565b82828151811061283b5761283b614f8e565b60200260200101906001600160a01b031690816001600160a01b0316815250505b604051806060016040528084838151811061287957612879614f8e565b602002602001015160000151815260200184838151811061289c5761289c614f8e565b60200260200101516020015181526020018483815181106128bf576128bf614f8e565b6020908102919091018101516060015115159091526000868152600b82526040808220858352835290208251805191926128fe928492909101906142bd565b50602082810151805161291792600185019201906142bd565b50604091909101516002909101805460ff19169115159190911790558061293d81614f41565b915050612769565b506000838152600a60209081526040909120825161105192840190614341565b336001600160a01b0383160361298e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000612a72838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506038546040516bffffffffffffffffffffffff1960608b901b166020820152909250603401905060405160208183030381529060405280519060200120613eab565b949350505050565b6009546001600160a01b03163314612aa45760405162461bcd60e51b81526004016103d890614fa4565b60335460ff1615612ac75760405162461bcd60e51b81526004016103d890614fd9565b60005b81518110156119f8576040518060400160405280838381518110612af057612af0614f8e565b602002602001015160200151600081518110612b0e57612b0e614f8e565b60200260200101518152602001838381518110612b2d57612b2d614f8e565b602002602001015160200151600181518110612b4b57612b4b614f8e565b6020026020010151815250600d6000848481518110612b6c57612b6c614f8e565b602002602001015160000151600081518110612b8a57612b8a614f8e565b602002602001015181526020019081526020016000206000848481518110612bb457612bb4614f8e565b602002602001015160000151600181518110612bd257612bd2614f8e565b60200260200101518152602001908152602001600020906002612bf6929190614396565b5080612c0181614f41565b915050612aca565b612c14848484611251565b6001600160a01b0383163b1561105157612c3084848484613ec1565b611051576040516368d2bf6b60e11b815260040160405180910390fd5b6000600260085403612c715760405162461bcd60e51b81526004016103d890615005565b6002600855612c7e6119fc565b612c9a5760405162461bcd60e51b81526004016103d890614ec7565b60375460ff16158015612cb857506009546001600160a01b03163314155b15612ddd57612cc83384846129fa565b612d085760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b60448201526064016103d8565b603a5433600090815260056020526040908190205486911c6001600160401b0316612d339190614ef6565b1115612d815760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103d8565b3460395485612d909190614f0e565b14612ddd5760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103d8565b612de78433610afe565b6001600855949350505050565b6000600260085403612e185760405162461bcd60e51b81526004016103d890615005565b6002600855612e256119fc565b612e415760405162461bcd60e51b81526004016103d890614ec7565b60375460ff1680612e5c57506009546001600160a01b031633145b612ea85760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064016103d8565b612eb28383610afe565b60016008559392505050565b6060610d4561085183611a9f565b6060612ed782613760565b612f135760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103d8565b60008052600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e354612f8a5760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e20616464656400000000000060448201526064016103d8565b6000612f9583611a9f565b604080516202006081018252620200408152600060209182019081528251808401909352601d83527f7b226e616d65223a22546f6e616c204d757365204f6e436861696e202300000091830191909152919250612ff3908290613a50565b613012612fff85613ad5565b6040516124499190603d90602001615377565b60006036805461302190614f5a565b905011801561303e57506000848152600c602052604090205460ff165b1561306957613064603661305186613ad5565b84604051602001612449939291906153c5565b61312c565b60408051602081019091526000815260245460ff161561310a57600061308e846123f0565b90506130b8816040516020016130a49190615440565b604051602081830303815290604052613d59565b6040516020016130c89190615332565b6040516020818303038152906040529150613104816040516020016130ed919061552b565b60408051601f198184030181529190528490613a50565b50613116565b613113836123f0565b90505b61312a816040516020016125029190615572565b505b61314861313883611ef5565b60405160200161244991906155b5565b61315181613d59565b6040516020016125f191906155f6565b61316a82611eea565b6001600160a01b0316336001600160a01b0316146131e15760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c792074686520746f6b656e206f776e65722063616e207365742074686560448201526d081c995b99195c881b595d1a1bd960921b60648201526084016103d8565b6000918252600c6020526040909120805460ff1916911515919091179055565b6000828152600d6020908152604080832084845282529182902080548351818402810184019094528084526060939283018282801561325f57602002820191906000526020600020905b81548152602001906001019080831161324b575b5050505050905092915050565b6041546060906132a690603c90603d90603e90603f9060409061328e90613ad5565b6040516130a49695949392919060429060200161563b565b6040516020016132b691906155f6565b604051602081830303815290604052905090565b604080516060808201835280825260208201526000918101919091526000838152600b602090815260408083208584529091529081902081516060810190925280548290829061331990614f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461334590614f5a565b80156133925780601f1061336757610100808354040283529160200191613392565b820191906000526020600020905b81548152906001019060200180831161337557829003601f168201915b505050505081526020016001820180546133ab90614f5a565b80601f01602080910402602001604051908101604052809291908181526020018280546133d790614f5a565b80156134245780601f106133f957610100808354040283529160200191613424565b820191906000526020600020905b81548152906001019060200180831161340757829003601f168201915b50505091835250506002919091015460ff1615156020909101529392505050565b6009546001600160a01b0316331461346f5760405162461bcd60e51b81526004016103d890614fa4565b6001600160a01b0381166134d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d8565b6134dd81613d07565b50565b60335460ff16156135035760405162461bcd60e51b81526004016103d890614fd9565b61350d8282612178565b6135595760405162461bcd60e51b815260206004820152601d60248201527f416c6c20746f6b656e73206d757374206265206475706c69636174657300000060448201526064016103d8565b6000818311613568578161356a565b825b905061357e6009546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461361a5761359f81611eea565b6001600160a01b0316336001600160a01b03161461361a5760405162461bcd60e51b815260206004820152603260248201527f4f6e6c792074686520746f6b656e206f776e6572206f7220636f6e7472616374604482015271081bdddb995c8818d85b881c994b5c9bdb1b60721b60648201526084016103d8565b61362381613fac565b613636613631826001614ef6565b613760565b1561364e5761364e613649826001614ef6565b613fac565b61124c8161365a613fdc565b61404d565b6000546001600160a01b03831661368857604051622e076360e81b815260040160405180910390fd5b816000036136a95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600090815260056020526040812080546801000000000000000185020190556137009084906136e3908281613863565b6001851460e11b174260a01b176001600160a01b03919091161790565b600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106137145760005550505050565b6000805482108015610d45575050600090815260046020526040902054600160e01b161590565b6060610d458260016000196140a2565b6000806137c2836040516020016137ae9190615764565b604051602081830303815290604052614157565b90508051602082016000f091506001600160a01b0382166137f65760405163046a55db60e11b815260040160405180910390fd5b50919050565b60008160005481101561384a5760008181526004602052604081205490600160e01b82169003613848575b80600003610f50575060001901600081815260046020526040902054613827565b505b604051636f96cda160e11b815260040160405180910390fd5b600060e882811c90613876868684614183565b62ffffff16901b95945050505050565b804710156138d65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016103d8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613923576040519150601f19603f3d011682016040523d82523d6000602084013e613928565b606091505b505090508061124c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016103d8565b60006139aa826141a4565b6060015192915050565b600080805b601d84600681106139cc576139cc614f8e565b01548110156103fa576000601d85600681106139ea576139ea614f8e565b0182815481106139fc576139fc614f8e565b90600052602060002001549050828610158015613a215750613a1e8184614ef6565b86105b15613a3057509150610d459050565b613a3a8184614ef6565b9250508080613a4890614f41565b9150506139b9565b601f1982015182518251603f19909201918290613a6d9083614ef6565b1115613acb5760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b60648201526084016103d8565b611051848461421b565b604080516080810191829052607f0190826030600a8206018353600a90045b8015613b1257600183039250600a81066030018353600a9004613af4565b50819003601f19909101908152919050565b6060836000613b33858561503c565b6001600160401b03811115613b4a57613b4a614544565b6040519080825280601f01601f191660200182016040528015613b74576020820181803683370190505b509050845b84811015613be657828181518110613b9357613b93614f8e565b01602001516001600160f81b03191682613bad888461503c565b81518110613bbd57613bbd614f8e565b60200101906001600160f81b031916908160001a90535080613bde81614f41565b915050613b79565b5095945050505050565b60008181805b82518160ff161015613ca6576030838260ff1681518110613c1957613c19614f8e565b016020015160f81c10801590613c4c57506039838260ff1681518110613c4157613c41614f8e565b016020015160f81c11155b15613c9457613c5c600a8361578a565b91506030838260ff1681518110613c7557613c75614f8e565b0160200151613c87919060f81c6157b3565b613c9190836157d6565b91505b80613c9e816157fb565b915050613bf6565b509392505050565b600081604051602001613cc1919061581a565b6040516020818303038152906040528051906020012083604051602001613ce8919061581a565b6040516020818303038152906040528051906020012014905092915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60608151600003613d7857505060408051602081019091526000815290565b60006040518060600160405280604081526020016159636040913990506000600384516002613da79190614ef6565b613db19190614411565b613dbc906004614f0e565b6001600160401b03811115613dd357613dd3614544565b6040519080825280601f01601f191660200182016040528015613dfd576020820181803683370190505b509050600182016020820185865187015b80821015613e69576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250613e0e565b5050600386510660018114613e855760028114613e9857613ea0565b603d6001830353603d6002830353613ea0565b603d60018303535b509195945050505050565b600082613eb88584614251565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290613ef6903390899088908890600401615836565b6020604051808303816000875af1925050508015613f31575060408051601f3d908101601f19168201909252613f2e91810190615873565b60015b613f8f573d808015613f5f576040519150601f19603f3d011682016040523d82523d6000602084013e613f64565b606091505b508051600003613f87576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008181526004602052604081205490036134dd57613fca816137fc565b60008281526004602052604090205550565b6000803a434244613fee60018461503c565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6bffffffffffffffffffffffff191660c082015260d40160408051601f19818403018152919052805160209091012092915050565b6000828152600460205260408120549081900361407c5760405162d5815360e01b815260040160405180910390fd5b6000928352600460205260409092206001600160e81b039290921660e89190911b179055565b6060833b60008190036140c5575050604080516020810190915260008152610f50565b808411156140e3575050604080516020810190915260008152610f50565b838310156141155760405163162544fd60e11b81526004810182905260248101859052604481018490526064016103d8565b838303848203600082821061412a578261412c565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b606081518260405160200161416d929190615890565b6040516020818303038152906040529050919050565b60006001600160a01b0384161561419a5781612a72565b5060009392505050565b604080516080810182526000808252602082018190529181018290526060810191909152610d456141d4836137fc565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b8051602082019150808201602084510184015b8184101561424657835181526020938401930161422e565b505082510190915250565b600081815b8451811015613ca657600085828151811061427357614273614f8e565b6020026020010151905080831161429957600083815260208290526040902092506142aa565b600081815260208490526040902092505b50806142b581614f41565b915050614256565b8280546142c990614f5a565b90600052602060002090601f0160209004810192826142eb5760008555614331565b82601f1061430457805160ff1916838001178555614331565b82800160010185558215614331579182015b82811115614331578251825591602001919060010190614316565b5061433d9291506143d0565b5090565b828054828255906000526020600020908101928215614331579160200282015b8281111561433157825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190614361565b8280548282559060005260206000209081019282156143315791602002820182811115614331578251825591602001919060010190614316565b5b8082111561433d57600081556001016143d1565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082614420576144206143e5565b500490565b6001600160e01b0319811681146134dd57600080fd5b60006020828403121561444d57600080fd5b8135610f5081614425565b60005b8381101561447357818101518382015260200161445b565b838111156110515750506000910152565b6000815180845261449c816020860160208601614458565b601f01601f19169290920160200192915050565b602081526000610f506020830184614484565b6000602082840312156144d557600080fd5b5035919050565b80356001600160a01b03811681146144f357600080fd5b919050565b6000806040838503121561450b57600080fd5b614514836144dc565b946020939093013593505050565b6000806040838503121561453557600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561457c5761457c614544565b60405290565b60405160c081016001600160401b038111828210171561457c5761457c614544565b604080519081016001600160401b038111828210171561457c5761457c614544565b604051601f8201601f191681016001600160401b03811182821017156145ee576145ee614544565b604052919050565b600082601f83011261460757600080fd5b81356001600160401b0381111561462057614620614544565b614633601f8201601f19166020016145c6565b81815284602083860101111561464857600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561467757600080fd5b81356001600160401b038082111561468e57600080fd5b9083019060e082860312156146a257600080fd5b6146aa61455a565b8235828111156146b957600080fd5b6146c5878286016145f6565b8252506020830135828111156146da57600080fd5b6146e6878286016145f6565b6020830152506040830135828111156146fe57600080fd5b61470a878286016145f6565b60408301525060608301358281111561472257600080fd5b61472e878286016145f6565b60608301525060808301358281111561474657600080fd5b614752878286016145f6565b60808301525060a083013560a082015260c08301358281111561477457600080fd5b614780878286016145f6565b60c08301525095945050505050565b803580151581146144f357600080fd5b600060c082840312156147b157600080fd5b6147b9614582565b905081356001600160401b03808211156147d257600080fd5b6147de858386016145f6565b835260208401359150808211156147f457600080fd5b614800858386016145f6565b6020840152604084013591508082111561481957600080fd5b50614826848285016145f6565b6040830152506148386060830161478f565b60608201526148496080830161478f565b608082015260a082013560a082015292915050565b60008060006060848603121561487357600080fd5b833592506020840135915060408401356001600160401b0381111561489757600080fd5b6148a38682870161479f565b9150509250925092565b6000806000606084860312156148c257600080fd5b6148cb846144dc565b92506148d9602085016144dc565b9150604084013590509250925092565b60e0815260006148fc60e083018a614484565b828103602084015261490e818a614484565b905082810360408401526149228189614484565b905082810360608401526149368188614484565b9050828103608084015261494a8187614484565b90508460a084015282810360c08401526149648185614484565b9a9950505050505050505050565b60006020828403121561498457600080fd5b81356001600160401b0381111561499a57600080fd5b612a72848285016145f6565b6000602082840312156149b857600080fd5b610f50826144dc565b6080815260006149d46080830187614484565b82810360208401526149e68187614484565b6001600160a01b0395909516604084015250506060015292915050565b60006001600160401b03821115614a1c57614a1c614544565b5060051b60200190565b60008060408385031215614a3957600080fd5b823591506020808401356001600160401b0380821115614a5857600080fd5b818601915086601f830112614a6c57600080fd5b8135614a7f614a7a82614a03565b6145c6565b81815260059190911b83018401908481019089831115614a9e57600080fd5b8585015b83811015614ad657803585811115614aba5760008081fd5b614ac88c89838a010161479f565b845250918601918601614aa2565b508096505050505050509250929050565b60008060408385031215614afa57600080fd5b614b03836144dc565b9150614b116020840161478f565b90509250929050565b60008083601f840112614b2c57600080fd5b5081356001600160401b03811115614b4357600080fd5b6020830191508360208260051b8501011115614b5e57600080fd5b9250929050565b600080600060408486031215614b7a57600080fd5b614b83846144dc565b925060208401356001600160401b03811115614b9e57600080fd5b614baa86828701614b1a565b9497909650939450505050565b600082601f830112614bc857600080fd5b81356020614bd8614a7a83614a03565b82815260059290921b84018101918181019086841115614bf757600080fd5b8286015b84811015614c125780358352918301918301614bfb565b509695505050505050565b60006020808385031215614c3057600080fd5b82356001600160401b0380821115614c4757600080fd5b818501915085601f830112614c5b57600080fd5b8135614c69614a7a82614a03565b81815260059190911b83018401908481019088831115614c8857600080fd5b8585015b83811015614d1b57803585811115614ca45760008081fd5b86016040818c03601f1901811315614cbc5760008081fd5b614cc46145a4565b8983013588811115614cd65760008081fd5b614ce48e8c83870101614bb7565b825250908201359087821115614cfa5760008081fd5b614d088d8b84860101614bb7565b818b015285525050918601918601614c8c565b5098975050505050505050565b60008060008060808587031215614d3e57600080fd5b614d47856144dc565b9350614d55602086016144dc565b92506040850135915060608501356001600160401b03811115614d7757600080fd5b614d83878288016145f6565b91505092959194509250565b600080600060408486031215614da457600080fd5b8335925060208401356001600160401b03811115614b9e57600080fd5b60008060408385031215614dd457600080fd5b82359150614b11602084016144dc565b60008060408385031215614df757600080fd5b82359150614b116020840161478f565b6020808252825182820181905260009190848201906040850190845b81811015614e3f57835183529284019291840191600101614e23565b50909695505050505050565b60008060408385031215614e5e57600080fd5b614e67836144dc565b9150614b11602084016144dc565b602081526000825160606020840152614e916080840182614484565b90506020840151601f19848303016040850152614eae8282614484565b9150506040840151151560608401528091505092915050565b6020808252601590820152744d696e74696e67206973206e6f742061637469766560581b604082015260600190565b60008219821115614f0957614f096143fb565b500190565b6000816000190483118215151615614f2857614f286143fb565b500290565b600082614f3c57614f3c6143e5565b500690565b600060018201614f5357614f536143fb565b5060010190565b600181811c90821680614f6e57607f821691505b6020821081036137f657634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008282101561504e5761504e6143fb565b500390565b8054600090600181811c908083168061506d57607f831692505b6020808410820361508e57634e487b7160e01b600052602260045260246000fd5b8180156150a257600181146150b3576150e0565b60ff198616895284890196506150e0565b60008881526020902060005b868110156150d85781548b8201529085019083016150bf565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b81526000615110600f830185615053565b6a1116113b30b63ab2911d1160a91b815261512e600b820185615053565b61227d60f01b815260020195945050505050565b600061514e8284615053565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b8152600061518e6005830185615053565b670ed8985cd94d8d0b60c21b815283516151af816008840160208801614458565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b815260006151e86005830185615053565b670ed8985cd94d8d0b60c21b81528351615209816008840160208801614458565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000081526000825161536a81601a850160208701614458565b91909101601a0192915050565b60008351615389818460208801614458565b701116113232b9b1b934b83a34b7b7111d1160791b9083019081526153b16011820185615053565b61088b60f21b815260020195945050505050565b681134b6b0b3b2911d1160b91b815260006153e36009830186615053565b84516153f3818360208901614458565b643f646e613d60d81b91019081528351615414816005840160208801614458565b71099b995d1ddbdc9acf5b585a5b9b995d088b60721b6005929091019182015260170195945050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b608082015260008251615504816091850160208701614458565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b711139bb33afb4b6b0b3b2afb230ba30911d1160711b81528151600090615559816012850160208701614458565b61088b60f21b6012939091019283015250601401919050565b6d1134b6b0b3b2afb230ba30911d1160911b8152815160009061559c81600e850160208701614458565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b815281516000906155de81600d850160208701614458565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161562e81601d850160208701614458565b91909101601d0192915050565b683d913730b6b2911d1160b91b81526000615659600983018a615053565b701116113232b9b1b934b83a34b7b7111d1160791b815261567d601182018a615053565b6a11161134b6b0b3b2911d1160a91b8152905061569d600b820189615053565b6b1116113130b73732b9111d1160a11b815290506156be600c820188615053565b7211161132bc3a32b93730b62fb634b735911d1160691b815290506156e66013820187615053565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a000000008152845161571e81601c840160208901614458565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c929091019182015261574b602e820185615053565b61227d60f01b81526002019a9950505050505050505050565b600081526000825161577d816001850160208701614458565b9190910160010192915050565b600060ff821660ff84168160ff04811182151516156157ab576157ab6143fb565b029392505050565b600060ff821660ff8416808210156157cd576157cd6143fb565b90039392505050565b600060ff821660ff84168060ff038211156157f3576157f36143fb565b019392505050565b600060ff821660ff8103615811576158116143fb565b60010192915050565b6000825161582c818460208701614458565b9190910192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061586990830184614484565b9695505050505050565b60006020828403121561588557600080fd5b8151610f5081614425565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b600582015281516000906158d381600e850160208701614458565b91909101600e01939250505056fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723a4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212201eae7cbf9708679a602af99f3db729ea6fd50ec57d21fda8ff018930d05377b364736f6c634300080e0033
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.