ETH Price: $3,304.09 (-3.14%)
Gas: 13 Gwei

Token

Cutie Cakes (CAKES)
 

Overview

Max Total Supply

756 CAKES

Holders

180

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
espress0.eth
Balance
1 CAKES
0xaf2ab6d0e8f69656e7c8c967351de32f0d60fe76
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IndelibleERC721A

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : IndelibleERC721A.sol
// SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;

    import "erc721a/contracts/ERC721A.sol";
    import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
    import "@openzeppelin/contracts/access/Ownable.sol";
    import "@openzeppelin/contracts/utils/Base64.sol";
    import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
    import "@openzeppelin/contracts/utils/Address.sol";
    import "./SSTORE2.sol";
    import "./DynamicBuffer.sol";
    import "./HelperLib.sol";

    contract IndelibleERC721A is ERC721A, ReentrancyGuard, Ownable {
        using HelperLib for uint256;
        using DynamicBuffer for bytes;

        struct TraitDTO {
            string name;
            string mimetype;
            bytes data;
        }
        
        struct Trait {
            string name;
            string mimetype;
        }

        struct ContractData {
            string name;
            string description;
            string image;
            string banner;
            string website;
            uint256 royalties;
            string royaltiesRecipient;
        }

        mapping(uint256 => address[]) internal _traitDataPointers;
        mapping(uint256 => mapping(uint256 => Trait)) internal _traitDetails;
        mapping(uint256 => bool) internal _renderTokenOffChain;

        uint256 private constant DEVELOPER_FEE = 250; // of 10,000 = 2.5%
        uint256 private constant NUM_LAYERS = 8;
        uint256 private constant MAX_BATCH_MINT = 20;
        uint256[][NUM_LAYERS] private TIERS;
        string[] private LAYER_NAMES = [unicode"Topping", unicode"Flame", unicode"Candles", unicode"Filling", unicode"Special", unicode"Base", unicode"Plate", unicode"Background"];
        bool private shouldWrapSVG = true;
        string private backgroundColor = "transparent";

        bool public isContractSealed;
        uint256 public constant maxSupply = 3333;
        uint256 public maxPerAddress = 100;
        uint256 public publicMintPrice = 0.001 ether;
        string public baseURI = "";
        bool public isPublicMintActive;
        
        ContractData public contractData = ContractData(unicode"Cutie Cakes", unicode"3333 cute cakes on ETH. Stake your Cakes in NFTx for yield!", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/profile/4eef753b-e456-4432-9464-6e021935351e", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/banner/4eef753b-e456-4432-9464-6e021935351e", "", 600, "0x1B3FEA07590E63Ce68Cb21951f3C133a35032473");

        constructor() ERC721A(unicode"Cutie Cakes", unicode"CAKES") {
            TIERS[0] = [300,300,313,455,655,655,655];
TIERS[1] = [500,2833];
TIERS[2] = [1111,1111,1111];
TIERS[3] = [400,600,750,783,800];
TIERS[4] = [500,500,1333];
TIERS[5] = [13,24,90,800,800,800,806];
TIERS[6] = [733,800,900,900];
TIERS[7] = [200,300,333,400,400,400,400,400,500];
        }

        modifier whenMintActive() {
            require(isMintActive(), "Minting is not active");
            _;
        }

        modifier whenUnsealed() {
            require(!isContractSealed, "Contract is sealed");
            _;
        }

        function rarityGen(uint256 _randinput, uint256 _rarityTier)
            internal
            view
            returns (uint256)
        {
            uint256 currentLowerBound = 0;
            for (uint256 i = 0; i < TIERS[_rarityTier].length; i++) {
                uint256 thisPercentage = TIERS[_rarityTier][i];
                if (
                    _randinput >= currentLowerBound &&
                    _randinput < currentLowerBound + thisPercentage
                ) return i;
                currentLowerBound = currentLowerBound + thisPercentage;
            }

            revert();
        }
        
        function entropyForExtraData() internal view returns (uint24) {
            uint256 randomNumber = uint256(
                keccak256(
                    abi.encodePacked(
                        tx.gasprice,
                        block.number,
                        block.timestamp,
                        block.difficulty,
                        blockhash(block.number - 1),
                        msg.sender
                    )
                )
            );
            return uint24(randomNumber);
        }
        
        function stringCompare(string memory a, string memory b) internal pure returns (bool) {
            return keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b));
        }

        function tokensAreDuplicates(uint tokenIdA, uint tokenIdB) public view returns (bool) {
            return stringCompare(
                tokenIdToHash(tokenIdA),
                tokenIdToHash(tokenIdB)
            );
        }
        
        function reRollDuplicate(
            uint tokenIdA,
            uint tokenIdB
        ) public whenUnsealed {
            require(tokensAreDuplicates(tokenIdA, tokenIdB), "All tokens must be duplicates");

            uint largerTokenId = tokenIdA > tokenIdB ? tokenIdA : tokenIdB;

            if (msg.sender != owner()) {
                require(msg.sender == ownerOf(largerTokenId), "Only the token owner or contract owner can re-roll");
            }
            
            _initializeOwnershipAt(largerTokenId);
            if (_exists(largerTokenId + 1)) {
                _initializeOwnershipAt(largerTokenId + 1);
            }

            _setExtraDataAt(largerTokenId, entropyForExtraData());
        }
        
        function _extraData(
            address from,
            address to,
            uint24 previousExtraData
        ) internal view virtual override returns (uint24) {
            return from == address(0) ? entropyForExtraData() : previousExtraData;
        }

        function getTokenSeed(uint256 _tokenId) internal view returns (uint24) {
            return _ownershipOf(_tokenId).extraData;
        }

        function tokenIdToHash(
            uint256 _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);

            for (uint256 i = 0; i < NUM_LAYERS; i++) {
                uint256 _randinput = uint256(
                    uint256(
                        keccak256(
                            abi.encodePacked(
                                getTokenSeed(_tokenId),
                                _tokenId,
                                _tokenId + i
                            )
                        )
                    ) % maxSupply
                );

                uint256 rarity = rarityGen(_randinput, i);

                if (rarity < 10) {
                    hashBytes.appendSafe("00");
                } else if (rarity < 100) {
                    hashBytes.appendSafe("0");
                }
                if (rarity > 999) {
                    hashBytes.appendSafe("999");
                } else {
                    hashBytes.appendSafe(bytes(_toString(rarity)));
                }
            }

            return string(hashBytes);
        }

        function mint(uint64 _count)
            external
            payable
            nonReentrant
            whenMintActive
            returns (uint256)
        {
            uint256 totalMinted = _totalMinted();
            require(_count > 0, "Invalid token count");
            require(totalMinted + _count <= maxSupply, "All tokens are gone");
            
            if (msg.sender != owner()) {
                require(_numberMinted(msg.sender) + _count <= maxPerAddress, "Exceeded max mints allowed");
            }
            require(_count * publicMintPrice == msg.value, "Incorrect amount of ether sent");
            

            uint256 batchCount = _count / MAX_BATCH_MINT;
            uint256 remainder = _count % MAX_BATCH_MINT;

            for (uint256 i = 0; i < batchCount; i++) {
                _mint(msg.sender, MAX_BATCH_MINT);
            }

            if (remainder > 0) {
                _mint(msg.sender, remainder);
            }

            return totalMinted;
        }

        function isMintActive() public view returns (bool) {
            return _totalMinted() < maxSupply && isPublicMintActive;
        }

        function hashToSVG(string memory _hash)
            public
            view
            returns (string memory)
        {
            uint256 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 (uint256 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("[");

            for (uint256 i = 0; i < NUM_LAYERS; i++) {
                uint256 thisTraitIndex = HelperLib.parseInt(
                    HelperLib._substring(_hash, (i * 3), (i * 3) + 3)
                );
                metadataBytes.appendSafe(
                    abi.encodePacked(
                        '{"trait_type":"',
                        LAYER_NAMES[i],
                        '","value":"',
                        _traitDetails[i][thisTraitIndex].name,
                        '"}'
                    )
                );
                
                if (i == NUM_LAYERS - 1) {
                    metadataBytes.appendSafe("]");
                } else {
                    metadataBytes.appendSafe(",");
                }
            }

            return string(metadataBytes);
        }

        

        function tokenURI(uint256 _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\":\"Cutie Cakes #");

            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(uint256 _tokenId)
            public
            view
            returns (string memory)
        {
            return hashToSVG(tokenIdToHash(_tokenId));
        }

        function traitDetails(uint256 _layerIndex, uint256 _traitIndex)
            public
            view
            returns (Trait memory)
        {
            return _traitDetails[_layerIndex][_traitIndex];
        }

        function traitData(uint256 _layerIndex, uint256 _traitIndex)
            public
            view
            returns (string memory)
        {
            return string(SSTORE2.read(_traitDataPointers[_layerIndex][_traitIndex]));
        }

        function addLayer(uint256 _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 (uint256 i = 0; i < traits.length; i++) {
                dataPointers[i] = SSTORE2.write(traits[i].data);
                _traitDetails[_layerIndex][i] = Trait(traits[i].name, traits[i].mimetype);
            }
            _traitDataPointers[_layerIndex] = dataPointers;
            return;
        }

        function addTrait(uint256 _layerIndex, uint256 _traitIndex, TraitDTO memory trait)
            public
            onlyOwner
            whenUnsealed
        {
            _traitDetails[_layerIndex][_traitIndex] = Trait(trait.name, trait.mimetype);
            address[] memory dataPointers = _traitDataPointers[_layerIndex];
            dataPointers[_traitIndex] = SSTORE2.write(trait.data);
            _traitDataPointers[_layerIndex] = dataPointers;
            return;
        }

        function setContractData(ContractData memory _contractData) external onlyOwner whenUnsealed {
            contractData = _contractData;
        }

        function setMaxPerAddress(uint256 _maxPerAddress) external onlyOwner {
            maxPerAddress = _maxPerAddress;
        }

        function setBaseURI(string memory _baseURI) external onlyOwner {
            baseURI = _baseURI;
        }

        function setBackgroundColor(string memory _backgroundColor) external onlyOwner whenUnsealed {
            backgroundColor = _backgroundColor;
        }

        function setRenderOfTokenId(uint256 _tokenId, bool _renderOffChain) external {
            require(msg.sender == ownerOf(_tokenId), "Only the token owner can set the render method");
            _renderTokenOffChain[_tokenId] = _renderOffChain;
        }

        

        function toggleWrapSVG() external onlyOwner {
            shouldWrapSVG = !shouldWrapSVG;
        }

        function togglePublicMint() external onlyOwner {
            isPublicMintActive = !isPublicMintActive;
        }

        function sealContract() external whenUnsealed onlyOwner {
            isContractSealed = true;
        }

        function withdraw() external onlyOwner nonReentrant {
            uint256 balance = address(this).balance;
            uint256 amount = (balance * (10000 - DEVELOPER_FEE)) / 10000;
    
            address payable receiver = payable(owner());
            address payable dev = payable(0xEA208Da933C43857683C04BC76e3FD331D7bfdf7);
    
            Address.sendValue(receiver, amount);
            Address.sendValue(dev, balance - amount);
        }
    }

File 2 of 13 : DynamicBuffer.sol
// 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);
    }
}

File 3 of 13 : HelperLib.sol
// 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);
    }
}

File 4 of 13 : SSTORE2.sol
// 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);
  }
}

File 5 of 13 : Bytecode.sol
// 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)
      }
    }
  }
}

File 6 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 7 of 13 : ReentrancyGuard.sol
// 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;
    }
}

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 13 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 10 of 13 : Context.sol
// 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;
    }
}

File 11 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 12 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred.
     * This includes minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 13 of 13 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

Settings
{
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": true
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"_size","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"InvalidCodeAtRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WriteError","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_layerIndex","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct IndelibleERC721A.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":"struct IndelibleERC721A.TraitDTO","name":"trait","type":"tuple"}],"name":"addTrait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractData","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"banner","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"uint256","name":"royalties","type":"uint256"},{"internalType":"string","name":"royaltiesRecipient","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isContractSealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_count","type":"uint64"}],"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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIdA","type":"uint256"},{"internalType":"uint256","name":"tokenIdB","type":"uint256"}],"name":"reRollDuplicate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sealContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_backgroundColor","type":"string"}],"name":"setBackgroundColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","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 IndelibleERC721A.ContractData","name":"_contractData","type":"tuple"}],"name":"setContractData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerAddress","type":"uint256"}],"name":"setMaxPerAddress","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":"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":"struct IndelibleERC721A.Trait","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600761018081815266546f7070696e6760c81b6101a052608090815260056101c081815264466c616d6560d81b6101e05260a0526102008381526643616e646c657360c81b6102205260c0526102408381526646696c6c696e6760c81b6102605260e0526102809283526614dc1958da585b60ca1b6102a0526101009290925260046102c0908152634261736560e01b6102e0526101205261030091825264506c61746560d81b6103205261014091909152610380604052600a61034090815269109858dad9dc9bdd5b9960b21b6103605261016052620000e5906015906008620005ba565b506016805460ff1916600117905560408051808201909152600b8082526a1d1c985b9cdc185c995b9d60aa1b602090920191825262000127916017916200061e565b50606460195566038d7ea4c68000601a556040805160208101918290526000908190526200015891601b916200061e565b506040518060e001604052806040518060400160405280600b81526020016a43757469652043616b657360a81b81525081526020016040518060600160405280603b815260200162004f3c603b913981526020016040518060a001604052806062815260200162004f776062913981526020016040518060a001604052806061815260200162004edb60619139815260200160405180602001604052806000815250815260200161025881526020016040518060600160405280602a815260200162004eb1602a9139905280518051601d916200023b918391602001906200061e565b5060208281015180516200025692600185019201906200061e565b5060408201518051620002749160028401916020909101906200061e565b5060608201518051620002929160038401916020909101906200061e565b5060808201518051620002b09160048401916020909101906200061e565b5060a0820151600582015560c08201518051620002d89160068401916020909101906200061e565b505050348015620002e857600080fd5b50604080518082018252600b81526a43757469652043616b657360a81b60208083019182528351808501909452600584526443414b455360d81b90840152815191929162000339916002916200061e565b5080516200034f9060039060208401906200061e565b506000805550506001600855620003663362000568565b6040805160e08101825261012c8082526020820152610139918101919091526101c7606082015261028f6080820181905260a0820181905260c0820152620003b390600d906007620006a9565b50604080518082019091526101f48152610b116020820152620003db90600e906002620006a9565b506040805160608101825261045780825260208201819052918101919091526200040a90600f906003620006a9565b506040805160a081018252610190815261025860208201526102ee9181019190915261030f606082015261032060808201526200044c906010906005620006a9565b50604080516060810182526101f48082526020820152610535918101919091526200047c906011906003620006a9565b506040805160e081018252600d815260186020820152605a91810191909152610320606082018190526080820181905260a082015261032660c0820152620004c9906012906007620006a9565b50604080516080810182526102dd81526103206020820152610384918101829052606081019190915262000502906013906004620006a9565b50604080516101208101825260c8815261012c602082015261014d91810191909152610190606082018190526080820181905260a0820181905260c0820181905260e08201526101f461010082015262000561906014906009620006a9565b50620007a3565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280548282559060005260206000209081019282156200060c579160200282015b828111156200060c5782518051620005fb9184916020909101906200061e565b5091602001919060010190620005db565b506200061a929150620006ed565b5090565b8280546200062c9062000767565b90600052602060002090601f0160209004810192826200065057600085556200069b565b82601f106200066b57805160ff19168380011785556200069b565b828001600101855582156200069b579182015b828111156200069b5782518255916020019190600101906200067e565b506200061a9291506200070e565b8280548282559060005260206000209081019282156200069b579160200282015b828111156200069b578251829061ffff16905591602001919060010190620006ca565b808211156200061a57600062000704828262000725565b50600101620006ed565b5b808211156200061a57600081556001016200070f565b508054620007339062000767565b6000825580601f1062000744575050565b601f0160209004906000526020600020908101906200076491906200070e565b50565b600181811c908216806200077c57607f821691505b6020821081036200079d57634e487b7160e01b600052602260045260246000fd5b50919050565b6146fe80620007b36000396000f3fe60806040526004361061027d5760003560e01c80636c0360eb1161014f578063c11feac1116100c1578063e8a3d4851161007a578063e8a3d4851461073a578063e985e9c51461074f578063ea84b59b14610798578063f2fde38b146107c5578063fb9d09c8146107e5578063fd6b3cf5146107f857600080fd5b8063c11feac11461068e578063c5c627fb146106ae578063c87b56dd146106ce578063d5abeb01146106ee578063dbe9875f14610704578063dc53fd921461072457600080fd5b80637bddd65b116101135780637bddd65b146105db57806389ce3074146105fb5780638da5cb5b1461061b57806395d89b4114610639578063a22cb4651461064e578063b88d4fde1461066e57600080fd5b80636c0360eb146105515780636cced73a1461056657806370a0823114610586578063715018a6146105a6578063716e43d7146105bb57600080fd5b80634047638d116101f35780636190e1da116101ac5780636190e1da146104a6578063621a1f74146104c65780636352211e146104e6578063639814e01461050657806366e338701461051c57806368bd580e1461053c57600080fd5b80634047638d1461040d57806342842e0e146104225780634920154b14610442578063542d50411461045757806355f804b3146104715780635b92ac0d1461049157600080fd5b80630f3debbe116102455780630f3debbe1461035357806318160ddd1461037357806323b872dd146103965780632d6b6224146103b65780633cca2420146103d05780633ccfd60b146103f857600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157806309dbabca14610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046134c2565b610818565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61086a565b6040516102ae9190613537565b3480156102e557600080fd5b506102f96102f436600461354a565b6108fc565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c36600461357f565b610940565b005b34801561033f57600080fd5b506102cc61034e3660046135a9565b6109e0565b34801561035f57600080fd5b5061033161036e3660046136a8565b610a28565b34801561037f57600080fd5b50600154600054035b6040519081526020016102ae565b3480156103a257600080fd5b506103316103b13660046137d2565b610b31565b3480156103c257600080fd5b50601c546102a29060ff1681565b3480156103dc57600080fd5b506103e5610ce5565b6040516102ae979695949392919061380e565b34801561040457600080fd5b50610331611043565b34801561041957600080fd5b5061033161113e565b34801561042e57600080fd5b5061033161043d3660046137d2565b61117c565b34801561044e57600080fd5b5061033161119c565b34801561046357600080fd5b506018546102a29060ff1681565b34801561047d57600080fd5b5061033161048c366004613897565b6111da565b34801561049d57600080fd5b506102a261121b565b3480156104b257600080fd5b506103316104c1366004613897565b61123d565b3480156104d257600080fd5b506102cc6104e136600461354a565b61129d565b3480156104f257600080fd5b506102f961050136600461354a565b611455565b34801561051257600080fd5b5061038860195481565b34801561052857600080fd5b506102cc610537366004613897565b611460565b34801561054857600080fd5b506103316115b5565b34801561055d57600080fd5b506102cc611611565b34801561057257600080fd5b506102a26105813660046135a9565b61169f565b34801561059257600080fd5b506103886105a13660046138cb565b6116bb565b3480156105b257600080fd5b50610331611709565b3480156105c757600080fd5b506103316105d6366004613994565b61173f565b3480156105e757600080fd5b506103316105f636600461354a565b61197f565b34801561060757600080fd5b506102cc610616366004613897565b6119ae565b34801561062757600080fd5b506009546001600160a01b03166102f9565b34801561064557600080fd5b506102cc611bc7565b34801561065a57600080fd5b50610331610669366004613a72565b611bd6565b34801561067a57600080fd5b50610331610689366004613aa5565b611c6b565b34801561069a57600080fd5b506102cc6106a936600461354a565b611caf565b3480156106ba57600080fd5b506103316106c9366004613b0c565b611cbd565b3480156106da57600080fd5b506102cc6106e936600461354a565b611e26565b3480156106fa57600080fd5b50610388610d0581565b34801561071057600080fd5b5061033161071f366004613b5b565b61209d565b34801561073057600080fd5b50610388601a5481565b34801561074657600080fd5b506102cc61213d565b34801561075b57600080fd5b506102a261076a366004613b7e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107a457600080fd5b506107b86107b33660046135a9565b61219b565b6040516102ae9190613ba8565b3480156107d157600080fd5b506103316107e03660046138cb565b6122fd565b6103886107f3366004613bea565b612398565b34801561080457600080fd5b506103316108133660046135a9565b612664565b60006301ffc9a760e01b6001600160e01b03198316148061084957506380ac58cd60e01b6001600160e01b03198316145b806108645750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461087990613c13565b80601f01602080910402602001604051908101604052809291908181526020018280546108a590613c13565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b6000610907826127e3565b610924576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061094b82611455565b9050336001600160a01b0382161461098457610967813361076a565b610984576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600a602052604090208054606091610a219184908110610a0757610a07613c47565b6000918252602090912001546001600160a01b031661280a565b9392505050565b6009546001600160a01b03163314610a5b5760405162461bcd60e51b8152600401610a5290613c5d565b60405180910390fd5b60185460ff1615610a7e5760405162461bcd60e51b8152600401610a5290613c92565b805180518291601d91610a989183916020909101906133be565b506020828101518051610ab192600185019201906133be565b5060408201518051610acd9160028401916020909101906133be565b5060608201518051610ae99160038401916020909101906133be565b5060808201518051610b059160048401916020909101906133be565b5060a0820151600582015560c08201518051610b2b9160068401916020909101906133be565b50505050565b6000610b3c8261281a565b9050836001600160a01b0316816001600160a01b031614610b6f5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610bbc57610b9f863361076a565b610bbc57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610be357604051633a954ecd60e21b815260040160405180910390fd5b8015610bee57600082555b6001600160a01b03808716600090815260056020526040808220805460001901905591871681522080546001019055610c4785610c2c888287612881565b600160e11b174260a01b176001600160a01b03919091161790565b600085815260046020526040812091909155600160e11b84169003610c9c57600184016000818152600460205260408120549003610c9a576000548114610c9a5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b601d80548190610cf490613c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2090613c13565b8015610d6d5780601f10610d4257610100808354040283529160200191610d6d565b820191906000526020600020905b815481529060010190602001808311610d5057829003601f168201915b505050505090806001018054610d8290613c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610dae90613c13565b8015610dfb5780601f10610dd057610100808354040283529160200191610dfb565b820191906000526020600020905b815481529060010190602001808311610dde57829003601f168201915b505050505090806002018054610e1090613c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3c90613c13565b8015610e895780601f10610e5e57610100808354040283529160200191610e89565b820191906000526020600020905b815481529060010190602001808311610e6c57829003601f168201915b505050505090806003018054610e9e90613c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610eca90613c13565b8015610f175780601f10610eec57610100808354040283529160200191610f17565b820191906000526020600020905b815481529060010190602001808311610efa57829003601f168201915b505050505090806004018054610f2c90613c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5890613c13565b8015610fa55780601f10610f7a57610100808354040283529160200191610fa5565b820191906000526020600020905b815481529060010190602001808311610f8857829003601f168201915b505050505090806005015490806006018054610fc090613c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610fec90613c13565b80156110395780601f1061100e57610100808354040283529160200191611039565b820191906000526020600020905b81548152906001019060200180831161101c57829003601f168201915b5050505050905087565b6009546001600160a01b0316331461106d5760405162461bcd60e51b8152600401610a5290613c5d565b6002600854036110bf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a52565b60026008554760006127106110d560fa82613cd4565b6110df9084613ceb565b6110e99190613d20565b905060006110ff6009546001600160a01b031690565b905073ea208da933c43857683c04bc76e3fd331d7bfdf761112082846128a4565b6111338161112e8587613cd4565b6128a4565b505060016008555050565b6009546001600160a01b031633146111685760405162461bcd60e51b8152600401610a5290613c5d565b601c805460ff19811660ff90911615179055565b61119783838360405180602001604052806000815250611c6b565b505050565b6009546001600160a01b031633146111c65760405162461bcd60e51b8152600401610a5290613c5d565b6016805460ff19811660ff90911615179055565b6009546001600160a01b031633146112045760405162461bcd60e51b8152600401610a5290613c5d565b805161121790601b9060208401906133be565b5050565b6000610d0561122960005490565b1080156112385750601c5460ff165b905090565b6009546001600160a01b031633146112675760405162461bcd60e51b8152600401610a5290613c5d565b60185460ff161561128a5760405162461bcd60e51b8152600401610a5290613c92565b80516112179060179060208401906133be565b60606112a8826127e3565b6112e45760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a52565b60006113126112f560086004613ceb565b604080518281016060018252910181526000602090910190815290565b905060005b600881101561144e576000610d0561132e866129bd565b866113398582613d34565b60405160e89390931b6001600160e81b0319166020840152602383019190915260438201526063016040516020818303038152906040528051906020012060001c6113849190613d4c565b9050600061139282846129d2565b9050600a8110156113c657604080518082019091526002815261030360f41b60208201526113c1908590612a6e565b6113f2565b60648110156113f2576040805180820190915260018152600360fc1b60208201526113f2908590612a6e565b6103e78111156114265760408051808201909152600381526239393960e81b6020820152611421908590612a6e565b611439565b61143961143282612af3565b8590612a6e565b5050808061144690613d60565b915050611317565b5092915050565b60006108648261281a565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b918301919091526060916114a2908290612a6e565b60005b600881101561144e5760006114e26114dd866114c2856003613ceb565b6114cd866003613ceb565b6114d8906003613d34565b612b42565b612c0e565b60ff169050611545601583815481106114fd576114fd613c47565b60009182526020808320868452600b82526040808520878652835293849020935161152e9493909101929101613e12565b60408051601f198184030181529190528490612a6e565b61155160016008613cd4565b820361157f576040805180820190915260018152605d60f81b602082015261157a908490612a6e565b6115a2565b6040805180820190915260018152600b60fa1b60208201526115a2908490612a6e565b50806115ad81613d60565b9150506114a5565b60185460ff16156115d85760405162461bcd60e51b8152600401610a5290613c92565b6009546001600160a01b031633146116025760405162461bcd60e51b8152600401610a5290613c5d565b6018805460ff19166001179055565b601b805461161e90613c13565b80601f016020809104026020016040519081016040528092919081815260200182805461164a90613c13565b80156116975780601f1061166c57610100808354040283529160200191611697565b820191906000526020600020905b81548152906001019060200180831161167a57829003601f168201915b505050505081565b6000610a216116ad8461129d565b6116b68461129d565b612ccc565b60006001600160a01b0382166116e4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b031633146117335760405162461bcd60e51b8152600401610a5290613c5d565b61173d6000612d25565b565b6009546001600160a01b031633146117695760405162461bcd60e51b8152600401610a5290613c5d565b60185460ff161561178c5760405162461bcd60e51b8152600401610a5290613c92565b8051600d83600881106117a1576117a1613c47565b0154146118085760405162461bcd60e51b815260206004820152602f60248201527f5472616974732073697a6520646f6573206e6f74206d6174636820746965727360448201526e040ccdee440e8d0d2e640d2dcc8caf608b1b6064820152608401610a52565b600081516001600160401b03811115611823576118236135cb565b60405190808252806020026020018201604052801561184c578160200160208202803683370190505b50905060005b825181101561195f5761188183828151811061187057611870613c47565b602002602001015160400151612d77565b82828151811061189357611893613c47565b60200260200101906001600160a01b031690816001600160a01b03168152505060405180604001604052808483815181106118d0576118d0613c47565b60200260200101516000015181526020018483815181106118f3576118f3613c47565b6020908102919091018101518101519091526000868152600b825260408082208583528352902082518051919261192f928492909101906133be565b50602082810151805161194892600185019201906133be565b50905050808061195790613d60565b915050611852565b506000838152600a602090815260409091208251610b2b92840190613442565b6009546001600160a01b031633146119a95760405162461bcd60e51b8152600401610a5290613c5d565b601955565b6040805162020060810190915262020040815260006020909101818152606091906119f26040518060c0016040528060818152602001614608608191398290612a6e565b611a1e6017604051602001611a079190613e68565b60408051601f198184030181529190528290612a6e565b60005b611a2d60016008613cd4565b811015611ae957611a516114dd86611a46846003613ceb565b6114cd856003613ceb565b60ff169250611ad7600b60008381526020019081526020016000206000858152602001908152602001600020600101611aaf611aaa600a60008681526020019081526020016000208781548110610a0757610a07613c47565b612ddc565b604051602001611ac0929190613e9a565b60408051601f198184030181529190528390612a6e565b80611ae181613d60565b915050611a21565b50611b146114dd856003611afe600882613ceb565b611b089190613cd4565b6114d860086003613ceb565b60ff169150611b96600b6000611b2c60016008613cd4565b81526020019081526020016000206000848152602001908152602001600020600101611b85611aaa600a600060016008611b669190613cd4565b81526020019081526020016000208681548110610a0757610a07613c47565b604051602001611a07929190613ef4565b611b9f81612ddc565b604051602001611baf9190614058565b60405160208183030381529060405292505050919050565b60606003805461087990613c13565b336001600160a01b03831603611bff5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611c76848484610b31565b6001600160a01b0383163b15610b2b57611c9284848484612f2e565b610b2b576040516368d2bf6b60e11b815260040160405180910390fd5b60606108646106168361129d565b6009546001600160a01b03163314611ce75760405162461bcd60e51b8152600401610a5290613c5d565b60185460ff1615611d0a5760405162461bcd60e51b8152600401610a5290613c92565b60408051808201825282518152602080840151818301526000868152600b82528381208682528252929092208151805192939192611d4b92849201906133be565b506020828101518051611d6492600185019201906133be565b5050506000838152600a6020908152604080832080548251818502810185019093528083529192909190830182828015611dc757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611da9575b50505050509050611ddb8260400151612d77565b818481518110611ded57611ded613c47565b6001600160a01b039092166020928302919091018201526000858152600a8252604090208251611e1f92840190613442565b5050505050565b6060611e31826127e3565b611e6d5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a52565b60008052600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e354611ee45760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e2061646465640000000000006044820152606401610a52565b6000611eef8361129d565b60408051620200608101825262020040815260006020918201908152825180840190935260168352757b226e616d65223a2243757469652043616b6573202360501b91830191909152919250611f46908290612a6e565b611f65611f5285612af3565b604051611a079190601e9060200161409d565b6000601b8054611f7490613c13565b9050118015611f9157506000848152600c602052604090205460ff165b15611fbc57611fb7601b611fa486612af3565b84604051602001611a07939291906140eb565b612068565b60408051602081019091526000815260165460ff1615612046576000611fe1846119ae565b905061200b81604051602001611ff79190614166565b604051602081830303815290604052612ddc565b60405160200161201b9190614058565b60405160208183030381529060405291506120408160405160200161152e9190614251565b50612052565b61204f836119ae565b90505b61206681604051602001611ac09190614298565b505b61208461207483611460565b604051602001611a0791906142db565b61208d81612ddc565b604051602001611baf919061431c565b6120a682611455565b6001600160a01b0316336001600160a01b03161461211d5760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c792074686520746f6b656e206f776e65722063616e207365742074686560448201526d081c995b99195c881b595d1a1bd960921b6064820152608401610a52565b6000918252600c6020526040909120805460ff1916911515919091179055565b60225460609061217790601d90601e90601f9060209060219061215f90612af3565b604051611ff796959493929190602390602001614361565b604051602001612187919061431c565b604051602081830303815290604052905090565b60408051808201909152606080825260208201526000838152600b602090815260408083208584529091529081902081518083019092528054829082906121e190613c13565b80601f016020809104026020016040519081016040528092919081815260200182805461220d90613c13565b801561225a5780601f1061222f5761010080835404028352916020019161225a565b820191906000526020600020905b81548152906001019060200180831161223d57829003601f168201915b5050505050815260200160018201805461227390613c13565b80601f016020809104026020016040519081016040528092919081815260200182805461229f90613c13565b80156122ec5780601f106122c1576101008083540402835291602001916122ec565b820191906000526020600020905b8154815290600101906020018083116122cf57829003601f168201915b505050505081525050905092915050565b6009546001600160a01b031633146123275760405162461bcd60e51b8152600401610a5290613c5d565b6001600160a01b03811661238c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a52565b61239581612d25565b50565b60006002600854036123ec5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a52565b60026008556123f961121b565b61243d5760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b6044820152606401610a52565b6000546001600160401b03831661248c5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b6044820152606401610a52565b610d056124a26001600160401b03851683613d34565b11156124e65760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b6044820152606401610a52565b6009546001600160a01b0316331461258957601954836001600160401b0316612531336001600160a01b03166000908152600560205260409081902054901c6001600160401b031690565b61253b9190613d34565b11156125895760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f7765640000000000006044820152606401610a52565b34601a54846001600160401b03166125a19190613ceb565b146125ee5760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610a52565b600061260460146001600160401b038616613d20565b9050600061261c60146001600160401b038716613d4c565b905060005b828110156126465761263433601461301a565b8061263e81613d60565b915050612621565b50801561265757612657338261301a565b5050600160085592915050565b60185460ff16156126875760405162461bcd60e51b8152600401610a5290613c92565b612691828261169f565b6126dd5760405162461bcd60e51b815260206004820152601d60248201527f416c6c20746f6b656e73206d757374206265206475706c6963617465730000006044820152606401610a52565b60008183116126ec57816126ee565b825b90506127026009546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461279e5761272381611455565b6001600160a01b0316336001600160a01b03161461279e5760405162461bcd60e51b815260206004820152603260248201527f4f6e6c792074686520746f6b656e206f776e6572206f7220636f6e7472616374604482015271081bdddb995c8818d85b881c994b5c9bdb1b60721b6064820152608401610a52565b6127a78161311b565b6127ba6127b5826001613d34565b6127e3565b156127d2576127d26127cd826001613d34565b61311b565b611197816127de61314b565b6131bc565b6000805482108015610864575050600090815260046020526040902054600160e01b161590565b6060610864826001600019613211565b6000816000548110156128685760008181526004602052604081205490600160e01b82169003612866575b80600003610a21575060001901600081815260046020526040902054612845565b505b604051636f96cda160e11b815260040160405180910390fd5b600060e882811c906128948686846132c6565b62ffffff16901b95945050505050565b804710156128f45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a52565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612941576040519150601f19603f3d011682016040523d82523d6000602084013e612946565b606091505b50509050806111975760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a52565b60006129c8826132e5565b6060015192915050565b600080805b600d84600881106129ea576129ea613c47565b015481101561027d576000600d8560088110612a0857612a08613c47565b018281548110612a1a57612a1a613c47565b90600052602060002001549050828610158015612a3f5750612a3c8184613d34565b86105b15612a4e575091506108649050565b612a588184613d34565b9250508080612a6690613d60565b9150506129d7565b601f1982015182518251603f19909201918290612a8b9083613d34565b1115612ae95760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b6064820152608401610a52565b610b2b848461335c565b604080516080810191829052607f0190826030600a8206018353600a90045b8015612b3057600183039250600a81066030018353600a9004612b12565b50819003601f19909101908152919050565b6060836000612b518585613cd4565b6001600160401b03811115612b6857612b686135cb565b6040519080825280601f01601f191660200182016040528015612b92576020820181803683370190505b509050845b84811015612c0457828181518110612bb157612bb1613c47565b01602001516001600160f81b03191682612bcb8884613cd4565b81518110612bdb57612bdb613c47565b60200101906001600160f81b031916908160001a90535080612bfc81613d60565b915050612b97565b5095945050505050565b60008181805b82518160ff161015612cc4576030838260ff1681518110612c3757612c37613c47565b016020015160f81c10801590612c6a57506039838260ff1681518110612c5f57612c5f613c47565b016020015160f81c11155b15612cb257612c7a600a8361448a565b91506030838260ff1681518110612c9357612c93613c47565b0160200151612ca5919060f81c6144b3565b612caf90836144d6565b91505b80612cbc816144fb565b915050612c14565b509392505050565b600081604051602001612cdf919061451a565b6040516020818303038152906040528051906020012083604051602001612d06919061451a565b6040516020818303038152906040528051906020012014905092915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080612da283604051602001612d8e9190614536565b604051602081830303815290604052613392565b90508051602082016000f091506001600160a01b038216612dd65760405163046a55db60e11b815260040160405180910390fd5b50919050565b60608151600003612dfb57505060408051602081019091526000815290565b60006040518060600160405280604081526020016146896040913990506000600384516002612e2a9190613d34565b612e349190613d20565b612e3f906004613ceb565b6001600160401b03811115612e5657612e566135cb565b6040519080825280601f01601f191660200182016040528015612e80576020820181803683370190505b509050600182016020820185865187015b80821015612eec576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250612e91565b5050600386510660018114612f085760028114612f1b57612f23565b603d6001830353603d6002830353612f23565b603d60018303535b509195945050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612f6390339089908890889060040161455c565b6020604051808303816000875af1925050508015612f9e575060408051601f3d908101601f19168201909252612f9b91810190614599565b60015b612ffc573d808015612fcc576040519150601f19603f3d011682016040523d82523d6000602084013e612fd1565b606091505b508051600003612ff4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000546001600160a01b03831661304357604051622e076360e81b815260040160405180910390fd5b816000036130645760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600090815260056020526040812080546801000000000000000185020190556130bb90849061309e908281612881565b6001851460e11b174260a01b176001600160a01b03919091161790565b600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106130cf5760005550505050565b6000818152600460205260408120549003612395576131398161281a565b60008281526004602052604090205550565b6000803a43424461315d600184613cd4565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6bffffffffffffffffffffffff191660c082015260d40160408051601f19818403018152919052805160209091012092915050565b600082815260046020526040812054908190036131eb5760405162d5815360e01b815260040160405180910390fd5b6000928352600460205260409092206001600160e81b039290921660e89190911b179055565b6060833b6000819003613234575050604080516020810190915260008152610a21565b80841115613252575050604080516020810190915260008152610a21565b838310156132845760405163162544fd60e11b8152600481018290526024810185905260448101849052606401610a52565b8383038482036000828210613299578261329b565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b60006001600160a01b038416156132dd5781613012565b61301261314b565b6040805160808101825260008082526020820181905291810182905260608101919091526108646133158361281a565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b8051602082019150808201602084510184015b8184101561338757835181526020938401930161336f565b505082510190915250565b60608151826040516020016133a89291906145b6565b6040516020818303038152906040529050919050565b8280546133ca90613c13565b90600052602060002090601f0160209004810192826133ec5760008555613432565b82601f1061340557805160ff1916838001178555613432565b82800160010185558215613432579182015b82811115613432578251825591602001919060010190613417565b5061343e929150613497565b5090565b828054828255906000526020600020908101928215613432579160200282015b8281111561343257825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613462565b5b8082111561343e5760008155600101613498565b6001600160e01b03198116811461239557600080fd5b6000602082840312156134d457600080fd5b8135610a21816134ac565b60005b838110156134fa5781810151838201526020016134e2565b83811115610b2b5750506000910152565b600081518084526135238160208601602086016134df565b601f01601f19169290920160200192915050565b602081526000610a21602083018461350b565b60006020828403121561355c57600080fd5b5035919050565b80356001600160a01b038116811461357a57600080fd5b919050565b6000806040838503121561359257600080fd5b61359b83613563565b946020939093013593505050565b600080604083850312156135bc57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715613603576136036135cb565b60405290565b604051601f8201601f191681016001600160401b0381118282101715613631576136316135cb565b604052919050565b600082601f83011261364a57600080fd5b81356001600160401b03811115613663576136636135cb565b613676601f8201601f1916602001613609565b81815284602083860101111561368b57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156136ba57600080fd5b81356001600160401b03808211156136d157600080fd5b9083019060e082860312156136e557600080fd5b6136ed6135e1565b8235828111156136fc57600080fd5b61370887828601613639565b82525060208301358281111561371d57600080fd5b61372987828601613639565b60208301525060408301358281111561374157600080fd5b61374d87828601613639565b60408301525060608301358281111561376557600080fd5b61377187828601613639565b60608301525060808301358281111561378957600080fd5b61379587828601613639565b60808301525060a083013560a082015260c0830135828111156137b757600080fd5b6137c387828601613639565b60c08301525095945050505050565b6000806000606084860312156137e757600080fd5b6137f084613563565b92506137fe60208501613563565b9150604084013590509250925092565b60e08152600061382160e083018a61350b565b8281036020840152613833818a61350b565b90508281036040840152613847818961350b565b9050828103606084015261385b818861350b565b9050828103608084015261386f818761350b565b90508460a084015282810360c0840152613889818561350b565b9a9950505050505050505050565b6000602082840312156138a957600080fd5b81356001600160401b038111156138bf57600080fd5b61301284828501613639565b6000602082840312156138dd57600080fd5b610a2182613563565b6000606082840312156138f857600080fd5b604051606081016001600160401b03828210818311171561391b5761391b6135cb565b81604052829350843591508082111561393357600080fd5b61393f86838701613639565b8352602085013591508082111561395557600080fd5b61396186838701613639565b6020840152604085013591508082111561397a57600080fd5b5061398785828601613639565b6040830152505092915050565b600080604083850312156139a757600080fd5b823591506020808401356001600160401b03808211156139c657600080fd5b818601915086601f8301126139da57600080fd5b8135818111156139ec576139ec6135cb565b8060051b6139fb858201613609565b918252838101850191858101908a841115613a1557600080fd5b86860192505b83831015613a5157823585811115613a335760008081fd5b613a418c89838a01016138e6565b8352509186019190860190613a1b565b809750505050505050509250929050565b8035801515811461357a57600080fd5b60008060408385031215613a8557600080fd5b613a8e83613563565b9150613a9c60208401613a62565b90509250929050565b60008060008060808587031215613abb57600080fd5b613ac485613563565b9350613ad260208601613563565b92506040850135915060608501356001600160401b03811115613af457600080fd5b613b0087828801613639565b91505092959194509250565b600080600060608486031215613b2157600080fd5b833592506020840135915060408401356001600160401b03811115613b4557600080fd5b613b51868287016138e6565b9150509250925092565b60008060408385031215613b6e57600080fd5b82359150613a9c60208401613a62565b60008060408385031215613b9157600080fd5b613b9a83613563565b9150613a9c60208401613563565b602081526000825160406020840152613bc4606084018261350b565b90506020840151601f19848303016040850152613be1828261350b565b95945050505050565b600060208284031215613bfc57600080fd5b81356001600160401b0381168114610a2157600080fd5b600181811c90821680613c2757607f821691505b602082108103612dd657634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015613ce657613ce6613cbe565b500390565b6000816000190483118215151615613d0557613d05613cbe565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613d2f57613d2f613d0a565b500490565b60008219821115613d4757613d47613cbe565b500190565b600082613d5b57613d5b613d0a565b500690565b600060018201613d7257613d72613cbe565b5060010190565b8054600090600181811c9080831680613d9357607f831692505b60208084108203613db457634e487b7160e01b600052602260045260246000fd5b818015613dc85760018114613dd957613e06565b60ff19861689528489019650613e06565b60008881526020902060005b86811015613dfe5781548b820152908501908301613de5565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b81526000613e36600f830185613d79565b6a1116113b30b63ab2911d1160a91b8152613e54600b820185613d79565b61227d60f01b815260020195945050505050565b6000613e748284613d79565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b81526000613eb46005830185613d79565b670ed8985cd94d8d0b60c21b81528351613ed58160088401602088016134df565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b81526000613f0e6005830185613d79565b670ed8985cd94d8d0b60c21b81528351613f2f8160088401602088016134df565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000081526000825161409081601a8501602087016134df565b91909101601a0192915050565b600083516140af8184602088016134df565b701116113232b9b1b934b83a34b7b7111d1160791b9083019081526140d76011820185613d79565b61088b60f21b815260020195945050505050565b681134b6b0b3b2911d1160b91b815260006141096009830186613d79565b84516141198183602089016134df565b643f646e613d60d81b9101908152835161413a8160058401602088016134df565b71099b995d1ddbdc9acf5b585a5b9b995d088b60721b6005929091019182015260170195945050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b60808201526000825161422a8160918501602087016134df565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b711139bb33afb4b6b0b3b2afb230ba30911d1160711b8152815160009061427f8160128501602087016134df565b61088b60f21b6012939091019283015250601401919050565b6d1134b6b0b3b2afb230ba30911d1160911b815281516000906142c281600e8501602087016134df565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b8152815160009061430481600d8501602087016134df565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161435481601d8501602087016134df565b91909101601d0192915050565b683d913730b6b2911d1160b91b8152600061437f600983018a613d79565b701116113232b9b1b934b83a34b7b7111d1160791b81526143a3601182018a613d79565b6a11161134b6b0b3b2911d1160a91b815290506143c3600b820189613d79565b6b1116113130b73732b9111d1160a11b815290506143e4600c820188613d79565b7211161132bc3a32b93730b62fb634b735911d1160691b8152905061440c6013820187613d79565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a000000008152845161444481601c8401602089016134df565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c9290910191820152614471602e820185613d79565b61227d60f01b81526002019a9950505050505050505050565b600060ff821660ff84168160ff04811182151516156144ab576144ab613cbe565b029392505050565b600060ff821660ff8416808210156144cd576144cd613cbe565b90039392505050565b600060ff821660ff84168060ff038211156144f3576144f3613cbe565b019392505050565b600060ff821660ff810361451157614511613cbe565b60010192915050565b6000825161452c8184602087016134df565b9190910192915050565b600081526000825161454f8160018501602087016134df565b9190910160010192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061458f9083018461350b565b9695505050505050565b6000602082840312156145ab57600080fd5b8151610a21816134ac565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b600582015281516000906145f981600e8501602087016134df565b91909101600e01939250505056fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723a4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220e5885e9572111822125f7e44ca0566be777972f11be739ff3ab021ba72b14ed764736f6c634300080e003330783142334645413037353930453633436536384362323139353166334331333361333530333234373368747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f62616e6e65722f34656566373533622d653435362d343433322d393436342d3665303231393335333531653333333320637574652063616b6573206f6e204554482e205374616b6520796f75722043616b657320696e204e46547820666f72207969656c642168747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f70726f66696c652f34656566373533622d653435362d343433322d393436342d366530323139333533353165

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636c0360eb1161014f578063c11feac1116100c1578063e8a3d4851161007a578063e8a3d4851461073a578063e985e9c51461074f578063ea84b59b14610798578063f2fde38b146107c5578063fb9d09c8146107e5578063fd6b3cf5146107f857600080fd5b8063c11feac11461068e578063c5c627fb146106ae578063c87b56dd146106ce578063d5abeb01146106ee578063dbe9875f14610704578063dc53fd921461072457600080fd5b80637bddd65b116101135780637bddd65b146105db57806389ce3074146105fb5780638da5cb5b1461061b57806395d89b4114610639578063a22cb4651461064e578063b88d4fde1461066e57600080fd5b80636c0360eb146105515780636cced73a1461056657806370a0823114610586578063715018a6146105a6578063716e43d7146105bb57600080fd5b80634047638d116101f35780636190e1da116101ac5780636190e1da146104a6578063621a1f74146104c65780636352211e146104e6578063639814e01461050657806366e338701461051c57806368bd580e1461053c57600080fd5b80634047638d1461040d57806342842e0e146104225780634920154b14610442578063542d50411461045757806355f804b3146104715780635b92ac0d1461049157600080fd5b80630f3debbe116102455780630f3debbe1461035357806318160ddd1461037357806323b872dd146103965780632d6b6224146103b65780633cca2420146103d05780633ccfd60b146103f857600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157806309dbabca14610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046134c2565b610818565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61086a565b6040516102ae9190613537565b3480156102e557600080fd5b506102f96102f436600461354a565b6108fc565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c36600461357f565b610940565b005b34801561033f57600080fd5b506102cc61034e3660046135a9565b6109e0565b34801561035f57600080fd5b5061033161036e3660046136a8565b610a28565b34801561037f57600080fd5b50600154600054035b6040519081526020016102ae565b3480156103a257600080fd5b506103316103b13660046137d2565b610b31565b3480156103c257600080fd5b50601c546102a29060ff1681565b3480156103dc57600080fd5b506103e5610ce5565b6040516102ae979695949392919061380e565b34801561040457600080fd5b50610331611043565b34801561041957600080fd5b5061033161113e565b34801561042e57600080fd5b5061033161043d3660046137d2565b61117c565b34801561044e57600080fd5b5061033161119c565b34801561046357600080fd5b506018546102a29060ff1681565b34801561047d57600080fd5b5061033161048c366004613897565b6111da565b34801561049d57600080fd5b506102a261121b565b3480156104b257600080fd5b506103316104c1366004613897565b61123d565b3480156104d257600080fd5b506102cc6104e136600461354a565b61129d565b3480156104f257600080fd5b506102f961050136600461354a565b611455565b34801561051257600080fd5b5061038860195481565b34801561052857600080fd5b506102cc610537366004613897565b611460565b34801561054857600080fd5b506103316115b5565b34801561055d57600080fd5b506102cc611611565b34801561057257600080fd5b506102a26105813660046135a9565b61169f565b34801561059257600080fd5b506103886105a13660046138cb565b6116bb565b3480156105b257600080fd5b50610331611709565b3480156105c757600080fd5b506103316105d6366004613994565b61173f565b3480156105e757600080fd5b506103316105f636600461354a565b61197f565b34801561060757600080fd5b506102cc610616366004613897565b6119ae565b34801561062757600080fd5b506009546001600160a01b03166102f9565b34801561064557600080fd5b506102cc611bc7565b34801561065a57600080fd5b50610331610669366004613a72565b611bd6565b34801561067a57600080fd5b50610331610689366004613aa5565b611c6b565b34801561069a57600080fd5b506102cc6106a936600461354a565b611caf565b3480156106ba57600080fd5b506103316106c9366004613b0c565b611cbd565b3480156106da57600080fd5b506102cc6106e936600461354a565b611e26565b3480156106fa57600080fd5b50610388610d0581565b34801561071057600080fd5b5061033161071f366004613b5b565b61209d565b34801561073057600080fd5b50610388601a5481565b34801561074657600080fd5b506102cc61213d565b34801561075b57600080fd5b506102a261076a366004613b7e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107a457600080fd5b506107b86107b33660046135a9565b61219b565b6040516102ae9190613ba8565b3480156107d157600080fd5b506103316107e03660046138cb565b6122fd565b6103886107f3366004613bea565b612398565b34801561080457600080fd5b506103316108133660046135a9565b612664565b60006301ffc9a760e01b6001600160e01b03198316148061084957506380ac58cd60e01b6001600160e01b03198316145b806108645750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461087990613c13565b80601f01602080910402602001604051908101604052809291908181526020018280546108a590613c13565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b6000610907826127e3565b610924576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061094b82611455565b9050336001600160a01b0382161461098457610967813361076a565b610984576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600a602052604090208054606091610a219184908110610a0757610a07613c47565b6000918252602090912001546001600160a01b031661280a565b9392505050565b6009546001600160a01b03163314610a5b5760405162461bcd60e51b8152600401610a5290613c5d565b60405180910390fd5b60185460ff1615610a7e5760405162461bcd60e51b8152600401610a5290613c92565b805180518291601d91610a989183916020909101906133be565b506020828101518051610ab192600185019201906133be565b5060408201518051610acd9160028401916020909101906133be565b5060608201518051610ae99160038401916020909101906133be565b5060808201518051610b059160048401916020909101906133be565b5060a0820151600582015560c08201518051610b2b9160068401916020909101906133be565b50505050565b6000610b3c8261281a565b9050836001600160a01b0316816001600160a01b031614610b6f5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610bbc57610b9f863361076a565b610bbc57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610be357604051633a954ecd60e21b815260040160405180910390fd5b8015610bee57600082555b6001600160a01b03808716600090815260056020526040808220805460001901905591871681522080546001019055610c4785610c2c888287612881565b600160e11b174260a01b176001600160a01b03919091161790565b600085815260046020526040812091909155600160e11b84169003610c9c57600184016000818152600460205260408120549003610c9a576000548114610c9a5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b601d80548190610cf490613c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2090613c13565b8015610d6d5780601f10610d4257610100808354040283529160200191610d6d565b820191906000526020600020905b815481529060010190602001808311610d5057829003601f168201915b505050505090806001018054610d8290613c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610dae90613c13565b8015610dfb5780601f10610dd057610100808354040283529160200191610dfb565b820191906000526020600020905b815481529060010190602001808311610dde57829003601f168201915b505050505090806002018054610e1090613c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3c90613c13565b8015610e895780601f10610e5e57610100808354040283529160200191610e89565b820191906000526020600020905b815481529060010190602001808311610e6c57829003601f168201915b505050505090806003018054610e9e90613c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610eca90613c13565b8015610f175780601f10610eec57610100808354040283529160200191610f17565b820191906000526020600020905b815481529060010190602001808311610efa57829003601f168201915b505050505090806004018054610f2c90613c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5890613c13565b8015610fa55780601f10610f7a57610100808354040283529160200191610fa5565b820191906000526020600020905b815481529060010190602001808311610f8857829003601f168201915b505050505090806005015490806006018054610fc090613c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610fec90613c13565b80156110395780601f1061100e57610100808354040283529160200191611039565b820191906000526020600020905b81548152906001019060200180831161101c57829003601f168201915b5050505050905087565b6009546001600160a01b0316331461106d5760405162461bcd60e51b8152600401610a5290613c5d565b6002600854036110bf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a52565b60026008554760006127106110d560fa82613cd4565b6110df9084613ceb565b6110e99190613d20565b905060006110ff6009546001600160a01b031690565b905073ea208da933c43857683c04bc76e3fd331d7bfdf761112082846128a4565b6111338161112e8587613cd4565b6128a4565b505060016008555050565b6009546001600160a01b031633146111685760405162461bcd60e51b8152600401610a5290613c5d565b601c805460ff19811660ff90911615179055565b61119783838360405180602001604052806000815250611c6b565b505050565b6009546001600160a01b031633146111c65760405162461bcd60e51b8152600401610a5290613c5d565b6016805460ff19811660ff90911615179055565b6009546001600160a01b031633146112045760405162461bcd60e51b8152600401610a5290613c5d565b805161121790601b9060208401906133be565b5050565b6000610d0561122960005490565b1080156112385750601c5460ff165b905090565b6009546001600160a01b031633146112675760405162461bcd60e51b8152600401610a5290613c5d565b60185460ff161561128a5760405162461bcd60e51b8152600401610a5290613c92565b80516112179060179060208401906133be565b60606112a8826127e3565b6112e45760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a52565b60006113126112f560086004613ceb565b604080518281016060018252910181526000602090910190815290565b905060005b600881101561144e576000610d0561132e866129bd565b866113398582613d34565b60405160e89390931b6001600160e81b0319166020840152602383019190915260438201526063016040516020818303038152906040528051906020012060001c6113849190613d4c565b9050600061139282846129d2565b9050600a8110156113c657604080518082019091526002815261030360f41b60208201526113c1908590612a6e565b6113f2565b60648110156113f2576040805180820190915260018152600360fc1b60208201526113f2908590612a6e565b6103e78111156114265760408051808201909152600381526239393960e81b6020820152611421908590612a6e565b611439565b61143961143282612af3565b8590612a6e565b5050808061144690613d60565b915050611317565b5092915050565b60006108648261281a565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b918301919091526060916114a2908290612a6e565b60005b600881101561144e5760006114e26114dd866114c2856003613ceb565b6114cd866003613ceb565b6114d8906003613d34565b612b42565b612c0e565b60ff169050611545601583815481106114fd576114fd613c47565b60009182526020808320868452600b82526040808520878652835293849020935161152e9493909101929101613e12565b60408051601f198184030181529190528490612a6e565b61155160016008613cd4565b820361157f576040805180820190915260018152605d60f81b602082015261157a908490612a6e565b6115a2565b6040805180820190915260018152600b60fa1b60208201526115a2908490612a6e565b50806115ad81613d60565b9150506114a5565b60185460ff16156115d85760405162461bcd60e51b8152600401610a5290613c92565b6009546001600160a01b031633146116025760405162461bcd60e51b8152600401610a5290613c5d565b6018805460ff19166001179055565b601b805461161e90613c13565b80601f016020809104026020016040519081016040528092919081815260200182805461164a90613c13565b80156116975780601f1061166c57610100808354040283529160200191611697565b820191906000526020600020905b81548152906001019060200180831161167a57829003601f168201915b505050505081565b6000610a216116ad8461129d565b6116b68461129d565b612ccc565b60006001600160a01b0382166116e4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b031633146117335760405162461bcd60e51b8152600401610a5290613c5d565b61173d6000612d25565b565b6009546001600160a01b031633146117695760405162461bcd60e51b8152600401610a5290613c5d565b60185460ff161561178c5760405162461bcd60e51b8152600401610a5290613c92565b8051600d83600881106117a1576117a1613c47565b0154146118085760405162461bcd60e51b815260206004820152602f60248201527f5472616974732073697a6520646f6573206e6f74206d6174636820746965727360448201526e040ccdee440e8d0d2e640d2dcc8caf608b1b6064820152608401610a52565b600081516001600160401b03811115611823576118236135cb565b60405190808252806020026020018201604052801561184c578160200160208202803683370190505b50905060005b825181101561195f5761188183828151811061187057611870613c47565b602002602001015160400151612d77565b82828151811061189357611893613c47565b60200260200101906001600160a01b031690816001600160a01b03168152505060405180604001604052808483815181106118d0576118d0613c47565b60200260200101516000015181526020018483815181106118f3576118f3613c47565b6020908102919091018101518101519091526000868152600b825260408082208583528352902082518051919261192f928492909101906133be565b50602082810151805161194892600185019201906133be565b50905050808061195790613d60565b915050611852565b506000838152600a602090815260409091208251610b2b92840190613442565b6009546001600160a01b031633146119a95760405162461bcd60e51b8152600401610a5290613c5d565b601955565b6040805162020060810190915262020040815260006020909101818152606091906119f26040518060c0016040528060818152602001614608608191398290612a6e565b611a1e6017604051602001611a079190613e68565b60408051601f198184030181529190528290612a6e565b60005b611a2d60016008613cd4565b811015611ae957611a516114dd86611a46846003613ceb565b6114cd856003613ceb565b60ff169250611ad7600b60008381526020019081526020016000206000858152602001908152602001600020600101611aaf611aaa600a60008681526020019081526020016000208781548110610a0757610a07613c47565b612ddc565b604051602001611ac0929190613e9a565b60408051601f198184030181529190528390612a6e565b80611ae181613d60565b915050611a21565b50611b146114dd856003611afe600882613ceb565b611b089190613cd4565b6114d860086003613ceb565b60ff169150611b96600b6000611b2c60016008613cd4565b81526020019081526020016000206000848152602001908152602001600020600101611b85611aaa600a600060016008611b669190613cd4565b81526020019081526020016000208681548110610a0757610a07613c47565b604051602001611a07929190613ef4565b611b9f81612ddc565b604051602001611baf9190614058565b60405160208183030381529060405292505050919050565b60606003805461087990613c13565b336001600160a01b03831603611bff5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611c76848484610b31565b6001600160a01b0383163b15610b2b57611c9284848484612f2e565b610b2b576040516368d2bf6b60e11b815260040160405180910390fd5b60606108646106168361129d565b6009546001600160a01b03163314611ce75760405162461bcd60e51b8152600401610a5290613c5d565b60185460ff1615611d0a5760405162461bcd60e51b8152600401610a5290613c92565b60408051808201825282518152602080840151818301526000868152600b82528381208682528252929092208151805192939192611d4b92849201906133be565b506020828101518051611d6492600185019201906133be565b5050506000838152600a6020908152604080832080548251818502810185019093528083529192909190830182828015611dc757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611da9575b50505050509050611ddb8260400151612d77565b818481518110611ded57611ded613c47565b6001600160a01b039092166020928302919091018201526000858152600a8252604090208251611e1f92840190613442565b5050505050565b6060611e31826127e3565b611e6d5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a52565b60008052600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e354611ee45760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e2061646465640000000000006044820152606401610a52565b6000611eef8361129d565b60408051620200608101825262020040815260006020918201908152825180840190935260168352757b226e616d65223a2243757469652043616b6573202360501b91830191909152919250611f46908290612a6e565b611f65611f5285612af3565b604051611a079190601e9060200161409d565b6000601b8054611f7490613c13565b9050118015611f9157506000848152600c602052604090205460ff165b15611fbc57611fb7601b611fa486612af3565b84604051602001611a07939291906140eb565b612068565b60408051602081019091526000815260165460ff1615612046576000611fe1846119ae565b905061200b81604051602001611ff79190614166565b604051602081830303815290604052612ddc565b60405160200161201b9190614058565b60405160208183030381529060405291506120408160405160200161152e9190614251565b50612052565b61204f836119ae565b90505b61206681604051602001611ac09190614298565b505b61208461207483611460565b604051602001611a0791906142db565b61208d81612ddc565b604051602001611baf919061431c565b6120a682611455565b6001600160a01b0316336001600160a01b03161461211d5760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c792074686520746f6b656e206f776e65722063616e207365742074686560448201526d081c995b99195c881b595d1a1bd960921b6064820152608401610a52565b6000918252600c6020526040909120805460ff1916911515919091179055565b60225460609061217790601d90601e90601f9060209060219061215f90612af3565b604051611ff796959493929190602390602001614361565b604051602001612187919061431c565b604051602081830303815290604052905090565b60408051808201909152606080825260208201526000838152600b602090815260408083208584529091529081902081518083019092528054829082906121e190613c13565b80601f016020809104026020016040519081016040528092919081815260200182805461220d90613c13565b801561225a5780601f1061222f5761010080835404028352916020019161225a565b820191906000526020600020905b81548152906001019060200180831161223d57829003601f168201915b5050505050815260200160018201805461227390613c13565b80601f016020809104026020016040519081016040528092919081815260200182805461229f90613c13565b80156122ec5780601f106122c1576101008083540402835291602001916122ec565b820191906000526020600020905b8154815290600101906020018083116122cf57829003601f168201915b505050505081525050905092915050565b6009546001600160a01b031633146123275760405162461bcd60e51b8152600401610a5290613c5d565b6001600160a01b03811661238c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a52565b61239581612d25565b50565b60006002600854036123ec5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a52565b60026008556123f961121b565b61243d5760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b6044820152606401610a52565b6000546001600160401b03831661248c5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b6044820152606401610a52565b610d056124a26001600160401b03851683613d34565b11156124e65760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b6044820152606401610a52565b6009546001600160a01b0316331461258957601954836001600160401b0316612531336001600160a01b03166000908152600560205260409081902054901c6001600160401b031690565b61253b9190613d34565b11156125895760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f7765640000000000006044820152606401610a52565b34601a54846001600160401b03166125a19190613ceb565b146125ee5760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610a52565b600061260460146001600160401b038616613d20565b9050600061261c60146001600160401b038716613d4c565b905060005b828110156126465761263433601461301a565b8061263e81613d60565b915050612621565b50801561265757612657338261301a565b5050600160085592915050565b60185460ff16156126875760405162461bcd60e51b8152600401610a5290613c92565b612691828261169f565b6126dd5760405162461bcd60e51b815260206004820152601d60248201527f416c6c20746f6b656e73206d757374206265206475706c6963617465730000006044820152606401610a52565b60008183116126ec57816126ee565b825b90506127026009546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461279e5761272381611455565b6001600160a01b0316336001600160a01b03161461279e5760405162461bcd60e51b815260206004820152603260248201527f4f6e6c792074686520746f6b656e206f776e6572206f7220636f6e7472616374604482015271081bdddb995c8818d85b881c994b5c9bdb1b60721b6064820152608401610a52565b6127a78161311b565b6127ba6127b5826001613d34565b6127e3565b156127d2576127d26127cd826001613d34565b61311b565b611197816127de61314b565b6131bc565b6000805482108015610864575050600090815260046020526040902054600160e01b161590565b6060610864826001600019613211565b6000816000548110156128685760008181526004602052604081205490600160e01b82169003612866575b80600003610a21575060001901600081815260046020526040902054612845565b505b604051636f96cda160e11b815260040160405180910390fd5b600060e882811c906128948686846132c6565b62ffffff16901b95945050505050565b804710156128f45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a52565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612941576040519150601f19603f3d011682016040523d82523d6000602084013e612946565b606091505b50509050806111975760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a52565b60006129c8826132e5565b6060015192915050565b600080805b600d84600881106129ea576129ea613c47565b015481101561027d576000600d8560088110612a0857612a08613c47565b018281548110612a1a57612a1a613c47565b90600052602060002001549050828610158015612a3f5750612a3c8184613d34565b86105b15612a4e575091506108649050565b612a588184613d34565b9250508080612a6690613d60565b9150506129d7565b601f1982015182518251603f19909201918290612a8b9083613d34565b1115612ae95760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b6064820152608401610a52565b610b2b848461335c565b604080516080810191829052607f0190826030600a8206018353600a90045b8015612b3057600183039250600a81066030018353600a9004612b12565b50819003601f19909101908152919050565b6060836000612b518585613cd4565b6001600160401b03811115612b6857612b686135cb565b6040519080825280601f01601f191660200182016040528015612b92576020820181803683370190505b509050845b84811015612c0457828181518110612bb157612bb1613c47565b01602001516001600160f81b03191682612bcb8884613cd4565b81518110612bdb57612bdb613c47565b60200101906001600160f81b031916908160001a90535080612bfc81613d60565b915050612b97565b5095945050505050565b60008181805b82518160ff161015612cc4576030838260ff1681518110612c3757612c37613c47565b016020015160f81c10801590612c6a57506039838260ff1681518110612c5f57612c5f613c47565b016020015160f81c11155b15612cb257612c7a600a8361448a565b91506030838260ff1681518110612c9357612c93613c47565b0160200151612ca5919060f81c6144b3565b612caf90836144d6565b91505b80612cbc816144fb565b915050612c14565b509392505050565b600081604051602001612cdf919061451a565b6040516020818303038152906040528051906020012083604051602001612d06919061451a565b6040516020818303038152906040528051906020012014905092915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080612da283604051602001612d8e9190614536565b604051602081830303815290604052613392565b90508051602082016000f091506001600160a01b038216612dd65760405163046a55db60e11b815260040160405180910390fd5b50919050565b60608151600003612dfb57505060408051602081019091526000815290565b60006040518060600160405280604081526020016146896040913990506000600384516002612e2a9190613d34565b612e349190613d20565b612e3f906004613ceb565b6001600160401b03811115612e5657612e566135cb565b6040519080825280601f01601f191660200182016040528015612e80576020820181803683370190505b509050600182016020820185865187015b80821015612eec576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250612e91565b5050600386510660018114612f085760028114612f1b57612f23565b603d6001830353603d6002830353612f23565b603d60018303535b509195945050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612f6390339089908890889060040161455c565b6020604051808303816000875af1925050508015612f9e575060408051601f3d908101601f19168201909252612f9b91810190614599565b60015b612ffc573d808015612fcc576040519150601f19603f3d011682016040523d82523d6000602084013e612fd1565b606091505b508051600003612ff4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000546001600160a01b03831661304357604051622e076360e81b815260040160405180910390fd5b816000036130645760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600090815260056020526040812080546801000000000000000185020190556130bb90849061309e908281612881565b6001851460e11b174260a01b176001600160a01b03919091161790565b600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106130cf5760005550505050565b6000818152600460205260408120549003612395576131398161281a565b60008281526004602052604090205550565b6000803a43424461315d600184613cd4565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6bffffffffffffffffffffffff191660c082015260d40160408051601f19818403018152919052805160209091012092915050565b600082815260046020526040812054908190036131eb5760405162d5815360e01b815260040160405180910390fd5b6000928352600460205260409092206001600160e81b039290921660e89190911b179055565b6060833b6000819003613234575050604080516020810190915260008152610a21565b80841115613252575050604080516020810190915260008152610a21565b838310156132845760405163162544fd60e11b8152600481018290526024810185905260448101849052606401610a52565b8383038482036000828210613299578261329b565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b60006001600160a01b038416156132dd5781613012565b61301261314b565b6040805160808101825260008082526020820181905291810182905260608101919091526108646133158361281a565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b8051602082019150808201602084510184015b8184101561338757835181526020938401930161336f565b505082510190915250565b60608151826040516020016133a89291906145b6565b6040516020818303038152906040529050919050565b8280546133ca90613c13565b90600052602060002090601f0160209004810192826133ec5760008555613432565b82601f1061340557805160ff1916838001178555613432565b82800160010185558215613432579182015b82811115613432578251825591602001919060010190613417565b5061343e929150613497565b5090565b828054828255906000526020600020908101928215613432579160200282015b8281111561343257825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613462565b5b8082111561343e5760008155600101613498565b6001600160e01b03198116811461239557600080fd5b6000602082840312156134d457600080fd5b8135610a21816134ac565b60005b838110156134fa5781810151838201526020016134e2565b83811115610b2b5750506000910152565b600081518084526135238160208601602086016134df565b601f01601f19169290920160200192915050565b602081526000610a21602083018461350b565b60006020828403121561355c57600080fd5b5035919050565b80356001600160a01b038116811461357a57600080fd5b919050565b6000806040838503121561359257600080fd5b61359b83613563565b946020939093013593505050565b600080604083850312156135bc57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715613603576136036135cb565b60405290565b604051601f8201601f191681016001600160401b0381118282101715613631576136316135cb565b604052919050565b600082601f83011261364a57600080fd5b81356001600160401b03811115613663576136636135cb565b613676601f8201601f1916602001613609565b81815284602083860101111561368b57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156136ba57600080fd5b81356001600160401b03808211156136d157600080fd5b9083019060e082860312156136e557600080fd5b6136ed6135e1565b8235828111156136fc57600080fd5b61370887828601613639565b82525060208301358281111561371d57600080fd5b61372987828601613639565b60208301525060408301358281111561374157600080fd5b61374d87828601613639565b60408301525060608301358281111561376557600080fd5b61377187828601613639565b60608301525060808301358281111561378957600080fd5b61379587828601613639565b60808301525060a083013560a082015260c0830135828111156137b757600080fd5b6137c387828601613639565b60c08301525095945050505050565b6000806000606084860312156137e757600080fd5b6137f084613563565b92506137fe60208501613563565b9150604084013590509250925092565b60e08152600061382160e083018a61350b565b8281036020840152613833818a61350b565b90508281036040840152613847818961350b565b9050828103606084015261385b818861350b565b9050828103608084015261386f818761350b565b90508460a084015282810360c0840152613889818561350b565b9a9950505050505050505050565b6000602082840312156138a957600080fd5b81356001600160401b038111156138bf57600080fd5b61301284828501613639565b6000602082840312156138dd57600080fd5b610a2182613563565b6000606082840312156138f857600080fd5b604051606081016001600160401b03828210818311171561391b5761391b6135cb565b81604052829350843591508082111561393357600080fd5b61393f86838701613639565b8352602085013591508082111561395557600080fd5b61396186838701613639565b6020840152604085013591508082111561397a57600080fd5b5061398785828601613639565b6040830152505092915050565b600080604083850312156139a757600080fd5b823591506020808401356001600160401b03808211156139c657600080fd5b818601915086601f8301126139da57600080fd5b8135818111156139ec576139ec6135cb565b8060051b6139fb858201613609565b918252838101850191858101908a841115613a1557600080fd5b86860192505b83831015613a5157823585811115613a335760008081fd5b613a418c89838a01016138e6565b8352509186019190860190613a1b565b809750505050505050509250929050565b8035801515811461357a57600080fd5b60008060408385031215613a8557600080fd5b613a8e83613563565b9150613a9c60208401613a62565b90509250929050565b60008060008060808587031215613abb57600080fd5b613ac485613563565b9350613ad260208601613563565b92506040850135915060608501356001600160401b03811115613af457600080fd5b613b0087828801613639565b91505092959194509250565b600080600060608486031215613b2157600080fd5b833592506020840135915060408401356001600160401b03811115613b4557600080fd5b613b51868287016138e6565b9150509250925092565b60008060408385031215613b6e57600080fd5b82359150613a9c60208401613a62565b60008060408385031215613b9157600080fd5b613b9a83613563565b9150613a9c60208401613563565b602081526000825160406020840152613bc4606084018261350b565b90506020840151601f19848303016040850152613be1828261350b565b95945050505050565b600060208284031215613bfc57600080fd5b81356001600160401b0381168114610a2157600080fd5b600181811c90821680613c2757607f821691505b602082108103612dd657634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015613ce657613ce6613cbe565b500390565b6000816000190483118215151615613d0557613d05613cbe565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613d2f57613d2f613d0a565b500490565b60008219821115613d4757613d47613cbe565b500190565b600082613d5b57613d5b613d0a565b500690565b600060018201613d7257613d72613cbe565b5060010190565b8054600090600181811c9080831680613d9357607f831692505b60208084108203613db457634e487b7160e01b600052602260045260246000fd5b818015613dc85760018114613dd957613e06565b60ff19861689528489019650613e06565b60008881526020902060005b86811015613dfe5781548b820152908501908301613de5565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b81526000613e36600f830185613d79565b6a1116113b30b63ab2911d1160a91b8152613e54600b820185613d79565b61227d60f01b815260020195945050505050565b6000613e748284613d79565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b81526000613eb46005830185613d79565b670ed8985cd94d8d0b60c21b81528351613ed58160088401602088016134df565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b81526000613f0e6005830185613d79565b670ed8985cd94d8d0b60c21b81528351613f2f8160088401602088016134df565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000081526000825161409081601a8501602087016134df565b91909101601a0192915050565b600083516140af8184602088016134df565b701116113232b9b1b934b83a34b7b7111d1160791b9083019081526140d76011820185613d79565b61088b60f21b815260020195945050505050565b681134b6b0b3b2911d1160b91b815260006141096009830186613d79565b84516141198183602089016134df565b643f646e613d60d81b9101908152835161413a8160058401602088016134df565b71099b995d1ddbdc9acf5b585a5b9b995d088b60721b6005929091019182015260170195945050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b60808201526000825161422a8160918501602087016134df565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b711139bb33afb4b6b0b3b2afb230ba30911d1160711b8152815160009061427f8160128501602087016134df565b61088b60f21b6012939091019283015250601401919050565b6d1134b6b0b3b2afb230ba30911d1160911b815281516000906142c281600e8501602087016134df565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b8152815160009061430481600d8501602087016134df565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161435481601d8501602087016134df565b91909101601d0192915050565b683d913730b6b2911d1160b91b8152600061437f600983018a613d79565b701116113232b9b1b934b83a34b7b7111d1160791b81526143a3601182018a613d79565b6a11161134b6b0b3b2911d1160a91b815290506143c3600b820189613d79565b6b1116113130b73732b9111d1160a11b815290506143e4600c820188613d79565b7211161132bc3a32b93730b62fb634b735911d1160691b8152905061440c6013820187613d79565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a000000008152845161444481601c8401602089016134df565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c9290910191820152614471602e820185613d79565b61227d60f01b81526002019a9950505050505050505050565b600060ff821660ff84168160ff04811182151516156144ab576144ab613cbe565b029392505050565b600060ff821660ff8416808210156144cd576144cd613cbe565b90039392505050565b600060ff821660ff84168060ff038211156144f3576144f3613cbe565b019392505050565b600060ff821660ff810361451157614511613cbe565b60010192915050565b6000825161452c8184602087016134df565b9190910192915050565b600081526000825161454f8160018501602087016134df565b9190910160010192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061458f9083018461350b565b9695505050505050565b6000602082840312156145ab57600080fd5b8151610a21816134ac565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b600582015281516000906145f981600e8501602087016134df565b91909101600e01939250505056fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723a4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220e5885e9572111822125f7e44ca0566be777972f11be739ff3ab021ba72b14ed764736f6c634300080e0033

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.