ERC-721
Overview
Max Total Supply
3,333 LDB
Holders
790
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
9 LDBLoading...
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.13; 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 {DefaultOperatorFilterer} from "./DefaultOperatorFilterer.sol"; import "./SSTORE2.sol"; import "./DynamicBuffer.sol"; import "./HelperLib.sol"; contract Indelible is ERC721A, DefaultOperatorFilterer, 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 = 9; uint private constant MAX_BATCH_MINT = 20; uint[][NUM_LAYERS] private TIERS; string[] private LAYER_NAMES = [unicode"Hand", unicode"Eyes", unicode"Nose", unicode"Mouth", unicode"Dick", unicode"Hat", unicode"Butt", unicode"Skin", unicode"Background"]; bool private shouldWrapSVG = true; string private backgroundColor = "transparent"; uint private randomSeedData; WithdrawRecipient[] public withdrawRecipients; bool public isContractSealed; uint public constant maxSupply = 3333; uint public maxPerAddress = 10; uint public publicMintPrice = 0.030 ether; string public baseURI = ""; bool public isPublicMintActive; bytes32 private merkleRoot = 0; uint public allowListPrice = 0.000 ether; uint public maxPerAllowList = 2; bool public isAllowListActive; ContractData public contractData = ContractData(unicode"LarvaDickbutts", unicode"Gooch Island is full of mysterious secrets... Scientists have discovered a new species of cute creatures : LarvaDickbutts. A cc0 and fully onchain collection of 3333 LarvaDickbutts, inspired by CryptoDickbutts and Larva Lads. /// Allowlist Price : FREE (Max. 2 per wallet) - Public Price : 0.03 ETH (Max. 10 per wallet) - Mint Date : 11/11", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/profile/e22eb3b8-861f-459e-8cb1-0393fe0fc04e", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/banner/e22eb3b8-861f-459e-8cb1-0393fe0fc04e", "", 600, "0x75F52aEf21c1692afa9bBE897a31dB3002BAF6c3"); constructor() ERC721A(unicode"LarvaDickbutts", unicode"LDB") { TIERS[0] = [44,247,380,777,802,1083]; TIERS[1] = [7,10,13,20,35,36,42,44,66,80,90,102,115,120,123,129,153,200,280,451,465,752]; TIERS[2] = [158,334,2841]; TIERS[3] = [20,743,789,1781]; TIERS[4] = [44,46,73,106,114,158,263,265,266,388,480,525,605]; TIERS[5] = [7,9,9,10,11,14,18,20,23,31,31,32,35,39,45,59,60,62,75,78,78,87,90,98,117,125,137,137,139,152,153,157,200,279,352,364]; TIERS[6] = [76,166,783,856,1452]; TIERS[7] = [9,69,188,696,961,1410]; TIERS[8] = [356,388,442,636,665,846]; PRIME_NUMBERS = [ 823147169916224825307391528014949069340357622154256148689191, 455255148896994205943326626951197024927648464365329800703251, 445730560699308616878100110185308606331080346485121531052089, 874778160644048956810394214801467472093537087897851981604983, 774988306700992475970790762502873362986676222144851638448617, 210274846431799116011758110065640037513167259397816953288411, 896353651830364561540707634717046743479841853086536248690737, 489283222294688268987820540542047890674696745383853025932409, 135419986466399101724740108903015610477591324758987986294397 ]; 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, 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\":\"LarvaDickbutts #"); 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 toggleOperatorFilter() external onlyOwner { isOperatorFilterEnabled = !isOperatorFilterEnabled; } 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); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT // 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.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); bool public isOperatorFilterEnabled = true; IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check if filter operator is enabled if (!isOperatorFilterEnabled) { _; return; } // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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 (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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.7.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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(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++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
{ "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":"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"payable","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":"isOperatorFilterEnabled","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"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":"toggleOperatorFilter","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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
6008805460ff1916600117905560046101a08181526312185b9960e21b6101c05260809081526101e0828152634579657360e01b6102005260a052610220828152634e6f736560e01b6102405260c05260056102609081526409adeeae8d60db1b6102805260e0526102a0828152634469636b60e01b6102c0526101005260036102e09081526212185d60ea1b610300526101205261032082815263109d5d1d60e21b61034052610140526103609182526329b5b4b760e11b61038052610160919091526103e0604052600a6103a090815269109858dad9dc9bdd5b9960b21b6103c05261018052620000f790602790600962000ae9565b506028805460ff1916600117905560408051808201909152600b8082526a1d1c985b9cdc185c995b9d60aa1b6020909201918252620001399160299162000b4d565b50600a602d55666a94d74f430000602e556040805160208101918290526000908190526200016a91602f9162000b4d565b506000801b603155600060325560026033556040518060e001604052806040518060400160405280600e81526020016d4c617276614469636b627574747360901b8152508152602001604051806101800160405280610154815260200162006ad4610154913981526020016040518060a0016040528060628152602001620069e76062913981526020016040518060a001604052806061815260200162006a4960619139815260200160405180602001604052806000815250815260200161025881526020016040518060600160405280602a815260200162006aaa602a9139905280518051603591620002649183916020019062000b4d565b5060208281015180516200027f926001850192019062000b4d565b50604082015180516200029d91600284019160209091019062000b4d565b5060608201518051620002bb91600384019160209091019062000b4d565b5060808201518051620002d991600484019160209091019062000b4d565b5060a0820151600582015560c082015180516200030191600684019160209091019062000b4d565b5050503480156200031157600080fd5b50604080518082018252600e81526d4c617276614469636b627574747360901b60208083019182528351808501909452600384526226222160e91b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb6936001939290916200037c9160029162000b4d565b5080516200039290600390602084019062000b4d565b506000805550506daaeb6d7670e522a718067333cd4e3b15620004de5780156200042c57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200040d57600080fd5b505af115801562000422573d6000803e3d6000fd5b50505050620004de565b6001600160a01b038216156200047d5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620003f2565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620004c457600080fd5b505af1158015620004d9573d6000803e3d6000fd5b505050505b50506001600955620004f03362000a97565b6040805160c081018252602c815260f7602082015261017c918101919091526103096060820152610322608082015261043b60a08201526200053790601e90600662000bd8565b50604080516102c08101825260078152600a6020820152600d918101919091526014606082015260236080820152602460a0820152602a60c0820152602c60e082015260426101008201526050610120820152605a6101408201526066610160820152607361018082015260786101a0820152607b6101c082015260816101e0820152609961020082015260c86102208201526101186102408201526101c36102608201526101d16102808201526102f06102a0820152620005fe90601f90601662000bd8565b5060408051606081018252609e815261014e6020820152610b1991810191909152601e60026200063392910190600362000bd8565b5060408051608081018252601481526102e76020820152610315918101919091526106f560608201526200066c90602190600462000bd8565b50604080516101a081018252602c8152602e6020820152604991810191909152606a606082015260726080820152609e60a082015261010760c082015261010960e082015261010a6101008201526101846101208201526101e061014082015261020d61016082015261025d610180820152620006ee90602290600d62000bd8565b506040805161048081018252600781526009602080830182905292820152600a6060820152600b6080820152600e60a0820152601260c0820152601460e08201526017610100820152601f6101208201819052610140820152610160808201929092526023610180820181905260276101a0830152602d6101c0830152603b6101e0830152603c610200830152603e610220830152604b610240830152604e610260830181905261028083015260576102a0830152605a6102c083015260626102e08301526075610300830152607d61032083015260896103408301819052610360830152608b61038083015260986103a083015260996103c0830152609d6103e083015260c861040083015261011761042083015261044082019290925261016c610460820152620008249190602462000bd8565b506040805160a081018252604c815260a6602082015261030f9181019190915261035860608201526105ac60808201526200086490602490600562000bd8565b506040805160c081018252600981526045602082015260bc918101919091526102b860608201526103c1608082015261058260a0820152620008ab90602590600662000bd8565b506040805160c081018252610164815261018460208201526101ba9181019190915261027c6060820152610299608082015261034e60a0820152620008f590602690600662000bd8565b5060408051610120810182527883228972f6dfa37d5d4419364651c1950b5cb3bf87f13171278152784886bd880f457d6863e7e47ce5b0ce965b7475d0bcdb472d1360208201527847024c30d8c29a6d49a89cda915348f46f3e4d1afb82f1003991810191909152788b5c3624edc43de16cb4cfc12c571917cc0835df87c4c628776060820152787b767774e26fe30f739cfcb7c50dd57c67795e3b4894e771e9608082015278217fabd4f6851aef7552990e30e6b1d79589ef17e884df36db60a0820152788ecc20c85fdcf3b91bfd836b78bdfb632cd5b9a2c4ffa9883160c0820152784df28331ca1898a2473088c433e4f3445c0398c929500c347960e0820152781592daa0de59924f83ce768ec050b7de56d8d2888e6e85d67d61010082015262000a2890600f90600962000c1c565b503a43424462000a3a60018462000cd2565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6001600160601b03191660c082015260d40160408051601f198184030181529190528051602090910120602a5562000d34565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000b3b579160200282015b8281111562000b3b578251805162000b2a91849160209091019062000b4d565b509160200191906001019062000b0a565b5062000b4992915062000c58565b5090565b82805462000b5b9062000cf8565b90600052602060002090601f01602090048101928262000b7f576000855562000bca565b82601f1062000b9a57805160ff191683800117855562000bca565b8280016001018555821562000bca579182015b8281111562000bca57825182559160200191906001019062000bad565b5062000b4992915062000c79565b82805482825590600052602060002090810192821562000bca579160200282015b8281111562000bca578251829061ffff1690559160200191906001019062000bf9565b82600f810192821562000bca579160200282015b8281111562000bca57825182906001600160c81b031690559160200191906001019062000c30565b8082111562000b4957600062000c6f828262000c90565b5060010162000c58565b5b8082111562000b49576000815560010162000c7a565b50805462000c9e9062000cf8565b6000825580601f1062000caf575050565b601f01602090049060005260206000209081019062000ccf919062000c79565b50565b60008282101562000cf357634e487b7160e01b600052601160045260246000fd5b500390565b600181811c9082168062000d0d57607f821691505b60208210810362000d2e57634e487b7160e01b600052602260045260246000fd5b50919050565b615ca38062000d446000396000f3fe60806040526004361061039b5760003560e01c80636df9fa88116101dc578063b88d4fde11610102578063dbe9875f116100a0578063e985e9c51161006f578063e985e9c514610a59578063ea84b59b14610aa2578063f2fde38b14610acf578063fd6b3cf514610aef57600080fd5b8063dbe9875f146109e1578063dc53fd9214610a01578063dc9867ce14610a17578063e8a3d48514610a4457600080fd5b8063c11feac1116100dc578063c11feac114610976578063c87b56dd14610996578063d5abeb01146109b6578063da9e40ea146109cc57600080fd5b8063b88d4fde1461093d578063ba41b0c614610950578063bc63f02e1461096357600080fd5b80638da5cb5b1161017a578063a22cb46511610149578063a22cb465146108c7578063a24e5153146108e7578063b32c5680146108fd578063b45680661461091d57600080fd5b80638da5cb5b1461085f5780638fb4e8a91461087d57806395d89b411461089257806397d194d7146108a757600080fd5b80637bddd65b116101b65780637bddd65b146107cf5780637cb64759146107ef578063876171dc1461080f57806389ce30741461083f57600080fd5b80636df9fa881461077a57806370a082311461079a578063715018a6146107ba57600080fd5b806342842e0e116102c15780636190e1da1161025f57806366e338701161022e57806366e338701461071057806368bd580e146107305780636c0360eb146107455780636cced73a1461075a57600080fd5b80636190e1da1461069a578063621a1f74146106ba5780636352211e146106da578063639814e0146106fa57600080fd5b8063542d50411161029b578063542d50411461063157806355f804b31461064b57806356b955621461066b5780635b92ac0d1461068557600080fd5b806342842e0e146105e95780634920154b146105fc5780634ca1a0f21461061157600080fd5b806318160ddd1161033957806336cd2edd1161030857806336cd2edd146105815780633cca2420146105975780633ccfd60b146105bf5780634047638d146105d457600080fd5b806318160ddd1461051757806323b872dd1461053a57806329fc6bae1461054d5780632d6b62241461056757600080fd5b8063095ea7b311610375578063095ea7b3146104a457806309dbabca146104b75780630f3debbe146104d7578063180c2cc0146104f757600080fd5b806301ffc9a71461041557806306fdde031461044a578063081812fc1461046c57600080fd5b366104105760305460ff166103f75760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b61040e602e543461040891906146dc565b33610b0f565b005b600080fd5b34801561042157600080fd5b50610435610430366004614706565b610d5c565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061045f610daa565b604051610441919061477b565b34801561047857600080fd5b5061048c61048736600461478e565b610e3c565b6040516001600160a01b039091168152602001610441565b61040e6104b23660046147c3565b610e80565b3480156104c357600080fd5b5061045f6104d23660046147ed565b610f20565b3480156104e357600080fd5b5061040e6104f2366004614930565b610f68565b34801561050357600080fd5b5061040e610512366004614b32565b611046565b34801561052357600080fd5b50600154600054035b604051908152602001610441565b61040e610548366004614b81565b61121e565b34801561055957600080fd5b506034546104359060ff1681565b34801561057357600080fd5b506030546104359060ff1681565b34801561058d57600080fd5b5061052c60335481565b3480156105a357600080fd5b506105ac61138a565b6040516104419796959493929190614bbd565b3480156105cb57600080fd5b5061040e6116e8565b3480156105e057600080fd5b5061040e61188a565b61040e6105f7366004614b81565b6118a6565b34801561060857600080fd5b5061040e611a0d565b34801561061d57600080fd5b5061040e61062c36600461478e565b611a29565b34801561063d57600080fd5b50602c546104359060ff1681565b34801561065757600080fd5b5061040e610666366004614c46565b611a36565b34801561067757600080fd5b506008546104359060ff1681565b34801561069157600080fd5b50610435611a55565b3480156106a657600080fd5b5061040e6106b5366004614c46565b611a98565b3480156106c657600080fd5b5061045f6106d536600461478e565b611ad6565b3480156106e657600080fd5b5061048c6106f536600461478e565b611f25565b34801561070657600080fd5b5061052c602d5481565b34801561071c57600080fd5b5061045f61072b366004614c46565b611f30565b34801561073c57600080fd5b5061040e6120c9565b34801561075157600080fd5b5061045f612103565b34801561076657600080fd5b506104356107753660046147ed565b612191565b34801561078657600080fd5b5061040e61079536600461478e565b6121ad565b3480156107a657600080fd5b5061052c6107b5366004614c7a565b6121ba565b3480156107c657600080fd5b5061040e612208565b3480156107db57600080fd5b5061040e6107ea36600461478e565b61221c565b3480156107fb57600080fd5b5061040e61080a36600461478e565b612229565b34801561081b57600080fd5b5061082f61082a36600461478e565b612236565b6040516104419493929190614c95565b34801561084b57600080fd5b5061045f61085a366004614c46565b612390565b34801561086b57600080fd5b50600a546001600160a01b031661048c565b34801561088957600080fd5b5061040e6125a9565b34801561089e57600080fd5b5061045f6125c5565b3480156108b357600080fd5b5061040e6108c2366004614cfa565b6125d4565b3480156108d357600080fd5b5061040e6108e2366004614dbb565b6128c1565b3480156108f357600080fd5b5061052c60325481565b34801561090957600080fd5b50610435610918366004614e3d565b61292d565b34801561092957600080fd5b5061040e610938366004614ef5565b6129ad565b61040e61094b366004615000565b612b1a565b61052c61095e366004615067565b612c89565b61052c610971366004615099565b612e30565b34801561098257600080fd5b5061045f61099136600461478e565b612efa565b3480156109a257600080fd5b5061045f6109b136600461478e565b612f08565b3480156109c257600080fd5b5061052c610d0581565b3480156109d857600080fd5b5061040e61319d565b3480156109ed57600080fd5b5061040e6109fc3660046150c5565b6131b9565b348015610a0d57600080fd5b5061052c602e5481565b348015610a2357600080fd5b50610a37610a323660046147ed565b613259565b60405161044191906150ea565b348015610a5057600080fd5b5061045f6132c4565b348015610a6557600080fd5b50610435610a7436600461512e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610aae57600080fd5b50610ac2610abd3660046147ed565b613322565b6040516104419190615158565b348015610adb57600080fd5b5061040e610aea366004614c7a565b61349d565b348015610afb57600080fd5b5061040e610b0a3660046147ed565b613516565b6000610b19611a55565b610b355760405162461bcd60e51b81526004016103ee906151aa565b60005483610b7b5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b60448201526064016103ee565b610d05610b8885836151d9565b1115610bcc5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b60448201526064016103ee565b60305460ff1615610cf957600a546001600160a01b03163314610cbe57602d5433600090815260056020526040908190205486911c6001600160401b0316610c1491906151d9565b1115610c625760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103ee565b34602e5485610c7191906151f1565b14610cbe5760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103ee565b333214610cf95760405162461bcd60e51b8152602060048201526009602482015268454f4173206f6e6c7960b81b60448201526064016103ee565b6000610d066014866146dc565b90506000610d15601487615210565b905060005b82811015610d3f57610d2d866014613695565b80610d3781615224565b915050610d1a565b508015610d5057610d508582613695565b50909150505b92915050565b60006301ffc9a760e01b6001600160e01b031983161480610d8d57506380ac58cd60e01b6001600160e01b03198316145b80610d565750506001600160e01b031916635b5e139f60e01b1490565b606060028054610db99061523d565b80601f0160208091040260200160405190810160405280929190818152602001828054610de59061523d565b8015610e325780601f10610e0757610100808354040283529160200191610e32565b820191906000526020600020905b815481529060010190602001808311610e1557829003601f168201915b5050505050905090565b6000610e47826137c1565b610e64576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610e8b82611f25565b9050336001600160a01b03821614610ec457610ea78133610a74565b610ec4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600b602052604090208054606091610f619184908110610f4757610f47615271565b6000918252602090912001546001600160a01b03166137e8565b9392505050565b610f706137f8565b602c5460ff1615610f935760405162461bcd60e51b81526004016103ee90615287565b805180518291603591610fad918391602090910190614588565b506020828101518051610fc69260018501920190614588565b5060408201518051610fe2916002840191602090910190614588565b5060608201518051610ffe916003840191602090910190614588565b506080820151805161101a916004840191602090910190614588565b5060a0820151600582015560c08201518051611040916006840191602090910190614588565b50505050565b61104e6137f8565b602c5460ff16156110715760405162461bcd60e51b81526004016103ee90615287565b60408051606080820183528351825260208085015181840152908401511515828401526000868152600c825283812086825282529290922081518051929391926110be9284920190614588565b5060208281015180516110d79260018501920190614588565b50604091820151600291909101805460ff19169115159190911790556000848152600b60209081528282208054845181840281018401909552808552929392909183018282801561115157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611133575b505050505090508160800151156111b757808260a001518151811061117857611178615271565b602002602001015181848151811061119257611192615271565b60200260200101906001600160a01b031690816001600160a01b0316815250506111f7565b6111c48260400151613852565b8184815181106111d6576111d6615271565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6000848152600b6020908152604090912082516112169284019061460c565b50505b505050565b600854839060ff1661123a576112358484846138b7565b611040565b6daaeb6d7670e522a718067333cd4e3b1561137f57336001600160a01b0382160361126a576112358484846138b7565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112dd91906152b3565b80156113605750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561133c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136091906152b3565b61137f57604051633b79c77360e21b81523360048201526024016103ee565b6110408484846138b7565b6035805481906113999061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546113c59061523d565b80156114125780601f106113e757610100808354040283529160200191611412565b820191906000526020600020905b8154815290600101906020018083116113f557829003601f168201915b5050505050908060010180546114279061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546114539061523d565b80156114a05780601f10611475576101008083540402835291602001916114a0565b820191906000526020600020905b81548152906001019060200180831161148357829003601f168201915b5050505050908060020180546114b59061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546114e19061523d565b801561152e5780601f106115035761010080835404028352916020019161152e565b820191906000526020600020905b81548152906001019060200180831161151157829003601f168201915b5050505050908060030180546115439061523d565b80601f016020809104026020016040519081016040528092919081815260200182805461156f9061523d565b80156115bc5780601f10611591576101008083540402835291602001916115bc565b820191906000526020600020905b81548152906001019060200180831161159f57829003601f168201915b5050505050908060040180546115d19061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546115fd9061523d565b801561164a5780601f1061161f5761010080835404028352916020019161164a565b820191906000526020600020905b81548152906001019060200180831161162d57829003601f168201915b5050505050908060050154908060060180546116659061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546116919061523d565b80156116de5780601f106116b3576101008083540402835291602001916116de565b820191906000526020600020905b8154815290600101906020018083116116c157829003601f168201915b5050505050905087565b6116f06137f8565b6002600954036117125760405162461bcd60e51b81526004016103ee906152d0565b600260095547600061271061172860fa82615307565b61173290846151f1565b61173c91906146dc565b90506000806000611755600a546001600160a01b031690565b905073ea208da933c43857683c04bc76e3fd331d7bfdf761177f8161177a8789615307565b613a6b565b602b54156118705760005b602b5481101561186e57602b81815481106117a7576117a7615271565b906000526020600020906004020160030154846117c491906151d9565b93506000602b82815481106117db576117db615271565b906000526020600020906004020160020160009054906101000a90046001600160a01b03169050612710602b838154811061181857611818615271565b9060005260206000209060040201600301546127106118379190615307565b61184190896151f1565b61184b91906146dc565b955061185b8161177a888a615307565b508061186681615224565b91505061178a565b505b47955061187d8287613a6b565b5050600160095550505050565b6118926137f8565b6030805460ff19811660ff90911615179055565b600854839060ff166118bd57611235848484613b84565b6daaeb6d7670e522a718067333cd4e3b15611a0257336001600160a01b038216036118ed57611235848484613b84565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561193c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196091906152b3565b80156119e35750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156119bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e391906152b3565b611a0257604051633b79c77360e21b81523360048201526024016103ee565b611040848484613b84565b611a156137f8565b6028805460ff19811660ff90911615179055565b611a316137f8565b603355565b611a3e6137f8565b8051611a5190602f906020840190614588565b5050565b6000610d05611a6360005490565b108015611a93575060305460ff1680611a7e575060345460ff165b80611a935750600a546001600160a01b031633145b905090565b611aa06137f8565b602c5460ff1615611ac35760405162461bcd60e51b81526004016103ee90615287565b8051611a51906029906020840190614588565b6060611ae1826137c1565b611b1d5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103ee565b6000611b4b611b2e600960046151f1565b604080518281016060018252910181526000602090910190815290565b604080516009808252610140820190925291925060009190602082016101208036833750506040805160098082526101408201909252929350600092915060208201610120803683370190505090506000610d05602a54611bac9190615210565b905060005b6009811015611df2576000848281518110611bce57611bce615271565b60200260200101519050838281518110611bea57611bea615271565b602002602001015115156000151503611cde576000611c0889613b9f565b62ffffff169050600081600003611c6157610d05600f85600f8110611c2f57611c2f615271565b015486611c3c878e6151d9565b611c4691906151d9565b611c5091906151f1565b611c5a9190615210565b9050611cb0565b610d05828b611c7087826151d9565b60408051602081019490945283019190915260608201526080016040516020818303038152906040528051906020012060001c611cad9190615210565b90505b611cba8185613bb4565b925082878581518110611ccf57611ccf615271565b60200260200101818152505050505b6000828152600e6020908152604080832084845290915290205415611ddf576000828152600e60209081526040808320848452909152902080546001908110611d2957611d29615271565b6000918252602080832090910154848352600e82526040808420858552909252908220805491928892611d5e57611d5e615271565b906000526020600020015481518110611d7957611d79615271565b6020908102919091018101919091526000838152600e825260408082208483529092529081208054600192879291611db357611db3615271565b906000526020600020015481518110611dce57611dce615271565b911515602092830291909101909101525b5080611dea81615224565b915050611bb1565b5060005b8351811015611f1a57600a848281518110611e1357611e13615271565b60200260200101511015611e4a57604080518082019091526002815261030360f41b6020820152611e45908690613c50565b611e8f565b6064848281518110611e5e57611e5e615271565b60200260200101511015611e8f576040805180820190915260018152600360fc1b6020820152611e8f908690613c50565b6103e7848281518110611ea457611ea4615271565b60200260200101511115611edc5760408051808201909152600381526239393960e81b6020820152611ed7908690613c50565b611f08565b611f08611f01858381518110611ef457611ef4615271565b6020026020010151613cd5565b8690613c50565b80611f1281615224565b915050611df6565b509295945050505050565b6000610d5682613d19565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b91830191909152606091611f72908290613c50565b6000805b60098110156120c0576000611fb3611fae87611f938560036151f1565b611f9e8660036151f1565b611fa99060036151d9565b613d80565b613e4c565b6000838152600c6020908152604080832060ff94851680855292528220600201549093509091161515900361207857821561200b576040805180820190915260018152600b60fa1b602082015261200b908590613c50565b6120696027838154811061202157612021615271565b60009182526020808320868452600c82526040808520878652835293849020935161205294939091019291016153b7565b60408051601f198184030181529190528590613c50565b82151560000361207857600192505b61208460016009615307565b82036120ad576040805180820190915260018152605d60f81b60208201526120ad908590613c50565b50806120b881615224565b915050611f76565b50909392505050565b602c5460ff16156120ec5760405162461bcd60e51b81526004016103ee90615287565b6120f46137f8565b602c805460ff19166001179055565b602f80546121109061523d565b80601f016020809104026020016040519081016040528092919081815260200182805461213c9061523d565b80156121895780601f1061215e57610100808354040283529160200191612189565b820191906000526020600020905b81548152906001019060200180831161216c57829003601f168201915b505050505081565b6000610f6161219f84611ad6565b6121a884611ad6565b613f0a565b6121b56137f8565b603255565b60006001600160a01b0382166121e3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6122106137f8565b61221a6000613f63565b565b6122246137f8565b602d55565b6122316137f8565b603155565b602b818154811061224657600080fd5b90600052602060002090600402016000915090508060000180546122699061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546122959061523d565b80156122e25780601f106122b7576101008083540402835291602001916122e2565b820191906000526020600020905b8154815290600101906020018083116122c557829003601f168201915b5050505050908060010180546122f79061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546123239061523d565b80156123705780601f1061234557610100808354040283529160200191612370565b820191906000526020600020905b81548152906001019060200180831161235357829003601f168201915b50505050600283015460039093015491926001600160a01b031691905084565b6040805162020060810190915262020040815260006020909101818152606091906123d46040518060c0016040528060818152602001615bad608191398290613c50565b61240060296040516020016123e9919061540d565b60408051601f198184030181529190528290613c50565b60005b61240f60016009615307565b8110156124cb57612433611fae866124288460036151f1565b611f9e8560036151f1565b60ff1692506124b9600c6000838152602001908152602001600020600085815260200190815260200160002060010161249161248c600b60008681526020019081526020016000208781548110610f4757610f47615271565b613fb5565b6040516020016124a292919061543f565b60408051601f198184030181529190528390613c50565b806124c381615224565b915050612403565b506124f6611fae8560036124e06009826151f1565b6124ea9190615307565b611fa9600960036151f1565b60ff169150612578600c600061250e60016009615307565b8152602001908152602001600020600084815260200190815260200160002060010161256761248c600b6000600160096125489190615307565b81526020019081526020016000208681548110610f4757610f47615271565b6040516020016123e9929190615499565b61258181613fb5565b60405160200161259191906155fd565b60405160208183030381529060405292505050919050565b6125b16137f8565b6034805460ff19811660ff90911615179055565b606060038054610db99061523d565b6125dc6137f8565b602c5460ff16156125ff5760405162461bcd60e51b81526004016103ee90615287565b8051601e836009811061261457612614615271565b01541461267b5760405162461bcd60e51b815260206004820152602f60248201527f5472616974732073697a6520646f6573206e6f74206d6174636820746965727360448201526e040ccdee440e8d0d2e640d2dcc8caf608b1b60648201526084016103ee565b600081516001600160401b038111156126965761269661480f565b6040519080825280602002602001820160405280156126bf578160200160208202803683370190505b50905060005b82518110156128a1578281815181106126e0576126e0615271565b6020026020010151608001511561275f578183828151811061270457612704615271565b602002602001015160a001518151811061272057612720615271565b602002602001015182828151811061273a5761273a615271565b60200260200101906001600160a01b031690816001600160a01b0316815250506127b8565b61278583828151811061277457612774615271565b602002602001015160400151613852565b82828151811061279757612797615271565b60200260200101906001600160a01b031690816001600160a01b0316815250505b60405180606001604052808483815181106127d5576127d5615271565b60200260200101516000015181526020018483815181106127f8576127f8615271565b602002602001015160200151815260200184838151811061281b5761281b615271565b6020908102919091018101516060015115159091526000868152600c825260408082208583528352902082518051919261285a92849290910190614588565b5060208281015180516128739260018501920190614588565b50604091909101516002909101805460ff19169115159190911790558061289981615224565b9150506126c5565b506000838152600b6020908152604090912082516110409284019061460c565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006129a5838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506031546040516bffffffffffffffffffffffff1960608b901b166020820152909250603401905060405160208183030381529060405280519060200120614107565b949350505050565b6129b56137f8565b602c5460ff16156129d85760405162461bcd60e51b81526004016103ee90615287565b60005b8151811015611a51576040518060400160405280838381518110612a0157612a01615271565b602002602001015160200151600081518110612a1f57612a1f615271565b60200260200101518152602001838381518110612a3e57612a3e615271565b602002602001015160200151600181518110612a5c57612a5c615271565b6020026020010151815250600e6000848481518110612a7d57612a7d615271565b602002602001015160000151600081518110612a9b57612a9b615271565b602002602001015181526020019081526020016000206000848481518110612ac557612ac5615271565b602002602001015160000151600181518110612ae357612ae3615271565b60200260200101518152602001908152602001600020906002612b07929190614661565b5080612b1281615224565b9150506129db565b600854849060ff16612b3757612b328585858561411d565b611216565b6daaeb6d7670e522a718067333cd4e3b15612c7d57336001600160a01b03821603612b6857612b328585858561411d565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612bb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bdb91906152b3565b8015612c5e5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612c3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c5e91906152b3565b612c7d57604051633b79c77360e21b81523360048201526024016103ee565b6112168585858561411d565b6000600260095403612cad5760405162461bcd60e51b81526004016103ee906152d0565b6002600955612cba611a55565b612cd65760405162461bcd60e51b81526004016103ee906151aa565b60305460ff16158015612cf45750600a546001600160a01b03163314155b15612e1957612d0433848461292d565b612d445760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b60448201526064016103ee565b60335433600090815260056020526040908190205486911c6001600160401b0316612d6f91906151d9565b1115612dbd5760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103ee565b3460325485612dcc91906151f1565b14612e195760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103ee565b612e238433610b0f565b6001600955949350505050565b6000600260095403612e545760405162461bcd60e51b81526004016103ee906152d0565b6002600955612e61611a55565b612e7d5760405162461bcd60e51b81526004016103ee906151aa565b60305460ff1680612e985750600a546001600160a01b031633145b612ee45760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064016103ee565b612eee8383610b0f565b60016009559392505050565b6060610d5661085a83611ad6565b6060612f13826137c1565b612f4f5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103ee565b60008052600b6020527fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f7654612fc65760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e20616464656400000000000060448201526064016103ee565b6000612fd183611ad6565b604080516202006081018252620200408152600060209182019081528251808401909352601983527f7b226e616d65223a224c617276614469636b62757474732023000000000000009183019190915291925061302f908290613c50565b61304e61303b85613cd5565b6040516123e99190603690602001615642565b6000602f805461305d9061523d565b905011801561307a57506000848152600d602052604090205460ff165b156130a5576130a0602f61308d86613cd5565b846040516020016123e993929190615690565b613168565b60408051602081019091526000815260285460ff16156131465760006130ca84612390565b90506130f4816040516020016130e0919061570b565b604051602081830303815290604052613fb5565b60405160200161310491906155fd565b60405160208183030381529060405291506131408160405160200161312991906157f6565b60408051601f198184030181529190528490613c50565b50613152565b61314f83612390565b90505b613166816040516020016124a2919061583d565b505b61318461317483611f30565b6040516020016123e99190615880565b61318d81613fb5565b60405160200161259191906158c1565b6131a56137f8565b6008805460ff19811660ff90911615179055565b6131c282611f25565b6001600160a01b0316336001600160a01b0316146132395760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c792074686520746f6b656e206f776e65722063616e207365742074686560448201526d081c995b99195c881b595d1a1bd960921b60648201526084016103ee565b6000918252600d6020526040909120805460ff1916911515919091179055565b6000828152600e602090815260408083208484528252918290208054835181840281018401909452808452606093928301828280156132b757602002820191906000526020600020905b8154815260200190600101908083116132a3575b5050505050905092915050565b603a546060906132fe906035906036906037906038906039906132e690613cd5565b6040516130e096959493929190603b90602001615906565b60405160200161330e91906158c1565b604051602081830303815290604052905090565b604080516060808201835280825260208201526000918101919091526000838152600c60209081526040808320858452909152908190208151606081019092528054829082906133719061523d565b80601f016020809104026020016040519081016040528092919081815260200182805461339d9061523d565b80156133ea5780601f106133bf576101008083540402835291602001916133ea565b820191906000526020600020905b8154815290600101906020018083116133cd57829003601f168201915b505050505081526020016001820180546134039061523d565b80601f016020809104026020016040519081016040528092919081815260200182805461342f9061523d565b801561347c5780601f106134515761010080835404028352916020019161347c565b820191906000526020600020905b81548152906001019060200180831161345f57829003601f168201915b50505091835250506002919091015460ff1615156020909101529392505050565b6134a56137f8565b6001600160a01b03811661350a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ee565b61351381613f63565b50565b602c5460ff16156135395760405162461bcd60e51b81526004016103ee90615287565b6135438282612191565b61358f5760405162461bcd60e51b815260206004820152601d60248201527f416c6c20746f6b656e73206d757374206265206475706c69636174657300000060448201526064016103ee565b600081831161359e57816135a0565b825b90506135b4600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614613650576135d581611f25565b6001600160a01b0316336001600160a01b0316146136505760405162461bcd60e51b815260206004820152603260248201527f4f6e6c792074686520746f6b656e206f776e6572206f7220636f6e7472616374604482015271081bdddb995c8818d85b881c994b5c9bdb1b60721b60648201526084016103ee565b61365981614161565b61366c6136678260016151d9565b6137c1565b156136845761368461367f8260016151d9565b614161565b61121981613690614191565b614202565b60008054908290036136ba5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600090815260056020526040812080546801000000000000000185020190556137119084906136f4908281614257565b6001851460e11b174260a01b176001600160a01b03919091161790565b6000828152600460205260408120919091556001600160a01b0384169083830190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461379757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161375f565b50816000036137b857604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000805482108015610d56575050600090815260046020526040902054600160e01b161590565b6060610d5682600160001961427a565b600a546001600160a01b0316331461221a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ee565b60008061387d836040516020016138699190615a2f565b60405160208183030381529060405261432f565b90508051602082016000f091506001600160a01b0382166138b15760405163046a55db60e11b815260040160405180910390fd5b50919050565b60006138c282613d19565b9050836001600160a01b0316816001600160a01b0316146138f55760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417613942576139258633610a74565b61394257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661396957604051633a954ecd60e21b815260040160405180910390fd5b801561397457600082555b6001600160a01b038087166000908152600560205260408082208054600019019055918716815220805460010190556139cd856139b2888287614257565b600160e11b174260a01b176001600160a01b03919091161790565b600085815260046020526040812091909155600160e11b84169003613a2257600184016000818152600460205260408120549003613a20576000548114613a205760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b80471015613abb5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016103ee565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613b08576040519150601f19603f3d011682016040523d82523d6000602084013e613b0d565b606091505b50509050806112195760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016103ee565b61121983838360405180602001604052806000815250612b1a565b6000613baa8261435b565b6060015192915050565b600080805b601e8460098110613bcc57613bcc615271565b0154811015610410576000601e8560098110613bea57613bea615271565b018281548110613bfc57613bfc615271565b90600052602060002001549050828610158015613c215750613c1e81846151d9565b86105b15613c3057509150610d569050565b613c3a81846151d9565b9250508080613c4890615224565b915050613bb9565b601f1982015182518251603f19909201918290613c6d90836151d9565b1115613ccb5760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b60648201526084016103ee565b61104084846143d2565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480613cef5750819003601f19909101908152919050565b600081600054811015613d675760008181526004602052604081205490600160e01b82169003613d65575b80600003610f61575060001901600081815260046020526040902054613d44565b505b604051636f96cda160e11b815260040160405180910390fd5b6060836000613d8f8585615307565b6001600160401b03811115613da657613da661480f565b6040519080825280601f01601f191660200182016040528015613dd0576020820181803683370190505b509050845b84811015613e4257828181518110613def57613def615271565b01602001516001600160f81b03191682613e098884615307565b81518110613e1957613e19615271565b60200101906001600160f81b031916908160001a90535080613e3a81615224565b915050613dd5565b5095945050505050565b60008181805b82518160ff161015613f02576030838260ff1681518110613e7557613e75615271565b016020015160f81c10801590613ea857506039838260ff1681518110613e9d57613e9d615271565b016020015160f81c11155b15613ef057613eb8600a83615a55565b91506030838260ff1681518110613ed157613ed1615271565b0160200151613ee3919060f81c615a7e565b613eed9083615aa1565b91505b80613efa81615ac6565b915050613e52565b509392505050565b600081604051602001613f1d9190615ae5565b6040516020818303038152906040528051906020012083604051602001613f449190615ae5565b6040516020818303038152906040528051906020012014905092915050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60608151600003613fd457505060408051602081019091526000815290565b6000604051806060016040528060408152602001615c2e604091399050600060038451600261400391906151d9565b61400d91906146dc565b6140189060046151f1565b6001600160401b0381111561402f5761402f61480f565b6040519080825280601f01601f191660200182016040528015614059576020820181803683370190505b509050600182016020820185865187015b808210156140c5576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184535060018301925061406a565b50506003865106600181146140e157600281146140f4576140fc565b603d6001830353603d60028303536140fc565b603d60018303535b509195945050505050565b6000826141148584614408565b14949350505050565b61412884848461121e565b6001600160a01b0383163b15611040576141448484848461444d565b611040576040516368d2bf6b60e11b815260040160405180910390fd5b60008181526004602052604081205490036135135761417f81613d19565b60008281526004602052604090205550565b6000803a4342446141a3600184615307565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6bffffffffffffffffffffffff191660c082015260d40160408051601f19818403018152919052805160209091012092915050565b600082815260046020526040812054908190036142315760405162d5815360e01b815260040160405180910390fd5b6000928352600460205260409092206001600160e81b039290921660e89190911b179055565b600060e882811c9061426a868684614538565b62ffffff16901b95945050505050565b6060833b600081900361429d575050604080516020810190915260008152610f61565b808411156142bb575050604080516020810190915260008152610f61565b838310156142ed5760405163162544fd60e11b81526004810182905260248101859052604481018490526064016103ee565b83830384820360008282106143025782614304565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b6060815182604051602001614345929190615b01565b6040516020818303038152906040529050919050565b604080516080810182526000808252602082018190529181018290526060810191909152610d5661438b83613d19565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b8051602082019150808201602084510184015b818410156143fd5783518152602093840193016143e5565b505082510190915250565b600081815b8451811015613f02576144398286838151811061442c5761442c615271565b6020026020010151614559565b91508061444581615224565b91505061440d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290614482903390899088908890600401615b52565b6020604051808303816000875af19250505080156144bd575060408051601f3d908101601f191682019092526144ba91810190615b8f565b60015b61451b573d8080156144eb576040519150601f19603f3d011682016040523d82523d6000602084013e6144f0565b606091505b508051600003614513576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60006001600160a01b0384161561454f57816129a5565b5060009392505050565b6000818310614575576000828152602084905260409020610f61565b6000838152602083905260409020610f61565b8280546145949061523d565b90600052602060002090601f0160209004810192826145b657600085556145fc565b82601f106145cf57805160ff19168380011785556145fc565b828001600101855582156145fc579182015b828111156145fc5782518255916020019190600101906145e1565b5061460892915061469b565b5090565b8280548282559060005260206000209081019282156145fc579160200282015b828111156145fc57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061462c565b8280548282559060005260206000209081019282156145fc57916020028201828111156145fc5782518255916020019190600101906145e1565b5b80821115614608576000815560010161469c565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826146eb576146eb6146b0565b500490565b6001600160e01b03198116811461351357600080fd5b60006020828403121561471857600080fd5b8135610f61816146f0565b60005b8381101561473e578181015183820152602001614726565b838111156110405750506000910152565b60008151808452614767816020860160208601614723565b601f01601f19169290920160200192915050565b602081526000610f61602083018461474f565b6000602082840312156147a057600080fd5b5035919050565b80356001600160a01b03811681146147be57600080fd5b919050565b600080604083850312156147d657600080fd5b6147df836147a7565b946020939093013593505050565b6000806040838503121561480057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156148475761484761480f565b60405290565b60405160c081016001600160401b03811182821017156148475761484761480f565b604080519081016001600160401b03811182821017156148475761484761480f565b604051601f8201601f191681016001600160401b03811182821017156148b9576148b961480f565b604052919050565b600082601f8301126148d257600080fd5b81356001600160401b038111156148eb576148eb61480f565b6148fe601f8201601f1916602001614891565b81815284602083860101111561491357600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561494257600080fd5b81356001600160401b038082111561495957600080fd5b9083019060e0828603121561496d57600080fd5b614975614825565b82358281111561498457600080fd5b614990878286016148c1565b8252506020830135828111156149a557600080fd5b6149b1878286016148c1565b6020830152506040830135828111156149c957600080fd5b6149d5878286016148c1565b6040830152506060830135828111156149ed57600080fd5b6149f9878286016148c1565b606083015250608083013582811115614a1157600080fd5b614a1d878286016148c1565b60808301525060a083013560a082015260c083013582811115614a3f57600080fd5b614a4b878286016148c1565b60c08301525095945050505050565b801515811461351357600080fd5b80356147be81614a5a565b600060c08284031215614a8557600080fd5b614a8d61484d565b905081356001600160401b0380821115614aa657600080fd5b614ab2858386016148c1565b83526020840135915080821115614ac857600080fd5b614ad4858386016148c1565b60208401526040840135915080821115614aed57600080fd5b50614afa848285016148c1565b604083015250614b0c60608301614a68565b6060820152614b1d60808301614a68565b608082015260a082013560a082015292915050565b600080600060608486031215614b4757600080fd5b833592506020840135915060408401356001600160401b03811115614b6b57600080fd5b614b7786828701614a73565b9150509250925092565b600080600060608486031215614b9657600080fd5b614b9f846147a7565b9250614bad602085016147a7565b9150604084013590509250925092565b60e081526000614bd060e083018a61474f565b8281036020840152614be2818a61474f565b90508281036040840152614bf6818961474f565b90508281036060840152614c0a818861474f565b90508281036080840152614c1e818761474f565b90508460a084015282810360c0840152614c38818561474f565b9a9950505050505050505050565b600060208284031215614c5857600080fd5b81356001600160401b03811115614c6e57600080fd5b6129a5848285016148c1565b600060208284031215614c8c57600080fd5b610f61826147a7565b608081526000614ca8608083018761474f565b8281036020840152614cba818761474f565b6001600160a01b0395909516604084015250506060015292915050565b60006001600160401b03821115614cf057614cf061480f565b5060051b60200190565b60008060408385031215614d0d57600080fd5b823591506020808401356001600160401b0380821115614d2c57600080fd5b818601915086601f830112614d4057600080fd5b8135614d53614d4e82614cd7565b614891565b81815260059190911b83018401908481019089831115614d7257600080fd5b8585015b83811015614daa57803585811115614d8e5760008081fd5b614d9c8c89838a0101614a73565b845250918601918601614d76565b508096505050505050509250929050565b60008060408385031215614dce57600080fd5b614dd7836147a7565b91506020830135614de781614a5a565b809150509250929050565b60008083601f840112614e0457600080fd5b5081356001600160401b03811115614e1b57600080fd5b6020830191508360208260051b8501011115614e3657600080fd5b9250929050565b600080600060408486031215614e5257600080fd5b614e5b846147a7565b925060208401356001600160401b03811115614e7657600080fd5b614e8286828701614df2565b9497909650939450505050565b600082601f830112614ea057600080fd5b81356020614eb0614d4e83614cd7565b82815260059290921b84018101918181019086841115614ecf57600080fd5b8286015b84811015614eea5780358352918301918301614ed3565b509695505050505050565b60006020808385031215614f0857600080fd5b82356001600160401b0380821115614f1f57600080fd5b818501915085601f830112614f3357600080fd5b8135614f41614d4e82614cd7565b81815260059190911b83018401908481019088831115614f6057600080fd5b8585015b83811015614ff357803585811115614f7c5760008081fd5b86016040818c03601f1901811315614f945760008081fd5b614f9c61486f565b8983013588811115614fae5760008081fd5b614fbc8e8c83870101614e8f565b825250908201359087821115614fd25760008081fd5b614fe08d8b84860101614e8f565b818b015285525050918601918601614f64565b5098975050505050505050565b6000806000806080858703121561501657600080fd5b61501f856147a7565b935061502d602086016147a7565b92506040850135915060608501356001600160401b0381111561504f57600080fd5b61505b878288016148c1565b91505092959194509250565b60008060006040848603121561507c57600080fd5b8335925060208401356001600160401b03811115614e7657600080fd5b600080604083850312156150ac57600080fd5b823591506150bc602084016147a7565b90509250929050565b600080604083850312156150d857600080fd5b823591506020830135614de781614a5a565b6020808252825182820181905260009190848201906040850190845b8181101561512257835183529284019291840191600101615106565b50909695505050505050565b6000806040838503121561514157600080fd5b61514a836147a7565b91506150bc602084016147a7565b602081526000825160606020840152615174608084018261474f565b90506020840151601f19848303016040850152615191828261474f565b9150506040840151151560608401528091505092915050565b6020808252601590820152744d696e74696e67206973206e6f742061637469766560581b604082015260600190565b600082198211156151ec576151ec6146c6565b500190565b600081600019048311821515161561520b5761520b6146c6565b500290565b60008261521f5761521f6146b0565b500690565b600060018201615236576152366146c6565b5060010190565b600181811c9082168061525157607f821691505b6020821081036138b157634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b6000602082840312156152c557600080fd5b8151610f6181614a5a565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082821015615319576153196146c6565b500390565b8054600090600181811c908083168061533857607f831692505b6020808410820361535957634e487b7160e01b600052602260045260246000fd5b81801561536d576001811461537e576153ab565b60ff198616895284890196506153ab565b60008881526020902060005b868110156153a35781548b82015290850190830161538a565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b815260006153db600f83018561531e565b6a1116113b30b63ab2911d1160a91b81526153f9600b82018561531e565b61227d60f01b815260020195945050505050565b6000615419828461531e565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b81526000615459600583018561531e565b670ed8985cd94d8d0b60c21b8152835161547a816008840160208801614723565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b815260006154b3600583018561531e565b670ed8985cd94d8d0b60c21b815283516154d4816008840160208801614723565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000081526000825161563581601a850160208701614723565b91909101601a0192915050565b60008351615654818460208801614723565b701116113232b9b1b934b83a34b7b7111d1160791b90830190815261567c601182018561531e565b61088b60f21b815260020195945050505050565b681134b6b0b3b2911d1160b91b815260006156ae600983018661531e565b84516156be818360208901614723565b643f646e613d60d81b910190815283516156df816005840160208801614723565b71099b995d1ddbdc9acf5b585a5b9b995d088b60721b6005929091019182015260170195945050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b6080820152600082516157cf816091850160208701614723565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b711139bb33afb4b6b0b3b2afb230ba30911d1160711b81528151600090615824816012850160208701614723565b61088b60f21b6012939091019283015250601401919050565b6d1134b6b0b3b2afb230ba30911d1160911b8152815160009061586781600e850160208701614723565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b815281516000906158a981600d850160208701614723565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516158f981601d850160208701614723565b91909101601d0192915050565b683d913730b6b2911d1160b91b81526000615924600983018a61531e565b701116113232b9b1b934b83a34b7b7111d1160791b8152615948601182018a61531e565b6a11161134b6b0b3b2911d1160a91b81529050615968600b82018961531e565b6b1116113130b73732b9111d1160a11b81529050615989600c82018861531e565b7211161132bc3a32b93730b62fb634b735911d1160691b815290506159b1601382018761531e565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a00000000815284516159e981601c840160208901614723565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c9290910191820152615a16602e82018561531e565b61227d60f01b81526002019a9950505050505050505050565b6000815260008251615a48816001850160208701614723565b9190910160010192915050565b600060ff821660ff84168160ff0481118215151615615a7657615a766146c6565b029392505050565b600060ff821660ff841680821015615a9857615a986146c6565b90039392505050565b600060ff821660ff84168060ff03821115615abe57615abe6146c6565b019392505050565b600060ff821660ff8103615adc57615adc6146c6565b60010192915050565b60008251615af7818460208701614723565b9190910192915050565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b60058201528151600090615b4481600e850160208701614723565b91909101600e019392505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615b859083018461474f565b9695505050505050565b600060208284031215615ba157600080fd5b8151610f61816146f056fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723a4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220ccc8a5c341100fa2edc15a77a75343103dd58c463dcd6680d5dce85d28c8b7a364736f6c634300080e003368747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f70726f66696c652f65323265623362382d383631662d343539652d386362312d30333933666530666330346568747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f62616e6e65722f65323265623362382d383631662d343539652d386362312d303339336665306663303465307837354635326145663231633136393261666139624245383937613331644233303032424146366333476f6f63682049736c616e642069732066756c6c206f66206d7973746572696f757320736563726574732e2e2e20536369656e7469737473206861766520646973636f76657265642061206e65772073706563696573206f66206375746520637265617475726573203a204c617276614469636b62757474732e2020412063633020616e642066756c6c79206f6e636861696e20636f6c6c656374696f6e206f662033333333204c617276614469636b62757474732c20696e7370697265642062792043727970746f4469636b627574747320616e64204c61727661204c6164732e202f2f2f20416c6c6f776c697374205072696365203a204652454520284d61782e2032207065722077616c6c657429202d205075626c6963205072696365203a20302e30332045544820284d61782e203130207065722077616c6c657429202d204d696e742044617465203a2031312f3131
Deployed Bytecode
0x60806040526004361061039b5760003560e01c80636df9fa88116101dc578063b88d4fde11610102578063dbe9875f116100a0578063e985e9c51161006f578063e985e9c514610a59578063ea84b59b14610aa2578063f2fde38b14610acf578063fd6b3cf514610aef57600080fd5b8063dbe9875f146109e1578063dc53fd9214610a01578063dc9867ce14610a17578063e8a3d48514610a4457600080fd5b8063c11feac1116100dc578063c11feac114610976578063c87b56dd14610996578063d5abeb01146109b6578063da9e40ea146109cc57600080fd5b8063b88d4fde1461093d578063ba41b0c614610950578063bc63f02e1461096357600080fd5b80638da5cb5b1161017a578063a22cb46511610149578063a22cb465146108c7578063a24e5153146108e7578063b32c5680146108fd578063b45680661461091d57600080fd5b80638da5cb5b1461085f5780638fb4e8a91461087d57806395d89b411461089257806397d194d7146108a757600080fd5b80637bddd65b116101b65780637bddd65b146107cf5780637cb64759146107ef578063876171dc1461080f57806389ce30741461083f57600080fd5b80636df9fa881461077a57806370a082311461079a578063715018a6146107ba57600080fd5b806342842e0e116102c15780636190e1da1161025f57806366e338701161022e57806366e338701461071057806368bd580e146107305780636c0360eb146107455780636cced73a1461075a57600080fd5b80636190e1da1461069a578063621a1f74146106ba5780636352211e146106da578063639814e0146106fa57600080fd5b8063542d50411161029b578063542d50411461063157806355f804b31461064b57806356b955621461066b5780635b92ac0d1461068557600080fd5b806342842e0e146105e95780634920154b146105fc5780634ca1a0f21461061157600080fd5b806318160ddd1161033957806336cd2edd1161030857806336cd2edd146105815780633cca2420146105975780633ccfd60b146105bf5780634047638d146105d457600080fd5b806318160ddd1461051757806323b872dd1461053a57806329fc6bae1461054d5780632d6b62241461056757600080fd5b8063095ea7b311610375578063095ea7b3146104a457806309dbabca146104b75780630f3debbe146104d7578063180c2cc0146104f757600080fd5b806301ffc9a71461041557806306fdde031461044a578063081812fc1461046c57600080fd5b366104105760305460ff166103f75760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b61040e602e543461040891906146dc565b33610b0f565b005b600080fd5b34801561042157600080fd5b50610435610430366004614706565b610d5c565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061045f610daa565b604051610441919061477b565b34801561047857600080fd5b5061048c61048736600461478e565b610e3c565b6040516001600160a01b039091168152602001610441565b61040e6104b23660046147c3565b610e80565b3480156104c357600080fd5b5061045f6104d23660046147ed565b610f20565b3480156104e357600080fd5b5061040e6104f2366004614930565b610f68565b34801561050357600080fd5b5061040e610512366004614b32565b611046565b34801561052357600080fd5b50600154600054035b604051908152602001610441565b61040e610548366004614b81565b61121e565b34801561055957600080fd5b506034546104359060ff1681565b34801561057357600080fd5b506030546104359060ff1681565b34801561058d57600080fd5b5061052c60335481565b3480156105a357600080fd5b506105ac61138a565b6040516104419796959493929190614bbd565b3480156105cb57600080fd5b5061040e6116e8565b3480156105e057600080fd5b5061040e61188a565b61040e6105f7366004614b81565b6118a6565b34801561060857600080fd5b5061040e611a0d565b34801561061d57600080fd5b5061040e61062c36600461478e565b611a29565b34801561063d57600080fd5b50602c546104359060ff1681565b34801561065757600080fd5b5061040e610666366004614c46565b611a36565b34801561067757600080fd5b506008546104359060ff1681565b34801561069157600080fd5b50610435611a55565b3480156106a657600080fd5b5061040e6106b5366004614c46565b611a98565b3480156106c657600080fd5b5061045f6106d536600461478e565b611ad6565b3480156106e657600080fd5b5061048c6106f536600461478e565b611f25565b34801561070657600080fd5b5061052c602d5481565b34801561071c57600080fd5b5061045f61072b366004614c46565b611f30565b34801561073c57600080fd5b5061040e6120c9565b34801561075157600080fd5b5061045f612103565b34801561076657600080fd5b506104356107753660046147ed565b612191565b34801561078657600080fd5b5061040e61079536600461478e565b6121ad565b3480156107a657600080fd5b5061052c6107b5366004614c7a565b6121ba565b3480156107c657600080fd5b5061040e612208565b3480156107db57600080fd5b5061040e6107ea36600461478e565b61221c565b3480156107fb57600080fd5b5061040e61080a36600461478e565b612229565b34801561081b57600080fd5b5061082f61082a36600461478e565b612236565b6040516104419493929190614c95565b34801561084b57600080fd5b5061045f61085a366004614c46565b612390565b34801561086b57600080fd5b50600a546001600160a01b031661048c565b34801561088957600080fd5b5061040e6125a9565b34801561089e57600080fd5b5061045f6125c5565b3480156108b357600080fd5b5061040e6108c2366004614cfa565b6125d4565b3480156108d357600080fd5b5061040e6108e2366004614dbb565b6128c1565b3480156108f357600080fd5b5061052c60325481565b34801561090957600080fd5b50610435610918366004614e3d565b61292d565b34801561092957600080fd5b5061040e610938366004614ef5565b6129ad565b61040e61094b366004615000565b612b1a565b61052c61095e366004615067565b612c89565b61052c610971366004615099565b612e30565b34801561098257600080fd5b5061045f61099136600461478e565b612efa565b3480156109a257600080fd5b5061045f6109b136600461478e565b612f08565b3480156109c257600080fd5b5061052c610d0581565b3480156109d857600080fd5b5061040e61319d565b3480156109ed57600080fd5b5061040e6109fc3660046150c5565b6131b9565b348015610a0d57600080fd5b5061052c602e5481565b348015610a2357600080fd5b50610a37610a323660046147ed565b613259565b60405161044191906150ea565b348015610a5057600080fd5b5061045f6132c4565b348015610a6557600080fd5b50610435610a7436600461512e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610aae57600080fd5b50610ac2610abd3660046147ed565b613322565b6040516104419190615158565b348015610adb57600080fd5b5061040e610aea366004614c7a565b61349d565b348015610afb57600080fd5b5061040e610b0a3660046147ed565b613516565b6000610b19611a55565b610b355760405162461bcd60e51b81526004016103ee906151aa565b60005483610b7b5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b60448201526064016103ee565b610d05610b8885836151d9565b1115610bcc5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b60448201526064016103ee565b60305460ff1615610cf957600a546001600160a01b03163314610cbe57602d5433600090815260056020526040908190205486911c6001600160401b0316610c1491906151d9565b1115610c625760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103ee565b34602e5485610c7191906151f1565b14610cbe5760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103ee565b333214610cf95760405162461bcd60e51b8152602060048201526009602482015268454f4173206f6e6c7960b81b60448201526064016103ee565b6000610d066014866146dc565b90506000610d15601487615210565b905060005b82811015610d3f57610d2d866014613695565b80610d3781615224565b915050610d1a565b508015610d5057610d508582613695565b50909150505b92915050565b60006301ffc9a760e01b6001600160e01b031983161480610d8d57506380ac58cd60e01b6001600160e01b03198316145b80610d565750506001600160e01b031916635b5e139f60e01b1490565b606060028054610db99061523d565b80601f0160208091040260200160405190810160405280929190818152602001828054610de59061523d565b8015610e325780601f10610e0757610100808354040283529160200191610e32565b820191906000526020600020905b815481529060010190602001808311610e1557829003601f168201915b5050505050905090565b6000610e47826137c1565b610e64576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610e8b82611f25565b9050336001600160a01b03821614610ec457610ea78133610a74565b610ec4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600b602052604090208054606091610f619184908110610f4757610f47615271565b6000918252602090912001546001600160a01b03166137e8565b9392505050565b610f706137f8565b602c5460ff1615610f935760405162461bcd60e51b81526004016103ee90615287565b805180518291603591610fad918391602090910190614588565b506020828101518051610fc69260018501920190614588565b5060408201518051610fe2916002840191602090910190614588565b5060608201518051610ffe916003840191602090910190614588565b506080820151805161101a916004840191602090910190614588565b5060a0820151600582015560c08201518051611040916006840191602090910190614588565b50505050565b61104e6137f8565b602c5460ff16156110715760405162461bcd60e51b81526004016103ee90615287565b60408051606080820183528351825260208085015181840152908401511515828401526000868152600c825283812086825282529290922081518051929391926110be9284920190614588565b5060208281015180516110d79260018501920190614588565b50604091820151600291909101805460ff19169115159190911790556000848152600b60209081528282208054845181840281018401909552808552929392909183018282801561115157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611133575b505050505090508160800151156111b757808260a001518151811061117857611178615271565b602002602001015181848151811061119257611192615271565b60200260200101906001600160a01b031690816001600160a01b0316815250506111f7565b6111c48260400151613852565b8184815181106111d6576111d6615271565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6000848152600b6020908152604090912082516112169284019061460c565b50505b505050565b600854839060ff1661123a576112358484846138b7565b611040565b6daaeb6d7670e522a718067333cd4e3b1561137f57336001600160a01b0382160361126a576112358484846138b7565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112dd91906152b3565b80156113605750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561133c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136091906152b3565b61137f57604051633b79c77360e21b81523360048201526024016103ee565b6110408484846138b7565b6035805481906113999061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546113c59061523d565b80156114125780601f106113e757610100808354040283529160200191611412565b820191906000526020600020905b8154815290600101906020018083116113f557829003601f168201915b5050505050908060010180546114279061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546114539061523d565b80156114a05780601f10611475576101008083540402835291602001916114a0565b820191906000526020600020905b81548152906001019060200180831161148357829003601f168201915b5050505050908060020180546114b59061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546114e19061523d565b801561152e5780601f106115035761010080835404028352916020019161152e565b820191906000526020600020905b81548152906001019060200180831161151157829003601f168201915b5050505050908060030180546115439061523d565b80601f016020809104026020016040519081016040528092919081815260200182805461156f9061523d565b80156115bc5780601f10611591576101008083540402835291602001916115bc565b820191906000526020600020905b81548152906001019060200180831161159f57829003601f168201915b5050505050908060040180546115d19061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546115fd9061523d565b801561164a5780601f1061161f5761010080835404028352916020019161164a565b820191906000526020600020905b81548152906001019060200180831161162d57829003601f168201915b5050505050908060050154908060060180546116659061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546116919061523d565b80156116de5780601f106116b3576101008083540402835291602001916116de565b820191906000526020600020905b8154815290600101906020018083116116c157829003601f168201915b5050505050905087565b6116f06137f8565b6002600954036117125760405162461bcd60e51b81526004016103ee906152d0565b600260095547600061271061172860fa82615307565b61173290846151f1565b61173c91906146dc565b90506000806000611755600a546001600160a01b031690565b905073ea208da933c43857683c04bc76e3fd331d7bfdf761177f8161177a8789615307565b613a6b565b602b54156118705760005b602b5481101561186e57602b81815481106117a7576117a7615271565b906000526020600020906004020160030154846117c491906151d9565b93506000602b82815481106117db576117db615271565b906000526020600020906004020160020160009054906101000a90046001600160a01b03169050612710602b838154811061181857611818615271565b9060005260206000209060040201600301546127106118379190615307565b61184190896151f1565b61184b91906146dc565b955061185b8161177a888a615307565b508061186681615224565b91505061178a565b505b47955061187d8287613a6b565b5050600160095550505050565b6118926137f8565b6030805460ff19811660ff90911615179055565b600854839060ff166118bd57611235848484613b84565b6daaeb6d7670e522a718067333cd4e3b15611a0257336001600160a01b038216036118ed57611235848484613b84565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561193c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196091906152b3565b80156119e35750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156119bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e391906152b3565b611a0257604051633b79c77360e21b81523360048201526024016103ee565b611040848484613b84565b611a156137f8565b6028805460ff19811660ff90911615179055565b611a316137f8565b603355565b611a3e6137f8565b8051611a5190602f906020840190614588565b5050565b6000610d05611a6360005490565b108015611a93575060305460ff1680611a7e575060345460ff165b80611a935750600a546001600160a01b031633145b905090565b611aa06137f8565b602c5460ff1615611ac35760405162461bcd60e51b81526004016103ee90615287565b8051611a51906029906020840190614588565b6060611ae1826137c1565b611b1d5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103ee565b6000611b4b611b2e600960046151f1565b604080518281016060018252910181526000602090910190815290565b604080516009808252610140820190925291925060009190602082016101208036833750506040805160098082526101408201909252929350600092915060208201610120803683370190505090506000610d05602a54611bac9190615210565b905060005b6009811015611df2576000848281518110611bce57611bce615271565b60200260200101519050838281518110611bea57611bea615271565b602002602001015115156000151503611cde576000611c0889613b9f565b62ffffff169050600081600003611c6157610d05600f85600f8110611c2f57611c2f615271565b015486611c3c878e6151d9565b611c4691906151d9565b611c5091906151f1565b611c5a9190615210565b9050611cb0565b610d05828b611c7087826151d9565b60408051602081019490945283019190915260608201526080016040516020818303038152906040528051906020012060001c611cad9190615210565b90505b611cba8185613bb4565b925082878581518110611ccf57611ccf615271565b60200260200101818152505050505b6000828152600e6020908152604080832084845290915290205415611ddf576000828152600e60209081526040808320848452909152902080546001908110611d2957611d29615271565b6000918252602080832090910154848352600e82526040808420858552909252908220805491928892611d5e57611d5e615271565b906000526020600020015481518110611d7957611d79615271565b6020908102919091018101919091526000838152600e825260408082208483529092529081208054600192879291611db357611db3615271565b906000526020600020015481518110611dce57611dce615271565b911515602092830291909101909101525b5080611dea81615224565b915050611bb1565b5060005b8351811015611f1a57600a848281518110611e1357611e13615271565b60200260200101511015611e4a57604080518082019091526002815261030360f41b6020820152611e45908690613c50565b611e8f565b6064848281518110611e5e57611e5e615271565b60200260200101511015611e8f576040805180820190915260018152600360fc1b6020820152611e8f908690613c50565b6103e7848281518110611ea457611ea4615271565b60200260200101511115611edc5760408051808201909152600381526239393960e81b6020820152611ed7908690613c50565b611f08565b611f08611f01858381518110611ef457611ef4615271565b6020026020010151613cd5565b8690613c50565b80611f1281615224565b915050611df6565b509295945050505050565b6000610d5682613d19565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b91830191909152606091611f72908290613c50565b6000805b60098110156120c0576000611fb3611fae87611f938560036151f1565b611f9e8660036151f1565b611fa99060036151d9565b613d80565b613e4c565b6000838152600c6020908152604080832060ff94851680855292528220600201549093509091161515900361207857821561200b576040805180820190915260018152600b60fa1b602082015261200b908590613c50565b6120696027838154811061202157612021615271565b60009182526020808320868452600c82526040808520878652835293849020935161205294939091019291016153b7565b60408051601f198184030181529190528590613c50565b82151560000361207857600192505b61208460016009615307565b82036120ad576040805180820190915260018152605d60f81b60208201526120ad908590613c50565b50806120b881615224565b915050611f76565b50909392505050565b602c5460ff16156120ec5760405162461bcd60e51b81526004016103ee90615287565b6120f46137f8565b602c805460ff19166001179055565b602f80546121109061523d565b80601f016020809104026020016040519081016040528092919081815260200182805461213c9061523d565b80156121895780601f1061215e57610100808354040283529160200191612189565b820191906000526020600020905b81548152906001019060200180831161216c57829003601f168201915b505050505081565b6000610f6161219f84611ad6565b6121a884611ad6565b613f0a565b6121b56137f8565b603255565b60006001600160a01b0382166121e3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6122106137f8565b61221a6000613f63565b565b6122246137f8565b602d55565b6122316137f8565b603155565b602b818154811061224657600080fd5b90600052602060002090600402016000915090508060000180546122699061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546122959061523d565b80156122e25780601f106122b7576101008083540402835291602001916122e2565b820191906000526020600020905b8154815290600101906020018083116122c557829003601f168201915b5050505050908060010180546122f79061523d565b80601f01602080910402602001604051908101604052809291908181526020018280546123239061523d565b80156123705780601f1061234557610100808354040283529160200191612370565b820191906000526020600020905b81548152906001019060200180831161235357829003601f168201915b50505050600283015460039093015491926001600160a01b031691905084565b6040805162020060810190915262020040815260006020909101818152606091906123d46040518060c0016040528060818152602001615bad608191398290613c50565b61240060296040516020016123e9919061540d565b60408051601f198184030181529190528290613c50565b60005b61240f60016009615307565b8110156124cb57612433611fae866124288460036151f1565b611f9e8560036151f1565b60ff1692506124b9600c6000838152602001908152602001600020600085815260200190815260200160002060010161249161248c600b60008681526020019081526020016000208781548110610f4757610f47615271565b613fb5565b6040516020016124a292919061543f565b60408051601f198184030181529190528390613c50565b806124c381615224565b915050612403565b506124f6611fae8560036124e06009826151f1565b6124ea9190615307565b611fa9600960036151f1565b60ff169150612578600c600061250e60016009615307565b8152602001908152602001600020600084815260200190815260200160002060010161256761248c600b6000600160096125489190615307565b81526020019081526020016000208681548110610f4757610f47615271565b6040516020016123e9929190615499565b61258181613fb5565b60405160200161259191906155fd565b60405160208183030381529060405292505050919050565b6125b16137f8565b6034805460ff19811660ff90911615179055565b606060038054610db99061523d565b6125dc6137f8565b602c5460ff16156125ff5760405162461bcd60e51b81526004016103ee90615287565b8051601e836009811061261457612614615271565b01541461267b5760405162461bcd60e51b815260206004820152602f60248201527f5472616974732073697a6520646f6573206e6f74206d6174636820746965727360448201526e040ccdee440e8d0d2e640d2dcc8caf608b1b60648201526084016103ee565b600081516001600160401b038111156126965761269661480f565b6040519080825280602002602001820160405280156126bf578160200160208202803683370190505b50905060005b82518110156128a1578281815181106126e0576126e0615271565b6020026020010151608001511561275f578183828151811061270457612704615271565b602002602001015160a001518151811061272057612720615271565b602002602001015182828151811061273a5761273a615271565b60200260200101906001600160a01b031690816001600160a01b0316815250506127b8565b61278583828151811061277457612774615271565b602002602001015160400151613852565b82828151811061279757612797615271565b60200260200101906001600160a01b031690816001600160a01b0316815250505b60405180606001604052808483815181106127d5576127d5615271565b60200260200101516000015181526020018483815181106127f8576127f8615271565b602002602001015160200151815260200184838151811061281b5761281b615271565b6020908102919091018101516060015115159091526000868152600c825260408082208583528352902082518051919261285a92849290910190614588565b5060208281015180516128739260018501920190614588565b50604091909101516002909101805460ff19169115159190911790558061289981615224565b9150506126c5565b506000838152600b6020908152604090912082516110409284019061460c565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006129a5838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506031546040516bffffffffffffffffffffffff1960608b901b166020820152909250603401905060405160208183030381529060405280519060200120614107565b949350505050565b6129b56137f8565b602c5460ff16156129d85760405162461bcd60e51b81526004016103ee90615287565b60005b8151811015611a51576040518060400160405280838381518110612a0157612a01615271565b602002602001015160200151600081518110612a1f57612a1f615271565b60200260200101518152602001838381518110612a3e57612a3e615271565b602002602001015160200151600181518110612a5c57612a5c615271565b6020026020010151815250600e6000848481518110612a7d57612a7d615271565b602002602001015160000151600081518110612a9b57612a9b615271565b602002602001015181526020019081526020016000206000848481518110612ac557612ac5615271565b602002602001015160000151600181518110612ae357612ae3615271565b60200260200101518152602001908152602001600020906002612b07929190614661565b5080612b1281615224565b9150506129db565b600854849060ff16612b3757612b328585858561411d565b611216565b6daaeb6d7670e522a718067333cd4e3b15612c7d57336001600160a01b03821603612b6857612b328585858561411d565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612bb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bdb91906152b3565b8015612c5e5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612c3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c5e91906152b3565b612c7d57604051633b79c77360e21b81523360048201526024016103ee565b6112168585858561411d565b6000600260095403612cad5760405162461bcd60e51b81526004016103ee906152d0565b6002600955612cba611a55565b612cd65760405162461bcd60e51b81526004016103ee906151aa565b60305460ff16158015612cf45750600a546001600160a01b03163314155b15612e1957612d0433848461292d565b612d445760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b60448201526064016103ee565b60335433600090815260056020526040908190205486911c6001600160401b0316612d6f91906151d9565b1115612dbd5760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103ee565b3460325485612dcc91906151f1565b14612e195760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103ee565b612e238433610b0f565b6001600955949350505050565b6000600260095403612e545760405162461bcd60e51b81526004016103ee906152d0565b6002600955612e61611a55565b612e7d5760405162461bcd60e51b81526004016103ee906151aa565b60305460ff1680612e985750600a546001600160a01b031633145b612ee45760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064016103ee565b612eee8383610b0f565b60016009559392505050565b6060610d5661085a83611ad6565b6060612f13826137c1565b612f4f5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103ee565b60008052600b6020527fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f7654612fc65760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e20616464656400000000000060448201526064016103ee565b6000612fd183611ad6565b604080516202006081018252620200408152600060209182019081528251808401909352601983527f7b226e616d65223a224c617276614469636b62757474732023000000000000009183019190915291925061302f908290613c50565b61304e61303b85613cd5565b6040516123e99190603690602001615642565b6000602f805461305d9061523d565b905011801561307a57506000848152600d602052604090205460ff165b156130a5576130a0602f61308d86613cd5565b846040516020016123e993929190615690565b613168565b60408051602081019091526000815260285460ff16156131465760006130ca84612390565b90506130f4816040516020016130e0919061570b565b604051602081830303815290604052613fb5565b60405160200161310491906155fd565b60405160208183030381529060405291506131408160405160200161312991906157f6565b60408051601f198184030181529190528490613c50565b50613152565b61314f83612390565b90505b613166816040516020016124a2919061583d565b505b61318461317483611f30565b6040516020016123e99190615880565b61318d81613fb5565b60405160200161259191906158c1565b6131a56137f8565b6008805460ff19811660ff90911615179055565b6131c282611f25565b6001600160a01b0316336001600160a01b0316146132395760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c792074686520746f6b656e206f776e65722063616e207365742074686560448201526d081c995b99195c881b595d1a1bd960921b60648201526084016103ee565b6000918252600d6020526040909120805460ff1916911515919091179055565b6000828152600e602090815260408083208484528252918290208054835181840281018401909452808452606093928301828280156132b757602002820191906000526020600020905b8154815260200190600101908083116132a3575b5050505050905092915050565b603a546060906132fe906035906036906037906038906039906132e690613cd5565b6040516130e096959493929190603b90602001615906565b60405160200161330e91906158c1565b604051602081830303815290604052905090565b604080516060808201835280825260208201526000918101919091526000838152600c60209081526040808320858452909152908190208151606081019092528054829082906133719061523d565b80601f016020809104026020016040519081016040528092919081815260200182805461339d9061523d565b80156133ea5780601f106133bf576101008083540402835291602001916133ea565b820191906000526020600020905b8154815290600101906020018083116133cd57829003601f168201915b505050505081526020016001820180546134039061523d565b80601f016020809104026020016040519081016040528092919081815260200182805461342f9061523d565b801561347c5780601f106134515761010080835404028352916020019161347c565b820191906000526020600020905b81548152906001019060200180831161345f57829003601f168201915b50505091835250506002919091015460ff1615156020909101529392505050565b6134a56137f8565b6001600160a01b03811661350a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ee565b61351381613f63565b50565b602c5460ff16156135395760405162461bcd60e51b81526004016103ee90615287565b6135438282612191565b61358f5760405162461bcd60e51b815260206004820152601d60248201527f416c6c20746f6b656e73206d757374206265206475706c69636174657300000060448201526064016103ee565b600081831161359e57816135a0565b825b90506135b4600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614613650576135d581611f25565b6001600160a01b0316336001600160a01b0316146136505760405162461bcd60e51b815260206004820152603260248201527f4f6e6c792074686520746f6b656e206f776e6572206f7220636f6e7472616374604482015271081bdddb995c8818d85b881c994b5c9bdb1b60721b60648201526084016103ee565b61365981614161565b61366c6136678260016151d9565b6137c1565b156136845761368461367f8260016151d9565b614161565b61121981613690614191565b614202565b60008054908290036136ba5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600090815260056020526040812080546801000000000000000185020190556137119084906136f4908281614257565b6001851460e11b174260a01b176001600160a01b03919091161790565b6000828152600460205260408120919091556001600160a01b0384169083830190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461379757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161375f565b50816000036137b857604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000805482108015610d56575050600090815260046020526040902054600160e01b161590565b6060610d5682600160001961427a565b600a546001600160a01b0316331461221a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ee565b60008061387d836040516020016138699190615a2f565b60405160208183030381529060405261432f565b90508051602082016000f091506001600160a01b0382166138b15760405163046a55db60e11b815260040160405180910390fd5b50919050565b60006138c282613d19565b9050836001600160a01b0316816001600160a01b0316146138f55760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417613942576139258633610a74565b61394257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661396957604051633a954ecd60e21b815260040160405180910390fd5b801561397457600082555b6001600160a01b038087166000908152600560205260408082208054600019019055918716815220805460010190556139cd856139b2888287614257565b600160e11b174260a01b176001600160a01b03919091161790565b600085815260046020526040812091909155600160e11b84169003613a2257600184016000818152600460205260408120549003613a20576000548114613a205760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b80471015613abb5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016103ee565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613b08576040519150601f19603f3d011682016040523d82523d6000602084013e613b0d565b606091505b50509050806112195760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016103ee565b61121983838360405180602001604052806000815250612b1a565b6000613baa8261435b565b6060015192915050565b600080805b601e8460098110613bcc57613bcc615271565b0154811015610410576000601e8560098110613bea57613bea615271565b018281548110613bfc57613bfc615271565b90600052602060002001549050828610158015613c215750613c1e81846151d9565b86105b15613c3057509150610d569050565b613c3a81846151d9565b9250508080613c4890615224565b915050613bb9565b601f1982015182518251603f19909201918290613c6d90836151d9565b1115613ccb5760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b60648201526084016103ee565b61104084846143d2565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480613cef5750819003601f19909101908152919050565b600081600054811015613d675760008181526004602052604081205490600160e01b82169003613d65575b80600003610f61575060001901600081815260046020526040902054613d44565b505b604051636f96cda160e11b815260040160405180910390fd5b6060836000613d8f8585615307565b6001600160401b03811115613da657613da661480f565b6040519080825280601f01601f191660200182016040528015613dd0576020820181803683370190505b509050845b84811015613e4257828181518110613def57613def615271565b01602001516001600160f81b03191682613e098884615307565b81518110613e1957613e19615271565b60200101906001600160f81b031916908160001a90535080613e3a81615224565b915050613dd5565b5095945050505050565b60008181805b82518160ff161015613f02576030838260ff1681518110613e7557613e75615271565b016020015160f81c10801590613ea857506039838260ff1681518110613e9d57613e9d615271565b016020015160f81c11155b15613ef057613eb8600a83615a55565b91506030838260ff1681518110613ed157613ed1615271565b0160200151613ee3919060f81c615a7e565b613eed9083615aa1565b91505b80613efa81615ac6565b915050613e52565b509392505050565b600081604051602001613f1d9190615ae5565b6040516020818303038152906040528051906020012083604051602001613f449190615ae5565b6040516020818303038152906040528051906020012014905092915050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60608151600003613fd457505060408051602081019091526000815290565b6000604051806060016040528060408152602001615c2e604091399050600060038451600261400391906151d9565b61400d91906146dc565b6140189060046151f1565b6001600160401b0381111561402f5761402f61480f565b6040519080825280601f01601f191660200182016040528015614059576020820181803683370190505b509050600182016020820185865187015b808210156140c5576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184535060018301925061406a565b50506003865106600181146140e157600281146140f4576140fc565b603d6001830353603d60028303536140fc565b603d60018303535b509195945050505050565b6000826141148584614408565b14949350505050565b61412884848461121e565b6001600160a01b0383163b15611040576141448484848461444d565b611040576040516368d2bf6b60e11b815260040160405180910390fd5b60008181526004602052604081205490036135135761417f81613d19565b60008281526004602052604090205550565b6000803a4342446141a3600184615307565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6bffffffffffffffffffffffff191660c082015260d40160408051601f19818403018152919052805160209091012092915050565b600082815260046020526040812054908190036142315760405162d5815360e01b815260040160405180910390fd5b6000928352600460205260409092206001600160e81b039290921660e89190911b179055565b600060e882811c9061426a868684614538565b62ffffff16901b95945050505050565b6060833b600081900361429d575050604080516020810190915260008152610f61565b808411156142bb575050604080516020810190915260008152610f61565b838310156142ed5760405163162544fd60e11b81526004810182905260248101859052604481018490526064016103ee565b83830384820360008282106143025782614304565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b6060815182604051602001614345929190615b01565b6040516020818303038152906040529050919050565b604080516080810182526000808252602082018190529181018290526060810191909152610d5661438b83613d19565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b8051602082019150808201602084510184015b818410156143fd5783518152602093840193016143e5565b505082510190915250565b600081815b8451811015613f02576144398286838151811061442c5761442c615271565b6020026020010151614559565b91508061444581615224565b91505061440d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290614482903390899088908890600401615b52565b6020604051808303816000875af19250505080156144bd575060408051601f3d908101601f191682019092526144ba91810190615b8f565b60015b61451b573d8080156144eb576040519150601f19603f3d011682016040523d82523d6000602084013e6144f0565b606091505b508051600003614513576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60006001600160a01b0384161561454f57816129a5565b5060009392505050565b6000818310614575576000828152602084905260409020610f61565b6000838152602083905260409020610f61565b8280546145949061523d565b90600052602060002090601f0160209004810192826145b657600085556145fc565b82601f106145cf57805160ff19168380011785556145fc565b828001600101855582156145fc579182015b828111156145fc5782518255916020019190600101906145e1565b5061460892915061469b565b5090565b8280548282559060005260206000209081019282156145fc579160200282015b828111156145fc57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061462c565b8280548282559060005260206000209081019282156145fc57916020028201828111156145fc5782518255916020019190600101906145e1565b5b80821115614608576000815560010161469c565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826146eb576146eb6146b0565b500490565b6001600160e01b03198116811461351357600080fd5b60006020828403121561471857600080fd5b8135610f61816146f0565b60005b8381101561473e578181015183820152602001614726565b838111156110405750506000910152565b60008151808452614767816020860160208601614723565b601f01601f19169290920160200192915050565b602081526000610f61602083018461474f565b6000602082840312156147a057600080fd5b5035919050565b80356001600160a01b03811681146147be57600080fd5b919050565b600080604083850312156147d657600080fd5b6147df836147a7565b946020939093013593505050565b6000806040838503121561480057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156148475761484761480f565b60405290565b60405160c081016001600160401b03811182821017156148475761484761480f565b604080519081016001600160401b03811182821017156148475761484761480f565b604051601f8201601f191681016001600160401b03811182821017156148b9576148b961480f565b604052919050565b600082601f8301126148d257600080fd5b81356001600160401b038111156148eb576148eb61480f565b6148fe601f8201601f1916602001614891565b81815284602083860101111561491357600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561494257600080fd5b81356001600160401b038082111561495957600080fd5b9083019060e0828603121561496d57600080fd5b614975614825565b82358281111561498457600080fd5b614990878286016148c1565b8252506020830135828111156149a557600080fd5b6149b1878286016148c1565b6020830152506040830135828111156149c957600080fd5b6149d5878286016148c1565b6040830152506060830135828111156149ed57600080fd5b6149f9878286016148c1565b606083015250608083013582811115614a1157600080fd5b614a1d878286016148c1565b60808301525060a083013560a082015260c083013582811115614a3f57600080fd5b614a4b878286016148c1565b60c08301525095945050505050565b801515811461351357600080fd5b80356147be81614a5a565b600060c08284031215614a8557600080fd5b614a8d61484d565b905081356001600160401b0380821115614aa657600080fd5b614ab2858386016148c1565b83526020840135915080821115614ac857600080fd5b614ad4858386016148c1565b60208401526040840135915080821115614aed57600080fd5b50614afa848285016148c1565b604083015250614b0c60608301614a68565b6060820152614b1d60808301614a68565b608082015260a082013560a082015292915050565b600080600060608486031215614b4757600080fd5b833592506020840135915060408401356001600160401b03811115614b6b57600080fd5b614b7786828701614a73565b9150509250925092565b600080600060608486031215614b9657600080fd5b614b9f846147a7565b9250614bad602085016147a7565b9150604084013590509250925092565b60e081526000614bd060e083018a61474f565b8281036020840152614be2818a61474f565b90508281036040840152614bf6818961474f565b90508281036060840152614c0a818861474f565b90508281036080840152614c1e818761474f565b90508460a084015282810360c0840152614c38818561474f565b9a9950505050505050505050565b600060208284031215614c5857600080fd5b81356001600160401b03811115614c6e57600080fd5b6129a5848285016148c1565b600060208284031215614c8c57600080fd5b610f61826147a7565b608081526000614ca8608083018761474f565b8281036020840152614cba818761474f565b6001600160a01b0395909516604084015250506060015292915050565b60006001600160401b03821115614cf057614cf061480f565b5060051b60200190565b60008060408385031215614d0d57600080fd5b823591506020808401356001600160401b0380821115614d2c57600080fd5b818601915086601f830112614d4057600080fd5b8135614d53614d4e82614cd7565b614891565b81815260059190911b83018401908481019089831115614d7257600080fd5b8585015b83811015614daa57803585811115614d8e5760008081fd5b614d9c8c89838a0101614a73565b845250918601918601614d76565b508096505050505050509250929050565b60008060408385031215614dce57600080fd5b614dd7836147a7565b91506020830135614de781614a5a565b809150509250929050565b60008083601f840112614e0457600080fd5b5081356001600160401b03811115614e1b57600080fd5b6020830191508360208260051b8501011115614e3657600080fd5b9250929050565b600080600060408486031215614e5257600080fd5b614e5b846147a7565b925060208401356001600160401b03811115614e7657600080fd5b614e8286828701614df2565b9497909650939450505050565b600082601f830112614ea057600080fd5b81356020614eb0614d4e83614cd7565b82815260059290921b84018101918181019086841115614ecf57600080fd5b8286015b84811015614eea5780358352918301918301614ed3565b509695505050505050565b60006020808385031215614f0857600080fd5b82356001600160401b0380821115614f1f57600080fd5b818501915085601f830112614f3357600080fd5b8135614f41614d4e82614cd7565b81815260059190911b83018401908481019088831115614f6057600080fd5b8585015b83811015614ff357803585811115614f7c5760008081fd5b86016040818c03601f1901811315614f945760008081fd5b614f9c61486f565b8983013588811115614fae5760008081fd5b614fbc8e8c83870101614e8f565b825250908201359087821115614fd25760008081fd5b614fe08d8b84860101614e8f565b818b015285525050918601918601614f64565b5098975050505050505050565b6000806000806080858703121561501657600080fd5b61501f856147a7565b935061502d602086016147a7565b92506040850135915060608501356001600160401b0381111561504f57600080fd5b61505b878288016148c1565b91505092959194509250565b60008060006040848603121561507c57600080fd5b8335925060208401356001600160401b03811115614e7657600080fd5b600080604083850312156150ac57600080fd5b823591506150bc602084016147a7565b90509250929050565b600080604083850312156150d857600080fd5b823591506020830135614de781614a5a565b6020808252825182820181905260009190848201906040850190845b8181101561512257835183529284019291840191600101615106565b50909695505050505050565b6000806040838503121561514157600080fd5b61514a836147a7565b91506150bc602084016147a7565b602081526000825160606020840152615174608084018261474f565b90506020840151601f19848303016040850152615191828261474f565b9150506040840151151560608401528091505092915050565b6020808252601590820152744d696e74696e67206973206e6f742061637469766560581b604082015260600190565b600082198211156151ec576151ec6146c6565b500190565b600081600019048311821515161561520b5761520b6146c6565b500290565b60008261521f5761521f6146b0565b500690565b600060018201615236576152366146c6565b5060010190565b600181811c9082168061525157607f821691505b6020821081036138b157634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b6000602082840312156152c557600080fd5b8151610f6181614a5a565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082821015615319576153196146c6565b500390565b8054600090600181811c908083168061533857607f831692505b6020808410820361535957634e487b7160e01b600052602260045260246000fd5b81801561536d576001811461537e576153ab565b60ff198616895284890196506153ab565b60008881526020902060005b868110156153a35781548b82015290850190830161538a565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b815260006153db600f83018561531e565b6a1116113b30b63ab2911d1160a91b81526153f9600b82018561531e565b61227d60f01b815260020195945050505050565b6000615419828461531e565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b81526000615459600583018561531e565b670ed8985cd94d8d0b60c21b8152835161547a816008840160208801614723565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b815260006154b3600583018561531e565b670ed8985cd94d8d0b60c21b815283516154d4816008840160208801614723565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000081526000825161563581601a850160208701614723565b91909101601a0192915050565b60008351615654818460208801614723565b701116113232b9b1b934b83a34b7b7111d1160791b90830190815261567c601182018561531e565b61088b60f21b815260020195945050505050565b681134b6b0b3b2911d1160b91b815260006156ae600983018661531e565b84516156be818360208901614723565b643f646e613d60d81b910190815283516156df816005840160208801614723565b71099b995d1ddbdc9acf5b585a5b9b995d088b60721b6005929091019182015260170195945050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b6080820152600082516157cf816091850160208701614723565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b711139bb33afb4b6b0b3b2afb230ba30911d1160711b81528151600090615824816012850160208701614723565b61088b60f21b6012939091019283015250601401919050565b6d1134b6b0b3b2afb230ba30911d1160911b8152815160009061586781600e850160208701614723565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b815281516000906158a981600d850160208701614723565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516158f981601d850160208701614723565b91909101601d0192915050565b683d913730b6b2911d1160b91b81526000615924600983018a61531e565b701116113232b9b1b934b83a34b7b7111d1160791b8152615948601182018a61531e565b6a11161134b6b0b3b2911d1160a91b81529050615968600b82018961531e565b6b1116113130b73732b9111d1160a11b81529050615989600c82018861531e565b7211161132bc3a32b93730b62fb634b735911d1160691b815290506159b1601382018761531e565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a00000000815284516159e981601c840160208901614723565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c9290910191820152615a16602e82018561531e565b61227d60f01b81526002019a9950505050505050505050565b6000815260008251615a48816001850160208701614723565b9190910160010192915050565b600060ff821660ff84168160ff0481118215151615615a7657615a766146c6565b029392505050565b600060ff821660ff841680821015615a9857615a986146c6565b90039392505050565b600060ff821660ff84168060ff03821115615abe57615abe6146c6565b019392505050565b600060ff821660ff8103615adc57615adc6146c6565b60010192915050565b60008251615af7818460208701614723565b9190910192915050565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b60058201528151600090615b4481600e850160208701614723565b91909101600e019392505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615b859083018461474f565b9695505050505050565b600060208284031215615ba157600080fd5b8151610f61816146f056fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723a4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220ccc8a5c341100fa2edc15a77a75343103dd58c463dcd6680d5dce85d28c8b7a364736f6c634300080e0033
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.